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/managetemplatesdialog.h

79 lines
2.5 KiB

/****************************************************************************************
begin : Sun Apr 27 2003
copyright : (C) 2003 by Jeroen Wijnhout (wijnhout@science.uva.nl)
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 MANAGETEMPLATESDIALOG_H
#define MANAGETEMPLATESDIALOG_H
#include <tqcheckbox.h>
#include <tqfileinfo.h>
#include <tqstring.h>
#include <tdelistview.h>
#include <kdialogbase.h>
#include <klineedit.h>
#include <kurl.h>
#include "kileconstants.h"
namespace KileTemplate { class Manager; class Info; }
/**
*@author Jeroen Wijnhout
*/
class ManageTemplatesDialog : public KDialogBase {
Q_OBJECT
public:
ManageTemplatesDialog(KileTemplate::Manager *templateManager, const KURL& sourceURL, const TQString &caption,TQWidget *parent=0, const char *name=0);
ManageTemplatesDialog(KileTemplate::Manager *templateManager, const TQString &caption,TQWidget *parent=0, const char *name=0);
virtual ~ManageTemplatesDialog();
public slots:
void slotSelectedTemplate(TQListViewItem *item);
void slotSelectIcon();
void addTemplate();
bool removeTemplate();
signals:
void aboutToClose();
protected slots:
void updateTemplateListView(bool showAllTypes);
void clearSelection();
virtual void slotOk();
protected:
KileTemplate::Manager* m_templateManager;
KLineEdit *m_nameEdit, *m_iconEdit;
TDEListView *m_templateList;
KileDocument::Type m_templateType;
TQCheckBox *m_showAllTypesCheckBox;
KURL m_sourceURL;
/**
* Fills the template list view with template entries.
*
* @param type The type of the templates that should be displayed. You can pass "KileDocument::Undefined" to
* display every template.
**/
void populateTemplateListView(KileDocument::Type type);
};
#endif