revert preference settings for title color

Because of subsequent changes there is no clean way to just revert the changes
introduced in commit 8b36cf1051 ("desktop: offer different colors for info tab
titles"), so this manually removes the parts we don't need anymore.

This also restores a tooltip value that was inadvertantly removed in that
commit.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-11-04 14:29:48 -08:00
parent 6201ac34b4
commit be3190db8a
7 changed files with 7 additions and 119 deletions

View file

@ -66,12 +66,6 @@ enum unit_system_values {
PERSONALIZE PERSONALIZE
}; };
enum headerstyle_color_values {
MEDIUMBLUE,
LIGHTBLUE,
BLACK
};
// ********** PREFERENCES ********** // ********** PREFERENCES **********
// This struct is kept global for all of ssrf // This struct is kept global for all of ssrf
// most of the fields are loaded from git as // most of the fields are loaded from git as
@ -106,12 +100,11 @@ struct preferences {
dive_computer_prefs_t dive_computer4; dive_computer_prefs_t dive_computer4;
// ********** Display ************* // ********** Display *************
bool display_invalid_dives; bool display_invalid_dives;
const char *divelist_font; const char *divelist_font;
double font_size; double font_size;
double mobile_scale; double mobile_scale;
bool show_developer; bool show_developer;
enum headerstyle_color_values headerstyle_color;
// ********** Equipment tab ******* // ********** Equipment tab *******
const char *default_cylinder; const char *default_cylinder;

View file

@ -55,7 +55,6 @@ void qPrefDisplay::loadSync(bool doSync)
disk_mobile_scale(doSync); disk_mobile_scale(doSync);
disk_display_invalid_dives(doSync); disk_display_invalid_dives(doSync);
disk_show_developer(doSync); disk_show_developer(doSync);
disk_headerstyle_color(doSync);
if (!doSync) { if (!doSync) {
load_tooltip_position(); load_tooltip_position();
load_theme(); load_theme();
@ -177,29 +176,6 @@ void qPrefDisplay::setCorrectFont()
prefs.display_invalid_dives = qPrefPrivate::propValue(keyFromGroupAndName(group, "displayinvalid"), default_prefs.display_invalid_dives).toBool(); prefs.display_invalid_dives = qPrefPrivate::propValue(keyFromGroupAndName(group, "displayinvalid"), default_prefs.display_invalid_dives).toBool();
} }
void qPrefDisplay::set_headerstyle_color(enum headerstyle_color_values value)
{
if (value != prefs.headerstyle_color) {
prefs.headerstyle_color = value;
disk_headerstyle_color(true);
emit instance()->headerstyle_colorChanged(value);
}
}
void qPrefDisplay::disk_headerstyle_color(bool doSync)
{
static enum headerstyle_color_values current_state;
if (doSync) {
if (current_state != prefs.headerstyle_color) {
current_state = prefs.headerstyle_color;
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "headerstyle_color"), prefs.headerstyle_color, default_prefs.headerstyle_color);
}
} else {
prefs.headerstyle_color = (enum headerstyle_color_values)qPrefPrivate::propValue(keyFromGroupAndName(group, "headerstyle_color"), default_prefs.headerstyle_color).toInt();
current_state = prefs.headerstyle_color;
}
}
HANDLE_PROP_QSTRING(Display, "FileDialog/LastDir", lastDir); HANDLE_PROP_QSTRING(Display, "FileDialog/LastDir", lastDir);
HANDLE_PROP_QSTRING(Display, "Theme/currentTheme", theme); HANDLE_PROP_QSTRING(Display, "Theme/currentTheme", theme);

View file

@ -8,7 +8,6 @@
class qPrefDisplay : public QObject { class qPrefDisplay : public QObject {
Q_OBJECT Q_OBJECT
Q_PROPERTY(enum headerstyle_color_values headerstyle_color READ headerstyle_color WRITE set_headerstyle_color NOTIFY headerstyle_colorChanged)
Q_PROPERTY(int animation_speed READ animation_speed WRITE set_animation_speed NOTIFY animation_speedChanged) Q_PROPERTY(int animation_speed READ animation_speed WRITE set_animation_speed NOTIFY animation_speedChanged)
Q_PROPERTY(QString divelist_font READ divelist_font WRITE set_divelist_font NOTIFY divelist_fontChanged) Q_PROPERTY(QString divelist_font READ divelist_font WRITE set_divelist_font NOTIFY divelist_fontChanged)
Q_PROPERTY(double font_size READ font_size WRITE set_font_size NOTIFY font_sizeChanged) Q_PROPERTY(double font_size READ font_size WRITE set_font_size NOTIFY font_sizeChanged)
@ -36,7 +35,6 @@ public:
static void sync() { loadSync(true); } static void sync() { loadSync(true); }
public: public:
static enum headerstyle_color_values headerstyle_color() { return prefs.headerstyle_color; }
static int animation_speed() { return prefs.animation_speed; } static int animation_speed() { return prefs.animation_speed; }
static QString divelist_font() { return prefs.divelist_font; } static QString divelist_font() { return prefs.divelist_font; }
static double font_size() { return prefs.font_size; } static double font_size() { return prefs.font_size; }
@ -56,7 +54,6 @@ public:
static bool singleColumnPortrait() { return st_singleColumnPortrait; } static bool singleColumnPortrait() { return st_singleColumnPortrait; }
public slots: public slots:
static void set_headerstyle_color(enum headerstyle_color_values value);
static void set_animation_speed(int value); static void set_animation_speed(int value);
static void set_divelist_font(const QString &value); static void set_divelist_font(const QString &value);
static void set_font_size(double value); static void set_font_size(double value);
@ -76,7 +73,6 @@ public slots:
static void set_singleColumnPortrait(bool value); static void set_singleColumnPortrait(bool value);
signals: signals:
void headerstyle_colorChanged(enum headerstyle_color_values value);
void animation_speedChanged(int value); void animation_speedChanged(int value);
void divelist_fontChanged(const QString &value); void divelist_fontChanged(const QString &value);
void font_sizeChanged(double value); void font_sizeChanged(double value);
@ -99,7 +95,6 @@ private:
qPrefDisplay() {} qPrefDisplay() {}
// functions to load/sync variable with disk // functions to load/sync variable with disk
static void disk_headerstyle_color(bool doSync);
static void disk_animation_speed(bool doSync); static void disk_animation_speed(bool doSync);
static void disk_divelist_font(bool doSync); static void disk_divelist_font(bool doSync);
static void disk_font_size(bool doSync); static void disk_font_size(bool doSync);

View file

@ -24,7 +24,6 @@ PreferencesDefaults::~PreferencesDefaults()
void PreferencesDefaults::refreshSettings() void PreferencesDefaults::refreshSettings()
{ {
prefs.headerstyle_color == BLACK ? ui->black_text->setChecked(true) : (prefs.headerstyle_color == LIGHTBLUE ? ui->lightblue_text->setChecked(true) : ui->mediumblue_text->setChecked(true));
ui->font->setCurrentFont(qPrefDisplay::divelist_font()); ui->font->setCurrentFont(qPrefDisplay::divelist_font());
ui->fontsize->setValue(qPrefDisplay::font_size()); ui->fontsize->setValue(qPrefDisplay::font_size());
ui->velocitySlider->setValue(qPrefDisplay::animation_speed()); ui->velocitySlider->setValue(qPrefDisplay::animation_speed());
@ -36,6 +35,4 @@ void PreferencesDefaults::syncSettings()
qPrefDisplay::set_divelist_font(ui->font->currentFont().toString()); qPrefDisplay::set_divelist_font(ui->font->currentFont().toString());
qPrefDisplay::set_font_size(ui->fontsize->value()); qPrefDisplay::set_font_size(ui->fontsize->value());
qPrefDisplay::set_animation_speed(ui->velocitySlider->value()); qPrefDisplay::set_animation_speed(ui->velocitySlider->value());
qPrefDisplay::set_headerstyle_color(ui->black_text->isChecked() ? BLACK : (ui->lightblue_text->isChecked() ? LIGHTBLUE : MEDIUMBLUE));
} }

View file

@ -120,77 +120,6 @@
</item> </item>
<item> <item>
<widget class="QGroupBox" name="groupBox_headerstyle">
<property name="title">
<string>Header text colors</string>
</property>
<layout class="QVBoxLayout" name="headerModeLayout_4">
<property name="margin">
<number>5</number>
</property>
<item>
<widget class="QLabel" name="label_help_header">
<property name="toolTip">
<string extracomment="Help info header"/>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="text">
<string>Depending on the display mode, sometimes the blue text used in headers in the various information panes is not clearly visible. Select a color that fits the current theme of your computer. For dark mode, select either Light Blue or Black (rendered white using a dark theme). The default is Medium Blue.</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="darkmodeLayout_5">
<item>
<widget class="QRadioButton" name="mediumblue_text">
<property name="text">
<string>Medium Blue</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="lightblue_text">
<property name="text">
<string>Light Blue</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="black_text">
<property name="text">
<string>Black</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>195</height>
</size>
</property>
</spacer>
</item>
<item>
<spacer name="verticalSpacer_2"> <spacer name="verticalSpacer_2">
<property name="orientation"> <property name="orientation">
<enum>Qt::Vertical</enum> <enum>Qt::Vertical</enum>
@ -203,10 +132,8 @@
</property> </property>
</spacer> </spacer>
</item> </item>
</layout> </layout>
</widget> </widget>
<resources/> <resources/>
<connections> <connections>
<connection> <connection>

View file

@ -49,6 +49,7 @@ TabDiveInformation::TabDiveInformation(QWidget *parent) : TabBase(parent), ui(ne
updateWaterTypeWidget(); updateWaterTypeWidget();
QPixmap warning (":salinity-warning-icon"); QPixmap warning (":salinity-warning-icon");
ui->salinityOverWrittenIcon->setPixmap(warning); ui->salinityOverWrittenIcon->setPixmap(warning);
ui->salinityOverWrittenIcon->setToolTip("Water type differs from that of dc");
ui->salinityOverWrittenIcon->setToolTipDuration(2500); ui->salinityOverWrittenIcon->setToolTipDuration(2500);
ui->salinityOverWrittenIcon->setVisible(false); ui->salinityOverWrittenIcon->setVisible(false);
} }

View file

@ -34,7 +34,6 @@
#include "TabDiveStatistics.h" #include "TabDiveStatistics.h"
#include "TabDiveSite.h" #include "TabDiveSite.h"
#include "TabDiveComputer.h" #include "TabDiveComputer.h"
#include "core/settings/qPrefDisplay.h"
#include <QCompleter> #include <QCompleter>
#include <QScrollBar> #include <QScrollBar>
@ -102,7 +101,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
// Alas, this is not the case. When the user switches to system-format, the preferences sends the according // Alas, this is not the case. When the user switches to system-format, the preferences sends the according
// signal. However, the correct date and time format is set by the preferences dialog later. This should be fixed. // signal. However, the correct date and time format is set by the preferences dialog later. This should be fixed.
connect(PreferencesDialog::instance(), &PreferencesDialog::settingsChanged, this, &MainTab::updateDateTimeFields); connect(PreferencesDialog::instance(), &PreferencesDialog::settingsChanged, this, &MainTab::updateDateTimeFields);
connect(qPrefDisplay::instance(), &qPrefDisplay::headerstyle_colorChanged, this, &MainTab::colorsChanged);
QAction *action = new QAction(tr("Apply changes"), this); QAction *action = new QAction(tr("Apply changes"), this);
connect(action, SIGNAL(triggered(bool)), this, SLOT(acceptChanges())); connect(action, SIGNAL(triggered(bool)), this, SLOT(acceptChanges()));
ui.diveNotesMessage->addAction(action); ui.diveNotesMessage->addAction(action);