• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdelibs API Reference
  • KDE Home
  • Contact Us
 

KFile

  • sources
  • kde-4.14
  • kdelibs
  • kfile
kurlnavigatormenu.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2009 by Rahman Duran <rahman.duran@gmail.com>
3 
4  This library is free software; you can redistribute it and/or modify
5  it under the terms of the GNU Library General Public License as published
6  by the Free Software Foundation; either version 2 of the License or
7  ( at your option ) version 3 or, at the discretion of KDE e.V.
8  ( which shall act as a proxy as in section 14 of the GPLv3 ), any later version.
9 
10  This library is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Library General Public License for more details.
14 
15  You should have received a copy of the GNU Library General Public License
16  along with this library; see the file COPYING.LIB. If not, write to
17  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  Boston, MA 02110-1301, USA.
19 */
20 
21 
22 #include "kurlnavigatormenu_p.h"
23 
24 #include <QtGui/QKeyEvent>
25 
26 namespace KDEPrivate
27 {
28 
29 KUrlNavigatorMenu::KUrlNavigatorMenu(QWidget* parent) :
30  KMenu(parent)
31 {
32  setAcceptDrops(true);
33 }
34 
35 KUrlNavigatorMenu::~KUrlNavigatorMenu()
36 {
37 }
38 
39 void KUrlNavigatorMenu::dragEnterEvent(QDragEnterEvent* event)
40 {
41  if (event->mimeData()->hasUrls()) {
42  event->acceptProposedAction();
43  }
44 }
45 
46 void KUrlNavigatorMenu::dragMoveEvent(QDragMoveEvent* event)
47 {
48  QMouseEvent mouseEvent(QMouseEvent(QEvent::MouseMove, event->pos(),
49  Qt::LeftButton, event->mouseButtons(), event->keyboardModifiers()));
50  mouseMoveEvent(&mouseEvent);
51 }
52 
53 void KUrlNavigatorMenu::dropEvent(QDropEvent* event)
54 {
55  QAction* action = actionAt(event->pos());
56  if (action != 0) {
57  emit urlsDropped(action, event);
58  }
59 }
60 
61 void KUrlNavigatorMenu::mouseReleaseEvent(QMouseEvent* event)
62 {
63  if (event->button() == Qt::MidButton) {
64  QAction* action = actionAt(event->pos());
65  if (action != 0) {
66  emit middleMouseButtonClicked(action);
67  }
68  }
69  KMenu::mouseReleaseEvent(event);
70 }
71 
72 } // namespace KDEPrivate
73 
74 #include "kurlnavigatormenu_p.moc"
KDEPrivate::KUrlNavigatorMenu::KUrlNavigatorMenu
KUrlNavigatorMenu(QWidget *parent)
Definition: kurlnavigatormenu.cpp:29
QWidget
QDropEvent::mimeData
const QMimeData * mimeData() const
QDragMoveEvent
KDEPrivate::KUrlNavigatorMenu::mouseReleaseEvent
virtual void mouseReleaseEvent(QMouseEvent *event)
Definition: kurlnavigatormenu.cpp:61
KMenu
QDropEvent::pos
const QPoint & pos() const
KDEPrivate::KUrlNavigatorMenu::dragEnterEvent
virtual void dragEnterEvent(QDragEnterEvent *event)
Definition: kurlnavigatormenu.cpp:39
QMouseEvent
KDEPrivate::KUrlNavigatorMenu::dropEvent
virtual void dropEvent(QDropEvent *event)
Definition: kurlnavigatormenu.cpp:53
KDEPrivate::KUrlNavigatorMenu::urlsDropped
void urlsDropped(QAction *action, QDropEvent *event)
Is emitted when drop event occurs.
QMenu::actionAt
QAction * actionAt(const QPoint &pt) const
QMenu::mouseMoveEvent
virtual void mouseMoveEvent(QMouseEvent *e)
QMouseEvent::button
Qt::MouseButton button() const
QDropEvent
KDEPrivate::KUrlNavigatorMenu::middleMouseButtonClicked
void middleMouseButtonClicked(QAction *action)
Is emitted, if the action action has been clicked by the middle mouse button (QMenu ignores a click w...
kurlnavigatormenu_p.h
QWidget::setAcceptDrops
void setAcceptDrops(bool on)
QMimeData::hasUrls
bool hasUrls() const
QDragEnterEvent
KDEPrivate::KUrlNavigatorMenu::~KUrlNavigatorMenu
virtual ~KUrlNavigatorMenu()
Definition: kurlnavigatormenu.cpp:35
QAction
KMenu::mouseReleaseEvent
virtual void mouseReleaseEvent(QMouseEvent *e)
QMouseEvent::pos
const QPoint & pos() const
KDEPrivate::KUrlNavigatorMenu::dragMoveEvent
virtual void dragMoveEvent(QDragMoveEvent *event)
Definition: kurlnavigatormenu.cpp:46
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:27:27 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

KFile

Skip menu "KFile"
  • Main Page
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdelibs API Reference

Skip menu "kdelibs API Reference"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  •   WTF
  • kjsembed
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal