<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.kde.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.6"
          urlbase="https://bugs.kde.org/"
          
          maintainer="sysadmin@kde.org"
>

    <bug>
          <bug_id>103554</bug_id>
          
          <creation_ts>2005-04-09 12:30:54 +0000</creation_ts>
          <short_desc>&quot;Monitor for Activity&quot; and &quot;Monitor for Silence&quot; icons are the same</short_desc>
          <delta_ts>2005-05-15 02:39:44 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>2</classification_id>
          <classification>Applications</classification>
          <product>konsole</product>
          <component>general</component>
          <version>unspecified</version>
          <rep_platform>Gentoo Packages</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>NOR</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Sridhar Dhanapalan">sridhar+bugs</reporter>
          <assigned_to name="Konsole Bugs">konsole-bugs-null</assigned_to>
          
          
          <cf_commitlink></cf_commitlink>
          <cf_versionfixedin></cf_versionfixedin>
          <cf_sentryurl></cf_sentryurl>
          <votes>0</votes>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>333067</commentid>
    <comment_count>0</comment_count>
    <who name="Sridhar Dhanapalan">sridhar+bugs</who>
    <bug_when>2005-04-09 12:30:54 +0000</bug_when>
    <thetext>Version:            (using KDE KDE 3.4.0)
Installed from:    Gentoo Packages
Compiler:          gcc version 3.3.5  (Gentoo Linux 3.3.5-r1, ssp-3.3.2-3, pie-8.7.7.1) 
OS:                Linux

Konsole has a feature called &quot;Monitor for Activity&quot; which changes the icon on a tab to indicate that there is activity in that console session. There is a corresponding feature called &quot;Monitor for Silence&quot; which does the same but for inactivity. In older versions of Konsole, these two icons were distinctly different, looking like a lit and unlit incandescent light bulb respectively.

In Konsole 1.5 (KDE 3.4.0), both functions display an unlit bulb, making it impossible to distinguish from the two opposing functions. This can be seen in the View menu in Konsole.

I initially reported this at http://bugs.gentoo.org/show_bug.cgi?id=88435, but it appears to be a KDE bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>333148</commentid>
    <comment_count>1</comment_count>
    <who name="Kurt Hindenburg">khindenburg</who>
    <bug_when>2005-04-09 21:22:53 +0000</bug_when>
    <thetext>For crystalsvg it appears that ktip and idea pngs are identical.  Others such as kdeclassic, locolor have different ktip and idea pngs. 

Not really a konsole problem.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>334414</commentid>
    <comment_count>2</comment_count>
    <who name="Stephan Binner">binner</who>
    <bug_when>2005-04-14 11:18:06 +0000</bug_when>
    <thetext>&gt; Not really a konsole problem.

It is when Konsole makes wrong assumptions on the icons&apos; appearance.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>340298</commentid>
    <comment_count>3</comment_count>
    <who name="Kurt Hindenburg">khindenburg</who>
    <bug_when>2005-05-08 07:09:28 +0000</bug_when>
    <thetext>I agree Konsole shouldn&apos;t assume that... looks like Konsole needs 2 new icons: silence and activity.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>342075</commentid>
    <comment_count>4</comment_count>
    <who name="Kurt Hindenburg">khindenburg</who>
    <bug_when>2005-05-15 01:46:43 +0000</bug_when>
    <thetext>SVN commit 413941 by hindenburg:

Copy KDE 3.3&apos;s ktip.png to silence.png and idea.png to activity.png for use with Monitor for Activity/Silence.

Will backport without the string changes.

BUG: 103554



 M  +18 -10    trunk/KDE/kdebase/konsole/konsole/konsole.cpp  


--- trunk/KDE/kdebase/konsole/konsole/konsole.cpp #413940:413941
@@ -768,12 +768,14 @@
                          SLOT(slotTabRenameSession()) );
    m_tabPopupMenu-&gt;insertSeparator();
 
-   m_tabMonitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), &quot;idea&quot;, 0, this,
-                                        SLOT( slotTabToggleMonitor() ), this);
+  m_tabMonitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), 
+      SmallIconSet(&quot;konsole&quot;), 0, this, SLOT( slotTabToggleMonitor() ), this );
+  m_tabMonitorActivity-&gt;setCheckedState( KGuiItem( i18n( &quot;Stop Monitoring for &amp;Activity&quot; ), SmallIconSet( &quot;activity&quot; ) ) );
    m_tabMonitorActivity-&gt;plug(m_tabPopupMenu);
 
-   m_tabMonitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), &quot;ktip&quot;, 0, this,
-                                       SLOT( slotTabToggleMonitor() ), this);
+  m_tabMonitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), 
+      SmallIconSet(&quot;konsole&quot;), 0, this, SLOT( slotTabToggleMonitor() ), this );
+  m_tabMonitorSilence-&gt;setCheckedState( KGuiItem( i18n( &quot;Stop Monitoring for &amp;Silence&quot; ), SmallIconSet( &quot;silence&quot; ) ) );
    m_tabMonitorSilence-&gt;plug(m_tabPopupMenu);
 
    m_tabMasterMode = new KToggleAction ( i18n( &quot;Send &amp;Input to All Sessions&quot; ), &quot;remote&quot;, 0, this,
@@ -1033,10 +1035,16 @@
                                   SLOT( slotZModemUpload() ), 
                                   m_shortcuts, &quot;zmodem_upload&quot; );
 
-  monitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), &quot;idea&quot;, 0, this,
-                                        SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_activity&quot; );
-  monitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), &quot;ktip&quot;, 0, this,
-                                       SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_silence&quot; );
+  monitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), 
+      SmallIconSet(&quot;konsole&quot;), 0, this,
+      SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_activity&quot; );
+  monitorActivity-&gt;setCheckedState( KGuiItem( i18n( &quot;Stop Monitoring for &amp;Activity&quot; ), SmallIconSet( &quot;activity&quot; ) ) );
+
+  monitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), 
+      SmallIconSet(&quot;konsole&quot;), 0, this,
+      SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_silence&quot; );
+  monitorSilence-&gt;setCheckedState( KGuiItem( i18n( &quot;Stop Monitoring for &amp;Silence&quot; ), SmallIconSet( &quot;silence&quot; ) ) );
+
   masterMode = new KToggleAction ( i18n( &quot;Send &amp;Input to All Sessions&quot; ), &quot;remote&quot;, 0, this,
                                    SLOT( slotToggleMasterMode() ), m_shortcuts, &quot;send_input_to_all_sessions&quot; );
 
@@ -2993,9 +3001,9 @@
                          break;
     case NOTIFYBELL    : state_iconname = &quot;bell&quot;;
                          break;
-    case NOTIFYACTIVITY: state_iconname = &quot;idea&quot;;
+    case NOTIFYACTIVITY: state_iconname = &quot;activity&quot;;
                          break;
-    case NOTIFYSILENCE : state_iconname = &quot;ktip&quot;;
+    case NOTIFYSILENCE : state_iconname = &quot;silence&quot;;
 			 break;
   }
   if (!state_iconname.isEmpty()
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>342081</commentid>
    <comment_count>5</comment_count>
    <who name="Kurt Hindenburg">khindenburg</who>
    <bug_when>2005-05-15 02:39:38 +0000</bug_when>
    <thetext>SVN commit 413956 by hindenburg:

Copy KDE 3.3&apos;s ktip.png to silence.png and idea.png to activity.png for use with Monitor for Activity/Silence.

CCBUG: 103554



 M  +15 -10    branches/KDE/3.4/kdebase/konsole/konsole/konsole.cpp  


--- branches/KDE/3.4/kdebase/konsole/konsole/konsole.cpp #413955:413956
@@ -799,12 +799,12 @@
                          SLOT(slotTabRenameSession()) );
    m_tabPopupMenu-&gt;insertSeparator();
 
-   m_tabMonitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), &quot;idea&quot;, 0, this,
-                                        SLOT( slotTabToggleMonitor() ), this);
+  m_tabMonitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), 
+      SmallIconSet(&quot;activity&quot;), 0, this, SLOT( slotTabToggleMonitor() ), this );
    m_tabMonitorActivity-&gt;plug(m_tabPopupMenu);
 
-   m_tabMonitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), &quot;ktip&quot;, 0, this,
-                                       SLOT( slotTabToggleMonitor() ), this);
+  m_tabMonitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), 
+      SmallIconSet(&quot;silence&quot;), 0, this, SLOT( slotTabToggleMonitor() ), this );
    m_tabMonitorSilence-&gt;plug(m_tabPopupMenu);
 
    m_tabMasterMode = new KToggleAction ( i18n( &quot;Send &amp;Input to All Sessions&quot; ), &quot;remote&quot;, 0, this,
@@ -1061,10 +1061,15 @@
                                 SLOT(slotRenameSession()), m_shortcuts, &quot;rename_session&quot;);
   m_zmodemUpload = new KAction(i18n(&quot;&amp;ZModem Upload...&quot;), Qt::CTRL+Qt::ALT+Qt::Key_U, this,
                                 SLOT(slotZModemUpload()), m_shortcuts, &quot;zmodem_upload&quot;);
-  monitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ), &quot;idea&quot;, 0, this,
-                                        SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_activity&quot; );
-  monitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ), &quot;ktip&quot;, 0, this,
-                                       SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_silence&quot; );
+
+  monitorActivity = new KToggleAction ( i18n( &quot;Monitor for &amp;Activity&quot; ),
+      SmallIconSet(&quot;activity&quot;), 0, this,
+      SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_activity&quot; );
+
+  monitorSilence = new KToggleAction ( i18n( &quot;Monitor for &amp;Silence&quot; ),
+      SmallIconSet(&quot;silence&quot;), 0, this,
+      SLOT( slotToggleMonitor() ), m_shortcuts, &quot;monitor_silence&quot; );
+
   masterMode = new KToggleAction ( i18n( &quot;Send &amp;Input to All Sessions&quot; ), &quot;remote&quot;, 0, this,
                                    SLOT( slotToggleMasterMode() ), m_shortcuts, &quot;send_input_to_all_sessions&quot; );
 
@@ -3135,9 +3140,9 @@
                          break;
     case NOTIFYBELL    : state_iconname = &quot;bell&quot;;
                          break;
-    case NOTIFYACTIVITY: state_iconname = &quot;idea&quot;;
+    case NOTIFYACTIVITY: state_iconname = &quot;activity&quot;;
                          break;
-    case NOTIFYSILENCE : state_iconname = &quot;ktip&quot;;
+    case NOTIFYSILENCE : state_iconname = &quot;silence&quot;;
 			 break;
   }
   if (!state_iconname.isEmpty()
</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>