/* This file is part of the KDE libraries
Copyright (c) 1999 Daniel Duley <mosfet@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __KSTYLE_H
#define __KSTYLE_H
#include <qplatinumstyle.h>
#include <qfont.h>
#include <qpalette.h>
#include <qpixmap.h>
class QMenuItem;
class QPixmap;
class KStylePrivate;
/**
* Extends the @ref QStyle class with virtual methods to draw KDE widgets.
*
* To create a new @ref KStyle, reimplement the virtual functions which draw
* the GUI elements.
* @author Daniel M. Duley <mosfet@kde.org>
*/
class KStyle : public QPlatinumStyle
{
Q_OBJECT
public:
enum KToolButtonType{Icon=0, IconTextRight, Text, IconTextBottom};
enum KToolBarPos{Top=0, Left, Right, Bottom, Floating, Flat};
KStyle() : QPlatinumStyle(){;}
/**
* Draw a toolbar (without buttons, etc.)
*
* @p x, @p y, @p w, and @p h tell in which rectangle to draw the toolbar.
**/
virtual void drawKToolBar(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, KToolBarPos type,
QBrush *fill=NULL);
/**
* Draw a toolbar handle.
*
* @param fill The @ref QBrush to fill the handle with.
**/
virtual void drawKBarHandle(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g,
KToolBarPos type, QBrush *fill=NULL);
/**
* Draw a toolbar button.
**/
virtual void drawKToolBarButton(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, bool sunken=false,
bool raised = true, bool enabled = true,
bool popup = false,
KToolButtonType icontext = Icon,
const QString& btext=QString::null,
const QPixmap *icon=NULL,
QFont *font=NULL, QWidget *btn=NULL);
/**
* Draw a menubar (without menus).
*
* @param fill The @ref QBrush to fill the menubar with.
**/
virtual void drawKMenuBar(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, bool macMode,
QBrush *fill=NULL);
/**
* Draw a menu item (ex, "&File").
**/
virtual void drawKMenuItem(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, bool active,
QMenuItem *item, QBrush *fill=NULL);
/**
* Draw one block on a progress bar.
**/
virtual void drawKProgressBlock(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, QBrush *fill);
/**
* Retrieve the color used to the background of a progress bar.
*
* This isn't a drawXXX method due to @ref KProgress implementation.
**/
virtual void getKProgressBackground(const QColorGroup &g, QBrush &bg);
virtual void drawKickerHandle(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, QBrush *fill=NULL);
virtual void drawKickerAppletHandle(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g, QBrush *fill=NULL);
virtual void drawKickerTaskButton(QPainter *p, int x, int y, int w, int h,
const QColorGroup &g,
const QString &title, bool active,
QPixmap *icon=NULL, QBrush *fill=NULL);
virtual void getKickerBackground(int w, int h, Orientation orient,
const QColorGroup &g, QBrush &bg);
private:
KStylePrivate *d;
};
#endif
| Generated by: root@powerpc.ports.openbsd.org on Tue Apr 24 22:59:46 2001, using kdoc 2.0a53. |