author | mickeyl <mickeyl> | 2004-02-26 09:31:23 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-02-26 09:31:23 (UTC) |
commit | d26a7814b7b454583a136a78aeb7016467ec9ff8 (patch) (side-by-side diff) | |
tree | 1520794c87c956c6d6e7701e26600fa9f2321da9 | |
parent | b339031e14a607ff18e404e0395b1c2782b92fdc (diff) | |
download | opie-d26a7814b7b454583a136a78aeb7016467ec9ff8.zip opie-d26a7814b7b454583a136a78aeb7016467ec9ff8.tar.gz opie-d26a7814b7b454583a136a78aeb7016467ec9ff8.tar.bz2 |
UI FIX: Indicate that the setting "Show applications in subpopups" is only
relevant if "Show tabs in O-Menu" is checked by enabling/disabling dynamically.
-rw-r--r-- | core/settings/launcher/menusettings.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/settings/launcher/menusettings.cpp b/core/settings/launcher/menusettings.cpp index faa7cf4..dc8e993 100644 --- a/core/settings/launcher/menusettings.cpp +++ b/core/settings/launcher/menusettings.cpp @@ -59,17 +59,17 @@ MenuSettings::MenuSettings ( QWidget *parent, const char *name ) m_list-> addColumn ( "foobar" ); m_list-> header ( )-> hide ( ); lay-> addWidget ( m_list ); m_menutabs = new QCheckBox ( tr( "Show Launcher tabs in O-Menu" ), this ); lay-> addWidget ( m_menutabs ); - m_menusubpopup = new QCheckBox ( tr( "Show Applications in subpopups" ), this ); + m_menusubpopup = new QCheckBox ( tr( "Show Applications in Subpopups" ), this ); lay-> addWidget ( m_menusubpopup ); QWhatsThis::add ( m_list, tr( "Check the applets that you want to have included in the O-Menu." )); QWhatsThis::add ( m_menutabs, tr( "Adds the contents of the Launcher Tabs as menus in the O-Menu." )); connect ( m_list, SIGNAL( clicked ( QListViewItem * )), this, SLOT( appletChanged ( ))); init ( ); @@ -116,18 +116,21 @@ void MenuSettings::init ( ) item-> setOn ( exclude. find ( *it ) == exclude. end ( )); m_applets [*it] = item; } else { delete lib; } } cfg. setGroup ( "Menu" ); - m_menutabs-> setChecked ( cfg. readBoolEntry ( "LauncherTabs", true )); - m_menusubpopup-> setChecked ( cfg. readBoolEntry ( "LauncherSubPopup", true )); + m_menutabs->setChecked( cfg.readBoolEntry( "LauncherTabs", true ) ); + m_menusubpopup->setChecked( cfg.readBoolEntry( "LauncherSubPopup", true ) ); + m_menusubpopup->setEnabled( m_menutabs->isChecked() ); + connect( m_menutabs, SIGNAL( stateChanged( int ) ), m_menusubpopup, SLOT( setEnabled( bool ) ) ); + } void MenuSettings::appletChanged() { m_applets_changed = true; } void MenuSettings::accept ( ) |