added a "hide" menu entry in the system tray icon menu
This commit is contained in:
parent
9949c4886a
commit
5811f3d10e
2 changed files with 704 additions and 699 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,103 +1,104 @@
|
|||
/******************************************************************************\
|
||||
* Copyright (c) 2004-2011
|
||||
*
|
||||
* Author(s):
|
||||
* Volker Fischer
|
||||
*
|
||||
******************************************************************************
|
||||
*
|
||||
* 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.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
\******************************************************************************/
|
||||
|
||||
#include <qlabel.h>
|
||||
#include <qlistview.h>
|
||||
#include <qtimer.h>
|
||||
#include <qpixmap.h>
|
||||
#include <qthread.h>
|
||||
#include <qslider.h>
|
||||
#include <qmenubar.h>
|
||||
#include <qlayout.h>
|
||||
#include <qsystemtrayicon.h>
|
||||
#include <qsettings.h>
|
||||
#include "global.h"
|
||||
#include "server.h"
|
||||
#include "multicolorled.h"
|
||||
#ifdef _WIN32
|
||||
# include "../windows/moc/llconserverdlgbase.h"
|
||||
#else
|
||||
# ifdef _IS_QMAKE_CONFIG
|
||||
# include "ui_llconserverdlgbase.h"
|
||||
# else
|
||||
# include "moc/llconserverdlgbase.h"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* Definitions ****************************************************************/
|
||||
// update time for GUI controls
|
||||
#define GUI_CONTRL_UPDATE_TIME 1000 // ms
|
||||
|
||||
|
||||
/* Classes ********************************************************************/
|
||||
class CLlconServerDlg : public QDialog, private Ui_CLlconServerDlgBase
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CLlconServerDlg ( CServer* pNServP,
|
||||
const bool bStartMinimized,
|
||||
QWidget* parent = 0,
|
||||
Qt::WindowFlags f = 0 );
|
||||
|
||||
protected:
|
||||
virtual void customEvent ( QEvent* pEvent );
|
||||
virtual void changeEvent ( QEvent* pEvent );
|
||||
virtual void closeEvent ( QCloseEvent* Event );
|
||||
|
||||
void UpdateGUIDependencies();
|
||||
void UpdateSystemTrayIcon ( const bool bIsActive );
|
||||
void ShowWindowInForeground() { showNormal(); raise(); }
|
||||
void ModifyAutoStartEntry ( const bool bDoAutoStart );
|
||||
|
||||
QTimer Timer;
|
||||
CServer* pServer;
|
||||
|
||||
CVector<CServerListViewItem*> vecpListViewItems;
|
||||
QMutex ListViewMutex;
|
||||
|
||||
QMenuBar* pMenu;
|
||||
|
||||
bool bSystemTrayIconAvaialbe;
|
||||
QSystemTrayIcon SystemTrayIcon;
|
||||
QPixmap BitmapSystemTrayInactive;
|
||||
QPixmap BitmapSystemTrayActive;
|
||||
QMenu* pSystemTrayIconMenu;
|
||||
|
||||
public slots:
|
||||
void OnRegisterServerStateChanged ( int value );
|
||||
void OnDefaultCentralServerStateChanged ( int value );
|
||||
void OnStartOnOSStartStateChanged ( int value );
|
||||
void OnCentralServerAddressEditingFinished();
|
||||
void OnServerNameTextChanged ( const QString& strNewName );
|
||||
void OnLocationCityTextChanged ( const QString& strNewCity );
|
||||
void OnLocationCountryActivated ( int iCntryListItem );
|
||||
void OnTimer();
|
||||
void OnServerStarted() { UpdateSystemTrayIcon ( true ); }
|
||||
void OnServerStopped() { UpdateSystemTrayIcon ( false ); }
|
||||
void OnSysTrayMenuOpen() { ShowWindowInForeground(); }
|
||||
void OnSysTrayMenuExit() { close(); }
|
||||
void OnSysTrayActivated ( QSystemTrayIcon::ActivationReason ActReason );
|
||||
};
|
||||
/******************************************************************************\
|
||||
* Copyright (c) 2004-2011
|
||||
*
|
||||
* Author(s):
|
||||
* Volker Fischer
|
||||
*
|
||||
******************************************************************************
|
||||
*
|
||||
* 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.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
\******************************************************************************/
|
||||
|
||||
#include <qlabel.h>
|
||||
#include <qlistview.h>
|
||||
#include <qtimer.h>
|
||||
#include <qpixmap.h>
|
||||
#include <qthread.h>
|
||||
#include <qslider.h>
|
||||
#include <qmenubar.h>
|
||||
#include <qlayout.h>
|
||||
#include <qsystemtrayicon.h>
|
||||
#include <qsettings.h>
|
||||
#include "global.h"
|
||||
#include "server.h"
|
||||
#include "multicolorled.h"
|
||||
#ifdef _WIN32
|
||||
# include "../windows/moc/llconserverdlgbase.h"
|
||||
#else
|
||||
# ifdef _IS_QMAKE_CONFIG
|
||||
# include "ui_llconserverdlgbase.h"
|
||||
# else
|
||||
# include "moc/llconserverdlgbase.h"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* Definitions ****************************************************************/
|
||||
// update time for GUI controls
|
||||
#define GUI_CONTRL_UPDATE_TIME 1000 // ms
|
||||
|
||||
|
||||
/* Classes ********************************************************************/
|
||||
class CLlconServerDlg : public QDialog, private Ui_CLlconServerDlgBase
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CLlconServerDlg ( CServer* pNServP,
|
||||
const bool bStartMinimized,
|
||||
QWidget* parent = 0,
|
||||
Qt::WindowFlags f = 0 );
|
||||
|
||||
protected:
|
||||
virtual void customEvent ( QEvent* pEvent );
|
||||
virtual void changeEvent ( QEvent* pEvent );
|
||||
virtual void closeEvent ( QCloseEvent* Event );
|
||||
|
||||
void UpdateGUIDependencies();
|
||||
void UpdateSystemTrayIcon ( const bool bIsActive );
|
||||
void ShowWindowInForeground() { showNormal(); raise(); }
|
||||
void ModifyAutoStartEntry ( const bool bDoAutoStart );
|
||||
|
||||
QTimer Timer;
|
||||
CServer* pServer;
|
||||
|
||||
CVector<CServerListViewItem*> vecpListViewItems;
|
||||
QMutex ListViewMutex;
|
||||
|
||||
QMenuBar* pMenu;
|
||||
|
||||
bool bSystemTrayIconAvaialbe;
|
||||
QSystemTrayIcon SystemTrayIcon;
|
||||
QPixmap BitmapSystemTrayInactive;
|
||||
QPixmap BitmapSystemTrayActive;
|
||||
QMenu* pSystemTrayIconMenu;
|
||||
|
||||
public slots:
|
||||
void OnRegisterServerStateChanged ( int value );
|
||||
void OnDefaultCentralServerStateChanged ( int value );
|
||||
void OnStartOnOSStartStateChanged ( int value );
|
||||
void OnCentralServerAddressEditingFinished();
|
||||
void OnServerNameTextChanged ( const QString& strNewName );
|
||||
void OnLocationCityTextChanged ( const QString& strNewCity );
|
||||
void OnLocationCountryActivated ( int iCntryListItem );
|
||||
void OnTimer();
|
||||
void OnServerStarted() { UpdateSystemTrayIcon ( true ); }
|
||||
void OnServerStopped() { UpdateSystemTrayIcon ( false ); }
|
||||
void OnSysTrayMenuOpen() { ShowWindowInForeground(); }
|
||||
void OnSysTrayMenuHide() { hide(); }
|
||||
void OnSysTrayMenuExit() { close(); }
|
||||
void OnSysTrayActivated ( QSystemTrayIcon::ActivationReason ActReason );
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue