/* * tabdlg.h - dialog for handling tabbed chats * Copyright (C) 2005 Kevin Smith * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef TABDLG_H #define TABDLG_H #include #include #include #include #include #include "im.h" #include #include "psitabwidget.h" #include "advwidget.h" using namespace XMPP; class ChatDlg; class PsiCon; class ChatTabs; class QDragObject; class QContextMenuEvent; /*class PsiAccount; class UserListItem; class QDropEvent; class QDragEnterEvent;*/ class TabDlg : public AdvancedWidget//, public QWidget { Q_OBJECT public: TabDlg(PsiCon*); ~TabDlg(); bool managesChat(ChatDlg*); bool chatOnTop(ChatDlg*); QString getName(); signals: void isDying(TabDlg*); protected: void closeEvent( QCloseEvent* ); void keyPressEvent(QKeyEvent *); void windowActivationChange(bool); void resizeEvent(QResizeEvent *); protected slots: void detachChat(); void detachChat(QWidget*); void closeChat(); void closeChat(QWidget*); void buildTabMenu(); void sendChatTo(QWidget*, TabDlg *); public slots: void addChat(ChatDlg *chat); void setLooks(); void closeChat(ChatDlg*,bool); void selectTab(ChatDlg*); void activated(); private slots: void tabSelected(QWidget* chat); void checkHasChats(); void closeMe(); void updateTab(ChatDlg*); void nextTab(); void previousTab(); void setTabComposing(ChatDlg*, bool); void setTabHasMessages(ChatDlg*, int); void tabTestCanDecode(const QDragMoveEvent*, bool&); void tabReceivedDropEvent(QDropEvent*); void tabReceivedDropEvent(QWidget*, QDropEvent*); void startDrag(QWidget*); public: ChatDlg* getChatPointer(QString fullJid); private: void updateCaption(); PsiCon *psi; QPtrList chats; KTabWidget *tabs; QPushButton *detachButton, *closeButton, *closeCross; QPopupMenu *tabMenu; QMap tabIsComposing; QMap tabHasMessages; QSize chatSize; }; #endif