mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
40 lines
1.7 KiB
C
40 lines
1.7 KiB
C
/*
|
|
* Copyright (C) 2009 Jan G. Marker <jangerrit@weiler-marker.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
* published by the Free Software Foundation
|
|
*
|
|
* This program 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 Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef AUDIOPLAYERCONTROLRUNNERCONFIGKEYS_H
|
|
#define AUDIOPLAYERCONTROLRUNNERCONFIGKEYS_H
|
|
|
|
static const char * CONFIG_COMMANDS = "useCommands";
|
|
static const char * CONFIG_COLLECTION = "searchCollection";
|
|
static const char * CONFIG_PLAY = "com_play";
|
|
static const char * CONFIG_APPEND = "com_append";
|
|
static const char * CONFIG_QUEUE = "com_queue";
|
|
static const char * CONFIG_PAUSE = "com_pause";
|
|
static const char * CONFIG_NEXT = "com_next";
|
|
static const char * CONFIG_MUTE = "com_mute";
|
|
static const char * CONFIG_INCREASE = "com_up";
|
|
static const char * CONFIG_INCREASE_BY = "val_up";
|
|
static const char * CONFIG_DECREASE = "com_down";
|
|
static const char * CONFIG_DECREASE_BY = "val_down";
|
|
static const char * CONFIG_PREV = "com_prev";
|
|
static const char * CONFIG_STOP = "com_stop";
|
|
static const char * CONFIG_VOLUME = "com_volume";
|
|
static const char * CONFIG_QUIT = "com_quit";
|
|
static const char * CONFIG_PLAYER = "player";
|
|
|
|
#endif
|