Freeciv-3.4
Loading...
Searching...
No Matches
optiondlg.cpp
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18// Qt
19#include <QApplication>
20#include <QCheckBox>
21#include <QColorDialog>
22#include <QComboBox>
23#include <QDialogButtonBox>
24#include <QFontDialog>
25#include <QGroupBox>
26#include <QHBoxLayout>
27#include <QLabel>
28#include <QLineEdit>
29#include <QPainter>
30#include <QPushButton>
31#include <QScrollArea>
32#include <QSpinBox>
33
34// utility
35#include "log.h"
36#include "string_vector.h"
37
38// client
39#include "options.h"
40#include "client_main.h"
41
42// gui-qt
43#include "fc_client.h"
44
45#include "optiondlg.h"
46
47enum {
54};
55
56// Global value to store pointers to opened config dialogs
58
59/************************************************************************/
63{
65 QString st, str, result;
66 int i;
67 int j = 0;
68
69 sl = text.split("\n");
70 foreach (const QString &s, sl) {
71 st = s;
72 while (st.length() >= 80) {
73 str = st.left(80);
74 i = str.lastIndexOf(' ');
75 if (i == -1) {
76 i = 80;
77 }
78 result = result + str.left(i) + '\n';
79 /* Skip last space - at (i + 1)
80 unless there there was no space */
81 if (i != 80) {
82 st.remove(0, i + 1);
83 } else {
84 st.remove(0, i);
85 }
86 }
87 str = st;
88 if (str.left(str.length()) != "") {
89 result = result + str.left(str.length()) + '\n';
90 }
91 j++;
92 if (j >= 12 && cut) {
93 result = result + _("... read more in help") + "\n";
94 break;
95 }
96 }
97 result.remove(result.lastIndexOf('\n'), 1);
98
99 return result;
100}
101
102/************************************************************************/
106{
109
110 // Remove all lines from help which has '*' in first 3 chars
111 sl = text.split('\n');
112 foreach (const QString &s, sl) {
113 if (s.length() > 2) {
114 if (s.at(0) != '*' && s.at(1) != '*' && s.at(2) != '*') {
115 ret_str = ret_str + s + '\n';
116 }
117 } else {
118 ret_str = ret_str + s + '\n';
119 }
120 }
121 return ret_str;
122}
123
124/************************************************************************/
128 const option_set *options, bool client_set,
129 QWidget *parent)
130 : qfc_dialog(parent), client_settings(client_set)
131{
132 QPushButton *but;
133
134 curr_options = options;
136 tab_widget = new QTabWidget;
137
139 but = new QPushButton(style()->standardIcon(QStyle::SP_DialogCancelButton),
140 _("Cancel"));
141 button_box->addButton(but, QDialogButtonBox::ActionRole);
142 QObject::connect(but, &QPushButton::clicked, [this]() {
144 });
145
146 but = new QPushButton(style()->standardIcon(QStyle::SP_DialogResetButton),
147 _("Reset"));
148 button_box->addButton(but, QDialogButtonBox::ResetRole);
149 QObject::connect(but, &QPushButton::clicked, [this]() {
151 });
152
153 but = new QPushButton(QIcon::fromTheme("view-refresh"), _("Refresh"));
154 button_box->addButton(but, QDialogButtonBox::ActionRole);
155 QObject::connect(but, &QPushButton::clicked, [this]() {
157 });
158
159 but = new QPushButton(style()->standardIcon(QStyle::SP_DialogApplyButton),
160 _("Apply"));
161 button_box->addButton(but, QDialogButtonBox::ActionRole);
162 QObject::connect(but, &QPushButton::clicked, [this]() {
164 });
165
166 but = new QPushButton(style()->standardIcon(QStyle::SP_DialogSaveButton),
167 _("Save"));
168 button_box->addButton(but, QDialogButtonBox::ActionRole);
169 QObject::connect(but, &QPushButton::clicked, [this]() {
171 });
172
173 but = new QPushButton(style()->standardIcon(QStyle::SP_DialogOkButton),
174 _("Ok"));
175 button_box->addButton(but, QDialogButtonBox::ActionRole);
176 QObject::connect(but, &QPushButton::clicked, [this]() {
178 });
179
181 main_layout->addWidget(tab_widget);
182 categories.clear();
183 fill(options);
184 main_layout->addWidget(button_box);
186
187 setAttribute(Qt::WA_DeleteOnClose);
188}
189
190/************************************************************************/
194{
197 }
198 destroy();
199}
200
201/************************************************************************/
205{
206 switch (response) {
207 case RESPONSE_APPLY:
209 break;
210 case RESPONSE_CANCEL:
212 close();
213 break;
214 case RESPONSE_OK:
217 close();
218 break;
219 case RESPONSE_SAVE:
221 queue_options_save(nullptr);
222 break;
223 case RESPONSE_RESET:
224 full_reset();
225 break;
226 case RESPONSE_REFRESH:
227 full_refresh();
228 break;
229 }
230}
231
232/************************************************************************/
236 QByteArray &a2)
237{
240 QWidget *w;
241 QPushButton *but;
242
243 w = reinterpret_cast<QPushButton *>(option_get_gui_data(poption));
244 but = w->findChild<QPushButton *>("text_color");
245 pal = but->palette();
246 col1 = pal.color(QPalette::Button);
247 but = w->findChild<QPushButton *>("text_background");
248 pal = but->palette();
249 col2 = pal.color(QPalette::Button);
250 a1 = col1.name().toUtf8();
251 a2 = col2.name().toUtf8();
252}
253
254/************************************************************************/
258{
260
262 switch (option_type(poption)) {
263 case OT_BOOLEAN:
265 break;
266 case OT_INTEGER:
268 break;
269 case OT_STRING:
271 break;
272 case OT_ENUM:
274 break;
275 case OT_BITWISE:
277 break;
278 case OT_FONT:
280 break;
281 case OT_COLOR:
284 break;
285 case OT_VIDEO_MODE:
286 log_error("Option type %s (%d) not supported yet.",
289 break;
290 }
292}
293
294
295/************************************************************************/
298void option_dialog::set_bool(struct option *poption, bool value)
299{
300 QCheckBox *c;
301
302 c = reinterpret_cast<QCheckBox *>(option_get_gui_data(poption));
303 if (value) {
304 c->setCheckState(Qt::Checked);
305 } else {
306 c->setCheckState(Qt::Unchecked);
307 }
308}
309
310/************************************************************************/
314{
315 QCheckBox *c;
316
317 c = reinterpret_cast<QCheckBox *>(option_get_gui_data(poption));
318 if (c->checkState() == Qt::Checked) {
319 return true;
320 } else {
321 return false;
322 }
323}
324
325/************************************************************************/
328void option_dialog::set_int(struct option *poption, int value)
329{
330 QSpinBox *s;
331
332 s = reinterpret_cast<QSpinBox *>(option_get_gui_data(poption));
333 s->setValue(value);
334}
335
336/************************************************************************/
342{
344 QPushButton *qp;
345 QFont *fp;
346
347 fp = new QFont();
348 fp->fromString(s);
349 qApp->processEvents();
350 qp = reinterpret_cast<QPushButton *>(option_get_gui_data(poption));
351 ql = s.split(",");
352 if (!s.isEmpty()) {
353 qp->setText(ql[0] + " " + ql[1]);
354 qp->setFont(*fp);
355 }
356}
357
358/************************************************************************/
362{
363 QSpinBox *s;
364
365 s = reinterpret_cast<QSpinBox *>(option_get_gui_data(poption));
366 return s->value();
367}
368
369/************************************************************************/
372void option_dialog::set_string(struct option *poption, const char *string)
373{
374 int i;
375 QComboBox *cb;
376 QLineEdit *le;
377
378 if (option_str_values(poption) != nullptr) {
379 cb = reinterpret_cast<QComboBox *>(option_get_gui_data(poption));
380 i = cb->findText(string);
381 if (i != -1) {
382 cb->setCurrentIndex(i);
383 }
384 } else {
385 le = reinterpret_cast<QLineEdit *>(option_get_gui_data(poption));
386 le->setText(string);
387 }
388}
389
390/************************************************************************/
394{
395 QComboBox *cb;
396 QLineEdit *le;
397
398 if (option_str_values(poption) != nullptr) {
399 cb = reinterpret_cast<QComboBox *>(option_get_gui_data(poption));
400 return cb->currentText().toUtf8();
401 } else {
402 le = reinterpret_cast<QLineEdit *>(option_get_gui_data(poption));
403 return le->displayText().toUtf8();
404 }
405}
406
407/************************************************************************/
410void option_dialog::set_enum(struct option *poption, int index)
411{
412 QComboBox *cb;
413
414 cb = reinterpret_cast<QComboBox *>(option_get_gui_data(poption));
415 cb->setCurrentIndex(index);
416}
417
418/************************************************************************/
422{
423 QComboBox *cb;
424
425 cb = reinterpret_cast<QComboBox *>(option_get_gui_data(poption));
426 return cb->currentIndex();
427}
428
429/************************************************************************/
432void option_dialog::set_bitwise(struct option *poption, unsigned int value)
433{
434 QGroupBox *gb;
435 int i;
437
438 gb = reinterpret_cast<QGroupBox *>(option_get_gui_data(poption));
439 check_buttons = gb->findChildren <QCheckBox *>();
440
441 for (i = 0; i < check_buttons.count(); i++) {
442 if (value & (1 << i)) {
443 check_buttons[i]->setCheckState(Qt::Checked);
444 } else {
445 check_buttons[i]->setCheckState(Qt::Unchecked);
446 }
447 }
448}
449
450/************************************************************************/
454{
455 QGroupBox *gb;
456 int i;
457 unsigned int value = 0;
459
460 gb = reinterpret_cast<QGroupBox *>(option_get_gui_data(poption));
461 check_buttons = gb->findChildren <QCheckBox *>();
462
463 for (i = 0; i < check_buttons.count(); i++) {
464 if (check_buttons[i]->checkState() == Qt::Checked) {
465 value |= 1 << i;
466 }
467 }
468 return value;
469}
470
471/************************************************************************/
474void option_dialog::set_button_color(QPushButton *button,
475 const char *colorname)
476{
477 if (button != nullptr && colorname != nullptr && colorname[0] != '\0') {
478 QString s1 = "QPushButton { background-color: ";
479 QString s2 = ";}";
480 QColor col = QColor::fromString(colorname);
481
482 button->setStyleSheet(s1 + col.name() + s2);
483 }
484}
485
486/************************************************************************/
490{
491 QWidget *w;
492 QPushButton *but;
493
494 w = reinterpret_cast<QPushButton *>(option_get_gui_data(poption));
495 but = w->findChild<QPushButton *>("text_color");
496 set_button_color(but, color.foreground);
497
498 but = w->findChild<QPushButton *>("text_background");
499 set_button_color(but, color.background);
500}
501
502/************************************************************************/
506{
507 switch (option_type(poption)) {
508 case OT_BOOLEAN:
510 break;
511 case OT_INTEGER:
513 break;
514 case OT_STRING:
516 break;
517 case OT_ENUM:
519 break;
520 case OT_BITWISE:
522 break;
523 case OT_FONT:
525 break;
526 case OT_COLOR:
528 break;
529 case OT_VIDEO_MODE:
530 log_error("Option type %s (%d) not supported yet.",
532 break;
533 }
534}
535
536/************************************************************************/
545
546/************************************************************************/
555
556/************************************************************************/
560{
561 switch (option_type(poption)) {
562 case OT_BOOLEAN:
564 break;
565 case OT_INTEGER:
567 break;
568 case OT_STRING:
570 break;
571 case OT_ENUM:
573 break;
574 case OT_BITWISE:
576 break;
577 case OT_FONT:
579 break;
580 case OT_COLOR:
582 break;
583 case OT_VIDEO_MODE:
584 log_error("Option type %s (%d) not supported yet.",
586 break;
587 }
588}
589
590/************************************************************************/
593void option_dialog::fill(const struct option_set *poptset)
594{
598}
599
600/************************************************************************/
604{
605 QWidget *widget;
606 QWidget *lwidget;
607 QWidget *twidget;
608 QString category_name, description, qstr;
609 QStringList qlist, qlist2;
610 const char *str;
611 const struct strvec *values;
615 QLabel *label;
616 QScrollArea *scroll;
617 QSpinBox *spin;
618 QComboBox *combo;
619 QLineEdit *edit;
620 QGroupBox *group;
622 QPushButton *button;
623 QFont qf;
625 int min, max, i;
626 unsigned int j;
627 struct ft_color ft_color;
628 QColor c;
629
630 category_name = option_category_name(poption);
631 widget = nullptr;
632
633 if (!categories.contains(category_name)) {
634 twidget = new QWidget();
635 twidget->setProperty("doomed", true);
636 scroll = new QScrollArea();
637 scroll->setProperty("doomed", true);
638 scroll->setWidgetResizable(true);
639 twidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
641 twidget_layout->setSpacing(0);
642 twidget->setLayout(twidget_layout);
643 scroll->setWidget(twidget);
644 tab_widget->addTab(scroll, category_name);
645 categories.append(category_name);
646 widget_map[category_name] = twidget;
647 } else {
648 twidget = widget_map[category_name];
649 }
650
651 description = option_description(poption);
652 switch (option_type(poption)) {
653 case OT_BOOLEAN:
654 widget = new QCheckBox();
655 break;
656
657 case OT_INTEGER:
658 min = option_int_min(poption);
659 max = option_int_max(poption);
660 spin = new QSpinBox();
661 spin->setMinimum(min);
662 spin->setMaximum(max);
663 spin->setSingleStep(MAX((max - min) / 50, 1));
664 widget = spin;
665 break;
666
667 case OT_STRING:
668 values = option_str_values(poption);
669 if (values != nullptr) {
670 combo = new QComboBox();
671 strvec_iterate(values, value) {
672 combo->addItem(value);
674 widget = combo;
675 } else {
676 edit = new QLineEdit();
677 widget = edit;
678 }
679 break;
680
681 case OT_ENUM:
682 combo = new QComboBox();
683
684 for (i = 0; (str = option_enum_int_to_str(poption, i)); i++) {
685 // We store enum value in QVariant
686 combo->addItem(_(str), i);
687 }
688 widget = combo;
689 break;
690
691 case OT_BITWISE:
692 group = new QGroupBox();
694 vbox_layout = new QVBoxLayout();
695 for (j = 0; j < strvec_size(values); j++) {
696 check = new QCheckBox(_(strvec_get(values, j)));
697 vbox_layout->addWidget(check);
698 }
699 group->setLayout(vbox_layout);
700 widget = group;
701 break;
702
703 case OT_FONT:
704 button = new QPushButton();
707 qstr = qf.toString();
708 qlist = qstr.split(",");
709 button->setFont(qf);
710 button->setText(qlist[0] + " " + qlist[1]);
711 connect(button, SIGNAL(clicked()), this, SLOT(select_font()));
712 widget = button;
713 break;
714
715 case OT_COLOR:
717 button = new QPushButton();
718 button->setToolTip(_("Select the text color"));
719 button->setObjectName("text_color");
720 button->setAutoFillBackground(true);
721 button->setAutoDefault(false);
722 c = QColor::fromString(ft_color.foreground);
723 pal = button->palette();
724 pal.setColor(QPalette::Button, c);
725 button->setPalette(pal);
726 connect(button, SIGNAL(clicked()), this, SLOT(select_color()));
727 hbox_layout = new QHBoxLayout();
728 hbox_layout->addWidget(button);
729 button = new QPushButton();
730 button->setToolTip(_("Select the background color"));
731 button->setObjectName("text_background");
732 button->setAutoFillBackground(true);
733 button->setAutoDefault(false);
734 c = QColor::fromString(ft_color.background);
735 pal = button->palette();
736 pal.setColor(QPalette::Button, c);
737 button->setPalette(pal);
738 connect(button, SIGNAL(clicked()), this, SLOT(select_color()));
739 hbox_layout->addWidget(button);
740 widget = new QWidget();
741 widget->setObjectName(option_name(poption));
742 widget->setLayout(hbox_layout);
743 break;
744
745 case OT_VIDEO_MODE:
746 log_error("Option type %s (%d) not supported yet.",
748 break;
749 }
750
751 if (widget != nullptr) {
752 hbox_layout = new QHBoxLayout();
753 hbox_layout->setAlignment(Qt::AlignRight);
754 label = new QLabel(description);
755 label->setToolTip(split_text(option_help_text(poption), false));
756 hbox_layout->addWidget(label, 1, Qt::AlignLeft);
757 hbox_layout->addStretch();
758 hbox_layout->addWidget(widget, 1, Qt::AlignRight);
759 lwidget = new QWidget();
760 lwidget->setLayout(hbox_layout);
762 twidget_layout->addWidget(lwidget);
763
764 widget->setEnabled(option_is_changeable(poption));
765 widget->setToolTip(split_text(option_help_text(poption), false));
766 }
767
768 option_set_gui_data(poption, widget); // May set nullptr as the gui_data
770}
771
772/************************************************************************/
775void option_dialog_popup(QString name, const struct option_set *poptset,
776 bool client_set)
777{
779
780 if (::dialog_list.contains(poptset)) {
781 opt_dialog = dialog_list[poptset];
783 opt_dialog->show();
784 } else {
785 opt_dialog = new option_dialog(name, poptset, client_set,
786 gui()->central_wdg);
787 ::dialog_list.insert(poptset, opt_dialog);
788 opt_dialog->show();
789 }
790}
791
792/************************************************************************/
796{
798 bool ok;
799 QFont qf;
800 QPushButton *pb;
801
802 pb = (QPushButton *) QObject::sender();
803 qf = pb->font();
804 qf = QFontDialog::getFont(&ok, qf, this,
805 _("Select Font"));
806 pb->setFont(qf);
807 ql = qf.toString().split(",");
808 pb->setText(ql[0] + " " + ql[1]);
809 raise();
810}
811
812/************************************************************************/
816{
817 QFont f;
818 QString s;
819
821 f.fromString(s);
822 return f;
823}
824
825/************************************************************************/
829{
830 QPushButton *qp;
831 QFont f;
832
833 qp = reinterpret_cast<QPushButton *>(option_get_gui_data(poption));
834 f = qp->font();
835 return f.toString().toUtf8();
836}
837
838/************************************************************************/
842{
843 QPushButton *but;
846
847 but = qobject_cast<QPushButton *>(QObject::sender());
848
849 pal = but->palette();
850 color = QColorDialog::getColor(pal.color(QPalette::Button), this,
851 _("Select Color"));
852 if (color.isValid()) {
853 pal.setColor(QPalette::Button, color);
854 but->setPalette(pal);
855
856 set_button_color(but, color.name().toUtf8());
857 }
858
859 raise();
860}
861
862/************************************************************************/
866{
867 if (client_settings) {
868 if (!gui()->qt_settings.options_client_geometry.isNull()) {
869 restoreGeometry(gui()->qt_settings.options_client_geometry);
870 }
871 } else {
872 if (!gui()->qt_settings.options_server_geometry.isNull()) {
873 restoreGeometry(gui()->qt_settings.options_server_geometry);
874 }
875 }
876}
877
878/************************************************************************/
882{
883 if (client_settings) {
884 gui()->qt_settings.options_client_geometry = saveGeometry();
885 } else {
886 gui()->qt_settings.options_server_geometry = saveGeometry();
887 }
888}
889
890/************************************************************************/
894{
895 if (client_settings) {
896 gui()->qt_settings.options_client_geometry = saveGeometry();
897 } else {
898 gui()->qt_settings.options_server_geometry = saveGeometry();
899 }
900}
901
902/************************************************************************/
905void option_dialog_popdown(const struct option_set *poptset)
906{
908
909 while (::dialog_list.contains(poptset)) {
910 opt_dialog =::dialog_list[poptset];
911 opt_dialog->close();
912 ::dialog_list.remove(poptset);
913 }
914}
915
916/************************************************************************/
920{
922
926 }
927
929 if (strcmp(option_name(poption), "nationset") == 0) {
931 }
932 if (strcmp(option_name(poption), "aifill") == 0) {
933 gui()->pr_options->set_aifill(option_int_get(poption));
934 }
935 }
936}
937
938/************************************************************************/
942{
947}
948
949/************************************************************************/
953{
958}
#define str
Definition astring.c:76
QString split_text(QString text, bool cut)
Definition optiondlg.cpp:62
void reactivate()
Definition dialogs.cpp:345
char * incite_cost
Definition comments.c:76
void update_nationset_combo()
Definition dialogs.cpp:1272
enum event_type event
Definition events.c:81
#define _(String)
Definition fcintl.h:67
static struct ft_color ft_color_construct(const char *foreground, const char *background)
static struct dialog_list * dialog_list
@ RESPONSE_SAVE
Definition optiondlg.c:66
@ RESPONSE_APPLY
Definition optiondlg.c:63
@ RESPONSE_CANCEL
Definition optiondlg.c:61
@ RESPONSE_OK
Definition optiondlg.c:62
@ RESPONSE_RESET
Definition optiondlg.c:64
@ RESPONSE_REFRESH
Definition optiondlg.c:65
#define edit(pedit)
Definition widget_edit.h:34
const char * name
Definition inputfile.c:127
#define log_error(message,...)
Definition log.h:104
static mpgui * gui
Definition mpgui_qt.cpp:53
void option_gui_remove(struct option *poption)
void option_dialog_popdown(const struct option_set *poptset)
QString split_text(QString text, bool cut)
Definition optiondlg.cpp:62
void option_gui_add(struct option *poption)
QMap< const struct option_set *, option_dialog * > dialog_list
Definition optiondlg.cpp:57
void option_gui_update(struct option *poption)
void option_dialog_popup(QString name, const struct option_set *poptset, bool client_set)
@ RESPONSE_SAVE
Definition optiondlg.cpp:53
@ RESPONSE_APPLY
Definition optiondlg.cpp:50
@ RESPONSE_CANCEL
Definition optiondlg.cpp:48
@ RESPONSE_OK
Definition optiondlg.cpp:49
@ RESPONSE_RESET
Definition optiondlg.cpp:51
@ RESPONSE_REFRESH
Definition optiondlg.cpp:52
QString cut_helptext(QString text)
const struct strvec * option_str_values(const struct option *poption)
Definition options.c:966
unsigned option_bitwise_def(const struct option *poption)
Definition options.c:1136
int option_int_min(const struct option *poption)
Definition options.c:907
bool option_bool_def(const struct option *poption)
Definition options.c:859
const char * option_font_def(const struct option *poption)
Definition options.c:1203
const struct option_set * server_optset
Definition options.c:4369
const char * option_description(const struct option *poption)
Definition options.c:689
const char * option_help_text(const struct option *poption)
Definition options.c:699
struct ft_color option_color_get(const struct option *poption)
Definition options.c:1241
int option_enum_get_int(const struct option *poption)
Definition options.c:1031
bool option_str_set(struct option *poption, const char *str)
Definition options.c:977
const char * option_name(const struct option *poption)
Definition options.c:679
int option_int_get(const struct option *poption)
Definition options.c:885
bool option_color_set(struct option *poption, struct ft_color color)
Definition options.c:1264
bool option_bool_set(struct option *poption, bool val)
Definition options.c:870
bool option_is_changeable(const struct option *poption)
Definition options.c:740
void option_set_gui_data(struct option *poption, void *data)
Definition options.c:818
const char * option_str_get(const struct option *poption)
Definition options.c:944
void * option_get_gui_data(const struct option *poption)
Definition options.c:828
bool option_enum_set_int(struct option *poption, int val)
Definition options.c:1091
bool option_bool_get(const struct option *poption)
Definition options.c:848
enum option_type option_type(const struct option *poption)
Definition options.c:709
const char * option_enum_int_to_str(const struct option *poption, int val)
Definition options.c:1016
const struct option_set * option_optset(const struct option *poption)
Definition options.c:659
const char * option_str_def(const struct option *poption)
Definition options.c:955
int option_int_max(const struct option *poption)
Definition options.c:918
bool option_font_set(struct option *poption, const char *font)
Definition options.c:1225
void queue_options_save(option_save_log_callback log_cb)
Definition options.c:6441
const struct strvec * option_bitwise_values(const struct option *poption)
Definition options.c:1164
bool option_bitwise_set(struct option *poption, unsigned val)
Definition options.c:1175
const char * option_font_get(const struct option *poption)
Definition options.c:1192
struct ft_color option_color_def(const struct option *poption)
Definition options.c:1252
unsigned option_bitwise_get(const struct option *poption)
Definition options.c:1125
int option_enum_def_int(const struct option *poption)
Definition options.c:1055
bool option_int_set(struct option *poption, int val)
Definition options.c:929
const char * option_category_name(const struct option *poption)
Definition options.c:729
int option_int_def(const struct option *poption)
Definition options.c:896
#define options_iterate(poptset, poption)
Definition options.h:602
#define options_iterate_end
Definition options.h:607
#define MAX(x, y)
Definition shared.h:54
const char * strvec_get(const struct strvec *psv, size_t svindex)
size_t strvec_size(const struct strvec *psv)
#define strvec_iterate(psv, str)
#define strvec_iterate_end
Definition colors.h:21
const char * background
const char * foreground
unsigned get_bitwise(struct option *poption)
const option_set * curr_options
Definition optiondlg.h:66
void select_color()
void hideEvent(QHideEvent *event)
QTabWidget * tab_widget
Definition optiondlg.h:48
QMap< QString, QWidget * > widget_map
Definition optiondlg.h:51
QByteArray get_button_font(struct option *poption)
void get_color(struct option *poption, QByteArray &a1, QByteArray &a2)
bool get_bool(struct option *poption)
QDialogButtonBox * button_box
Definition optiondlg.h:49
void set_string(struct option *poption, const char *string)
void set_int(struct option *poption, int value)
void full_reset()
QList< QString > categories
Definition optiondlg.h:50
void showEvent(QShowEvent *event)
QByteArray get_string(struct option *poption)
int get_enum(struct option *poption)
void select_font()
void add_option(struct option *poption)
void set_bool(struct option *poption, bool value)
void set_enum(struct option *poption, int index)
void apply_option(int response)
void closeEvent(QCloseEvent *event)
QVBoxLayout * main_layout
Definition optiondlg.h:47
void apply_options()
void full_refresh()
void set_font(struct option *poption, QString s)
QFont get_font(struct option *poption)
const struct option_set * poptset
Definition optiondlg.c:42
void option_dialog_reset(struct option *poption)
void set_color(struct option *poption, struct ft_color color)
void fill(const struct option_set *poptset)
void option_dialog_refresh(struct option *poption)
int get_int(struct option *poption)
void set_button_color(QPushButton *button, const char *colorname)
void set_bitwise(struct option *poption, unsigned value)
option_dialog(const QString &name, const option_set *options, bool client_set, QWidget *parent=nullptr)
bool client_settings
Definition optiondlg.h:65