~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skgbasegui/skrooge.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2010-02-07 19:00:01 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100207190001-apq0bzl80p0tyr8s
Tags: 0.6.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// This file is generated by kconfig_compiler from skrooge.kcfg.
2
 
// All changes you do to this file will be lost.
3
 
#ifndef SKROOGE_H
4
 
#define SKROOGE_H
5
 
 
6
 
#include <kconfigskeleton.h>
7
 
#include <kdebug.h>
8
 
 
9
 
class skrooge : public KConfigSkeleton
10
 
{
11
 
  public:
12
 
 
13
 
    static skrooge *self();
14
 
    ~skrooge();
15
 
 
16
 
 
17
 
    /**
18
 
      Get Icon in system tray
19
 
    */
20
 
    static
21
 
    bool icon_in_system_tray()
22
 
    {
23
 
      return self()->mIcon_in_system_tray;
24
 
    }
25
 
 
26
 
 
27
 
    /**
28
 
      Get Update modified bookmarks on close
29
 
    */
30
 
    static
31
 
    int update_modified_bookmarks()
32
 
    {
33
 
      return self()->mUpdate_modified_bookmarks;
34
 
    }
35
 
 
36
 
  protected:
37
 
    skrooge();
38
 
    friend class skroogeHelper;
39
 
 
40
 
 
41
 
    // skrooge
42
 
    bool mIcon_in_system_tray;
43
 
    int mUpdate_modified_bookmarks;
44
 
 
45
 
  private:
46
 
};
47
 
 
48
 
#endif
49