summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/designer/styledbutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/tools/designer/designer/styledbutton.cpp')
-rw-r--r--tqtinterface/qt4/tools/designer/designer/styledbutton.cpp302
1 files changed, 0 insertions, 302 deletions
diff --git a/tqtinterface/qt4/tools/designer/designer/styledbutton.cpp b/tqtinterface/qt4/tools/designer/designer/styledbutton.cpp
deleted file mode 100644
index c9dbdfb..0000000
--- a/tqtinterface/qt4/tools/designer/designer/styledbutton.cpp
+++ /dev/null
@@ -1,302 +0,0 @@
-/**********************************************************************
-** Copyright (C) 2005-2008 Trolltech ASA. All rights reserved.
-**
-** This file is part of TQt Designer.
-**
-** This file may be used under the terms of the GNU General
-** Public License versions 2.0 or 3.0 as published by the Free
-** Software Foundation and appearing in the files LICENSE.GPL2
-** and LICENSE.GPL3 included in the packaging of this file.
-** Alternatively you may (at your option) use any later version
-** of the GNU General Public License if such license has been
-** publicly approved by Trolltech ASA (or its successors, if any)
-** and the KDE Free TQt Foundation.
-**
-** Please review the following information to ensure GNU General
-** Public Licensing requirements will be met:
-** http://trolltech.com/products/qt/licenses/licensing/opensource/.
-** If you are unsure which license is appropriate for your use, please
-** review the following information:
-** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
-** or contact the sales department at sales@trolltech.com.
-**
-** Licensees holding valid TQt Commercial licenses may use this file in
-** accordance with the TQt Commercial License Agreement provided with
-** the Software.
-**
-** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
-** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
-** herein.
-**
-**********************************************************************/
-
-#include <tqvariant.h> // HP-UX compiler needs this here
-#include "styledbutton.h"
-#include "formwindow.h"
-#include "pixmapchooser.h"
-#include <tqcolordialog.h>
-#include <tqpalette.h>
-#include <tqlabel.h>
-#include <tqpainter.h>
-#include <tqimage.h>
-#include <tqpixmap.h>
-#include <tqapplication.h>
-#include <tqdragobject.h>
-#include <tqstyle.h>
-
-StyledButton::StyledButton(TQWidget* parent, const char* name)
- : TQButton( parent, name ), pix( 0 ), spix( 0 ), s( 0 ), formWindow( 0 ), mousePressed( FALSE )
-{
- setMinimumSize( tqminimumSizeHint() );
- setAcceptDrops( TRUE );
-
- connect( this, TQT_SIGNAL(clicked()), TQT_SLOT(onEditor()));
-
- setEditor( ColorEditor );
-}
-
-StyledButton::StyledButton( const TQBrush& b, TQWidget* parent, const char* name, WFlags f )
- : TQButton( parent, name, f ), spix( 0 ), s( 0 ), formWindow( 0 )
-{
- col = b.color();
- pix = b.pixmap();
- setMinimumSize( tqminimumSizeHint() );
-}
-
-StyledButton::~StyledButton()
-{
-}
-
-void StyledButton::setEditor( EditorType e )
-{
- if ( edit == e )
- return;
-
- edit = e;
- update();
-}
-
-StyledButton::EditorType StyledButton::editor() const
-{
- return edit;
-}
-
-void StyledButton::setColor( const TQColor& c )
-{
- col = c;
- update();
-}
-
-void StyledButton::setPixmap( const TQPixmap & pm )
-{
- if ( !pm.isNull() ) {
- delete pix;
- pix = new TQPixmap( pm );
- } else {
- delete pix;
- pix = 0;
- }
- scalePixmap();
-}
-
-TQColor StyledButton::color() const
-{
- return col;
-}
-
-TQPixmap* StyledButton::pixmap() const
-{
- return pix;
-}
-
-bool StyledButton::scale() const
-{
- return s;
-}
-
-void StyledButton::setScale( bool on )
-{
- if ( s == on )
- return;
-
- s = on;
- scalePixmap();
-}
-
-TQSize StyledButton::tqsizeHint() const
-{
- return TQSize( 50, 25 );
-}
-
-TQSize StyledButton::tqminimumSizeHint() const
-{
- return TQSize( 50, 25 );
-}
-
-void StyledButton::scalePixmap()
-{
- delete spix;
-
- if ( pix ) {
- spix = new TQPixmap( 6*width()/8, 6*height()/8 );
- TQImage img = pix->convertToImage();
-
- spix->convertFromImage( s? img.smoothScale( 6*width()/8, 6*height()/8 ) : img );
- } else {
- spix = 0;
- }
-
- update();
-}
-
-void StyledButton::resizeEvent( TQResizeEvent* e )
-{
- scalePixmap();
- TQButton::resizeEvent( e );
-}
-
-void StyledButton::drawButton( TQPainter *paint )
-{
- tqstyle().tqdrawPrimitive(TQStyle::PE_ButtonBevel, paint, rect(), tqcolorGroup(),
- isDown() ? TQStyle::Style_Sunken : TQStyle::Style_Raised);
- drawButtonLabel(paint);
-
- if (hasFocus())
- tqstyle().tqdrawPrimitive(TQStyle::PE_FocusRect, paint,
- tqstyle().subRect(TQStyle::SR_PushButtonFocusRect, this),
- tqcolorGroup(), TQStyle::Style_Default);
-}
-
-void StyledButton::drawButtonLabel( TQPainter *paint )
-{
- TQColor pen = isEnabled() ?
- hasFocus() ? tqpalette().active().buttonText() : tqpalette().inactive().buttonText()
- : tqpalette().disabled().buttonText();
- paint->setPen( pen );
-
- if(!isEnabled()) {
- paint->setBrush( TQBrush( tqcolorGroup().button() ) );
- }
- else if ( edit == PixmapEditor && spix ) {
- paint->setBrush( TQBrush( col, *spix ) );
- paint->setBrushOrigin( width()/8, height()/8 );
- } else
- paint->setBrush( TQBrush( col ) );
-
- paint->drawRect( width()/8, height()/8, 6*width()/8, 6*height()/8 );
-}
-
-void StyledButton::onEditor()
-{
- switch (edit) {
- case ColorEditor: {
- TQColor c = TQColorDialog::getColor( tqpalette().active().background(), this );
- if ( c.isValid() ) {
- setColor( c );
- emit changed();
- }
- } break;
- case PixmapEditor: {
- TQPixmap p;
- if ( pixmap() )
- p = qChoosePixmap( this, formWindow, *pixmap() );
- else
- p = qChoosePixmap( this, formWindow, TQPixmap() );
- if ( !p.isNull() ) {
- setPixmap( p );
- emit changed();
- }
- } break;
- default:
- break;
- }
-}
-
-void StyledButton::mousePressEvent(TQMouseEvent* e)
-{
- TQButton::mousePressEvent(e);
- mousePressed = TRUE;
- pressPos = e->pos();
-}
-
-void StyledButton::mouseMoveEvent(TQMouseEvent* e)
-{
- TQButton::mouseMoveEvent( e );
-#ifndef TQT_NO_DRAGANDDROP
- if ( !mousePressed )
- return;
- if ( ( pressPos - e->pos() ).manhattanLength() > TQApplication::startDragDistance() ) {
- if ( edit == ColorEditor ) {
- TQColorDrag *drg = new TQColorDrag( col, this );
- TQPixmap pix( 25, 25 );
- pix.fill( col );
- TQPainter p( &pix );
- p.drawRect( 0, 0, pix.width(), pix.height() );
- p.end();
- drg->setPixmap( pix );
- mousePressed = FALSE;
- drg->dragCopy();
- }
- else if ( edit == PixmapEditor && pix && !pix->isNull() ) {
- TQImage img = pix->convertToImage();
- TQImageDrag *drg = new TQImageDrag( img, this );
- if(spix)
- drg->setPixmap( *spix );
- mousePressed = FALSE;
- drg->dragCopy();
- }
- }
-#endif
-}
-
-#ifndef TQT_NO_DRAGANDDROP
-void StyledButton::dragEnterEvent( TQDragEnterEvent *e )
-{
- setFocus();
- if ( edit == ColorEditor && TQColorDrag::canDecode( e ) )
- e->accept();
- else if ( edit == PixmapEditor && TQImageDrag::canDecode( e ) )
- e->accept();
- else
- e->ignore();
-}
-
-void StyledButton::dragLeaveEvent( TQDragLeaveEvent * )
-{
- if ( hasFocus() )
- parentWidget()->setFocus();
-}
-
-void StyledButton::dragMoveEvent( TQDragMoveEvent *e )
-{
- if ( edit == ColorEditor && TQColorDrag::canDecode( e ) )
- e->accept();
- else if ( edit == PixmapEditor && TQImageDrag::canDecode( e ) )
- e->accept();
- else
- e->ignore();
-}
-
-void StyledButton::dropEvent( TQDropEvent *e )
-{
- if ( edit == ColorEditor && TQColorDrag::canDecode( e ) ) {
- TQColor color;
- TQColorDrag::decode( e, color );
- setColor(color);
- emit changed();
- e->accept();
- }
- else if ( edit == PixmapEditor && TQImageDrag::canDecode( e ) ) {
- TQImage img;
- TQImageDrag::decode( e, img );
- TQPixmap pm;
- pm.convertFromImage(img);
- setPixmap(pm);
- emit changed();
- e->accept();
- } else {
- e->ignore();
- }
-}
-#endif // TQT_NO_DRAGANDDROP