~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/qtui/qtuisettings.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "uisettings.h"
27
27
 
28
28
class QtUiSettings : public UiSettings {
29
 
public: 
 
29
public:
30
30
  QtUiSettings(const QString &subGroup);
31
31
  QtUiSettings();
32
 
}; 
 
32
};
33
33
 
34
34
class QtUiStyleSettings : public UiSettings {
35
35
public:
37
37
  QtUiStyleSettings();
38
38
};
39
39
 
 
40
class WarningsSettings : public UiSettings {
 
41
public:
 
42
  WarningsSettings();
 
43
 
 
44
  bool showWarning(const QString &key);
 
45
  void setShowWarning(const QString &key, bool show);
 
46
};
 
47
 
40
48
#endif