Example #1
0
static HostTextEditSetting *GetBoxartDir()
{
    HostTextEditSetting *gc = new HostTextEditSetting("mythgame.boxartdir");
    gc->setLabel(TR("Directory where Game Boxart is "
                    "stored"));
    gc->setValue(GetConfDir() + "/MythGame/Boxart");
    gc->setHelpText(TR("This directory will be the "
                       "default browse location when "
                       "assigning boxart."));
    return gc;
}
Example #2
0
static HostTextEditSetting *MythArchiveFileFilter()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveFileFilter");

    gc->setLabel(ArchiveSettings::tr("File Selector Filter"));
    gc->setValue("*.mpg *.mov *.avi *.mpeg *.nuv");

    gc->setHelpText(ArchiveSettings::tr("The file name filter to use in the "
                                        "file selector."));
    return gc;
};
Example #3
0
static HostTextEditSetting *GetScreenshotDir()
{
    HostTextEditSetting *gc = new HostTextEditSetting("mythgame.screenshotdir");
    gc->setLabel(TR("Directory where Game Screenshots "
                    "are stored"));
    gc->setValue(GetConfDir() + "/MythGame/Screenshots");
    gc->setHelpText(TR("This directory will be the "
                       "default browse location when "
                       "assigning screenshots."));
    return gc;
}
Example #4
0
static HostTextEditSetting *GameFavTreeLevels()
{
    HostTextEditSetting *gc = new HostTextEditSetting("GameFavTreeLevels");
    gc->setLabel(TR("Favorite display order"));
    gc->setValue("gamename");
    gc->setHelpText(TR("Order in which to sort the "
                       "games marked as favorites "
                       "- this is for all systems. "
                       "Available choices: system, "
                       "year, genre and gamename"));
    return gc;
}
Example #5
0
static HostTextEditSetting *GameAllTreeLevels()
{
    HostTextEditSetting *gc = new HostTextEditSetting("GameAllTreeLevels");
    gc->setLabel(TR("Game display order"));
    gc->setValue("system gamename");
    gc->setHelpText(TR("Order in which to sort the "
                       "games - this is for all "
                       "systems. Available choices: "
                       "system, year, genre and "
                       "gamename"));
    return gc;
}
Example #6
0
static HostTextEditSetting *MythArchiveSpumuxCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveSpumuxCmd");

    gc->setLabel(ArchiveSettings::tr("spumux command"));

    gc->setValue("spumux");

    gc->setHelpText(ArchiveSettings::tr("Command to run spumux. Part of "
                                        "dvdauthor package"));
    return gc;
};
Example #7
0
static HostTextEditSetting *MythArchiveMpeg2encCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveMpeg2encCmd");

    gc->setLabel(ArchiveSettings::tr("mpeg2enc command"));

    gc->setValue("mpeg2enc");

    gc->setHelpText(ArchiveSettings::tr("Command to run mpeg2enc. Part of "
                                        "mjpegtools package"));
    return gc;
};
Example #8
0
static HostTextEditSetting *MythArchiveGrowisofsCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveGrowisofsCmd");

    gc->setLabel(ArchiveSettings::tr("growisofs command"));

    gc->setValue("growisofs");

    gc->setHelpText(ArchiveSettings::tr("Command to run growisofs. (Used to "
                                        "burn DVDs)"));
    return gc;
};
Example #9
0
static HostTextEditSetting *MythArchiveMkisofsCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveMkisofsCmd");

    gc->setLabel(ArchiveSettings::tr("mkisofs command"));

    gc->setValue("mkisofs");

    gc->setHelpText(ArchiveSettings::tr("Command to run mkisofs. (Used to "
                                        "create ISO images)"));
    return gc;
};
Example #10
0
static HostTextEditSetting *MythArchiveDvdauthorCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveDvdauthorCmd");

    gc->setLabel(ArchiveSettings::tr("dvdauthor command"));

    gc->setValue("dvdauthor");

    gc->setHelpText(ArchiveSettings::tr("Command to run dvdauthor."));

    return gc;
};
Example #11
0
static HostTextEditSetting *MythArchiveMplexCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveMplexCmd");

    gc->setLabel(ArchiveSettings::tr("mplex Command"));

    gc->setValue("mplex");

    gc->setHelpText(ArchiveSettings::tr("Command to run mplex"));

    return gc;
};
Example #12
0
static HostTextEditSetting *MythArchiveM2VRequantiserCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveM2VRequantiserCmd");

    gc->setLabel(ArchiveSettings::tr("M2VRequantiser command"));

    gc->setValue("M2VRequantiser");

    gc->setHelpText(ArchiveSettings::tr("Command to run M2VRequantiser. "
                                        "Optional - leave blank if you don't "
                                        "have M2VRequantiser installed."));
    return gc;
};
Example #13
0
static HostTextEditSetting *MythArchiveProjectXCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveProjectXCmd");

    gc->setLabel(ArchiveSettings::tr("projectx command"));

    gc->setValue("projectx");

    gc->setHelpText(ArchiveSettings::tr("Command to run ProjectX. Will be used "
                                        "to cut commercials and split mpegs "
                                        "files instead of mythtranscode and "
                                        "mythreplex."));
    return gc;
};
Example #14
0
static HostTextEditSetting *MythArchiveDVDPlayerCmd()
{
    HostTextEditSetting *gc = new HostTextEditSetting("MythArchiveDVDPlayerCmd");

    gc->setLabel(ArchiveSettings::tr("Command to play DVD"));
    gc->setValue("Internal");

    gc->setHelpText(ArchiveSettings::tr("Command to run when test playing a "
                                        "created DVD. 'Internal' will use the "
                                        "internal MythTV player. %f will be "
                                        "replaced with the path to the created "
                                        "DVD structure eg. 'xine -pfhq "
                                        "--no-splash dvd:/%f'."));
    return gc;
};