private View(ViewControl control) { mControl = control; WebLookAndFeel.install(); ToolTipManager.sharedInstance().setInitialDelay(200); mContactListView = new ContactListView(this, ContactList.getInstance()); ContactList.getInstance().addObserver(mContactListView); mChatListView = new ChatListView(this, ChatList.getInstance()); ChatList.getInstance().addObserver(mChatListView); // chat view mChatView = new ChatView(this); ChatList.getInstance().addObserver(mChatView); // content area mContent = new Content(this, mChatView); // search panel mSearchPanel = new SearchPanel(new Table[] {mContactListView, mChatListView}, mChatView); // status bar WebStatusBar statusBar = new WebStatusBar(); mStatusBarLabel = new WebStatusLabel(" "); statusBar.add(mStatusBarLabel); // main frame mMainFrame = new MainFrame(this, mContactListView, mChatListView, mContent, mSearchPanel, statusBar); mMainFrame.setVisible(true); // tray mTrayManager = new TrayManager(this, mMainFrame); ChatList.getInstance().addObserver(mTrayManager); // hotkeys this.setHotkeys(); // notifier mNotifier = new Notifier(this); this.statusChanged(); }
void showChat(Contact contact) { Chat chat = ChatList.getInstance().get(contact); this.selectChat(chat); }