/* smplayer, GUI front-end for mplayer. Copyright (C) 2006-2008 Ricardo Villalba 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 _CONFIG_H_ #define _CONFIG_H_ // Activate the new code for aspect ratio #define NEW_ASPECT_CODE 1 // 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 // NEW_CONTROLWIDGET // New design for the floating control, with only one row. #define NEW_CONTROLWIDGET 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 // STYLE_SWITCHING // if 1, the preferences dialog will have an option to switch // the Qt style #define STYLE_SWITCHING 1 // New code to resize the main window #define NEW_RESIZE_CODE 1 // Allow to use multiple shortcuts for actions #define USE_MULTIPLE_SHORTCUTS 1 // EXTERNAL_SLEEP // if 1, it will be used the function usleep() from unistd.h // instead of QThread::msleep() // It can be useful if your Qt doesn't have QThread support. // Note: not much test it // Note 2: not used anymore #define EXTERNAL_SLEEP 0 // USE_SHORTCUTGETTER // if 1, a new dialog will be used to ask the user for a // keyshortcut. #define USE_SHORTCUTGETTER 1 // ENABLE_DELAYED_DRAGGING // if 1, sends the dragging position of the time slider // some ms later #define ENABLE_DELAYED_DRAGGING 1 // SCALE_ASS_SUBS // MPlayer r25843 adds the possibility to change the // size of the subtitles, when using -ass, with the // sub_scale slave command. Unfortunately this require // a different code, which also makes the size of the // subtitles to be very different when using -ass or not. // Setting SCALE_ASS_SUBS to 1 activates this code. #define SCALE_ASS_SUBS 1 // Testing with a QGLWidget (for Windows) #define USE_GL_WIDGET 0 #endif