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.
koffice/chalk/plugins/viewplugins/screenshot/regiongrabber.cpp

171 lines
3.9 KiB

/*
* This file was copied from ksnapshot
*
* Copyright (C) 2003 Nadeem Hasan <nhasan@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "regiongrabber.h"
#include <tqpainter.h>
#include <tqpalette.h>
#include <tqstyle.h>
#include <tqtimer.h>
#include <tqtooltip.h>
#include <kglobalsettings.h>
SizeTip::SizeTip( TQWidget *parent, const char *name )
: TQLabel( parent, name, WStyle_Customize | WX11BypassWM |
WStyle_StaysOnTop | WStyle_NoBorder | WStyle_Tool )
{
setMargin( 2 );
setIndent( 0 );
setFrameStyle( TQFrame::Plain | TQFrame::Box );
setPalette( TQToolTip::palette() );
}
void SizeTip::setTip( const TQRect &rect )
{
TQString tip = TQString( "%1x%2" ).arg( rect.width() )
.arg( rect.height() );
setText( tip );
adjustSize();
positionTip( rect );
}
void SizeTip::positionTip( const TQRect &rect )
{
TQRect tipRect = geometry();
tipRect.moveTopLeft( TQPoint( 0, 0 ) );
if ( rect.intersects( tipRect ) )
{
TQRect deskR = TDEGlobalSettings::desktopGeometry( TQPoint( 0, 0 ) );
tipRect.moveCenter( TQPoint( deskR.width()/2, deskR.height()/2 ) );
if ( !rect.contains( tipRect, true ) && rect.intersects( tipRect ) )
tipRect.moveBottomRight( geometry().bottomRight() );
}
move( tipRect.topLeft() );
}
RegionGrabber::RegionGrabber()
: TQWidget( 0, 0 ),
mouseDown( false ), sizeTip( 0L )
{
sizeTip = new SizeTip( ( TQWidget * )0L );
tipTimer = new TQTimer( this );
TQ_CHECK_PTR(tipTimer);
connect( tipTimer, TQT_SIGNAL( timeout() ), TQT_SLOT( updateSizeTip() ) );
TQTimer::singleShot( 200, this, TQT_SLOT( initGrabber() ) );
}
RegionGrabber::~RegionGrabber()
{
delete sizeTip;
}
void RegionGrabber::initGrabber()
{
pixmap = TQPixmap::grabWindow( tqt_xrootwin() );
setPaletteBackgroundPixmap( pixmap );
showFullScreen();
grabMouse( crossCursor );
}
void RegionGrabber::mousePressEvent( TQMouseEvent *e )
{
if ( e->button() == Qt::LeftButton )
{
mouseDown = true;
grabRect = TQRect( e->pos(), e->pos() );
}
}
void RegionGrabber::mouseMoveEvent( TQMouseEvent *e )
{
if ( mouseDown )
{
sizeTip->hide();
tipTimer->start( 250, true );
drawRubber();
grabRect.setBottomRight( e->pos() );
drawRubber();
}
}
void RegionGrabber::mouseReleaseEvent( TQMouseEvent *e )
{
mouseDown = false;
drawRubber();
sizeTip->hide();
grabRect.setBottomRight( e->pos() );
grabRect = grabRect.normalize();
TQPixmap region = TQPixmap::grabWindow( winId(), grabRect.x(), grabRect.y(),
grabRect.width(), grabRect.height() );
releaseMouse();
emit regionGrabbed( region );
}
void RegionGrabber::keyPressEvent( TQKeyEvent *e )
{
if ( e->key() == TQt::Key_Escape )
{
releaseMouse();
emit regionGrabbed( TQPixmap() );
}
else
e->ignore();
}
void RegionGrabber::updateSizeTip()
{
TQRect rect = grabRect.normalize();
sizeTip->setTip( rect );
sizeTip->show();
}
void RegionGrabber::drawRubber()
{
TQPainter p;
p.begin( this );
p.setRasterOp( NotROP );
p.setPen( TQPen( color0, 1 ) );
p.setBrush( NoBrush );
style().tqdrawPrimitive( TQStyle::PE_FocusRect, &p, grabRect, colorGroup(),
TQStyle::Style_Default, TQStyleOption( colorGroup().base() ) );
p.end();
}
#include "regiongrabber.moc"