aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme/SaveThemeDialog.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-10-04 04:46:37 +0100
committerGravatar un1versal2015-10-04 04:46:37 +0100
commita70e7249efd23ea857c3c4e0fc5324005de65114 (patch)
tree05d50ab4b5230caac95a4efb5445980b73706737 /src/modules/theme/SaveThemeDialog.cpp
parentMake the theme images in the theme management dialog bigger. Maybe needs more... (diff)
downloadKVIrc-a70e7249efd23ea857c3c4e0fc5324005de65114.tar.gz
KVIrc-a70e7249efd23ea857c3c4e0fc5324005de65114.tar.bz2
KVIrc-a70e7249efd23ea857c3c4e0fc5324005de65114.zip
[Theme save options] Save icons with themes off by default and add description text.
Even shorter text
Diffstat (limited to 'src/modules/theme/SaveThemeDialog.cpp')
-rw-r--r--src/modules/theme/SaveThemeDialog.cpp18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/modules/theme/SaveThemeDialog.cpp b/src/modules/theme/SaveThemeDialog.cpp
index 6e0ea5d56..4b4af497c 100644
--- a/src/modules/theme/SaveThemeDialog.cpp
+++ b/src/modules/theme/SaveThemeDialog.cpp
@@ -152,13 +152,23 @@ SaveThemeDialog::SaveThemeDialog(QWidget * pParent)
pPage = new QWidget(this);
pLayout = new QGridLayout(pPage);
- m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons","theme"),this);
+ m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons and images with theme","theme"),this);
m_pSaveIconsCheckBox->setChecked(true);
- pLayout->addWidget(m_pSaveIconsCheckBox,0,0);
- pLayout->setRowStretch(1,1);
+ pLabel = new QLabel(pPage);
+ pLabel->setWordWrap(true);
+ QString ozText = "<p>";
+ ozText += __tr2qs_ctx("To use the default and latest icon/image set automatically, uncheck this option.<br><br>To replace specific icons/images in your theme, include only those you wish to replace.","theme");
+ ozText += "</p><p>";;
+ ozText += __tr2qs_ctx("Hit the <b>\"Next\"</b> button to continue.","theme");
+ ozText += "<p>";
+
+ pLayout->addWidget(m_pSaveIconsCheckBox,0,0);
+ pLabel->setText(ozText);
+ pLayout->addWidget(pLabel,1,0);
+ pLayout->setRowStretch(2,1);
- addPage(pPage,__tr2qs_ctx("Options","theme"));
+ addPage(pPage,__tr2qs_ctx("Theme options","theme"));
setBackEnabled(pPage,true);
setNextEnabled(pPage,true);
setHelpEnabled(pPage,false);