9f17d59e
陈明泉
no message
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QComboBox>
#include "imovewindow.h"
#include <QSystemTrayIcon>
class IShowFrame;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
bool addIShow(const QString& namel);
bool setCurrentIShow(const QString& name);
void removeAllIShows();
void restoreWindowGeometry();
void saveWindowGeometry();
protected:
void paintEvent(QPaintEvent *);
void resizeEvent(QResizeEvent *);
signals:
void justMessage(int);
void UseLogOut();
public slots:
void createActions();
void createTrayIcon();
void createTrayIconMenu();
void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
QAction * getOverviewAction() { return overviewAction; }
private:
QAction *overviewAction;
QAction *quitAction;
QSystemTrayIcon *trayIcon;
QMenu *trayIconMenu;
QAction *toggleHideAction;
IShowFrame *iShowFrame;
};
#endif // MAINWINDOW_H
|