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-10-10 22:03:50 +00:00
|
|
|
#include <qstringlist.h>
|
2000-04-10 17:18:21 +00:00
|
|
|
|
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-09-27 21:33:15 +00:00
|
|
|
const QPixmap & titleTextLeft(bool active) const
|
2000-07-15 11:27:55 +00:00
|
|
|
{ return active ? aTitleTextLeft_ : iTitleTextLeft_; }
|
2000-07-15 06:59:08 +00:00
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & titleTextRight(bool active) const
|
2000-07-15 11:27:55 +00:00
|
|
|
{ return active ? aTitleTextRight_ : iTitleTextRight_; }
|
2000-07-15 06:59:08 +00:00
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & resizeMidLeft(bool active) const
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMidLeft_ : iResizeMidLeft_; }
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & resizeMidRight(bool active) const
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMidRight_ : iResizeMidRight_; }
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & titleTextMid(bool active) const
|
2000-07-15 11:27:55 +00:00
|
|
|
{ return active ? aTitleTextMid_ : iTitleTextMid_; }
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & resizeMidMid(bool active) const
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResizeMid_ : iResizeMid_; }
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & buttonBase(bool active, bool down) const;
|
2000-04-10 17:18:21 +00:00
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const QPixmap & resize(bool active) const
|
2000-04-10 17:18:21 +00:00
|
|
|
{ return active ? aResize_ : iResize_; }
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
const Palette & standardPalette() const
|
2000-07-15 11:27:55 +00:00
|
|
|
{ return standardPal_; }
|
2000-04-10 17:18:21 +00:00
|
|
|
|
2000-10-10 22:03:50 +00:00
|
|
|
const QStringList & leftButtons() const
|
|
|
|
{ return leftButtons_; }
|
|
|
|
|
|
|
|
const QStringList & rightButtons() const
|
|
|
|
{ return rightButtons_; }
|
|
|
|
|
2000-10-27 02:16:14 +00:00
|
|
|
int animationStyle() const
|
|
|
|
{ return animationStyle_; }
|
|
|
|
|
|
|
|
int titleHeight() const
|
|
|
|
{ return titleHeight_; }
|
|
|
|
|
|
|
|
int resizeHeight() const
|
|
|
|
{ return resizeHeight_; }
|
|
|
|
|
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 _drawBorder (QPixmap &, int, int);
|
|
|
|
|
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_;
|
|
|
|
|
2000-09-27 21:33:15 +00:00
|
|
|
QPixmap
|
|
|
|
aButtonUp_, iButtonUp_,
|
|
|
|
aButtonDown_, iButtonDown_,
|
|
|
|
aResize_, iResize_,
|
|
|
|
aResizeDown_, iResizeDown_,
|
|
|
|
aTitleTextLeft_, iTitleTextLeft_,
|
|
|
|
aTitleTextRight_, iTitleTextRight_,
|
|
|
|
aTitleTextMid_, iTitleTextMid_,
|
|
|
|
aResizeMidLeft_, iResizeMidLeft_,
|
|
|
|
aResizeMidRight_, iResizeMidRight_,
|
|
|
|
aResizeMid_, iResizeMid_;
|
2000-07-15 11:27:55 +00:00
|
|
|
|
|
|
|
QPainter painter_;
|
|
|
|
bool down_;
|
|
|
|
Palette palette_;
|
|
|
|
double transx, transy;
|
2000-10-10 22:03:50 +00:00
|
|
|
|
|
|
|
QStringList leftButtons_, rightButtons_;
|
2000-10-27 02:16:14 +00:00
|
|
|
|
|
|
|
int animationStyle_;
|
|
|
|
|
|
|
|
int titleHeight_;
|
|
|
|
int resizeHeight_;
|
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
|