X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdialogs%2Fsettings.hpp;h=c8ba8162e03a4c03313e72515e01ff08ccfe71cd;hb=cd38c84cb223ba9ecb01d9b0fc0ac11cd9e1d7a1;hp=a51bc97a93de5f8ddc5d8248d6ecda6b03866d56;hpb=1ed996b433f3391f54846784d76da4fe6b07500f;p=pulseview.git diff --git a/pv/dialogs/settings.hpp b/pv/dialogs/settings.hpp index a51bc97a..c8ba8162 100644 --- a/pv/dialogs/settings.hpp +++ b/pv/dialogs/settings.hpp @@ -17,10 +17,11 @@ * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_SETTINGS_HPP -#define PULSEVIEW_PV_SETTINGS_HPP +#ifndef PULSEVIEW_PV_DIALOGS_SETTINGS_HPP +#define PULSEVIEW_PV_DIALOGS_SETTINGS_HPP #include +#include #include #include #include @@ -46,30 +47,42 @@ public: QCheckBox *create_checkbox(const QString& key, const char* slot) const; QPlainTextEdit *create_log_view() const; + QWidget *get_general_settings_form(QWidget *parent) const; QWidget *get_view_settings_form(QWidget *parent) const; QWidget *get_decoder_settings_form(QWidget *parent); QWidget *get_about_page(QWidget *parent) const; QWidget *get_logging_page(QWidget *parent) const; +private Q_SLOTS: void accept(); void reject(); -private Q_SLOTS: void on_page_changed(QListWidgetItem *current, QListWidgetItem *previous); + void on_general_language_changed(const QString &text); + void on_general_theme_changed(int value); + void on_general_style_changed(int value); + void on_general_save_with_setup_changed(int state); + void on_general_start_all_sessions_changed(int state); void on_view_zoomToFitDuringAcq_changed(int state); void on_view_zoomToFitAfterAcq_changed(int state); void on_view_triggerIsZero_changed(int state); void on_view_coloredBG_changed(int state); void on_view_stickyScrolling_changed(int state); + void on_view_allowVerticalDragging_changed(int state); void on_view_showSamplingPoints_changed(int state); + void on_view_fillSignalHighAreas_changed(int state); + void on_view_fillSignalHighAreaColor_changed(QColor color); void on_view_showAnalogMinorGrid_changed(int state); void on_view_showHoverMarker_changed(int state); + void on_view_snapDistance_changed(int value); + void on_view_cursorFillColor_changed(QColor color); void on_view_conversionThresholdDispMode_changed(int state); void on_view_defaultDivHeight_changed(int value); void on_view_defaultLogicHeight_changed(int value); #ifdef ENABLE_DECODE void on_dec_initialStateConfigurable_changed(int state); void on_dec_exportFormat_changed(const QString &text); + void on_dec_alwaysshowallrows_changed(int state); #endif void on_log_logLevel_changed(int value); void on_log_bufferSize_changed(int value); @@ -91,4 +104,4 @@ private: } // namespace dialogs } // namespace pv -#endif // PULSEVIEW_PV_SETTINGS_HPP +#endif // PULSEVIEW_PV_DIALOGS_SETTINGS_HPP