Projects/Utils/kdelirc: Difference between revisions

From KDE TechBase
(Created page with '== kdelirc Plans == === KDE 4.4 === See the feature plan for KDE 4.4. * Communicate to lirc through solid === Long time goals / id...')
 
m (Text replace - "</code>" to "</syntaxhighlight>")
(7 intermediate revisions by 3 users not shown)
Line 4: Line 4:


* Communicate to lirc through solid  
* Communicate to lirc through solid  
* Integrate solid backend into kdelirc frontend
* Cycle mode function (see [https://bugs.kde.org/show_bug.cgi?id=134060 Bug 134060])
=== Long time goals / ideas ===
In this section are some ideas  and features listened, were discussing about. Maybe these will be implemented in a further release of kdelirc.


=== Long time goals / ideas ===
==== Backend ====
==== Backend ====
* Provide plasma data engine
* Provide plasma data engine
* Multi application profiles
* Multi application profiles
* *Look for a way to do more complex action into profile not calling only one simple dbus method.  At moment we can't do something like increase volume on amarok because we need to do something like:
* Look for a way to do more complex action into profile not calling only one simple dbus method.  At moment we can't do something like increase volume on amarok because we need to do something like:


<code xml n>
<syntaxhighlight lang="text">
VolumeSet(VolumeGet() + 10);
VolumeSet(VolumeGet() + 10);
</syntaxhighlight>
   It should be something like:
   It should be something like:
    <action objid="Player" class="volumeup">
<syntaxhighlight lang="xml">
        <name>Increase volume</name>
<action objid="Player" class="volumeup">
        <comment></comment>
  <name>Increase volume</name>
        <someNewTagName>
  <comment></comment>
          VolumeSet(VolumeGet() + 10);
  <someNewTagName>
        </someNewTagName>
      VolumeSet(VolumeGet() + 10);
    </action>
    </someNewTagName>
</code>
</action>
</syntaxhighlight>
==== Frontend ====
==== Frontend ====
* Merge add action and edit action dialog into one dialog
* Merge add action and edit action dialog into one dialog
* KNewStuff for profiles

Revision as of 20:57, 29 June 2011

kdelirc Plans

KDE 4.4

See the feature plan for KDE 4.4.

  • Communicate to lirc through solid
  • Integrate solid backend into kdelirc frontend
  • Cycle mode function (see Bug 134060)

Long time goals / ideas

In this section are some ideas and features listened, were discussing about. Maybe these will be implemented in a further release of kdelirc.

Backend

  • Provide plasma data engine
  • Multi application profiles
  • Look for a way to do more complex action into profile not calling only one simple dbus method. At moment we can't do something like increase volume on amarok because we need to do something like:
VolumeSet(VolumeGet() + 10);
 It should be something like:
<action objid="Player" class="volumeup">
  <name>Increase volume</name>
   <comment></comment>
   <someNewTagName>
      VolumeSet(VolumeGet() + 10);
    </someNewTagName>
</action>

Frontend

  • Merge add action and edit action dialog into one dialog
  • KNewStuff for profiles