summaryrefslogtreecommitdiffstats
path: root/src/kile/managetemplatesdialog.h
blob: 9762c052d88314cc2d756d8cc45dfa4de663f61f (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
/****************************************************************************************
    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