]> git.sesse.net Git - vlc/blob - modules/gui/kde/QConfigItem.h
Avoid \r\n problems between platforms
[vlc] / modules / gui / kde / QConfigItem.h
1 /*****************************************************************************
2  * QConfigItem.h : includes for the QConfigItem class
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id$
6  *
7  * Authors: Andres Krapf <dae@chez.com> Sun Mar 25 2001
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
24 #ifndef _KCONFIGITEM_H_
25 #define _KCONFIGITEM_H_
26 #include <qobject.h>
27 #include <qstring.h>
28 /*
29   A class to handle the information for one configuration item. 
30 */
31
32 class QConfigItem : public QObject
33 {
34     Q_OBJECT
35  public:
36     QConfigItem(QObject *parent, QString name, int iType, int i_val);
37     QConfigItem(QObject *parent, QString name, int iType, float f_val);
38     QConfigItem(QObject *parent, QString name, int iType, QString s_val);
39     ~QConfigItem();
40
41     int getType();
42     float fValue();
43     int iValue();
44     QString sValue();
45     bool changed();
46
47  public slots:
48     void setValue(int val);
49     void setValue(float val);
50     void setValue(double val);
51     void setValue(const QString &val);
52     void resetChanged();
53     
54  private:
55     int iVal, type;
56     float fVal;
57     QString sVal;
58     bool bChanged;
59 };
60 #endif