summaryrefslogtreecommitdiff
path: root/noncore/net/linphone/mainwindow.h
authorharlekin <harlekin>2004-02-22 23:38:58 (UTC)
committer harlekin <harlekin>2004-02-22 23:38:58 (UTC)
commit666a49773d06ac94c19996d763854725c2f7a578 (patch) (unidiff)
treec886c9373ed967ed5dfe468ac6260d4c5218c4d1 /noncore/net/linphone/mainwindow.h
parent2fc1e609a40a47df6a38256faccfee7916b59bbd (diff)
downloadopie-666a49773d06ac94c19996d763854725c2f7a578.zip
opie-666a49773d06ac94c19996d763854725c2f7a578.tar.gz
opie-666a49773d06ac94c19996d763854725c2f7a578.tar.bz2
initial checkin of opie linphone, not really usefull yet, just to make sure I dont loose any data
Diffstat (limited to 'noncore/net/linphone/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/linphone/mainwindow.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/noncore/net/linphone/mainwindow.h b/noncore/net/linphone/mainwindow.h
new file mode 100644
index 0000000..5a9bafb
--- a/dev/null
+++ b/noncore/net/linphone/mainwindow.h
@@ -0,0 +1,35 @@
1#ifndef MAINWINDOW_H
2#define MAINWINDOW_H
3
4#include <qmainwindow.h>
5
6#include <qtoolbar.h>
7#include <qmenubar.h>
8#include <qaction.h>
9
10#include "qlinphone.h"
11
12class MainWindow : public QMainWindow {
13 Q_OBJECT
14
15public:
16 MainWindow( QWidget *parent = 0, const char *name = 0, WFlags flags = 0 );
17 virtual ~MainWindow();
18
19 static QString appName() {
20 return QString::fromLatin1("olinphone");
21 }
22
23 QLinphoneMainWidget *mainWidget;
24 QToolBar *toolBar;
25 QMenuBar *menuBar;
26 QPopupMenu *prefMenu;
27
28 QAction *settings;
29
30public slots:
31 void slotSettings();
32
33};
34
35#endif