summaryrefslogtreecommitdiffabout
path: root/korganizer/mainwindow.h
blob: 58081f6d35a8d882f717fa2f7dba60ac870a6adc (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#ifndef KORGE_MAINWINDOW_H
#define KORGE_MAINWINDOW_H

#include <qmainwindow.h>
#include <qtimer.h>
#include <qdict.h>
#include <qregexp.h>

#include <libkcal/incidence.h>
#include "simplealarmclient.h"

class QAction;
class CalendarView;
class KSyncProfile;
#ifdef DESKTOP_VERSION

#define QPEToolBar QToolBar
#define QPEMenuBar QMenuBar
#endif
class QPEToolBar;
#include <qserversocket.h> 
#include <qsocket.h>
#include <qnetworkprotocol.h>

class KServerSocket : public QServerSocket
{
    Q_OBJECT

public:
    KServerSocket ( Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ) :
        QServerSocket( port, backlog, parent, name ){;};
    void newConnection ( int socket ) 
    {
        qDebug("KServerSocket:New connection %d ", socket); 
        QSocket* s = new QSocket( this );
        connect( s, SIGNAL(readyRead()), this, SLOT(readClient()) );
        connect( s, SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) );
        s->setSocket( socket );
    }
   
signals:
    void sendFile(QSocket*); 
    void getFile(QSocket*); 
    void endConnect();
private slots:
  void discardClient()
    {
        QSocket* socket = (QSocket*)sender();
        delete socket;
        emit endConnect();
    }
 void readClient()
    {
        qDebug("readClient() ");
        QSocket* socket = (QSocket*)sender();
        if ( socket->canReadLine() ) {
            QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), socket->readLine() );
            if ( tokens[0] == "GET" ) {
                emit sendFile( socket );
            } 
            if ( tokens[0] == "PUT" ) {
                emit getFile( socket );
            } 
            if ( tokens[0] == "STOP" ) {
                emit endConnect();
            }
        }
    }
};


namespace KCal {
class CalendarLocal;
}

using namespace KCal;

class MainWindow : public QMainWindow
{
    Q_OBJECT
  public:
    MainWindow( QWidget *parent = 0, const char *name = 0, QString command = "");
    ~MainWindow();
 public  slots:  
    virtual void showMaximized (); 
     void configureAgenda( int );
    void recieve( const QCString& msg, const QByteArray& data );
    static  QString defaultFileName();
    static QString resourcePath();
    protected slots:  
    void setCaptionToDates();
    int ringSync();
    void multiSync( bool askforPrefs = false );
    void about(); 
    void licence(); 
    void faq(); 
    void usertrans(); 
    void features(); 
    void synchowto();   
    void whatsNew();    
    void keyBindings();
    void aboutAutoSaving();;
    void aboutKnownBugs();

    void processIncidenceSelection( Incidence * );

    void importQtopia();
    void importBday();
    void importOL();
    void importIcal();
    void importFile( QString, bool );
    void quickImportIcal();
    
    void slotModifiedChanged( bool );
    
    void save();
    void configureToolBar( int );
    void printSel();
    void printCal();
    void saveCalendar();
    void loadCalendar();
    void exportVCalendar();
    void fillFilterMenu();
    void selectFilter( int );

    void slotSyncMenu( int );
    void syncSSH();
    void confSync();
    void syncSharp();
    void syncPhone();
    void syncLocalFile();
    bool syncWithFile( QString, bool );
    void quickSyncLocalFile();
    
    
  protected:
    void displayText( QString, QString);
    void displayFile( QString, QString);
    
    void enableIncidenceActions( bool );
    
  private slots:
    void fillSyncMenu();
    void sendFile(QSocket* s);
    void getFile(QSocket* socket);
    void readFileFromSocket();
    void endConnect();
  private:
    QSocket* mCommandSocket;
    KServerSocket * mServerSocket;
    bool mClosed;
    void saveOnClose();
    int mCurrentSyncProfile;
    void enableQuick();
    void performQuick();
    void performQuickQuick();
    void syncRemote( KSyncProfile* , bool ask = true);
    bool  mFlagKeyPressed;
    bool  mBlockAtStartup;
    QPEToolBar *iconToolBar;
    void initActions();
    void setDefaultPreferences(); 
    void keyPressEvent ( QKeyEvent * ) ;
    void keyReleaseEvent ( QKeyEvent * ) ;
    QPopupMenu *configureToolBarMenu;
    QPopupMenu *selectFilterMenu;
    QPopupMenu *configureAgendaMenu, *syncMenu;
    CalendarLocal *mCalendar;
    CalendarView *mView;
    QString  getPassword();
    QAction *mNewSubTodoAction;
    
    QAction *mShowAction;
    QAction *mEditAction;
    QAction *mDeleteAction;
    void closeEvent( QCloseEvent* ce );
    SimpleAlarmClient mAlarmClient;
    QTimer mSaveTimer;
    bool mBlockSaveFlag;
    bool mCalendarModifiedFlag;
    QPixmap loadPixmap( QString );
    QDialog * mSyncActionDialog;
};


#endif