/* smplayer, GUI front-end for mplayer. Copyright (C) 2006-2018 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 PREFADVANCED_H #define PREFADVANCED_H #include "ui_prefadvanced.h" #include "prefwidget.h" #include "preferences.h" class Preferences; class PrefAdvanced : public PrefWidget, public Ui::PrefAdvanced { Q_OBJECT public: PrefAdvanced( QWidget * parent = 0, Qt::WindowFlags f = 0 ); ~PrefAdvanced(); virtual QString sectionName(); virtual QPixmap sectionIcon(); // Pass data to the dialog void setData(Preferences * pref); // Apply changes void getData(Preferences * pref); #if REPAINT_BACKGROUND_OPTION bool repaintVideoBackgroundChanged() { return repaint_video_background_changed; }; #endif bool monitorAspectChanged() { return monitor_aspect_changed; }; #if USE_COLORKEY bool colorkeyChanged() { return colorkey_changed; }; #endif bool lavfDemuxerChanged() { return lavf_demuxer_changed; }; protected: virtual void createHelp(); // Advanced void setMonitorAspect(QString asp); QString monitorAspect(); #if REPAINT_BACKGROUND_OPTION void setRepaintVideoBackground(bool b); bool repaintVideoBackground(); #endif void setUseMplayerWindow(bool v); bool useMplayerWindow(); // Windows only: pass to mplayer short filenames (8+3) void setUseShortNames(bool b); bool useShortNames(); void setMplayerCrashes(bool b); bool mplayerCrashes(); void setMplayerAdditionalArguments(QString args); QString mplayerAdditionalArguments(); void setMplayerAdditionalVideoFilters(QString s); QString mplayerAdditionalVideoFilters(); void setMplayerAdditionalAudioFilters(QString s); QString mplayerAdditionalAudioFilters(); #if USE_COLORKEY void setColorKey(unsigned int c); unsigned int colorKey(); #endif void setPreferIpv4(bool b); bool preferIpv4(); void setUseIdx(bool); bool useIdx(); void setUseLavfDemuxer(bool); bool useLavfDemuxer(); void setUseCorrectPts(Preferences::OptionState value); Preferences::OptionState useCorrectPts(); void setActionsToRun(QString actions); QString actionsToRun(); void setShowTagInTitle(bool b); bool showTagInTitle(); // Log options #ifdef LOG_MPLAYER void setLogMplayer(bool b); bool logMplayer(); void setMplayerLogVerbose(bool b); bool mplayerLogVerbose(); void setSaveMplayerLog(bool b); bool saveMplayerLog(); void setMplayerLogName(QString filter); QString mplayerLogName(); #endif #ifdef LOG_SMPLAYER void setLogSmplayer(bool b); bool logSmplayer(); void setLogFilter(QString filter); QString logFilter(); void setSaveSmplayerLog(bool b); bool saveSmplayerLog(); #endif protected: virtual void retranslateStrings(); protected slots: void on_changeButton_clicked(); private: #if REPAINT_BACKGROUND_OPTION bool repaint_video_background_changed; #endif bool monitor_aspect_changed; #if USE_COLORKEY bool colorkey_changed; #endif bool lavf_demuxer_changed; }; #endif