/** * Copyright (C) 2002-2003 by Koos Vriezen * * This library 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 library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, * Boston, MA 02110-1301, USA. **/ #ifndef _KMPLAYERCONFIG_H_ #define _KMPLAYERCONFIG_H_ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include class TDEConfig; namespace KMPlayer { class PartBase; class Preferences; class View; class OutputDriver { public: const char * driver; const TQString description; }; class ColorSetting { public: TQString title; TQString option; TQColor color; TQColor newcolor; enum Target { playlist_background = 0, playlist_foreground, playlist_active, console_background, console_foreground, video_background, area_background, infowindow_background, infowindow_foreground, last_target } target; }; class FontSetting { public: TQString title; TQString option; // for ini file TQFont font; TQFont newfont; enum Target { playlist, infowindow, last_target } target; }; template struct Deleter { void operator ()(T * t) { delete t; } }; /* * Base class for all dynamic preferance pages */ class KMPLAYER_EXPORT PreferencesPage { public: virtual ~PreferencesPage () {} virtual void write (TDEConfig *) = 0; virtual void read (TDEConfig *) = 0; virtual void sync (bool fromUI) = 0; virtual void prefLocation (TQString & item, TQString & icon, TQString & tab) = 0; virtual TQFrame * prefPage (TQWidget * parent) = 0; PreferencesPage * next; }; /* * Class for storing all actual settings and reading/writing them */ class KMPLAYER_EXPORT Settings : public TQObject { TQ_OBJECT public: Settings (PartBase *, TDEConfig * part); ~Settings (); bool createDialog () KDE_NO_EXPORT; void show (const char * pagename = 0L); void addPage (PreferencesPage *); void removePage (PreferencesPage *); void applyColorSetting (bool only_changed_ones); Preferences *configDialog() const { return configdialog; } View * defaultView (); TDEConfig * tdeconfig () { return m_config; } TQStringList urllist; TQStringList sub_urllist; int volume; int contrast; int brightness; int hue; int saturation; int prefbitrate; int maxbitrate; bool usearts : 1; bool no_intro : 1; bool sizeratio : 1; bool remembersize : 1; bool autoresize : 1; bool docksystray : 1; bool loop : 1; bool framedrop : 1; bool autoadjustvolume : 1; bool autoadjustcolors : 1; bool showcnfbutton : 1; bool showplaylistbutton : 1; bool showrecordbutton : 1; bool showbroadcastbutton : 1; bool autohideslider : 1; bool mplayerpost090 : 1; bool allowhref : 1; // postproc thingies bool postprocessing : 1; bool disableppauto : 1; bool pp_default : 1; // -vf pp=de bool pp_fast : 1; // -vf pp=fa bool pp_custom : 1; // coming up bool pp_custom_hz : 1; // horizontal deblocking bool pp_custom_hz_aq : 1; // - autoquality bool pp_custom_hz_ch : 1; // - chrominance bool pp_custom_vt : 1; // vertical deblocking bool pp_custom_vt_aq : 1; // - autoquality bool pp_custom_vt_ch : 1; // - chrominance bool pp_custom_dr : 1; // dering filter bool pp_custom_dr_aq : 1; // - autoquality bool pp_custom_dr_ch : 1; // - chrominance bool pp_custom_al : 1; // pp=al bool pp_custom_al_f : 1;// - fullrange bool pp_custom_tn : 1; // pp=tn int pp_custom_tn_s : 1; // - noise reducer strength (1 <= x <= 3) bool pp_lin_blend_int : 1; // linear blend deinterlacer bool pp_lin_int : 1; // - interpolating - bool pp_cub_int : 1; // cubic - - bool pp_med_int : 1; // median interlacer bool pp_ffmpeg_int : 1; // ffmpeg interlacer // end of postproc // recording bool recordcopy : 1; enum Recorder { MEncoder = 0, FFMpeg, MPlayerDumpstream }; Recorder recorder; enum ReplayOption { ReplayNo = 0, ReplayFinished, ReplayAfter }; ReplayOption replayoption; int replaytime; TQString mencoderarguments; TQString ffmpegarguments; TQString recordfile; int seektime; int videodriver; int audiodriver; OutputDriver * audiodrivers; OutputDriver * videodrivers; ColorSetting colors [ColorSetting::last_target]; FontSetting fonts [FontSetting::last_target]; TQString dvddevice; TQString vcddevice; TQMap backends; PreferencesPage * pagelist; signals: void configChanged (); public slots: void readConfig () KDE_NO_EXPORT; void writeConfig (); private slots: void okPressed (); void getHelp (); private: Preferences * configdialog; TDEConfig * m_config; PartBase * m_player; }; } // namespace #endif //_KMPLAYERCONFIG_H_