* Moved all remaining classes to use the new display::Frame.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@749 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-07-29 00:22:26 +00:00
parent 4c9fc671be
commit fa5ff92e24
16 changed files with 257 additions and 202 deletions
+7 -1
View File
@@ -38,6 +38,7 @@
#include <torrent/exceptions.h>
#include "display/frame.h"
#include "display/window_peer_list.h"
#include "input/manager.h"
@@ -51,7 +52,6 @@ ElementPeerList::ElementPeerList(core::Download* d, PList* l, PList::iterator* f
m_window(NULL),
m_list(l),
m_focus(f) {
}
void
@@ -62,7 +62,10 @@ ElementPeerList::activate(display::Frame* frame) {
control->input()->push_front(&m_bindings);
m_window = new WPeerList(m_download, m_list, m_focus);
m_window->set_active(true);
m_frame = frame;
m_frame->initialize_window(m_window);
}
void
@@ -72,6 +75,9 @@ ElementPeerList::disable() {
control->input()->erase(&m_bindings);
m_frame->clear();
m_frame = NULL;
delete m_window;
m_window = NULL;
}