Ticket #8088: 8088_playgroups_v19.patch

File 8088_playgroups_v19.patch, 111.0 KB (added by Jim Stichnoth <stichnot@…>, 15 years ago)
  • libs/libmythtv/videoout_vdpau.h

     
    2020{
    2121  public:
    2222    static void GetRenderOptions(render_opts &opts);
    23     VideoOutputVDPAU();
     23    VideoOutputVDPAU(PlaySettings *settings);
    2424    ~VideoOutputVDPAU();
    2525    bool Init(int width, int height, float aspect, WId winid,
    2626              int winx, int winy, int winw, int winh,
     
    5454                                    const QSize &video_dim);
    5555    static MythCodecID GetBestSupportedCodec(uint width, uint height,
    5656                                             uint stream_type,
    57                                              bool no_acceleration);
     57                                             bool no_acceleration,
     58                                             PlaySettings *settings);
    5859    virtual bool IsPIPSupported(void) const { return true; }
    5960    virtual bool IsPBPSupported(void) const { return false; }
    6061    virtual bool NeedExtraAudioDecode(void) const
  • libs/libmythtv/subtitlereader.h

     
    4444
    4545    TextSubtitles* GetTextSubtitles(void) { return &m_TextSubtitles; }
    4646    bool HasTextSubtitles(void);
    47     bool LoadExternalSubtitles(const QString &videoFile);
     47    bool LoadExternalSubtitles(const QString &videoFile, PlaySettings *settings);
    4848
    4949    QStringList GetRawTextSubtitles(uint64_t &duration);
    5050    void AddRawTextSubtitle(QStringList list, uint64_t duration);
  • libs/libmythtv/videooutwindow.cpp

     
    2929
    3030#include "videooutwindow.h"
    3131#include "osd.h"
     32#include "playsettings.h"
    3233#include "mythplayer.h"
    3334#include "videodisplayprofile.h"
    3435#include "decoderbase.h"
     
    5354const float VideoOutWindow::kManualZoomMinVerticalZoom   = 0.5f;
    5455const int   VideoOutWindow::kManualZoomMaxMove           = 50;
    5556
    56 VideoOutWindow::VideoOutWindow() :
     57VideoOutWindow::VideoOutWindow(PlaySettings *_settings) :
    5758    // DB settings
    5859    db_move(0, 0), db_scale_horiz(0.0f), db_scale_vert(0.0f),
    5960    db_pip_size(26),
     
    8586
    8687    // Various state variables
    8788    embedding(false), needrepaint(false),
    88     allowpreviewepg(true), pip_state(kPIPOff)
     89    allowpreviewepg(true), pip_state(kPIPOff),
     90
     91    settings(_settings)
    8992{
    9093    db_pip_size = gCoreContext->GetNumSetting("PIPSize", 26);
    9194
    92     db_move = QPoint(gCoreContext->GetNumSetting("xScanDisplacement", 0),
    93                      gCoreContext->GetNumSetting("yScanDisplacement", 0));
     95    db_move = QPoint(settings->GetNumSetting("xScanDisplacement", 0),
     96                     settings->GetNumSetting("yScanDisplacement", 0));
    9497    db_use_gui_size = gCoreContext->GetNumSetting("GuiSizeForTV", 0);
    9598
    9699    QDesktopWidget *desktop = NULL;
     
    615618    if (change)
    616619    {
    617620        db_scale_vert =
    618             gCoreContext->GetNumSetting("VertScanPercentage", 0) * 0.01f;
     621            settings->GetNumSetting("VertScanPercentage", 0) * 0.01f;
    619622        db_scale_horiz =
    620             gCoreContext->GetNumSetting("HorizScanPercentage", 0) * 0.01f;
     623            settings->GetNumSetting("HorizScanPercentage", 0) * 0.01f;
    621624        db_scaling_allowed = true;
    622625    }
    623626    else
  • libs/libmythtv/videoout_d3d.cpp

     
    5252    opts.priorities->insert("direct3d", 55);
    5353}
    5454
    55 VideoOutputD3D::VideoOutputD3D(void)
    56   : VideoOutput(),        m_lock(QMutex::Recursive),
     55VideoOutputD3D::VideoOutputD3D(PlaySettigns *settings)
     56  : VideoOutput(settings), m_lock(QMutex::Recursive),
    5757    m_hWnd(NULL),          m_render(NULL),
    5858    m_video(NULL),
    5959    m_render_valid(false), m_render_reset(false), m_pip_active(NULL),
  • libs/libmythtv/DetectLetterbox.cpp

     
    55#include "mythplayer.h"
    66#include "videoouttypes.h"
    77#include "mythcorecontext.h"
     8#include "playsettings.h"
    89
    910DetectLetterbox::DetectLetterbox(MythPlayer* const player)
    1011{
    11     int dbAdjustFill = gCoreContext->GetNumSetting("AdjustFill", 0);
     12    int dbAdjustFill = player->GetPlaySettings()->GetNumSetting("AdjustFill", 0);
    1213    isDetectLetterbox = dbAdjustFill >= kAdjustFill_AutoDetect_DefaultOff;
    1314    firstFrameChecked = 0;
    1415    detectLetterboxDefaultMode = (AdjustFillMode) max((int) kAdjustFill_Off,
     
    1819    detectLetterboxPossibleFullFrame = -1;
    1920    detectLetterboxConsecutiveCounter = 0;
    2021    detectLetterboxDetectedMode = player->GetAdjustFill();
    21     detectLetterboxLimit = gCoreContext->GetNumSetting("DetectLeterboxLimit", 75);
     22    detectLetterboxLimit =
     23        player->GetPlaySettings()->GetNumSetting("DetectLeterboxLimit", 75);
    2224    m_player = player;
    2325}
    2426
  • libs/libmythtv/videoout_opengl.cpp

     
    3939    opts.priorities->insert("opengl", 65);
    4040}
    4141
    42 VideoOutputOpenGL::VideoOutputOpenGL()
    43     : VideoOutput(),
     42VideoOutputOpenGL::VideoOutputOpenGL(PlaySettings *settings)
     43    : VideoOutput(settings),
    4444    gl_context_lock(QMutex::Recursive),
    4545    gl_context(NULL), gl_videochain(NULL), gl_pipchain_active(NULL),
    4646    gl_parent_win(0), gl_embed_win(0), gl_painter(NULL)
  • libs/libmythtv/videoout_quartz.cpp

     
    6363#include "mythverbose.h"
    6464#include "videodisplayprofile.h"
    6565
     66class PlaySettings;
     67
    6668#define LOC     QString("VideoOutputQuartz::")
    6769#define LOC_ERR QString("VideoOutputQuartz Error: ")
    6870
     
    11061108/** \class VideoOutputQuartz
    11071109 *  \brief Implementation of Quartz (Mac OS X windowing system) video output
    11081110 */
    1109 VideoOutputQuartz::VideoOutputQuartz() :
    1110     VideoOutput(), Started(false), data(new QuartzData())
     1111VideoOutputQuartz::VideoOutputQuartz(PlaySettings *settings) :
     1112    VideoOutput(settings), Started(false), data(new QuartzData())
    11111113{
    11121114    init(&pauseFrame, FMT_YV12, NULL, 0, 0, 0, 0);
    11131115}
     
    17571759MythCodecID VideoOutputQuartz::GetBestSupportedCodec(
    17581760    uint width, uint height,
    17591761    uint osd_width, uint osd_height,
    1760     uint stream_type, uint fourcc)
     1762    uint stream_type, uint fourcc, PlaySettings *settings)
    17611763{
    17621764    (void) osd_width;
    17631765    (void) osd_height;
    17641766
    1765     VideoDisplayProfile vdp;
     1767    VideoDisplayProfile vdp(settings);
    17661768    vdp.SetInput(QSize(width, height));
    17671769    QString dec = vdp.GetDecoder();
    17681770    if ((dec == "libmpeg2") || (dec == "ffmpeg"))
  • libs/libmythtv/avformatdecoder.cpp

     
    3333#include "BDRingBuffer.h"
    3434#include "videodisplayprofile.h"
    3535#include "mythuihelper.h"
     36#include "playsettings.h"
    3637
    3738#include "lcddevice.h"
    3839
     
    308309
    309310    cc608_build_parity_table(cc608_parity_table);
    310311
    311     if (gCoreContext->GetNumSetting("CCBackground", 0))
     312    if (GetPlayer()->GetPlaySettings()->GetNumSetting("CCBackground", 0))
    312313        CC708Window::forceWhiteOnBlackText = true;
    313314
    314315    no_dts_hack = false;
     
    12411242    if (selectedStream)
    12421243    {
    12431244        directrendering = true;
    1244         if (!gCoreContext->GetNumSetting("DecodeExtraAudio", 0) &&
     1245        if (!GetPlayer()->GetPlaySettings()->GetNumSetting("DecodeExtraAudio", 0) &&
    12451246            !CODEC_IS_HWACCEL(codec, enc))
    12461247        {
    12471248            SetLowBuffers(false);
     
    17741775
    17751776                if (!is_db_ignored)
    17761777                {
    1777                     VideoDisplayProfile vdp;
     1778                    VideoDisplayProfile vdp(GetPlayer()->GetPlaySettings());
    17781779                    vdp.SetInput(QSize(width, height));
    17791780                    dec = vdp.GetDecoder();
    17801781                    thread_count = vdp.GetMaxCPUs();
     
    18021803                    MythCodecID vdpau_mcid;
    18031804                    vdpau_mcid = VideoOutputVDPAU::GetBestSupportedCodec(
    18041805                        width, height,
    1805                         mpeg_version(enc->codec_id), no_hardware_decoders);
     1806                        mpeg_version(enc->codec_id), no_hardware_decoders,
     1807                        GetPlayer()->GetPlaySettings());
    18061808
    18071809                    if (vdpau_mcid >= video_codec_id)
    18081810                    {
     
    18341836                        /* mpeg type    */ mpeg_version(enc->codec_id),
    18351837                        /* xvmc pix fmt */ xvmc_pixel_format(enc->pix_fmt),
    18361838                        /* test surface */ codec_is_std(video_codec_id),
    1837                         /* force_xv     */ force_xv);
     1839                        /* force_xv     */ force_xv,
     1840                        GetPlayer()->GetPlaySettings());
    18381841
    18391842                    if (mcid >= video_codec_id)
    18401843                    {
  • libs/libmythtv/playgroup.cpp

     
    11#include "mythdb.h"
    22#include "playgroup.h"
    33#include "programinfo.h"
     4#include "playsettings.h"
    45
    56// A parameter associated with the profile itself
    67class PlayGroupDBStorage : public SimpleDBStorage
     
    210211    return res;
    211212}
    212213
    213 PlayGroupEditor::PlayGroupEditor(void) :
    214     listbox(new ListBoxSetting(this)), lastValue("Default")
     214PlayGroupEditor::PlayGroupEditor(SettingsLookup *funcArray, int funcArraySize) :
     215    listbox(new ListBoxSetting(this)), lastValue("Default"),
     216    getSettings(funcArray), getSettingsSize(funcArraySize)
    215217{
    216218    listbox->setLabel(tr("Playback Groups"));
    217219    addChild(listbox);
     
    242244    }
    243245
    244246    PlayGroup group(name);
     247    PlaySettings *psettings = new PlaySettings(name);
     248    for (int i=0; i<getSettingsSize; i++)
     249        getSettings[i](psettings, &group);
    245250    if (group.exec() == QDialog::Accepted || !created)
    246251        lastValue = name;
    247252    else
     
    276281        query.bindValue(":NAME", name);
    277282        if (!query.exec())
    278283            MythDB::DBError("PlayGroupEditor::doDelete", query);
     284        PlaySettings::deleteGroup(name);
    279285
    280286        int lastIndex = listbox->getValueIndex(name);
    281287        lastValue = "";
  • libs/libmythtv/videoout_opengl.h

     
    1010{
    1111  public:
    1212    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    13     VideoOutputOpenGL();
     13    VideoOutputOpenGL(PlaySettings *settings);
    1414    virtual ~VideoOutputOpenGL();
    1515
    1616    virtual bool Init(int width, int height, float aspect, WId winid,
  • libs/libmythtv/tv_play.h

     
    6060class OSDListTreeItemSelectedEvent;
    6161class TVBrowseHelper;
    6262struct osdInfo;
     63class PlaySettings;
    6364
    6465typedef QMap<QString,InfoMap>    DDValueMap;
    6566typedef QMap<QString,DDValueMap> DDKeyMap;
     
    184185        unsigned long seconds;
    185186    };
    186187
    187     TV(void);
     188    TV(PlaySettings *settings);
    188189   ~TV();
    189190
    190     void InitFromDB(void);
     191    void InitFromDB(PlaySettings *settings);
    191192    bool Init(bool createWindow = true);
    192193
    193194    // User input processing commands
     
    211212
    212213    // Recording commands
    213214    int  PlayFromRecorder(int recordernum);
    214     int  Playback(const ProgramInfo &rcinfo);
     215    int  Playback(const ProgramInfo &rcinfo, PlaySettings *settings);
    215216
    216217    // Commands used by frontend playback box
    217218    QString GetRecordingGroup(int player_idx) const;
  • libs/libmythtv/playgroup.h

     
    77#include "mythwidgets.h"
    88
    99class ProgramInfo;
     10class PlaySettings;
    1011
    1112class MPUBLIC PlayGroup: public ConfigurationWizard
    1213{
     
    2930    Q_OBJECT
    3031
    3132  public:
    32     PlayGroupEditor(void);
     33    typedef ConfigurationWizard *(*SettingsLookup)(PlaySettings *settings,
     34                                                   ConfigurationWizard *base);
     35    PlayGroupEditor(SettingsLookup *funcArray, int funcArraySize);
    3336    virtual DialogCode exec(void);
    3437    virtual void Load(void);
    3538    virtual void Save(void) { }
     
    4447  protected:
    4548    ListBoxSetting *listbox;
    4649    QString         lastValue;
     50    SettingsLookup *getSettings;
     51    int             getSettingsSize;
    4752};
    4853
    4954#endif
  • libs/libmythtv/dbcheck.cpp

     
    35563556
    35573557            VideoDisplayProfile::CreateNewProfiles(host);
    35583558            profiles = VideoDisplayProfile::GetProfiles(host);
    3559             QString profile = VideoDisplayProfile::GetDefaultProfileName(host);
     3559            QString profile =
     3560                VideoDisplayProfile::GetDefaultProfileName(host, NULL);
    35603561
    35613562            if (profiles.contains("Normal") &&
    35623563                (profile=="CPU++" || profile=="CPU+" || profile=="CPU--"))
     
    59735974"  jump int(11) NOT NULL default '0',"
    59745975"  PRIMARY KEY  (`name`)"
    59755976");",
     5977"CREATE TABLE playgroupsettings ("
     5978"  playgroupname varchar(64) NOT NULL,"
     5979"  `value` varchar(128) NOT NULL,"
     5980"  `data` text,"
     5981"  overridden tinyint(1) NOT NULL,"
     5982"  PRIMARY KEY (playgroupname, `value`)"
     5983");",
    59765984"CREATE TABLE powerpriority ("
    59775985"  priorityname varchar(64) collate utf8_bin NOT NULL,"
    59785986"  recpriority int(10) NOT NULL default '0',"
  • libs/libmythtv/videoout_vdpau.cpp

     
    4949    opts.deints->insert("vdpau", deints);
    5050}
    5151
    52 VideoOutputVDPAU::VideoOutputVDPAU()
    53   : m_win(0),                m_render(NULL),
     52VideoOutputVDPAU::VideoOutputVDPAU(PlaySettings *settings)
     53  : VideoOutput(settings), m_win(0),           m_render(NULL),
    5454    m_buffer_size(NUM_VDPAU_BUFFERS),          m_pause_surface(0),
    5555    m_need_deintrefs(false), m_video_mixer(0), m_mixer_features(kVDPFeatNone),
    5656    m_checked_surface_ownership(false),
     
    881881
    882882MythCodecID VideoOutputVDPAU::GetBestSupportedCodec(
    883883    uint width,       uint height,
    884     uint stream_type, bool no_acceleration)
     884    uint stream_type, bool no_acceleration, PlaySettings *settings)
    885885{
    886886    bool use_cpu = no_acceleration;
    887     VideoDisplayProfile vdp;
     887    VideoDisplayProfile vdp(settings);
    888888    vdp.SetInput(QSize(width, height));
    889889    QString dec = vdp.GetDecoder();
    890890
  • libs/libmythtv/videoout_directfb.cpp

     
    277277    opts.priorities->insert("directfb", 60);
    278278}
    279279
    280 VideoOutputDirectfb::VideoOutputDirectfb()
    281     : VideoOutput(), XJ_started(false), widget(NULL),
     280VideoOutputDirectfb::VideoOutputDirectfb(PlaySettings *settings)
     281    : VideoOutput(settings), XJ_started(false), widget(NULL),
    282282      data(new DirectfbData())
    283283{
    284284    init(&pauseFrame, FMT_YV12, NULL, 0, 0, 0);
  • libs/libmythtv/mythplayer.h

     
    212212    QString   GetXDS(const QString &key) const;
    213213    PIPLocation GetNextPIPLocation(void) const;
    214214
     215    PlaySettings *GetPlaySettings(void) const {
     216        return player_ctx ? player_ctx->settings : NULL;
     217    }
     218
    215219    // Bool Gets
    216220    bool    GetRawAudioState(void) const;
    217221    bool    GetLimitKeyRepeat(void) const     { return limitKeyRepeat; }
  • libs/libmythtv/videoout_d3d.h

     
    1212{
    1313  public:
    1414    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    15     VideoOutputD3D();
     15    VideoOutputD3D(PlaySettings *settings);
    1616   ~VideoOutputD3D();
    1717
    1818    bool Init(int width, int height, float aspect, WId winid,
  • libs/libmythtv/playercontext.cpp

     
    1616#include "storagegroup.h"
    1717#include "mythcorecontext.h"
    1818#include "videometadatautil.h"
     19#include "DetectLetterbox.h"
     20#include "playsettings.h"
    1921
    2022#define LOC QString("playCtx: ")
    2123#define LOC_ERR QString("playCtx, Error: ")
     
    405407                                 WId embedwinid, const QRect *embedbounds,
    406408                                 bool muted)
    407409{
    408     int exact_seeking = gCoreContext->GetNumSetting("ExactSeeking", 0);
     410    int exact_seeking = settings->GetNumSetting("ExactSeeking", 0);
    409411
    410412    if (HasPlayer())
    411413    {
     
    448450    {
    449451        QString subfn = buffer->GetSubtitleFilename();
    450452        if (!subfn.isEmpty() && player->GetSubReader())
    451             player->GetSubReader()->LoadExternalSubtitles(subfn);
     453            player->GetSubReader()->LoadExternalSubtitles(subfn, settings);
    452454    }
    453455
    454456    if ((embedwinid > 0) && embedbounds)
     
    907909/**
    908910 * \brief assign programinfo to the context
    909911 */
    910 void PlayerContext::SetPlayingInfo(const ProgramInfo *info)
     912void PlayerContext::SetPlayingInfo(const ProgramInfo *info,
     913                                   PlaySettings *_settings)
    911914{
    912915    bool ignoreDB = gCoreContext->IsDatabaseIgnored();
    913916
     
    919922            playingInfo->MarkAsInUse(false, recUsage);
    920923        delete playingInfo;
    921924        playingInfo = NULL;
     925        // XXX delete settings?
    922926    }
    923927
    924928    if (info)
     
    927931        if (!ignoreDB)
    928932            playingInfo->MarkAsInUse(true, recUsage);
    929933        playingLen = playingInfo->GetSecondsInRecording();
     934        settings = (_settings ? _settings :
     935                    new PlaySettings(playingInfo->GetPlaybackGroup()));
    930936    }
    931937}
    932938
  • libs/libmythtv/subtitlereader.cpp

     
    6565        av_free(subtitle.rects);
    6666}
    6767
    68 bool SubtitleReader::LoadExternalSubtitles(const QString &subtitleFileName)
     68bool SubtitleReader::LoadExternalSubtitles(const QString &subtitleFileName,
     69                                           PlaySettings *settings)
    6970{
    7071    m_TextSubtitles.Clear();
    71     return TextSubtitleParser::LoadSubtitles(subtitleFileName, m_TextSubtitles);
     72    return TextSubtitleParser::LoadSubtitles(subtitleFileName, m_TextSubtitles,
     73                                             settings);
    7274}
    7375
    7476bool SubtitleReader::HasTextSubtitles(void)
  • libs/libmythtv/textsubtitleparser.h

     
    1717// Qt headers
    1818#include <QStringList>
    1919
     20class PlaySettings;
     21
    2022class text_subtitle_t
    2123{
    2224  public:
     
    7981class TextSubtitleParser
    8082{
    8183  public:
    82     static bool LoadSubtitles(QString fileName, TextSubtitles &target);
     84    static bool LoadSubtitles(QString fileName, TextSubtitles &target,
     85                              PlaySettings *settings);
    8386};
    8487
    8588#endif
  • libs/libmythtv/vsync.cpp

     
    3434
    3535#include "mythcontext.h"
    3636#include "mythmainwindow.h"
     37#include "playsettings.h"
    3738
    3839#ifdef USING_XV
    3940#include "videoout_xv.h"
     
    7879 *  \brief Returns the most sophisticated video sync method available.
    7980 */
    8081VideoSync *VideoSync::BestMethod(VideoOutput *video_output,
     82                                 PlaySettings *settings,
    8183                                 uint frame_interval, uint refresh_interval,
    8284                                 bool halve_frame_interval)
    8385{
     
    103105    TESTVIDEOSYNC(DRMVideoSync);
    104106#ifdef USING_OPENGL_VSYNC
    105107/*
    106     if (gCoreContext->GetNumSetting("UseOpenGLVSync", 1) &&
     108    if (settings->GetNumSetting("UseOpenGLVSync", 1) &&
    107109       (getenv("NO_OPENGL_VSYNC") == NULL))
    108110    {
    109111        TESTVIDEOSYNC(OpenGLVideoSync);
  • libs/libmythtv/tv_play.cpp

     
    5959#include "mythdialogbox.h"
    6060#include "mythdirs.h"
    6161#include "tvbrowsehelper.h"
     62#include "playsettings.h"
    6263
    6364#if ! HAVE_ROUND
    6465#define round(x) ((int) ((x) + 0.5))
     
    209210    bool startInGuide = flags & kStartTVInGuide;
    210211    bool inPlaylist = flags & kStartTVInPlayList;
    211212    bool initByNetworkCommand = flags & kStartTVByNetworkCommand;
    212     TV *tv = new TV();
    213213    bool quitAll = false;
    214214    bool showDialogs = true;
    215215    bool playCompleted = false;
     
    223223        curProgram->SetIgnoreBookmark(flags & kStartTVIgnoreBookmark);
    224224    }
    225225
     226    PlaySettings settings(curProgram ? curProgram->GetPlaybackGroup() : "Default");
     227    TV *tv = new TV(&settings);
     228
    226229    // Initialize TV
    227230    if (!tv->Init())
    228231    {
     
    253256        if (curProgram)
    254257        {
    255258            VERBOSE(VB_PLAYBACK, LOC + "tv->Playback() -- begin");
    256             if (!tv->Playback(*curProgram))
     259            if (!tv->Playback(*curProgram, &settings))
    257260            {
    258261                quitAll = true;
    259262            }
     
    844847class TVInitRunnable : public QRunnable
    845848{
    846849  public:
    847     TVInitRunnable(TV *ourTV) : tv(ourTV) {}
    848     virtual void run(void) { tv->InitFromDB(); }
     850    TVInitRunnable(TV *ourTV, PlaySettings *ourSettings) :
     851        tv(ourTV), settings(ourSettings) {}
     852    virtual void run(void) { tv->InitFromDB(settings); }
    849853    TV *tv;
     854    PlaySettings *settings;
    850855};
    851856
    852857/** \fn TV::TV(void)
    853858 *  \sa Init(void)
    854859 */
    855 TV::TV(void)
     860TV::TV(PlaySettings *settings)
    856861    : // Configuration variables from database
    857862      baseFilters(""),
    858863      db_channel_format("<num> <sign>"),
     
    950955    playerActive = 0;
    951956    playerLock.unlock();
    952957
    953     QThreadPool::globalInstance()->start(new TVInitRunnable(this), 99);
     958    QThreadPool::globalInstance()->start(new TVInitRunnable(this, settings), 99);
    954959
    955960    VERBOSE(VB_PLAYBACK, LOC + "ctor -- end");
    956961}
    957962
    958 void TV::InitFromDB(void)
     963void TV::InitFromDB(PlaySettings *settings)
    959964{
    960965    QMap<QString,QString> kv;
    961966    kv["LiveTVIdleTimeout"]        = "0";
     
    10021007        kv[QString("FFRewSpeed%1").arg(i)] = QString::number(ff_rew_def[i]);
    10031008
    10041009    MythDB::getMythDB()->GetSettings(kv);
     1010    settings->AddToMap(kv);
    10051011
    10061012    QString db_time_format;
    10071013    QString db_short_date_format;
     
    17451751    askAllowLock.unlock();
    17461752}
    17471753
    1748 int TV::Playback(const ProgramInfo &rcinfo)
     1754int TV::Playback(const ProgramInfo &rcinfo, PlaySettings *settings)
    17491755{
    17501756    wantsToQuit   = false;
    17511757    jumpToProgram = false;
     
    17591765        return 0;
    17601766    }
    17611767
    1762     mctx->SetPlayingInfo(&rcinfo);
     1768    mctx->SetPlayingInfo(&rcinfo, settings);
    17631769    mctx->SetInitialTVState(false);
    17641770    ScheduleStateChange(mctx);
    17651771
     
    18421848
    18431849    if (fileexists)
    18441850    {
    1845         Playback(pginfo);
     1851        PlaySettings settings("Default");
     1852        Playback(pginfo, &settings);
    18461853        retval = 1;
    18471854    }
    18481855
     
    22302237            QString msg = tr("%1 Settings")
    22312238                    .arg(tv_i18n(ctx->playingInfo->GetPlaybackGroup()));
    22322239            ctx->UnlockPlayingInfo(__FILE__, __LINE__);
    2233             if (count > 0)
     2240            if (count > 0 &&
     2241                ctx->playingInfo->GetPlaybackGroup() != "Default" &&
     2242                ctx->playingInfo->GetPlaybackGroup() != "Videos")
    22342243                SetOSDMessage(ctx, msg);
    22352244            ITVRestart(ctx, false);
    22362245        }
  • libs/libmythtv/videodisplayprofile.h

     
    1313
    1414#include "mythcontext.h"
    1515
     16class PlaySettings;
     17
    1618typedef QMap<QString,QString>     pref_map_t;
    1719typedef QMap<QString,QStringList> safe_map_t;
    1820typedef QStringList               safe_list_t;
     
    8082class MPUBLIC VideoDisplayProfile
    8183{
    8284  public:
    83     VideoDisplayProfile();
     85    VideoDisplayProfile(PlaySettings *settings);
    8486    ~VideoDisplayProfile();
    8587
    8688    void SetInput(const QSize &size);
     
    124126    static QString     GetDecoderName(const QString &decoder);
    125127    static QString     GetDecoderHelp(QString decoder = QString::null);
    126128
    127     static QString     GetDefaultProfileName(const QString &hostname);
     129    static QString     GetDefaultProfileName(const QString &hostname,
     130                                             PlaySettings *settings);
    128131    static void        SetDefaultProfileName(const QString &profilename,
    129132                                             const QString &hostname);
    130133    static uint        GetProfileGroupID(const QString &profilename,
  • libs/libmythtv/videoout_null.cpp

     
    3030    opts.priorities->insert("null", 10);
    3131}
    3232
    33 VideoOutputNull::VideoOutputNull() :
    34     VideoOutput(), global_lock(QMutex::Recursive)
     33VideoOutputNull::VideoOutputNull(PlaySettings *settings) :
     34    VideoOutput(settings), global_lock(QMutex::Recursive)
    3535{
    3636    VERBOSE(VB_PLAYBACK, "VideoOutputNull()");
    3737    memset(&av_pause_frame, 0, sizeof(av_pause_frame));
  • libs/libmythtv/videooutbase.cpp

     
    77#include "mythplayer.h"
    88#include "videodisplayprofile.h"
    99#include "decoderbase.h"
     10#include "playsettings.h"
    1011
    1112#include "mythcorecontext.h"
    1213#include "mythverbose.h"
     
    109110        PIPState pipState,
    110111        const QSize   &video_dim, float        video_aspect,
    111112        WId            win_id,    const QRect &display_rect,
    112         float          video_prate,     WId    embed_id)
     113        float          video_prate,     WId    embed_id,
     114        PlaySettings *settings)
    113115{
    114116    (void) codec_priv;
    115117
     
    154156    QString renderer = QString::null;
    155157    if (renderers.size() > 0)
    156158    {
    157         VideoDisplayProfile vprof;
     159        VideoDisplayProfile vprof(settings);
    158160        vprof.SetInput(video_dim);
    159161
    160162        QString tmp = vprof.GetVideoRenderer();
     
    182184
    183185#ifdef USING_DIRECTFB
    184186        if (renderer == "directfb")
    185             vo = new VideoOutputDirectfb();
     187            vo = new VideoOutputDirectfb(settings);
    186188#endif // USING_DIRECTFB
    187189
    188190#ifdef USING_MINGW
    189191        if (renderer == "direct3d")
    190             vo = new VideoOutputD3D();
     192            vo = new VideoOutputD3D(settings);
    191193#endif // USING_MINGW
    192194
    193195#ifdef USING_QUARTZ_VIDEO
    194196        if (osxlist.contains(renderer))
    195             vo = new VideoOutputQuartz();
     197            vo = new VideoOutputQuartz(settings);
    196198#endif // Q_OS_MACX
    197199
    198200#ifdef USING_OPENGL_VIDEO
    199201        if (renderer == "opengl")
    200             vo = new VideoOutputOpenGL();
     202            vo = new VideoOutputOpenGL(settings);
    201203#endif // USING_OPENGL_VIDEO
    202204
    203205#ifdef USING_VDPAU
    204206        if (renderer == "vdpau")
    205             vo = new VideoOutputVDPAU();
     207            vo = new VideoOutputVDPAU(settings);
    206208#endif // USING_VDPAU
    207209
    208210#ifdef USING_XV
    209211        if (xvlist.contains(renderer))
    210             vo = new VideoOutputXv();
     212            vo = new VideoOutputXv(settings);
    211213#endif // USING_XV
    212214
    213215        if (vo)
     
    305307 * \brief This constructor for VideoOutput must be followed by an
    306308 *        Init(int,int,float,WId,int,int,int,int,WId) call.
    307309 */
    308 VideoOutput::VideoOutput() :
     310VideoOutput::VideoOutput(PlaySettings *_settings) :
    309311    // DB Settings
     312    window(_settings),
    310313    db_display_dim(0,0),
    311314    db_aspectoverride(kAspect_Off),     db_adjustfill(kAdjustFill_Off),
    312315    db_letterbox_colour(kLetterBoxColour_Black),
     
    345348    monitor_sz(640,480),                monitor_dim(400,300),
    346349
    347350    // OSD
    348     osd_painter(NULL),                  osd_image(NULL)
     351    osd_painter(NULL),                  osd_image(NULL),
     352    settings(_settings)
    349353
    350354{
    351355    bzero(&pip_tmp_image, sizeof(pip_tmp_image));
    352     db_display_dim = QSize(gCoreContext->GetNumSetting("DisplaySizeWidth",  0),
    353                            gCoreContext->GetNumSetting("DisplaySizeHeight", 0));
     356    db_display_dim = QSize(settings->GetNumSetting("DisplaySizeWidth",  0),
     357                           settings->GetNumSetting("DisplaySizeHeight", 0));
    354358
    355359    db_pict_attr[kPictureAttribute_Brightness] =
    356         gCoreContext->GetNumSetting("PlaybackBrightness", 50);
     360        settings->GetNumSetting("PlaybackBrightness", 50);
    357361    db_pict_attr[kPictureAttribute_Contrast] =
    358         gCoreContext->GetNumSetting("PlaybackContrast",   50);
     362        settings->GetNumSetting("PlaybackContrast",   50);
    359363    db_pict_attr[kPictureAttribute_Colour] =
    360         gCoreContext->GetNumSetting("PlaybackColour",     50);
     364        settings->GetNumSetting("PlaybackColour",     50);
    361365    db_pict_attr[kPictureAttribute_Hue] =
    362         gCoreContext->GetNumSetting("PlaybackHue",         0);
     366        settings->GetNumSetting("PlaybackHue",         0);
    363367
    364368    db_aspectoverride = (AspectOverrideMode)
    365         gCoreContext->GetNumSetting("AspectOverride",      0);
     369        settings->GetNumSetting("AspectOverride",      0);
    366370    db_adjustfill = (AdjustFillMode)
    367         gCoreContext->GetNumSetting("AdjustFill",          0);
     371        settings->GetNumSetting("AdjustFill",          0);
    368372    db_letterbox_colour = (LetterBoxColour)
    369         gCoreContext->GetNumSetting("LetterboxColour",     0);
     373        settings->GetNumSetting("LetterboxColour",     0);
    370374    db_use_picture_controls =
    371         gCoreContext->GetNumSetting("UseOutputPictureControls", 0);
     375        settings->GetNumSetting("UseOutputPictureControls", 0);
    372376
    373377    if (!gCoreContext->IsDatabaseIgnored())
    374         db_vdisp_profile = new VideoDisplayProfile();
     378        db_vdisp_profile = new VideoDisplayProfile(settings);
    375379}
    376380
    377381/**
     
    447451    return QString::null;
    448452}
    449453
    450 bool VideoOutput::IsPreferredRenderer(QSize video_size)
     454bool VideoOutput::IsPreferredRenderer(QSize video_size, PlaySettings *settings)
    451455{
    452456    if (!db_vdisp_profile || (video_size == window.GetVideoDispDim()))
    453457        return true;
    454458
    455     VideoDisplayProfile vdisp;
     459    VideoDisplayProfile vdisp(settings);
    456460    vdisp.SetInput(video_size);
    457461    QString new_rend = vdisp.GetVideoRenderer();
    458462    if (new_rend.isEmpty())
  • libs/libmythtv/videooutwindow.h

     
    1616#include "videoouttypes.h"
    1717
    1818class MythPlayer;
     19class PlaySettings;
    1920
    2021class VideoOutWindow
    2122{
    2223  public:
    23     VideoOutWindow();
     24    VideoOutWindow(PlaySettings *settings);
    2425
    2526    bool Init(const QSize &new_video_dim, float aspect,
    2627              const QRect &new_display_visible_rect,
     
    164165    bool     allowpreviewepg;
    165166    PIPState pip_state;
    166167
     168    PlaySettings *settings;
     169
    167170    // Constants
    168171    static const float kManualZoomMaxHorizontalZoom;
    169172    static const float kManualZoomMaxVerticalZoom;
  • libs/libmythtv/videoout_directfb.h

     
    1212{
    1313  public:
    1414    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    15     VideoOutputDirectfb();
     15    VideoOutputDirectfb(PlaySettings *settings);
    1616    ~VideoOutputDirectfb();
    1717
    1818    bool Init(int width, int height, float aspect, WId winid,
  • libs/libmythtv/playercontext.h

     
    2828class LiveTVChain;
    2929class MythDialog;
    3030class QPainter;
     31class PlaySettings;
    3132
    3233struct osdInfo
    3334{
     
    112113    void SetRecorder(RemoteEncoder *rec);
    113114    void SetTVChain(LiveTVChain *chain);
    114115    void SetRingBuffer(RingBuffer *buf);
    115     void SetPlayingInfo(const ProgramInfo *info);
     116    void SetPlayingInfo(const ProgramInfo *info, PlaySettings *settings=NULL);
    116117    void SetPlayGroup(const QString &group);
    117118    void SetPseudoLiveTV(const ProgramInfo *pi, PseudoState new_state);
    118119    void SetPIPLocation(int loc) { pipLocation = loc; }
     
    170171    LiveTVChain        *tvchain;
    171172    RingBuffer         *buffer;
    172173    ProgramInfo        *playingInfo; ///< Currently playing info
     174    PlaySettings       *settings; // corresponding to playingInfo
    173175    long long           playingLen;  ///< Initial CalculateLength()
    174176    AVSpecialDecode     specialDecode;
    175177    bool                nohardwaredecoders; // < Disable use of VDPAU decoding
  • libs/libmythtv/vsync.h

     
    8787
    8888    // documented in vsync.cpp
    8989    static VideoSync *BestMethod(VideoOutput*,
     90                                 PlaySettings *settings,
    9091                                 uint frame_interval, uint refresh_interval,
    9192                                 bool interlaced);
    9293  protected:
  • libs/libmythtv/videoout_xv.h

     
    5151    friend class XvMCOSD;
    5252  public:
    5353    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    54     VideoOutputXv();
     54    VideoOutputXv(PlaySettings *settings);
    5555   ~VideoOutputXv();
    5656
    5757    bool Init(int width, int height, float aspect, WId winid,
     
    109109    static MythCodecID GetBestSupportedCodec(uint width, uint height,
    110110                                             uint osd_width, uint osd_height,
    111111                                             uint stream_type, int xvmc_chroma,
    112                                              bool test_surface, bool force_xv);
     112                                             bool test_surface, bool force_xv,
     113                                             PlaySettings *settings);
    113114
    114115    static int GrabSuitableXvPort(MythXDisplay* disp, Window root,
     116                                  PlaySettings *settings,
    115117                                  MythCodecID type,
    116118                                  uint width, uint height,
    117119                                  bool &xvsetdefaults,
  • libs/libmythtv/videoout_xv.cpp

     
    170170 * \see VideoOutput, VideoBuffers
    171171 *
    172172 */
    173 VideoOutputXv::VideoOutputXv()
    174     : VideoOutput(),
     173VideoOutputXv::VideoOutputXv(PlaySettings *settings)
     174    : VideoOutput(settings),
    175175      video_output_subtype(XVUnknown),
    176176      global_lock(QMutex::Recursive),
    177177
     
    395395 * \return port number if it succeeds, else -1.
    396396 */
    397397int VideoOutputXv::GrabSuitableXvPort(MythXDisplay* disp, Window root,
     398                                      PlaySettings *settings,
    398399                                      MythCodecID mcodecid,
    399400                                      uint width, uint height,
    400401                                      bool &xvsetdefaults,
     
    479480    }
    480481
    481482    // figure out if we want chromakeying..
    482     VideoDisplayProfile vdp;
     483    VideoDisplayProfile vdp(settings);
    483484    vdp.SetInput(QSize(width, height));
    484485    bool check_for_colorkey = (vdp.GetOSDRenderer() == "chromakey");
    485486
     
    779780    disp->StartLog();
    780781    QString adaptor_name = QString::null;
    781782    const QSize video_dim = window.GetVideoDim();
    782     xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), video_codec_id,
     783    xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), settings, video_codec_id,
    783784                                 video_dim.width(), video_dim.height(),
    784785                                 xv_set_defaults,
    785786                                 xvmc_chroma, &xvmc_surf_info, &adaptor_name);
     
    858859    disp->StartLog();
    859860    QString adaptor_name = QString::null;
    860861    const QSize video_dim = window.GetVideoDim();
    861     xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), kCodec_MPEG2,
     862    xv_port = GrabSuitableXvPort(disp, disp->GetRoot(), settings, kCodec_MPEG2,
    862863                                 video_dim.width(), video_dim.height(),
    863864                                 xv_set_defaults, 0, NULL, &adaptor_name);
    864865    if (xv_port == -1)
     
    10121013    uint width,       uint height,
    10131014    uint osd_width,   uint osd_height,
    10141015    uint stream_type, int xvmc_chroma,
    1015     bool test_surface, bool force_xv)
     1016    bool test_surface, bool force_xv,
     1017    PlaySettings *settings)
    10161018{
    10171019    (void)width, (void)height, (void)osd_width, (void)osd_height;
    10181020    (void)stream_type, (void)xvmc_chroma, (void)test_surface;
     
    10231025        return ret;
    10241026
    10251027#ifdef USING_XVMC
    1026     VideoDisplayProfile vdp;
     1028    VideoDisplayProfile vdp(settings);
    10271029    vdp.SetInput(QSize(width, height));
    10281030    QString dec = vdp.GetDecoder();
    10291031    if ((dec == "libmpeg2") || (dec == "ffmpeg"))
     
    10731075
    10741076        ok = false;
    10751077        bool dummy;
    1076         int port = GrabSuitableXvPort(disp, disp->GetRoot(), ret, width, height,
     1078        int port = GrabSuitableXvPort(disp, disp->GetRoot(), settings,
     1079                                      ret, width, height,
    10771080                                      dummy, xvmc_chroma, &info);
    10781081        if (port >= 0)
    10791082        {
  • libs/libmythtv/mythplayer.cpp

     
    6060#include "mythpainter.h"
    6161#include "mythimage.h"
    6262#include "mythuiimage.h"
     63#include "playsettings.h"
    6364
    6465extern "C" {
    6566#include "vbitext/vbi.h"
     
    247248      output_jmeter(NULL)
    248249{
    249250    playerThread = QThread::currentThread();
    250     // Playback (output) zoom control
    251     detect_letter_box = new DetectLetterbox(this);
    252251
    253     vbimode = VBIMode::Parse(gCoreContext->GetSetting("VbiFormat"));
    254     decode_extra_audio = gCoreContext->GetNumSetting("DecodeExtraAudio", 0);
    255     itvEnabled         = gCoreContext->GetNumSetting("EnableMHEG", 0);
    256     db_prefer708       = gCoreContext->GetNumSetting("Prefer708Captions", 1);
    257 
    258252    bzero(&tc_lastval, sizeof(tc_lastval));
    259253    bzero(&tc_wrap,    sizeof(tc_wrap));
    260254
     
    492486    if (using_null_videoout && decoder)
    493487    {
    494488        MythCodecID codec = decoder->GetVideoCodecID();
    495         videoOutput = new VideoOutputNull();
     489        videoOutput = new VideoOutputNull(GetPlaySettings());
    496490        if (!videoOutput->Init(video_disp_dim.width(), video_disp_dim.height(),
    497491                               video_aspect, 0, 0, 0, 0, 0, codec, 0))
    498492        {
     
    542536                pipState,
    543537                video_disp_dim, video_aspect,
    544538                widget->winId(), display_rect, (video_frame_rate * play_speed),
    545                 0 /*embedid*/);
     539                0 /*embedid*/, GetPlaySettings());
    546540        }
    547541
    548542        if (videoOutput)
     
    633627
    634628void MythPlayer::ReinitVideo(void)
    635629{
    636     if (!videoOutput->IsPreferredRenderer(video_disp_dim))
     630    if (!videoOutput->IsPreferredRenderer(video_disp_dim, GetPlaySettings()))
    637631    {
    638632        VERBOSE(VB_PLAYBACK, LOC + QString("Need to switch video renderer."));
    639633        SetErrored(QObject::tr("Need to switch video renderer."));
     
    19931987        }
    19941988#endif // USING_MHEG
    19951989
    1996         SetCaptionsEnabled(gCoreContext->GetNumSetting("DefaultCCMode"), false);
     1990        SetCaptionsEnabled(GetPlaySettings()->GetNumSetting("DefaultCCMode", 0),
     1991                           false);
    19971992        osdLock.unlock();
    19981993    }
    19991994
    20001995    SetPlaying(true);
     
    20392034        m_double_process = videoOutput->IsExtraProcessingRequired();
    20402035
    20412036        videosync = VideoSync::BestMethod(
    2042             videoOutput, fr_int, rf_int, m_double_framerate);
     2037            videoOutput, GetPlaySettings(),
     2038            fr_int, rf_int, m_double_framerate);
    20432039
    20442040        // Make sure video sync can do it
    20452041        if (videosync != NULL && m_double_framerate)
     
    24112407    if (bookmarkseek > 30)
    24122408    {
    24132409        DoFastForward(bookmarkseek, true, false);
    2414         if (gCoreContext->GetNumSetting("ClearSavedPosition", 1) &&
     2410        if (GetPlaySettings()->GetNumSetting("ClearSavedPosition", 1) &&
    24152411            !player_ctx->IsPIP())
    24162412        {
    24172413            ClearBookmark(false);
     
    26252621    {
    26262622        if (jumpto == totalFrames)
    26272623        {
    2628             if (!(gCoreContext->GetNumSetting("EndOfRecordingExitPrompt") == 1
     2624            if (!(GetPlaySettings()->GetNumSetting("EndOfRecordingExitPrompt", 0) == 1
    26292625                  && !player_ctx->IsPIP() &&
    26302626                  player_ctx->GetState() == kState_WatchingPreRecorded))
    26312627            {
     
    29002896        return kPIP_END;
    29012897
    29022898    if (pip_players.isEmpty())
    2903         return (PIPLocation)gCoreContext->GetNumSetting("PIPLocation", kPIPTopLeft);
     2899        return (PIPLocation)GetPlaySettings()->GetNumSetting("PIPLocation",
     2900                                                             kPIPTopLeft);
    29042901
    29052902    // order of preference, could be stored in db if we want it configurable
    29062903    PIPLocation ols[] =
     
    34003397    exactseeks   = frame_exact_seek;
    34013398    player_ctx   = ctx;
    34023399    livetv       = ctx->tvchain;
     3400
     3401    vbimode = VBIMode::Parse(GetPlaySettings()->GetSetting("VbiFormat", ""));
     3402
     3403    // Playback (output) zoom control
     3404    detect_letter_box = new DetectLetterbox(this);
     3405
     3406    decode_extra_audio = GetPlaySettings()->GetNumSetting("DecodeExtraAudio", 0);
     3407    itvEnabled = GetPlaySettings()->GetNumSetting("EnableMHEG", 0);
     3408    db_prefer708 = GetPlaySettings()->GetNumSetting("Prefer708Captions", 1);
    34033409}
    34043410
    34053411bool MythPlayer::EnableEdit(void)
  • libs/libmythtv/videooutbase.h

     
    3232class FilterChain;
    3333class FilterManager;
    3434class OpenGLContextGLX;
     35class PlaySettings;
    3536
    3637typedef QMap<MythPlayer*,PIPLocation> PIPMap;
    3738
     
    5253        PIPState       pipState,
    5354        const QSize   &video_dim, float        video_aspect,
    5455        WId            win_id,    const QRect &display_rect,
    55         float video_prate,        WId          embed_id);
     56        float video_prate,        WId          embed_id,
     57        PlaySettings *settings);
    5658
    57     VideoOutput();
     59    VideoOutput(PlaySettings *settings);
    5860    virtual ~VideoOutput();
    5961
    6062    virtual bool Init(int width, int height, float aspect,
     
    6264                      int winh, MythCodecID codec_id, WId embedid = 0);
    6365    virtual void InitOSD(OSD *osd);
    6466    virtual void SetVideoFrameRate(float);
    65     virtual bool IsPreferredRenderer(QSize video_size);
     67    virtual bool IsPreferredRenderer(QSize video_size, PlaySettings *settings);
    6668    virtual bool SetDeinterlacingEnabled(bool);
    6769    virtual bool SetupDeinterlace(bool i, const QString& ovrf="");
    6870    virtual void FallbackDeint(void);
     
    338340    // OSD painter and surface
    339341    MythYUVAPainter *osd_painter;
    340342    MythImage       *osd_image;
     343
     344    PlaySettings *settings;
    341345};
    342346
    343347#endif
  • libs/libmythtv/textsubtitleparser.cpp

     
    2121#include "RingBuffer.h"
    2222#include "textsubtitleparser.h"
    2323#include "xine_demux_sputext.h"
     24#include "playsettings.h"
    2425
    2526static bool operator<(const text_subtitle_t& left,
    2627                      const text_subtitle_t& right)
     
    116117    m_lock.unlock();
    117118}
    118119
    119 bool TextSubtitleParser::LoadSubtitles(QString fileName, TextSubtitles &target)
     120bool TextSubtitleParser::LoadSubtitles(QString fileName, TextSubtitles &target,
     121                                       PlaySettings *settings)
    120122{
    121123    demux_sputext_t sub_data;
    122124    sub_data.rbuffer = new RingBuffer(fileName, 0, false);
     
    134136    target.SetFrameBasedTiming(!sub_data.uses_time);
    135137
    136138    QTextCodec *textCodec = NULL;
    137     QString codec = gCoreContext->GetSetting("SubtitleCodec", "");
     139    QString codec = settings->GetSetting("SubtitleCodec", "");
    138140    if (!codec.isEmpty())
    139141        textCodec = QTextCodec::codecForName(codec.toLatin1());
    140142    if (!textCodec)
  • libs/libmythtv/subtitlescreen.cpp

     
    77#include "mythuiimage.h"
    88#include "mythpainter.h"
    99#include "subtitlescreen.h"
     10#include "playsettings.h"
    1011
    1112#define LOC      QString("Subtitles: ")
    1213#define LOC_WARN QString("Subtitles Warning: ")
     
    6667        VERBOSE(VB_IMPORTANT, LOC_WARN + "Failed to get CEA-608 reader.");
    6768    if (!m_708reader)
    6869        VERBOSE(VB_IMPORTANT, LOC_WARN + "Failed to get CEA-708 reader.");
    69     m_useBackground = (bool)gCoreContext->GetNumSetting("CCBackground", 0);
    70     m_textFontZoom  = gCoreContext->GetNumSetting("OSDCC708TextZoom", 100);
     70    m_useBackground = (bool)m_player->GetPlaySettings()->GetNumSetting("CCBackground", 0);
     71    m_textFontZoom   = m_player->GetPlaySettings()->GetNumSetting("OSDCC708TextZoom", 100);
    7172    return true;
    7273}
    7374
  • libs/libmythtv/videoout_quartz.h

     
    22#define VIDEOOUT_QUARTZ_H_
    33
    44struct QuartzData;
     5class PlaySettings;
    56
    67#include "videooutbase.h"
    78
     
    910{
    1011  public:
    1112    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    12     VideoOutputQuartz();
     13    VideoOutputQuartz(PlaySettings *settings);
    1314   ~VideoOutputQuartz();
    1415
    1516    bool Init(int width, int height, float aspect, WId winid,
     
    5253    static MythCodecID GetBestSupportedCodec(
    5354        uint width, uint height,
    5455        uint osd_width, uint osd_height,
    55         uint stream_type, uint fourcc);
     56        uint stream_type, uint fourcc, PlaySettings *settings);
    5657    virtual bool NeedExtraAudioDecode(void) const
    5758        { return !codec_is_std(video_codec_id); }
    5859
  • libs/libmythtv/videodisplayprofile.cpp

     
    88#include "mythverbose.h"
    99#include "videooutbase.h"
    1010#include "avformatdecoder.h"
     11#include "playsettings.h"
    1112
    1213bool ProfileItem::IsMatch(const QSize &size, float rate) const
    1314{
     
    212213pref_map_t  VideoDisplayProfile::dec_name;
    213214safe_list_t VideoDisplayProfile::safe_decoders;
    214215
    215 VideoDisplayProfile::VideoDisplayProfile()
     216VideoDisplayProfile::VideoDisplayProfile(PlaySettings *settings)
    216217    : lock(QMutex::Recursive), last_size(0,0), last_rate(0.0f),
    217218      last_video_renderer(QString::null)
    218219{
     
    220221    init_statics();
    221222
    222223    QString hostname    = gCoreContext->GetHostName();
    223     QString cur_profile = GetDefaultProfileName(hostname);
     224    QString cur_profile = GetDefaultProfileName(hostname, settings);
    224225    uint    groupid     = GetProfileGroupID(cur_profile, hostname);
    225226
    226227    item_list_t items = LoadDB(groupid);
     
    772773    return list;
    773774}
    774775
    775 QString VideoDisplayProfile::GetDefaultProfileName(const QString &hostname)
     776QString VideoDisplayProfile::GetDefaultProfileName(const QString &hostname,
     777                                                   PlaySettings *settings)
    776778{
    777779    QString tmp =
     780        settings ? settings->GetSetting("DefaultVideoPlaybackProfile", "") :
    778781        gCoreContext->GetSettingOnHost("DefaultVideoPlaybackProfile", hostname);
    779782
    780783    QStringList profiles = GetProfiles(hostname);
  • libs/libmythtv/videoout_null.h

     
    99{
    1010  public:
    1111    static void GetRenderOptions(render_opts &opts, QStringList &cpudeints);
    12     VideoOutputNull();
     12    VideoOutputNull(PlaySettings *settings);
    1313   ~VideoOutputNull();
    1414
    1515    bool Init(int width, int height, float aspect, WId winid,
  • libs/libmyth/settings.cpp

     
    235235    return -1;
    236236}
    237237
     238QString 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
    238252bool SelectSetting::ReplaceLabel(const QString &new_label, const QString &value)
    239253{
    240254    int i = getValueIndex(value);
     
    299313        QLabel *label = new QLabel();
    300314        label->setText(getLabel() + ":     ");
    301315        layout->addWidget(label);
     316        labelWidget = label;
    302317    }
    303318
    304319    bxwidget = widget;
     
    327342
    328343    widget->setLayout(layout);
    329344
     345    setValue(getValue());
     346
    330347    return widget;
    331348}
    332349
     
    336353    {
    337354        bxwidget = NULL;
    338355        edit     = NULL;
     356        labelWidget = NULL;
    339357    }
    340358}
    341359
     
    373391    Setting::setHelpText(str);
    374392}
    375393
     394static 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
     404void 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
    376414void BoundedIntegerSetting::setValue(int newValue)
    377415{
    378416    newValue = std::max(std::min(newValue, max), min);
     
    439477
    440478SpinBoxSetting::SpinBoxSetting(
    441479    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) :
    443482    BoundedIntegerSetting(_storage, _min, _max, _step),
    444483    spinbox(NULL), relayEnabled(true),
    445     sstep(_allow_single_step), svtext("")
     484    sstep(_allow_single_step), svtext(""), labelWidget(NULL),
     485    changeOnSpecial(change_style_on_special)
    446486{
    447487    if (!_special_value_text.isEmpty())
    448488        svtext = _special_value_text;
     
    476516        QLabel *label = new QLabel();
    477517        label->setText(getLabel() + ":     ");
    478518        layout->addWidget(label);
     519        labelWidget = label;
    479520    }
    480521
    481522    bxwidget = widget;
     
    506547
    507548    widget->setLayout(layout);
    508549
     550    setValue(intValue());
     551
    509552    return widget;
    510553}
    511554
     
    515558    {
    516559        bxwidget = NULL;
    517560        spinbox  = NULL;
     561        labelWidget = NULL;
    518562    }
    519563}
    520564
    521565void SpinBoxSetting::setValue(int newValue)
    522566{
    523567    newValue = std::max(std::min(newValue, max), min);
     568    if (changeOnSpecial)
     569    {
     570        adjustFont(labelWidget, (newValue == min));
     571        adjustFont(spinbox,     (newValue == min));
     572    }
    524573    if (spinbox && (spinbox->value() != newValue))
    525574    {
    526575        //int old = intValue();
     
    631680        QLabel *label = new QLabel();
    632681        label->setText(getLabel() + ":     ");
    633682        layout->addWidget(label);
     683        labelWidget = label;
    634684    }
    635685
    636686    bxwidget = widget;
     
    659709            cbwidget, SLOT(clear()));
    660710
    661711    if (rw)
     712    {
    662713        connect(cbwidget, SIGNAL(editTextChanged(const QString &)),
    663714                this, SLOT(editTextChanged(const QString &)));
     715        connect(cbwidget, SIGNAL(editTextChanged(const QString &)),
     716                this, SLOT(changeLabel(const QString &)));
     717    }
    664718
    665719    if (cg)
    666720        connect(cbwidget, SIGNAL(changeHelpText(QString)), cg,
     
    673727
    674728    widget->setLayout(layout);
    675729
     730    setValue(current);
     731
    676732    return widget;
    677733}
    678734
     
    682738    {
    683739        bxwidget = NULL;
    684740        cbwidget = NULL;
     741        labelWidget = NULL;
    685742    }
    686743}
    687744
     
    717774
    718775    if (rw)
    719776    {
     777        changeLabel(newValue);
    720778        Setting::setValue(newValue);
    721779        if (cbwidget)
    722780            cbwidget->setCurrentIndex(current);
     
    727785{
    728786    if (cbwidget)
    729787        cbwidget->setCurrentIndex(which);
     788    changeLabel(labels[which]);
    730789    SelectSetting::setValue(which);
    731790}
    732791
    733 void ComboBoxSetting::addSelection(
    734     const QString &label, QString value, bool select)
     792void ComboBoxSetting::changeLabel(const QString &newLabel)
    735793{
     794    if (changeOnSpecial)
     795    {
     796        adjustFont(labelWidget, specialLabel == newLabel);
     797        adjustFont(cbwidget,    specialLabel == newLabel);
     798    }
     799}
     800
     801void ComboBoxSetting::addSelection(const QString &label, QString value,
     802                                   bool select, bool special_formatting)
     803{
    736804    if ((findSelection(label, value) < 0) && cbwidget)
    737805    {
    738806        resetMaxCount(cbwidget->count()+1);
    739807        cbwidget->insertItem(label);
    740808    }
    741809
     810    if (special_formatting)
     811    {
     812        changeOnSpecial = true;
     813        specialLabel = label;
     814    }
     815
    742816    SelectSetting::addSelection(label, value, select);
    743817
    744818    if (cbwidget && isSet)
     
    9551029    BooleanSetting::setHelpText(str);
    9561030}
    9571031
     1032QWidget* TristateCheckBoxSetting::configWidget(ConfigurationGroup *cg,
     1033                                               QWidget* parent,
     1034                                               const char* widgetName) {
     1035    widget = new MythCheckBox(parent, widgetName, true);
     1036    connect(widget, SIGNAL(destroyed(QObject*)),
     1037            this,   SLOT(widgetDeleted(QObject*)));
     1038
     1039    widget->setHelpText(getHelpText());
     1040    widget->setText(getLabel());
     1041    widget->setCheckState(tristateValue());
     1042    setValue(tristateValue());
     1043
     1044    connect(widget, SIGNAL(stateChanged(int)),
     1045            this, SLOT(setValue(int)));
     1046    connect(this, SIGNAL(valueChanged(int)),
     1047            this, SLOT(relayValueChanged(int)));
     1048
     1049    if (cg)
     1050        connect(widget, SIGNAL(changeHelpText(QString)), cg,
     1051                SIGNAL(changeHelpText(QString)));
     1052
     1053    return widget;
     1054}
     1055
     1056void TristateCheckBoxSetting::widgetInvalid(QObject *obj)
     1057{
     1058    widget = (widget == obj) ? NULL : widget;
     1059}
     1060
     1061void TristateCheckBoxSetting::setEnabled(bool fEnabled)
     1062{
     1063    TristateSetting::setEnabled(fEnabled);
     1064    if (widget)
     1065        widget->setEnabled(fEnabled);
     1066}
     1067
     1068void TristateCheckBoxSetting::setHelpText(const QString &str)
     1069{
     1070    if (widget)
     1071        widget->setHelpText(str);
     1072    TristateSetting::setHelpText(str);
     1073}
     1074
     1075const char *TristateSetting::kPartiallyCheckedString = "default";
     1076
     1077void TristateCheckBoxSetting::setValue(int check)
     1078{
     1079    adjustFont(widget, (check != Qt::Checked && check != Qt::Unchecked));
     1080    TristateSetting::setValue(check);
     1081    emit valueChanged(check);
     1082}
     1083
     1084void TristateSetting::setValue(int check)
     1085{
     1086    if (check == Qt::Checked)
     1087        Setting::setValue("1");
     1088    else if (check == Qt::Unchecked)
     1089        Setting::setValue("0");
     1090    else
     1091        Setting::setValue(kPartiallyCheckedString);
     1092    emit valueChanged(check);
     1093}
     1094
    9581095void AutoIncrementDBSetting::Save(QString table)
    9591096{
    9601097    if (intValue() == 0)
     
    11421279    addSelection(label, value, select);
    11431280}
    11441281
     1282void ImageSelectSetting::addDefaultSelection(const QString label,
     1283                                             const QString value,
     1284                                             const QString defaultValue,
     1285                                             bool select)
     1286{
     1287    for (unsigned i=0; i<values.size(); i++)
     1288    {
     1289        if (values[i] == defaultValue)
     1290        {
     1291            changeOnSpecial = true;
     1292            specialLabel = label;
     1293            images.push_back(new QImage(*images[i]));
     1294            addSelection(label, value, select);
     1295            return;
     1296        }
     1297    }
     1298}
     1299
    11451300ImageSelectSetting::~ImageSelectSetting()
    11461301{
    11471302    Teardown();
     
    11641319    bxwidget   = NULL;
    11651320    imagelabel = NULL;
    11661321    combo      = NULL;
     1322    labelWidget = NULL;
    11671323}
    11681324
    11691325void ImageSelectSetting::imageSet(int num)
     
    12111367        QLabel *label = new QLabel();
    12121368        label->setText(getLabel() + ":");
    12131369        layout->addWidget(label);
     1370        labelWidget = label;
    12141371    }
    12151372
    12161373    combo = new MythComboBox(false);
     
    12571414    connect(combo, SIGNAL(highlighted(int)), this, SLOT(imageSet(int)));
    12581415    connect(combo, SIGNAL(activated(int)), this, SLOT(setValue(int)));
    12591416    connect(combo, SIGNAL(activated(int)), this, SLOT(imageSet(int)));
     1417    connect(combo, SIGNAL(highlighted(const QString &)),
     1418            this, SLOT(changeLabel(const QString &)));
     1419    connect(combo, SIGNAL(activated(const QString &)),
     1420            this, SLOT(changeLabel(const QString &)));
    12601421
    12611422    connect(this, SIGNAL(selectionsCleared()),
    12621423            combo, SLOT(clear()));
     
    12671428
    12681429    bxwidget->setLayout(layout);
    12691430
     1431    changeLabel(GetLabel(current));
     1432
    12701433    return bxwidget;
    12711434}
    12721435
     1436void ImageSelectSetting::changeLabel(const QString &newLabel)
     1437{
     1438    if (changeOnSpecial)
     1439    {
     1440        adjustFont(labelWidget, specialLabel == newLabel);
     1441        adjustFont(combo,       specialLabel == newLabel);
     1442    }
     1443}
     1444
    12731445void ImageSelectSetting::widgetInvalid(QObject *obj)
    12741446{
    12751447    if (bxwidget == obj)
  • libs/libmyth/mythwidgets.cpp

     
    224224        else if (action == "DOWN")
    225225            focusNextPrevChild(true);
    226226        else if (action == "LEFT" || action == "RIGHT" || action == "SELECT")
    227             toggle();
     227        {
     228            if (isTristate())
     229            {
     230                Qt::CheckState newState =
     231                    (Qt::CheckState)(((int)checkState() + 1) % 3);
     232                setCheckState(newState);
     233            }
     234            else
     235                toggle();
     236        }
    228237        else
    229238            handled = false;
    230239    }
  • libs/libmyth/settings.h

     
    134134
    135135class MPUBLIC LineEditSetting : public Setting
    136136{
     137    Q_OBJECT
     138
    137139  protected:
    138     LineEditSetting(Storage *_storage, bool readwrite = true) :
     140    LineEditSetting(Storage *_storage, bool readwrite = true,
     141                    bool adjust_on_blank = false) :
    139142        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) { }
    141145
    142146  public:
    143147    virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent,
     
    159163
    160164    virtual void setHelpText(const QString &str);
    161165
     166  public slots:
     167    virtual void setValue(const QString &newValue);
     168
    162169  private:
    163170    QWidget      *bxwidget;
    164171    MythLineEdit *edit;
    165172    bool rw;
    166173    bool password_echo;
     174    bool adjustOnBlank;
     175    QWidget *labelWidget;
    167176};
    168177
    169178// TODO: set things up so that setting the value as a string emits
     
    219228  public:
    220229    SpinBoxSetting(Storage *_storage, int min, int max, int step,
    221230                   bool allow_single_step = false,
    222                    QString special_value_text = "");
     231                   QString special_value_text = "",
     232                   bool change_style_on_special = false);
    223233
    224234    virtual QWidget *configWidget(ConfigurationGroup *cg, QWidget *parent,
    225235                                  const char *widgetName = 0);
     
    248258    bool         relayEnabled;
    249259    bool         sstep;
    250260    QString      svtext;
     261    QLabel      *labelWidget;
     262    bool         changeOnSpecial;
    251263};
    252264
    253265class MPUBLIC SelectSetting : public Setting
     
    277289        { return (i < labels.size()) ? labels[i] : QString::null; }
    278290    virtual QString GetValue(uint i) const
    279291        { return (i < values.size()) ? values[i] : QString::null; }
     292    virtual QString GetValueLabel(const QString &value);
    280293
    281294signals:
    282295    void selectionAdded(const QString& label, QString value);
     
    318331protected:
    319332    ComboBoxSetting(Storage *_storage, bool _rw = false, int _step = 1) :
    320333        SelectSetting(_storage), rw(_rw),
    321         bxwidget(NULL), cbwidget(NULL), step(_step) { }
     334        bxwidget(NULL), cbwidget(NULL), changeOnSpecial(false),
     335        specialLabel(""), labelWidget(NULL), step(_step) { }
    322336
    323337public:
    324338    virtual void setValue(QString newValue);
     
    340354public slots:
    341355    void addSelection(const QString &label,
    342356                      QString value = QString::null,
    343                       bool select = false);
     357                      bool select = false,
     358                      bool special_formatting = false);
    344359    bool removeSelection(const QString &label,
    345360                         QString value = QString::null);
     361    virtual void changeLabel(const QString &newValue);
    346362    void editTextChanged(const QString &newText);
    347363
    348364private:
    349365    bool rw;
    350366    QWidget      *bxwidget;
    351367    MythComboBox *cbwidget;
     368    bool          changeOnSpecial;
     369    QString       specialLabel;
     370    QLabel       *labelWidget;
    352371
    353372protected:
    354373    int step;
     
    417436    ImageSelectSetting(Storage *_storage) :
    418437        SelectSetting(_storage),
    419438        bxwidget(NULL), imagelabel(NULL), combo(NULL),
    420         m_hmult(1.0f), m_wmult(1.0f) { }
     439        m_hmult(1.0f), m_wmult(1.0f),
     440        changeOnSpecial(false), specialLabel(""), labelWidget(NULL) { }
    421441    virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent,
    422442                                  const char* widgetName = 0);
    423443    virtual void widgetInvalid(QObject *obj);
     
    428448                                   QImage* image,
    429449                                   QString value=QString::null,
    430450                                   bool select=false);
     451    virtual void addDefaultSelection(const QString label,
     452                                     const QString value,
     453                                     const QString defaultValue,
     454                                     bool select);
    431455
    432456protected slots:
    433457    void imageSet(int);
     458    void changeLabel(const QString &newLabel);
    434459
    435460  protected:
    436461    void Teardown(void);
     
    442467    QLabel *imagelabel;
    443468    MythComboBox *combo;
    444469    float m_hmult, m_wmult;
     470    bool          changeOnSpecial;
     471    QString       specialLabel;
     472    QLabel       *labelWidget;
    445473};
    446474
    447475class MPUBLIC BooleanSetting : public Setting
     
    484512    MythCheckBox *widget;
    485513};
    486514
     515class MPUBLIC TristateSetting : public BooleanSetting
     516{
     517    Q_OBJECT
     518
     519  public:
     520    TristateSetting(Storage *_storage) : BooleanSetting(_storage) {}
     521
     522    Qt::CheckState tristateValue(void) const {
     523        if (getValue() == "0")
     524            return Qt::Unchecked;
     525        if (getValue() == "1")
     526            return Qt::Checked;
     527        return Qt::PartiallyChecked;
     528    }
     529
     530    static const char *kPartiallyCheckedString;
     531
     532public slots:
     533    virtual void setValue(/*Qt::CheckState*/int check);
     534
     535signals:
     536    void valueChanged(int);
     537};
     538
     539class MPUBLIC TristateCheckBoxSetting: public TristateSetting {
     540    Q_OBJECT
     541
     542public:
     543    TristateCheckBoxSetting(Storage *_storage) :
     544        TristateSetting(_storage), widget(NULL) { }
     545    virtual QWidget* configWidget(ConfigurationGroup *cg, QWidget* parent,
     546                                  const char* widgetName = 0);
     547    virtual void widgetInvalid(QObject*);
     548
     549    virtual void setEnabled(bool b);
     550
     551    virtual void setHelpText(const QString &str);
     552
     553
     554public slots:
     555    virtual void setValue(/*Qt::CheckState*/int check);
     556    virtual void relayValueChanged(int state) {
     557        if (widget)
     558            widget->setCheckState((Qt::CheckState)state);
     559    }
     560
     561protected:
     562    MythCheckBox *widget;
     563};
     564
    487565class MPUBLIC PathSetting : public ComboBoxSetting
    488566{
    489567public:
  • libs/libmyth/libmyth.pro

     
    6262SOURCES += mythrssmanager.cpp     netgrabbermanager.cpp
    6363SOURCES += rssparse.cpp           netutils.cpp
    6464
     65HEADERS += playsettings.h
     66SOURCES += playsettings.cpp
     67
    6568# remove when everything is switched to mythui
    6669SOURCES += virtualkeyboard_qt.cpp
    6770
  • libs/libmyth/mythconfiggroups.cpp

     
    476476                                            Configurable *target)
    477477{
    478478    VerifyLayout();
     479    bool isDuplicate = triggerMap.values().contains(target);
    479480    triggerMap[triggerValue] = target;
    480481
    481482    if (!configStack)
     
    485486        configStack->setSaveAll(isSaveAll);
    486487    }
    487488
    488     configStack->addChild(target);
     489    // Don't add a target as a child if it has already been added,
     490    // otherwise something goes wrong with signals in the child.
     491    if (!isDuplicate)
     492        configStack->addChild(target);
    489493}
    490494
    491495Setting *TriggeredConfigurationGroup::byName(const QString &settingName)
  • libs/libmyth/mythwidgets.h

     
    329329    Q_OBJECT
    330330
    331331  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    }
    334338    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    }
    337345
    338346    void setHelpText(const QString&);
    339347
  • programs/mythfrontend/globalsettings.cpp

     
    3838#include "mythconfig.h"
    3939#include "mythdirs.h"
    4040#include "mythuihelper.h"
     41#include "playsettings.h"
    4142
     43#define CREATE_CHECKBOX_SETTING(var, name, settings) \
     44    BooleanSetting *var; \
     45    if ((settings)) \
     46        var = new PlaySettingsCheckBox((name), (settings)); \
     47    else \
     48        var = new HostCheckBox((name))
     49
     50#define CREATE_COMBOBOX_SETTING(var, name, settings) \
     51    ComboBoxSetting *var; \
     52    if ((settings)) \
     53        var = new PlaySettingsComboBox((name), (settings)); \
     54    else \
     55        var = new HostComboBox((name))
     56
     57#define CREATE_COMBOBOX1_SETTING(var, name, settings, arg1) \
     58    ComboBoxSetting *var; \
     59    if ((settings)) \
     60        var = new PlaySettingsComboBox((name), (settings), (arg1)); \
     61    else \
     62        var = new HostComboBox((name), (arg1))
     63
     64#define CREATE_SPINBOX_SETTING(var, name, settings, arg1, arg2, arg3, arg4) \
     65    SpinBoxSetting *var; \
     66    if ((settings)) \
     67        var = new PlaySettingsSpinBox((name), (settings), (arg1), (arg2), (arg3), (arg4)); \
     68    else \
     69        var = new HostSpinBox((name), (arg1), (arg2), (arg3), (arg4))
     70
     71#define CREATE_LINEEDIT_SETTING(var, name, settings) \
     72    LineEditSetting *var; \
     73    if ((settings)) \
     74        var = new PlaySettingsLineEdit((name), (settings), ""); \
     75    else \
     76        var = new HostLineEdit((name))
     77
     78// For PlaySettings, use a SpinBox instead of a Slider so that a
     79// default value can be easily used.
     80#define CREATE_SLIDER_SETTING(var, name, settings, arg1, arg2, arg3) \
     81    BoundedIntegerSetting *var; \
     82    if ((settings)) \
     83        var = new PlaySettingsSpinBox((name), (settings), (arg1), (arg2), (arg3)); \
     84    else \
     85        var = new HostSlider((name), (arg1), (arg2), (arg3))
     86
     87#define CREATE_IMAGESELECT_SETTING(var, name, settings) \
     88    ImageSelectSetting *var; \
     89    if ((settings)) \
     90        var = new PlaySettingsImageSelect((name), (settings)); \
     91    else \
     92        var = new HostImageSelect((name))
     93
     94static Setting *wrap(Setting *obj, PlaySettings *settings,
     95                     bool twoLineLabel=false)
     96{
     97    if (!settings)
     98        return obj;
     99
     100    // Get the setting name
     101    PlaySettingsCombinedStorage *storage =
     102        dynamic_cast<PlaySettingsCombinedStorage *>(obj);
     103    const QString &name = storage->getName();
     104
     105    // Get the default value and label.  The label is  different
     106    // from the value for most object types.
     107    QString defaultValue = settings->GetSetting(name, "", true);
     108    QString defaultLabel(defaultValue);
     109    if (dynamic_cast<BooleanSetting *>(obj))
     110        defaultLabel = (defaultValue == "0" || defaultValue.isEmpty() ?
     111                        QObject::tr("disabled") : QObject::tr("enabled"));
     112    if (dynamic_cast<SpinBoxSetting *>(obj) && defaultValue.isEmpty())
     113        defaultLabel = "0";
     114    ComboBoxSetting *cb = dynamic_cast<ComboBoxSetting *>(obj);
     115    if (cb)
     116    {
     117        defaultLabel = cb->GetValueLabel(defaultValue);
     118        // Add the default selection to a ComboBox
     119        cb->addSelection(QString("(") + QObject::tr("default") + ")",
     120                         storage->getDefault(),
     121                         !settings->IsOverridden(name),
     122                         true);
     123    }
     124    ImageSelectSetting *is = dynamic_cast<ImageSelectSetting *>(obj);
     125    if (is)
     126    {
     127        defaultLabel = is->GetValueLabel(defaultValue);
     128        // Add the default selection to a ImageSelect
     129        is->addDefaultSelection(QString("(") + QObject::tr("default") + ")",
     130                                storage->getDefault(),
     131                                defaultValue,
     132                                !settings->IsOverridden(name));
     133    }
     134   
     135    // Change the help text to include the default and its source.
     136    QString helpPrefix;
     137    if (dynamic_cast<LineEditSetting *>(obj))
     138        helpPrefix = QObject::tr("Leave blank to keep default value");
     139    else
     140        helpPrefix = QObject::tr("Override default value");
     141    helpPrefix += " (" + defaultLabel + ") ";
     142    QString inheritsFrom = settings->InheritsFrom(name);
     143    if (inheritsFrom.isNull())
     144        helpPrefix += QObject::tr("from global settings");
     145    else
     146        helpPrefix += QObject::tr("from group") + " " + inheritsFrom;
     147    helpPrefix += ". " + obj->getHelpText();
     148    obj->setHelpText(helpPrefix);
     149
     150    // Change the label to include the default.
     151    obj->setLabel(obj->getLabel() + (twoLineLabel ? "\n" : "") +
     152                  " (" + defaultLabel + ")");
     153
     154    return obj;
     155}
     156
    42157class TriggeredItem : public TriggeredConfigurationGroup
    43158{
    44159  public:
     
    594709    return gs;
    595710}
    596711
    597 static HostCheckBox *DecodeExtraAudio()
     712static Setting *DecodeExtraAudio(PlaySettings *settings)
    598713{
    599     HostCheckBox *gc = new HostCheckBox("DecodeExtraAudio");
     714    CREATE_CHECKBOX_SETTING(gc, "DecodeExtraAudio", settings);
    600715    gc->setLabel(QObject::tr("Extra audio buffering"));
    601716    gc->setValue(true);
    602717    gc->setHelpText(QObject::tr("Enable this setting if MythTV is playing "
     
    605720                    "effect on framegrabbers (MPEG-4/RTJPEG). MythTV will "
    606721                    "keep extra audio data in its internal buffers to "
    607722                    "workaround this bug."));
    608     return gc;
     723    return wrap(gc, settings);
    609724}
    610725
    611 static HostComboBox *PIPLocationComboBox()
     726static Setting *PIPLocationComboBox(PlaySettings *settings)
    612727{
    613     HostComboBox *gc = new HostComboBox("PIPLocation");
     728    CREATE_COMBOBOX_SETTING(gc, "PIPLocation", settings);
    614729    gc->setLabel(QObject::tr("PIP video location"));
    615730    for (uint loc = 0; loc < kPIP_END; ++loc)
    616731        gc->addSelection(toString((PIPLocation) loc), QString::number(loc));
    617732    gc->setHelpText(QObject::tr("Location of PIP Video window."));
    618     return gc;
     733    return wrap(gc, settings);
    619734}
    620735
    621736static HostComboBox *DisplayRecGroup()
     
    701816    return gc;
    702817}
    703818
    704 static HostCheckBox *SmartForward()
     819static Setting *SmartForward(PlaySettings *settings)
    705820{
    706     HostCheckBox *gc = new HostCheckBox("SmartForward");
     821    CREATE_CHECKBOX_SETTING(gc, "SmartForward", settings);
    707822    gc->setLabel(QObject::tr("Smart fast forwarding"));
    708823    gc->setValue(false);
    709824    gc->setHelpText(QObject::tr("If enabled, then immediately after "
    710825                    "rewinding, only skip forward the same amount as "
    711826                    "skipping backwards."));
    712     return gc;
     827    return wrap(gc, settings);
    713828}
    714829
    715 static HostCheckBox *ExactSeeking()
     830static Setting *ExactSeeking(PlaySettings *settings)
    716831{
    717     HostCheckBox *gc = new HostCheckBox("ExactSeeking");
     832    CREATE_CHECKBOX_SETTING(gc, "ExactSeeking", settings);
    718833    gc->setLabel(QObject::tr("Seek to exact frame"));
    719834    gc->setValue(false);
    720835    gc->setHelpText(QObject::tr("If enabled, seeking is frame exact, but "
    721836                    "slower."));
    722     return gc;
     837    return wrap(gc, settings);
    723838}
    724839
    725840static GlobalComboBox *CommercialSkipMethod()
     
    747862    return gc;
    748863}
    749864
    750 static HostComboBox *AutoCommercialSkip()
     865static Setting *AutoCommercialSkip(PlaySettings *settings)
    751866{
    752     HostComboBox *gc = new HostComboBox("AutoCommercialSkip");
     867    CREATE_COMBOBOX_SETTING(gc, "AutoCommercialSkip", settings);
    753868    gc->setLabel(QObject::tr("Automatically skip commercials"));
    754869    gc->addSelection(QObject::tr("Off"), "0");
    755870    gc->addSelection(QObject::tr("Notify, but do not skip"), "2");
     
    758873                    "have been flagged during automatic commercial detection "
    759874                    "or by the mythcommflag program, or just notify that a "
    760875                    "commercial has been detected."));
    761     return gc;
     876    return wrap(gc, settings);
    762877}
    763878
    764879static GlobalCheckBox *AutoCommercialFlag()
     
    844959    return bc;
    845960}
    846961
    847 static HostSpinBox *CommRewindAmount()
     962static Setting *CommRewindAmount(PlaySettings *settings)
    848963{
    849     HostSpinBox *gs = new HostSpinBox("CommRewindAmount", 0, 10, 1);
     964    CREATE_SPINBOX_SETTING(gs, "CommRewindAmount", settings, 0, 10, 1, false);
    850965    gs->setLabel(QObject::tr("Commercial skip automatic rewind amount (secs)"));
    851966    gs->setHelpText(QObject::tr("MythTV will automatically rewind "
    852967                    "this many seconds after performing a commercial skip."));
    853968    gs->setValue(0);
    854     return gs;
     969    return wrap(gs, settings);
    855970}
    856971
    857 static HostSpinBox *CommNotifyAmount()
     972static Setting *CommNotifyAmount(PlaySettings *settings)
    858973{
    859     HostSpinBox *gs = new HostSpinBox("CommNotifyAmount", 0, 10, 1);
     974    CREATE_SPINBOX_SETTING(gs, "CommNotifyAmount", settings, 0, 10, 1, false);
    860975    gs->setLabel(QObject::tr("Commercial skip notify amount (secs)"));
    861976    gs->setHelpText(QObject::tr("MythTV will act like a commercial "
    862977                    "begins this many seconds early. This can be useful "
    863978                    "when commercial notification is used in place of "
    864979                    "automatic skipping."));
    865980    gs->setValue(0);
    866     return gs;
     981    return wrap(gs, settings);
    867982}
    868983
    869984static GlobalSpinBox *MaximumCommercialSkip()
     
    16651780    labels[j]->setValue(label_i);
    16661781}
    16671782
    1668 PlaybackProfileConfigs::PlaybackProfileConfigs(const QString &str) :
     1783PlaybackProfileConfigs::PlaybackProfileConfigs(const QString &str,
     1784                                               PlaySettings *settings) :
    16691785    TriggeredConfigurationGroup(false, true,  true, true,
    16701786                                false, false, true, true), grouptrigger(NULL)
    16711787{
    16721788    setLabel(QObject::tr("Playback Profiles") + str);
     1789    if (settings)
     1790        setLabel(QObject::tr("Playback group settings for ") +
     1791                 settings->mGroupName + " - " +
     1792                 getLabel());
    16731793
    16741794    QString host = gCoreContext->GetHostName();
    16751795    QStringList profiles = VideoDisplayProfile::GetProfiles(host);
     
    16971817        profiles = VideoDisplayProfile::GetProfiles(host);
    16981818    }
    16991819
    1700     QString profile = VideoDisplayProfile::GetDefaultProfileName(host);
     1820    QString profile = VideoDisplayProfile::GetDefaultProfileName(host, settings);
    17011821    if (!profiles.contains(profile))
    17021822    {
    17031823        profile = (profiles.contains("Normal")) ? "Normal" : profiles[0];
    17041824        VideoDisplayProfile::SetDefaultProfileName(profile, host);
    17051825    }
    17061826
    1707     grouptrigger = new HostComboBox("DefaultVideoPlaybackProfile");
     1827    CREATE_COMBOBOX_SETTING(gs, "DefaultVideoPlaybackProfile", settings);
     1828    grouptrigger = gs;
    17081829    grouptrigger->setLabel(QObject::tr("Current Video Playback Profile"));
    17091830    QStringList::const_iterator it;
    17101831    for (it = profiles.begin(); it != profiles.end(); ++it)
    17111832        grouptrigger->addSelection(ProgramInfo::i18n(*it), *it);
     1833    if (settings)
     1834    {
     1835        addChild(wrap(grouptrigger, settings));
     1836        return;
     1837    }
    17121838
    17131839    HorizontalConfigurationGroup *grp =
    17141840        new HorizontalConfigurationGroup(false, false, true, true);
     
    18411967    return gc;
    18421968}
    18431969
    1844 static HostSpinBox *FFRewReposTime()
     1970static Setting *FFRewReposTime(PlaySettings *settings)
    18451971{
    1846     HostSpinBox *gs = new HostSpinBox("FFRewReposTime", 0, 200, 5);
     1972    CREATE_SPINBOX_SETTING(gs, "FFRewReposTime", settings, 0, 200, 5, false);
    18471973    gs->setLabel(QObject::tr("Fast forward/rewind reposition amount"));
    18481974    gs->setValue(100);
    18491975    gs->setHelpText(QObject::tr("When exiting sticky keys fast forward/rewind "
     
    18511977                    "resuming normal playback. This "
    18521978                    "compensates for the reaction time between seeing "
    18531979                    "where to resume playback and actually exiting seeking."));
    1854     return gs;
     1980    return wrap(gs, settings);
    18551981}
    18561982
    1857 static HostCheckBox *FFRewReverse()
     1983static Setting *FFRewReverse(PlaySettings *settings)
    18581984{
    1859     HostCheckBox *gc = new HostCheckBox("FFRewReverse");
     1985    CREATE_CHECKBOX_SETTING(gc, "FFRewReverse", settings);
    18601986    gc->setLabel(QObject::tr("Reverse direction in fast forward/rewind"));
    18611987    gc->setValue(true);
    18621988    gc->setHelpText(QObject::tr("If enabled, pressing the sticky rewind key "
     
    18641990                    "vice versa. If disabled, it will decrease the "
    18651991                    "current speed or switch to play mode if "
    18661992                    "the speed can't be decreased further."));
    1867     return gc;
     1993    return wrap(gc, settings);
    18681994}
    18691995
    18701996static HostComboBox *MenuTheme()
     
    19152041    return gc;
    19162042}
    19172043
    1918 static HostSpinBox *OSDCC708TextZoomPercentage(void)
     2044static Setting *OSDCC708TextZoomPercentage(PlaySettings *settings)
    19192045{
    1920     HostSpinBox *gs = new HostSpinBox("OSDCC708TextZoom", 50, 200, 5);
     2046    CREATE_SPINBOX_SETTING(gs, "OSDCC708TextZoom", settings,
     2047                           50, 200, 5, false);
    19212048    gs->setLabel(QObject::tr("Subtitle text zoom percentage"));
    19222049    gs->setValue(100);
    19232050    gs->setHelpText(QObject::tr("Use this to enlarge or shrink text based subtitles."));
    19242051
    1925     return gs;
     2052    return wrap(gs, settings);
    19262053}
    19272054
    19282055static HostComboBox *SubtitleFont()
     
    19422069    return hcb;
    19432070}
    19442071
    1945 static HostComboBox *SubtitleCodec()
     2072static Setting *SubtitleCodec(PlaySettings *settings)
    19462073{
    1947     HostComboBox *gc = new HostComboBox("SubtitleCodec");
     2074    CREATE_COMBOBOX_SETTING(gc, "SubtitleCodec", settings);
    19482075
    19492076    gc->setLabel(QObject::tr("Subtitle Codec"));
    19502077    QList<QByteArray> list = QTextCodec::availableCodecs();
     
    19542081        gc->addSelection(val, val, val.toLower() == "utf-8");
    19552082    }
    19562083
    1957     return gc;
     2084    return wrap(gc, settings);
    19582085}
    19592086
    19602087static HostComboBox *ChannelOrdering()
     
    19662093    return gc;
    19672094}
    19682095
    1969 static HostSpinBox *VertScanPercentage()
     2096static Setting *VertScanPercentage(PlaySettings *settings)
    19702097{
    1971     HostSpinBox *gs = new HostSpinBox("VertScanPercentage", -100, 100, 1);
     2098    CREATE_SPINBOX_SETTING(gs, "VertScanPercentage", settings,
     2099                           -100, 100, 1, false);
    19722100    gs->setLabel(QObject::tr("Vertical scaling"));
    19732101    gs->setValue(0);
    19742102    gs->setHelpText(QObject::tr(
    19752103                        "Adjust this if the image does not fill your "
    19762104                        "screen vertically. Range -100% to 100%"));
    1977     return gs;
     2105    return wrap(gs, settings);
    19782106}
    19792107
    1980 static HostSpinBox *HorizScanPercentage()
     2108static Setting *HorizScanPercentage(PlaySettings *settings)
    19812109{
    1982     HostSpinBox *gs = new HostSpinBox("HorizScanPercentage", -100, 100, 1);
     2110    CREATE_SPINBOX_SETTING(gs, "HorizScanPercentage", settings,
     2111                           -100, 100, 1, false);
    19832112    gs->setLabel(QObject::tr("Horizontal scaling"));
    19842113    gs->setValue(0);
    19852114    gs->setHelpText(QObject::tr(
    19862115                        "Adjust this if the image does not fill your "
    19872116                        "screen horizontally. Range -100% to 100%"));
    1988     return gs;
     2117    return wrap(gs, settings);
    19892118};
    19902119
    1991 static HostSpinBox *XScanDisplacement()
     2120static Setting *XScanDisplacement(PlaySettings *settings)
    19922121{
    1993     HostSpinBox *gs = new HostSpinBox("XScanDisplacement", -50, 50, 1);
     2122    CREATE_SPINBOX_SETTING(gs, "XScanDisplacement", settings,
     2123                           -50, 50, 1, false);
    19942124    gs->setLabel(QObject::tr("Scan displacement (X)"));
    19952125    gs->setValue(0);
    19962126    gs->setHelpText(QObject::tr("Adjust this to move the image horizontally."));
    1997     return gs;
     2127    return wrap(gs, settings);
    19982128}
    19992129
    2000 static HostSpinBox *YScanDisplacement()
     2130static Setting *YScanDisplacement(PlaySettings *settings)
    20012131{
    2002     HostSpinBox *gs = new HostSpinBox("YScanDisplacement", -50, 50, 1);
     2132    CREATE_SPINBOX_SETTING(gs, "YScanDisplacement", settings,
     2133                           -50, 50, 1, false);
    20032134    gs->setLabel(QObject::tr("Scan displacement (Y)"));
    20042135    gs->setValue(0);
    20052136    gs->setHelpText(QObject::tr("Adjust this to move the image vertically."));
    2006     return gs;
     2137    return wrap(gs, settings);
    20072138};
    20082139
    2009 static HostCheckBox *CCBackground()
     2140static Setting *CCBackground(PlaySettings *settings)
    20102141{
    2011     HostCheckBox *gc = new HostCheckBox("CCBackground");
     2142    CREATE_CHECKBOX_SETTING(gc, "CCBackground", settings);
    20122143    gc->setLabel(QObject::tr("Black background for closed captioning"));
    20132144    gc->setValue(false);
    20142145    gc->setHelpText(QObject::tr(
    20152146                        "If enabled, captions will be displayed "
    20162147                        "as white text over a black background "
    20172148                        "for better contrast."));
    2018     return gc;
     2149    return wrap(gc, settings);
    20192150}
    20202151
    2021 static HostCheckBox *DefaultCCMode()
     2152static Setting *DefaultCCMode(PlaySettings *settings)
    20222153{
    2023     HostCheckBox *gc = new HostCheckBox("DefaultCCMode");
     2154    CREATE_CHECKBOX_SETTING(gc, "DefaultCCMode", settings);
    20242155    gc->setLabel(QObject::tr("Always display closed captioning or subtitles"));
    20252156    gc->setValue(false);
    20262157    gc->setHelpText(QObject::tr(
     
    20282159                        "when playing back recordings or watching "
    20292160                        "Live TV. Closed Captioning can be turned on or off "
    20302161                        "by pressing \"T\" during playback."));
    2031     return gc;
     2162    return wrap(gc, settings);
    20322163}
    20332164
    2034 static HostCheckBox *PreferCC708()
     2165static Setting *PreferCC708(PlaySettings *settings)
    20352166{
    2036     HostCheckBox *gc = new HostCheckBox("Prefer708Captions");
     2167    CREATE_CHECKBOX_SETTING(gc, "Prefer708Captions", settings);
    20372168    gc->setLabel(QObject::tr("Prefer EIA-708 over EIA-608 captions"));
    20382169    gc->setValue(true);
    20392170    gc->setHelpText(
     
    20412172            "If enabled, the newer EIA-708 captions will be preferred over "
    20422173            "the older EIA-608 captions in ATSC streams."));
    20432174
    2044     return gc;
     2175    return wrap(gc, settings);
    20452176}
    20462177
    2047 static HostCheckBox *EnableMHEG()
     2178static Setting *EnableMHEG(PlaySettings *settings)
    20482179{
    2049     HostCheckBox *gc = new HostCheckBox("EnableMHEG");
     2180    CREATE_CHECKBOX_SETTING(gc, "EnableMHEG", settings);
    20502181    gc->setLabel(QObject::tr("Enable interactive TV"));
    20512182    gc->setValue(false);
    20522183    gc->setHelpText(QObject::tr(
    20532184                        "If enabled, interactive TV applications (MHEG) will "
    20542185                        "be activated. This is used for teletext and logos for "
    20552186                        "radio and channels that are currently off-air."));
    2056     return gc;
     2187    return wrap(gc, settings);
    20572188}
    20582189
    2059 static HostCheckBox *PersistentBrowseMode()
     2190static Setting *PersistentBrowseMode(PlaySettings *settings)
    20602191{
    2061     HostCheckBox *gc = new HostCheckBox("PersistentBrowseMode");
     2192    CREATE_CHECKBOX_SETTING(gc, "PersistentBrowseMode", settings);
    20622193    gc->setLabel(QObject::tr("Always use browse mode in Live TV"));
    20632194    gc->setValue(true);
    20642195    gc->setHelpText(
    20652196        QObject::tr(
    20662197            "If enabled, browse mode will automatically be activated "
    20672198            "whenever you use channel up/down while watching Live TV."));
    2068     return gc;
     2199    return wrap(gc, settings);
    20692200}
    20702201
    2071 static HostCheckBox *BrowseAllTuners()
     2202static Setting *BrowseAllTuners(PlaySettings *settings)
    20722203{
    2073     HostCheckBox *gc = new HostCheckBox("BrowseAllTuners");
     2204    CREATE_CHECKBOX_SETTING(gc, "BrowseAllTuners", settings);
    20742205    gc->setLabel(QObject::tr("Browse all channels"));
    20752206    gc->setValue(false);
    20762207    gc->setHelpText(
     
    20782209            "If enabled, browse mode will shows channels on all "
    20792210            "available recording devices, instead of showing "
    20802211            "channels on just the current recorder."));
    2081     return gc;
     2212    return wrap(gc, settings);
    20822213}
    20832214
    2084 static HostCheckBox *ClearSavedPosition()
     2215static Setting *ClearSavedPosition(PlaySettings *settings)
    20852216{
    2086     HostCheckBox *gc = new HostCheckBox("ClearSavedPosition");
     2217    CREATE_CHECKBOX_SETTING(gc, "ClearSavedPosition", settings);
    20872218    gc->setLabel(QObject::tr("Clear bookmark on playback"));
    20882219    gc->setValue(true);
    20892220    gc->setHelpText(QObject::tr("If enabled, automatically clear the "
    20902221                    "bookmark on a recording when the recording is played "
    20912222                    "back. If disabled, you can mark the beginning with "
    20922223                    "rewind then save position."));
    2093     return gc;
     2224    return wrap(gc, settings);
    20942225}
    20952226
    2096 static HostCheckBox *AltClearSavedPosition()
     2227static Setting *AltClearSavedPosition(PlaySettings *settings)
    20972228{
    2098     HostCheckBox *gc = new HostCheckBox("AltClearSavedPosition");
     2229    CREATE_CHECKBOX_SETTING(gc, "AltClearSavedPosition", settings);
    20992230    gc->setLabel(QObject::tr("Alternate clear and save bookmark"));
    21002231    gc->setValue(true);
    21012232    gc->setHelpText(QObject::tr("During playback the SELECT key "
     
    21032234                    "Saved\" and \"Bookmark Cleared\". If disabled, the "
    21042235                    "SELECT key will save the current position for each "
    21052236                    "keypress."));
    2106     return gc;
     2237    return wrap(gc, settings);
    21072238}
    21082239
    21092240#if defined(USING_XV) || defined(USING_OPENGL_VIDEO) || defined(USING_VDPAU)
    2110 static HostCheckBox *UsePicControls()
     2241static Setting *UsePicControls(PlaySettings *settings)
    21112242{
    2112     HostCheckBox *gc = new HostCheckBox("UseOutputPictureControls");
     2243    CREATE_CHECKBOX_SETTING(gc, "UseOutputPictureControls", settings);
    21132244    gc->setLabel(QObject::tr("Enable picture controls"));
    21142245    gc->setValue(false);
    21152246    gc->setHelpText(
    21162247        QObject::tr(
    21172248            "If enabled, MythTV attempts to initialize picture controls "
    21182249            "(brightness, contrast, etc.) that are applied during playback."));
    2119     return gc;
     2250    return wrap(gc, settings);
    21202251}
    21212252#endif
    21222253
    21232254// This currently does not work
    21242255/*
    2125 static HostLineEdit *UDPNotifyPort()
     2256static Setting *UDPNotifyPort(PlaySettings *settings)
    21262257{
    2127     HostLineEdit *ge = new HostLineEdit("UDPNotifyPort");
     2258    CREATE_LINEEDIT_SETTING(ge, "UDPNotifyPort", settings);
    21282259    ge->setLabel(QObject::tr("UDP notify port"));
    21292260    ge->setValue("6948");
    21302261    ge->setHelpText(QObject::tr("During playback, MythTV will listen for "
    21312262                    "connections from the \"mythtvosd\" or \"mythudprelay\" "
    21322263                    "programs on this port. For additional information, see "
    21332264                    "http://www.mythtv.org/wiki/MythNotify ."));
    2134     return ge;
     2265    return wrap(ge, settings);
    21352266}
    21362267*/
    21372268
    2138 static HostComboBox *PlaybackExitPrompt()
     2269static Setting *PlaybackExitPrompt(PlaySettings *settings)
    21392270{
    2140     HostComboBox *gc = new HostComboBox("PlaybackExitPrompt");
     2271    CREATE_COMBOBOX_SETTING(gc, "PlaybackExitPrompt", settings);
    21412272    gc->setLabel(QObject::tr("Action on playback exit"));
    21422273    gc->addSelection(QObject::tr("Just exit"), "0");
    21432274    gc->addSelection(QObject::tr("Save position and exit"), "2");
     
    21482279                    "when you exit playback mode. The options available will "
    21492280                    "allow you to save your position, delete the "
    21502281                    "recording, or continue watching."));
    2151     return gc;
     2282    return wrap(gc, settings);
    21522283}
    21532284
    2154 static HostCheckBox *EndOfRecordingExitPrompt()
     2285static Setting *EndOfRecordingExitPrompt(PlaySettings *settings)
    21552286{
    2156     HostCheckBox *gc = new HostCheckBox("EndOfRecordingExitPrompt");
     2287    CREATE_CHECKBOX_SETTING(gc, "EndOfRecordingExitPrompt", settings);
    21572288    gc->setLabel(QObject::tr("Prompt at end of recording"));
    21582289    gc->setValue(false);
    21592290    gc->setHelpText(QObject::tr("If enabled, a menu will be displayed allowing "
    21602291                    "you to delete the recording when it has finished "
    21612292                    "playing."));
    2162     return gc;
     2293    return wrap(gc, settings);
    21632294}
    21642295
    2165 static HostCheckBox *JumpToProgramOSD()
     2296static Setting *JumpToProgramOSD(PlaySettings *settings)
    21662297{
    2167     HostCheckBox *gc = new HostCheckBox("JumpToProgramOSD");
     2298    CREATE_CHECKBOX_SETTING(gc, "JumpToProgramOSD", settings);
    21682299    gc->setLabel(QObject::tr("Jump to program OSD"));
    21692300    gc->setValue(true);
    21702301    gc->setHelpText(QObject::tr(
     
    21732304                        "'Watch Recording' screen when 'Jump to Program' "
    21742305                        "is activated. If enabled, the recordings are shown "
    21752306                        "in the OSD"));
    2176     return gc;
     2307    return wrap(gc, settings);
    21772308}
    21782309
    2179 static HostCheckBox *ContinueEmbeddedTVPlay()
     2310static Setting *ContinueEmbeddedTVPlay(PlaySettings *settings)
    21802311{
    2181     HostCheckBox *gc = new HostCheckBox("ContinueEmbeddedTVPlay");
     2312    CREATE_CHECKBOX_SETTING(gc, "ContinueEmbeddedTVPlay", settings);
    21822313    gc->setLabel(QObject::tr("Continue playback when embedded"));
    21832314    gc->setValue(false);
    21842315    gc->setHelpText(QObject::tr(
     
    21862317                    "is embedded in the upcoming program list or recorded "
    21872318                    "list. The default is to pause the recorded show when "
    21882319                    "embedded."));
    2189     return gc;
     2320    return wrap(gc, settings);
    21902321}
    21912322
    2192 static HostCheckBox *AutomaticSetWatched()
     2323static Setting *AutomaticSetWatched(PlaySettings *settings)
    21932324{
    2194     HostCheckBox *gc = new HostCheckBox("AutomaticSetWatched");
     2325    CREATE_CHECKBOX_SETTING(gc, "AutomaticSetWatched", settings);
    21952326    gc->setLabel(QObject::tr("Automatically mark a recording as watched"));
    21962327    gc->setValue(false);
    21972328    gc->setHelpText(QObject::tr("If enabled, when you exit near the end of a "
     
    21992330                    "detection is not foolproof, so do not enable this "
    22002331                    "setting if you don't want an unwatched recording marked "
    22012332                    "as watched."));
    2202     return gc;
     2333    return wrap(gc, settings);
    22032334}
    22042335
    22052336static HostSpinBox *LiveTVIdleTimeout()
     
    23992530    return gc;
    24002531}
    24012532
    2402 static HostComboBox *LetterboxingColour()
     2533static Setting *LetterboxingColour(PlaySettings *settings)
    24032534{
    2404     HostComboBox *gc = new HostComboBox("LetterboxColour");
     2535    CREATE_COMBOBOX_SETTING(gc, "LetterboxColour", settings);
    24052536    gc->setLabel(QObject::tr("Letterboxing color"));
    24062537    for (int m = kLetterBoxColour_Black; m < kLetterBoxColour_END; ++m)
    24072538        gc->addSelection(toString((LetterBoxColour)m), QString::number(m));
     
    24112542            "letterboxing, but those with plasma screens may prefer gray "
    24122543            "to minimize burn-in.") + " " +
    24132544        QObject::tr("Currently only works with XVideo video renderer."));
    2414     return gc;
     2545    return wrap(gc, settings);
    24152546}
    24162547
    2417 static HostComboBox *AspectOverride()
     2548static Setting *AspectOverride(PlaySettings *settings)
    24182549{
    2419     HostComboBox *gc = new HostComboBox("AspectOverride");
     2550    CREATE_COMBOBOX_SETTING(gc, "AspectOverride", settings);
    24202551    gc->setLabel(QObject::tr("Video aspect override"));
    24212552    for (int m = kAspect_Off; m < kAspect_END; ++m)
    24222553        gc->addSelection(toString((AspectOverrideMode)m), QString::number(m));
     
    24242555                        "When enabled, these will override the aspect "
    24252556                        "ratio specified by any broadcaster for all "
    24262557                        "video streams."));
    2427     return gc;
     2558    return wrap(gc, settings);
    24282559}
    24292560
    2430 static HostComboBox *AdjustFill()
     2561static Setting *AdjustFill(PlaySettings *settings)
    24312562{
    2432     HostComboBox *gc = new HostComboBox("AdjustFill");
     2563    CREATE_COMBOBOX_SETTING(gc, "AdjustFill", settings);
    24332564    gc->setLabel(QObject::tr("Zoom"));
    24342565    gc->addSelection(toString(kAdjustFill_AutoDetect_DefaultOff),
    24352566                     QString::number(kAdjustFill_AutoDetect_DefaultOff));
     
    24402571    gc->setHelpText(QObject::tr(
    24412572                        "When enabled, these will apply a predefined "
    24422573                        "zoom to all video playback in MythTV."));
    2443     return gc;
     2574    return wrap(gc, settings);
    24442575}
    24452576
    24462577// Theme settings
     
    33663497    return gs;
    33673498}
    33683499
    3369 static HostCheckBox *RealtimePriority()
     3500static Setting *RealtimePriority(PlaySettings *settings)
    33703501{
    3371     HostCheckBox *gc = new HostCheckBox("RealtimePriority");
     3502    CREATE_CHECKBOX_SETTING(gc, "RealtimePriority", settings);
    33723503    gc->setLabel(QObject::tr("Enable realtime priority threads"));
    33733504    gc->setHelpText(QObject::tr("When running mythfrontend with root "
    33743505                    "privileges, some threads can be given enhanced priority. "
    33753506                    "Disable this if mythfrontend freezes during video "
    33763507                    "playback."));
    33773508    gc->setValue(true);
    3378     return gc;
     3509    return wrap(gc, settings, false);
    33793510}
    33803511
    33813512static HostCheckBox *EnableMediaMon()
     
    35323663
    35333664#ifdef USING_OPENGL_VSYNC
    35343665/*
    3535 static HostCheckBox *UseOpenGLVSync()
     3666static Setting *UseOpenGLVSync(PlaySettings *settings)
    35363667{
    3537     HostCheckBox *gc = new HostCheckBox("UseOpenGLVSync");
     3668    CREATE_CHECKBOX_SETTING(gc, "UseOpenGLVSync", settings);
    35383669    gc->setLabel(QObject::tr("Enable OpenGL vertical sync for timing"));
    35393670    gc->setValue(false);
    35403671    gc->setHelpText(QObject::tr(
    35413672                        "If supported by your hardware/drivers, "
    35423673                        "MythTV will use OpenGL vertical syncing for "
    35433674                        "video timing, reducing frame jitter."));
    3544     return gc;
     3675    return wrap(gc, settings);
    35453676}
    35463677*/
    35473678#endif
     
    39684099    return gc;
    39694100}
    39704101
    3971 MainGeneralSettings::MainGeneralSettings()
     4102MainGeneralSettings::MainGeneralSettings(PlaySettings *settings,
     4103                                         ConfigurationWizard *base)
    39724104{
     4105    if (!settings)
     4106    {
    39734107    DatabaseSettings::addDatabaseSettings(this);
    39744108
    39754109    VerticalConfigurationGroup *pin =
     
    40224156    remotecontrol->addChild(NetworkControlEnabled());
    40234157    remotecontrol->addChild(NetworkControlPort());
    40244158    addChild(remotecontrol);
     4159    }
    40254160}
    40264161
    4027 PlaybackSettings::PlaybackSettings()
     4162PlaybackSettings::PlaybackSettings(PlaySettings *settings,
     4163                                   ConfigurationWizard *base)
    40284164{
    40294165    uint i = 0, total = 8;
    40304166#if CONFIG_DARWIN
    40314167    total += 2;
    40324168#endif // USING_DARWIN
     4169    if (settings)
     4170        total -= 3;
    40334171
    40344172
    40354173    VerticalConfigurationGroup* general1 =
    40364174        new VerticalConfigurationGroup(false);
    40374175    general1->setLabel(QObject::tr("General Playback") +
    40384176                      QString(" (%1/%2)").arg(++i).arg(total));
     4177    if (settings)
     4178        general1->setLabel(QObject::tr("Playback group settings for ") +
     4179                           settings->mGroupName + " - " +
     4180                           general1->getLabel());
    40394181
    40404182    HorizontalConfigurationGroup *columns =
    40414183        new HorizontalConfigurationGroup(false, false, true, true);
    40424184
    40434185    VerticalConfigurationGroup *column1 =
    40444186        new VerticalConfigurationGroup(false, false, true, true);
    4045     column1->addChild(RealtimePriority());
    4046     column1->addChild(DecodeExtraAudio());
    4047     column1->addChild(JumpToProgramOSD());
     4187    if (!settings)
     4188        column1->addChild(RealtimePriority(settings));
     4189    column1->addChild(DecodeExtraAudio(settings));
     4190    column1->addChild(JumpToProgramOSD(settings));
    40484191    columns->addChild(column1);
    40494192
    40504193    VerticalConfigurationGroup *column2 =
    40514194        new VerticalConfigurationGroup(false, false, true, true);
    4052     column2->addChild(ClearSavedPosition());
    4053     column2->addChild(AltClearSavedPosition());
    4054     column2->addChild(AutomaticSetWatched());
    4055     column2->addChild(ContinueEmbeddedTVPlay());
     4195    column2->addChild(ClearSavedPosition(settings));
     4196    column2->addChild(AltClearSavedPosition(settings));
     4197    column2->addChild(AutomaticSetWatched(settings));
     4198    column2->addChild(ContinueEmbeddedTVPlay(settings));
    40564199    columns->addChild(column2);
    40574200
    40584201    general1->addChild(columns);
    4059     general1->addChild(LiveTVIdleTimeout());
     4202    if (!settings)
     4203        general1->addChild(LiveTVIdleTimeout());
    40604204#ifdef USING_OPENGL_VSYNC
    4061     //general1->addChild(UseOpenGLVSync());
     4205    //general1->addChild(UseOpenGLVSync(settings));
    40624206#endif // USING_OPENGL_VSYNC
    40634207#if defined(USING_XV) || defined(USING_OPENGL_VIDEO) || defined(USING_VDPAU)
    4064     general1->addChild(UsePicControls());
     4208    general1->addChild(UsePicControls(settings));
    40654209#endif // USING_XV
    4066     addChild(general1);
     4210    if (base)
     4211        base->addChild(general1);
     4212    else
     4213        addChild(general1);
    40674214
    40684215    VerticalConfigurationGroup* general2 =
    40694216        new VerticalConfigurationGroup(false);
    40704217    general2->setLabel(QObject::tr("General Playback") +
    40714218                      QString(" (%1/%2)").arg(++i).arg(total));
     4219    if (settings)
     4220        general2->setLabel(QObject::tr("Playback group settings for ") +
     4221                           settings->mGroupName + " - " +
     4222                           general2->getLabel());
    40724223
    40734224    HorizontalConfigurationGroup* oscan =
    40744225        new HorizontalConfigurationGroup(false, false, true, true);
     
    40764227        new VerticalConfigurationGroup(false, false, true, true);
    40774228    VerticalConfigurationGroup *ocol2 =
    40784229        new VerticalConfigurationGroup(false, false, true, true);
    4079     ocol1->addChild(VertScanPercentage());
    4080     ocol1->addChild(YScanDisplacement());
    4081     ocol2->addChild(HorizScanPercentage());
    4082     ocol2->addChild(XScanDisplacement());
     4230    ocol1->addChild(VertScanPercentage(settings));
     4231    ocol1->addChild(YScanDisplacement(settings));
     4232    ocol2->addChild(HorizScanPercentage(settings));
     4233    ocol2->addChild(XScanDisplacement(settings));
    40834234    oscan->addChild(ocol1);
    40844235    oscan->addChild(ocol2);
    40854236
    40864237    HorizontalConfigurationGroup* aspect_fill =
    40874238        new HorizontalConfigurationGroup(false, false, true, true);
    4088     aspect_fill->addChild(AspectOverride());
    4089     aspect_fill->addChild(AdjustFill());
     4239    aspect_fill->addChild(AspectOverride(settings));
     4240    aspect_fill->addChild(AdjustFill(settings));
    40904241
    40914242    general2->addChild(oscan);
    40924243    general2->addChild(aspect_fill);
    4093     general2->addChild(LetterboxingColour());
    4094     general2->addChild(PIPLocationComboBox());
    4095     general2->addChild(PlaybackExitPrompt());
    4096     general2->addChild(EndOfRecordingExitPrompt());
    4097     addChild(general2);
     4244    general2->addChild(LetterboxingColour(settings));
     4245    general2->addChild(PIPLocationComboBox(settings));
     4246    general2->addChild(PlaybackExitPrompt(settings));
     4247    general2->addChild(EndOfRecordingExitPrompt(settings));
     4248    if (base)
     4249        base->addChild(general2);
     4250    else
     4251        addChild(general2);
    40984252
    40994253    QString tmp = QString(" (%1/%2)").arg(++i).arg(total);
    4100     addChild(new PlaybackProfileConfigs(tmp));
     4254    if (base)
     4255        base->addChild(new PlaybackProfileConfigs(tmp, settings));
     4256    else
     4257        addChild(new PlaybackProfileConfigs(tmp, settings));
    41014258
     4259    if (!settings)
     4260    {
    41024261    VerticalConfigurationGroup* pbox = new VerticalConfigurationGroup(false);
    41034262    pbox->setLabel(QObject::tr("View Recordings") +
    41044263                   QString(" (%1/%2)").arg(++i).arg(total));
     
    41254284    pbox3->addChild(DisplayGroupTitleSort());
    41264285    pbox3->addChild(new WatchListSettings());
    41274286    addChild(pbox3);
     4287    }
    41284288
    41294289    VerticalConfigurationGroup* seek = new VerticalConfigurationGroup(false);
    41304290    seek->setLabel(QObject::tr("Seeking") +
    41314291                   QString(" (%1/%2)").arg(++i).arg(total));
    4132     seek->addChild(SmartForward());
    4133     seek->addChild(FFRewReposTime());
    4134     seek->addChild(FFRewReverse());
    4135     seek->addChild(ExactSeeking());
    4136     addChild(seek);
     4292    if (settings)
     4293        seek->setLabel(QObject::tr("Playback group settings for ") +
     4294                       settings->mGroupName + " - " +
     4295                       seek->getLabel());
     4296    seek->addChild(SmartForward(settings));
     4297    seek->addChild(FFRewReposTime(settings));
     4298    seek->addChild(FFRewReverse(settings));
     4299    seek->addChild(ExactSeeking(settings));
     4300    if (base)
     4301        base->addChild(seek);
     4302    else
     4303        addChild(seek);
    41374304
    41384305    VerticalConfigurationGroup* comms = new VerticalConfigurationGroup(false);
    41394306    comms->setLabel(QObject::tr("Commercial Skip") +
    41404307                    QString(" (%1/%2)").arg(++i).arg(total));
    4141     comms->addChild(AutoCommercialSkip());
    4142     comms->addChild(CommRewindAmount());
    4143     comms->addChild(CommNotifyAmount());
     4308    if (settings)
     4309        comms->setLabel(QObject::tr("Playback group settings for ") +
     4310                        settings->mGroupName + " - " +
     4311                        comms->getLabel());
     4312    comms->addChild(AutoCommercialSkip(settings));
     4313    comms->addChild(CommRewindAmount(settings));
     4314    comms->addChild(CommNotifyAmount(settings));
     4315    if (!settings) // these are global settings, not host-specific
     4316    {
    41444317    comms->addChild(MaximumCommercialSkip());
    41454318    comms->addChild(MergeShortCommBreaks());
    41464319    comms->addChild(CommSkipAllBlanks());
     
    41454318    comms->addChild(MergeShortCommBreaks());
    41464319    comms->addChild(CommSkipAllBlanks());
    4147     addChild(comms);
     4320    }
     4321    if (base)
     4322        base->addChild(comms);
     4323    else
     4324        addChild(comms);
    41484325
    41494326#if CONFIG_DARWIN
    41504327    VerticalConfigurationGroup* mac1 = new VerticalConfigurationGroup(false);
     
    41494326#if CONFIG_DARWIN
    41504327    VerticalConfigurationGroup* mac1 = new VerticalConfigurationGroup(false);
    41514328    mac1->setLabel(QObject::tr("Mac OS X Video Settings") +
    41524329                   QString(" (%1/%2)").arg(++i).arg(total));
     4330    if (settings)
     4331        mac1->setLabel(QObject::tr("Playback group settings for ") +
     4332                       settings->mGroupName + " - " +
     4333                       mac1->getLabel());
     4334    if (!settings)
     4335    {
    41534336    mac1->addChild(MacGammaCorrect());
    41544337    mac1->addChild(MacScaleUp());
    41554338    mac1->addChild(MacFullSkip());
    4156     addChild(mac1);
     4339    }
     4340    if (base)
     4341        base->addChild(mac1);
     4342    else
     4343        addChild(mac1);
    41574344
    41584345    VerticalConfigurationGroup* mac2 = new VerticalConfigurationGroup(false);
    41594346    mac2->setLabel(QObject::tr("Mac OS X Video Settings") +
    41604347                   QString(" (%1/%2)").arg(++i).arg(total));
     4348    if (settings)
     4349        mac2->setLabel(QObject::tr("Playback group settings for ") +
     4350                       settings->mGroupName + " - " +
     4351                       mac2->getLabel());
     4352    if (!setings)
     4353    {
    41614354    mac2->addChild(new MacMainSettings());
    41624355    mac2->addChild(new MacFloatSettings());
    41634356
     
    41714364#endif
    41724365}
    41734366
    4174 OSDSettings::OSDSettings()
     4367OSDSettings::OSDSettings(PlaySettings *settings,
     4368                         ConfigurationWizard *base)
    41754369{
    41764370    VerticalConfigurationGroup* osd = new VerticalConfigurationGroup(false);
    41774371    osd->setLabel(QObject::tr("On-screen Display"));
     4372    if (settings)
     4373        osd->setLabel(QObject::tr("Playback group settings for ") +
     4374                      settings->mGroupName + " - " +
     4375                      osd->getLabel());
    41784376
    4179     osd->addChild(EnableMHEG());
    4180     osd->addChild(PersistentBrowseMode());
    4181     osd->addChild(BrowseAllTuners());
    4182     osd->addChild(CCBackground());
    4183     osd->addChild(DefaultCCMode());
    4184     osd->addChild(PreferCC708());
     4377    if (!settings)
     4378    {
     4379    osd->addChild(EnableMHEG(settings));
     4380    osd->addChild(PersistentBrowseMode(settings));
     4381    osd->addChild(BrowseAllTuners(settings));
     4382    }
     4383    osd->addChild(CCBackground(settings));
     4384    osd->addChild(DefaultCCMode(settings));
     4385    osd->addChild(PreferCC708(settings));
     4386    if (!settings)
    41854387    osd->addChild(SubtitleFont());
    4186     osd->addChild(OSDCC708TextZoomPercentage());
    4187     osd->addChild(SubtitleCodec());
    4188     //osd->addChild(UDPNotifyPort());
    4189     addChild(osd);
     4388    osd->addChild(OSDCC708TextZoomPercentage(settings));
     4389    osd->addChild(SubtitleCodec(settings));
     4390    //osd->addChild(UDPNotifyPort(settings));
     4391    if (base)
     4392        base->addChild(osd);
     4393    else
     4394        addChild(osd);
    41904395
    41914396    //VerticalConfigurationGroup *cc = new VerticalConfigurationGroup(false);
    41924397    //cc->setLabel(QObject::tr("Closed Captions"));
  • programs/mythfrontend/main.cpp

     
    3636#include "globalsettings.h"
    3737#include "profilegroup.h"
    3838#include "playgroup.h"
     39#include "playsettings.h"
    3940#include "networkcontrol.h"
    4041#include "DVDRingBuffer.h"
    4142#include "scheduledrecording.h"
     
    471472        delete statusbox;
    472473}
    473474
     475ConfigurationWizard *createPlaybackSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base)
     476{
     477    return new PlaybackSettings(settings, base);
     478}
     479
     480ConfigurationWizard *createOSDSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base)
     481{
     482    return new OSDSettings(settings, base);
     483}
     484
     485ConfigurationWizard *createMainGeneralSettingsForPlaybackGroup(PlaySettings *settings, ConfigurationWizard *base)
     486{
     487    return new MainGeneralSettings(settings, base);
     488}
     489
     490static PlayGroupEditor::SettingsLookup pbgroupSetup[] = {
     491    createPlaybackSettingsForPlaybackGroup,
     492    createOSDSettingsForPlaybackGroup,
     493    createMainGeneralSettingsForPlaybackGroup
     494};
     495
    474496static void TVMenuCallback(void *data, QString &selection)
    475497{
    476498    (void)data;
     
    569591    }
    570592    else if (sel == "settings playgroup")
    571593    {
    572         PlayGroupEditor editor;
     594        PlayGroupEditor editor(pbgroupSetup,
     595                               sizeof(pbgroupSetup)/sizeof(*pbgroupSetup));
    573596        editor.exec();
    574597    }
    575598    else if (sel == "settings general")
     
    761784            }
    762785        }
    763786        delete tmprbuf;
     787        pginfo->SetPlaybackGroup("Videos");
    764788    }
    765789    else if (pginfo->IsVideo())
     790    {
    766791        pos = pginfo->QueryBookmark();
     792        pginfo->SetPlaybackGroup("Videos");
     793    }
    767794
    768795    if (pos > 0)
    769796    {
  • programs/mythfrontend/globalsettings.h

     
    1313
    1414class QFileInfo;
    1515class AudioDeviceComboBox;
     16class PlaySettings;
    1617
    1718class AudioConfigSettings : public VerticalConfigurationGroup
    1819{
     
    8889class PlaybackSettings : public ConfigurationWizard
    8990{
    9091  public:
    91     PlaybackSettings();
     92    PlaybackSettings(PlaySettings *settings=NULL,
     93                     ConfigurationWizard *base=NULL);
    9294};
    9395
    9496class OSDSettings: virtual public ConfigurationWizard
    9597{
    9698  public:
    97     OSDSettings();
     99    OSDSettings(PlaySettings *settings=NULL,
     100                ConfigurationWizard *base=NULL);
    98101};
    99102
    100103class GeneralSettings : public ConfigurationWizard
     
    118121class MainGeneralSettings : public ConfigurationWizard
    119122{
    120123  public:
    121     MainGeneralSettings();
     124    MainGeneralSettings(PlaySettings *settings=NULL,
     125                        ConfigurationWizard *base=NULL);
    122126};
    123127
    124128class GeneralRecPrioritiesSettings : public ConfigurationWizard
     
    206210    Q_OBJECT
    207211
    208212  public:
    209     PlaybackProfileConfigs(const QString &str);
     213    PlaybackProfileConfigs(const QString &str, PlaySettings *settings);
    210214    virtual ~PlaybackProfileConfigs();
    211215
    212216  private:
     
    218222
    219223  private:
    220224    QStringList   profiles;
    221     HostComboBox *grouptrigger;
     225    ComboBoxSetting *grouptrigger;
    222226};
    223227
    224228#endif
  • programs/mythavtest/main.cpp

     
    2020#include "compat.h"
    2121#include "mythuihelper.h"
    2222#include "dbcheck.h"
     23#include "playsettings.h"
    2324
    2425static void *run_priv_thread(void *data)
    2526{
     
    186187
    187188    GetMythUI()->LoadQtConfig();
    188189
    189 #if defined(Q_OS_MACX)
    190     // Mac OS X doesn't define the AudioOutputDevice setting
    191 #else
    192     QString auddevice = gCoreContext->GetSetting("AudioOutputDevice");
    193     if (auddevice.isEmpty())
    194     {
    195         VERBOSE(VB_IMPORTANT, "Fatal Error: Audio not configured, you need "
    196                 "to run 'mythfrontend', not 'mythtv'.");
    197         return TV_EXIT_NO_AUDIO;
    198     }
    199 #endif
    200 
    201190    MythMainWindow *mainWindow = GetMythMainWindow();
    202191    mainWindow->Init();
    203192
     
    210199        return GENERIC_EXIT_DB_OUTOFDATE;
    211200    }
    212201
    213     TV *tv = new TV();
     202    QString playgroup("");
     203    if (!filename.isEmpty())
     204    {
     205        ProgramInfo pg(filename);
     206        playgroup = pg.GetPlaybackGroup();
     207    }
     208    PlaySettings settings(playgroup);
     209
     210#if defined(Q_OS_MACX)
     211    // Mac OS X doesn't define the AudioOutputDevice setting
     212#else
     213    QString auddevice = settings.GetSetting("AudioOutputDevice", "");
     214    if (auddevice.isEmpty())
     215    {
     216        VERBOSE(VB_IMPORTANT, "Fatal Error: Audio not configured, you need "
     217                "to run 'mythfrontend', not 'mythtv'.");
     218        return TV_EXIT_NO_AUDIO;
     219    }
     220#endif
     221
     222    TV *tv = new TV(&settings);
    214223    if (!tv->Init())
    215224    {
    216225        VERBOSE(VB_IMPORTANT, "Fatal Error: Could not initialize TV class.");