/usr/share/pyshared/remuco/features.py is in remuco-base 0.9.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # =============================================================================
#
# Remuco - A remote control system for media players.
# Copyright (C) 2006-2010 by the Remuco team, see AUTHORS.
#
# This file is part of Remuco.
#
# Remuco is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Remuco is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Remuco. If not, see <http://www.gnu.org/licenses/>.
#
# =============================================================================
# --- 'is known' features ---
FT_KNOWN_VOLUME = 1 << 0
FT_KNOWN_REPEAT = 1 << 1
FT_KNOWN_SHUFFLE = 1 << 2
FT_KNOWN_PLAYBACK = 1 << 3
FT_KNOWN_PROGRESS = 1 << 4
# --- control features ---
FT_CTRL_PLAYBACK = 1 << 9
FT_CTRL_VOLUME = 1 << 10
FT_CTRL_SEEK = 1 << 11
FT_CTRL_TAG = 1 << 12
#FT_CTRL_ = 1 << 13
#FT_CTRL_ = 1 << 14
FT_CTRL_RATE = 1 << 15
FT_CTRL_REPEAT = 1 << 16
FT_CTRL_SHUFFLE = 1 << 17
FT_CTRL_NEXT = 1 << 18
FT_CTRL_PREV = 1 << 19
FT_CTRL_FULLSCREEN = 1 << 20
FT_CTRL_NAVIGATE = 1 << 21
# --- request features ---
FT_REQ_ITEM = 1 << 25 # obsolete
FT_REQ_PL = 1 << 26
FT_REQ_QU = 1 << 27
FT_REQ_MLIB = 1 << 28
# --- misc features
FT_SHUTDOWN = 1 << 30
|