~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kwin/clients/oxygen/oxygen.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
ImportĀ upstreamĀ versionĀ 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//////////////////////////////////////////////////////////////////////////////
 
2
// oxygenbutton.h
 
3
// -------------------
 
4
// Oxygen window decoration for KDE.
 
5
// -------------------
 
6
// Copyright (c) 2006, 2007 Riccardo Iaconelli <ruphy@fsfe.org>
 
7
//
 
8
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
9
// of this software and associated documentation files (the "Software"), to
 
10
// deal in the Software without restriction, including without limitation the
 
11
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
12
// sell copies of the Software, and to permit persons to whom the Software is
 
13
// furnished to do so, subject to the following conditions:
 
14
//
 
15
// The above copyright notice and this permission notice shall be included in
 
16
// all copies or substantial portions of the Software.
 
17
//
 
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
19
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
20
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
21
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
22
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
23
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
24
// IN THE SOFTWARE.
 
25
//////////////////////////////////////////////////////////////////////////////
 
26
#ifndef OXYGEN_H
 
27
#define OXYGEN_H
 
28
 
 
29
#include <kconfig.h>
 
30
#include <kdecorationfactory.h>
 
31
 
 
32
namespace Oxygen
 
33
{
 
34
// OxygenFactory /////////////////////////////////////////////////////////////
 
35
 
 
36
enum ButtonType {
 
37
    ButtonHelp=0,
 
38
    ButtonMax,
 
39
    ButtonMin,
 
40
    ButtonClose, 
 
41
    ButtonMenu,
 
42
    ButtonSticky,
 
43
    ButtonTypeCount
 
44
};
 
45
Q_DECLARE_FLAGS(ButtonTypes, ButtonType)
 
46
 
 
47
class OxygenFactory: public KDecorationFactory
 
48
{
 
49
public:
 
50
    OxygenFactory();
 
51
    virtual ~OxygenFactory();
 
52
    virtual KDecoration *createDecoration(KDecorationBridge *b);
 
53
    virtual bool reset(unsigned long changed);
 
54
 
 
55
    static bool initialized();
 
56
    static Qt::Alignment titleAlign();
 
57
 
 
58
private:
 
59
    bool readConfig();
 
60
 
 
61
private:
 
62
    static bool initialized_;
 
63
    static Qt::Alignment titlealign_;
 
64
};
 
65
 
 
66
inline bool OxygenFactory::initialized()
 
67
    { return initialized_; }
 
68
 
 
69
inline Qt::Alignment OxygenFactory::titleAlign()
 
70
    { return titlealign_; }
 
71
 
 
72
} //namespace Oxygen
 
73
 
 
74
#endif