2000-04-10 17:18:21 +00:00
|
|
|
/*
|
2000-07-15 11:27:55 +00:00
|
|
|
RISC OS KWin client
|
2000-04-10 17:18:21 +00:00
|
|
|
|
|
|
|
Copyright 2000
|
|
|
|
Rik Hemsley <rik@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; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
#ifndef RISC_OS_STATIC_H
|
|
|
|
#define RISC_OS_STATIC_H
|
2000-04-10 17:18:21 +00:00
|
|
|
|
|
|
|
#include <qimage.h>
|
|
|
|
#include <qpixmap.h>
|
|
|
|
#include <qpainter.h>
|
|
|
|
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
#include "Palette.h"
|
2000-07-15 06:59:08 +00:00
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
namespace RiscOS
|
2000-04-10 17:18:21 +00:00
|
|
|
{
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
enum SymbolType { Lower, Close, Iconify, Max, Unmax };
|
2000-04-10 17:18:21 +00:00
|
|
|
|
|
|
|
class Static
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Static()
|
|
|
|
{
|
|
|
|
instance_ = this;
|
|
|
|
_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
~Static()
|
|
|
|
{
|
|
|
|
instance_ = 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Static * instance()
|
|
|
|
{
|
|
|
|
if (0 == instance_)
|
|
|
|
new Static;
|
|
|
|
|
|
|
|
return instance_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update();
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap titleTextLeft(bool active)
|
|
|
|
{ return active ? aTitleTextLeft_ : iTitleTextLeft_; }
|
2000-07-15 06:59:08 +00:00
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap titleTextRight(bool active)
|
|
|
|
{ return active ? aTitleTextRight_ : iTitleTextRight_; }
|
2000-07-15 06:59:08 +00:00
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap resizeMidLeft(bool active)
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMidLeft_ : iResizeMidLeft_; }
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap resizeMidRight(bool active)
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMidRight_ : iResizeMidRight_; }
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap titleTextMid(bool active)
|
|
|
|
{ return active ? aTitleTextMid_ : iTitleTextMid_; }
|
|
|
|
|
|
|
|
QPixmap resizeMidMid(bool active)
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMid_ : iResizeMid_; }
|
|
|
|
|
|
|
|
QPixmap button(SymbolType t, bool active, bool down);
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
QPixmap resize(bool active)
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResize_ : iResize_; }
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
Palette & standardPalette()
|
|
|
|
{ return standardPal_; }
|
2000-04-10 17:18:21 +00:00
|
|
|
|
2000-07-15 06:59:08 +00:00
|
|
|
private:
|
2000-04-12 00:13:14 +00:00
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
void _drawButtonBorder (QPixmap &);
|
|
|
|
void _drawBorder (QPixmap &, int, int);
|
|
|
|
void _drawCloseSymbol (QPixmap &);
|
|
|
|
void _drawIconifySymbol(QPixmap &);
|
|
|
|
void _drawLowerSymbol (QPixmap &);
|
|
|
|
void _drawMaxSymbol (QPixmap &);
|
|
|
|
void _drawUnmaxSymbol (QPixmap &);
|
|
|
|
|
2000-04-10 17:18:21 +00:00
|
|
|
void _init();
|
|
|
|
|
|
|
|
static Static * instance_;
|
|
|
|
|
2000-07-15 11:27:55 +00:00
|
|
|
Palette standardPal_, aTitlePal_, iTitlePal_, aResizePal_, iResizePal_;
|
|
|
|
|
|
|
|
QPixmap aIconify_, aClose_, aLower_, aMax_, aUnmax_,
|
|
|
|
iIconify_, iClose_, iLower_, iMax_, iUnmax_,
|
|
|
|
aResize_, iResize_,
|
|
|
|
aIconifyDown_, aCloseDown_, aLowerDown_, aMaxDown_, aUnmaxDown_,
|
|
|
|
iIconifyDown_, iCloseDown_, iLowerDown_, iMaxDown_, iUnmaxDown_,
|
|
|
|
aResizeDown_, iResizeDown_,
|
|
|
|
aTitleTextLeft_, aTitleTextRight_,
|
|
|
|
aResizeMidLeft_, aResizeMidRight_,
|
|
|
|
iTitleTextLeft_, iTitleTextRight_,
|
|
|
|
iResizeMidLeft_, iResizeMidRight_,
|
|
|
|
aTitleTextMid_, iTitleTextMid_,
|
|
|
|
aResizeMid_, iResizeMid_;
|
|
|
|
|
|
|
|
QList<QPixmap> buttonPixmaps_;
|
|
|
|
|
|
|
|
QPainter painter_;
|
|
|
|
bool down_;
|
|
|
|
Palette palette_;
|
|
|
|
double transx, transy;
|
2000-04-10 17:18:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace
|
|
|
|
|
|
|
|
#endif
|
2000-04-12 00:13:14 +00:00
|
|
|
|
2000-04-10 17:18:21 +00:00
|
|
|
// vim:ts=2:sw=2:tw=78
|