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.
74 lines
2.1 KiB
74 lines
2.1 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 TDMPIXMAP_H
|
||
|
#define TDMPIXMAP_H
|
||
15 years ago
|
|
||
13 years ago
|
#include "tdmitem.h"
|
||
15 years ago
|
|
||
14 years ago
|
//#include <tqrect.h>
|
||
|
#include <tqpixmap.h>
|
||
15 years ago
|
|
||
14 years ago
|
#include <ksimpleconfig.h>
|
||
|
#include <kstandarddirs.h>
|
||
|
|
||
15 years ago
|
/*
|
||
|
* KdmPixmap. A pixmap element
|
||
|
*/
|
||
|
|
||
|
class KdmPixmap : public KdmItem {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
KdmPixmap( KdmItem *parent, const TQDomNode &node, const char *name = 0 );
|
||
15 years ago
|
|
||
|
protected:
|
||
|
// reimplemented; returns the size of loaded pixmap
|
||
13 years ago
|
virtual TQSize sizeHint();
|
||
15 years ago
|
|
||
|
// draw the pixmap
|
||
14 years ago
|
virtual void drawContents( TQPainter *p, const TQRect &r );
|
||
15 years ago
|
|
||
|
// handle switching between normal / active / prelight configurations
|
||
|
virtual void statusChanged();
|
||
|
|
||
14 years ago
|
virtual void setGeometry( const TQRect &newGeometry, bool force );
|
||
15 years ago
|
|
||
|
struct PixmapStruct {
|
||
|
struct PixmapClass {
|
||
14 years ago
|
TQString fullpath;
|
||
|
TQPixmap pixmap;
|
||
|
TQPixmap readyPixmap;
|
||
|
TQColor tint;
|
||
15 years ago
|
float alpha; //TODO added: not in greeter.dtd
|
||
|
bool present;
|
||
|
} normal, active, prelight;
|
||
|
} pixmap;
|
||
|
|
||
|
private:
|
||
14 years ago
|
// Method to load the pixmap path given by the theme
|
||
|
TQString fullPath( const TQString &fileName );
|
||
14 years ago
|
void renderSvg( PixmapStruct::PixmapClass *pClass, const TQRect &area );
|
||
14 years ago
|
void loadPixmap( PixmapStruct::PixmapClass *pClass );
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|