blob: 587be23e01142fd1f92ba851328dd620ab79d2ca (
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
|
/***************************************************************************
kstartdlg.h - description
-------------------
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KSTARTDLG_H
#define KSTARTDLG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <kdialogbase.h>
#include <klocale.h>
#include <kfontdialog.h>
#include <kurlrequester.h>
#include <kiconview.h>
#include <tqstring.h>
#include <tqradiobutton.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqpushbutton.h>
/**KMyMoney 2 start dialog
*/
class KStartDlg : public KDialogBase {
Q_OBJECT
public:
KStartDlg( TQWidget *parent=0, const char *name=0, bool modal=true );
virtual ~KStartDlg();
bool isNewFile(void) const { return isnewfile; }
bool isOpenFile(void) const { return !kurlrequest->url().isEmpty(); }
const TQString getURL(void) const { return kurlrequest->url(); }
TQString getTemplateName(void) const { return templatename; }
private: // Private methods
TQString m_filename;
bool fileExists(KURL url);
void setPage_Template();
void setPage_Documents();
/** misc widgets */
/** Write config window */
void writeConfig();
/** Read config window */
void readConfig();
KIconView *view_wizard;
KIconView *view_recent;
KURLRequester *kurlrequest;
/** misc variables */
bool isnewfile;
bool isopenfile;
TQString templatename;
TQVBox *templateMainFrame;
TQFrame *recentMainFrame;
protected slots:
/** No descriptions */
void slotOk();
private slots:
void slotTemplateClicked(TQIconViewItem *item);
/** slot to recent view */
void slotRecentClicked(TQIconViewItem *item);
/** Handle selections */
void slotTemplateSelectionChanged(TQIconViewItem* item);
void slotRecentSelectionChanged(TQIconViewItem* item);
void slotAboutToShowPage(TQWidget* page);
};
#endif
|