repo.or.cz
/
EconoBoard.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added Qt4 support to CMake, along with an icon and a test
[EconoBoard.git]
/
src
/
ecoboard
/
application.h
blob
8040cdd76bc93fef9569aa5104ebe9dd601b5253
1
#ifndef MAINWINDOW_H__
2
#define MAINWINDOW_H__
3
4
#include <QApplication>
5
6
class
QSystemTrayIcon
;
7
class
QMenu
;
8
class
QAction
;
9
10
class
EBApplication
:
public
QApplication
11
{
12
Q_OBJECT
13
14
public
:
15
EBApplication
(
int
&
argc
,
char
**
argv
);
16
17
private
:
18
void
createActions
();
19
void
createMenus
();
20
void
createWidgets
();
21
22
QSystemTrayIcon
*
systemTray
;
23
QMenu
*
trayMenu
;
24
QAction
*
exitAct
;
25
};
26
27
#endif