Ticket #8088: 8088_playgroups_v8.patch
File 8088_playgroups_v8.patch, 167.6 KB (added by , 16 years ago) |
---|
-
libs/libmythtv/videoout_vdpau.h
16 16 { 17 17 public: 18 18 static void GetRenderOptions(render_opts &opts); 19 VideoOutputVDPAU( MythCodecID codec_id);19 VideoOutputVDPAU(PlaySettings *settings, MythCodecID codec_id); 20 20 ~VideoOutputVDPAU(); 21 21 bool Init(int width, int height, float aspect, WId winid, 22 22 int winx, int winy, int winw, int winh, WId embedid = 0); … … 49 49 const QSize &video_dim); 50 50 static MythCodecID GetBestSupportedCodec(uint width, uint height, 51 51 uint stream_type, 52 bool no_acceleration); 52 bool no_acceleration, 53 PlaySettings *settings); 53 54 DisplayInfo GetDisplayInfo(void); 54 55 virtual bool IsPIPSupported(void) const { return true; } 55 56 virtual bool IsPBPSupported(void) const { return false; } -
libs/libmythtv/NuppelVideoPlayer.cpp
59 59 #include "util-osx-cocoa.h" 60 60 #include "mythverbose.h" 61 61 #include "myth_imgconvert.h" 62 #include "playsettings.h" 62 63 63 64 extern "C" { 64 65 #include "vbitext/vbi.h" … … 224 225 // Debugging variables 225 226 output_jmeter(NULL) 226 227 { 227 228 // Playback (output) zoom control229 detect_letter_box = new DetectLetterbox(this);230 231 vbimode = VBIMode::Parse(gContext->GetSetting("VbiFormat"));232 233 commrewindamount = gContext->GetNumSetting("CommRewindAmount",0);234 commnotifyamount = gContext->GetNumSetting("CommNotifyAmount",0);235 decode_extra_audio=gContext->GetNumSetting("DecodeExtraAudio", 0);236 itvEnabled = gContext->GetNumSetting("EnableMHEG", 0);237 db_prefer708 = gContext->GetNumSetting("Prefer708Captions", 1);238 autocommercialskip = (CommSkipMode)239 gContext->GetNumSetting("AutoCommercialSkip", kCommSkipOff);240 241 228 lastIgnoredManualSkip = QDateTime::currentDateTime().addSecs(-10); 242 229 243 230 bzero(&txtbuffers, sizeof(txtbuffers)); … … 663 650 664 651 if (using_null_videoout) 665 652 { 666 videoOutput = new VideoOutputNull( );653 videoOutput = new VideoOutputNull(GetPlaySettings()); 667 654 if (!videoOutput->Init(video_disp_dim.width(), video_disp_dim.height(), 668 655 video_aspect, 0, 0, 0, 0, 0, 0)) 669 656 { … … 712 699 pipState, 713 700 video_disp_dim, video_aspect, 714 701 widget->winId(), display_rect, (video_frame_rate * play_speed), 715 0 /*embedid*/ );702 0 /*embedid*/, GetPlaySettings()); 716 703 717 704 if (!videoOutput) 718 705 { … … 734 721 videoOutput->EmbedInWidget(embx, emby, embw, embh); 735 722 } 736 723 737 SetCaptionsEnabled(gContext->GetNumSetting("DefaultCCMode"), false); 724 SetCaptionsEnabled(GetPlaySettings()->GetNumSetting("DefaultCCMode", 0), 725 false); 738 726 739 727 InitFilters(); 740 728 … … 785 773 786 774 void NuppelVideoPlayer::ReinitVideo(void) 787 775 { 788 if (!videoOutput->IsPreferredRenderer(video_disp_dim ))776 if (!videoOutput->IsPreferredRenderer(video_disp_dim, GetPlaySettings())) 789 777 { 790 778 VERBOSE(VB_PLAYBACK, LOC + QString("Need to switch video renderer.")); 791 779 SetErrored(QObject::tr("Need to switch video renderer.")); … … 856 844 857 845 if (!audioOutput && !using_null_videoout && player_ctx->IsAudioNeeded()) 858 846 { 859 bool setVolume = gContext->GetNumSetting("MythControlsVolume", 1); 847 bool setVolume = 848 GetPlaySettings()->GetNumSetting("MythControlsVolume", 1); 860 849 audioOutput = AudioOutput::OpenAudio(audio_main_device, 861 850 audio_passthru_device, 862 851 audio_bits, audio_channels, 863 852 audio_codec, audio_samplerate, 864 853 AUDIOOUTPUT_VIDEO, 865 setVolume, audio_passthru); 854 setVolume, audio_passthru, 855 GetPlaySettings()); 866 856 if (!audioOutput) 867 857 errMsg = QObject::tr("Unable to create AudioOutput."); 868 858 else … … 894 884 if (audioOutput) 895 885 { 896 886 const AudioSettings settings(audio_bits, audio_channels, audio_codec, 897 audio_samplerate, audio_passthru); 887 audio_samplerate, audio_passthru, 888 GetPlaySettings()); 898 889 audioOutput->Reconfigure(settings); 899 890 if (audio_passthru) 900 891 audio_channels = 2; … … 2906 2897 m_double_process = videoOutput->IsExtraProcessingRequired(); 2907 2898 2908 2899 videosync = VideoSync::BestMethod( 2909 videoOutput, fr_int, rf_int, m_double_framerate); 2900 videoOutput, GetPlaySettings(), 2901 fr_int, rf_int, m_double_framerate); 2910 2902 2911 2903 // Make sure video sync can do it 2912 2904 if (videosync != NULL && m_double_framerate) … … 3388 3380 QRect visible, total; 3389 3381 float aspect, scaling; 3390 3382 3391 osd = new OSD( );3383 osd = new OSD(GetPlaySettings()); 3392 3384 3393 3385 osd->SetListener(m_tv); 3394 3386 … … 3467 3459 3468 3460 GetDecoder()->setExactSeeks(seeks); 3469 3461 3470 if ( gContext->GetNumSetting("ClearSavedPosition", 1) &&3462 if (GetPlaySettings()->GetNumSetting("ClearSavedPosition", 1) && 3471 3463 !player_ctx->IsPIP()) 3472 3464 { 3473 3465 if (player_ctx->buffer->isDVD()) … … 3735 3727 ++deleteIter; 3736 3728 if (deleteIter.key() == totalFrames) 3737 3729 { 3738 if (!( gContext->GetNumSetting("EndOfRecordingExitPrompt") == 13730 if (!(GetPlaySettings()->GetNumSetting("EndOfRecordingExitPrompt", 0) == 1 3739 3731 && !player_ctx->IsPIP() && 3740 3732 player_ctx->GetState() == kState_WatchingPreRecorded)) 3741 3733 { … … 3909 3901 3910 3902 if (sim_pip_players.isEmpty()) 3911 3903 { 3912 return (PIPLocation)gContext->GetNumSetting("PIPLocation", kPIPTopLeft); 3904 return (PIPLocation)GetPlaySettings()->GetNumSetting("PIPLocation", 3905 kPIPTopLeft); 3913 3906 } 3914 3907 3915 3908 // order of preference, could be stored in db if we want it configurable … … 4697 4690 exactseeks = frame_exact_seek; 4698 4691 player_ctx = ctx; 4699 4692 livetv = ctx->tvchain; 4693 4694 vbimode = VBIMode::Parse(GetPlaySettings()->GetSetting("VbiFormat", "")); 4695 4696 // Playback (output) zoom control 4697 detect_letter_box = new DetectLetterbox(this); 4698 4699 commrewindamount = GetPlaySettings()->GetNumSetting("CommRewindAmount", 0); 4700 commnotifyamount = GetPlaySettings()->GetNumSetting("CommNotifyAmount", 0); 4701 decode_extra_audio = GetPlaySettings()->GetNumSetting("DecodeExtraAudio", 0); 4702 itvEnabled = GetPlaySettings()->GetNumSetting("EnableMHEG", 0); 4703 db_prefer708 = GetPlaySettings()->GetNumSetting("Prefer708Captions", 1); 4704 autocommercialskip = (CommSkipMode) 4705 GetPlaySettings()->GetNumSetting("AutoCommercialSkip", kCommSkipOff); 4706 SetAudioInfo(GetPlaySettings()->GetSetting("AudioOutputDevice", ""), 4707 GetPlaySettings()->GetSetting("PassThruOutputDevice", ""), 4708 gContext->GetNumSetting("AudioSampleRate", 44100)); 4700 4709 } 4701 4710 4702 4711 void NuppelVideoPlayer::SetDeleteIter(void) … … 7364 7373 { 7365 7374 QMutexLocker locker(&subtitleLock); 7366 7375 textSubtitles.Clear(); 7367 return TextSubtitleParser::LoadSubtitles(subtitleFileName, textSubtitles); 7376 return TextSubtitleParser::LoadSubtitles(subtitleFileName, textSubtitles, 7377 GetPlaySettings()); 7368 7378 } 7369 7379 7370 7380 void NuppelVideoPlayer::ChangeDVDTrack(bool ffw) -
libs/libmythtv/videooutwindow.cpp
30 30 #include "videooutwindow.h" 31 31 #include "osd.h" 32 32 #include "osdsurface.h" 33 #include "playsettings.h" 33 34 #include "NuppelVideoPlayer.h" 34 35 #include "videodisplayprofile.h" 35 36 #include "decoderbase.h" … … 54 55 const float VideoOutWindow::kManualZoomMinVerticalZoom = 0.5f; 55 56 const int VideoOutWindow::kManualZoomMaxMove = 50; 56 57 57 VideoOutWindow::VideoOutWindow( ) :58 VideoOutWindow::VideoOutWindow(PlaySettings *_settings) : 58 59 // DB settings 59 60 db_move(0, 0), db_scale_horiz(0.0f), db_scale_vert(0.0f), 60 61 db_pip_size(26), … … 85 86 86 87 // Various state variables 87 88 embedding(false), needrepaint(false), 88 allowpreviewepg(true), pip_state(kPIPOff) 89 allowpreviewepg(true), pip_state(kPIPOff), 90 91 settings(_settings) 89 92 { 90 93 db_pip_size = gContext->GetNumSetting("PIPSize", 26); 91 94 92 db_move = QPoint( gContext->GetNumSetting("xScanDisplacement", 0),93 gContext->GetNumSetting("yScanDisplacement", 0));95 db_move = QPoint(settings->GetNumSetting("xScanDisplacement", 0), 96 settings->GetNumSetting("yScanDisplacement", 0)); 94 97 db_use_gui_size = gContext->GetNumSetting("GuiSizeForTV", 0); 95 98 96 99 QDesktopWidget *desktop = NULL; … … 613 616 if (change) 614 617 { 615 618 db_scale_vert = 616 gContext->GetNumSetting("VertScanPercentage", 0) * 0.01f;619 settings->GetNumSetting("VertScanPercentage", 0) * 0.01f; 617 620 db_scale_horiz = 618 gContext->GetNumSetting("HorizScanPercentage", 0) * 0.01f;621 settings->GetNumSetting("HorizScanPercentage", 0) * 0.01f; 619 622 db_scaling_allowed = true; 620 623 } 621 624 else -
libs/libmythtv/videoout_d3d.cpp
948 948 opts.priorities->insert("direct3d", 55); 949 949 } 950 950 951 VideoOutputD3D::VideoOutputD3D( void)952 : VideoOutput( ), m_lock(QMutex::Recursive),951 VideoOutputD3D::VideoOutputD3D(PlaySettings *settings) 952 : VideoOutput(settings), m_lock(QMutex::Recursive), 953 953 m_hWnd(NULL), m_ctx(NULL), 954 954 m_video(NULL), m_osd(NULL), 955 955 m_d3d_osd(false), m_osd_ready(false), -
libs/libmythtv/DetectLetterbox.cpp
5 5 #include "NuppelVideoPlayer.h" 6 6 #include "videoouttypes.h" 7 7 #include "mythcontext.h" 8 #include "playsettings.h" 8 9 9 10 DetectLetterbox::DetectLetterbox(NuppelVideoPlayer* const nvp) 10 11 { 11 int dbAdjustFill = gContext->GetNumSetting("AdjustFill", 0);12 int dbAdjustFill = nvp->GetPlaySettings()->GetNumSetting("AdjustFill", 0); 12 13 isDetectLetterbox = dbAdjustFill >= kAdjustFill_AutoDetect_DefaultOff; 13 14 firstFrameChecked = 0; 14 15 detectLetterboxDefaultMode = (AdjustFillMode) max((int) kAdjustFill_Off, … … 17 18 detectLetterboxPossibleHalfFrame = -1; 18 19 detectLetterboxPossibleFullFrame = -1; 19 20 detectLetterboxDetectedMode = nvp->GetAdjustFill(); 20 detectLetterboxLimit = gContext->GetNumSetting("DetectLeterboxLimit", 75); 21 detectLetterboxLimit = 22 nvp->GetPlaySettings()->GetNumSetting("DetectLeterboxLimit", 75); 21 23 nupple_video_player = nvp; 22 24 } 23 25 -
libs/libmythtv/videoout_opengl.cpp
38 38 opts.priorities->insert("opengl", 65); 39 39 } 40 40 41 VideoOutputOpenGL::VideoOutputOpenGL( void)42 : VideoOutput( ),41 VideoOutputOpenGL::VideoOutputOpenGL(PlaySettings *settings) 42 : VideoOutput(settings), 43 43 gl_context_lock(QMutex::Recursive), 44 44 gl_context(NULL), gl_videochain(NULL), 45 45 gl_osdchain(NULL), gl_pipchain_active(NULL), -
libs/libmythtv/videoout_quartz.cpp
65 65 #include "videodisplayprofile.h" 66 66 #include "videoout_dvdv.h" 67 67 68 class PlaySettings; 69 68 70 #define LOC QString("VideoOutputQuartz::") 69 71 #define LOC_ERR QString("VideoOutputQuartz Error: ") 70 72 … … 1108 1110 /** \class VideoOutputQuartz 1109 1111 * \brief Implementation of Quartz (Mac OS X windowing system) video output 1110 1112 */ 1111 VideoOutputQuartz::VideoOutputQuartz( 1113 VideoOutputQuartz::VideoOutputQuartz(PlaySettings *settings 1112 1114 MythCodecID _myth_codec_id, void *codec_priv) : 1113 VideoOutput( ), Started(false), data(new QuartzData()),1115 VideoOutput(settings), Started(false), data(new QuartzData()), 1114 1116 myth_codec_id(_myth_codec_id) 1115 1117 { 1116 1118 init(&pauseFrame, FMT_YV12, NULL, 0, 0, 0, 0); … … 1815 1817 MythCodecID VideoOutputQuartz::GetBestSupportedCodec( 1816 1818 uint width, uint height, 1817 1819 uint osd_width, uint osd_height, 1818 uint stream_type, uint fourcc )1820 uint stream_type, uint fourcc, PlaySettings *settings) 1819 1821 { 1820 1822 (void) osd_width; 1821 1823 (void) osd_height; 1822 1824 1823 VideoDisplayProfile vdp ;1825 VideoDisplayProfile vdp(settings); 1824 1826 vdp.SetInput(QSize(width, height)); 1825 1827 QString dec = vdp.GetDecoder(); 1826 1828 if ((dec == "libmpeg2") || (dec == "ffmpeg")) -
libs/libmythtv/avformatdecoder.cpp
28 28 #include "videodisplayprofile.h" 29 29 #include "mythuihelper.h" 30 30 #include "myth_imgconvert.h" 31 #include "playsettings.h" 31 32 32 33 #include "lcddevice.h" 33 34 … … 517 518 av_log_set_level((debug) ? AV_LOG_DEBUG : AV_LOG_ERROR); 518 519 av_log_set_callback(myth_av_log); 519 520 520 max_channels = (uint) gContext->GetNumSetting("MaxChannels", 2); 521 allow_ac3_passthru = (max_channels > 2) ? gContext->GetNumSetting("AC3PassThru", false) : false; 522 allow_dts_passthru = (max_channels > 2) ? gContext->GetNumSetting("DTSPassThru", false) : false; 523 internal_vol = gContext->GetNumSetting("MythControlsVolume", 0); 521 max_channels = 522 (uint) GetNVP()->GetPlaySettings()->GetNumSetting("MaxChannels", 2); 523 allow_ac3_passthru = (max_channels > 2) ? 524 GetNVP()->GetPlaySettings()->GetNumSetting("AC3PassThru", false) : 525 false; 526 allow_dts_passthru = (max_channels > 2) ? 527 GetNVP()->GetPlaySettings()->GetNumSetting("DTSPassThru", false) : 528 false; 529 internal_vol = 530 GetNVP()->GetPlaySettings()->GetNumSetting("MythControlsVolume", 0); 524 531 525 532 audioIn.sample_size = -32; // force SetupAudioStream to run once 526 533 itv = GetNVP()->GetInteractiveTV(); 527 534 528 535 cc608_build_parity_table(cc608_parity_table); 529 536 530 if ( gContext->GetNumSetting("CCBackground", 0))537 if (GetNVP()->GetPlaySettings()->GetNumSetting("CCBackground", 0)) 531 538 CC708Window::forceWhiteOnBlackText = true; 532 539 533 540 no_dts_hack = false; … … 1412 1419 codec = find_vdpau_decoder(codec, enc->codec_id); 1413 1420 1414 1421 if (selectedStream && 1415 ! gContext->GetNumSetting("DecodeExtraAudio", 0) &&1422 !GetNVP()->GetPlaySettings()->GetNumSetting("DecodeExtraAudio", 0) && 1416 1423 !CODEC_IS_HWACCEL(codec)) 1417 1424 { 1418 1425 SetLowBuffers(false); … … 1847 1854 1848 1855 if (!is_db_ignored) 1849 1856 { 1850 VideoDisplayProfile vdp ;1857 VideoDisplayProfile vdp(GetNVP()->GetPlaySettings()); 1851 1858 vdp.SetInput(QSize(width, height)); 1852 1859 dec = vdp.GetDecoder(); 1853 1860 thread_count = vdp.GetMaxCPUs(); … … 1870 1877 MythCodecID vdpau_mcid; 1871 1878 vdpau_mcid = VideoOutputVDPAU::GetBestSupportedCodec( 1872 1879 width, height, 1873 mpeg_version(enc->codec_id), no_hardware_decoders); 1880 mpeg_version(enc->codec_id), no_hardware_decoders, 1881 GetNVP()->GetPlaySettings()); 1874 1882 1875 1883 if (vdpau_mcid >= video_codec_id) 1876 1884 { … … 1902 1910 /* mpeg type */ mpeg_version(enc->codec_id), 1903 1911 /* xvmc pix fmt */ xvmc_pixel_format(enc->pix_fmt), 1904 1912 /* test surface */ codec_is_std(video_codec_id), 1905 /* force_xv */ force_xv); 1913 /* force_xv */ force_xv, 1914 GetNVP()->GetPlaySettings()); 1906 1915 1907 1916 if (mcid >= video_codec_id) 1908 1917 { … … 1935 1944 /* osd dim */ 0, 0, 1936 1945 /* mpeg type */ mpeg_version(enc->codec_id), 1937 1946 /* pixel format */ 1938 (PIX_FMT_YUV420P == enc->pix_fmt) ? FOURCC_I420 : 0); 1947 (PIX_FMT_YUV420P == enc->pix_fmt) ? FOURCC_I420 : 0, 1948 GetNVP()->GetPlaySettings()); 1939 1949 1940 1950 if (quartz_mcid >= video_codec_id) 1941 1951 { -
libs/libmythtv/osdtypes.cpp
18 18 #include "mythcontext.h" 19 19 #include "mythdialogs.h" 20 20 #include "mythverbose.h" 21 #include "playsettings.h" 21 22 22 23 #ifdef USING_FRIBIDI 23 24 #include "fribidi/fribidi.h" … … 2359 2360 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2360 2361 2361 2362 OSDTypeCC::OSDTypeCC(const QString &name, TTFFont *font, int xoff, int yoff, 2362 int dispw, int disph, float wmult, float hmult) 2363 int dispw, int disph, float wmult, float hmult, 2364 PlaySettings *settings) 2363 2365 : OSDType(name) 2364 2366 { 2365 2367 m_font = font; … … 2373 2375 2374 2376 QRect rect = QRect(0, 0, 0, 0); 2375 2377 m_box = new OSDTypeBox("cc_background", rect, wmult, hmult); 2376 m_ccbackground = gContext->GetNumSetting("CCBackground", 0);2378 m_ccbackground = settings->GetNumSetting("CCBackground", 0); 2377 2379 } 2378 2380 2379 2381 OSDTypeCC::~OSDTypeCC() -
libs/libmythtv/playgroup.cpp
2 2 #include "mythdb.h" 3 3 #include "playgroup.h" 4 4 #include "programinfo.h" 5 #include "playsettings.h" 5 6 6 7 // A parameter associated with the profile itself 7 8 class PlayGroupDBStorage : public SimpleDBStorage … … 211 212 return res; 212 213 } 213 214 214 PlayGroupEditor::PlayGroupEditor(void) : 215 listbox(new ListBoxSetting(this)), lastValue("Default") 215 PlayGroupEditor::PlayGroupEditor(SettingsLookup *funcArray, int funcArraySize) : 216 listbox(new ListBoxSetting(this)), lastValue("Default"), 217 getSettings(funcArray), getSettingsSize(funcArraySize) 216 218 { 217 219 listbox->setLabel(tr("Playback Groups")); 218 220 addChild(listbox); … … 243 245 } 244 246 245 247 PlayGroup group(name); 248 PlaySettings *psettings = new PlaySettings(name); 249 for (int i=0; i<getSettingsSize; i++) 250 getSettings[i](psettings, &group); 246 251 if (group.exec() == QDialog::Accepted || !created) 247 252 lastValue = name; 248 253 else … … 277 282 query.bindValue(":NAME", name); 278 283 if (!query.exec()) 279 284 MythDB::DBError("PlayGroupEditor::doDelete", query); 285 PlaySettings::deleteGroup(name); 280 286 281 287 int lastIndex = listbox->getValueIndex(name); 282 288 lastValue = ""; -
libs/libmythtv/videoout_opengl.h
10 10 { 11 11 public: 12 12 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 13 VideoOutputOpenGL( );13 VideoOutputOpenGL(PlaySettings *settings); 14 14 ~VideoOutputOpenGL(); 15 15 16 16 bool Init(int width, int height, float aspect, WId winid, -
libs/libmythtv/osdtypes.h
31 31 class OSDTypeText; 32 32 class OSDSurface; 33 33 class TV; 34 class PlaySettings; 34 35 35 36 typedef QHash<QString,QString> InfoMap; 36 37 typedef QMap<int,uint> HotKeyMap; … … 573 574 { 574 575 public: 575 576 OSDTypeCC(const QString &name, TTFFont *font, int xoff, int yoff, 576 int dispw, int disph, float wmult, float hmult); 577 int dispw, int disph, float wmult, float hmult, 578 PlaySettings *settings); 577 579 ~OSDTypeCC(); 578 580 579 581 void Reinit(float wmult, float hmult); -
libs/libmythtv/tv_play.h
56 56 class TV; 57 57 class OSDListTreeItemEnteredEvent; 58 58 class OSDListTreeItemSelectedEvent; 59 class PlaySettings; 59 60 60 61 typedef QMap<QString,InfoMap> DDValueMap; 61 62 typedef QMap<QString,DDValueMap> DDKeyMap; … … 179 180 unsigned long seconds; 180 181 }; 181 182 182 TV( void);183 TV(PlaySettings *settings); 183 184 ~TV(); 184 185 185 186 bool Init(bool createWindow = true); … … 204 205 205 206 // Recording commands 206 207 int PlayFromRecorder(int recordernum); 207 int Playback(const ProgramInfo &rcinfo );208 int Playback(const ProgramInfo &rcinfo, PlaySettings *settings); 208 209 209 210 // Commands used by frontend playback box 210 211 QString GetRecordingGroup(int player_idx) const; … … 593 594 static TVState RemoveRecording(TVState state); 594 595 void RestoreScreenSaver(const PlayerContext*); 595 596 596 void InitUDPNotifyEvent( void);597 void InitUDPNotifyEvent(PlaySettings *settings); 597 598 598 599 /// true if dialog is either videoplayexit, playexit or askdelete dialog 599 600 bool IsVideoExitDialog(const QString &dialog_name); -
libs/libmythtv/playgroup.h
7 7 #include "mythwidgets.h" 8 8 9 9 class ProgramInfo; 10 class PlaySettings; 10 11 11 12 class MPUBLIC PlayGroup: public ConfigurationWizard 12 13 { … … 29 30 Q_OBJECT 30 31 31 32 public: 32 PlayGroupEditor(void); 33 typedef ConfigurationWizard *(*SettingsLookup)(PlaySettings *settings, 34 ConfigurationWizard *base); 35 PlayGroupEditor(SettingsLookup *funcArray, int funcArraySize); 33 36 virtual DialogCode exec(void); 34 37 virtual void Load(void); 35 38 virtual void Save(void) { } … … 44 47 protected: 45 48 ListBoxSetting *listbox; 46 49 QString lastValue; 50 SettingsLookup *getSettings; 51 int getSettingsSize; 47 52 }; 48 53 49 54 #endif -
libs/libmythtv/dbcheck.cpp
3569 3569 3570 3570 VideoDisplayProfile::CreateNewProfiles(host); 3571 3571 profiles = VideoDisplayProfile::GetProfiles(host); 3572 QString profile = VideoDisplayProfile::GetDefaultProfileName(host); 3572 QString profile = 3573 VideoDisplayProfile::GetDefaultProfileName(host, NULL); 3573 3574 3574 3575 if (profiles.contains("Normal") && 3575 3576 (profile=="CPU++" || profile=="CPU+" || profile=="CPU--")) … … 5637 5638 " jump int(11) NOT NULL default '0'," 5638 5639 " PRIMARY KEY (`name`)" 5639 5640 ");", 5641 "CREATE TABLE playgroupsettings (" 5642 " playgroupname varchar(64) NOT NULL," 5643 " `value` varchar(128) NOT NULL," 5644 " `data` text," 5645 " overridden tinyint(1) NOT NULL," 5646 " PRIMARY KEY (playgroupname, `value`)" 5647 ");", 5640 5648 "CREATE TABLE powerpriority (" 5641 5649 " priorityname varchar(64) collate utf8_bin NOT NULL," 5642 5650 " recpriority int(10) NOT NULL default '0'," -
libs/libmythtv/videoout_vdpau.cpp
46 46 opts.deints->insert("vdpau", deints); 47 47 } 48 48 49 VideoOutputVDPAU::VideoOutputVDPAU( MythCodecID codec_id)50 : VideoOutput( ),49 VideoOutputVDPAU::VideoOutputVDPAU(PlaySettings *settings, MythCodecID codec_id) 50 : VideoOutput(settings), 51 51 m_codec_id(codec_id), m_win(0), m_render(NULL), 52 52 m_buffer_size(NUM_VDPAU_BUFFERS), m_pause_surface(0), 53 53 m_need_deintrefs(false), m_video_mixer(0), m_mixer_features(kVDPFeatNone), … … 858 858 859 859 MythCodecID VideoOutputVDPAU::GetBestSupportedCodec( 860 860 uint width, uint height, 861 uint stream_type, bool no_acceleration )861 uint stream_type, bool no_acceleration, PlaySettings *settings) 862 862 { 863 863 bool use_cpu = no_acceleration; 864 VideoDisplayProfile vdp ;864 VideoDisplayProfile vdp(settings); 865 865 vdp.SetInput(QSize(width, height)); 866 866 QString dec = vdp.GetDecoder(); 867 867 -
libs/libmythtv/videoout_directfb.cpp
274 274 opts.priorities->insert("directfb", 60); 275 275 } 276 276 277 VideoOutputDirectfb::VideoOutputDirectfb( void)278 : VideoOutput( ), XJ_started(false), widget(NULL),277 VideoOutputDirectfb::VideoOutputDirectfb(PlaySettings *settings) 278 : VideoOutput(settings), XJ_started(false), widget(NULL), 279 279 data(new DirectfbData()) 280 280 { 281 281 init(&pauseFrame, FMT_YV12, NULL, 0, 0, 0, 0); -
libs/libmythtv/videoout_d3d.h
93 93 { 94 94 public: 95 95 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 96 VideoOutputD3D( );96 VideoOutputD3D(PlaySettings *settings); 97 97 ~VideoOutputD3D(); 98 98 99 99 bool Init(int width, int height, float aspect, WId winid, -
libs/libmythtv/playercontext.cpp
14 14 #include "videoouttypes.h" 15 15 #include "storagegroup.h" 16 16 #include "mythcontext.h" 17 #include "DetectLetterbox.h" 18 #include "playsettings.h" 17 19 18 20 #define LOC QString("playCtx: ") 19 21 #define LOC_ERR QString("playCtx, Error: ") … … 435 437 WId embedwinid, const QRect *embedbounds, 436 438 bool muted) 437 439 { 438 int exact_seeking = gContext->GetNumSetting("ExactSeeking", 0);440 int exact_seeking = settings->GetNumSetting("ExactSeeking", 0); 439 441 440 442 if (HasNVP()) 441 443 { … … 450 452 _nvp->DisableHardwareDecoders(); 451 453 452 454 _nvp->SetPlayerInfo(tv, widget, exact_seeking, this); 453 _nvp->SetAudioInfo(gContext->GetSetting("AudioOutputDevice"),454 gContext->GetSetting("PassThruOutputDevice"),455 gContext->GetNumSetting("AudioSampleRate", 44100));456 455 _nvp->SetAudioStretchFactor(ts_normal); 457 456 _nvp->SetLength(playingLen); 458 457 … … 888 887 /** 889 888 * \brief assign programinfo to the context 890 889 */ 891 void PlayerContext::SetPlayingInfo(const ProgramInfo *info) 890 void PlayerContext::SetPlayingInfo(const ProgramInfo *info, 891 PlaySettings *_settings) 892 892 { 893 893 bool ignoreDB = gContext->IsDatabaseIgnored(); 894 894 … … 900 900 playingInfo->MarkAsInUse(false, recUsage); 901 901 delete playingInfo; 902 902 playingInfo = NULL; 903 // XXX delete settings? 903 904 } 904 905 905 906 if (info) … … 908 909 if (!ignoreDB) 909 910 playingInfo->MarkAsInUse(true, recUsage); 910 911 playingLen = playingInfo->CalculateLength(); 912 settings = (_settings ? _settings : 913 new PlaySettings(playingInfo->playgroup)); 911 914 } 912 915 } 913 916 -
libs/libmythtv/NuppelVideoPlayer.h
196 196 bool GetAudioBufferStatus(uint &fill, uint &total) const; 197 197 PIPLocation GetNextPIPLocation(void) const; 198 198 199 PlaySettings *GetPlaySettings(void) const { 200 return player_ctx ? player_ctx->settings : NULL; 201 } 202 199 203 // Bool Gets 200 204 bool GetRawAudioState(void) const; 201 205 bool GetLimitKeyRepeat(void) const { return limitKeyRepeat; } -
libs/libmythtv/textsubtitleparser.h
17 17 // Qt headers 18 18 #include <QStringList> 19 19 20 class PlaySettings; 21 20 22 class text_subtitle_t 21 23 { 22 24 public: … … 75 77 class TextSubtitleParser 76 78 { 77 79 public: 78 static bool LoadSubtitles(QString fileName, TextSubtitles &target); 80 static bool LoadSubtitles(QString fileName, TextSubtitles &target, 81 PlaySettings *settings); 79 82 }; 80 83 81 84 #endif -
libs/libmythtv/osd.h
70 70 class TeletextViewer; 71 71 class QStringList; 72 72 class QDomElement; 73 class PlaySettings; 73 74 74 75 class OSD : public QObject 75 76 { 76 77 Q_OBJECT 77 78 public: 78 OSD( );79 OSD(PlaySettings *settings); 79 80 ~OSD(void); 80 81 81 82 void Init(const QRect &totalBounds, int frameRate, … … 233 234 234 235 QObject *m_listener; 235 236 237 PlaySettings *settings; 238 236 239 QRect osdBounds; 237 240 int frameint; 238 241 bool needPillarBox; -
libs/libmythtv/vsync.cpp
34 34 #include "mythcontext.h" 35 35 #include "mythverbose.h" 36 36 #include "mythmainwindow.h" 37 #include "playsettings.h" 37 38 38 39 #ifdef USING_XV 39 40 #include "videoout_xv.h" … … 76 77 * \brief Returns the most sophisticated video sync method available. 77 78 */ 78 79 VideoSync *VideoSync::BestMethod(VideoOutput *video_output, 80 PlaySettings *settings, 79 81 uint frame_interval, uint refresh_interval, 80 82 bool halve_frame_interval) 81 83 { 82 84 VideoSync *trial = NULL; 83 85 tryingVideoSync = true; 84 bool tryOpenGL = ( gContext->GetNumSetting("UseOpenGLVSync", 1) &&86 bool tryOpenGL = (settings->GetNumSetting("UseOpenGLVSync", 1) && 85 87 (getenv("NO_OPENGL_VSYNC") == NULL)); 86 88 87 89 // m_forceskip allows for skipping one sync method -
libs/libmythtv/tv_play.cpp
60 60 #include "tv_play_win.h" 61 61 #include "recordinginfo.h" 62 62 #include "mythsystemevent.h" 63 #include "playsettings.h" 63 64 64 65 #if ! HAVE_ROUND 65 66 #define round(x) ((int) ((x) + 0.5)) … … 190 191 bool inPlaylist, bool initByNetworkCommand) 191 192 { 192 193 VERBOSE(VB_PLAYBACK, LOC + "StartTV() -- begin"); 193 TV *tv = new TV();194 194 bool quitAll = false; 195 195 bool showDialogs = true; 196 196 bool playCompleted = false; … … 201 201 if (tvrec) 202 202 curProgram = new ProgramInfo(*tvrec); 203 203 204 PlaySettings settings(curProgram ? curProgram->playgroup : "Default"); 205 TV *tv = new TV(&settings); 206 204 207 // Initialize TV 205 208 if (!tv->Init()) 206 209 { … … 231 234 if (curProgram) 232 235 { 233 236 VERBOSE(VB_PLAYBACK, LOC + "tv->Playback() -- begin"); 234 if (!tv->Playback(*curProgram ))237 if (!tv->Playback(*curProgram, &settings)) 235 238 { 236 239 quitAll = true; 237 240 } … … 786 789 * \brief Performs instance initialiation not requiring access to database. 787 790 * \sa Init(void) 788 791 */ 789 TV::TV( void)792 TV::TV(PlaySettings *settings) 790 793 : // Configuration variables from database 791 794 baseFilters(""), 792 795 db_channel_format("<num> <sign>"), … … 924 927 kv[QString("FFRewSpeed%1").arg(i)] = QString::number(ff_rew_def[i]); 925 928 926 929 MythDB::getMythDB()->GetSettings(kv); 930 settings->AddToMap(kv); 927 931 928 932 // convert from minutes to ms. 929 933 db_idle_timeout = kv["LiveTVIdleTimeout"].toInt() * 60 * 1000; … … 1713 1717 } 1714 1718 1715 1719 1716 int TV::Playback(const ProgramInfo &rcinfo )1720 int TV::Playback(const ProgramInfo &rcinfo, PlaySettings *settings) 1717 1721 { 1718 1722 wantsToQuit = false; 1719 1723 jumpToProgram = false; … … 1727 1731 return 0; 1728 1732 } 1729 1733 1730 mctx->SetPlayingInfo(&rcinfo );1734 mctx->SetPlayingInfo(&rcinfo, settings); 1731 1735 mctx->SetInitialTVState(false); 1732 1736 ScheduleStateChange(mctx); 1733 1737 … … 1810 1814 1811 1815 if (fileexists) 1812 1816 { 1813 Playback(pginfo); 1817 PlaySettings settings("Default"); 1818 Playback(pginfo, &settings); 1814 1819 retval = 1; 1815 1820 } 1816 1821 … … 2155 2160 { 2156 2161 OSD *osd = GetOSDLock(ctx); 2157 2162 ctx->LockPlayingInfo(__FILE__, __LINE__); 2158 if (osd && (PlayGroup::GetCount() > 0)) 2163 if (ctx->playingInfo->playgroup != "Default" && 2164 ctx->playingInfo->playgroup != "Videos" && 2165 osd && (PlayGroup::GetCount() > 0)) 2159 2166 osd->SetSettingsText(tr("%1 Settings") 2160 2167 .arg(tv_i18n(ctx->playingInfo->playgroup)), 3); 2161 2168 ctx->UnlockPlayingInfo(__FILE__, __LINE__); … … 5167 5174 return false; 5168 5175 } 5169 5176 5170 InitUDPNotifyEvent( );5177 InitUDPNotifyEvent(ctx->settings); 5171 5178 bool ok = false; 5172 5179 if (ctx->IsNullVideoDesired()) 5173 5180 { … … 11820 11827 GetMythUI()->RestoreScreensaver(); 11821 11828 } 11822 11829 11823 void TV::InitUDPNotifyEvent( void)11830 void TV::InitUDPNotifyEvent(PlaySettings *settings) 11824 11831 { 11825 11832 if (db_udpnotify_port && !udpnotify) 11826 11833 { 11827 udpnotify = new UDPNotify(db_udpnotify_port );11834 udpnotify = new UDPNotify(db_udpnotify_port, settings); 11828 11835 connect(udpnotify, 11829 11836 SIGNAL(AddUDPNotifyEvent( 11830 11837 const QString&,const UDPNotifyOSDSet*)), -
libs/libmythtv/videodisplayprofile.h
13 13 14 14 #include "mythcontext.h" 15 15 16 class PlaySettings; 17 16 18 typedef QMap<QString,QString> pref_map_t; 17 19 typedef QMap<QString,QStringList> safe_map_t; 18 20 typedef QStringList safe_list_t; … … 80 82 class MPUBLIC VideoDisplayProfile 81 83 { 82 84 public: 83 VideoDisplayProfile( );85 VideoDisplayProfile(PlaySettings *settings); 84 86 ~VideoDisplayProfile(); 85 87 86 88 void SetInput(const QSize &size); … … 121 123 static QString GetDecoderName(const QString &decoder); 122 124 static QString GetDecoderHelp(QString decoder = QString::null); 123 125 124 static QString GetDefaultProfileName(const QString &hostname); 126 static QString GetDefaultProfileName(const QString &hostname, 127 PlaySettings *settings); 125 128 static void SetDefaultProfileName(const QString &profilename, 126 129 const QString &hostname); 127 130 static uint GetProfileGroupID(const QString &profilename, -
libs/libmythtv/videoout_null.cpp
27 27 opts.priorities->insert("null", 10); 28 28 } 29 29 30 VideoOutputNull::VideoOutputNull( void) :31 VideoOutput( ), global_lock(QMutex::Recursive)30 VideoOutputNull::VideoOutputNull(PlaySettings *settings) : 31 VideoOutput(settings), global_lock(QMutex::Recursive) 32 32 { 33 33 VERBOSE(VB_PLAYBACK, "VideoOutputNull()"); 34 34 memset(&av_pause_frame, 0, sizeof(av_pause_frame)); -
libs/libmythtv/videooutbase.cpp
7 7 #include "NuppelVideoPlayer.h" 8 8 #include "videodisplayprofile.h" 9 9 #include "decoderbase.h" 10 #include "playsettings.h" 10 11 11 12 #include "mythcontext.h" 12 13 #include "mythverbose.h" … … 107 108 PIPState pipState, 108 109 const QSize &video_dim, float video_aspect, 109 110 WId win_id, const QRect &display_rect, 110 float video_prate, WId embed_id) 111 float video_prate, WId embed_id, 112 PlaySettings *settings) 111 113 { 112 114 (void) codec_priv; 113 115 … … 152 154 QString renderer = QString::null; 153 155 if (renderers.size() > 0) 154 156 { 155 VideoDisplayProfile vprof ;157 VideoDisplayProfile vprof(settings); 156 158 vprof.SetInput(video_dim); 157 159 158 160 QString tmp = vprof.GetVideoRenderer(); … … 180 182 181 183 #ifdef USING_DIRECTFB 182 184 if (renderer == "directfb") 183 vo = new VideoOutputDirectfb( );185 vo = new VideoOutputDirectfb(settings); 184 186 #endif // USING_DIRECTFB 185 187 186 188 #ifdef USING_MINGW 187 189 if (renderer == "direct3d") 188 vo = new VideoOutputD3D( );190 vo = new VideoOutputD3D(settings); 189 191 #endif // USING_MINGW 190 192 191 193 #ifdef Q_OS_MACX 192 194 if (osxlist.contains(renderer)) 193 vo = new VideoOutputQuartz( codec_id, codec_priv);195 vo = new VideoOutputQuartz(settings, codec_id, codec_priv); 194 196 #endif // Q_OS_MACX 195 197 196 198 #ifdef USING_OPENGL_VIDEO 197 199 if (renderer == "opengl") 198 vo = new VideoOutputOpenGL( );200 vo = new VideoOutputOpenGL(settings); 199 201 #endif // USING_OPENGL_VIDEO 200 202 201 203 #ifdef USING_VDPAU 202 204 if (renderer == "vdpau") 203 vo = new VideoOutputVDPAU( codec_id);205 vo = new VideoOutputVDPAU(settings, codec_id); 204 206 #endif // USING_VDPAU 205 207 206 208 #ifdef USING_XV 207 209 if (xvlist.contains(renderer)) 208 vo = new VideoOutputXv( codec_id);210 vo = new VideoOutputXv(settings, codec_id); 209 211 #endif // USING_XV 210 212 211 213 if (vo) … … 302 304 * \brief This constructor for VideoOutput must be followed by an 303 305 * Init(int,int,float,WId,int,int,int,int,WId) call. 304 306 */ 305 VideoOutput::VideoOutput( ) :307 VideoOutput::VideoOutput(PlaySettings *_settings) : 306 308 // DB Settings 307 309 db_display_dim(0,0), 308 310 db_aspectoverride(kAspect_Off), db_adjustfill(kAdjustFill_Off), … … 336 338 display_res(NULL), 337 339 338 340 // Physical display 339 monitor_sz(640,480), monitor_dim(400,300) 341 monitor_sz(640,480), monitor_dim(400,300), 340 342 343 settings(_settings) 344 341 345 { 342 346 bzero(&pip_tmp_image, sizeof(pip_tmp_image)); 343 db_display_dim = QSize( gContext->GetNumSetting("DisplaySizeWidth", 0),344 gContext->GetNumSetting("DisplaySizeHeight", 0));347 db_display_dim = QSize(settings->GetNumSetting("DisplaySizeWidth", 0), 348 settings->GetNumSetting("DisplaySizeHeight", 0)); 345 349 346 350 db_pict_attr[kPictureAttribute_Brightness] = 347 gContext->GetNumSetting("PlaybackBrightness", 50);351 settings->GetNumSetting("PlaybackBrightness", 50); 348 352 db_pict_attr[kPictureAttribute_Contrast] = 349 gContext->GetNumSetting("PlaybackContrast", 50);353 settings->GetNumSetting("PlaybackContrast", 50); 350 354 db_pict_attr[kPictureAttribute_Colour] = 351 gContext->GetNumSetting("PlaybackColour", 50);355 settings->GetNumSetting("PlaybackColour", 50); 352 356 db_pict_attr[kPictureAttribute_Hue] = 353 gContext->GetNumSetting("PlaybackHue", 0);357 settings->GetNumSetting("PlaybackHue", 0); 354 358 355 359 db_aspectoverride = (AspectOverrideMode) 356 gContext->GetNumSetting("AspectOverride", 0);360 settings->GetNumSetting("AspectOverride", 0); 357 361 db_adjustfill = (AdjustFillMode) 358 gContext->GetNumSetting("AdjustFill", 0);362 settings->GetNumSetting("AdjustFill", 0); 359 363 db_letterbox_colour = (LetterBoxColour) 360 gContext->GetNumSetting("LetterboxColour", 0);364 settings->GetNumSetting("LetterboxColour", 0); 361 365 db_use_picture_controls = 362 gContext->GetNumSetting("UseOutputPictureControls", 0);366 settings->GetNumSetting("UseOutputPictureControls", 0); 363 367 364 368 if (!gContext->IsDatabaseIgnored()) 365 db_vdisp_profile = new VideoDisplayProfile( );369 db_vdisp_profile = new VideoDisplayProfile(settings); 366 370 367 windows.push_back(VideoOutWindow( ));371 windows.push_back(VideoOutWindow(settings)); 368 372 } 369 373 370 374 /** … … 433 437 return QString::null; 434 438 } 435 439 436 bool VideoOutput::IsPreferredRenderer(QSize video_size )440 bool VideoOutput::IsPreferredRenderer(QSize video_size, PlaySettings *settings) 437 441 { 438 442 if (!db_vdisp_profile || (video_size == windows[0].GetVideoDispDim())) 439 443 return true; 440 444 441 VideoDisplayProfile vdisp ;445 VideoDisplayProfile vdisp(settings); 442 446 vdisp.SetInput(video_size); 443 447 QString new_rend = vdisp.GetVideoRenderer(); 444 448 if (new_rend.isEmpty()) -
libs/libmythtv/videooutwindow.h
16 16 #include "videoouttypes.h" 17 17 18 18 class NuppelVideoPlayer; 19 class PlaySettings; 19 20 20 21 class VideoOutWindow 21 22 { 22 23 public: 23 VideoOutWindow( );24 VideoOutWindow(PlaySettings *settings); 24 25 25 26 bool Init(const QSize &new_video_dim, float aspect, 26 27 const QRect &new_display_visible_rect, … … 162 163 bool allowpreviewepg; 163 164 PIPState pip_state; 164 165 166 PlaySettings *settings; 167 165 168 // Constants 166 169 static const float kManualZoomMaxHorizontalZoom; 167 170 static const float kManualZoomMaxVerticalZoom; -
libs/libmythtv/videoout_directfb.h
12 12 { 13 13 public: 14 14 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 15 VideoOutputDirectfb( );15 VideoOutputDirectfb(PlaySettings *settings); 16 16 ~VideoOutputDirectfb(); 17 17 18 18 bool Init(int width, int height, float aspect, WId winid, -
libs/libmythtv/playercontext.h
27 27 class LiveTVChain; 28 28 class MythDialog; 29 29 class QPainter; 30 class PlaySettings; 30 31 31 32 typedef enum 32 33 { … … 90 91 void SetRecorder(RemoteEncoder *rec); 91 92 void SetTVChain(LiveTVChain *chain); 92 93 void SetRingBuffer(RingBuffer *buf); 93 void SetPlayingInfo(const ProgramInfo *info );94 void SetPlayingInfo(const ProgramInfo *info, PlaySettings *settings=NULL); 94 95 void SetPlayGroup(const QString &group); 95 96 void SetPseudoLiveTV(const ProgramInfo *pi, PseudoState new_state); 96 97 void SetPIPLocation(int loc) { pipLocation = loc; } … … 145 146 LiveTVChain *tvchain; 146 147 RingBuffer *buffer; 147 148 ProgramInfo *playingInfo; ///< Currently playing info 149 PlaySettings *settings; // corresponding to playingInfo 148 150 long long playingLen; ///< Initial CalculateLength() 149 151 bool nohardwaredecoders; // < Disable use of VDPAU decoding 150 152 bool decoding; ///< Video decoder thread started -
libs/libmythtv/vsync.h
101 101 102 102 // documented in vsync.cpp 103 103 static VideoSync *BestMethod(VideoOutput*, 104 PlaySettings *settings, 104 105 uint frame_interval, uint refresh_interval, 105 106 bool interlaced); 106 107 protected: -
libs/libmythtv/videoout_xv.h
51 51 friend class XvMCOSD; 52 52 public: 53 53 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 54 VideoOutputXv( MythCodecID av_codec_id);54 VideoOutputXv(PlaySettings *settings, MythCodecID av_codec_id); 55 55 ~VideoOutputXv(); 56 56 57 57 bool Init(int width, int height, float aspect, WId winid, … … 109 109 static MythCodecID GetBestSupportedCodec(uint width, uint height, 110 110 uint osd_width, uint osd_height, 111 111 uint stream_type, int xvmc_chroma, 112 bool test_surface, bool force_xv); 112 bool test_surface, bool force_xv, 113 PlaySettings *settings); 113 114 114 115 static int GrabSuitableXvPort(MythXDisplay* disp, Window root, 116 PlaySettings *settings, 115 117 MythCodecID type, 116 118 uint width, uint height, 117 119 bool &xvsetdefaults, -
libs/libmythtv/videoout_xv.cpp
166 166 * \see VideoOutput, VideoBuffers 167 167 * 168 168 */ 169 VideoOutputXv::VideoOutputXv( MythCodecID codec_id)170 : VideoOutput( ),169 VideoOutputXv::VideoOutputXv(PlaySettings *settings, MythCodecID codec_id) 170 : VideoOutput(settings), 171 171 myth_codec_id(codec_id), video_output_subtype(XVUnknown), 172 172 global_lock(QMutex::Recursive), 173 173 … … 408 408 * \return port number if it succeeds, else -1. 409 409 */ 410 410 int VideoOutputXv::GrabSuitableXvPort(MythXDisplay* disp, Window root, 411 PlaySettings *settings, 411 412 MythCodecID mcodecid, 412 413 uint width, uint height, 413 414 bool &xvsetdefaults, … … 492 493 } 493 494 494 495 // figure out if we want chromakeying.. 495 VideoDisplayProfile vdp ;496 VideoDisplayProfile vdp(settings); 496 497 vdp.SetInput(QSize(width, height)); 497 498 bool check_for_colorkey = (vdp.GetOSDRenderer() == "chromakey"); 498 499 … … 785 786 disp->StartLog(); 786 787 QString adaptor_name = QString::null; 787 788 const QSize video_dim = windows[0].GetVideoDim(); 788 xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), mcodecid,789 xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), settings, mcodecid, 789 790 video_dim.width(), video_dim.height(), 790 791 xv_set_defaults, 791 792 xvmc_chroma, &xvmc_surf_info, &adaptor_name); … … 864 865 disp->StartLog(); 865 866 QString adaptor_name = QString::null; 866 867 const QSize video_dim = windows[0].GetVideoDim(); 867 xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), kCodec_MPEG2,868 xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), settings, kCodec_MPEG2, 868 869 video_dim.width(), video_dim.height(), 869 870 xv_set_defaults, 0, NULL, &adaptor_name); 870 871 if (xv_port == -1) … … 1018 1019 uint width, uint height, 1019 1020 uint osd_width, uint osd_height, 1020 1021 uint stream_type, int xvmc_chroma, 1021 bool test_surface, bool force_xv) 1022 bool test_surface, bool force_xv, 1023 PlaySettings *settings) 1022 1024 { 1023 1025 (void)width, (void)height, (void)osd_width, (void)osd_height; 1024 1026 (void)stream_type, (void)xvmc_chroma, (void)test_surface; … … 1029 1031 return ret; 1030 1032 1031 1033 #ifdef USING_XVMC 1032 VideoDisplayProfile vdp ;1034 VideoDisplayProfile vdp(settings); 1033 1035 vdp.SetInput(QSize(width, height)); 1034 1036 QString dec = vdp.GetDecoder(); 1035 1037 if ((dec == "libmpeg2") || (dec == "ffmpeg")) … … 1079 1081 1080 1082 ok = false; 1081 1083 bool dummy; 1082 int port = GrabSuitableXvPort(disp, disp->GetRoot(), ret, width, height, 1084 int port = GrabSuitableXvPort(disp, disp->GetRoot(), settings, 1085 ret, width, height, 1083 1086 dummy, xvmc_chroma, &info); 1084 1087 if (port >= 0) 1085 1088 { -
libs/libmythtv/udpnotify.cpp
31 31 #include "udpnotify.h" 32 32 #include "mythcontext.h" 33 33 #include "mythverbose.h" 34 #include "playsettings.h" 34 35 35 36 UDPNotifyOSDSet::UDPNotifyOSDSet(const QString &name, uint timeout) 36 37 : m_name(name), m_timeout(timeout) … … 73 74 74 75 ///////////////////////////////////////////////////////////////////////// 75 76 76 UDPNotify::UDPNotify(uint udp_port ) :77 UDPNotify::UDPNotify(uint udp_port, PlaySettings *settings) : 77 78 m_socket(new QUdpSocket()), m_db_osd_udpnotify_timeout(5) 78 79 { 79 80 connect(m_socket, SIGNAL(readyRead()), … … 81 82 82 83 m_socket->bind(udp_port); 83 84 84 m_db_osd_udpnotify_timeout = gContext->GetNumSetting("OSDNotifyTimeout", 5);85 m_db_osd_udpnotify_timeout = settings->GetNumSetting("OSDNotifyTimeout", 5); 85 86 } 86 87 87 88 void UDPNotify::deleteLater(void) -
libs/libmythtv/videooutbase.h
29 29 class FilterChain; 30 30 class FilterManager; 31 31 class OpenGLContextGLX; 32 class PlaySettings; 32 33 33 34 typedef QMap<NuppelVideoPlayer*,PIPLocation> PIPMap; 34 35 … … 49 50 PIPState pipState, 50 51 const QSize &video_dim, float video_aspect, 51 52 WId win_id, const QRect &display_rect, 52 float video_prate, WId embed_id); 53 float video_prate, WId embed_id, 54 PlaySettings *settings); 53 55 54 VideoOutput( );56 VideoOutput(PlaySettings *settings); 55 57 virtual ~VideoOutput(); 56 58 57 59 virtual bool Init(int width, int height, float aspect, … … 59 61 int winh, WId embedid = 0); 60 62 virtual void InitOSD(OSD *osd); 61 63 virtual void SetVideoFrameRate(float); 62 virtual bool IsPreferredRenderer(QSize video_size );64 virtual bool IsPreferredRenderer(QSize video_size, PlaySettings *settings); 63 65 virtual bool SetDeinterlacingEnabled(bool); 64 66 virtual bool SetupDeinterlace(bool i, const QString& ovrf=""); 65 67 virtual void FallbackDeint(void); … … 328 330 // Display information 329 331 QSize monitor_sz; 330 332 QSize monitor_dim; 333 334 PlaySettings *settings; 331 335 }; 332 336 333 337 #endif -
libs/libmythtv/textsubtitleparser.cpp
21 21 #include "RingBuffer.h" 22 22 #include "textsubtitleparser.h" 23 23 #include "xine_demux_sputext.h" 24 #include "playsettings.h" 24 25 25 26 bool operator<(const text_subtitle_t& left, 26 27 const text_subtitle_t& right) … … 112 113 m_subtitles.clear(); 113 114 } 114 115 115 bool TextSubtitleParser::LoadSubtitles(QString fileName, TextSubtitles &target) 116 bool TextSubtitleParser::LoadSubtitles(QString fileName, TextSubtitles &target, 117 PlaySettings *settings) 116 118 { 117 119 demux_sputext_t sub_data; 118 120 sub_data.rbuffer = new RingBuffer(fileName, 0, false); … … 130 132 target.SetFrameBasedTiming(!sub_data.uses_time); 131 133 132 134 QTextCodec *textCodec = NULL; 133 QString codec = gContext->GetSetting("SubtitleCodec", "");135 QString codec = settings->GetSetting("SubtitleCodec", ""); 134 136 if (!codec.isEmpty()) 135 137 textCodec = QTextCodec::codecForName(codec.toLatin1()); 136 138 if (!textCodec) -
libs/libmythtv/osd.cpp
32 32 #include "mythverbose.h" 33 33 #include "util.h" 34 34 #include "channelutil.h" 35 #include "playsettings.h" 35 36 36 37 #include "x11colors.h" 37 38 #include "mythdirs.h" … … 42 43 static char *cc708_default_font_names[16]; 43 44 static bool cc708_defaults_initialized = false; 44 45 static QMutex cc708_init_lock; 45 static void initialize_osd_fonts( void);46 static void initialize_osd_fonts(PlaySettings *settings); 46 47 47 48 #define LOC QString("OSD: ") 48 49 #define LOC_ERR QString("OSD, Error: ") … … 58 59 const char *kOSDDialogInfo = "infobox"; 59 60 const char *kOSDDialogEditChannel = "channel_editor"; 60 61 61 OSD::OSD( ) :62 OSD::OSD(PlaySettings *_settings) : 62 63 QObject(), m_listener(NULL), 64 settings(_settings), 63 65 osdBounds(), frameint(0), 64 66 needPillarBox(false), 65 themepath(FindTheme( gContext->GetSetting("OSDTheme"))),67 themepath(FindTheme(settings->GetSetting("OSDTheme", ""))), 66 68 wscale(1.0f), fscale(1.0f), 67 69 m_themeinfo(new ThemeInfo(themepath)), 68 70 m_themeaspect(4.0f/3.0f), … … 172 174 drawSurface = new OSDSurface(osd_bounds.width(), osd_bounds.height()); 173 175 174 176 if (!cc708_defaults_initialized) 175 initialize_osd_fonts( );177 initialize_osd_fonts(settings); 176 178 177 179 for (uint i = 0; i < 16; i++) 178 180 cc708fontnames[i] = cc708_default_font_names[i]; … … 185 187 if (themepath.isEmpty()) 186 188 { 187 189 VERBOSE(VB_IMPORTANT, "Couldn't find OSD theme: " 188 << gContext->GetSetting("OSDTheme"));190 <<settings->GetSetting("OSDTheme", "")); 189 191 InitDefaults(); 190 192 return; 191 193 } … … 194 196 if (!LoadTheme()) 195 197 { 196 198 VERBOSE(VB_IMPORTANT, "Couldn't load OSD theme: " 197 << gContext->GetSetting("OSDTheme")<<" at "<<themepath);199 <<settings->GetSetting("OSDTheme", "")<<" at "<<themepath); 198 200 } 199 201 200 202 InitDefaults(); … … 238 240 QString name = "cc_font"; 239 241 int fontsize = m_themeinfo->BaseRes()->height() / 27; 240 242 241 ccfont = LoadFont( gContext->GetSetting("OSDCCFont"), fontsize);243 ccfont = LoadFont(settings->GetSetting("OSDCCFont", ""), fontsize); 242 244 243 245 if (ccfont) 244 246 fontMap[name] = ccfont; … … 274 276 275 277 OSDTypeCC *ccpage = 276 278 new OSDTypeCC(name, ccfont, sub_xoff, sub_yoff, 277 sub_dispw, sub_disph, wmult, hmult );279 sub_dispw, sub_disph, wmult, hmult, settings); 278 280 container->AddType(ccpage); 279 281 return true; 280 282 } … … 293 295 294 296 // Create fonts... 295 297 TTFFont* ccfonts[48]; 296 uint z = gContext->GetNumSetting("OSDCC708TextZoom", 100) *298 uint z = settings->GetNumSetting("OSDCC708TextZoom", 100) * 297 299 m_themeinfo->BaseRes()->height(); 298 300 uint fontsizes[3] = { z / 3600, z / 2900, z / 2200 }; 299 301 for (uint i = 0; i < 48; i++) … … 360 362 if (!font) 361 363 { 362 364 int fontsize = (size->height() - (2 * safe_y)) / 26; 363 font = LoadFont( gContext->GetSetting("OSDCCFont"), fontsize);365 font = LoadFont(settings->GetSetting("OSDCCFont", ""), fontsize); 364 366 365 367 if (font) 366 368 fontMap[fontname] = font; … … 468 470 TTFFont *font = GetFont(fontname); 469 471 if (!font) 470 472 { 471 font = LoadFont(gContext->GetSetting("OSDCCFont"), SUBTITLE_FONT_SIZE); 473 font = LoadFont(settings->GetSetting("OSDCCFont", ""), 474 SUBTITLE_FONT_SIZE); 472 475 473 476 if (font) 474 477 { … … 536 539 537 540 if (!actfont) 538 541 { 539 actfont = LoadFont( gContext->GetSetting("OSDFont"), 16);542 actfont = LoadFont(settings->GetSetting("OSDFont", ""), 16); 540 543 541 544 if (actfont) 542 545 fontMap["treemenulistfont"] = actfont; … … 684 687 if (dir.exists()) 685 688 { 686 689 VERBOSE(VB_IMPORTANT, QString("Couldn't find OSD theme: %1. " 687 "Switching to default.").arg(gContext->GetSetting("OSDTheme")));688 gContext->OverrideSettingForSession("OSDTheme", "BlackCurves-OSD");690 "Switching to default.").arg(settings->GetSetting("OSDTheme", ""))); 691 settings->OverrideSetting/*ForSession*/("OSDTheme", "BlackCurves-OSD"); 689 692 return testdir; 690 693 } 691 694 … … 852 855 void OSD::parseFont(QDomElement &element) 853 856 { 854 857 QString name; 855 QString fontfile = gContext->GetSetting("OSDFont");858 QString fontfile = settings->GetSetting("OSDFont", ""); 856 859 int size = -1; 857 860 int sizeSmall = -1; 858 861 int sizeBig = -1; … … 930 933 return; 931 934 } 932 935 933 QString fontSizeType = gContext->GetSetting("OSDThemeFontSizeType",936 QString fontSizeType = settings->GetSetting("OSDThemeFontSizeType", 934 937 "default"); 935 938 if (fontSizeType == "small") 936 939 { … … 3111 3114 return QRect(xoffset, yoffset, displaywidth, displayheight); 3112 3115 } 3113 3116 3114 #define OSD_STRDUP(X) strdup( gContext->GetSetting(X).toLocal8Bit().constData())3117 #define OSD_STRDUP(X) strdup(settings->GetSetting(X, "").toLocal8Bit().constData()) 3115 3118 3116 static void initialize_osd_fonts( void)3119 static void initialize_osd_fonts(PlaySettings *settings) 3117 3120 { 3118 3121 QMutexLocker locker(&cc708_init_lock); 3119 3122 if (cc708_defaults_initialized) 3120 3123 return; 3121 3124 cc708_defaults_initialized = true; 3122 3125 3123 QString default_font_type = gContext->GetSetting(3126 QString default_font_type = settings->GetSetting( 3124 3127 "OSDCC708DefaultFontType", "MonoSerif"); 3125 3128 3126 3129 // 0 -
libs/libmythtv/videoout_quartz.h
3 3 4 4 class DVDV; 5 5 struct QuartzData; 6 class PlaySettings; 6 7 7 8 #include "videooutbase.h" 8 9 … … 10 11 { 11 12 public: 12 13 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 13 VideoOutputQuartz(MythCodecID av_codec_id, void *codec_priv); 14 VideoOutputQuartz(PlaySettings *settings, MythCodecID av_codec_id, 15 void *codec_priv); 14 16 ~VideoOutputQuartz(); 15 17 16 18 bool Init(int width, int height, float aspect, WId winid, … … 51 53 static MythCodecID GetBestSupportedCodec( 52 54 uint width, uint height, 53 55 uint osd_width, uint osd_height, 54 uint stream_type, uint fourcc );56 uint stream_type, uint fourcc, PlaySettings *settings); 55 57 virtual bool NeedExtraAudioDecode(void) const 56 58 { return !codec_is_std(myth_codec_id); } 57 59 -
libs/libmythtv/videodisplayprofile.cpp
8 8 #include "mythverbose.h" 9 9 #include "videooutbase.h" 10 10 #include "avformatdecoder.h" 11 #include "playsettings.h" 11 12 12 13 bool ProfileItem::IsMatch(const QSize &size, float rate) const 13 14 { … … 211 212 pref_map_t VideoDisplayProfile::dec_name; 212 213 safe_list_t VideoDisplayProfile::safe_decoders; 213 214 214 VideoDisplayProfile::VideoDisplayProfile( )215 VideoDisplayProfile::VideoDisplayProfile(PlaySettings *settings) 215 216 : lock(QMutex::Recursive), last_size(0,0), last_rate(0.0f), 216 217 last_video_renderer(QString::null) 217 218 { … … 219 220 init_statics(); 220 221 221 222 QString hostname = gContext->GetHostName(); 222 QString cur_profile = GetDefaultProfileName(hostname );223 QString cur_profile = GetDefaultProfileName(hostname, settings); 223 224 uint groupid = GetProfileGroupID(cur_profile, hostname); 224 225 225 226 item_list_t items = LoadDB(groupid); … … 771 772 return list; 772 773 } 773 774 774 QString VideoDisplayProfile::GetDefaultProfileName(const QString &hostname) 775 QString VideoDisplayProfile::GetDefaultProfileName(const QString &hostname, 776 PlaySettings *settings) 775 777 { 776 778 QString tmp = 779 settings ? settings->GetSetting("DefaultVideoPlaybackProfile", "") : 777 780 gContext->GetSettingOnHost("DefaultVideoPlaybackProfile", hostname); 778 781 779 782 QStringList profiles = GetProfiles(hostname); -
libs/libmythtv/udpnotify.h
20 20 class QByteArray; 21 21 class QUdpSocket; 22 22 class QDomElement; 23 class PlaySettings; 23 24 24 25 class UDPNotifyOSDSet 25 26 { … … 54 55 Q_OBJECT 55 56 56 57 public: 57 UDPNotify(uint udp_port );58 UDPNotify(uint udp_port, PlaySettings *settings); 58 59 59 60 signals: 60 61 void AddUDPNotifyEvent(const QString &name, const UDPNotifyOSDSet*); -
libs/libmythtv/videoout_null.h
9 9 { 10 10 public: 11 11 static void GetRenderOptions(render_opts &opts, QStringList &cpudeints); 12 VideoOutputNull( );12 VideoOutputNull(PlaySettings *settings); 13 13 ~VideoOutputNull(); 14 14 15 15 bool Init(int width, int height, float aspect, WId winid, -
libs/libmyth/settings.cpp
235 235 return -1; 236 236 } 237 237 238 QString SelectSetting::GetValueLabel(const QString &value) 239 { 240 selectionList::const_iterator iterValues = values.begin(); 241 selectionList::const_iterator iterLabels = labels.begin(); 242 for (; iterValues != values.end() && iterLabels != labels.end(); 243 ++iterValues, ++iterLabels) 244 { 245 if (*iterValues == value) 246 return *iterLabels; 247 } 248 249 return "???"; 250 } 251 238 252 bool SelectSetting::ReplaceLabel(const QString &new_label, const QString &value) 239 253 { 240 254 int i = getValueIndex(value); … … 299 313 QLabel *label = new QLabel(); 300 314 label->setText(getLabel() + ": "); 301 315 layout->addWidget(label); 316 labelWidget = label; 302 317 } 303 318 304 319 bxwidget = widget; … … 327 342 328 343 widget->setLayout(layout); 329 344 345 setValue(getValue()); 346 330 347 return widget; 331 348 } 332 349 … … 336 353 { 337 354 bxwidget = NULL; 338 355 edit = NULL; 356 labelWidget = NULL; 339 357 } 340 358 } 341 359 … … 373 391 Setting::setHelpText(str); 374 392 } 375 393 394 static void adjustFont(QWidget *widget, bool isDefault) 395 { 396 if (widget) 397 { 398 QFont f = widget->font(); 399 f.setWeight(isDefault ? QFont::Light : QFont::Bold); 400 widget->setFont(f); 401 } 402 } 403 404 void LineEditSetting::setValue(const QString &newValue) 405 { 406 if (adjustOnBlank) 407 { 408 adjustFont(labelWidget, newValue.isEmpty()); 409 adjustFont(edit, newValue.isEmpty()); 410 } 411 Setting::setValue(newValue); 412 } 413 376 414 void BoundedIntegerSetting::setValue(int newValue) 377 415 { 378 416 newValue = std::max(std::min(newValue, max), min); … … 439 477 440 478 SpinBoxSetting::SpinBoxSetting( 441 479 Storage *_storage, int _min, int _max, int _step, 442 bool _allow_single_step, QString _special_value_text) : 480 bool _allow_single_step, QString _special_value_text, 481 bool change_style_on_special) : 443 482 BoundedIntegerSetting(_storage, _min, _max, _step), 444 483 spinbox(NULL), relayEnabled(true), 445 sstep(_allow_single_step), svtext("") 484 sstep(_allow_single_step), svtext(""), labelWidget(NULL), 485 changeOnSpecial(change_style_on_special) 446 486 { 447 487 if (!_special_value_text.isEmpty()) 448 488 svtext = _special_value_text; … … 476 516 QLabel *label = new QLabel(); 477 517 label->setText(getLabel() + ": "); 478 518 layout->addWidget(label); 519 labelWidget = label; 479 520 } 480 521 481 522 bxwidget = widget; … … 506 547 507 548 widget->setLayout(layout); 508 549 550 setValue(intValue()); 551 509 552 return widget; 510 553 } 511 554 … … 515 558 { 516 559 bxwidget = NULL; 517 560 spinbox = NULL; 561 labelWidget = NULL; 518 562 } 519 563 } 520 564 521 565 void SpinBoxSetting::setValue(int newValue) 522 566 { 523 567 newValue = std::max(std::min(newValue, max), min); 568 if (changeOnSpecial) 569 { 570 adjustFont(labelWidget, (newValue == min)); 571 adjustFont(spinbox, (newValue == min)); 572 } 524 573 if (spinbox && (spinbox->value() != newValue)) 525 574 { 526 575 //int old = intValue(); … … 631 680 QLabel *label = new QLabel(); 632 681 label->setText(getLabel() + ": "); 633 682 layout->addWidget(label); 683 labelWidget = label; 634 684 } 635 685 636 686 bxwidget = widget; … … 659 709 cbwidget, SLOT(clear())); 660 710 661 711 if (rw) 712 { 662 713 connect(cbwidget, SIGNAL(editTextChanged(const QString &)), 663 714 this, SLOT(editTextChanged(const QString &))); 715 connect(cbwidget, SIGNAL(editTextChanged(const QString &)), 716 this, SLOT(changeLabel(const QString &))); 717 } 664 718 665 719 if (cg) 666 720 connect(cbwidget, SIGNAL(changeHelpText(QString)), cg, … … 673 727 674 728 widget->setLayout(layout); 675 729 730 setValue(current); 731 676 732 return widget; 677 733 } 678 734 … … 682 738 { 683 739 bxwidget = NULL; 684 740 cbwidget = NULL; 741 labelWidget = NULL; 685 742 } 686 743 } 687 744 … … 717 774 718 775 if (rw) 719 776 { 777 changeLabel(newValue); 720 778 Setting::setValue(newValue); 721 779 if (cbwidget) 722 780 cbwidget->setCurrentIndex(current); … … 727 785 { 728 786 if (cbwidget) 729 787 cbwidget->setCurrentIndex(which); 788 changeLabel(labels[which]); 730 789 SelectSetting::setValue(which); 731 790 } 732 791 733 void ComboBoxSetting::addSelection( 734 const QString &label, QString value, bool select) 792 void ComboBoxSetting::changeLabel(const QString &newLabel) 735 793 { 794 if (changeOnSpecial) 795 { 796 adjustFont(labelWidget, specialLabel == newLabel); 797 adjustFont(cbwidget, specialLabel == newLabel); 798 } 799 } 800 801 void ComboBoxSetting::addSelection(const QString &label, QString value, 802 bool select, bool special_formatting) 803 { 736 804 if ((findSelection(label, value) < 0) && cbwidget) 737 805 { 738 806 cbwidget->insertItem(label); 739 807 } 740 808 809 if (special_formatting) 810 { 811 changeOnSpecial = true; 812 specialLabel = label; 813 } 814 741 815 SelectSetting::addSelection(label, value, select); 742 816 743 817 if (cbwidget && isSet) … … 934 1008 BooleanSetting::setHelpText(str); 935 1009 } 936 1010 1011 QWidget* TristateCheckBoxSetting::configWidget(ConfigurationGroup *cg, 1012 QWidget* parent, 1013 const char* widgetName) { 1014 widget = new MythCheckBox(parent, widgetName, true); 1015 connect(widget, SIGNAL(destroyed(QObject*)), 1016 this, SLOT(widgetDeleted(QObject*))); 1017 1018 widget->setHelpText(getHelpText()); 1019 widget->setText(getLabel()); 1020 widget->setCheckState(tristateValue()); 1021 setValue(tristateValue()); 1022 1023 connect(widget, SIGNAL(stateChanged(int)), 1024 this, SLOT(setValue(int))); 1025 connect(this, SIGNAL(valueChanged(int)), 1026 this, SLOT(relayValueChanged(int))); 1027 1028 if (cg) 1029 connect(widget, SIGNAL(changeHelpText(QString)), cg, 1030 SIGNAL(changeHelpText(QString))); 1031 1032 return widget; 1033 } 1034 1035 void TristateCheckBoxSetting::widgetInvalid(QObject *obj) 1036 { 1037 widget = (widget == obj) ? NULL : widget; 1038 } 1039 1040 void TristateCheckBoxSetting::setEnabled(bool fEnabled) 1041 { 1042 TristateSetting::setEnabled(fEnabled); 1043 if (widget) 1044 widget->setEnabled(fEnabled); 1045 } 1046 1047 void TristateCheckBoxSetting::setHelpText(const QString &str) 1048 { 1049 if (widget) 1050 widget->setHelpText(str); 1051 TristateSetting::setHelpText(str); 1052 } 1053 1054 const char *TristateSetting::kPartiallyCheckedString = "default"; 1055 1056 void TristateCheckBoxSetting::setValue(int check) 1057 { 1058 adjustFont(widget, (check != Qt::Checked && check != Qt::Unchecked)); 1059 TristateSetting::setValue(check); 1060 emit valueChanged(check); 1061 } 1062 1063 void TristateSetting::setValue(int check) 1064 { 1065 if (check == Qt::Checked) 1066 Setting::setValue("1"); 1067 else if (check == Qt::Unchecked) 1068 Setting::setValue("0"); 1069 else 1070 Setting::setValue(kPartiallyCheckedString); 1071 emit valueChanged(check); 1072 } 1073 937 1074 void AutoIncrementDBSetting::Save(QString table) 938 1075 { 939 1076 if (intValue() == 0) … … 1121 1258 addSelection(label, value, select); 1122 1259 } 1123 1260 1261 void ImageSelectSetting::addDefaultSelection(const QString label, 1262 const QString value, 1263 const QString defaultValue, 1264 bool select) 1265 { 1266 for (unsigned i=0; i<values.size(); i++) 1267 { 1268 if (values[i] == defaultValue) 1269 { 1270 changeOnSpecial = true; 1271 specialLabel = label; 1272 images.push_back(new QImage(*images[i])); 1273 addSelection(label, value, select); 1274 return; 1275 } 1276 } 1277 } 1278 1124 1279 ImageSelectSetting::~ImageSelectSetting() 1125 1280 { 1126 1281 Teardown(); … … 1143 1298 bxwidget = NULL; 1144 1299 imagelabel = NULL; 1145 1300 combo = NULL; 1301 labelWidget = NULL; 1146 1302 } 1147 1303 1148 1304 void ImageSelectSetting::imageSet(int num) … … 1190 1346 QLabel *label = new QLabel(); 1191 1347 label->setText(getLabel() + ":"); 1192 1348 layout->addWidget(label); 1349 labelWidget = label; 1193 1350 } 1194 1351 1195 1352 combo = new MythComboBox(false); … … 1236 1393 connect(combo, SIGNAL(highlighted(int)), this, SLOT(imageSet(int))); 1237 1394 connect(combo, SIGNAL(activated(int)), this, SLOT(setValue(int))); 1238 1395 connect(combo, SIGNAL(activated(int)), this, SLOT(imageSet(int))); 1396 connect(combo, SIGNAL(highlighted(const QString &)), 1397 this, SLOT(changeLabel(const QString &))); 1398 connect(combo, SIGNAL(activated(const QString &)), 1399 this, SLOT(changeLabel(const QString &))); 1239 1400 1240 1401 connect(this, SIGNAL(selectionsCleared()), 1241 1402 combo, SLOT(clear())); … … 1246 1407 1247 1408 bxwidget->setLayout(layout); 1248 1409 1410 changeLabel(GetLabel(current)); 1411 1249 1412 return bxwidget; 1250 1413 } 1251 1414 1415 void ImageSelectSetting::changeLabel(const QString &newLabel) 1416 { 1417 if (changeOnSpecial) 1418 { 1419 adjustFont(labelWidget, specialLabel == newLabel); 1420 adjustFont(combo, specialLabel == newLabel); 1421 } 1422 } 1423 1252 1424 void ImageSelectSetting::widgetInvalid(QObject *obj) 1253 1425 { 1254 1426 if (bxwidget == obj) -
libs/libmyth/audiosettings.cpp
6 6 */ 7 7 8 8 #include "audiosettings.h" 9 #include "playsettings.h" 9 10 10 11 // startup_upmixer 11 12 AudioSettings::AudioSettings() : … … 18 19 set_initial_vol(false), 19 20 use_passthru(false), 20 21 source(AUDIOOUTPUT_UNKNOWN), 22 psettings(0), 21 23 upmixer(0) 22 24 { 23 25 } … … 32 34 set_initial_vol(other.set_initial_vol), 33 35 use_passthru(other.use_passthru), 34 36 source(other.source), 37 psettings(other.psettings), 35 38 upmixer(other.upmixer) 36 39 { 37 40 } … … 46 49 AudioOutputSource audio_source, 47 50 bool audio_set_initial_vol, 48 51 bool audio_use_passthru, 52 PlaySettings *_psettings, 49 53 int upmixer_startup) : 50 54 main_device(audio_main_device), 51 55 passthru_device(audio_passthru_device), … … 56 60 set_initial_vol(audio_set_initial_vol), 57 61 use_passthru(audio_use_passthru), 58 62 source(audio_source), 63 psettings(_psettings), 59 64 upmixer(upmixer_startup) 60 65 { 66 if (!psettings) 67 { 68 QString name("Default"); 69 psettings = new PlaySettings(name); 70 } 61 71 } 62 72 63 73 AudioSettings::AudioSettings( … … 66 76 int audio_codec, 67 77 int audio_samplerate, 68 78 bool audio_use_passthru, 79 PlaySettings *_psettings, 69 80 int upmixer_startup) : 70 81 main_device(QString::null), 71 82 passthru_device(QString::null), … … 76 87 set_initial_vol(false), 77 88 use_passthru(audio_use_passthru), 78 89 source(AUDIOOUTPUT_UNKNOWN), 90 psettings(_psettings), 79 91 upmixer(upmixer_startup) 80 92 { 93 if (!psettings) 94 { 95 QString name("Default"); 96 psettings = new PlaySettings(name); 97 } 81 98 } 82 99 100 AudioSettings::AudioSettings( 101 int audio_bits, 102 int audio_channels, 103 int audio_codec, 104 int audio_samplerate, 105 bool audio_use_passthru, 106 int upmixer_startup) : 107 main_device(QString::null), 108 passthru_device(QString::null), 109 bits(audio_bits), 110 channels(audio_channels), 111 codec(audio_codec), 112 samplerate(audio_samplerate), 113 set_initial_vol(false), 114 use_passthru(audio_use_passthru), 115 source(AUDIOOUTPUT_UNKNOWN), 116 psettings(NULL), 117 upmixer(upmixer_startup) 118 { 119 if (!psettings) 120 { 121 QString name("Default"); 122 psettings = new PlaySettings(name); 123 } 124 } 125 83 126 void AudioSettings::FixPassThrough(void) 84 127 { 85 128 if (passthru_device.isEmpty() || passthru_device.toLower() == "default") -
libs/libmyth/audiooutputbase.h
155 155 int orig_config_channels; 156 156 int src_quality; 157 157 158 PlaySettings *psettings; 159 158 160 private: 159 161 // software volume 160 162 template <class AudioDataType> -
libs/libmyth/audiooutputalsa.cpp
8 8 9 9 #include "mythcontext.h" 10 10 #include "audiooutputalsa.h" 11 #include "playsettings.h" 11 12 12 13 #define LOC QString("ALSA: ") 13 14 #define LOC_WARN QString("ALSA, Warning: ") … … 752 753 { 753 754 int volume; 754 755 755 mixer_control = gContext->GetSetting("MixerControl", "PCM");756 mixer_control = psettings->GetSetting("MixerControl", "PCM"); 756 757 757 758 SetupMixer(); 758 759 759 760 if (mixer_handle != NULL && setstartingvolume) 760 761 { 761 volume = gContext->GetNumSetting("MasterMixerVolume", 80);762 volume = psettings->GetNumSetting("MasterMixerVolume", 80); 762 763 SetCurrentVolume("Master", 0, volume); 763 764 SetCurrentVolume("Master", 1, volume); 764 765 765 volume = gContext->GetNumSetting("PCMMixerVolume", 80);766 volume = psettings->GetNumSetting("PCMMixerVolume", 80); 766 767 SetCurrentVolume("PCM", 0, volume); 767 768 SetCurrentVolume("PCM", 1, volume); 768 769 } … … 779 780 { 780 781 int err; 781 782 782 QString alsadevice = gContext->GetSetting("MixerDevice", "default");783 QString alsadevice = psettings->GetSetting("MixerDevice", "default"); 783 784 QString device = alsadevice.remove(QString("ALSA:")); 784 785 785 786 if (mixer_handle != NULL) -
libs/libmyth/audiooutputca.cpp
246 246 247 247 if (internal_vol && set_initial_vol) 248 248 { 249 QString controlLabel = gContext->GetSetting("MixerControl", "PCM");249 QString controlLabel = psettings->GetSetting("MixerControl", "PCM"); 250 250 controlLabel += "MixerVolume"; 251 251 SetCurrentVolume(gContext->GetNumSetting(controlLabel, 80)); 252 252 } -
libs/libmyth/volumebase.cpp
8 8 9 9 #include "volumebase.h" 10 10 #include "mythcontext.h" 11 #include "playsettings.h" 11 12 12 VolumeBase::VolumeBase( ) :13 VolumeBase::VolumeBase(PlaySettings *_settings) : 13 14 internal_vol(false), volume(80), 14 current_mute_state(kMuteOff) 15 current_mute_state(kMuteOff), settings(_settings) 15 16 { 16 17 swvol = swvol_setting = 17 ( gContext->GetSetting("MixerDevice", "default").toLower() == "software");18 (settings->GetSetting("MixerDevice", "default").toLower() == "software"); 18 19 } 19 20 20 21 bool VolumeBase::SWVolume(void) … … 39 40 volume = max(min(value, 100), 0); 40 41 UpdateVolume(); 41 42 42 QString controlLabel = gContext->GetSetting("MixerControl", "PCM");43 QString controlLabel = settings->GetSetting("MixerControl", "PCM"); 43 44 controlLabel += "MixerVolume"; 44 45 gContext->SaveSetting(controlLabel, volume); 45 46 } -
libs/libmyth/settings.h
134 134 135 135 class MPUBLIC LineEditSetting : public Setting 136 136 { 137 Q_OBJECT 138 137 139 protected: 138 LineEditSetting(Storage *_storage, bool readwrite = true) : 140 LineEditSetting(Storage *_storage, bool readwrite = true, 141 bool adjust_on_blank = false) : 139 142 Setting(_storage), bxwidget(NULL), edit(NULL), 140 rw(readwrite), password_echo(false) { } 143 rw(readwrite), password_echo(false), 144 adjustOnBlank(adjust_on_blank), labelWidget(NULL) { } 141 145 142 146 public: 143 147 virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent, … … 159 163 160 164 virtual void setHelpText(const QString &str); 161 165 166 public slots: 167 virtual void setValue(const QString &newValue); 168 162 169 private: 163 170 QWidget *bxwidget; 164 171 MythLineEdit *edit; 165 172 bool rw; 166 173 bool password_echo; 174 bool adjustOnBlank; 175 QWidget *labelWidget; 167 176 }; 168 177 169 178 // TODO: set things up so that setting the value as a string emits … … 219 228 public: 220 229 SpinBoxSetting(Storage *_storage, int min, int max, int step, 221 230 bool allow_single_step = false, 222 QString special_value_text = ""); 231 QString special_value_text = "", 232 bool change_style_on_special = false); 223 233 224 234 virtual QWidget *configWidget(ConfigurationGroup *cg, QWidget *parent, 225 235 const char *widgetName = 0); … … 248 258 bool relayEnabled; 249 259 bool sstep; 250 260 QString svtext; 261 QLabel *labelWidget; 262 bool changeOnSpecial; 251 263 }; 252 264 253 265 class MPUBLIC SelectSetting : public Setting … … 277 289 { return (i < labels.size()) ? labels[i] : QString::null; } 278 290 virtual QString GetValue(uint i) const 279 291 { return (i < values.size()) ? values[i] : QString::null; } 292 virtual QString GetValueLabel(const QString &value); 280 293 281 294 signals: 282 295 void selectionAdded(const QString& label, QString value); … … 318 331 protected: 319 332 ComboBoxSetting(Storage *_storage, bool _rw = false, int _step = 1) : 320 333 SelectSetting(_storage), rw(_rw), 321 bxwidget(NULL), cbwidget(NULL), step(_step) { } 334 bxwidget(NULL), cbwidget(NULL), changeOnSpecial(false), 335 specialLabel(""), labelWidget(NULL), step(_step) { } 322 336 323 337 public: 324 338 virtual void setValue(QString newValue); … … 338 352 public slots: 339 353 void addSelection(const QString &label, 340 354 QString value = QString::null, 341 bool select = false); 355 bool select = false, 356 bool special_formatting = false); 342 357 bool removeSelection(const QString &label, 343 358 QString value = QString::null); 359 virtual void changeLabel(const QString &newValue); 344 360 void editTextChanged(const QString &newText); 345 361 346 362 private: 347 363 bool rw; 348 364 QWidget *bxwidget; 349 365 MythComboBox *cbwidget; 366 bool changeOnSpecial; 367 QString specialLabel; 368 QLabel *labelWidget; 350 369 351 370 protected: 352 371 int step; … … 415 434 ImageSelectSetting(Storage *_storage) : 416 435 SelectSetting(_storage), 417 436 bxwidget(NULL), imagelabel(NULL), combo(NULL), 418 m_hmult(1.0f), m_wmult(1.0f) { } 437 m_hmult(1.0f), m_wmult(1.0f), 438 changeOnSpecial(false), specialLabel(""), labelWidget(NULL) { } 419 439 virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent, 420 440 const char* widgetName = 0); 421 441 virtual void widgetInvalid(QObject *obj); … … 426 446 QImage* image, 427 447 QString value=QString::null, 428 448 bool select=false); 449 virtual void addDefaultSelection(const QString label, 450 const QString value, 451 const QString defaultValue, 452 bool select); 429 453 430 454 protected slots: 431 455 void imageSet(int); 456 void changeLabel(const QString &newLabel); 432 457 433 458 protected: 434 459 void Teardown(void); … … 440 465 QLabel *imagelabel; 441 466 MythComboBox *combo; 442 467 float m_hmult, m_wmult; 468 bool changeOnSpecial; 469 QString specialLabel; 470 QLabel *labelWidget; 443 471 }; 444 472 445 473 class MPUBLIC BooleanSetting : public Setting … … 480 508 MythCheckBox *widget; 481 509 }; 482 510 511 class MPUBLIC TristateSetting : public BooleanSetting 512 { 513 Q_OBJECT 514 515 public: 516 TristateSetting(Storage *_storage) : BooleanSetting(_storage) {} 517 518 Qt::CheckState tristateValue(void) const { 519 if (getValue() == "0") 520 return Qt::Unchecked; 521 if (getValue() == "1") 522 return Qt::Checked; 523 return Qt::PartiallyChecked; 524 } 525 526 static const char *kPartiallyCheckedString; 527 528 public slots: 529 virtual void setValue(/*Qt::CheckState*/int check); 530 531 signals: 532 void valueChanged(int); 533 }; 534 535 class MPUBLIC TristateCheckBoxSetting: public TristateSetting { 536 Q_OBJECT 537 538 public: 539 TristateCheckBoxSetting(Storage *_storage) : 540 TristateSetting(_storage), widget(NULL) { } 541 virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent, 542 const char* widgetName = 0); 543 virtual void widgetInvalid(QObject*); 544 545 virtual void setEnabled(bool b); 546 547 virtual void setHelpText(const QString &str); 548 549 550 public slots: 551 virtual void setValue(/*Qt::CheckState*/int check); 552 virtual void relayValueChanged(int state) { 553 if (widget) 554 widget->setCheckState((Qt::CheckState)state); 555 } 556 557 protected: 558 MythCheckBox *widget; 559 }; 560 483 561 class MPUBLIC PathSetting : public ComboBoxSetting 484 562 { 485 563 public: -
libs/libmyth/audiooutputjack.cpp
211 211 { 212 212 int volume = 100; 213 213 if (set_initial_vol) 214 volume = gContext->GetNumSetting("MasterMixerVolume", 80);214 volume = psettings->GetNumSetting("MasterMixerVolume", 80); 215 215 216 216 JACK_SetAllVolume(audioid, volume); 217 217 } -
libs/libmyth/audiooutputbase.cpp
15 15 #include "audiooutputdigitalencoder.h" 16 16 #include "SoundTouch.h" 17 17 #include "freesurround.h" 18 #include "playsettings.h" 18 19 19 20 #define LOC QString("AO: ") 20 21 #define LOC_ERR QString("AO, ERROR: ") 21 22 22 23 AudioOutputBase::AudioOutputBase(const AudioSettings &settings) : 24 AudioOutput(settings.psettings), 23 25 // protected 24 26 effdsp(0), effdspstretched(0), 25 27 audio_channels(-1), audio_codec(CODEC_ID_NONE), … … 40 42 set_initial_vol(settings.set_initial_vol), 41 43 buffer_output_data_for_use(false), 42 44 45 psettings(settings.psettings), 46 43 47 // private 44 48 need_resampler(false), 45 49 … … 82 86 memset(tmp_buff, 0, sizeof(short) * kAudioTempBufSize); 83 87 memset(&audiotime_updated, 0, sizeof(audiotime_updated)); 84 88 memset(audiobuffer, 0, sizeof(char) * kAudioRingBufferSize); 85 orig_config_channels = gContext->GetNumSetting("MaxChannels", 2);86 src_quality = gContext->GetNumSetting("AudioUpmixType", 2);89 orig_config_channels = psettings->GetNumSetting("MaxChannels", 2); 90 src_quality = psettings->GetNumSetting("AudioUpmixType", 2); 87 91 //Set default upsampling quality to medium if using stereo 88 92 if (orig_config_channels == 2) 89 93 src_quality = 1; 90 94 91 95 // Handle override of SRC quality settings 92 if ( gContext->GetNumSetting("AdvancedAudioSettings", false) &&93 gContext->GetNumSetting("SRCQualityOverride", false))96 if (psettings->GetNumSetting("AdvancedAudioSettings", false) && 97 psettings->GetNumSetting("SRCQualityOverride", false)) 94 98 { 95 src_quality = gContext->GetNumSetting("SRCQuality", 1);99 src_quality = psettings->GetNumSetting("SRCQuality", 1); 96 100 // Extra test to keep backward compatibility with earlier SRC code setting 97 101 if (src_quality > 2) 98 102 src_quality = 2; … … 100 104 } 101 105 102 106 if (!settings.upmixer) 103 configured_audio_channels = gContext->GetNumSetting("AudioDefaultUpmix", false) ? orig_config_channels : 2; 107 configured_audio_channels = 108 psettings->GetNumSetting("AudioDefaultUpmix", false) ? 109 orig_config_channels : 2; 104 110 else 105 111 if (settings.upmixer == 1) 106 112 configured_audio_channels = 2; 107 113 else 108 114 configured_audio_channels = 6; 109 115 110 allow_ac3_passthru = (orig_config_channels > 2) ? gContext->GetNumSetting("AC3PassThru", false) : false; 116 allow_ac3_passthru = 117 (orig_config_channels > 2) ? 118 psettings->GetNumSetting("AC3PassThru", false) : false; 111 119 112 120 // You need to call Reconfigure from your concrete class. 113 121 // Reconfigure(laudio_bits, laudio_channels, … … 192 200 193 201 const AudioSettings settings(audio_bits, source_audio_channels, 194 202 audio_codec, source_audio_samplerate, 195 audio_passthru );203 audio_passthru, psettings); 196 204 Reconfigure(settings); 197 205 return (configured_audio_channels == 6); 198 206 } … … 278 286 killaudio = false; 279 287 pauseaudio = false; 280 288 was_paused = true; 281 internal_vol = gContext->GetNumSetting("MythControlsVolume", 0);289 internal_vol = settings.psettings->GetNumSetting("MythControlsVolume", 0); 282 290 283 291 numlowbuffer = 0; 284 292 … … 377 385 378 386 // Only used for software volume 379 387 if (set_initial_vol && internal_vol) 380 volume = gContext->GetNumSetting("PCMMixerVolume", 80);388 volume = settings.psettings->GetNumSetting("PCMMixerVolume", 80); 381 389 { 382 QString controlLabel = gContext->GetSetting("MixerControl", "PCM"); 390 QString controlLabel = 391 settings.psettings->GetSetting("MixerControl", "PCM"); 383 392 controlLabel += "MixerVolume"; 384 volume = gContext->GetNumSetting(controlLabel, 80);393 volume = settings.psettings->GetNumSetting(controlLabel, 80); 385 394 } 386 395 387 396 SyncVolume(); … … 393 402 if (audio_buffer_unused < 0) 394 403 audio_buffer_unused = 0; 395 404 396 if (! gContext->GetNumSetting("AdvancedAudioSettings", false))405 if (!settings.psettings->GetNumSetting("AdvancedAudioSettings", false)) 397 406 audio_buffer_unused = 0; 398 else if (!gContext->GetNumSetting("AggressiveSoundcardBuffer", false)) 407 else if (!settings.psettings->GetNumSetting("AggressiveSoundcardBuffer", 408 false)) 399 409 audio_buffer_unused = 0; 400 410 401 411 audbuf_timecode = 0; … … 411 421 VERBOSE(VB_AUDIO, LOC + QString("create upmixer")); 412 422 if (configured_audio_channels == 6) 413 423 { 414 surround_mode = gContext->GetNumSetting("AudioUpmixType", 2); 424 surround_mode = 425 settings.psettings->GetNumSetting("AudioUpmixType", 2); 415 426 } 416 427 417 428 upmixer = new FreeSurround( … … 685 696 volume = new_volume; 686 697 if (save) 687 698 { 688 QString controlLabel = gContext->GetSetting("MixerControl", "PCM");699 QString controlLabel = psettings->GetSetting("MixerControl", "PCM"); 689 700 controlLabel += "MixerVolume"; 690 701 gContext->SaveSetting(controlLabel, volume); 691 702 } -
libs/libmyth/audiooutput.cpp
6 6 #include "mythconfig.h" 7 7 #include "audiooutput.h" 8 8 #include "compat.h" 9 #include "playsettings.h" 9 10 10 11 #include "audiooutputnull.h" 11 12 #ifdef USING_MINGW … … 37 38 bool set_initial_vol, bool audio_passthru, 38 39 int upmixer_startup) 39 40 { 41 QString str("Default"); 42 PlaySettings psettings(str); 43 return OpenAudio(main_device, passthru_device, audio_bits, 44 audio_channels, audio_codec, audio_samplerate, 45 source, set_initial_vol, audio_passthru, 46 &psettings, upmixer_startup); 47 } 48 49 AudioOutput *AudioOutput::OpenAudio( 50 const QString &main_device, 51 const QString &passthru_device, 52 int audio_bits, int audio_channels, 53 int audio_codec, int audio_samplerate, 54 AudioOutputSource source, 55 bool set_initial_vol, bool audio_passthru, 56 PlaySettings *psettings, 57 int upmixer_startup) 58 { 40 59 AudioSettings settings( 41 60 main_device, passthru_device, audio_bits, 42 61 audio_channels, audio_codec, audio_samplerate, source, 43 set_initial_vol, audio_passthru, upmixer_startup);62 set_initial_vol, audio_passthru, psettings, upmixer_startup); 44 63 45 64 settings.FixPassThrough(); 46 65 -
libs/libmyth/libmyth.pro
56 56 SOURCES += recordingtypes.cpp remoteutil.cpp 57 57 SOURCES += rawsettingseditor.cpp 58 58 59 HEADERS += playsettings.h 60 SOURCES += playsettings.cpp 61 59 62 # remove when everything is switched to mythui 60 63 SOURCES += virtualkeyboard_qt.cpp 61 64 -
libs/libmyth/audiosettings.h
12 12 13 13 #include "mythexp.h" 14 14 15 class PlaySettings; 16 15 17 typedef enum { 16 18 AUDIOOUTPUT_UNKNOWN, 17 19 AUDIOOUTPUT_VIDEO, … … 34 36 AudioOutputSource audio_source, 35 37 bool audio_set_initial_vol, 36 38 bool audio_use_passthru, 39 PlaySettings *psettings, 37 40 int upmixer_startup = 0); 38 41 39 42 AudioSettings(int audio_bits, … … 41 44 int audio_codec, 42 45 int audio_samplerate, 43 46 bool audio_use_passthru, 47 PlaySettings *psettings, 44 48 int upmixer_startup = 0); 45 49 50 AudioSettings(int audio_bits, 51 int audio_channels, 52 int audio_codec, 53 int audio_samplerate, 54 bool audio_use_passthru, 55 int upmixer_startup = 0); 56 46 57 void FixPassThrough(void); 47 58 void TrimDeviceType(void); 48 59 … … 61 72 bool set_initial_vol; 62 73 bool use_passthru; 63 74 AudioOutputSource source; 75 PlaySettings *psettings; 64 76 int upmixer; 65 77 }; 66 78 -
libs/libmyth/audiooutputoss.cpp
27 27 #include "mythcontext.h" 28 28 #include "audiooutputoss.h" 29 29 #include "util.h" 30 #include "playsettings.h" 30 31 31 32 AudioOutputOSS::AudioOutputOSS(const AudioSettings &settings) : 32 33 AudioOutputBase(settings), … … 316 317 mixerfd = -1; 317 318 int volume = 0; 318 319 319 QString device = gContext->GetSetting("MixerDevice", "/dev/mixer");320 QString device = psettings->GetSetting("MixerDevice", "/dev/mixer"); 320 321 if (device.toLower() == "software") 321 322 return; 322 323 323 324 QByteArray dev = device.toAscii(); 324 325 mixerfd = open(dev.constData(), O_RDONLY); 325 326 326 QString controlLabel = gContext->GetSetting("MixerControl", "PCM");327 QString controlLabel = psettings->GetSetting("MixerControl", "PCM"); 327 328 328 329 if (controlLabel == "Master") 329 330 { … … 344 345 if (set_initial_vol) 345 346 { 346 347 int tmpVol; 347 volume = gContext->GetNumSetting("MasterMixerVolume", 80);348 volume = psettings->GetNumSetting("MasterMixerVolume", 80); 348 349 tmpVol = (volume << 8) + volume; 349 350 int ret = ioctl(mixerfd, MIXER_WRITE(SOUND_MIXER_VOLUME), &tmpVol); 350 351 if (ret < 0) … … 353 354 QString("Error Setting initial Master Volume") + ENO); 354 355 } 355 356 356 volume = gContext->GetNumSetting("PCMMixerVolume", 80);357 volume = psettings->GetNumSetting("PCMMixerVolume", 80); 357 358 tmpVol = (volume << 8) + volume; 358 359 ret = ioctl(mixerfd, MIXER_WRITE(SOUND_MIXER_PCM), &tmpVol); 359 360 if (ret < 0) -
libs/libmyth/volumebase.h
3 3 4 4 #include "mythexp.h" 5 5 6 class PlaySettings; 7 6 8 typedef enum { 7 9 kMuteOff = 0, 8 10 kMuteLeft, … … 13 15 class MPUBLIC VolumeBase 14 16 { 15 17 public: 16 VolumeBase( );18 VolumeBase(PlaySettings *settings); 17 19 virtual ~VolumeBase() {}; 18 20 19 21 void SWVolume(bool set); … … 46 48 MuteState current_mute_state; 47 49 bool swvol; 48 50 bool swvol_setting; 51 PlaySettings *settings; 49 52 50 53 }; 51 54 -
libs/libmyth/mythwidgets.cpp
223 223 else if (action == "DOWN") 224 224 focusNextPrevChild(true); 225 225 else if (action == "LEFT" || action == "RIGHT" || action == "SELECT") 226 toggle(); 226 { 227 if (isTristate()) 228 { 229 Qt::CheckState newState = 230 (Qt::CheckState)(((int)checkState() + 1) % 3); 231 setCheckState(newState); 232 } 233 else 234 toggle(); 235 } 227 236 else 228 237 handled = false; 229 238 } -
libs/libmyth/audiooutput.h
8 8 #include "volumebase.h" 9 9 #include "output.h" 10 10 11 class PlaySettings; 12 11 13 class MPUBLIC AudioOutput : public VolumeBase, public OutputListeners 12 14 { 13 15 public: … … 19 21 int audio_codec, int audio_samplerate, 20 22 AudioOutputSource source, 21 23 bool set_initial_vol, bool audio_passthru, 24 PlaySettings *psettings, 22 25 int upmixer_startup = 0); 26 static AudioOutput *OpenAudio( 27 const QString &audiodevice, 28 const QString &passthrudevice, 29 int audio_bits, int audio_channels, 30 int audio_codec, int audio_samplerate, 31 AudioOutputSource source, 32 bool set_initial_vol, bool audio_passthru, 33 int upmixer_startup = 0); 23 34 24 AudioOutput( ) :25 VolumeBase( ),OutputListeners(),35 AudioOutput(PlaySettings *psettings) : 36 VolumeBase(psettings), OutputListeners(), 26 37 lastError(QString::null), lastWarn(QString::null) {} 27 38 28 39 virtual ~AudioOutput() { }; -
libs/libmyth/mythconfiggroups.cpp
475 475 Configurable *target) 476 476 { 477 477 VerifyLayout(); 478 bool isDuplicate = triggerMap.values().contains(target); 478 479 triggerMap[triggerValue] = target; 479 480 480 481 if (!configStack) … … 484 485 configStack->setSaveAll(isSaveAll); 485 486 } 486 487 487 configStack->addChild(target); 488 // Don't add a target as a child if it has already been added, 489 // otherwise something goes wrong with signals in the child. 490 if (!isDuplicate) 491 configStack->addChild(target); 488 492 } 489 493 490 494 Setting *TriggeredConfigurationGroup::byName(const QString &settingName) -
libs/libmyth/mythwidgets.h
329 329 Q_OBJECT 330 330 331 331 public: 332 MythCheckBox(QWidget *parent = 0, const char *name = "MythCheckBox") 333 : QCheckBox(parent) { setObjectName(name); }; 332 MythCheckBox(QWidget *parent = 0, const char *name = "MythCheckBox", 333 bool isTristate = false) : QCheckBox(parent) 334 { 335 setObjectName(name); 336 setTristate(isTristate); 337 } 334 338 MythCheckBox(const QString &text, 335 QWidget *parent = 0, const char *name = "MythCheckBox") 336 : QCheckBox(text, parent) { setObjectName(name); }; 339 QWidget *parent = 0, const char *name = "MythCheckBox", 340 bool isTristate = false) : QCheckBox(text, parent) 341 { 342 setObjectName(name); 343 setTristate(isTristate); 344 } 337 345 338 346 void setHelpText(const QString&); 339 347 -
libs/libmyth/audiooutputpulse.cpp
547 547 (char*)"under"); 548 548 if (set_initial_vol) 549 549 { 550 int volume = gContext->GetNumSetting("MasterMixerVolume", 80);550 int volume = psettings->GetNumSetting("MasterMixerVolume", 80); 551 551 pa_cvolume_set(&volume_control, audio_channels, 552 552 (float)volume * (float)PA_VOLUME_NORM / 100.0f); 553 553 } -
programs/mythfrontend/globalsettings.cpp
41 41 #include "mythconfig.h" 42 42 #include "mythdirs.h" 43 43 #include "mythuihelper.h" 44 #include "playsettings.h" 44 45 46 #define CREATE_CHECKBOX_SETTING(var, name, settings) \ 47 BooleanSetting *var; \ 48 if ((settings)) \ 49 var = new PlaySettingsCheckBox((name), (settings)); \ 50 else \ 51 var = new HostCheckBox((name)) 52 53 #define CREATE_COMBOBOX_SETTING(var, name, settings) \ 54 ComboBoxSetting *var; \ 55 if ((settings)) \ 56 var = new PlaySettingsComboBox((name), (settings)); \ 57 else \ 58 var = new HostComboBox((name)) 59 60 #define CREATE_COMBOBOX1_SETTING(var, name, settings, arg1) \ 61 ComboBoxSetting *var; \ 62 if ((settings)) \ 63 var = new PlaySettingsComboBox((name), (settings), (arg1)); \ 64 else \ 65 var = new HostComboBox((name), (arg1)) 66 67 #define CREATE_SPINBOX_SETTING(var, name, settings, arg1, arg2, arg3, arg4) \ 68 SpinBoxSetting *var; \ 69 if ((settings)) \ 70 var = new PlaySettingsSpinBox((name), (settings), (arg1), (arg2), (arg3), (arg4)); \ 71 else \ 72 var = new HostSpinBox((name), (arg1), (arg2), (arg3), (arg4)) 73 74 #define CREATE_LINEEDIT_SETTING(var, name, settings) \ 75 LineEditSetting *var; \ 76 if ((settings)) \ 77 var = new PlaySettingsLineEdit((name), (settings), ""); \ 78 else \ 79 var = new HostLineEdit((name)) 80 81 // For PlaySettings, use a SpinBox instead of a Slider so that a 82 // default value can be easily used. 83 #define CREATE_SLIDER_SETTING(var, name, settings, arg1, arg2, arg3) \ 84 BoundedIntegerSetting *var; \ 85 if ((settings)) \ 86 var = new PlaySettingsSpinBox((name), (settings), (arg1), (arg2), (arg3)); \ 87 else \ 88 var = new HostSlider((name), (arg1), (arg2), (arg3)) 89 90 #define CREATE_IMAGESELECT_SETTING(var, name, settings) \ 91 ImageSelectSetting *var; \ 92 if ((settings)) \ 93 var = new PlaySettingsImageSelect((name), (settings)); \ 94 else \ 95 var = new HostImageSelect((name)) 96 97 static Setting *wrap(Setting *obj, PlaySettings *settings, 98 bool twoLineLabel=false) 99 { 100 if (!settings) 101 return obj; 102 103 // Get the setting name 104 PlaySettingsCombinedStorage *storage = 105 dynamic_cast<PlaySettingsCombinedStorage *>(obj); 106 const QString &name = storage->getName(); 107 108 // Get the default value and label. The label is different 109 // from the value for most object types. 110 QString defaultValue = settings->GetSetting(name, "", true); 111 QString defaultLabel(defaultValue); 112 if (dynamic_cast<BooleanSetting *>(obj)) 113 defaultLabel = (defaultValue == "0" || defaultValue.isEmpty() ? 114 QObject::tr("disabled") : QObject::tr("enabled")); 115 if (dynamic_cast<SpinBoxSetting *>(obj) && defaultValue.isEmpty()) 116 defaultLabel = "0"; 117 ComboBoxSetting *cb = dynamic_cast<ComboBoxSetting *>(obj); 118 if (cb) 119 { 120 defaultLabel = cb->GetValueLabel(defaultValue); 121 // Add the default selection to a ComboBox 122 cb->addSelection(QString("(") + QObject::tr("default") + ")", 123 storage->getDefault(), 124 !settings->IsOverridden(name), 125 true); 126 } 127 ImageSelectSetting *is = dynamic_cast<ImageSelectSetting *>(obj); 128 if (is) 129 { 130 defaultLabel = is->GetValueLabel(defaultValue); 131 // Add the default selection to a ImageSelect 132 is->addDefaultSelection(QString("(") + QObject::tr("default") + ")", 133 storage->getDefault(), 134 defaultValue, 135 !settings->IsOverridden(name)); 136 } 137 138 // Change the help text to include the default and its source. 139 QString helpPrefix; 140 if (dynamic_cast<LineEditSetting *>(obj)) 141 helpPrefix = QObject::tr("Leave blank to keep default value"); 142 else 143 helpPrefix = QObject::tr("Override default value"); 144 helpPrefix += " (" + defaultLabel + ") "; 145 QString inheritsFrom = settings->InheritsFrom(name); 146 if (inheritsFrom.isNull()) 147 helpPrefix += QObject::tr("from global settings"); 148 else 149 helpPrefix += QObject::tr("from group") + " " + inheritsFrom; 150 helpPrefix += ". " + obj->getHelpText(); 151 obj->setHelpText(helpPrefix); 152 153 // Change the label to include the default. 154 obj->setLabel(obj->getLabel() + (twoLineLabel ? "\n" : "") + 155 " (" + defaultLabel + ")"); 156 157 return obj; 158 } 159 160 static QString getDefault(Setting *obj) 161 { 162 PlaySettingsCombinedStorage *storage = 163 dynamic_cast<PlaySettingsCombinedStorage *>(obj); 164 if (storage) 165 return storage->getDefault(); 166 else 167 return ""; 168 } 169 45 170 AudioOutputDevice::AudioOutputDevice() : HostComboBox("AudioOutputDevice", true) 46 171 { 47 172 setLabel(QObject::tr("Audio output device")); … … 103 228 setHelpText(desc); 104 229 } 105 230 106 static HostComboBox *MaxAudioChannels()231 static Setting *MaxAudioChannels(PlaySettings *settings) 107 232 { 108 HostComboBox *gc = new HostComboBox("MaxChannels",false);233 CREATE_COMBOBOX_SETTING(gc, "MaxChannels", settings); 109 234 gc->setLabel(QObject::tr("Speakers configuration")); 110 235 gc->addSelection(QObject::tr("Stereo"), "2", true); // default 111 236 gc->addSelection(QObject::tr("5.1"), "6"); 112 237 gc->setHelpText( 113 238 QObject::tr( 114 239 "Set your audio configuration: Stereo or Surround.")); 115 return gc;240 return wrap(gc, settings); 116 241 } 117 242 118 static HostCheckBox *AudioUpmix()243 static Setting *AudioUpmix(PlaySettings *settings) 119 244 { 120 HostCheckBox *gc = new HostCheckBox("AudioDefaultUpmix");245 CREATE_CHECKBOX_SETTING(gc, "AudioDefaultUpmix", settings); 121 246 gc->setLabel(QObject::tr("Upconvert stereo to 5.1 surround")); 122 247 gc->setValue(true); 123 248 gc->setHelpText(QObject::tr("MythTV can upconvert stereo to 5.1 audio. " 124 249 "Set this option to enable it by default. " 125 250 "You can enable or disable the upconversion during playback at anytime.")); 126 return gc;251 return wrap(gc, settings); 127 252 } 128 253 129 static HostComboBox *AudioUpmixType()254 static Setting *AudioUpmixType(PlaySettings *settings) 130 255 { 131 HostComboBox *gc = new HostComboBox("AudioUpmixType",false);256 CREATE_COMBOBOX_SETTING(gc, "AudioUpmixType", settings); 132 257 gc->setLabel(QObject::tr("Upmix")); 133 258 gc->addSelection(QObject::tr("Fastest"), "0", true); // default 134 259 gc->addSelection(QObject::tr("Good"), "1"); … … 137 262 QObject::tr( 138 263 "Set the audio surround upconversion quality. " 139 264 "'Fastest' is the least demanding on the CPU at the expense of quality.")); 140 return gc;265 return wrap(gc, settings); 141 266 } 142 267 143 static HostCheckBox *AdvancedAudioSettings()268 static Setting *AdvancedAudioSettings(PlaySettings *settings) 144 269 { 145 HostCheckBox *gc = new HostCheckBox("AdvancedAudioSettings");270 CREATE_CHECKBOX_SETTING(gc, "AdvancedAudioSettings", settings); 146 271 gc->setLabel(QObject::tr("Advanced Audio Configuration")); 147 272 gc->setValue(false); 148 273 gc->setHelpText(QObject::tr("Enable extra audio settings.")); 149 return gc;274 return wrap(gc, settings); 150 275 } 151 276 152 static HostCheckBox *SRCQualityOverride()277 static Setting *SRCQualityOverride(PlaySettings *settings) 153 278 { 154 HostCheckBox *gc = new HostCheckBox("SRCQualityOverride");279 CREATE_CHECKBOX_SETTING(gc, "SRCQualityOverride", settings); 155 280 gc->setLabel(QObject::tr("Override SRC quality")); 156 281 gc->setValue(false); 157 282 gc->setHelpText(QObject::tr("Override audio sample rate conversion quality")); 158 return gc;283 return wrap(gc, settings); 159 284 } 160 285 161 static HostComboBox *SRCQuality()286 static Setting *SRCQuality(PlaySettings *settings) 162 287 { 163 HostComboBox *gc = new HostComboBox("SRCQuality", false);288 CREATE_COMBOBOX_SETTING(gc, "SRCQuality", settings); 164 289 gc->setLabel(QObject::tr("Sample Rate Conversion")); 165 290 gc->addSelection(QObject::tr("Disabled"), "-1"); 166 291 gc->addSelection(QObject::tr("Fastest"), "0"); … … 170 295 "\"Good\" (default) provides the best compromise between CPU usage " 171 296 "and quality. \"Disabled\" let the audio card handle sample rate conversion. " 172 297 "This only affects non 48kHz PCM audio.")); 173 return gc;298 return wrap(gc, settings); 174 299 } 175 300 176 static HostComboBox *PassThroughOutputDevice()301 static Setting *PassThroughOutputDevice(PlaySettings *settings) 177 302 { 178 HostComboBox *gc = new HostComboBox("PassThruOutputDevice", true);303 CREATE_COMBOBOX1_SETTING(gc, "PassThruOutputDevice", settings, true); 179 304 180 305 gc->setLabel(QObject::tr("Digital output device")); 181 306 gc->addSelection(QObject::tr("Default"), "Default"); … … 193 318 gc->setHelpText(QObject::tr("Audio output device to use for digital audio. Default is the same as Audio output " 194 319 "device. This value is currently only used with ALSA " 195 320 "and DirectX sound output.")); 196 return gc;321 return wrap(gc, settings); 197 322 } 198 323 199 static HostCheckBox *MythControlsVolume()324 static Setting *MythControlsVolume(PlaySettings *settings) 200 325 { 201 HostCheckBox *gc = new HostCheckBox("MythControlsVolume");326 CREATE_CHECKBOX_SETTING(gc, "MythControlsVolume", settings); 202 327 gc->setLabel(QObject::tr("Use internal volume controls")); 203 328 gc->setValue(true); 204 329 gc->setHelpText(QObject::tr("MythTV can control the PCM and master " 205 330 "mixer volume. If you prefer to control the volume externally " 206 331 "(like your amplifier) or use an external mixer " 207 332 "program, disable this option.")); 208 return gc;333 return wrap(gc, settings); 209 334 } 210 335 211 static HostComboBox *MixerDevice()336 static Setting *MixerDevice(PlaySettings *settings) 212 337 { 213 HostComboBox *gc = new HostComboBox("MixerDevice", true);338 CREATE_COMBOBOX1_SETTING(gc, "MixerDevice", settings, true); 214 339 gc->setLabel(QObject::tr("Mixer Device")); 215 340 216 341 #ifdef USING_OSS … … 236 361 "the volume of all audio at the expense of a slight quality loss.")); 237 362 #endif 238 363 239 return gc;364 return wrap(gc, settings); 240 365 } 241 366 242 367 static const char* MixerControlControls[] = { "PCM", 243 368 "Master" }; 244 369 245 static HostComboBox *MixerControl()370 static Setting *MixerControl(PlaySettings *settings) 246 371 { 247 HostComboBox *gc = new HostComboBox("MixerControl", true);372 CREATE_COMBOBOX1_SETTING(gc, "MixerControl", settings, true); 248 373 gc->setLabel(QObject::tr("Mixer Controls")); 249 374 for (unsigned int i = 0; i < sizeof(MixerControlControls) / sizeof(char*); 250 375 ++i) … … 254 379 } 255 380 256 381 gc->setHelpText(QObject::tr("Changing the volume adjusts the selected mixer.")); 257 return gc;382 return wrap(gc, settings); 258 383 } 259 384 260 static HostSlider *MixerVolume()385 static Setting *MixerVolume(PlaySettings *settings) 261 386 { 262 HostSlider *gs = new HostSlider("MasterMixerVolume", 0, 100, 1);387 CREATE_SLIDER_SETTING(gs, "MasterMixerVolume", settings, 0, 100, 1); 263 388 gs->setLabel(QObject::tr("Master Mixer Volume")); 264 389 gs->setValue(70); 265 390 gs->setHelpText(QObject::tr("Initial volume for the Master Mixer. " 266 391 "This affects all sound created by the sound card. " 267 392 "Note: Do not set this too low.")); 268 return gs;393 return wrap(gs, settings); 269 394 } 270 395 271 static HostSlider *PCMVolume()396 static Setting *PCMVolume(PlaySettings *settings) 272 397 { 273 HostSlider *gs = new HostSlider("PCMMixerVolume", 0, 100, 1);398 CREATE_SLIDER_SETTING(gs, "PCMMixerVolume", settings, 0, 100, 1); 274 399 gs->setLabel(QObject::tr("PCM Mixer Volume")); 275 400 gs->setValue(70); 276 401 gs->setHelpText(QObject::tr("Initial volume for PCM output. Using the " … … 278 403 return gs; 279 404 } 280 405 281 static HostCheckBox *IndividualMuteControl()406 static Setting *IndividualMuteControl(PlaySettings *settings) 282 407 { 283 HostCheckBox *gc = new HostCheckBox("IndividualMuteControl");408 CREATE_CHECKBOX_SETTING(gc, "IndividualMuteControl", settings); 284 409 gc->setLabel(QObject::tr("Independent Muting of Left and Right Audio " 285 410 "Channels")); 286 411 gc->setValue(false); … … 289 414 "original language on one channel, and a dubbed " 290 415 "version of the program on the other one. This " 291 416 "modifies the behavior of the Mute key.")); 292 return gc;417 return wrap(gc, settings); 293 418 } 294 419 295 static HostCheckBox *AC3PassThrough()420 static Setting *AC3PassThrough(PlaySettings *settings) 296 421 { 297 HostCheckBox *gc = new HostCheckBox("AC3PassThru");422 CREATE_CHECKBOX_SETTING(gc, "AC3PassThru", settings); 298 423 gc->setLabel(QObject::tr("Dolby Digital")); 299 424 gc->setValue(false); 300 425 gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder supports AC3/Dolby Digital. " 301 426 "You must use a digital connection. Uncheck if using an analog connection.")); 302 return gc;427 return wrap(gc, settings); 303 428 } 304 429 305 static HostCheckBox *DTSPassThrough()430 static Setting *DTSPassThrough(PlaySettings *settings) 306 431 { 307 HostCheckBox *gc = new HostCheckBox("DTSPassThru");432 CREATE_CHECKBOX_SETTING(gc, "DTSPassThru", settings); 308 433 gc->setLabel(QObject::tr("DTS")); 309 434 gc->setValue(false); 310 435 gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder supports DTS. " 311 436 "You must use a digital connection. Uncheck if using an analog connection")); 312 return gc;437 return wrap(gc, settings); 313 438 } 314 439 315 static HostCheckBox *AggressiveBuffer()440 static Setting *AggressiveBuffer(PlaySettings *settings) 316 441 { 317 HostCheckBox *gc = new HostCheckBox("AggressiveSoundcardBuffer");442 CREATE_CHECKBOX_SETTING(gc, "AggressiveSoundcardBuffer", settings); 318 443 gc->setLabel(QObject::tr("Aggressive Sound card Buffering")); 319 444 gc->setValue(false); 320 445 gc->setHelpText(QObject::tr("If enabled, MythTV will pretend to have " … … 324 449 return gc; 325 450 } 326 451 327 static HostCheckBox *DecodeExtraAudio()452 static Setting *DecodeExtraAudio(PlaySettings *settings) 328 453 { 329 HostCheckBox *gc = new HostCheckBox("DecodeExtraAudio");454 CREATE_CHECKBOX_SETTING(gc, "DecodeExtraAudio", settings); 330 455 gc->setLabel(QObject::tr("Extra audio buffering")); 331 456 gc->setValue(true); 332 457 gc->setHelpText(QObject::tr("Enable this setting if MythTV is playing " … … 335 460 "effect on framegrabbers (MPEG-4/RTJPEG). MythTV will " 336 461 "keep extra audio data in its internal buffers to workaround " 337 462 "this bug.")); 338 return gc;463 return wrap(gc, settings); 339 464 } 340 465 341 static HostComboBox *PIPLocationComboBox()466 static Setting *PIPLocationComboBox(PlaySettings *settings) 342 467 { 343 HostComboBox *gc = new HostComboBox("PIPLocation");468 CREATE_COMBOBOX_SETTING(gc, "PIPLocation", settings); 344 469 gc->setLabel(QObject::tr("PIP Video Location")); 345 470 for (uint loc = 0; loc < kPIP_END; ++loc) 346 471 gc->addSelection(toString((PIPLocation) loc), QString::number(loc)); 347 472 gc->setHelpText(QObject::tr("Location of PIP Video window.")); 348 return gc;473 return wrap(gc, settings); 349 474 } 350 475 351 476 static GlobalLineEdit *AllRecGroupPassword() … … 442 567 return gc; 443 568 } 444 569 445 static HostCheckBox *SmartForward()570 static Setting *SmartForward(PlaySettings *settings) 446 571 { 447 HostCheckBox *gc = new HostCheckBox("SmartForward");572 CREATE_CHECKBOX_SETTING(gc, "SmartForward", settings); 448 573 gc->setLabel(QObject::tr("Smart Fast Forwarding")); 449 574 gc->setValue(false); 450 575 gc->setHelpText(QObject::tr("If enabled, then immediately after " 451 576 "rewinding, only skip forward the same amount as " 452 577 "skipping backwards.")); 453 return gc;578 return wrap(gc, settings); 454 579 } 455 580 456 static HostCheckBox *ExactSeeking()581 static Setting *ExactSeeking(PlaySettings *settings) 457 582 { 458 HostCheckBox *gc = new HostCheckBox("ExactSeeking");583 CREATE_CHECKBOX_SETTING(gc, "ExactSeeking", settings); 459 584 gc->setLabel(QObject::tr("Seek to exact frame")); 460 585 gc->setValue(false); 461 586 gc->setHelpText(QObject::tr("If enabled, seeking is frame exact, but " 462 587 "slower.")); 463 return gc;588 return wrap(gc, settings); 464 589 } 465 590 466 591 static GlobalComboBox *CommercialSkipMethod() … … 478 603 return bc; 479 604 } 480 605 481 static HostComboBox *AutoCommercialSkip()606 static Setting *AutoCommercialSkip(PlaySettings *settings) 482 607 { 483 HostComboBox *gc = new HostComboBox("AutoCommercialSkip");608 CREATE_COMBOBOX_SETTING(gc, "AutoCommercialSkip", settings); 484 609 gc->setLabel(QObject::tr("Automatically Skip Commercials")); 485 610 gc->addSelection(QObject::tr("Off"), "0"); 486 611 gc->addSelection(QObject::tr("Notify, but do not skip"), "2"); … … 489 614 "have been flagged during Automatic Commercial Flagging " 490 615 "or by the mythcommflag program, or just notify that a " 491 616 "commercial has been detected.")); 492 return gc;617 return wrap(gc, settings); 493 618 } 494 619 495 620 static GlobalCheckBox *AutoCommercialFlag() … … 574 699 return bc; 575 700 } 576 701 577 static HostSpinBox *CommRewindAmount()702 static Setting *CommRewindAmount(PlaySettings *settings) 578 703 { 579 HostSpinBox *gs = new HostSpinBox("CommRewindAmount", 0, 10, 1);704 CREATE_SPINBOX_SETTING(gs, "CommRewindAmount", settings, 0, 10, 1, false); 580 705 gs->setLabel(QObject::tr("Commercial Skip Auto-Rewind Amount")); 581 706 gs->setHelpText(QObject::tr("If set, MythTV will automatically rewind " 582 707 "this many seconds after performing a commercial skip.")); 583 708 gs->setValue(0); 584 return gs;709 return wrap(gs, settings); 585 710 } 586 711 587 static HostSpinBox *CommNotifyAmount()712 static Setting *CommNotifyAmount(PlaySettings *settings) 588 713 { 589 HostSpinBox *gs = new HostSpinBox("CommNotifyAmount", 0, 10, 1);714 CREATE_SPINBOX_SETTING(gs, "CommNotifyAmount", settings, 0, 10, 1, false); 590 715 gs->setLabel(QObject::tr("Commercial Skip Notify Amount")); 591 716 gs->setHelpText(QObject::tr("If set, MythTV will act like a commercial " 592 717 "begins this many seconds early. This can be useful " 593 718 "when commercial notification is used in place of " 594 719 "automatic skipping.")); 595 720 gs->setValue(0); 596 return gs;721 return wrap(gs, settings); 597 722 } 598 723 599 724 static GlobalSpinBox *MaximumCommercialSkip() … … 1383 1508 labels[j]->setValue(label_i); 1384 1509 } 1385 1510 1386 PlaybackProfileConfigs::PlaybackProfileConfigs(const QString &str) : 1511 PlaybackProfileConfigs::PlaybackProfileConfigs(const QString &str, 1512 PlaySettings *settings) : 1387 1513 TriggeredConfigurationGroup(false, true, true, true, 1388 1514 false, false, true, true), grouptrigger(NULL) 1389 1515 { 1390 1516 setLabel(QObject::tr("Playback Profiles") + str); 1517 if (settings) 1518 setLabel(QObject::tr("Playback group settings for ") + 1519 settings->mGroupName + " - " + 1520 getLabel()); 1391 1521 1392 1522 QString host = gContext->GetHostName(); 1393 1523 QStringList profiles = VideoDisplayProfile::GetProfiles(host); … … 1415 1545 profiles = VideoDisplayProfile::GetProfiles(host); 1416 1546 } 1417 1547 1418 QString profile = VideoDisplayProfile::GetDefaultProfileName(host );1548 QString profile = VideoDisplayProfile::GetDefaultProfileName(host, settings); 1419 1549 if (!profiles.contains(profile)) 1420 1550 { 1421 1551 profile = (profiles.contains("Normal")) ? "Normal" : profiles[0]; 1422 1552 VideoDisplayProfile::SetDefaultProfileName(profile, host); 1423 1553 } 1424 1554 1425 grouptrigger = new HostComboBox("DefaultVideoPlaybackProfile"); 1555 CREATE_COMBOBOX_SETTING(gs, "DefaultVideoPlaybackProfile", settings); 1556 grouptrigger = gs; 1426 1557 grouptrigger->setLabel(QObject::tr("Current Video Playback Profile")); 1427 1558 QStringList::const_iterator it; 1428 1559 for (it = profiles.begin(); it != profiles.end(); ++it) 1429 1560 grouptrigger->addSelection(ProgramInfo::i18n(*it), *it); 1561 if (settings) 1562 { 1563 addChild(wrap(grouptrigger, settings)); 1564 return; 1565 } 1430 1566 1431 1567 HorizontalConfigurationGroup *grp = 1432 1568 new HorizontalConfigurationGroup(false, false, true, true); … … 1559 1695 return gc; 1560 1696 } 1561 1697 1562 static HostSpinBox *FFRewReposTime()1698 static Setting *FFRewReposTime(PlaySettings *settings) 1563 1699 { 1564 HostSpinBox *gs = new HostSpinBox("FFRewReposTime", 0, 200, 5);1700 CREATE_SPINBOX_SETTING(gs, "FFRewReposTime", settings, 0, 200, 5, false); 1565 1701 gs->setLabel(QObject::tr("Fast forward/rewind reposition amount")); 1566 1702 gs->setValue(100); 1567 1703 gs->setHelpText(QObject::tr("When exiting sticky keys fast forward/rewind " … … 1569 1705 "resuming normal playback. This " 1570 1706 "compensates for the reaction time between seeing " 1571 1707 "where to resume playback and actually exiting seeking.")); 1572 return gs;1708 return wrap(gs, settings); 1573 1709 } 1574 1710 1575 static HostCheckBox *FFRewReverse()1711 static Setting *FFRewReverse(PlaySettings *settings) 1576 1712 { 1577 HostCheckBox *gc = new HostCheckBox("FFRewReverse");1713 CREATE_CHECKBOX_SETTING(gc, "FFRewReverse", settings); 1578 1714 gc->setLabel(QObject::tr("Reverse direction in fast forward/rewind")); 1579 1715 gc->setValue(true); 1580 1716 gc->setHelpText(QObject::tr("If enabled, pressing the sticky rewind key " … … 1582 1718 "vice versa. If disabled, it will decrease the " 1583 1719 "current speed or switch to play mode if " 1584 1720 "the speed can't be decreased further.")); 1585 return gc;1721 return wrap(gc, settings); 1586 1722 } 1587 1723 1588 static HostSpinBox *OSDGeneralTimeout()1724 static Setting *OSDGeneralTimeout(PlaySettings *settings) 1589 1725 { 1590 HostSpinBox *gs = new HostSpinBox("OSDGeneralTimeout", 1, 30, 1);1726 CREATE_SPINBOX_SETTING(gs, "OSDGeneralTimeout", settings, 1, 30, 1, false); 1591 1727 gs->setLabel(QObject::tr("General OSD time-out (sec)")); 1592 1728 gs->setValue(2); 1593 1729 gs->setHelpText(QObject::tr("Length of time an on-screen display " 1594 1730 "window will be visible.")); 1595 return gs;1731 return wrap(gs, settings); 1596 1732 } 1597 1733 1598 static HostSpinBox *OSDProgramInfoTimeout()1734 static Setting *OSDProgramInfoTimeout(PlaySettings *settings) 1599 1735 { 1600 HostSpinBox *gs = new HostSpinBox("OSDProgramInfoTimeout", 1, 30, 1); 1736 CREATE_SPINBOX_SETTING(gs, "OSDProgramInfoTimeout", settings, 1737 1, 30, 1, false); 1601 1738 gs->setLabel(QObject::tr("Program Info OSD time-out")); 1602 1739 gs->setValue(3); 1603 1740 gs->setHelpText(QObject::tr("Length of time the on-screen display " 1604 1741 "will display program information.")); 1605 return gs;1742 return wrap(gs, settings); 1606 1743 } 1607 1744 1608 static HostSpinBox *OSDNotifyTimeout()1745 static Setting *OSDNotifyTimeout(PlaySettings *settings) 1609 1746 { 1610 HostSpinBox *gs = new HostSpinBox("OSDNotifyTimeout", 1, 30, 1);1747 CREATE_SPINBOX_SETTING(gs, "OSDNotifyTimeout", settings, 1, 30, 1, false); 1611 1748 gs->setLabel(QObject::tr("UDP Notify OSD time-out")); 1612 1749 gs->setValue(5); 1613 1750 gs->setHelpText(QObject::tr("How many seconds an on-screen display " 1614 1751 "will be active for UDP Notify events.")); 1615 return gs;1752 return wrap(gs, settings); 1616 1753 } 1617 1754 1618 1755 static HostSpinBox *ThemeCacheSize() … … 1656 1793 return gc; 1657 1794 } 1658 1795 1659 static HostComboBox *OSDFont()1796 static Setting *OSDFont(PlaySettings *settings) 1660 1797 { 1661 HostComboBox *gc = new HostComboBox("OSDFont");1798 CREATE_COMBOBOX_SETTING(gc, "OSDFont", settings); 1662 1799 gc->setLabel(QObject::tr("OSD font")); 1663 1800 QDir ttf(GetFontsDir(), GetFontsNameFilter()); 1664 1801 gc->fillSelectionsFromDir(ttf, false); … … 1666 1803 if (gc->findSelection(defaultOSDFont) > -1) 1667 1804 gc->setValue(defaultOSDFont); 1668 1805 1669 return gc;1806 return wrap(gc, settings); 1670 1807 } 1671 1808 1672 static HostComboBox *OSDCCFont()1809 static Setting *OSDCCFont(PlaySettings *settings) 1673 1810 { 1674 HostComboBox *gc = new HostComboBox("OSDCCFont");1811 CREATE_COMBOBOX_SETTING(gc, "OSDCCFont", settings); 1675 1812 gc->setLabel(QObject::tr("CC font")); 1676 1813 QDir ttf(GetFontsDir(), GetFontsNameFilter()); 1677 1814 gc->fillSelectionsFromDir(ttf, false); 1678 1815 gc->setHelpText(QObject::tr("Closed Caption font")); 1679 1816 1680 return gc;1817 return wrap(gc, settings); 1681 1818 } 1682 1819 1683 1820 static HostComboBox __attribute__ ((unused)) *DecodeVBIFormat() … … 1698 1835 return gc; 1699 1836 } 1700 1837 1701 static HostSpinBox *OSDCC708TextZoomPercentage(void)1838 static Setting *OSDCC708TextZoomPercentage(PlaySettings *settings) 1702 1839 { 1703 HostSpinBox *gs = new HostSpinBox("OSDCC708TextZoom", 50, 200, 5); 1840 CREATE_SPINBOX_SETTING(gs, "OSDCC708TextZoom", settings, 1841 50, 200, 5, false); 1704 1842 gs->setLabel(QObject::tr("Text zoom percentage")); 1705 1843 gs->setValue(100); 1706 1844 gs->setHelpText(QObject::tr("Use this to enlarge or shrink captions.")); 1707 1845 1708 return gs;1846 return wrap(gs, settings); 1709 1847 } 1710 1848 1711 static HostComboBox *OSDCC708DefaultFontType(void)1849 static Setting *OSDCC708DefaultFontType(PlaySettings *settings) 1712 1850 { 1713 HostComboBox *hc = new HostComboBox("OSDCC708DefaultFontType");1851 CREATE_COMBOBOX_SETTING(hc, "OSDCC708DefaultFontType", settings); 1714 1852 hc->setLabel(QObject::tr("Default Caption Font Type")); 1715 1853 hc->setHelpText( 1716 1854 QObject::tr("This allows you to set which font type to use " … … 1733 1871 }; 1734 1872 for (uint i = 0; i < 7; ++i) 1735 1873 hc->addSelection(typeNames[i], types[i]); 1736 return hc;1874 return wrap(hc, settings); 1737 1875 } 1738 1876 1739 static VerticalConfigurationGroup *OSDCC708Settings( void)1877 static VerticalConfigurationGroup *OSDCC708Settings(PlaySettings *settings) 1740 1878 { 1741 1879 VerticalConfigurationGroup *grp = 1742 1880 new VerticalConfigurationGroup(false, true, true, true); 1743 1881 grp->setLabel(QObject::tr("ATSC Caption Settings")); 1882 if (settings) 1883 grp->setLabel(QObject::tr("Playback group settings for ") + 1884 settings->mGroupName + " - " + 1885 grp->getLabel()); 1744 1886 1745 1887 // default text zoom 1.0 1746 grp->addChild(OSDCC708TextZoomPercentage( ));1888 grp->addChild(OSDCC708TextZoomPercentage(settings)); 1747 1889 1748 1890 // force X lines of captions 1749 1891 // force caption character color … … 1752 1894 // force background opacity 1753 1895 1754 1896 // set default font type 1755 grp->addChild(OSDCC708DefaultFontType( ));1897 grp->addChild(OSDCC708DefaultFontType(settings)); 1756 1898 1757 1899 return grp; 1758 1900 } 1759 1901 1760 static HostComboBox*OSDCC708Font(1902 static Setting *OSDCC708Font( 1761 1903 const QString &subtype, const QString &subtypeName, 1762 const QString &subtypeNameForHelp )1904 const QString &subtypeNameForHelp, PlaySettings *settings) 1763 1905 { 1764 HostComboBox *gc = new HostComboBox(1765 QString("OSDCC708%1Font").arg(subtype));1906 CREATE_COMBOBOX_SETTING(gc, QString("OSDCC708%1Font").arg(subtype), 1907 settings); 1766 1908 1767 1909 gc->setLabel(subtypeName); 1768 1910 QDir ttf(GetFontsDir(), GetFontsNameFilter()); … … 1770 1912 gc->setHelpText( 1771 1913 QObject::tr("ATSC %1 closed caption font.").arg(subtypeNameForHelp)); 1772 1914 1773 return gc;1915 return wrap(gc, settings, (subtypeName.length() > 10)); 1774 1916 } 1775 1917 1776 static HorizontalConfigurationGroup *OSDCC708Fonts( void)1918 static HorizontalConfigurationGroup *OSDCC708Fonts(PlaySettings *settings) 1777 1919 { 1778 1920 HorizontalConfigurationGroup *grpmain = 1779 1921 new HorizontalConfigurationGroup(false, true, true, true); 1780 1922 grpmain->setLabel(QObject::tr("ATSC Caption Fonts")); 1923 if (settings) 1924 grpmain->setLabel(QObject::tr("Playback group settings for ") + 1925 settings->mGroupName + " - " + 1926 grpmain->getLabel()); 1781 1927 VerticalConfigurationGroup *col[] = 1782 1928 { 1783 1929 new VerticalConfigurationGroup(false, false, true, true), … … 1813 1959 for (uint j = 0; j < 7; ++j) 1814 1960 { 1815 1961 col[i]->addChild(OSDCC708Font(subtypes[i].arg(types[j]), 1816 typeNames[j], typeNames[j])); 1962 typeNames[j], typeNames[j], 1963 settings)); 1817 1964 } 1818 1965 grpmain->addChild(col[i]); 1819 1966 1820 1967 i = 1; 1821 1968 for (uint j = 0; j < 7; ++j) 1822 1969 { 1823 col[i]->addChild(OSDCC708Font( 1824 subtypes[i].arg(types[j]), "", 1825 QObject::tr("Italic") + ' ' + typeNames[j])); 1970 col[i]->addChild(OSDCC708Font(subtypes[i].arg(types[j]), 1971 (settings ? typeNames[j] : ""), 1972 QObject::tr("Italic") + ' ' + typeNames[j], 1973 settings)); 1826 1974 } 1827 1975 1828 1976 grpmain->addChild(col[i]); … … 1830 1978 return grpmain; 1831 1979 } 1832 1980 1833 static HostComboBox *SubtitleCodec()1981 static Setting *SubtitleCodec(PlaySettings *settings) 1834 1982 { 1835 HostComboBox *gc = new HostComboBox("SubtitleCodec");1983 CREATE_COMBOBOX_SETTING(gc, "SubtitleCodec", settings); 1836 1984 1837 1985 gc->setLabel(QObject::tr("Subtitle Codec")); 1838 1986 QList<QByteArray> list = QTextCodec::availableCodecs(); … … 1842 1990 gc->addSelection(val, val, val.toLower() == "utf-8"); 1843 1991 } 1844 1992 1845 return gc;1993 return wrap(gc, settings); 1846 1994 } 1847 1995 1848 static HorizontalConfigurationGroup *ExternalSubtitleSettings( )1996 static HorizontalConfigurationGroup *ExternalSubtitleSettings(PlaySettings *settings) 1849 1997 { 1850 1998 HorizontalConfigurationGroup *grpmain = 1851 1999 new HorizontalConfigurationGroup(false, true, true, true); 1852 2000 1853 2001 grpmain->setLabel(QObject::tr("External Subtitle Settings")); 1854 2002 1855 grpmain->addChild(SubtitleCodec( ));2003 grpmain->addChild(SubtitleCodec(settings)); 1856 2004 1857 2005 return grpmain; 1858 2006 } 1859 2007 1860 static HostComboBox *OSDThemeFontSizeType()2008 static Setting *OSDThemeFontSizeType(PlaySettings *settings) 1861 2009 { 1862 HostComboBox *gc = new HostComboBox("OSDThemeFontSizeType");2010 CREATE_COMBOBOX_SETTING(gc, "OSDThemeFontSizeType", settings); 1863 2011 gc->setLabel(QObject::tr("Font size")); 1864 2012 gc->addSelection(QObject::tr("default"), "default"); 1865 2013 gc->addSelection(QObject::tr("small"), "small"); 1866 2014 gc->addSelection(QObject::tr("big"), "big"); 1867 2015 gc->setHelpText(QObject::tr("default: TV, small: monitor, big:")); 1868 return gc;2016 return wrap(gc, settings); 1869 2017 } 1870 2018 1871 2019 static HostComboBox *ChannelOrdering() … … 1877 2025 return gc; 1878 2026 } 1879 2027 1880 static HostSpinBox *VertScanPercentage()2028 static Setting *VertScanPercentage(PlaySettings *settings) 1881 2029 { 1882 HostSpinBox *gs = new HostSpinBox("VertScanPercentage", -100, 100, 1); 2030 CREATE_SPINBOX_SETTING(gs, "VertScanPercentage", settings, 2031 -100, 100, 1, false); 1883 2032 gs->setLabel(QObject::tr("Vertical scaling")); 1884 2033 gs->setValue(0); 1885 2034 gs->setHelpText(QObject::tr( 1886 2035 "Adjust this if the image does not fill your " 1887 2036 "screen vertically. Range -100% to 100%")); 1888 return gs;2037 return wrap(gs, settings); 1889 2038 } 1890 2039 1891 static HostSpinBox *HorizScanPercentage()2040 static Setting *HorizScanPercentage(PlaySettings *settings) 1892 2041 { 1893 HostSpinBox *gs = new HostSpinBox("HorizScanPercentage", -100, 100, 1); 2042 CREATE_SPINBOX_SETTING(gs, "HorizScanPercentage", settings, 2043 -100, 100, 1, false); 1894 2044 gs->setLabel(QObject::tr("Horizontal scaling")); 1895 2045 gs->setValue(0); 1896 2046 gs->setHelpText(QObject::tr( 1897 2047 "Adjust this if the image does not fill your " 1898 2048 "screen horizontally. Range -100% to 100%")); 1899 return gs;2049 return wrap(gs, settings); 1900 2050 }; 1901 2051 1902 static HostSpinBox *XScanDisplacement()2052 static Setting *XScanDisplacement(PlaySettings *settings) 1903 2053 { 1904 HostSpinBox *gs = new HostSpinBox("XScanDisplacement", -50, 50, 1); 2054 CREATE_SPINBOX_SETTING(gs, "XScanDisplacement", settings, 2055 -50, 50, 1, false); 1905 2056 gs->setLabel(QObject::tr("Scan displacement (X)")); 1906 2057 gs->setValue(0); 1907 2058 gs->setHelpText(QObject::tr("Adjust this to move the image horizontally.")); 1908 return gs;2059 return wrap(gs, settings); 1909 2060 } 1910 2061 1911 static HostSpinBox *YScanDisplacement()2062 static Setting *YScanDisplacement(PlaySettings *settings) 1912 2063 { 1913 HostSpinBox *gs = new HostSpinBox("YScanDisplacement", -50, 50, 1); 2064 CREATE_SPINBOX_SETTING(gs, "YScanDisplacement", settings, 2065 -50, 50, 1, false); 1914 2066 gs->setLabel(QObject::tr("Scan displacement (Y)")); 1915 2067 gs->setValue(0); 1916 2068 gs->setHelpText(QObject::tr("Adjust this to move the image vertically.")); 1917 return gs;2069 return wrap(gs, settings); 1918 2070 }; 1919 2071 1920 2072 static HostCheckBox *AlwaysStreamFiles() … … 1930 2082 return gc; 1931 2083 } 1932 2084 1933 static HostCheckBox *CCBackground()2085 static Setting *CCBackground(PlaySettings *settings) 1934 2086 { 1935 HostCheckBox *gc = new HostCheckBox("CCBackground");2087 CREATE_CHECKBOX_SETTING(gc, "CCBackground", settings); 1936 2088 gc->setLabel(QObject::tr("Black background for closed captioning")); 1937 2089 gc->setValue(false); 1938 2090 gc->setHelpText(QObject::tr( 1939 2091 "If enabled, captions will be displayed " 1940 2092 "as white text over a black background " 1941 2093 "for better contrast.")); 1942 return gc;2094 return wrap(gc, settings); 1943 2095 } 1944 2096 1945 static HostCheckBox *DefaultCCMode()2097 static Setting *DefaultCCMode(PlaySettings *settings) 1946 2098 { 1947 HostCheckBox *gc = new HostCheckBox("DefaultCCMode");2099 CREATE_CHECKBOX_SETTING(gc, "DefaultCCMode", settings); 1948 2100 gc->setLabel(QObject::tr("Always display closed captioning or subtitles")); 1949 2101 gc->setValue(false); 1950 2102 gc->setHelpText(QObject::tr( … … 1952 2104 "when playing back recordings or watching " 1953 2105 "live TV. Closed Captioning can be turned on or off " 1954 2106 "by pressing \"T\" during playback.")); 1955 return gc;2107 return wrap(gc, settings); 1956 2108 } 1957 2109 1958 static HostCheckBox *PreferCC708()2110 static Setting *PreferCC708(PlaySettings *settings) 1959 2111 { 1960 HostCheckBox *gc = new HostCheckBox("Prefer708Captions");2112 CREATE_CHECKBOX_SETTING(gc, "Prefer708Captions", settings); 1961 2113 gc->setLabel(QObject::tr("Prefer EIA-708 over EIA-608 captions")); 1962 2114 gc->setValue(true); 1963 2115 gc->setHelpText( … … 1965 2117 "When enabled the new EIA-708 captions will be preferred over " 1966 2118 "the old EIA-608 captions in ATSC streams.")); 1967 2119 1968 return gc;2120 return wrap(gc, settings); 1969 2121 } 1970 2122 1971 static HostCheckBox *EnableMHEG()2123 static Setting *EnableMHEG(PlaySettings *settings) 1972 2124 { 1973 HostCheckBox *gc = new HostCheckBox("EnableMHEG");2125 CREATE_CHECKBOX_SETTING(gc, "EnableMHEG", settings); 1974 2126 gc->setLabel(QObject::tr("Enable Interactive TV")); 1975 2127 gc->setValue(false); 1976 2128 gc->setHelpText(QObject::tr( 1977 2129 "If enabled, interactive TV applications (MHEG) will " 1978 2130 "be activated. This is used for teletext and logos for " 1979 2131 "radio and channels that are currently off-air.")); 1980 return gc;2132 return wrap(gc, settings); 1981 2133 } 1982 2134 1983 static HostCheckBox *PersistentBrowseMode()2135 static Setting *PersistentBrowseMode(PlaySettings *settings) 1984 2136 { 1985 HostCheckBox *gc = new HostCheckBox("PersistentBrowseMode");2137 CREATE_CHECKBOX_SETTING(gc, "PersistentBrowseMode", settings); 1986 2138 gc->setLabel(QObject::tr("Always use Browse mode in LiveTV")); 1987 2139 gc->setValue(true); 1988 2140 gc->setHelpText( 1989 2141 QObject::tr( 1990 2142 "If enabled, Browse mode will automatically be activated " 1991 2143 "whenever you use Channel UP/DOWN while watching Live TV.")); 1992 return gc;2144 return wrap(gc, settings); 1993 2145 } 1994 2146 1995 static HostCheckBox *BrowseAllTuners()2147 static Setting *BrowseAllTuners(PlaySettings *settings) 1996 2148 { 1997 HostCheckBox *gc = new HostCheckBox("BrowseAllTuners");2149 CREATE_CHECKBOX_SETTING(gc, "BrowseAllTuners", settings); 1998 2150 gc->setLabel(QObject::tr("Browse all channels")); 1999 2151 gc->setValue(false); 2000 2152 gc->setHelpText( … … 2002 2154 "If enabled, browse mode will shows channels on all " 2003 2155 "available recording devices, instead of showing " 2004 2156 "channels on just the current recorder.")); 2005 return gc;2157 return wrap(gc, settings); 2006 2158 } 2007 2159 2008 static HostCheckBox *ClearSavedPosition()2160 static Setting *ClearSavedPosition(PlaySettings *settings) 2009 2161 { 2010 HostCheckBox *gc = new HostCheckBox("ClearSavedPosition");2162 CREATE_CHECKBOX_SETTING(gc, "ClearSavedPosition", settings); 2011 2163 gc->setLabel(QObject::tr("Clear bookmark on playback")); 2012 2164 gc->setValue(true); 2013 2165 gc->setHelpText(QObject::tr("Automatically clear the bookmark on a " 2014 2166 "recording when the recording is played back. If " 2015 2167 "disabled, you can mark the beginning with rewind " 2016 2168 "then save position.")); 2017 return gc;2169 return wrap(gc, settings); 2018 2170 } 2019 2171 2020 static HostCheckBox *AltClearSavedPosition()2172 static Setting *AltClearSavedPosition(PlaySettings *settings) 2021 2173 { 2022 HostCheckBox *gc = new HostCheckBox("AltClearSavedPosition");2174 CREATE_CHECKBOX_SETTING(gc, "AltClearSavedPosition", settings); 2023 2175 gc->setLabel(QObject::tr("Alternate clear and save bookmark")); 2024 2176 gc->setValue(true); 2025 2177 gc->setHelpText(QObject::tr("During playback the Select key " … … 2027 2179 "Saved\" and \"Bookmark Cleared\". If disabled, the " 2028 2180 "Select key will save the current position for each " 2029 2181 "keypress.")); 2030 return gc;2182 return wrap(gc, settings); 2031 2183 } 2032 2184 2033 2185 #if defined(USING_XV) || defined(USING_OPENGL_VIDEO) || defined(USING_VDPAU) 2034 static HostCheckBox *UsePicControls()2186 static Setting *UsePicControls(PlaySettings *settings) 2035 2187 { 2036 HostCheckBox *gc = new HostCheckBox("UseOutputPictureControls");2188 CREATE_CHECKBOX_SETTING(gc, "UseOutputPictureControls", settings); 2037 2189 gc->setLabel(QObject::tr("Enable picture controls")); 2038 2190 gc->setValue(false); 2039 2191 gc->setHelpText( 2040 2192 QObject::tr( 2041 2193 "If enabled, MythTV attempts to initialize picture controls " 2042 2194 "(brightness, contrast, etc.) that are applied during playback.")); 2043 return gc;2195 return wrap(gc, settings); 2044 2196 } 2045 2197 #endif 2046 2198 2047 static HostLineEdit *UDPNotifyPort()2199 static Setting *UDPNotifyPort(PlaySettings *settings) 2048 2200 { 2049 HostLineEdit *ge = new HostLineEdit("UDPNotifyPort");2201 CREATE_LINEEDIT_SETTING(ge, "UDPNotifyPort", settings); 2050 2202 ge->setLabel(QObject::tr("UDP Notify Port")); 2051 2203 ge->setValue("6948"); 2052 2204 ge->setHelpText(QObject::tr("During playback, MythTV will listen for " 2053 2205 "connections from the \"mythtvosd\" or \"mythudprelay\" " 2054 2206 "programs on this port. See the README in " 2055 2207 "contrib/mythnotify/ for additional information.")); 2056 return ge;2208 return wrap(ge, settings); 2057 2209 } 2058 2210 2059 static HostComboBox *PlaybackExitPrompt()2211 static Setting *PlaybackExitPrompt(PlaySettings *settings) 2060 2212 { 2061 HostComboBox *gc = new HostComboBox("PlaybackExitPrompt");2213 CREATE_COMBOBOX_SETTING(gc, "PlaybackExitPrompt", settings); 2062 2214 gc->setLabel(QObject::tr("Action on playback exit")); 2063 2215 gc->addSelection(QObject::tr("Just exit"), "0"); 2064 2216 gc->addSelection(QObject::tr("Save position and exit"), "2"); … … 2069 2221 "when you exit playback mode. The options available will " 2070 2222 "allow you to save your position, delete the " 2071 2223 "recording, or continue watching.")); 2072 return gc;2224 return wrap(gc, settings); 2073 2225 } 2074 2226 2075 static HostCheckBox *EndOfRecordingExitPrompt()2227 static Setting *EndOfRecordingExitPrompt(PlaySettings *settings) 2076 2228 { 2077 HostCheckBox *gc = new HostCheckBox("EndOfRecordingExitPrompt");2229 CREATE_CHECKBOX_SETTING(gc, "EndOfRecordingExitPrompt", settings); 2078 2230 gc->setLabel(QObject::tr("Prompt at end of recording")); 2079 2231 gc->setValue(false); 2080 2232 gc->setHelpText(QObject::tr("If set, a menu will be displayed allowing " 2081 2233 "you to delete the recording when it has finished " 2082 2234 "playing.")); 2083 return gc;2235 return wrap(gc, settings); 2084 2236 } 2085 2237 2086 static HostCheckBox *JumpToProgramOSD()2238 static Setting *JumpToProgramOSD(PlaySettings *settings) 2087 2239 { 2088 HostCheckBox *gc = new HostCheckBox("JumpToProgramOSD");2240 CREATE_CHECKBOX_SETTING(gc, "JumpToProgramOSD", settings); 2089 2241 gc->setLabel(QObject::tr("Jump to Program OSD")); 2090 2242 gc->setValue(true); 2091 2243 gc->setHelpText(QObject::tr( … … 2094 2246 "'Watch Recording' screen when 'Jump to Program' " 2095 2247 "is activated. If set, the recordings are shown " 2096 2248 "in the OSD")); 2097 return gc;2249 return wrap(gc, settings); 2098 2250 } 2099 2251 2100 static HostCheckBox *ContinueEmbeddedTVPlay()2252 static Setting *ContinueEmbeddedTVPlay(PlaySettings *settings) 2101 2253 { 2102 HostCheckBox *gc = new HostCheckBox("ContinueEmbeddedTVPlay");2254 CREATE_CHECKBOX_SETTING(gc, "ContinueEmbeddedTVPlay", settings); 2103 2255 gc->setLabel(QObject::tr("Continue Playback When Embedded")); 2104 2256 gc->setValue(false); 2105 2257 gc->setHelpText(QObject::tr( … … 2107 2259 "is embedded in the upcoming program list or recorded " 2108 2260 "list. The default is to pause the recorded show when " 2109 2261 "embedded.")); 2110 return gc;2262 return wrap(gc, settings); 2111 2263 } 2112 2264 2113 static HostCheckBox *AutomaticSetWatched()2265 static Setting *AutomaticSetWatched(PlaySettings *settings) 2114 2266 { 2115 HostCheckBox *gc = new HostCheckBox("AutomaticSetWatched");2267 CREATE_CHECKBOX_SETTING(gc, "AutomaticSetWatched", settings); 2116 2268 gc->setLabel(QObject::tr("Automatically mark a recording as watched")); 2117 2269 gc->setValue(false); 2118 2270 gc->setHelpText(QObject::tr("If set, when you exit near the end of a " … … 2120 2272 "detection is not foolproof, so do not enable this " 2121 2273 "setting if you don't want an unwatched recording marked " 2122 2274 "as watched.")); 2123 return gc;2275 return wrap(gc, settings); 2124 2276 } 2125 2277 2126 2278 static HostSpinBox *LiveTVIdleTimeout() … … 2385 2537 return gc; 2386 2538 } 2387 2539 2388 static HostComboBox *LetterboxingColour()2540 static Setting *LetterboxingColour(PlaySettings *settings) 2389 2541 { 2390 HostComboBox *gc = new HostComboBox("LetterboxColour");2542 CREATE_COMBOBOX_SETTING(gc, "LetterboxColour", settings); 2391 2543 gc->setLabel(QObject::tr("Letterboxing Color")); 2392 2544 for (int m = kLetterBoxColour_Black; m < kLetterBoxColour_END; ++m) 2393 2545 gc->addSelection(toString((LetterBoxColour)m), QString::number(m)); … … 2397 2549 "letterboxing, but those with plasma screens may prefer gray " 2398 2550 "to minimize burn-in.") + " " + 2399 2551 QObject::tr("Currently only works with XVideo video renderer.")); 2400 return gc;2552 return wrap(gc, settings); 2401 2553 } 2402 2554 2403 static HostComboBox *AspectOverride()2555 static Setting *AspectOverride(PlaySettings *settings) 2404 2556 { 2405 HostComboBox *gc = new HostComboBox("AspectOverride");2557 CREATE_COMBOBOX_SETTING(gc, "AspectOverride", settings); 2406 2558 gc->setLabel(QObject::tr("Video Aspect Override")); 2407 2559 for (int m = kAspect_Off; m < kAspect_END; ++m) 2408 2560 gc->addSelection(toString((AspectOverrideMode)m), QString::number(m)); … … 2410 2562 "When enabled, these will override the aspect " 2411 2563 "ratio specified by any broadcaster for all " 2412 2564 "video streams.")); 2413 return gc;2565 return wrap(gc, settings); 2414 2566 } 2415 2567 2416 static HostComboBox *AdjustFill()2568 static Setting *AdjustFill(PlaySettings *settings) 2417 2569 { 2418 HostComboBox *gc = new HostComboBox("AdjustFill");2570 CREATE_COMBOBOX_SETTING(gc, "AdjustFill", settings); 2419 2571 gc->setLabel(QObject::tr("Zoom")); 2420 2572 gc->addSelection(toString(kAdjustFill_AutoDetect_DefaultOff), 2421 2573 QString::number(kAdjustFill_AutoDetect_DefaultOff)); … … 2426 2578 gc->setHelpText(QObject::tr( 2427 2579 "When enabled, these will apply a predefined " 2428 2580 "zoom to all video playback in MythTV.")); 2429 return gc;2581 return wrap(gc, settings); 2430 2582 } 2431 2583 2432 2584 // Theme settings … … 2845 2997 return gc; 2846 2998 } 2847 2999 2848 ThemeSelector::ThemeSelector(QString label): 2849 HostImageSelect(label){2850 3000 static Setting *ThemeSelector(QString label, PlaySettings *settings=NULL) 3001 { 3002 CREATE_IMAGESELECT_SETTING(gs, label, settings); 2851 3003 ThemeType themetype = THEME_UI; 2852 3004 2853 3005 if (label == "Theme") 2854 3006 { 2855 3007 themetype = THEME_UI; 2856 setLabel(QObject::tr("UI Theme"));3008 gs->setLabel(QObject::tr("UI Theme")); 2857 3009 } 2858 3010 else if (label == "OSDTheme") 2859 3011 { 2860 3012 themetype = THEME_OSD; 2861 setLabel(QObject::tr("OSD Theme"));3013 gs->setLabel(QObject::tr("OSD Theme")); 2862 3014 } 2863 3015 else if (label == "MenuTheme") 2864 3016 { 2865 3017 themetype = THEME_MENU; 2866 setLabel(QObject::tr("Menu Theme"));3018 gs->setLabel(QObject::tr("Menu Theme")); 2867 3019 } 2868 3020 2869 3021 QDir themes(GetThemesParentDir()); … … 2927 3079 VERBOSE(VB_IMPORTANT, QString("Problem reading theme preview image" 2928 3080 " %1").arg(preview.filePath())); 2929 3081 2930 addImageSelection(name, previewImage, theme.fileName());3082 gs->addImageSelection(name, previewImage, theme.fileName()); 2931 3083 } 2932 3084 2933 3085 if (themetype & THEME_UI) 2934 setValue(DEFAULT_UI_THEME);3086 gs->setValue(DEFAULT_UI_THEME); 2935 3087 else if (themetype & THEME_OSD) 2936 setValue("BlackCurves-OSD"); 3088 gs->setValue("BlackCurves-OSD"); 3089 3090 return wrap(gs, settings); 2937 3091 } 2938 3092 2939 3093 static HostComboBox *ChannelFormat() … … 3418 3572 3419 3573 addTarget("6", group); 3420 3574 addTarget("2", new VerticalConfigurationGroup(false, true)); 3575 QString dflt = getDefault(checkbox); 3576 if (!dflt.isEmpty()) 3577 addTarget(dflt, group); 3421 3578 } 3422 3579 }; 3423 3580 … … 3431 3588 3432 3589 addTarget("1", group); 3433 3590 addTarget("0", new VerticalConfigurationGroup(false, true)); 3591 QString dflt = getDefault(checkbox); 3592 if (!dflt.isEmpty()) 3593 addTarget(dflt, group); 3434 3594 } 3435 3595 }; 3436 3596 … … 3445 3605 3446 3606 addTarget("1", setting); 3447 3607 addTarget("0", new VerticalConfigurationGroup(false, false)); 3608 QString dflt = getDefault(checkbox); 3609 if (!dflt.isEmpty()) 3610 addTarget(dflt, setting); 3448 3611 } 3449 3612 }; 3450 3613 3451 static ConfigurationGroup *AudioSystemSettingsGroup( )3614 static ConfigurationGroup *AudioSystemSettingsGroup(PlaySettings *settings) 3452 3615 { 3453 3616 ConfigurationGroup *vcg = new VerticalConfigurationGroup(false, true, false, false); 3454 3617 3455 3618 vcg->setLabel(QObject::tr("Audio System")); 3456 3619 vcg->setUseLabel(false); 3457 3620 3458 vcg->addChild(new AudioOutputDevice()); 3621 if (!settings) 3622 vcg->addChild(new AudioOutputDevice()); 3459 3623 3460 Setting *numchannels = MaxAudioChannels( );3624 Setting *numchannels = MaxAudioChannels(settings); 3461 3625 vcg->addChild(numchannels); 3462 3626 3463 3627 ConfigurationGroup *group1 = 3464 3628 new VerticalConfigurationGroup(false, true, false, false); 3465 3629 3466 group1->addChild(AudioUpmix( ));3467 group1->addChild(AudioUpmixType( ));3468 group1->addChild(PassThroughOutputDevice( ));3630 group1->addChild(AudioUpmix(settings)); 3631 group1->addChild(AudioUpmixType(settings)); 3632 group1->addChild(PassThroughOutputDevice(settings)); 3469 3633 3470 3634 ConfigurationGroup *settings1 = 3471 3635 new HorizontalConfigurationGroup(); 3472 3636 settings1->setLabel(QObject::tr("Audio Processing Capabilities")); 3473 settings1->addChild(AC3PassThrough( ));3474 settings1->addChild(DTSPassThrough( ));3637 settings1->addChild(AC3PassThrough(settings)); 3638 settings1->addChild(DTSPassThrough(settings)); 3475 3639 3476 3640 group1->addChild(settings1); 3477 3641 … … 3480 3644 new AudioSystemSurroundGroup(numchannels, group1); 3481 3645 vcg->addChild(sub1); 3482 3646 3483 Setting *advancedsettings = AdvancedAudioSettings( );3647 Setting *advancedsettings = AdvancedAudioSettings(settings); 3484 3648 vcg->addChild(advancedsettings); 3485 3649 3486 3650 ConfigurationGroup *group2 = … … 3493 3657 ConfigurationGroup *settings2 = 3494 3658 new HorizontalConfigurationGroup(false, false, false, false); 3495 3659 3496 Setting *srcqualityoverride = SRCQualityOverride( );3660 Setting *srcqualityoverride = SRCQualityOverride(settings); 3497 3661 3498 3662 AudioSystemAdvancedSettings *sub3 = 3499 new AudioSystemAdvancedSettings(srcqualityoverride, SRCQuality()); 3663 new AudioSystemAdvancedSettings(srcqualityoverride, 3664 SRCQuality(settings)); 3500 3665 settings2->addChild(srcqualityoverride); 3501 3666 settings2->addChild(sub3); 3502 3667 3503 3668 group2->addChild(settings2); 3504 group2->addChild(AggressiveBuffer( ));3669 group2->addChild(AggressiveBuffer(settings)); 3505 3670 3506 3671 return vcg; 3507 3672 … … 3510 3675 class AudioMixerSettingsGroup : public TriggeredConfigurationGroup 3511 3676 { 3512 3677 public: 3513 AudioMixerSettingsGroup( ) :3678 AudioMixerSettingsGroup(PlaySettings *psettings) : 3514 3679 TriggeredConfigurationGroup(false, true, false, false) 3515 3680 { 3516 3681 setLabel(QObject::tr("Audio Mixer")); 3517 3682 setUseLabel(false); 3518 3683 3519 Setting *volumeControl = MythControlsVolume( );3684 Setting *volumeControl = MythControlsVolume(psettings); 3520 3685 addChild(volumeControl); 3521 3686 3522 3687 // Mixer settings 3523 3688 ConfigurationGroup *settings = 3524 3689 new VerticalConfigurationGroup(false, true, false, false); 3525 settings->addChild(MixerDevice( ));3526 settings->addChild(MixerControl( ));3527 settings->addChild(MixerVolume( ));3528 settings->addChild(PCMVolume( ));3529 settings->addChild(IndividualMuteControl( ));3690 settings->addChild(MixerDevice(psettings)); 3691 settings->addChild(MixerControl(psettings)); 3692 settings->addChild(MixerVolume(psettings)); 3693 settings->addChild(PCMVolume(psettings)); 3694 settings->addChild(IndividualMuteControl(psettings)); 3530 3695 3531 3696 ConfigurationGroup *dummy = 3532 3697 new VerticalConfigurationGroup(false, true, false, false); … … 3535 3700 setTrigger(volumeControl); 3536 3701 addTarget("0", dummy); 3537 3702 addTarget("1", settings); 3703 QString dflt = getDefault(volumeControl); 3704 if (!dflt.isEmpty()) 3705 addTarget(dflt, settings); 3538 3706 } 3539 3707 }; 3540 3708 … … 3608 3776 return gs; 3609 3777 } 3610 3778 3611 static HostCheckBox *RealtimePriority()3779 static Setting *RealtimePriority(PlaySettings *settings) 3612 3780 { 3613 HostCheckBox *gc = new HostCheckBox("RealtimePriority");3781 CREATE_CHECKBOX_SETTING(gc, "RealtimePriority", settings); 3614 3782 gc->setLabel(QObject::tr("Enable realtime priority threads")); 3615 3783 gc->setHelpText(QObject::tr("When running mythfrontend with root " 3616 3784 "privileges, some threads can be given enhanced priority. " 3617 3785 "Disable this if mythfrontend freezes during video " 3618 3786 "playback.")); 3619 3787 gc->setValue(true); 3620 return gc;3788 return wrap(gc, settings, false); 3621 3789 } 3622 3790 3623 3791 static HostCheckBox *EnableMediaMon() … … 3773 3941 }; 3774 3942 3775 3943 #ifdef USING_OPENGL_VSYNC 3776 static HostCheckBox *UseOpenGLVSync()3944 static Setting *UseOpenGLVSync(PlaySettings *settings) 3777 3945 { 3778 HostCheckBox *gc = new HostCheckBox("UseOpenGLVSync");3946 CREATE_CHECKBOX_SETTING(gc, "UseOpenGLVSync", settings); 3779 3947 gc->setLabel(QObject::tr("Enable OpenGL vertical sync for timing")); 3780 3948 gc->setValue(false); 3781 3949 gc->setHelpText(QObject::tr( 3782 3950 "If it is supported by your hardware/drivers, " 3783 3951 "MythTV will use OpenGL vertical syncing for " 3784 3952 "video timing, reducing frame jitter.")); 3785 return gc;3953 return wrap(gc, settings); 3786 3954 } 3787 3955 #endif 3788 3956 … … 4208 4376 return gc; 4209 4377 } 4210 4378 4211 MainGeneralSettings::MainGeneralSettings() 4379 MainGeneralSettings::MainGeneralSettings(PlaySettings *settings, 4380 ConfigurationWizard *base) 4212 4381 { 4382 if (!settings) 4383 { 4213 4384 DatabaseSettings::addDatabaseSettings(this); 4214 4385 4215 4386 VerticalConfigurationGroup *pin = … … 4218 4389 pin->addChild(SetupPinCodeRequired()); 4219 4390 pin->addChild(SetupPinCode()); 4220 4391 addChild(pin); 4392 } 4221 4393 4222 addChild(AudioSystemSettingsGroup()); 4394 if (base) 4395 { 4396 base->addChild(AudioSystemSettingsGroup(settings)); 4397 base->addChild(new AudioMixerSettingsGroup(settings)); 4398 } 4399 else 4400 { 4401 addChild(AudioSystemSettingsGroup(settings)); 4402 addChild(new AudioMixerSettingsGroup(settings)); 4403 } 4223 4404 4224 addChild(new AudioMixerSettingsGroup());4225 4405 4406 if (!settings) 4407 { 4226 4408 VerticalConfigurationGroup *general = 4227 4409 new VerticalConfigurationGroup(false, true, false, false); 4228 4410 general->setLabel(QObject::tr("General")); … … 4262 4444 remotecontrol->addChild(NetworkControlEnabled()); 4263 4445 remotecontrol->addChild(NetworkControlPort()); 4264 4446 addChild(remotecontrol); 4447 } 4265 4448 } 4266 4449 4267 PlaybackSettings::PlaybackSettings() 4450 PlaybackSettings::PlaybackSettings(PlaySettings *settings, 4451 ConfigurationWizard *base) 4268 4452 { 4269 4453 uint i = 0, total = 8; 4270 4454 #if CONFIG_DARWIN 4271 4455 total += 2; 4272 4456 #endif // USING_DARWIN 4457 if (settings) 4458 total -= 3; 4273 4459 4274 4460 4275 4461 VerticalConfigurationGroup* general1 = 4276 4462 new VerticalConfigurationGroup(false); 4277 4463 general1->setLabel(QObject::tr("General Playback") + 4278 4464 QString(" (%1/%2)").arg(++i).arg(total)); 4465 if (settings) 4466 general1->setLabel(QObject::tr("Playback group settings for ") + 4467 settings->mGroupName + " - " + 4468 general1->getLabel()); 4279 4469 4280 4470 HorizontalConfigurationGroup *columns = 4281 4471 new HorizontalConfigurationGroup(false, false, true, true); 4282 4472 4283 4473 VerticalConfigurationGroup *column1 = 4284 4474 new VerticalConfigurationGroup(false, false, true, true); 4285 column1->addChild(RealtimePriority()); 4286 column1->addChild(DecodeExtraAudio()); 4287 column1->addChild(JumpToProgramOSD()); 4475 if (!settings) 4476 column1->addChild(RealtimePriority(settings)); 4477 column1->addChild(DecodeExtraAudio(settings)); 4478 column1->addChild(JumpToProgramOSD(settings)); 4288 4479 columns->addChild(column1); 4289 4480 4290 4481 VerticalConfigurationGroup *column2 = 4291 4482 new VerticalConfigurationGroup(false, false, true, true); 4292 column2->addChild(ClearSavedPosition( ));4293 column2->addChild(AltClearSavedPosition( ));4294 column2->addChild(AutomaticSetWatched( ));4295 column2->addChild(ContinueEmbeddedTVPlay( ));4483 column2->addChild(ClearSavedPosition(settings)); 4484 column2->addChild(AltClearSavedPosition(settings)); 4485 column2->addChild(AutomaticSetWatched(settings)); 4486 column2->addChild(ContinueEmbeddedTVPlay(settings)); 4296 4487 columns->addChild(column2); 4297 4488 4298 4489 general1->addChild(columns); 4299 general1->addChild(LiveTVIdleTimeout()); 4300 general1->addChild(AlwaysStreamFiles()); 4490 if (!settings) 4491 general1->addChild(LiveTVIdleTimeout()); 4492 if (!settings) 4493 general1->addChild(AlwaysStreamFiles()); 4301 4494 #ifdef USING_OPENGL_VSYNC 4302 general1->addChild(UseOpenGLVSync( ));4495 general1->addChild(UseOpenGLVSync(settings)); 4303 4496 #endif // USING_OPENGL_VSYNC 4304 4497 #if defined(USING_XV) || defined(USING_OPENGL_VIDEO) || defined(USING_VDPAU) 4305 general1->addChild(UsePicControls( ));4498 general1->addChild(UsePicControls(settings)); 4306 4499 #endif // USING_XV 4307 addChild(general1); 4500 if (base) 4501 base->addChild(general1); 4502 else 4503 addChild(general1); 4308 4504 4309 4505 VerticalConfigurationGroup* general2 = 4310 4506 new VerticalConfigurationGroup(false); 4311 4507 general2->setLabel(QObject::tr("General Playback") + 4312 4508 QString(" (%1/%2)").arg(++i).arg(total)); 4509 if (settings) 4510 general2->setLabel(QObject::tr("Playback group settings for ") + 4511 settings->mGroupName + " - " + 4512 general2->getLabel()); 4313 4513 4314 4514 HorizontalConfigurationGroup* oscan = 4315 4515 new HorizontalConfigurationGroup(false, false, true, true); … … 4317 4517 new VerticalConfigurationGroup(false, false, true, true); 4318 4518 VerticalConfigurationGroup *ocol2 = 4319 4519 new VerticalConfigurationGroup(false, false, true, true); 4320 ocol1->addChild(VertScanPercentage( ));4321 ocol1->addChild(YScanDisplacement( ));4322 ocol2->addChild(HorizScanPercentage( ));4323 ocol2->addChild(XScanDisplacement( ));4520 ocol1->addChild(VertScanPercentage(settings)); 4521 ocol1->addChild(YScanDisplacement(settings)); 4522 ocol2->addChild(HorizScanPercentage(settings)); 4523 ocol2->addChild(XScanDisplacement(settings)); 4324 4524 oscan->addChild(ocol1); 4325 4525 oscan->addChild(ocol2); 4326 4526 4327 4527 HorizontalConfigurationGroup* aspect_fill = 4328 4528 new HorizontalConfigurationGroup(false, false, true, true); 4329 aspect_fill->addChild(AspectOverride( ));4330 aspect_fill->addChild(AdjustFill( ));4529 aspect_fill->addChild(AspectOverride(settings)); 4530 aspect_fill->addChild(AdjustFill(settings)); 4331 4531 4332 4532 general2->addChild(oscan); 4333 4533 general2->addChild(aspect_fill); 4334 general2->addChild(LetterboxingColour()); 4335 general2->addChild(PIPLocationComboBox()); 4336 general2->addChild(PlaybackExitPrompt()); 4337 general2->addChild(EndOfRecordingExitPrompt()); 4338 addChild(general2); 4534 general2->addChild(LetterboxingColour(settings)); 4535 general2->addChild(PIPLocationComboBox(settings)); 4536 general2->addChild(PlaybackExitPrompt(settings)); 4537 general2->addChild(EndOfRecordingExitPrompt(settings)); 4538 if (base) 4539 base->addChild(general2); 4540 else 4541 addChild(general2); 4339 4542 4340 4543 QString tmp = QString(" (%1/%2)").arg(++i).arg(total); 4341 addChild(new PlaybackProfileConfigs(tmp)); 4544 if (base) 4545 base->addChild(new PlaybackProfileConfigs(tmp, settings)); 4546 else 4547 addChild(new PlaybackProfileConfigs(tmp, settings)); 4342 4548 4549 if (!settings) 4550 { 4343 4551 VerticalConfigurationGroup* pbox = new VerticalConfigurationGroup(false); 4344 4552 pbox->setLabel(QObject::tr("View Recordings") + 4345 4553 QString(" (%1/%2)").arg(++i).arg(total)); … … 4368 4576 pbox3->addChild(DisplayGroupTitleSort()); 4369 4577 pbox3->addChild(new WatchListSettings()); 4370 4578 addChild(pbox3); 4579 } 4371 4580 4372 4581 VerticalConfigurationGroup* seek = new VerticalConfigurationGroup(false); 4373 4582 seek->setLabel(QObject::tr("Seeking") + 4374 4583 QString(" (%1/%2)").arg(++i).arg(total)); 4375 seek->addChild(SmartForward()); 4376 seek->addChild(FFRewReposTime()); 4377 seek->addChild(FFRewReverse()); 4378 seek->addChild(ExactSeeking()); 4379 addChild(seek); 4584 if (settings) 4585 seek->setLabel(QObject::tr("Playback group settings for ") + 4586 settings->mGroupName + " - " + 4587 seek->getLabel()); 4588 seek->addChild(SmartForward(settings)); 4589 seek->addChild(FFRewReposTime(settings)); 4590 seek->addChild(FFRewReverse(settings)); 4591 seek->addChild(ExactSeeking(settings)); 4592 if (base) 4593 base->addChild(seek); 4594 else 4595 addChild(seek); 4380 4596 4381 4597 VerticalConfigurationGroup* comms = new VerticalConfigurationGroup(false); 4382 4598 comms->setLabel(QObject::tr("Commercial Skip") + 4383 4599 QString(" (%1/%2)").arg(++i).arg(total)); 4384 comms->addChild(AutoCommercialSkip()); 4385 comms->addChild(CommRewindAmount()); 4386 comms->addChild(CommNotifyAmount()); 4600 if (settings) 4601 comms->setLabel(QObject::tr("Playback group settings for ") + 4602 settings->mGroupName + " - " + 4603 comms->getLabel()); 4604 comms->addChild(AutoCommercialSkip(settings)); 4605 comms->addChild(CommRewindAmount(settings)); 4606 comms->addChild(CommNotifyAmount(settings)); 4607 if (!settings) // these are global settings, not host-specific 4608 { 4387 4609 comms->addChild(MaximumCommercialSkip()); 4388 4610 comms->addChild(MergeShortCommBreaks()); 4389 4611 comms->addChild(CommSkipAllBlanks()); 4390 addChild(comms); 4612 } 4613 if (base) 4614 base->addChild(comms); 4615 else 4616 addChild(comms); 4391 4617 4392 4618 #if CONFIG_DARWIN 4393 4619 VerticalConfigurationGroup* mac1 = new VerticalConfigurationGroup(false); 4394 4620 mac1->setLabel(QObject::tr("Mac OS X video settings") + 4395 4621 QString(" (%1/%2)").arg(++i).arg(total)); 4622 if (settings) 4623 mac1->setLabel(QObject::tr("Playback group settings for ") + 4624 settings->mGroupName + " - " + 4625 mac1->getLabel()); 4626 if (!settings) 4627 { 4396 4628 mac1->addChild(MacGammaCorrect()); 4397 4629 mac1->addChild(MacScaleUp()); 4398 4630 mac1->addChild(MacFullSkip()); 4399 addChild(mac1); 4631 } 4632 if (base) 4633 base->addChild(mac1); 4634 else 4635 addChild(mac1); 4400 4636 4401 4637 VerticalConfigurationGroup* mac2 = new VerticalConfigurationGroup(false); 4402 4638 mac2->setLabel(QObject::tr("Mac OS X video settings") + 4403 4639 QString(" (%1/%2)").arg(++i).arg(total)); 4640 if (settings) 4641 mac2->setLabel(QObject::tr("Playback group settings for ") + 4642 settings->mGroupName + " - " + 4643 mac2->getLabel()); 4644 if (!setings) 4645 { 4404 4646 mac2->addChild(new MacMainSettings()); 4405 4647 mac2->addChild(new MacFloatSettings()); 4406 4648 … … 4409 4651 row->addChild(new MacDockSettings()); 4410 4652 row->addChild(new MacDesktopSettings()); 4411 4653 mac2->addChild(row); 4654 } 4412 4655 4413 addChild(mac2); 4656 if (base) 4657 base->addChild(mac2); 4658 else 4659 addChild(mac2); 4414 4660 #endif 4415 4661 } 4416 4662 4417 OSDSettings::OSDSettings() 4663 OSDSettings::OSDSettings(PlaySettings *settings, 4664 ConfigurationWizard *base) 4418 4665 { 4419 4666 VerticalConfigurationGroup* osd = new VerticalConfigurationGroup(false); 4420 4667 osd->setLabel(QObject::tr("On-screen display")); 4668 if (settings) 4669 osd->setLabel(QObject::tr("Playback group settings for ") + 4670 settings->mGroupName + " - " + 4671 osd->getLabel()); 4421 4672 4422 osd->addChild(new ThemeSelector("OSDTheme")); 4423 osd->addChild(OSDGeneralTimeout()); 4424 osd->addChild(OSDProgramInfoTimeout()); 4425 osd->addChild(OSDFont()); 4426 osd->addChild(OSDThemeFontSizeType()); 4427 osd->addChild(EnableMHEG()); 4428 osd->addChild(PersistentBrowseMode()); 4429 osd->addChild(BrowseAllTuners()); 4430 addChild(osd); 4673 osd->addChild(ThemeSelector("OSDTheme", settings)); 4674 osd->addChild(OSDGeneralTimeout(settings)); 4675 osd->addChild(OSDProgramInfoTimeout(settings)); 4676 osd->addChild(OSDFont(settings)); 4677 osd->addChild(OSDThemeFontSizeType(settings)); 4678 osd->addChild(EnableMHEG(settings)); 4679 if (!settings) 4680 { 4681 osd->addChild(PersistentBrowseMode(settings)); 4682 osd->addChild(BrowseAllTuners(settings)); 4683 } 4684 if (base) 4685 base->addChild(osd); 4686 else 4687 addChild(osd); 4431 4688 4432 4689 VerticalConfigurationGroup *udp = new VerticalConfigurationGroup(false); 4433 4690 udp->setLabel(QObject::tr("UDP OSD Notifications")); 4434 udp->addChild(OSDNotifyTimeout()); 4435 udp->addChild(UDPNotifyPort()); 4436 addChild(udp); 4691 if (settings) 4692 udp->setLabel(QObject::tr("Playback group settings for ") + 4693 settings->mGroupName + " - " + 4694 udp->getLabel()); 4695 udp->addChild(OSDNotifyTimeout(settings)); 4696 udp->addChild(UDPNotifyPort(settings)); 4697 if (base) 4698 base->addChild(udp); 4699 else 4700 addChild(udp); 4437 4701 4438 4702 VerticalConfigurationGroup *cc = new VerticalConfigurationGroup(false); 4439 4703 cc->setLabel(QObject::tr("Analog Closed Captions")); 4440 cc->addChild(OSDCCFont()); 4704 if (settings) 4705 cc->setLabel(QObject::tr("Playback group settings for ") + 4706 settings->mGroupName + " - " + 4707 cc->getLabel()); 4708 cc->addChild(OSDCCFont(settings)); 4441 4709 //cc->addChild(DecodeVBIFormat()); 4442 cc->addChild(CCBackground()); 4443 cc->addChild(DefaultCCMode()); 4444 cc->addChild(PreferCC708()); 4445 addChild(cc); 4710 cc->addChild(CCBackground(settings)); 4711 cc->addChild(DefaultCCMode(settings)); 4712 cc->addChild(PreferCC708(settings)); 4713 if (base) 4714 base->addChild(cc); 4715 else 4716 addChild(cc); 4446 4717 4447 addChild(OSDCC708Settings()); 4448 addChild(OSDCC708Fonts()); 4449 addChild(ExternalSubtitleSettings()); 4718 if (base) 4719 { 4720 base->addChild(OSDCC708Settings(settings)); 4721 base->addChild(OSDCC708Fonts(settings)); 4722 base->addChild(ExternalSubtitleSettings(settings)); 4723 } 4724 else 4725 { 4726 addChild(OSDCC708Settings(settings)); 4727 addChild(OSDCC708Fonts(settings)); 4728 addChild(ExternalSubtitleSettings(settings)); 4729 } 4450 4730 4451 4731 #if CONFIG_DARWIN 4452 4732 // Any Mac OS-specific OSD stuff would go here. … … 4598 4878 VerticalConfigurationGroup* theme = new VerticalConfigurationGroup(false); 4599 4879 theme->setLabel(QObject::tr("Theme")); 4600 4880 4601 theme->addChild( newThemeSelector("Theme"));4881 theme->addChild(ThemeSelector("Theme")); 4602 4882 4603 4883 theme->addChild(ThemeCacheSize()); 4604 4884 -
programs/mythfrontend/main.cpp
34 34 #include "globalsettings.h" 35 35 #include "profilegroup.h" 36 36 #include "playgroup.h" 37 #include "playsettings.h" 37 38 #include "networkcontrol.h" 38 39 #include "DVDRingBuffer.h" 39 40 #include "scheduledrecording.h" … … 485 486 delete statusbox; 486 487 } 487 488 489 ConfigurationWizard *createPlaybackSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base) 490 { 491 return new PlaybackSettings(settings, base); 492 } 493 494 ConfigurationWizard *createOSDSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base) 495 { 496 return new OSDSettings(settings, base); 497 } 498 499 ConfigurationWizard *createMainGeneralSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base) 500 { 501 return new MainGeneralSettings(settings, base); 502 } 503 504 static PlayGroupEditor::SettingsLookup pbgroupSetup[] = { 505 createPlaybackSettingsForPlaybackGroup, 506 createOSDSettingsForPlaybackGroup, 507 createMainGeneralSettingsForPlaybackGroup 508 }; 509 488 510 void TVMenuCallback(void *data, QString &selection) 489 511 { 490 512 (void)data; … … 577 599 } 578 600 else if (sel == "settings playgroup") 579 601 { 580 PlayGroupEditor editor; 602 PlayGroupEditor editor(pbgroupSetup, 603 sizeof(pbgroupSetup)/sizeof(*pbgroupSetup)); 581 604 editor.exec(); 582 605 } 583 606 else if (sel == "settings general") … … 749 772 Qt::ISODate)); 750 773 pginfo->lenMins = lenMins; 751 774 pginfo->isVideo = true; 775 pginfo->playgroup = "Videos"; 752 776 pginfo->pathname = mrl; 753 777 754 778 QDir d(mrl + "/VIDEO_TS"); -
programs/mythfrontend/globalsettings.h
10 10 #include "themeinfo.h" 11 11 12 12 class QFileInfo; 13 class PlaySettings; 13 14 14 15 class AudioOutputDevice : public HostComboBox 15 16 { … … 37 38 class PlaybackSettings : public ConfigurationWizard 38 39 { 39 40 public: 40 PlaybackSettings(); 41 PlaybackSettings(PlaySettings *settings=NULL, 42 ConfigurationWizard *base=NULL); 41 43 }; 42 44 43 45 class OSDSettings: virtual public ConfigurationWizard 44 46 { 45 47 public: 46 OSDSettings(); 48 OSDSettings(PlaySettings *settings=NULL, 49 ConfigurationWizard *base=NULL); 47 50 }; 48 51 49 52 class GeneralSettings : public ConfigurationWizard … … 67 70 class MainGeneralSettings : public ConfigurationWizard 68 71 { 69 72 public: 70 MainGeneralSettings(); 73 MainGeneralSettings(PlaySettings *settings=NULL, 74 ConfigurationWizard *base=NULL); 71 75 }; 72 76 73 77 class GeneralRecPrioritiesSettings : public ConfigurationWizard … … 154 158 Q_OBJECT 155 159 156 160 public: 157 PlaybackProfileConfigs(const QString &str );161 PlaybackProfileConfigs(const QString &str, PlaySettings *settings); 158 162 virtual ~PlaybackProfileConfigs(); 159 163 160 164 private: … … 166 170 167 171 private: 168 172 QStringList profiles; 169 HostComboBox*grouptrigger;173 ComboBoxSetting *grouptrigger; 170 174 }; 171 175 172 176 #endif -
programs/mythtranscode/transcode.cpp
36 36 class AudioReencodeBuffer : public AudioOutput 37 37 { 38 38 public: 39 AudioReencodeBuffer(int audio_bits, int audio_channels) 39 AudioReencodeBuffer(int audio_bits, int audio_channels, 40 PlaySettings *psettings) 41 : AudioOutput(psettings) 40 42 { 41 43 Reset(); 42 const AudioSettings settings(audio_bits, audio_channels, 0, 0, false); 44 const AudioSettings settings(audio_bits, audio_channels, 0, 0, false, 45 psettings); 43 46 Reconfigure(settings); 44 47 bufsize = 512000; 45 48 audiobuffer = new unsigned char[bufsize]; … … 419 422 statustime = statustime.addSecs(5); 420 423 } 421 424 422 AudioOutput *audioOutput = new AudioReencodeBuffer(0, 0); 425 AudioOutput *audioOutput = 426 new AudioReencodeBuffer(0, 0, player_ctx->settings); 423 427 AudioReencodeBuffer *arb = ((AudioReencodeBuffer*)audioOutput); 424 428 nvp->SetAudioOutput(audioOutput); 425 429 nvp->SetTranscoding(true); -
programs/mythavtest/main.cpp
22 22 #include "dbcheck.h" 23 23 #include "myththemebase.h" 24 24 #include "audiopulseutil.h" 25 #include "playsettings.h" 25 26 26 27 27 28 static void *run_priv_thread(void *data) … … 189 190 if (pa_ret != GENERIC_EXIT_OK) 190 191 return pa_ret; 191 192 192 #if defined(Q_OS_MACX)193 // Mac OS X doesn't define the AudioOutputDevice setting194 #else195 QString auddevice = gContext->GetSetting("AudioOutputDevice");196 if (auddevice.isEmpty())197 {198 VERBOSE(VB_IMPORTANT, "Fatal Error: Audio not configured, you need "199 "to run 'mythfrontend', not 'mythtv'.");200 return TV_EXIT_NO_AUDIO;201 }202 #endif203 204 193 MythMainWindow *mainWindow = GetMythMainWindow(); 205 194 mainWindow->Init(); 206 195 gContext->SetMainWindow(mainWindow); … … 215 204 return GENERIC_EXIT_DB_OUTOFDATE; 216 205 } 217 206 218 TV *tv = new TV();219 if (!tv->Init())220 {221 VERBOSE(VB_IMPORTANT, "Fatal Error: Could not initialize TV class.");222 return TV_EXIT_NO_TV;223 }224 225 207 ProgramInfo *pginfo = NULL; 226 208 227 209 if (!filename.isEmpty() && … … 240 222 241 223 } 242 224 225 PlaySettings settings(pginfo->playgroup); 226 227 #if defined(Q_OS_MACX) 228 // Mac OS X doesn't define the AudioOutputDevice setting 229 #else 230 QString auddevice = settings.GetSetting("AudioOutputDevice", ""); 231 if (auddevice.isEmpty()) 232 { 233 VERBOSE(VB_IMPORTANT, "Fatal Error: Audio not configured, you need " 234 "to run 'mythfrontend', not 'mythtv'."); 235 return TV_EXIT_NO_AUDIO; 236 } 237 #endif 238 239 TV *tv = new TV(&settings); 240 if (!tv->Init()) 241 { 242 VERBOSE(VB_IMPORTANT, "Fatal Error: Could not initialize TV class."); 243 return TV_EXIT_NO_TV; 244 } 245 243 246 TV::StartTV(pginfo, false); 244 247 245 248 if (pginfo)