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.
kile/src/kile/newfilewizard.h

64 lines
1.9 KiB

/*****************************************************************************************
begin : Sat Apr 26 2003
copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)
2007 by Michel Ludwig (michel.ludwig@kdemail.net)
*****************************************************************************************/
/***************************************************************************
* *
* 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 NEWFILEWIZARD_H
#define NEWFILEWIZARD_H
#include <tqstring.h>
#include <tqcheckbox.h>
#include <kstandarddirs.h>
#include <kiconview.h>
#include <kdialogbase.h>
#include <tdelocale.h>
#include <kprocess.h>
#include "kileconstants.h"
#include "templates.h"
class NewDocumentWidget;
class NewFileWizard : public KDialogBase
{
TQ_OBJECT
public:
NewFileWizard(KileTemplate::Manager *manager, TQWidget *parent=0, const char *name=0);
~NewFileWizard();
public:
TemplateItem* getSelection() const;
bool useWizard();
protected slots:
void slotOk();
void slotActivated(int index);
void restoreSelectedIcon();
protected:
KileTemplate::Manager *m_templateManager;
TDEConfig *m_config;
NewDocumentWidget* m_newDocumentWidget;
int m_currentlyDisplayedType; // not a document type, only a local type!
TQString getConfigKey(int index);
void storeSelectedIcon();
};
#endif