~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/clients/tabstrip/tabstripbutton.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
Tabstrip KWin window decoration
 
3
This file is part of the KDE project.
 
4
 
 
5
Copyright (C) 2009 Jorge Mata <matamax123@gmail.com>
 
6
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
 
7
 
 
8
This program is free software: you can redistribute it and/or modify
 
9
it under the terms of the GNU General Public License as published by
 
10
the Free Software Foundation, either version 2 of the License, or
 
11
(at your option) any later version.
 
12
 
 
13
This program is distributed in the hope that it will be useful,
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
GNU General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU General Public License
 
19
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
*********************************************************************/
 
21
 
 
22
#ifndef TABSTRIPBUTTON_H
 
23
#define TABSTRIPBUTTON_H
 
24
 
 
25
#include <kcommondecoration.h>
 
26
#include <QSize>
 
27
#include <QString>
 
28
 
 
29
class TabstripDecoration;
 
30
 
 
31
class TabstripButton : public KCommonDecorationButton
 
32
    {
 
33
    public:
 
34
        TabstripButton( ButtonType type, TabstripDecoration *parent, QString tip );
 
35
        ~TabstripButton();
 
36
        void reset( unsigned long changed );
 
37
        QSize sizeHint() const;
 
38
        void setActive( bool active );
 
39
    private:
 
40
        void paintEvent( QPaintEvent *e );
 
41
        void leaveEvent( QEvent *e );
 
42
        void enterEvent( QEvent *e );
 
43
        TabstripDecoration *client;
 
44
        ButtonType btype;
 
45
        const int SIZE;
 
46
        bool active_item;
 
47
        bool hovering;
 
48
    };
 
49
 
 
50
inline void TabstripButton::setActive( bool active )
 
51
    {
 
52
    active_item = active;
 
53
    }
 
54
 
 
55
#endif