Making this style ultra-cool ;-) If you are on a highcolor display the frame

top and bottom automatically gradient bevels according to the color scheme.
Very cool looking, and no configuration required. If you want to see a pic
look at http://www.mosfet.org/system-gr.gif.

To try it out update, set the system color scheme, and the switch to the System
style via the right mouse menu on the kwin titlebar.

svn path=/trunk/kdebase/kwin/; revision=39064
This commit is contained in:
Daniel M. Duley 2000-01-23 13:39:20 +00:00
parent d4e4653ac8
commit 202be83dae

View file

@ -8,6 +8,7 @@
#include <qdrawutil.h> #include <qdrawutil.h>
#include <kpixmapeffect.h> #include <kpixmapeffect.h>
#include <kdrawutil.h> #include <kdrawutil.h>
#include <kapp.h>
#include <qbitmap.h> #include <qbitmap.h>
#include "../../workspace.h" #include "../../workspace.h"
#include "../../options.h" #include "../../options.h"
@ -43,10 +44,10 @@ static unsigned char question_bits[] = {
0x3c, 0x66, 0x60, 0x30, 0x18, 0x00, 0x18, 0x18}; 0x3c, 0x66, 0x60, 0x30, 0x18, 0x00, 0x18, 0x18};
static QPixmap *titlePix=0; static QPixmap *titlePix=0;
static KPixmap *aFramePix=0; static KPixmap *aUpperGradient=0;
static KPixmap *iFramePix=0; static KPixmap *aLowerGradient=0;
static KPixmap *aHandlePix=0; static KPixmap *iUpperGradient=0;
static KPixmap *iHandlePix=0; static KPixmap *iLowerGradient=0;
static bool pixmaps_created = false; static bool pixmaps_created = false;
static void create_pixmaps() static void create_pixmaps()
@ -78,34 +79,33 @@ static void create_pixmaps()
maskPainter.end(); maskPainter.end();
titlePix->setMask(mask); titlePix->setMask(mask);
// Bottom frame gradient if(QPixmap::defaultDepth() > 8 &&
aFramePix = new KPixmap(); kapp->palette().normal().brush(QColorGroup::Background).pixmap()==NULL){
aFramePix->resize(32, 6); aUpperGradient = new KPixmap;
KPixmapEffect::gradient(*aFramePix, aUpperGradient->resize(32, 18);
options->color(Options::Frame, true).light(150), iUpperGradient = new KPixmap;
options->color(Options::Frame, true).dark(120), iUpperGradient->resize(32, 18);
KPixmapEffect::VerticalGradient); aLowerGradient = new KPixmap;
iFramePix = new KPixmap(); aLowerGradient->resize(32, 6);
iFramePix->resize(32, 6); iLowerGradient = new KPixmap;
KPixmapEffect::gradient(*iFramePix, iLowerGradient->resize(32, 6);
options->color(Options::Frame, false).light(150),
options->color(Options::Frame, false).dark(120),
KPixmapEffect::VerticalGradient);
// Handle gradient
aHandlePix = new KPixmap();
aHandlePix->resize(32, 6);
KPixmapEffect::gradient(*aHandlePix,
options->color(Options::Handle, true).light(150),
options->color(Options::Handle, true).dark(120),
KPixmapEffect::VerticalGradient);
iHandlePix = new KPixmap();
iHandlePix->resize(32, 6);
KPixmapEffect::gradient(*iHandlePix,
options->color(Options::Handle, false).light(150),
options->color(Options::Handle, false).dark(120),
KPixmapEffect::VerticalGradient);
QColor bgColor = kapp->palette().normal().background();
KPixmapEffect::gradient(*aUpperGradient,
options->color(Options::Frame, true).light(130),
bgColor,
KPixmapEffect::VerticalGradient);
KPixmapEffect::gradient(*iUpperGradient,
options->color(Options::Frame, false).light(130),
bgColor,
KPixmapEffect::VerticalGradient);
KPixmapEffect::gradient(*aLowerGradient, bgColor,
options->color(Options::Frame, true).dark(120),
KPixmapEffect::VerticalGradient);
KPixmapEffect::gradient(*iLowerGradient, bgColor,
options->color(Options::Frame, false).dark(120),
KPixmapEffect::VerticalGradient);
}
} }
@ -317,7 +317,16 @@ void SystemClient::paintEvent( QPaintEvent* )
brush(QColorGroup::Button)); brush(QColorGroup::Button));
p.fillRect(rect(), fillBrush); p.fillRect(rect(), fillBrush);
drawRoundFrame(p, 0, 0, width(), height()); if(aUpperGradient){
if(isActive()){
p.drawTiledPixmap(0, 0, width(), 18, *aUpperGradient);
p.drawTiledPixmap(0, height()-7, width(), 6, *aLowerGradient);
}
else{
p.drawTiledPixmap(0, 0, width(), 18, *iUpperGradient);
p.drawTiledPixmap(0, height()-7, width(), 6, *iLowerGradient);
}
}
t.setTop( 2 ); t.setTop( 2 );
if(isActive()) if(isActive())
p.drawTiledPixmap(t, *titlePix); p.drawTiledPixmap(t, *titlePix);
@ -335,8 +344,14 @@ void SystemClient::paintEvent( QPaintEvent* )
p.setFont(options->font(isActive())); p.setFont(options->font(isActive()));
if(isActive()){ if(isActive()){
QFontMetrics fm(options->font(true)); QFontMetrics fm(options->font(true));
p.fillRect(t.x()+((t.width()-fm.width(caption()))/2)-4, t.y(), if(aUpperGradient)
fm.width(caption())+8, t.height(), fillBrush); p.drawTiledPixmap(t.x()+((t.width()-fm.width(caption()))/2)-4,
0, fm.width(caption())+8, 18,
isActive() ? *aUpperGradient :
*iUpperGradient);
else
p.fillRect(t.x()+((t.width()-fm.width(caption()))/2)-4, t.y(),
fm.width(caption())+8, t.height(), fillBrush);
} }
p.drawText( t, AlignCenter, caption() ); p.drawText( t, AlignCenter, caption() );
@ -347,6 +362,8 @@ void SystemClient::paintEvent( QPaintEvent* )
p.setPen(options->colorGroup(Options::Frame, isActive()).dark()); p.setPen(options->colorGroup(Options::Frame, isActive()).dark());
p.drawLine(width()-20, height()-6, width()-10, height()-6); p.drawLine(width()-20, height()-6, width()-10, height()-6);
p.drawLine(width()-20, height()-4, width()-10, height()-4); p.drawLine(width()-20, height()-4, width()-10, height()-4);
drawRoundFrame(p, 0, 0, width(), height());
} }
#define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2) #define QCOORDARRLEN(x) sizeof(x)/(sizeof(QCOORD)*2)