Local adjustments - Various improvment to GUI - labels - tooltip (#5911)

* from localdenoise Change GUI showmask - GUI exposure

* from branch localgflc - Change combobox settings hide-show by a checkbox

* Fixed bad behavior show Hide settings

* Clean default - change labels

* Change labels first

* Change labels 2

* Change label 3

* Merge with dev - Labels 3

* Label 4

* label 5

* Label 6

* Label 7 - tooltips

* Label 8

* Labels 9

* All string set to empty in else case updateAdviceTooltips
This commit is contained in:
Desmis
2020-09-20 09:49:56 +02:00
committed by GitHub
parent beb944ceed
commit 5b97e0cde3
14 changed files with 223 additions and 156 deletions

View File

@@ -75,6 +75,7 @@ public:
double balanh;
double colorde;
double colorscope;
bool hishow;
bool activ;
bool avoid;
bool blwh;
@@ -245,6 +246,7 @@ private:
void adjusterChanged(Adjuster* a, double newval) override;
void hishowChanged();
void activChanged();
void avoidChanged();
void blwhChanged();
@@ -305,6 +307,7 @@ private:
Gtk::TreeModelColumn<double> balanh;
Gtk::TreeModelColumn<double> colorde;
Gtk::TreeModelColumn<double> colorscope;
Gtk::TreeModelColumn<bool> hishow;
Gtk::TreeModelColumn<bool> activ;
Gtk::TreeModelColumn<bool> avoid;
Gtk::TreeModelColumn<bool> blwh;
@@ -355,6 +358,7 @@ private:
Gtk::Button* const button_visibility_;
sigc::connection buttonvisibilityconn_;
MyComboBoxText* const prevMethod_;
sigc::connection prevMethodconn_;
MyComboBoxText* const shape_;
@@ -393,6 +397,8 @@ private:
Adjuster* const scopemask_;
Adjuster* const lumask_;
Gtk::CheckButton* const hishow_;
sigc::connection hishowconn_;
Gtk::CheckButton* const activ_;
sigc::connection activConn_;
Gtk::CheckButton* const avoid_;