summaryrefslogtreecommitdiffstats
path: root/src/kile/scriptsmanagementwidget.h
blob: a6b1db222287824e8358eb6da17a3f87f1c8f535 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**************************************************************************
*   Copyright (C) 2006 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 SCRIPTSMANAGEMENTWIDGET_H
#define SCRIPTSMANAGEMENTWIDGET_H

#include <tqtoolbutton.h>
#include <tqwidget.h>

#include <klistview.h>
#include <ktoolbar.h>

class KileInfo;

namespace KileJScript {
	class Manager;
	class JScript;
};

namespace KileJScript {
	class Manager;
};

namespace KileWidget {

	/**
	 * This class represents an entry in the scripts list view.
	 **/
	class JScriptListViewItem : public KListViewItem {
		public:
			JScriptListViewItem(TQWidget *managementWidget, KListView *parent, KileJScript::JScript *script, KileInfo *kileInfo);
			virtual ~JScriptListViewItem();

			KileJScript::JScript* getScript();

			virtual void setText(int column, const TQString & text);
			virtual TQString text(int column) const;

		protected:
			KileJScript::JScript *m_script;
			KileInfo *m_kileInfo;
			TQWidget *m_managementWidget;
	};

	/**
	 * This widget is used to handle Kile's scripting functionality.
	 **/
	class ScriptsManagement : public TQWidget {
		Q_OBJECT
  TQ_OBJECT
		public:
			ScriptsManagement(KileInfo *kileInfo, TQWidget *parent = 0, const char *name = 0, WFlags f = 0);
			~ScriptsManagement();
	
// 		signals:

		public slots:
			/**
			 * Rebuilds the list view.
			 **/
			void updateListView();
			

		protected slots:
			/**
			 * Opens the currently selected script in Kile's editing area.
			 **/
			void openSelectedScript();

			/**
			 * Executes the currently selected script.
			 **/
			void executeSelectedScript();
// 			void configureSelectedShortcut();

			void updateButtonPanel();

		protected:
			KileInfo *m_kileInfo;
			KListView *m_scriptsListView;

		private:
			int m_newButton;
			int m_executeButton;
			int m_openButton;
			int m_refreshButton;
			KToolBar *m_toolbar;
	};

}
#endif