diff options
author | Darrell Anderson <[email protected]> | 2013-03-02 21:24:29 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2013-03-02 21:24:29 -0600 |
commit | 0cb3dd415155adc58748ea5cc4da4679abcf320b (patch) | |
tree | 0d4129972fbcde1b7e68babf4674b5a690e2d863 /kcontrol/style/kcmstyle.cpp | |
parent | 37c081e3b1c227ee6071991ccdae3e4a2b1b91c1 (diff) | |
download | tdebase-0cb3dd415155adc58748ea5cc4da4679abcf320b.tar.gz tdebase-0cb3dd415155adc58748ea5cc4da4679abcf320b.zip |
Add GUI control for menu popup delay setting in $HOME/.qt/kstylerc.
This resolves bug report 1323.
Diffstat (limited to 'kcontrol/style/kcmstyle.cpp')
-rw-r--r-- | kcontrol/style/kcmstyle.cpp | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/kcontrol/style/kcmstyle.cpp b/kcontrol/style/kcmstyle.cpp index ee5582928..623ceeebf 100644 --- a/kcontrol/style/kcmstyle.cpp +++ b/kcontrol/style/kcmstyle.cpp @@ -193,6 +193,17 @@ KCMStyle::KCMStyle( TQWidget* parent, const char* name ) gbWidgetStyleLayout->addWidget( cbTearOffHandles ); cbTearOffHandles->hide(); // reenable when the corresponding Qt method is virtual and properly reimplemented + gbWidgetStyleLayout->addSpacing(10); + + m_popupMenuDelay = new KIntNumInput(250, gbWidgetStyle); + m_popupMenuDelay->setLabel(i18n("Menu popup delay:")); + m_popupMenuDelay->setRange(0, 5000, 50); + m_popupMenuDelay->setSuffix(i18n(" msec")); + m_popupMenuDelay->setSteps(50, 50); + gbWidgetStyleLayout->addWidget(m_popupMenuDelay); + + gbWidgetStyleLayout->addSpacing(10); + TQGroupBox *gbPreview = new TQGroupBox( i18n( "Preview" ), page1 ); gbPreview->setColumnLayout( 0, Qt::Vertical ); gbPreview->layout()->setMargin( 0 ); @@ -380,7 +391,7 @@ KCMStyle::KCMStyle( TQWidget* parent, const char* name ) connect( comboMenuEffectType, TQT_SIGNAL(activated(int)), this, TQT_SLOT(setStyleDirty())); connect( slOpacity, TQT_SIGNAL(valueChanged(int)),this, TQT_SLOT(setStyleDirty())); connect( cbMenuShadow, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setStyleDirty())); - // Page3 + // Page1 & Page3 connect( cbHoverButtons, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setToolbarsDirty())); connect( cbTransparentToolbars, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setToolbarsDirty())); connect( cbEnableTooltips, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setEffectsDirty())); @@ -390,6 +401,7 @@ KCMStyle::KCMStyle( TQWidget* parent, const char* name ) connect( cbMenuAltKeyNavigation,TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setEffectsDirty())); connect( cbTearOffHandles, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setEffectsDirty())); connect( comboToolbarIcons, TQT_SIGNAL(activated(int)), this, TQT_SLOT(setToolbarsDirty())); + connect( m_popupMenuDelay, TQT_SIGNAL(valueChanged(int)),this, TQT_SLOT(setStyleDirty())); addWhatsThis(); @@ -611,6 +623,7 @@ void KCMStyle::save() settings.writeEntry("/TDEStyle/Settings/ScrollablePopupMenus", cbScrollablePopupMenus->isChecked() ); settings.writeEntry("/TDEStyle/Settings/AutoHideAccelerators", cbAutoHideAccelerators->isChecked() ); settings.writeEntry("/TDEStyle/Settings/MenuAltKeyNavigation", cbMenuAltKeyNavigation->isChecked() ); + settings.writeEntry("/TDEStyle/Settings/PopupMenuDelay", m_popupMenuDelay->value() ); } config.writeEntry( "EffectNoTooltip", !cbEnableTooltips->isChecked(), true, true ); @@ -1041,6 +1054,7 @@ void KCMStyle::loadMisc( TDEConfig& config ) cbScrollablePopupMenus->setChecked(settings.readBoolEntry("/TDEStyle/Settings/ScrollablePopupMenus", false)); cbAutoHideAccelerators->setChecked(settings.readBoolEntry("/TDEStyle/Settings/AutoHideAccelerators", false)); cbMenuAltKeyNavigation->setChecked(settings.readBoolEntry("/TDEStyle/Settings/MenuAltKeyNavigation", true)); + m_popupMenuDelay->setValue(settings.readNumEntry("/TDEStyle/Settings/PopupMenuDelay", 250)); m_bToolbarsDirty = false; } @@ -1119,6 +1133,9 @@ void KCMStyle::addWhatsThis() "show so called tear-off handles. If you click them, you get the menu " "inside a widget. This can be very helpful when performing " "the same action multiple times.") ); + TQWhatsThis::add( m_popupMenuDelay, i18n( "The menu popup delay is the time " + "(in milliseconds) before a selected menu " + "or submenu appears.") ); } #include "kcmstyle.moc" |