summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/mainwindow.cpp
authorzecke <zecke>2003-02-22 22:59:37 (UTC)
committer zecke <zecke>2003-02-22 22:59:37 (UTC)
commit47fc358e914aecd13c4cb3d9cb4b3f2ca1a93b6c (patch) (unidiff)
tree034af2ca8bb5ee3e0b751739f9f9a9fbcc241530 /core/pim/datebook2/mainwindow.cpp
parent00c146960fa7fd05dc56fac2a24b3d7968a4a772 (diff)
downloadopie-47fc358e914aecd13c4cb3d9cb4b3f2ca1a93b6c.zip
opie-47fc358e914aecd13c4cb3d9cb4b3f2ca1a93b6c.tar.gz
opie-47fc358e914aecd13c4cb3d9cb4b3f2ca1a93b6c.tar.bz2
import the new layout/design of datebook
sorry this was not put into a branch and once its done it'll replace datebook and be put into that subdir. but currently I want both versions available so I can test... So by design it'll feature Showing BirthDays Showing Due and OVerDue Todos Better AllDay handling Pinning Events to TimeZones Exceptions to Recurrence
Diffstat (limited to 'core/pim/datebook2/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/mainwindow.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/core/pim/datebook2/mainwindow.cpp b/core/pim/datebook2/mainwindow.cpp
new file mode 100644
index 0000000..2f214b8
--- a/dev/null
+++ b/core/pim/datebook2/mainwindow.cpp
@@ -0,0 +1,70 @@
1#include <qwidgetstack.h>
2#include <qlabel.h>
3#include <qaction.h>
4
5#include <qpe/ir.h>
6#include <qpe/qpemenubar.h>
7#include <qpe/qpemessagebox.h>
8#include <qpe/resource.h>
9
10
11#include "mainwindow.h"
12
13
14using namespace Datebook;
15
16MainWindow::MainWindow()
17 : OPimMainWindow( "Datebook", 0, 0 ) {
18 initUI();
19 initConfig();
20 initView();
21 initManagers();
22
23 raiseCurrentView();
24 QTimer::singleShot(0, this, SLOT(populate() ) );
25}
26MainWindow::~MainWindow() {
27
28}
29void MainWindow::doSetDocument( const QString& str ) {
30
31}
32void MainWindow::flush() {
33
34}
35void MainWindow::reload() {
36
37}
38int MainWindow::create() {
39
40}
41bool MainWindow::remove( int uid ) {
42
43}
44void MainWindow::beam( int uid ) {
45
46}
47void MainWindow::show( int uid ) {
48
49}
50void MainWindow::add( const OPimRecord& ) {
51
52}
53void MainWindow::edit( int uid ) {
54
55}
56void MainWindow::initUI() {
57
58}
59void MainWindow::initConfig() {
60
61}
62void MainWindow::initView() {
63
64}
65void MainWindow::initManagers() {
66
67}
68void MainWindow::raiseCurrentView() {
69
70}