mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 10:10:19 -06:00
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2018, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// TrayIcon.h - Manages the tray icon
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef TRAYICON_H
|
|
#define TRAYICON_H
|
|
|
|
#include "pgAdmin4.h"
|
|
|
|
// QT headers
|
|
#include <QWidget>
|
|
#include <QMessageBox>
|
|
|
|
// App headers
|
|
#include "LogWindow.h"
|
|
|
|
class TrayIcon : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TrayIcon(QString logFile);
|
|
~TrayIcon();
|
|
|
|
bool Init();
|
|
void setAppServerUrl(QString appServerUrl);
|
|
|
|
private:
|
|
void createTrayIcon();
|
|
bool isSystemTrayAvailable();
|
|
void createActions();
|
|
|
|
void wait(int msec);
|
|
|
|
QAction *m_newAction;
|
|
QAction *m_configAction;
|
|
QAction *m_logAction;
|
|
QAction *m_quitAction;
|
|
|
|
QSystemTrayIcon *m_trayIcon;
|
|
QMenu *m_trayIconMenu;
|
|
|
|
QString m_appServerUrl, m_logFile;
|
|
|
|
LogWindow *m_logWindow;
|
|
|
|
private slots:
|
|
void onNew();
|
|
void onConfig();
|
|
void onLog();
|
|
void onQuit();
|
|
};
|
|
|
|
#endif // TRAYICON_H
|