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.
kerry/kerry/src/kerrylabel.cpp

108 lines
3.3 KiB

/* This file is part of the KDE libraries
Copyright (C) 1998 Kurt Granroth <granroth@kde.org>
Copyright (C) 2000 Peter Putzer <putzer@kde.org>
Copyright (C) 2005 Jaroslaw Staniek <js@iidea.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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 Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "kerrylabel.h"
#include "hitwidget.h"
#include <tqdragobject.h>
#include <tdeglobalsettings.h>
#include <kurl.h>
#include <krun.h>
#include <konq_popupmenu.h>
#include <konqbookmarkmanager.h>
#include <knewmenu.h>
KerryLabel::KerryLabel (TQWidget* parent, const char* name)
: KURLLabel (parent, name)
{
dragInfo.state = diNone;
}
void KerryLabel::mousePressEvent(TQMouseEvent* ev)
{
if (!url().isEmpty())
{
if ( ev->button() == Qt::LeftButton)
{
dragInfo.state = diPending;
dragInfo.start = ev->pos();
}
else if (ev->button() == Qt::RightButton)
{
ev->accept();
popupMenu( mapToGlobal(ev->pos()) );
return;
}
}
KURLLabel::mousePressEvent(ev);
}
void KerryLabel::mouseMoveEvent(TQMouseEvent* ev)
{
if (dragInfo.state == diPending) {
int distance = TDEGlobalSettings::dndEventDelay();
if ( ev->x() > dragInfo.start.x() + distance || ev->x() < dragInfo.start.x() - distance ||
ev->y() > dragInfo.start.y() + distance || ev->y() < dragInfo.start.y() - distance) {
doDrag();
}
return;
}
KURLLabel::mouseMoveEvent(ev);
}
void KerryLabel::mouseReleaseEvent(TQMouseEvent* ev)
{
if ( ev->button() == Qt::LeftButton)
{
dragInfo.state = diNone;
}
KURLLabel::mouseReleaseEvent(ev);
}
void KerryLabel::doDrag()
{
dragInfo.state = diDragging;
const KURL kuri = KURL(url());
dragInfo.dragObject = new TQTextDrag("'"+kuri.url().replace("file://",TQString())+"'", this);
dragInfo.dragObject->dragCopy();
// Don't delete the TQTextDrag object. TQt will delete it when it's done with it.
}
void KerryLabel::popupMenu( const TQPoint &_global )
{
KFileItem item( ((HitWidget*)parent())->uri(),((HitWidget*)parent())->mimetype(),KFileItem::Unknown);
KFileItemList _items;
_items.append( &item );
const KURL kurl(url());
TDEActionCollection act(this);
KonqPopupMenu * popupMenu = new KonqPopupMenu( KonqBookmarkManager::self(), _items,
kurl, act, (KNewMenu*)NULL, this,
item.isLocalFile() ? KonqPopupMenu::ShowProperties : KonqPopupMenu::NoFlags,
KParts::BrowserExtension::DefaultPopupItems );
if (popupMenu->count())
popupMenu->exec( _global );
delete popupMenu;
}
#include "kerrylabel.moc"