Vuo  2.4.0
VuoInputEditorTextComparison.hh
Go to the documentation of this file.
1
10#pragma once
11
13
14extern "C" {
15#include "VuoTextComparison.h"
16}
17
22{
23 Q_OBJECT
24 Q_PLUGIN_METADATA(IID "org.vuo.inputEditor" FILE "VuoInputEditorTextComparison.json")
25 Q_INTERFACES(VuoInputEditorFactory)
26
27public:
28 virtual VuoInputEditor * newInputEditor(void);
29};
30
35{
36 Q_OBJECT
37
38protected:
39 void setUpDialog(QDialog &dialog, json_object *originalValue, json_object *details);
41 virtual bool supportsTabbingBetweenPorts(void) { return true; }
42
43private:
44 QComboBox *comboBoxComparisonType;
45 QCheckBox *checkBoxCaseSensitive;
46};
47