forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_SpellQueryTab.hpp
72 lines (60 loc) · 1.73 KB
/
sc_SpellQueryTab.hpp
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
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#pragma once
#include <QtWidgets/QtWidgets>
class SC_MainWindow;
class SC_TextEdit;
// ============================================================================
// SC_SpellQueryTab Widget
// ============================================================================
class SC_SpellQueryTab : public QWidget
{
Q_OBJECT
public:
SC_SpellQueryTab( SC_MainWindow* parent );
void decodeSettings();
void encodeSettings();
void run_spell_query();
void checkForSave();
void createToolTips();
struct choices_t
{
// options
QComboBox* source;
QComboBox* filter;
QComboBox* operatorString;
QCheckBox* saveToFile;
QComboBox* directory;
} choice;
struct labels_t
{
QLabel* source;
QLabel* filter;
QLabel* operatorString;
QLabel* arg;
QLabel* input;
QLabel* output;
} label;
struct textboxes_t
{
QLineEdit* arg;
SC_TextEdit* result;
} textbox;
struct buttons_t
{
QPushButton* save;
} button;
//
public slots:
void sourceTypeChanged( const int source_index );
void filterTypeChanged( const int filter_index );
void runSpellQuerySlot();
void browseForFile();
protected:
SC_MainWindow* mainWindow;
void load_setting( QSettings& s, const QString& name, QComboBox* choice, const QString& default_value );
void load_setting( QSettings& s, const QString& name, QLineEdit* textbox, const QString& default_value );
void load_setting( QSettings& s, const QString& name, SC_TextEdit* textbox, const QString& default_value );
};