You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
15 years ago
|
/*
|
||
|
* Copyright (C) 2003 by Unai Garro <ugarro@users.sourceforge.net>
|
||
|
* Copyright (C) 2004 by Enrico Ros <rosenric@dei.unipd.it>
|
||
|
* Copyright (C) 2004 by Stephan Kulow <coolo@kde.org>
|
||
|
* Copyright (C) 2004 by Oswald Buddenhagen <ossi@kde.org>
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
13 years ago
|
#ifndef TDMRECT_H
|
||
|
#define TDMRECT_H
|
||
15 years ago
|
|
||
13 years ago
|
#include "tdmitem.h"
|
||
15 years ago
|
|
||
14 years ago
|
#include <tqcolor.h>
|
||
|
#include <tqfont.h>
|
||
15 years ago
|
|
||
|
/*
|
||
|
* KdmRect: A themed rectangular element
|
||
|
*/
|
||
|
|
||
|
class KdmRect : public KdmItem {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
KdmRect( KdmItem *parent, const TQDomNode &node, const char *name = 0 );
|
||
14 years ago
|
KdmRect( TQWidget *parent, const TQDomNode &node, const char *name = 0 );
|
||
15 years ago
|
|
||
|
protected:
|
||
|
// draw the rect
|
||
14 years ago
|
virtual void drawContents( TQPainter *p, const TQRect &r );
|
||
15 years ago
|
|
||
|
// handle switching between normal / active / prelight configurations
|
||
|
virtual void statusChanged();
|
||
|
|
||
|
struct RectStruct {
|
||
|
struct RectClass {
|
||
|
float alpha;
|
||
14 years ago
|
TQColor color;
|
||
15 years ago
|
bool present;
|
||
14 years ago
|
TQFont font;
|
||
15 years ago
|
} normal, active, prelight;
|
||
|
bool hasBorder;
|
||
|
} rect;
|
||
|
|
||
14 years ago
|
virtual void setWidget( TQWidget *widget );
|
||
14 years ago
|
// virtual void setLayoutItem( TQLayoutItem *item );
|
||
14 years ago
|
void init( const TQDomNode &node, const char *name );
|
||
15 years ago
|
|
||
|
private:
|
||
14 years ago
|
void setAttribs( TQWidget *widget );
|
||
|
void recursiveSetAttribs( TQLayoutItem *item );
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|