author | zautrix <zautrix> | 2004-08-06 22:27:51 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-06 22:27:51 (UTC) |
commit | 81a027fdb113968401105258cf89b56b96987103 (patch) (unidiff) | |
tree | 1e5e91873d80618f296190c64bf4c056a3a79ea2 /kmicromail/mainwindow.cpp | |
parent | c07b730f8f38aabf365a67578df6140080824f10 (diff) | |
download | kdepimpi-81a027fdb113968401105258cf89b56b96987103.zip kdepimpi-81a027fdb113968401105258cf89b56b96987103.tar.gz kdepimpi-81a027fdb113968401105258cf89b56b96987103.tar.bz2 |
SOme change logs
-rw-r--r-- | kmicromail/mainwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kmicromail/mainwindow.cpp b/kmicromail/mainwindow.cpp index e020297..2de5b40 100644 --- a/kmicromail/mainwindow.cpp +++ b/kmicromail/mainwindow.cpp | |||
@@ -1,48 +1,50 @@ | |||
1 | |||
2 | // CHANGED 2004-08-06 Lutz Rogowski | ||
1 | #include <qlabel.h> | 3 | #include <qlabel.h> |
2 | #include <qvbox.h> | 4 | #include <qvbox.h> |
3 | #include <qheader.h> | 5 | #include <qheader.h> |
4 | #include <qtimer.h> | 6 | #include <qtimer.h> |
5 | #include <qlayout.h> | 7 | #include <qlayout.h> |
6 | #include <kdialog.h> | 8 | #include <kdialog.h> |
7 | #include <kiconloader.h> | 9 | #include <kiconloader.h> |
8 | #include <kapplication.h> | 10 | #include <kapplication.h> |
9 | 11 | ||
10 | #ifndef DESKTOP_VERSION | 12 | #ifndef DESKTOP_VERSION |
11 | #include <qpe/qpeapplication.h> | 13 | #include <qpe/qpeapplication.h> |
12 | #endif | 14 | #endif |
13 | #include "defines.h" | 15 | #include "defines.h" |
14 | #include "mainwindow.h" | 16 | #include "mainwindow.h" |
15 | #include <KDGanttMinimizeSplitter.h> | 17 | #include <KDGanttMinimizeSplitter.h> |
16 | 18 | ||
17 | 19 | ||
18 | #include <kabc/stdaddressbook.h> | 20 | #include <kabc/stdaddressbook.h> |
19 | 21 | ||
20 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | 22 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) |
21 | : QMainWindow( parent, name ) //, flags ) | 23 | : QMainWindow( parent, name ) //, flags ) |
22 | { | 24 | { |
23 | setCaption( tr( "OpieMail/Pi" ) ); | 25 | setCaption( tr( "OpieMail/Pi" ) ); |
24 | setToolBarsMovable( false ); | 26 | setToolBarsMovable( false ); |
25 | KABC::StdAddressBook::self(); | 27 | KABC::StdAddressBook::self(); |
26 | toolBar = new QToolBar( this ); | 28 | toolBar = new QToolBar( this ); |
27 | menuBar = new QMenuBar( toolBar ); | 29 | menuBar = new QMenuBar( toolBar ); |
28 | mailMenu = new QPopupMenu( menuBar ); | 30 | mailMenu = new QPopupMenu( menuBar ); |
29 | menuBar->insertItem( tr( "Mail" ), mailMenu ); | 31 | menuBar->insertItem( tr( "Mail" ), mailMenu ); |
30 | settingsMenu = new QPopupMenu( menuBar ); | 32 | settingsMenu = new QPopupMenu( menuBar ); |
31 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); | 33 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); |
32 | 34 | ||
33 | addToolBar( toolBar ); | 35 | addToolBar( toolBar ); |
34 | toolBar->setHorizontalStretchable( true ); | 36 | toolBar->setHorizontalStretchable( true ); |
35 | 37 | ||
36 | 38 | ||
37 | 39 | ||
38 | composeMail = new QAction( tr( "Compose new mail" ), SmallIcon("composemail"), | 40 | composeMail = new QAction( tr( "Compose new mail" ), SmallIcon("composemail"), |
39 | 0, 0, this ); | 41 | 0, 0, this ); |
40 | composeMail->addTo( toolBar ); | 42 | composeMail->addTo( toolBar ); |
41 | composeMail->addTo( mailMenu ); | 43 | composeMail->addTo( mailMenu ); |
42 | 44 | ||
43 | sendQueued = new QAction( tr( "Send queued mails" ), SmallIcon("sendqueued") , | 45 | sendQueued = new QAction( tr( "Send queued mails" ), SmallIcon("sendqueued") , |
44 | 0, 0, this ); | 46 | 0, 0, this ); |
45 | sendQueued->addTo( toolBar ); | 47 | sendQueued->addTo( toolBar ); |
46 | sendQueued->addTo( mailMenu ); | 48 | sendQueued->addTo( mailMenu ); |
47 | 49 | ||
48 | /* | 50 | /* |