2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006,2007 The RetroShare Team
|
|
|
|
*
|
|
|
|
* 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 _MainWindow_H
|
|
|
|
#define _MainWindow_H
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
|
|
|
|
|
|
|
#include "NetworkDialog.h"
|
|
|
|
#include "PeersDialog.h"
|
|
|
|
#include "SearchDialog.h"
|
|
|
|
#include "TransfersDialog.h"
|
|
|
|
#include "MessagesDialog.h"
|
|
|
|
#include "ChatDialog.h"
|
|
|
|
#include "SharedFilesDialog.h"
|
|
|
|
#include "StatisticDialog.h"
|
|
|
|
#include "MessengerWindow.h"
|
|
|
|
#include "ApplicationWindow.h"
|
2009-02-11 17:50:12 -05:00
|
|
|
#include "PluginsPage.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
#include "Preferences/PreferencesWindow.h"
|
|
|
|
#include "Settings/gsettingswin.h"
|
|
|
|
#include "bwgraph/bwgraph.h"
|
2008-08-05 14:36:07 -04:00
|
|
|
#include "help/browser/helpbrowser.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "games/qbackgammon/bgwindow.h"
|
|
|
|
|
|
|
|
#include "Preferences/ConfirmQuitDialog.h"
|
|
|
|
|
2007-12-13 11:02:33 -05:00
|
|
|
#include "channels/channelsDialog.h"
|
|
|
|
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "ui_MainWindow.h"
|
|
|
|
|
2008-08-15 13:49:57 -04:00
|
|
|
#include "Preferences/rsharesettings.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-03-31 14:37:50 -04:00
|
|
|
class SMPlayer;
|
|
|
|
|
2008-06-16 16:28:16 -04:00
|
|
|
class PeerStatus;
|
|
|
|
|
2008-11-30 12:15:23 -05:00
|
|
|
void openFile(std::string path);
|
|
|
|
|
2008-08-15 16:07:54 -04:00
|
|
|
class MainWindow : public RWindow
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Main dialog pages. */
|
|
|
|
enum Page {
|
|
|
|
Network = 0, /** Network page. */
|
2009-01-07 16:12:31 -05:00
|
|
|
Friends, /** Peers page. */
|
|
|
|
Search, /** Search page. */
|
|
|
|
Transfers, /** Transfers page. */
|
|
|
|
SharedDirectories, /** Shared Directories page. */
|
|
|
|
Messages, /** Messages page. */
|
|
|
|
Links, /** Links page. */
|
|
|
|
Channels, /** Channels page. */
|
2009-02-02 07:07:07 -05:00
|
|
|
Forums /** Forums page. */
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Default Constructor */
|
|
|
|
MainWindow(QWidget *parent = 0, Qt::WFlags flags = 0);
|
|
|
|
|
|
|
|
/** Destructor. */
|
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
/* A Bit of a Hack... but public variables for
|
|
|
|
* the dialogs, so we can add them to the
|
|
|
|
* Notify Class...
|
|
|
|
*/
|
|
|
|
|
2009-02-02 07:07:07 -05:00
|
|
|
NetworkDialog *networkDialog;
|
2007-11-14 22:18:48 -05:00
|
|
|
PeersDialog *peersDialog;
|
|
|
|
SearchDialog *searchDialog;
|
|
|
|
TransfersDialog *transfersDialog;
|
|
|
|
ChatDialog *chatDialog;
|
|
|
|
MessagesDialog *messagesDialog;
|
2009-02-02 07:07:07 -05:00
|
|
|
ChannelsDialog *channelsDialog;
|
2007-11-14 22:18:48 -05:00
|
|
|
SharedFilesDialog *sharedfilesDialog;
|
|
|
|
//GroupsDialog *groupsDialog;
|
|
|
|
//StatisticDialog *statisticDialog;
|
|
|
|
MessengerWindow *messengerWindow;
|
|
|
|
ApplicationWindow *applicationWindow;
|
2009-02-11 17:50:12 -05:00
|
|
|
PluginsPage* pluginsPage ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-03-31 14:37:50 -04:00
|
|
|
SMPlayer * mSMPlayer;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
/** Called when this dialog is to be displayed */
|
2009-01-07 16:12:31 -05:00
|
|
|
//void show();
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Shows the config dialog with focus set to the given page. */
|
2009-01-07 16:12:31 -05:00
|
|
|
void showWindow(Page page);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void startgammon();
|
|
|
|
void startqcheckers();
|
|
|
|
|
2008-03-31 14:37:50 -04:00
|
|
|
void playFiles(QStringList files);
|
2009-01-22 16:06:54 -05:00
|
|
|
void updateHashingInfo(const QString&) ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
void updateMenu();
|
2008-06-09 20:48:18 -04:00
|
|
|
void updateStatus();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void toggleVisibility(QSystemTrayIcon::ActivationReason e);
|
|
|
|
void toggleVisibilitycontextmenu();
|
|
|
|
|
|
|
|
|
|
|
|
/** Toolbar fns. */
|
|
|
|
void addFriend();
|
|
|
|
void inviteFriend();
|
|
|
|
void addSharedDirectory();
|
|
|
|
void showMessengerWindow();
|
|
|
|
void showApplWindow();
|
|
|
|
void showsmplayer();
|
2008-03-31 09:00:00 -04:00
|
|
|
void showabout();
|
2008-12-10 20:19:34 -05:00
|
|
|
void openShareManager();
|
2008-08-05 14:36:07 -04:00
|
|
|
|
|
|
|
/** Displays the help browser and displays the most recently viewed help
|
|
|
|
* topic. */
|
|
|
|
void showHelpDialog();
|
|
|
|
/** Called when a child window requests the given help <b>topic</b>. */
|
|
|
|
void showHelpDialog(const QString &topic);
|
2008-03-31 09:00:00 -04:00
|
|
|
|
2008-08-14 20:23:27 -04:00
|
|
|
/** Creates and displays the Configuration dialog with the current page set
|
|
|
|
* to <b>page</b>. */
|
|
|
|
void showPreferencesWindow(PreferencesWindow::Page page = PreferencesWindow::General);
|
2009-01-07 16:12:31 -05:00
|
|
|
void showMess(MainWindow::Page page = MainWindow::Messages);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
void showSettings();
|
2008-03-27 19:40:37 -04:00
|
|
|
void setStyle();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/** Called when user attempts to quit via quit button*/
|
|
|
|
void doQuit();
|
2008-03-31 08:06:56 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/** Create the actions on the tray menu or menubar */
|
|
|
|
void createActions();
|
|
|
|
|
|
|
|
|
|
|
|
/** Defines the actions for the tray menu */
|
|
|
|
QAction* _prefsAct;
|
|
|
|
QAction* _bandwidthAct;
|
|
|
|
QAction* _messengerwindowAct;
|
2009-01-07 16:12:31 -05:00
|
|
|
QAction* _messagesAct;
|
2007-11-18 18:35:53 -05:00
|
|
|
QAction* _smplayerAct;
|
2008-08-05 14:36:07 -04:00
|
|
|
QAction* _helpAct;
|
2008-08-16 18:24:53 -04:00
|
|
|
QAction* _appAct;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/** A BandwidthGraph object which handles monitoring RetroShare bandwidth usage */
|
|
|
|
BandwidthGraph* _bandwidthGraph;
|
|
|
|
|
|
|
|
PreferencesWindow* _preferencesWindow;
|
|
|
|
|
2008-08-15 13:49:57 -04:00
|
|
|
/** A RetroShareSettings object used for saving/loading settings */
|
|
|
|
RshareSettings* _settings;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-03-30 19:28:57 -04:00
|
|
|
/** Creates a new action for a Main page. */
|
2007-11-14 22:18:48 -05:00
|
|
|
QAction* createPageAction(QIcon img, QString text, QActionGroup *group);
|
|
|
|
/** Adds a new action to the toolbar. */
|
|
|
|
void addAction(QAction *action, const char *slot = 0);
|
|
|
|
|
2008-03-30 19:28:57 -04:00
|
|
|
/** Creates a new action for a Service pages. */
|
|
|
|
QAction* createPageActionservice(QIcon img, QString text, QActionGroup *groupservice);
|
|
|
|
/** Adds a new action to the toolbar. */
|
|
|
|
void addActionservice(QAction *actionservice, const char *slot = 0);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void loadStyleSheet(const QString &sheetName);
|
|
|
|
|
|
|
|
QSystemTrayIcon *trayIcon;
|
2008-03-31 08:06:56 -04:00
|
|
|
QAction *toggleVisibilityAction, *toolAct;
|
2007-11-14 22:18:48 -05:00
|
|
|
QMenu *menu;
|
2008-06-09 20:48:18 -04:00
|
|
|
|
|
|
|
QLabel *statusRates;
|
2008-06-16 16:28:16 -04:00
|
|
|
PeerStatus *peerstatus;
|
2009-02-02 07:07:07 -05:00
|
|
|
|
|
|
|
QLabel *_hashing_info_label ;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::MainWindow ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|