9 #include <QDoubleSpinBox> 10 #include <QGridLayout> 12 #include <QHBoxLayout> 15 #include <QVBoxLayout> 34 QVBoxLayout *mainLayout;
36 QGroupBox *colorsGroup;
37 QGridLayout *colorsLayout;
39 QLabel *screenColorsLabel, *printColorsLabel;
40 QLabel *axesLabel, *backgroundLabel, *borderLabel, *gridLabel, *markersLabel, *textLabel;
41 ColorBox *axesColorBox, *backgroundColorBox, *borderColorBox, *gridColorBox, *markersColorBox, *textColorBox;
43 ColorBox *printAxesColorBox, *printBackgroundColorBox, *printBorderColorBox, *printGridColorBox,
44 *printMarkersColorBox, *printTextColorBox;
48 QLabel *screenChannelLabel, *screenSpectrumLabel, *printChannelLabel, *printSpectrumLabel;
49 std::vector<QLabel *> colorLabel;
50 std::vector<ColorBox *> screenChannelColorBox;
51 std::vector<ColorBox *> screenSpectrumColorBox;
52 std::vector<ColorBox *> printChannelColorBox;
53 std::vector<ColorBox *> printSpectrumColorBox;
Holds the settings of the program.
Definition: settings.h:16
Config page for the colors.
Definition: DsoConfigColorsPage.h:22
A widget for the selection of a color.
Definition: colorbox.h:9
void saveSettings()
Saves the new settings.
Definition: DsoConfigColorsPage.cpp:129