~ubuntu-branches/ubuntu/edgy/digikam/edgy

« back to all changes in this revision

Viewing changes to digikam/libs/themeengine/theme.h

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2006-05-15 01:15:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515011502-kpyuz7766hpbuia8
Tags: 0.8.2~rc1-0ubuntu1
* sync with debian (UVF see #44102)
  0.8.2~rc1-0ubuntu1 is identical to debian's 0.8.1+0.8.2-rc1-1.
  Version was changed due to latest 0.8.1.ubuntu-0ubuntu1 upload.
  This version is unfortunately bigger than debian's 0.8.1+0.8.2-rc1-1
* Merge in ubuntu changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef THEME_H
22
22
#define THEME_H
23
23
 
 
24
// Qt includes.
 
25
 
24
26
#include <qstring.h>
25
27
#include <qcolor.h>
26
28
 
27
 
class Theme
 
29
// Digikam includes.
 
30
 
 
31
#include "digikam_export.h"
 
32
 
 
33
namespace Digikam
 
34
{
 
35
 
 
36
class DIGIKAM_EXPORT Theme
28
37
{
29
38
public:
30
39
 
31
 
    enum Bevel {
 
40
    enum Bevel 
 
41
    {
32
42
        FLAT =     0x00001,
33
43
        SUNKEN =   0x00002,
34
44
        RAISED =   0x00004
35
45
    };
36
46
    
37
 
    enum Gradient {
 
47
    enum Gradient 
 
48
    {
38
49
        SOLID      = 0x00000,
39
50
        HORIZONTAL = 0x00010,
40
51
        VERTICAL   = 0x00020,
92
103
    QColor   listSelBorderColor;
93
104
};
94
105
 
 
106
}  // NameSpace Digikam
 
107
 
95
108
#endif /* THEME_H */