summaryrefslogtreecommitdiffstats
path: root/scribus/plugins/scriptplugin/runscriptdialog.h
blob: 42bde94bab80bade9f9cf2f77aa85fe612749d90 (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
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#ifndef _RUNSCRIPTDIALOG_H
#define _RUNSCRIPTDIALOG_H

// Pulls in Python.h
// #include "cmdvar.h"
#include "ui_runscriptdialog.h"


/*! \brief Select a python script for execution.
\author Craig Ringer
\author Petr Vanek <petr@scribus.info>
*/
class RunScriptDialog : public QDialog, public Ui::RunScriptDialog
{
	Q_OBJECT

	public:
		RunScriptDialog(QWidget* parent, bool extEnable);
		~RunScriptDialog();

		//! \brief Check if the user wanted the script run as an extension script
		bool extensionRequested();
		//! \brief Return chosen filename
		QString selectedFile();

	protected:
		// true id there is "scripter extensions" feature enabled
		bool m_extEnable;

		static QString m_lastScriptDir;

	protected slots:
		virtual void accept();
};

#endif