Bug 51994 - the bulb needs to be explained
Summary: the bulb needs to be explained
Status: RESOLVED FIXED
Alias: None
Product: kcontrol
Classification: Miscellaneous
Component: kcmlinuz (show other bugs)
Version: 2.0
Platform: unspecified Linux
: NOR wishlist
Target Milestone: ---
Assignee: Malte Starostik
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-12-17 03:38 UTC by Ferdinand Gassauer
Modified: 2003-02-12 01:52 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ferdinand Gassauer 2002-12-17 03:38:58 UTC
Version:           2.0 (using KDE 3.1.9)
Compiler:          gcc version 3.2
OS:          Linux (i686) release 2.4.19-4GB

Hi!
Ther are some lines characterized with  a bulb, but no explanation is given, what the bulb means.
IMHO the explanation of the 4 icons should also go into the quick help as it is not evident that the explanation is visible after selecting this module.
Here I just see the logo "Linux Cernel Configurator" and only after scrolling down the definitions of the icons become visible.
cu
ferdinand
Comment 1 George Staikos 2003-02-12 01:52:08 UTC
Subject: KDE_3_1_BRANCH: kdeadmin/kcmlinuz

CVS commit by staikos: 

GUI: Fix bug #51994

CCMAIL: 51994-done@bugs.kde.org


  M +6 -2      configuration.cpp   1.29.2.1
  M +1 -0      data/intro.html   1.4.6.1


--- kdeadmin/kcmlinuz/configuration.cpp  #1.29:1.29.2.1
@@ -38,4 +38,5 @@
 #include <kurlrequester.h>
 #include <kparts/browserextension.h>
+#include <kiconloader.h>
 
 #include "configparser.h"
@@ -233,4 +234,5 @@ void Configuration::slotDelayedHelp()
                                 if (f.open(IO_ReadOnly))
                                 {
+                                        KIconLoader *kil = KGlobal::instance()->iconLoader();
                                         QTextStream str(&f);
                                         m_intro = str.read()
@@ -238,5 +240,7 @@ void Configuration::slotDelayedHelp()
                                                 .arg(i18n("Option is disabled"))
                                                 .arg(i18n("Option is enabled"))
-                                                .arg(i18n("Compiled as a module"));
+                                                .arg(i18n("Compiled as a module"))
+                                                .arg(kil->iconPath("idea", KIcon::Small))
+                                                .arg(i18n("Information"));
                                 }
                         }

--- kdeadmin/kcmlinuz/data/intro.html  #1.4:1.4.6.1
@@ -25,4 +25,5 @@
         <img src="yes.png" alt="" />%1<!-- Option is enabled --><br />
         <img src="module.png" alt="" />%1<!-- Compiled as a module --><br />
+        <img src="%1" alt="" />%1<!-- Information --><br />
 </div>