~alphapapa/earcandy/debug-907398

« back to all changes in this revision

Viewing changes to ear_candy/plugins/Rhythmbox/plugin.py

  • Committer: taylor
  • Date: 2009-06-11 10:26:44 UTC
  • Revision ID: taylor@jason-laptop-20090611102644-b2j627fj873wzq8s
Pause only after fadeout

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Ear Candy - Pulseaduio sound managment tool
2
 
# Copyright (C) 2009  Jason Taylor
3
 
4
 
# This program is free software: you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation, either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 
 
17
 
from PluginBase import PluginBaseObject
18
 
 
19
 
import dbus
20
 
 
21
 
class RhythmboxControlPlugin(PluginBaseObject):
22
 
 
23
 
    def __init__(self, core, path):
24
 
        PluginBaseObject(core, path) 
25
 
        return
26
 
 
27
 
    # Client this plugin applies to
28
 
    def get_client_name(self):
29
 
        return "Rhythmbox"
30
 
 
31
 
    def __get_application(self):
32
 
        bus = dbus.SessionBus()
33
 
        return bus.get_object("org.gnome.Rhythmbox", "/org/gnome/Rhythmbox/Player")
34
 
 
35
 
    # Is application paused
36
 
    def is_playing(self):
37
 
        rb = self.__get_application()
38
 
        if rb:  
39
 
            return rb.getPlaying()
40
 
        return False
41
 
 
42
 
    # Set application paused status
43
 
    def set_pause(self, status):
44
 
        rb = self.__get_application()
45
 
        if rb:
46
 
            rb.playPause(status)
47
 
            return True
48
 
        return False
49
 
 
50
 
def register_plugin( core, path ):
51
 
    return RhythmboxControlPlugin( core, path )