- enhancement: theme now have default icon set
- fix: wrong icons for file associations
This commit is contained in:
parent
476899022f
commit
9e3f593641
2
NEWS.md
2
NEWS.md
|
@ -9,6 +9,8 @@ Red Panda C++ Version 0.14.1
|
|||
- enhancement: new header dialog for project
|
||||
- enhancement: new contrast icon set, contributed by Alan-CRL
|
||||
- enhancement: new contrast theme, contributed by Alan-CRL
|
||||
- enhancement: theme now have default icon set
|
||||
- fix: wrong icons for file associations
|
||||
|
||||
Red Panda C++ Version 0.14.0
|
||||
- enhancement: custom icon set ( in the configuration folder)
|
||||
|
|
|
@ -381,7 +381,7 @@ RESOURCES += \
|
|||
icons.qrc \
|
||||
translations.qrc
|
||||
|
||||
RC_ICONS = images/devcpp.ico images/associations/c.ico images/associations/cpp.ico images/associations/h.ico images/associations/hpp.ico images/associations/dev.ico
|
||||
RC_ICONS = images/devcpp.ico images/associations/c.ico images/associations/cpp.ico images/associations/dev.ico images/associations/c.ico images/associations/cpp.ico images/associations/h.ico images/associations/hpp.ico
|
||||
|
||||
|
||||
# fixed lrelease.prf
|
||||
|
|
|
@ -2902,7 +2902,7 @@ void Settings::Environment::doLoad()
|
|||
mInterfaceFont = stringValue("interface_font",defaultFontName);
|
||||
mInterfaceFontSize = intValue("interface_font_size",12);
|
||||
mLanguage = stringValue("language", QLocale::system().name());
|
||||
mIconSet = stringValue("icon_set","newlook");
|
||||
mIconSet = stringValue("icon_set","contrast");
|
||||
mUseCustomIconSet = boolValue("use_custom_icon_set", false);
|
||||
mUseCustomTheme = boolValue("use_custom_theme", false);
|
||||
|
||||
|
|
|
@ -101,3 +101,18 @@ void EnvironmentAppearenceWidget::init()
|
|||
}
|
||||
SettingsWidget::init();
|
||||
}
|
||||
|
||||
void EnvironmentAppearenceWidget::on_cbTheme_currentIndexChanged(int /* index */)
|
||||
{
|
||||
ThemeManager themeManager;
|
||||
PAppTheme appTheme = themeManager.theme(ui->cbTheme->currentData().toString());
|
||||
if (appTheme && !appTheme->defaultIconSet().isEmpty()) {
|
||||
for (int i=0; i<ui->cbIconSet->count();i++) {
|
||||
if (ui->cbIconSet->itemData(i) == appTheme->defaultIconSet()) {
|
||||
ui->cbIconSet->setCurrentIndex(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -43,6 +43,8 @@ protected:
|
|||
// SettingsWidget interface
|
||||
public:
|
||||
void init() override;
|
||||
private slots:
|
||||
void on_cbTheme_currentIndexChanged(int index);
|
||||
};
|
||||
|
||||
#endif // ENVIRONMENTAPPEARENCEWIDGET_H
|
||||
|
|
|
@ -196,6 +196,7 @@ void AppTheme::load(const QString &filename)
|
|||
mDisplayName = localeName;
|
||||
mIsDark = obj["isDark"].toBool(false);
|
||||
mDefaultColorScheme = obj["default scheme"].toString();
|
||||
mDefaultIconSet = obj["default iconset"].toString();
|
||||
QJsonObject colors = obj["palette"].toObject();
|
||||
const QMetaObject &m = *metaObject();
|
||||
QMetaEnum e = m.enumerator(m.indexOfEnumerator("ColorRole"));
|
||||
|
@ -237,6 +238,16 @@ QPalette AppTheme::initialPalette()
|
|||
return palette;
|
||||
}
|
||||
|
||||
const QString &AppTheme::defaultIconSet() const
|
||||
{
|
||||
return mDefaultIconSet;
|
||||
}
|
||||
|
||||
void AppTheme::setDefaultIconSet(const QString &newDefaultIconSet)
|
||||
{
|
||||
mDefaultIconSet = newDefaultIconSet;
|
||||
}
|
||||
|
||||
const QString &AppTheme::name() const
|
||||
{
|
||||
return mName;
|
||||
|
|
|
@ -89,6 +89,9 @@ public:
|
|||
|
||||
const QString &name() const;
|
||||
|
||||
const QString &defaultIconSet() const;
|
||||
void setDefaultIconSet(const QString &newDefaultIconSet);
|
||||
|
||||
private:
|
||||
static QPalette initialPalette();
|
||||
private:
|
||||
|
@ -97,6 +100,7 @@ private:
|
|||
QString mDisplayName;
|
||||
bool mIsDark;
|
||||
QString mDefaultColorScheme;
|
||||
QString mDefaultIconSet;
|
||||
};
|
||||
|
||||
using PAppTheme = std::shared_ptr<AppTheme>;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"name_zh_CN": "高对比度主题",
|
||||
"isDark": true,
|
||||
"default scheme": "Twilight",
|
||||
"default iconset": "contrast",
|
||||
"palette": {
|
||||
"PaletteWindow":"#000000",
|
||||
"PaletteWindowText":"#FFFFFF",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"name_zh_CN": "深色主题",
|
||||
"isDark": true,
|
||||
"default scheme": "VS Code",
|
||||
"default iconset": "contrast",
|
||||
"palette": {
|
||||
"PaletteWindow":"#19232D",
|
||||
"PaletteWindowText":"#E0E1E3",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"name_zh_CN":"浅色主题",
|
||||
"isDark":false,
|
||||
"default scheme": "Intellij Classic",
|
||||
"default iconset": "newlook",
|
||||
"palette": {
|
||||
"PaletteHighlight":"#ffdddddd",
|
||||
"PaletteHighlightedText":"#ff000000"
|
||||
|
|
Loading…
Reference in New Issue