File: DialogInterface.h

package info (click to toggle)
darkradiant 3.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 41,080 kB
  • sloc: cpp: 264,743; ansic: 10,659; python: 1,852; xml: 1,650; sh: 92; makefile: 21
file content (84 lines) | stat: -rw-r--r-- 2,296 bytes parent folder | download | duplicates (3)
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
#pragma once

#include "iscript.h"
#include "iscriptinterface.h"
#include "ui/idialogmanager.h"

namespace script
{

// Wrapper class around IDialog
class ScriptDialog
{
	ui::IDialogPtr _dialog;
public:
	ScriptDialog(const ui::IDialogPtr& dialog) :
		_dialog(dialog)
	{}

	void setTitle(const std::string& title)
	{
		if (_dialog != NULL) _dialog->setTitle(title);
	}

	ui::IDialog::Result run()
	{
		return (_dialog != NULL) ? _dialog->run() : ui::IDialog::RESULT_CANCELLED;
	}

	ui::IDialog::Handle addLabel(const std::string& text)
	{
		return (_dialog != NULL) ? _dialog->addLabel(text) : ui::INVALID_HANDLE;
	}

	ui::IDialog::Handle addComboBox(const std::string& label, const ui::IDialog::ComboBoxOptions& options)
	{
		return (_dialog != NULL) ? _dialog->addComboBox(label, options) : ui::INVALID_HANDLE;
	}

	ui::IDialog::Handle addEntryBox(const std::string& label)
	{
		return (_dialog != NULL) ? _dialog->addEntryBox(label) : ui::INVALID_HANDLE;
	}

	ui::IDialog::Handle addPathEntry(const std::string& label, bool foldersOnly = false)
	{
		return (_dialog != NULL) ? _dialog->addPathEntry(label, foldersOnly) : ui::INVALID_HANDLE;
	}

	ui::IDialog::Handle addSpinButton(const std::string& label, double min, double max, double step, unsigned int digits)
	{
		return (_dialog != NULL) ? _dialog->addSpinButton(label, min, max, step, digits) : ui::INVALID_HANDLE;
	}

	ui::IDialog::Handle addCheckbox(const std::string& label)
	{
		return (_dialog != NULL) ? _dialog->addCheckbox(label) : ui::INVALID_HANDLE;
	}

	void setElementValue(const ui::IDialog::Handle& handle, const std::string& value)
	{
		if (_dialog != NULL) _dialog->setElementValue(handle, value);
	}

	std::string getElementValue(const ui::IDialog::Handle& handle)
	{
		return (_dialog != NULL) ? _dialog->getElementValue(handle) : "";
	}
};

/**
 * greebo: This class provides the script interface for the DialogManager class (UIManager module).
 */
class DialogManagerInterface :
	public IScriptInterface
{
public:
	ScriptDialog createDialog(const std::string& title);
	ScriptDialog createMessageBox(const std::string& title, const std::string& text, ui::IDialog::MessageType type);

	// IScriptInterface implementation
	void registerInterface(py::module& scope, py::dict& globals) override;
};

} // namespace script