~ubuntu-branches/ubuntu/wily/remuco-server/wily

« back to all changes in this revision

Viewing changes to base/module/remuco/command.py

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-03-30 00:59:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090330005936-hkxki384hm0d33gj
Tags: upstream-0.8.2.1
ImportĀ upstreamĀ versionĀ 0.8.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# =============================================================================
 
2
#
 
3
#    Remuco - A remote control system for media players.
 
4
#    Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
5
#
 
6
#    This file is part of Remuco.
 
7
#
 
8
#    Remuco is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    Remuco is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
# =============================================================================
 
22
 
 
23
CMD_IGNORE = 0
 
24
CMD_PLAYPAUSE = 1
 
25
CMD_STOP = 2        # obsolete
 
26
CMD_NEXT = 3
 
27
CMD_PREV = 4
 
28
CMD_JUMP = 5
 
29
CMD_SEEK_FWD = 6
 
30
CMD_SEEK_BWD = 7
 
31
CMD_VOLUME = 8
 
32
CMD_RATE = 9
 
33
CMD_PLAYNEXT = 10
 
34
CMD_SETTAGS = 12
 
35
CMD_REPEAT = 13
 
36
CMD_SHUFFLE = 14
 
37
CMD_SHUTDOWN = 0x0100
 
38