MythTV master
inputselectorsetting.h
Go to the documentation of this file.
1/* -*- Mode: c++ -*-
2 * vim: set expandtab tabstop=4 shiftwidth=4:
3 *
4 * Original Project
5 * MythTV http://www.mythtv.org
6 *
7 * Copyright (c) 2004, 2005 John Pullan <john@pullan.org>
8 * Copyright (c) 2005 - 2007 Daniel Kristjansson
9 *
10 * Description:
11 * Collection of classes to provide channel scanning functionallity
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
27 *
28 */
29
30#ifndef INPUT_SELECTOR_SETTING_H
31#define INPUT_SELECTOR_SETTING_H
32
34
36{
37 Q_OBJECT
38
39 public:
40 InputSelector(uint default_cardid, QString default_inputname);
41
42 void Load(void) override; // StandardSetting
43
44 uint GetCardID(void) const;
45
46 QString GetInputName(void) const;
47
48 static bool Parse(const QString &cardid_inputname,
49 uint &cardid,
50 QString &inputname);
51
52 public slots:
53 void SetSourceID(const QString &sourceid);
54
55 private:
59};
60
61#endif // INPUT_SELECTOR_SETTING_H
static bool Parse(const QString &cardid_inputname, uint &cardid, QString &inputname)
void Load(void) override
QString GetInputName(void) const
void SetSourceID(const QString &sourceid)
uint GetCardID(void) const
InputSelector(uint default_cardid, QString default_inputname)
unsigned int uint
Definition: freesurround.h:24