summaryrefslogtreecommitdiffstats
path: root/khexedit/draglabel.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 12:30:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 12:30:30 +0900
commit7ec5a57fc3f04526f36477e22066199372beb0ee (patch)
treef46ff23820fcfbf612070cce46b7496bc766a9fd /khexedit/draglabel.cc
parent062ea53b46c9b76c78fcde2fb0df8b2411af3f39 (diff)
downloadtdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.tar.gz
tdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'khexedit/draglabel.cc')
-rw-r--r--khexedit/draglabel.cc149
1 files changed, 0 insertions, 149 deletions
diff --git a/khexedit/draglabel.cc b/khexedit/draglabel.cc
deleted file mode 100644
index dfca9a6..0000000
--- a/khexedit/draglabel.cc
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * khexedit - Versatile hex editor
- * Copyright (C) 1999-2000 Espen Sand, espensa@online.no
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program 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 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 <stdlib.h>
-
-#include <tqbitmap.h>
-#include <tqpainter.h>
-
-#include <kurldrag.h>
-
-#include "draglabel.h"
-
-
-CDragLabel::CDragLabel( TQWidget *parent )
- : TQLabel( "draglabel", parent, "tde toolbar widget" )
-{
- mValid = true;
- mDragPending = false;
- setBackgroundMode( TQt::PaletteButton );
-}
-
-
-CDragLabel::~CDragLabel( void )
-{
-}
-
-
-void CDragLabel::mousePressEvent( TQMouseEvent *e )
-{
- if( mValid == false || e->button() != Qt::LeftButton || mUrl.isEmpty() == true )
- {
- return;
- }
-
- mDragOrigin = e->pos();
- mDragPending = true;
-}
-
-
-void CDragLabel::mouseMoveEvent( TQMouseEvent *e )
-{
- if( mDragPending == true )
- {
- if( abs(e->x() - mDragOrigin.x()) + abs(e->y() - mDragOrigin.y()) > 5 )
- {
- mDragPending = false;
-
- //
- // Make drag object, assign pixmap and grab keyboard. The grabbing
- // will allow ESC to abort the drag
- //
- KURL::List uris;
- uris.append(KURL(mUrl));
- KURLDrag *uriDrag = new KURLDrag( uris, this );
- if( uriDrag == 0 ) { return; }
- prepPixmap( *uriDrag );
- grabKeyboard();
- uriDrag->drag();
- releaseKeyboard();
- }
- }
-}
-
-void CDragLabel::mouseReleaseEvent( TQMouseEvent * )
-{
- mDragPending = false;
-}
-
-
-void CDragLabel::setUrl( const TQString &url )
-{
- mUrl = url;
-}
-
-
-void CDragLabel::setDragMask( const TQPixmap pix )
-{
- mDragMask = pix;
-}
-
-
-void CDragLabel::prepPixmap( KURLDrag &uriDrag )
-{
- if( pixmap() == 0 )
- {
- return;
- }
-
- TQString text;
- int index = mUrl.findRev( '/', mUrl.length() );
- if( index < 0 )
- {
- text = mUrl;
- }
- else
- {
- text = mUrl.right( mUrl.length() - index - 1 );
- }
-
- int sep = 2;
- TQRect rect = fontMetrics().boundingRect(text);
- int w = pixmap()->width() + rect.width() + sep + 2;
- int h = fontMetrics().lineSpacing();
- if( pixmap()->height() > h ) { h = pixmap()->height(); }
-
- TQBitmap mask( w, h, TRUE );
- TQPixmap dragPixmap( w, h );
- dragPixmap.fill( black );
-
- TQPainter p;
- p.begin( &mask );
- p.setPen( white );
- p.drawPixmap( 0, 0, mDragMask );
- p.drawText( pixmap()->width()+sep, 0, w-pixmap()->width()+sep,
- h, AlignVCenter|AlignLeft, text );
- p.end();
-
- p.begin( &dragPixmap );
- p.drawPixmap( 0, 0, *pixmap() );
- p.end();
-
- dragPixmap.setMask( mask );
-
- TQPoint hotspot( pixmap()->width(), pixmap()->height()/2 );
- uriDrag.setPixmap( dragPixmap, hotspot );
-}
-
-
-
-
-
-#include "draglabel.moc"