You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.5 KiB
86 lines
2.5 KiB
|
|
/***************************************************************************
|
|
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
|
|
TQ_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
|