summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/mainwindow.cpp
blob: 2f214b89e4f6748a4d565eff0a0f2268ef08ca8e (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <qwidgetstack.h>
#include <qlabel.h>
#include <qaction.h>

#include <qpe/ir.h>
#include <qpe/qpemenubar.h>
#include <qpe/qpemessagebox.h>
#include <qpe/resource.h>


#include "mainwindow.h"


using namespace Datebook;

MainWindow::MainWindow()
    : OPimMainWindow( "Datebook", 0, 0 ) {
    initUI();
    initConfig();
    initView();
    initManagers();

    raiseCurrentView();
    QTimer::singleShot(0, this, SLOT(populate() ) );
}
MainWindow::~MainWindow() {

}
void MainWindow::doSetDocument( const QString& str ) {

}
void MainWindow::flush() {

}
void MainWindow::reload() {

}
int MainWindow::create() {

}
bool MainWindow::remove( int uid ) {

}
void MainWindow::beam( int uid ) {

}
void MainWindow::show( int uid ) {

}
void MainWindow::add( const OPimRecord& ) {

}
void MainWindow::edit( int uid ) {

}
void MainWindow::initUI() {

}
void MainWindow::initConfig() {

}
void MainWindow::initView() {

}
void MainWindow::initManagers() {

}
void MainWindow::raiseCurrentView() {

}