summaryrefslogtreecommitdiffstats
path: root/yakuake/src/translucent_widget.h
blob: df310270ae22f657c869a03dfbdf12e92834f6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/

/*
  Copyright (C) 2007 Eike Hein <hein@kde.org>
*/


#ifndef TRANSLUCENT_WIDGET_H
#define TRANSLUCENT_WIDGET_H


#include <tqwidget.h>


class KRootPixmap;


class TranslucentWidget : public TQWidget
{
    TQ_OBJECT
  

    public:
        explicit TranslucentWidget(TQWidget* parent = 0, const char* name = 0, bool translucency = false);
        virtual ~TranslucentWidget();


    public slots:
        void slotUpdateBackground();


    protected:
        bool useTranslucency() { return use_translucency; }
        void setUseTranslucency(bool translucency) { use_translucency = translucency; }

        KRootPixmap* root_pixmap;
        bool use_translucency;
};


#endif /* TRANSLUCENT_WIDGET_H */