You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
445 lines
11 KiB
445 lines
11 KiB
/*****************************************************************
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
DEALINGS IN THE SOFTWARE.
|
|
******************************************************************/
|
|
|
|
#include "kdecoration.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <tqapplication.h>
|
|
#include <kglobal.h>
|
|
#include <assert.h>
|
|
#if defined Q_WS_X11 && ! defined K_WS_QTONLY
|
|
#include <X11/Xlib.h>
|
|
#include <fixx11h.h>
|
|
#endif
|
|
|
|
#include "kdecoration_p.h"
|
|
#include "kdecorationfactory.h"
|
|
|
|
KDecorationOptions* KDecoration::options_;
|
|
|
|
KDecoration::KDecoration( KDecorationBridge* bridge, KDecorationFactory* factory )
|
|
: bridge_( bridge ),
|
|
w_( NULL ),
|
|
factory_( factory )
|
|
{
|
|
factory->addDecoration( this );
|
|
}
|
|
|
|
KDecoration::~KDecoration()
|
|
{
|
|
factory()->removeDecoration( this );
|
|
delete w_;
|
|
}
|
|
|
|
const KDecorationOptions* KDecoration::options()
|
|
{
|
|
return options_;
|
|
}
|
|
|
|
void KDecoration::createMainWidget( TQt::WFlags flags )
|
|
{
|
|
// FRAME check flags?
|
|
setMainWidget( new TQWidget( initialParentWidget(), "decoration widget", initialWFlags() | flags ));
|
|
}
|
|
|
|
void KDecoration::setMainWidget( TQWidget* w )
|
|
{
|
|
assert( w_ == NULL );
|
|
w_ = w;
|
|
w->setMouseTracking( true );
|
|
widget()->resize( geometry().size());
|
|
}
|
|
|
|
TQWidget* KDecoration::initialParentWidget() const
|
|
{
|
|
return bridge_->initialParentWidget();
|
|
}
|
|
|
|
TQt::WFlags KDecoration::initialWFlags() const
|
|
{
|
|
return bridge_->initialWFlags();
|
|
}
|
|
|
|
bool KDecoration::isActive() const
|
|
{
|
|
return bridge_->isActive();
|
|
}
|
|
|
|
bool KDecoration::isCloseable() const
|
|
{
|
|
return bridge_->isCloseable();
|
|
}
|
|
|
|
bool KDecoration::isMaximizable() const
|
|
{
|
|
return bridge_->isMaximizable();
|
|
}
|
|
|
|
KDecoration::MaximizeMode KDecoration::maximizeMode() const
|
|
{
|
|
return bridge_->maximizeMode();
|
|
}
|
|
|
|
bool KDecoration::isMinimizable() const
|
|
{
|
|
return bridge_->isMinimizable();
|
|
}
|
|
|
|
bool KDecoration::providesContextHelp() const
|
|
{
|
|
return bridge_->providesContextHelp();
|
|
}
|
|
|
|
int KDecoration::desktop() const
|
|
{
|
|
return bridge_->desktop();
|
|
}
|
|
|
|
bool KDecoration::isModal() const
|
|
{
|
|
return bridge_->isModal();
|
|
}
|
|
|
|
bool KDecoration::isShadeable() const
|
|
{
|
|
return bridge_->isShadeable();
|
|
}
|
|
|
|
bool KDecoration::isShade() const
|
|
{
|
|
return bridge_->isShade();
|
|
}
|
|
|
|
bool KDecoration::isSetShade() const
|
|
{
|
|
return bridge_->isSetShade();
|
|
}
|
|
|
|
bool KDecoration::keepAbove() const
|
|
{
|
|
return bridge_->keepAbove();
|
|
}
|
|
|
|
bool KDecoration::keepBelow() const
|
|
{
|
|
return bridge_->keepBelow();
|
|
}
|
|
|
|
bool KDecoration::isMovable() const
|
|
{
|
|
return bridge_->isMovable();
|
|
}
|
|
|
|
bool KDecoration::isResizable() const
|
|
{
|
|
return bridge_->isResizable();
|
|
}
|
|
|
|
NET::WindowType KDecoration::windowType( unsigned long supported_types ) const
|
|
{ // this one is also duplicated in KDecorationFactory
|
|
return bridge_->windowType( supported_types );
|
|
}
|
|
|
|
TQIconSet KDecoration::icon() const
|
|
{
|
|
return bridge_->icon();
|
|
}
|
|
|
|
TQString KDecoration::caption() const
|
|
{
|
|
return bridge_->caption();
|
|
}
|
|
|
|
void KDecoration::processMousePressEvent( TQMouseEvent* e )
|
|
{
|
|
return bridge_->processMousePressEvent( e );
|
|
}
|
|
|
|
void KDecoration::showWindowMenu( const TQRect &pos )
|
|
{
|
|
bridge_->showWindowMenu( pos );
|
|
}
|
|
|
|
void KDecoration::showWindowMenu( TQPoint pos )
|
|
{
|
|
bridge_->showWindowMenu( pos );
|
|
}
|
|
|
|
void KDecoration::performWindowOperation( WindowOperation op )
|
|
{
|
|
bridge_->performWindowOperation( op );
|
|
}
|
|
|
|
void KDecoration::setMask( const TQRegion& reg, int mode )
|
|
{
|
|
bridge_->setMask( reg, mode );
|
|
}
|
|
|
|
void KDecoration::clearMask()
|
|
{
|
|
bridge_->setMask( TQRegion(), 0 );
|
|
}
|
|
|
|
bool KDecoration::isPreview() const
|
|
{
|
|
return bridge_->isPreview();
|
|
}
|
|
|
|
TQRect KDecoration::geometry() const
|
|
{
|
|
return bridge_->geometry();
|
|
}
|
|
|
|
TQRect KDecoration::iconGeometry() const
|
|
{
|
|
return bridge_->iconGeometry();
|
|
}
|
|
|
|
TQRegion KDecoration::unobscuredRegion( const TQRegion& r ) const
|
|
{
|
|
return bridge_->unobscuredRegion( r );
|
|
}
|
|
|
|
TQWidget* KDecoration::workspaceWidget() const
|
|
{
|
|
return bridge_->workspaceWidget();
|
|
}
|
|
|
|
WId KDecoration::windowId() const
|
|
{
|
|
return bridge_->windowId();
|
|
}
|
|
|
|
void KDecoration::closeWindow()
|
|
{
|
|
bridge_->closeWindow();
|
|
}
|
|
|
|
void KDecoration::maximize( ButtonState button )
|
|
{
|
|
performWindowOperation( options()->operationMaxButtonClick( button ));
|
|
}
|
|
|
|
void KDecoration::maximize( MaximizeMode mode )
|
|
{
|
|
bridge_->maximize( mode );
|
|
}
|
|
|
|
void KDecoration::minimize()
|
|
{
|
|
bridge_->minimize();
|
|
}
|
|
|
|
void KDecoration::showContextHelp()
|
|
{
|
|
bridge_->showContextHelp();
|
|
}
|
|
|
|
void KDecoration::setDesktop( int desktop )
|
|
{
|
|
bridge_->setDesktop( desktop );
|
|
}
|
|
|
|
void KDecoration::toggleOnAllDesktops()
|
|
{
|
|
if( isOnAllDesktops())
|
|
setDesktop( bridge_->currentDesktop());
|
|
else
|
|
setDesktop( NET::OnAllDesktops );
|
|
}
|
|
|
|
void KDecoration::titlebarDblClickOperation()
|
|
{
|
|
bridge_->titlebarDblClickOperation();
|
|
}
|
|
|
|
void KDecoration::titlebarMouseWheelOperation( int delta )
|
|
{
|
|
bridge_->titlebarMouseWheelOperation( delta );
|
|
}
|
|
|
|
void KDecoration::setShade( bool set )
|
|
{
|
|
bridge_->setShade( set );
|
|
}
|
|
|
|
void KDecoration::setKeepAbove( bool set )
|
|
{
|
|
bridge_->setKeepAbove( set );
|
|
}
|
|
|
|
void KDecoration::setKeepBelow( bool set )
|
|
{
|
|
bridge_->setKeepBelow( set );
|
|
}
|
|
|
|
bool KDecoration::drawbound( const TQRect&, bool )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool KDecoration::animateMinimize( bool )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool KDecoration::windowDocked( Position )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void KDecoration::helperShowHide( bool show )
|
|
{
|
|
bridge_->helperShowHide( show );
|
|
}
|
|
|
|
void KDecoration::reset( unsigned long )
|
|
{
|
|
}
|
|
|
|
void KDecoration::grabXServer()
|
|
{
|
|
bridge_->grabXServer( true );
|
|
}
|
|
|
|
void KDecoration::ungrabXServer()
|
|
{
|
|
bridge_->grabXServer( false );
|
|
}
|
|
|
|
KDecoration::Position KDecoration::mousePosition( const TQPoint& p ) const
|
|
{
|
|
const int range = 16;
|
|
int bleft, bright, btop, bbottom;
|
|
borders( bleft, bright, btop, bbottom );
|
|
btop = KMIN( btop, 4 ); // otherwise whole titlebar would have resize cursor
|
|
|
|
Position m = PositionCenter;
|
|
|
|
if ( ( p.x() > bleft && p.x() < widget()->width() - bright )
|
|
&& ( p.y() > btop && p.y() < widget()->height() - bbottom ) )
|
|
return PositionCenter;
|
|
|
|
if ( p.y() <= KMAX( range, btop ) && p.x() <= KMAX( range, bleft ))
|
|
m = PositionTopLeft;
|
|
else if ( p.y() >= widget()->height()- KMAX( range, bbottom )
|
|
&& p.x() >= widget()->width()- KMAX( range, bright ))
|
|
m = PositionBottomRight;
|
|
else if ( p.y() >= widget()->height()- KMAX( range, bbottom ) && p.x() <= KMAX( range, bleft ))
|
|
m = PositionBottomLeft;
|
|
else if ( p.y() <= KMAX( range, btop ) && p.x() >= widget()->width()- KMAX( range, bright ))
|
|
m = PositionTopRight;
|
|
else if ( p.y() <= btop )
|
|
m = PositionTop;
|
|
else if ( p.y() >= widget()->height()-bbottom )
|
|
m = PositionBottom;
|
|
else if ( p.x() <= bleft )
|
|
m = PositionLeft;
|
|
else if ( p.x() >= widget()->width()-bright )
|
|
m = PositionRight;
|
|
else
|
|
m = PositionCenter;
|
|
return m;
|
|
}
|
|
|
|
KDecorationOptions::KDecorationOptions()
|
|
{
|
|
assert( KDecoration::options_ == NULL );
|
|
KDecoration::options_ = this;
|
|
}
|
|
|
|
KDecorationOptions::~KDecorationOptions()
|
|
{
|
|
assert( KDecoration::options_ == this );
|
|
KDecoration::options_ = NULL;
|
|
}
|
|
|
|
const TQColor& KDecorationOptions::color(ColorType type, bool active) const
|
|
{
|
|
return(d->colors[type + (active ? 0 : NUM_COLORS)]);
|
|
}
|
|
|
|
const TQFont& KDecorationOptions::font(bool active, bool small) const
|
|
{
|
|
if ( small )
|
|
return(active ? d->activeFontSmall : d->inactiveFontSmall);
|
|
else
|
|
return(active ? d->activeFont : d->inactiveFont);
|
|
}
|
|
|
|
const TQColorGroup& KDecorationOptions::colorGroup(ColorType type, bool active) const
|
|
{
|
|
int idx = type + (active ? 0 : NUM_COLORS);
|
|
if(d->cg[idx])
|
|
return(*d->cg[idx]);
|
|
d->cg[idx] = new TQColorGroup(Qt::black, d->colors[idx], d->colors[idx].light(150),
|
|
d->colors[idx].dark(), d->colors[idx].dark(120),
|
|
Qt::black, TQApplication::palette().active().
|
|
base());
|
|
return(*d->cg[idx]);
|
|
}
|
|
|
|
bool KDecorationOptions::customButtonPositions() const
|
|
{
|
|
return d->custom_button_positions;
|
|
}
|
|
|
|
TQString KDecorationOptions::titleButtonsLeft() const
|
|
{
|
|
return d->title_buttons_left;
|
|
}
|
|
|
|
TQString KDecorationOptions::titleButtonsRight() const
|
|
{
|
|
return d->title_buttons_right;
|
|
}
|
|
|
|
bool KDecorationOptions::showTooltips() const
|
|
{
|
|
return d->show_tooltips;
|
|
}
|
|
|
|
KDecorationOptions::BorderSize KDecorationOptions::preferredBorderSize( KDecorationFactory* factory ) const
|
|
{
|
|
assert( factory != NULL );
|
|
if( d->cached_border_size == BordersCount ) // invalid
|
|
d->cached_border_size = d->findPreferredBorderSize( d->border_size,
|
|
factory->borderSizes());
|
|
return d->cached_border_size;
|
|
}
|
|
|
|
bool KDecorationOptions::moveResizeMaximizedWindows() const
|
|
{
|
|
return d->move_resize_maximized_windows;
|
|
}
|
|
|
|
KDecorationDefines::WindowOperation KDecorationOptions::operationMaxButtonClick( TQt::ButtonState button ) const
|
|
{
|
|
return button == Qt::RightButton? d->OpMaxButtonRightClick :
|
|
button == Qt::MidButton? d->OpMaxButtonMiddleClick :
|
|
d->OpMaxButtonLeftClick;
|
|
}
|
|
|
|
#include "kdecoration.moc"
|