1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
/****************************************************************************
** $Id: qt/src/kernel/qsizegrip.cpp 2.3.1 edited 2001-01-26 $
**
** Implementation of QSizeGrip class
**
** Created : 980119
**
** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
**
** This file is part of the kernel module of the Qt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Trolltech AS of Norway and appearing in the file
** LICENSE.QPL included in the packaging of this file.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
** licenses may use this file in accordance with the Qt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
** information about Qt Commercial License Agreements.
** See http://www.trolltech.com/qpl/ for QPL licensing information.
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include "qsizegrip.h"
#ifndef QT_NO_SIZEGRIP
#include "qpainter.h"
#include "qapplication.h"
#if defined(_WS_X11_)
#include "qt_x11.h"
extern Atom qt_sizegrip; // defined in qapplication_x11.cpp
#elif defined (_WS_WIN_ )
#include "qobjectlist.h"
#include "qt_windows.h"
#endif
static QWidget *qt_sizegrip_topLevelWidget( QWidget* w)
{
QWidget *p = w->parentWidget();
while ( !w->isTopLevel() && p && !p->inherits("QWorkspace") ) {
w = p;
p = p->parentWidget();
}
return w;
}
static QWidget* qt_sizegrip_workspace( QWidget* w )
{
while ( w && !w->inherits("QWorkspace" ) ) {
if ( w->isTopLevel() )
return 0;
w = w->parentWidget();
}
return w;
}
// NOT REVISED
/*! \class QSizeGrip qsizegrip.h
\brief The QSizeGrip class provides corner-grip for resizing a top level
window.
\ingroup application
\ingroup basic
This widget works like the standard Windows resize handle. In the
X11 version this resize handle generally works differently than the
one provided by the system; we hope to reduce this difference in the
future.
Put this widget anywhere in a tree and the user can use it to resize
the top-level window. Generally this should be in the lower right-hand
corner. Note that QStatusBar already uses this widget, so if you have
a status bar (eg. you are using QMainWindow), then you don't need to
use this widget explicitly.
<img src=qsizegrip-m.png> <img src=qsizegrip-w.png>
\sa QStatusBar
*/
/*!
Construct a resize corner as a child widget of \a parent.
*/
QSizeGrip::QSizeGrip( QWidget * parent, const char* name )
: QWidget( parent, name )
{
#ifndef QT_NO_CURSOR
setCursor( sizeFDiagCursor );
#endif
setSizePolicy( QSizePolicy( QSizePolicy::Minimum, QSizePolicy::Fixed ) );
#if defined(_WS_X11_)
if ( !qt_sizegrip_workspace( this ) ) {
WId id = winId();
XChangeProperty(qt_xdisplay(), topLevelWidget()->winId(),
qt_sizegrip, XA_WINDOW, 32, PropModeReplace,
(unsigned char *)&id, 1);
}
#endif
}
/*!
Destructor
*/
QSizeGrip::~QSizeGrip()
{
#if defined(_WS_X11_)
if ( !QApplication::closingDown() && parentWidget() ) {
WId id = None;
XChangeProperty(qt_xdisplay(), topLevelWidget()->winId(),
qt_sizegrip, XA_WINDOW, 32, PropModeReplace,
(unsigned char *)&id, 1);
}
#endif
}
/*!
Returns a small size.
*/
QSize QSizeGrip::sizeHint() const
{
return QSize( 13, 13 ).expandedTo( QApplication::globalStrut() );
}
/*!
Paints the resize grip - small diagonal textured lines in the
lower right-hand corner.
*/
void QSizeGrip::paintEvent( QPaintEvent *e )
{
QPainter painter( this );
painter.setClipRegion(e->region());
painter.translate( width()-13, height()-13 ); // paint in the corner
QPointArray a;
a.setPoints( 3, 1,12, 12,1, 12,12 );
painter.setPen( QPen( colorGroup().dark(), 1 ) );
painter.setBrush( colorGroup().dark() );
painter.drawPolygon( a );
painter.setPen( QPen( colorGroup().light(), 1 ) );
painter.drawLine( 0, 12, 13, -1 );
painter.drawLine( 4, 12, 13, 3 );
painter.drawLine( 8, 12, 13, 7 );
painter.setPen( QPen( colorGroup().background(), 1 ) );
painter.drawLine( 3, 12, 13, 2 );
painter.drawLine( 7, 12, 13, 6 );
painter.drawLine( 11, 12, 13, 10 );
painter.drawLine( 12, 12, 13, 11 );
}
/*!
Primes the resize operation.
*/
void QSizeGrip::mousePressEvent( QMouseEvent * e )
{
p = e->globalPos();
s = qt_sizegrip_topLevelWidget(this)->size();
}
/*!
Resizes the top-level widget containing this widget.
*/
void QSizeGrip::mouseMoveEvent( QMouseEvent * e )
{
if ( e->state() != LeftButton )
return;
QWidget* tlw = qt_sizegrip_topLevelWidget(this);
if ( tlw->testWState(WState_ConfigPending) )
return;
QPoint np( e->globalPos() );
QWidget* ws = qt_sizegrip_workspace( this );
if ( ws ) {
QPoint tmp( ws->mapFromGlobal( np ) );
if ( tmp.x() > ws->width() )
tmp.setX( ws->width() );
if ( tmp.y() > ws->height() )
tmp.setY( ws->height() );
np = ws->mapToGlobal( tmp );
}
int w = np.x() - p.x() + s.width();
int h = np.y() - p.y() + s.height();
if ( w < 1 )
w = 1;
if ( h < 1 )
h = 1;
QSize ms( tlw->minimumSizeHint() );
ms = ms.expandedTo( minimumSize() );
if ( w < ms.width() )
w = ms.width();
if ( h < ms.height() )
h = ms.height();
tlw->resize( w, h );
#ifdef _WS_WIN_
MSG msg;
while( PeekMessage( &msg, winId(), WM_MOUSEMOVE, WM_MOUSEMOVE, PM_REMOVE ) )
;
#endif
QApplication::syncX();
}
/*!\reimp
*/
QSizePolicy QSizeGrip::sizePolicy() const
{
//### removeme 3.0
return QWidget::sizePolicy();
}
#endif //QT_NO_SIZEGRIP
|