]> git.sesse.net Git - vlc/blob - modules/gui/kde/QConfigItem.cpp
Avoid \r\n problems between platforms
[vlc] / modules / gui / kde / QConfigItem.cpp
1 /*****************************************************************************
2  * QConfigItem.cpp: The QConfigItem class
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id$
6  *
7  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> Mon 12.08.2002
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #include "QConfigItem.h"
24 #include <vlc/vlc.h>
25 QConfigItem::QConfigItem(QObject *parent, QString name, int iType, int i_val) :
26     QObject(parent, name)
27 {
28     type = iType;
29     iVal = i_val;
30     bChanged = false;
31 }
32
33 QConfigItem::QConfigItem(QObject *parent, QString name, int iType, float f_val) :
34     QObject(parent, name)
35 {
36     type = iType;
37     fVal = f_val;
38     bChanged = false;
39 }
40
41 QConfigItem::QConfigItem(QObject *parent, QString name, int iType, QString s_val) :
42     QObject(parent, name)
43 {
44     type = iType;
45     sVal = s_val;
46     bChanged = false;
47 }
48
49 QConfigItem::~QConfigItem()
50 {
51     ;
52 }
53
54 int QConfigItem::getType()
55 {
56     return type;
57 }
58
59 int QConfigItem::iValue()
60 {
61     return iVal;
62 }
63
64 float QConfigItem::fValue()
65 {
66     return fVal;
67 }
68
69 QString QConfigItem::sValue()
70 {
71     return sVal;
72 }
73
74 void QConfigItem::setValue(int val)
75 {
76     iVal = val;
77     bChanged = true;
78 }
79
80 void QConfigItem::setValue(float val)
81 {
82     fVal = val;
83     bChanged = true;
84 }
85
86 void QConfigItem::setValue(double val)
87 {
88     fVal = (float)val;
89     bChanged = true;
90 }
91
92 void QConfigItem::setValue(const QString &val)
93 {
94     sVal = val;
95     bChanged = true;
96 }
97
98 bool QConfigItem::changed()
99 {
100     return bChanged;
101 }
102
103 void QConfigItem::resetChanged()
104 {
105     bChanged = false;
106 }