RetroShare/plugins/smplayer_plugin/guiconfig.h
defnax 87344de7d4 added for plugins own dir
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-11-28 14:21:11 +00:00

93 lines
2.3 KiB
C

/* smplayer, GUI front-end for mplayer.
Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
This program 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 2 of the License, or
(at your option) any later version.
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 General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _GUICONFIG_H_
#define _GUICONFIG_H_
// CONTROLWIDGET_OVER_VIDEO
// if set to 1, the controlwidget will be shown in fullscreen
// *over* the video (not moving the video) when the user move the mouse
// to the bottom area of the screen.
#define CONTROLWIDGET_OVER_VIDEO 1
// DOCK_PLAYLIST
// if 1, the playlist will be docked in the main window, instead
// of being a top level window
#define DOCK_PLAYLIST 1
// AUTODISABLE_ACTIONS
// if set to 1, some actions will be disabled if they are not needed
#define AUTODISABLE_ACTIONS 1
// MINI_ARROW_BUTTONS
// if set to 1, the GUI will use a popup menu for arrow buttons
#define MINI_ARROW_BUTTONS 1
// ALLOW_CHANGE_STYLESHEET
// if 1, the app stylesheet can be changed
#define ALLOW_CHANGE_STYLESHEET 1
// Allow to use multiple shortcuts for actions
#define USE_MULTIPLE_SHORTCUTS 1
// USE_SHORTCUTGETTER
// if 1, a new dialog will be used to ask the user for a
// keyshortcut.
#define USE_SHORTCUTGETTER 1
// USE_INFOPROVIDER
// if 1, the playlist will read info about the files when they are added
// to the list.
// It's slow but allows the user to see the length and even the name of
// a mp3 song.
#define USE_INFOPROVIDER 1
// USE_CONFIGURABLE_TOOLBARS
// if 1, the toolbars (and controlbars) are saved to the config file
// so the user can modify them.
#define USE_CONFIGURABLE_TOOLBARS 1
// USE_DOCK_TOPLEVEL_EVENT
// if 1, the topLevelChanged from QDockWidget will be use to know
// if the playlist has been docked or undocked
#define USE_DOCK_TOPLEVEL_EVENT 0
#endif