~ubuntu-branches/ubuntu/jaunty/fqterm/jaunty

« back to all changes in this revision

Viewing changes to src/common/fqterm_config.h

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-02-14 09:32:53 UTC
  • Revision ID: james.westby@ubuntu.com-20090214093253-s2e6544ox2aj79rj
Tags: upstream-0.9.3+svn632
ImportĀ upstreamĀ versionĀ 0.9.3+svn632

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   fqterm, a terminal emulator for both BBS and *nix.                    *
 
3
 *   Copyright (C) 2008 fqterm development group.                          *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.               *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef FQTERM_CFG_H
 
22
#define FQTERM_CFG_H
 
23
 
 
24
#include <QTextStream>
 
25
#include <QMap>
 
26
#include <QObject>
 
27
 
 
28
namespace FQTerm {
 
29
typedef QMap<QString, QString> Section;
 
30
typedef QMap<QString, Section> StrSecMap;
 
31
 
 
32
class FQTermConfig {
 
33
 private:
 
34
  StrSecMap data;
 
35
  bool loadFromStream(QTextStream &);
 
36
  bool saveToStream(QTextStream &);
 
37
 
 
38
  bool addSection(const QString &sectionName);
 
39
 public:
 
40
  FQTermConfig(const QString &fileName);
 
41
  ~FQTermConfig();
 
42
 
 
43
  bool load(const QString &filename);
 
44
  bool save(const QString &fileName);
 
45
 
 
46
  bool setItemValue(const QString &sectionName, const QString &itemName,
 
47
                    const QString &itemValue);
 
48
  
 
49
  QString getItemValue(const QString &sectionName,
 
50
                       const QString &itemName) const;
 
51
 
 
52
  bool deleteItem(const QString &sectionName, const QString &itemName);
 
53
  bool deleteSection(const QString &sectionName);
 
54
 
 
55
  bool renameSection(const QString &sectionName, const QString &newName);
 
56
  bool hasSection(const QString &sectionName) const;
 
57
};
 
58
 
 
59
}  // namespace FQTerm
 
60
 
 
61
#endif  // FQTERM_CFG_H