mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-03 20:01:07 -05:00
b86407f395
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4409 b45a01b8-16f6-495d-af2f-9b41ad6348cc
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2006, crypton
|
|
*
|
|
* 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 program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
|
|
#ifndef _POPUPCHATWINDOW_H
|
|
#define _POPUPCHATWINDOW_H
|
|
|
|
#include <QTimer>
|
|
#include "ui_PopupChatWindow.h"
|
|
|
|
class PopupChatDialog;
|
|
|
|
class PopupChatWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PopupChatWindow *getWindow(bool needSingleWindow);
|
|
static void cleanup();
|
|
|
|
public:
|
|
void addDialog(PopupChatDialog *dialog);
|
|
void removeDialog(PopupChatDialog *dialog);
|
|
void showDialog(PopupChatDialog *dialog, uint chatflags);
|
|
void alertDialog(PopupChatDialog *dialog);
|
|
void calculateTitle(PopupChatDialog *dialog);
|
|
|
|
protected:
|
|
/** Default constructor */
|
|
PopupChatWindow(bool tabbed, QWidget *parent = 0, Qt::WFlags flags = 0);
|
|
/** Default destructor */
|
|
~PopupChatWindow();
|
|
|
|
virtual void showEvent(QShowEvent *event);
|
|
virtual void changeEvent(QEvent *event);
|
|
|
|
private slots:
|
|
void getAvatar();
|
|
void tabCloseRequested(int tab);
|
|
void tabCurrentChanged(int tab);
|
|
void dockTab();
|
|
void undockTab();
|
|
void setStyle();
|
|
void setOnTop();
|
|
|
|
private:
|
|
bool tabbedWindow;
|
|
bool firstShow;
|
|
std::string peerId;
|
|
PopupChatDialog *chatDialog;
|
|
|
|
PopupChatDialog *getCurrentDialog();
|
|
void saveSettings();
|
|
void calculateStyle(PopupChatDialog *dialog);
|
|
|
|
/** Qt Designer generated object */
|
|
Ui::PopupChatWindow ui;
|
|
};
|
|
|
|
#endif
|