<?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>108620</bug_id>
          
          <creation_ts>2005-07-06 03:24:20 +0000</creation_ts>
          <short_desc>Preference to permanently enable local cursor</short_desc>
          <delta_ts>2008-09-29 15:01:48 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>2</classification_id>
          <classification>Applications</classification>
          <product>krdc</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>wishlist</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter>chris-kde</reporter>
          <assigned_to name="Jaison Lee">lee.jaison</assigned_to>
          <cc>t.hartwig</cc>
          
          <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>355739</commentid>
    <comment_count>0</comment_count>
    <who name="">chris-kde</who>
    <bug_when>2005-07-06 03:24:20 +0000</bug_when>
    <thetext>Version:            (using KDE KDE 3.4.1)
Installed from:    Gentoo Packages
OS:                Linux

I find myself checking &quot;Always show local cursor&quot; on over half the sessions I open.
It would be convenient if I could just set this globally in the preferences and never touch it again.
(of course, I understand this is a pretty minor convenience and will probably not be a priority of any kind)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>410159</commentid>
    <comment_count>1</comment_count>
    <who name="Joseph Reagle">joseph.2011</who>
    <bug_when>2006-01-30 23:07:49 +0000</bug_when>
    <thetext>I think this option is available:

  -c, --local-cursor        Show local cursor (VNC only)
If so, this should be closed.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>410172</commentid>
    <comment_count>2</comment_count>
    <who name="">chris-kde</who>
    <bug_when>2006-01-31 00:20:33 +0000</bug_when>
    <thetext>What I&apos;m saying is, it would be nice to have as a global configuration option so I don&apos;t always have to choose it in the GUI or remember to put it on the command line.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>410187</commentid>
    <comment_count>3</comment_count>
    <who name="Jaison Lee">lee.jaison</who>
    <bug_when>2006-01-31 01:28:52 +0000</bug_when>
    <thetext>Standard disclaimer: KRDC is currently unmaintained, and as long as it remains so its future is uncertain.

However, if KRDC survives to the next release of KDE, I will try and get this in there one way or the other. :) It bugs me too.
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>454038</commentid>
    <comment_count>4</comment_count>
    <who name="Andreas Kling">info</who>
    <bug_when>2006-07-16 16:20:38 +0000</bug_when>
    <thetext>SVN commit 563036 by kling:

Make &quot;always show local cursor&quot; and &quot;view only&quot; permanently configurable via krdcrc.
Since we&apos;re in a GUI/message freeze, I can&apos;t add any GUI to these options until KDE4.

The options and their defaults are:

viewOnly=false
alwaysShowLocalCursor=false

BUG: 96174
BUG: 108620


 M  +3 -0      krdc.cpp  
 M  +2 -1      main.cpp  


--- branches/KDE/3.5/kdenetwork/krdc/krdc.cpp #563035:563036
@@ -21,6 +21,7 @@
 #include &quot;hostpreferences.h&quot;
 
 #include &lt;kapplication.h&gt;
+#include &lt;kconfig.h&gt;
 #include &lt;kdebug.h&gt;
 #include &lt;kcombobox.h&gt;
 #include &lt;kurl.h&gt;
@@ -185,6 +186,8 @@
 			break;
 	}
 
+	m_view-&gt;setViewOnly(kapp-&gt;config()-&gt;readBoolEntry(&quot;viewOnly&quot;, false));
+
 	m_scrollView-&gt;addChild(m_view);
 	QWhatsThis::add(m_view, i18n(&quot;Here you can see the remote desktop. If the other side allows you to control it, you can also move the mouse, click or enter keystrokes. If the content does not fit your screen, click on the toolbar&apos;s full screen button or scale button. To end the connection, just close the window.&quot;));
 
--- branches/KDE/3.5/kdenetwork/krdc/main.cpp #563035:563036
@@ -21,6 +21,7 @@
 #include &lt;kapplication.h&gt;
 #include &lt;klocale.h&gt;
 #include &lt;kmessagebox.h&gt;
+#include &lt;kconfig.h&gt;
 #include &lt;kdebug.h&gt;
 #include &lt;kwallet.h&gt;
 #include &lt;qwindowdefs.h&gt;
@@ -102,7 +103,7 @@
 	QString keymap = QString::null;
 	WindowMode wm = WINDOW_MODE_AUTO;
 	bool scale = false;
-	bool localCursor = false;
+	bool localCursor = kapp-&gt;config()-&gt;readBoolEntry(&quot;alwaysShowLocalCursor&quot;, false);
 	QSize initialWindowSize;
 
 	KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>649734</commentid>
    <comment_count>5</comment_count>
    <who name="Thomas Hartwig">t.hartwig</who>
    <bug_when>2008-09-29 15:01:48 +0000</bug_when>
    <thetext>Can this reopened please. This is not fixed in KDE 4.1.1. I think it never was.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>