1999-12-24 01:36:47 +00:00
|
|
|
#include "nextclient.h"
|
|
|
|
#include <qapplication.h>
|
|
|
|
#include <qcursor.h>
|
|
|
|
#include <qabstractlayout.h>
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qdrawutil.h>
|
|
|
|
#include <kpixmapeffect.h>
|
|
|
|
#include <qbitmap.h>
|
|
|
|
#include "../../workspace.h"
|
|
|
|
#include "../../options.h"
|
|
|
|
|
2001-02-20 01:20:38 +00:00
|
|
|
using namespace KWinInternal;
|
|
|
|
|
1999-12-24 01:36:47 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2000-09-25 15:30:51 +00:00
|
|
|
Client *allocate(Workspace *ws, WId w, int )
|
1999-12-24 01:36:47 +00:00
|
|
|
{
|
|
|
|
return(new NextClient(ws, w));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned char close_bits[] = {
|
|
|
|
0x03, 0x03, 0x87, 0x03, 0xce, 0x01, 0xfc, 0x00, 0x78, 0x00, 0x78, 0x00,
|
|
|
|
0xfc, 0x00, 0xce, 0x01, 0x87, 0x03, 0x03, 0x03};
|
|
|
|
|
|
|
|
static unsigned char iconify_bits[] = {
|
|
|
|
0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0xff, 0x03, 0x03, 0x03, 0x03, 0x03,
|
|
|
|
0x03, 0x03, 0x03, 0x03, 0xff, 0x03, 0xff, 0x03};
|
|
|
|
|
|
|
|
static unsigned char sticky_bits[] = {
|
|
|
|
0x00, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0xfe, 0x01, 0xfe, 0x01,
|
|
|
|
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x00, 0x00};
|
|
|
|
|
|
|
|
static unsigned char unsticky_bits[] = {
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x01, 0xfe, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
|
|
|
|
|
|
static KPixmap *aTitlePix=0;
|
|
|
|
static KPixmap *iTitlePix=0;
|
|
|
|
static KPixmap *aFramePix=0;
|
|
|
|
static KPixmap *iFramePix=0;
|
|
|
|
static KPixmap *aHandlePix=0;
|
|
|
|
static KPixmap *iHandlePix=0;
|
2000-04-28 11:01:42 +00:00
|
|
|
static KPixmap *aBtn=0;
|
|
|
|
static KPixmap *aBtnDown=0;
|
|
|
|
static KPixmap *iBtn=0;
|
|
|
|
static KPixmap *iBtnDown=0;
|
1999-12-24 01:36:47 +00:00
|
|
|
static bool pixmaps_created = false;
|
2000-04-28 11:01:42 +00:00
|
|
|
static QColor btnForeground;
|
1999-12-24 01:36:47 +00:00
|
|
|
|
|
|
|
static void create_pixmaps()
|
|
|
|
{
|
|
|
|
if(pixmaps_created)
|
|
|
|
return;
|
|
|
|
pixmaps_created = true;
|
|
|
|
|
|
|
|
aTitlePix = new KPixmap();
|
|
|
|
aTitlePix->resize(32, 14);
|
|
|
|
KPixmapEffect::gradient(*aTitlePix,
|
|
|
|
options->color(Options::TitleBar, true),
|
|
|
|
options->color(Options::TitleBlend, true),
|
|
|
|
KPixmapEffect::VerticalGradient);
|
|
|
|
iTitlePix = new KPixmap();
|
|
|
|
iTitlePix->resize(32, 14);
|
|
|
|
KPixmapEffect::gradient(*iTitlePix,
|
|
|
|
options->color(Options::TitleBar, false),
|
|
|
|
options->color(Options::TitleBlend, false),
|
|
|
|
KPixmapEffect::VerticalGradient);
|
|
|
|
// Bottom frame gradient
|
|
|
|
aFramePix = new KPixmap();
|
|
|
|
aFramePix->resize(32, 6);
|
|
|
|
KPixmapEffect::gradient(*aFramePix,
|
|
|
|
options->color(Options::Frame, true).light(150),
|
|
|
|
options->color(Options::Frame, true).dark(120),
|
|
|
|
KPixmapEffect::VerticalGradient);
|
|
|
|
iFramePix = new KPixmap();
|
|
|
|
iFramePix->resize(32, 6);
|
|
|
|
KPixmapEffect::gradient(*iFramePix,
|
|
|
|
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);
|
2000-04-28 11:01:42 +00:00
|
|
|
|
|
|
|
iBtn = new KPixmap;
|
|
|
|
iBtn->resize(18, 18);
|
|
|
|
iBtnDown = new KPixmap;
|
|
|
|
iBtnDown->resize(18, 18);
|
|
|
|
aBtn = new KPixmap;
|
|
|
|
aBtn->resize(18, 18);
|
|
|
|
aBtnDown = new KPixmap;
|
|
|
|
aBtnDown->resize(18, 18);
|
|
|
|
KPixmap internal;
|
|
|
|
internal.resize(12, 12);
|
2000-09-25 15:30:51 +00:00
|
|
|
|
2000-04-28 11:01:42 +00:00
|
|
|
// inactive buttons
|
|
|
|
QColor c(options->color(Options::ButtonBg, false));
|
|
|
|
KPixmapEffect::gradient(*iBtn, c.light(120), c.dark(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
KPixmapEffect::gradient(internal, c.dark(120), c.light(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
bitBlt(iBtn, 3, 3, &internal, 0, 0, 12, 12, Qt::CopyROP, true);
|
|
|
|
|
|
|
|
KPixmapEffect::gradient(*iBtnDown, c.dark(120), c.light(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
KPixmapEffect::gradient(internal, c.light(120), c.dark(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
bitBlt(iBtnDown, 3, 3, &internal, 0, 0, 12, 12, Qt::CopyROP, true);
|
|
|
|
|
|
|
|
// active buttons
|
|
|
|
c = options->color(Options::ButtonBg, true);
|
|
|
|
KPixmapEffect::gradient(*aBtn, c.light(120), c.dark(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
KPixmapEffect::gradient(internal, c.dark(120), c.light(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
bitBlt(aBtn, 3, 3, &internal, 0, 0, 12, 12, Qt::CopyROP, true);
|
|
|
|
|
|
|
|
KPixmapEffect::gradient(*aBtnDown, c.dark(120), c.light(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
KPixmapEffect::gradient(internal, c.light(120), c.dark(120),
|
|
|
|
KPixmapEffect::DiagonalGradient);
|
|
|
|
bitBlt(aBtnDown, 3, 3, &internal, 0, 0, 12, 12, Qt::CopyROP, true);
|
|
|
|
|
|
|
|
QPainter p;
|
|
|
|
p.begin(aBtn);
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
p.drawRect(0, 0, 18, 18);
|
|
|
|
p.end();
|
|
|
|
p.begin(iBtn);
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
p.drawRect(0, 0, 18, 18);
|
|
|
|
p.end();
|
|
|
|
p.begin(aBtnDown);
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
p.drawRect(0, 0, 18, 18);
|
|
|
|
p.end();
|
|
|
|
p.begin(iBtnDown);
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
p.drawRect(0, 0, 18, 18);
|
|
|
|
p.end();
|
|
|
|
|
|
|
|
if(qGray(options->color(Options::ButtonBg, true).rgb()) > 128)
|
|
|
|
btnForeground = Qt::black;
|
|
|
|
else
|
|
|
|
btnForeground = Qt::white;
|
2000-01-23 23:33:29 +00:00
|
|
|
}
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2000-01-23 23:33:29 +00:00
|
|
|
void NextClient::slotReset()
|
|
|
|
{
|
|
|
|
delete aTitlePix;
|
|
|
|
delete iTitlePix;
|
|
|
|
delete aFramePix;
|
|
|
|
delete iFramePix;
|
|
|
|
delete aHandlePix;
|
|
|
|
delete iHandlePix;
|
2000-04-28 11:01:42 +00:00
|
|
|
delete aBtn;
|
|
|
|
delete iBtn;
|
|
|
|
delete aBtnDown;
|
|
|
|
delete iBtnDown;
|
2000-09-25 15:30:51 +00:00
|
|
|
|
2000-01-23 23:33:29 +00:00
|
|
|
pixmaps_created = false;
|
|
|
|
create_pixmaps();
|
|
|
|
button[0]->reset();
|
|
|
|
button[1]->reset();
|
|
|
|
button[2]->reset();
|
1999-12-24 01:36:47 +00:00
|
|
|
}
|
|
|
|
|
2000-04-28 11:01:42 +00:00
|
|
|
NextButton::NextButton(Client *parent, const char *name,
|
1999-12-24 01:36:47 +00:00
|
|
|
const unsigned char *bitmap, int bw, int bh)
|
|
|
|
: QButton(parent, name)
|
|
|
|
{
|
2001-04-19 19:31:30 +00:00
|
|
|
setBackgroundMode( NoBackground );
|
2000-04-28 11:01:42 +00:00
|
|
|
client = parent;
|
2000-01-23 23:33:29 +00:00
|
|
|
resize(18, 18);
|
|
|
|
|
|
|
|
if(bitmap)
|
|
|
|
setBitmap(bitmap, bw, bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextButton::reset()
|
|
|
|
{
|
2000-04-28 11:01:42 +00:00
|
|
|
repaint(false);
|
1999-12-24 01:36:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NextButton::setBitmap(const unsigned char *bitmap, int w, int h)
|
|
|
|
{
|
|
|
|
deco = QBitmap(w, h, bitmap, true);
|
|
|
|
deco.setMask(deco);
|
|
|
|
repaint();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextButton::drawButton(QPainter *p)
|
|
|
|
{
|
2000-04-28 11:01:42 +00:00
|
|
|
if(client->isActive())
|
|
|
|
p->drawPixmap(0, 0, isDown() ? *aBtnDown : *aBtn);
|
1999-12-24 01:36:47 +00:00
|
|
|
else
|
2000-04-28 11:01:42 +00:00
|
|
|
p->drawPixmap(0, 0, isDown() ? *iBtnDown : *iBtn);
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2000-04-28 11:01:42 +00:00
|
|
|
p->setPen(btnForeground);
|
1999-12-24 01:36:47 +00:00
|
|
|
p->drawPixmap(isDown()? 5 : 4, isDown() ? 5 : 4, deco);
|
|
|
|
}
|
|
|
|
|
|
|
|
NextClient::NextClient( Workspace *ws, WId w, QWidget *parent,
|
|
|
|
const char *name )
|
|
|
|
: Client( ws, w, parent, name, WResizeNoErase )
|
|
|
|
{
|
2001-04-19 19:31:30 +00:00
|
|
|
setBackgroundMode( NoBackground );
|
1999-12-24 01:36:47 +00:00
|
|
|
create_pixmaps();
|
2000-01-23 23:33:29 +00:00
|
|
|
connect(options, SIGNAL(resetClients()), this, SLOT(slotReset()));
|
2000-09-25 15:30:51 +00:00
|
|
|
|
1999-12-24 01:36:47 +00:00
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
|
|
|
QHBoxLayout *titleLayout = new QHBoxLayout();
|
|
|
|
QHBoxLayout *windowLayout = new QHBoxLayout();
|
|
|
|
|
|
|
|
mainLayout->addLayout(titleLayout);
|
|
|
|
mainLayout->addLayout(windowLayout, 1);
|
|
|
|
mainLayout->addSpacing(6);
|
|
|
|
|
|
|
|
windowLayout->addSpacing(1);
|
|
|
|
windowLayout->addWidget(windowWrapper(), 1);
|
|
|
|
windowLayout->addSpacing(1);
|
|
|
|
|
|
|
|
|
|
|
|
button[0] = new NextButton(this, "close", close_bits, 10, 10);
|
|
|
|
button[1] = new NextButton(this, "sticky");
|
2000-09-11 05:45:02 +00:00
|
|
|
stickyChange(isSticky());
|
1999-12-24 01:36:47 +00:00
|
|
|
button[2] = new NextButton(this, "iconify", iconify_bits, 10, 10);
|
|
|
|
|
|
|
|
connect( button[0], SIGNAL( clicked() ), this, ( SLOT( closeWindow() ) ) );
|
|
|
|
connect( button[1], SIGNAL( clicked() ), this, ( SLOT( toggleSticky() ) ) );
|
|
|
|
connect( button[2], SIGNAL( clicked() ), this, ( SLOT( iconify() ) ) );
|
|
|
|
titleLayout->addWidget( button[2] );
|
|
|
|
titlebar = new QSpacerItem(10, 16, QSizePolicy::Expanding,
|
|
|
|
QSizePolicy::Minimum );
|
|
|
|
titleLayout->addItem(titlebar);
|
|
|
|
titleLayout->addWidget( button[1] );
|
|
|
|
titleLayout->addWidget( button[0] );
|
|
|
|
for ( int i = 0; i < 3; i++) {
|
|
|
|
button[i]->setMouseTracking( TRUE );
|
|
|
|
button[i]->setFixedSize( 18, 18 );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextClient::resizeEvent( QResizeEvent* e)
|
|
|
|
{
|
|
|
|
Client::resizeEvent( e );
|
|
|
|
|
|
|
|
if ( isVisibleToTLW() && !testWFlags( WNorthWestGravity )) {
|
|
|
|
QPainter p( this );
|
|
|
|
QRect t = titlebar->geometry();
|
|
|
|
t.setTop( 0 );
|
|
|
|
QRegion r = rect();
|
|
|
|
r = r.subtract( t );
|
|
|
|
p.setClipRegion( r );
|
|
|
|
p.eraseRect( rect() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextClient::captionChange( const QString& )
|
|
|
|
{
|
|
|
|
repaint( titlebar->geometry(), false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NextClient::paintEvent( QPaintEvent* )
|
|
|
|
{
|
|
|
|
QPainter p( this );
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
p.drawRect(rect());
|
|
|
|
|
|
|
|
QRect t = titlebar->geometry();
|
|
|
|
t.setTop(1);
|
|
|
|
p.drawTiledPixmap(t.x()+1, t.y()+1, t.width()-2, t.height()-2,
|
|
|
|
isActive() ? *aTitlePix : *iTitlePix);
|
|
|
|
qDrawShadePanel(&p, t.x(), t.y(), t.width(), t.height()-1,
|
|
|
|
options->colorGroup(Options::TitleBar, isActive()));
|
|
|
|
p.drawLine(t.x(), t.bottom(), t.right(), t.bottom());
|
|
|
|
QRegion r = rect();
|
|
|
|
r = r.subtract( t );
|
|
|
|
p.setClipRegion( r );
|
|
|
|
p.setClipping( FALSE );
|
|
|
|
|
|
|
|
t.setTop( 2 );
|
|
|
|
t.setHeight(t.height()-4);
|
|
|
|
t.setLeft( t.left() + 4 );
|
|
|
|
t.setRight( t.right() - 2 );
|
|
|
|
|
|
|
|
p.setPen(options->color(Options::Font, isActive()));
|
|
|
|
p.setFont(options->font(isActive()));
|
|
|
|
p.drawText( t, AlignCenter, caption() );
|
|
|
|
|
|
|
|
|
|
|
|
qDrawShadePanel(&p, rect().x()+1, rect().bottom()-6, 24, 6,
|
|
|
|
options->colorGroup(Options::Handle, isActive()), false);
|
|
|
|
p.drawTiledPixmap(rect().x()+2, rect().bottom()-5, 22, 4,
|
|
|
|
isActive() ? *aHandlePix : *iHandlePix);
|
|
|
|
|
|
|
|
qDrawShadePanel(&p, rect().x()+25, rect().bottom()-6, rect().width()-50, 6,
|
|
|
|
options->colorGroup(Options::Frame, isActive()), false);
|
|
|
|
p.drawTiledPixmap(rect().x()+26, rect().bottom()-5, rect().width()-52, 4,
|
|
|
|
isActive() ? *aFramePix : *iFramePix);
|
|
|
|
|
|
|
|
qDrawShadePanel(&p, rect().right()-24, rect().bottom()-6, 24, 6,
|
|
|
|
options->colorGroup(Options::Handle, isActive()), false);
|
|
|
|
p.drawTiledPixmap(rect().right()-23, rect().bottom()-5, 22, 4,
|
|
|
|
isActive() ? *aHandlePix : *iHandlePix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextClient::mouseDoubleClickEvent( QMouseEvent * e )
|
|
|
|
{
|
|
|
|
if (titlebar->geometry().contains( e->pos() ) )
|
2000-09-11 03:34:01 +00:00
|
|
|
workspace()->performWindowOperation( this, options->operationTitlebarDblClick() );
|
1999-12-24 01:36:47 +00:00
|
|
|
workspace()->requestFocus( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
void NextClient::stickyChange(bool on)
|
|
|
|
{
|
|
|
|
if(on)
|
2000-09-11 05:45:02 +00:00
|
|
|
button[1]->setBitmap(unsticky_bits, 10, 10);
|
1999-12-24 01:36:47 +00:00
|
|
|
else
|
2000-09-11 05:45:02 +00:00
|
|
|
button[1]->setBitmap(sticky_bits, 10, 10);
|
1999-12-24 01:36:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void NextClient::init()
|
|
|
|
{
|
|
|
|
Client::init();
|
|
|
|
}
|
|
|
|
|
2000-04-28 11:01:42 +00:00
|
|
|
void NextClient::activeChange(bool)
|
|
|
|
{
|
|
|
|
repaint(false);
|
|
|
|
button[0]->reset();
|
|
|
|
button[1]->reset();
|
|
|
|
button[2]->reset();
|
|
|
|
}
|
|
|
|
|
2000-09-24 10:28:06 +00:00
|
|
|
Client::MousePosition
|
|
|
|
NextClient::mousePosition( const QPoint& p ) const
|
|
|
|
{
|
|
|
|
MousePosition m = Nowhere;
|
|
|
|
|
|
|
|
if (p.y() < (height() - 6))
|
|
|
|
m = Client::mousePosition(p);
|
|
|
|
|
|
|
|
else {
|
|
|
|
if (p.x() >= (width() - 25))
|
|
|
|
m = BottomRight;
|
|
|
|
else if (p.x() <= 25)
|
|
|
|
m = BottomLeft;
|
|
|
|
else
|
|
|
|
m = Bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-29 21:36:40 +00:00
|
|
|
#include "nextclient.moc"
|