/usr/include/marble/MarbleWidgetInputHandler.h is in libmarble-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | //
// This file is part of the Marble Virtual Globe.
//
// This program is free software licensed under the GNU LGPL. You can
// find a copy of this license in LICENSE.txt in the top directory of
// the source code.
//
// Copyright 2005-2007 Torsten Rahn <tackat@kde.org>
// Copyright 2007 Inge Wallin <ingwa@kde.org>
//
//
// The MarbleWidgetInputHandler handles mouse and keyboard input.
//
#ifndef MARBLE_MARBLEWIDGETINPUTHANDLER_H
#define MARBLE_MARBLEWIDGETINPUTHANDLER_H
#include <QObject>
#include <QString>
#include "marble_export.h"
class QEvent;
class QRubberBand;
class QTimer;
namespace Marble
{
class MarbleModel;
class MarbleWidget;
class MarbleWidgetPopupMenu;
class AbstractDataPluginItem;
class RenderPlugin;
class MARBLE_EXPORT MarbleWidgetInputHandler : public QObject
{
Q_OBJECT
public:
explicit MarbleWidgetInputHandler( MarbleWidget* );
virtual ~MarbleWidgetInputHandler();
void setPositionSignalConnected( bool connected );
bool isPositionSignalConnected() const;
/**
* @brief Set whether a popup menu appears on a click (not drag) with the left mouse button
* @param enabled True to enable the popup menu (default), false to disable it
*/
void setMouseButtonPopupEnabled( Qt::MouseButton mouseButton, bool enabled );
/**
* @brief Return whether the left mouse button popup menu is active
* @return True iff a popup menu is shown on left mouse button clicks
*/
bool isMouseButtonPopupEnabled( Qt::MouseButton mouseButton ) const;
void setPanViaArrowsEnabled( bool enabled );
bool panViaArrowsEnabled() const;
void setInertialEarthRotationEnabled( bool enabled );
/**
* @brief Returns true iff dragging the map with the mouse keeps spinning
* in the chosen direction for a slightly longer time than the mouse is
* actually performing the drag operation
*/
bool inertialEarthRotationEnabled() const;
Q_SIGNALS:
// Mouse button menus
void lmbRequest( int, int );
void rmbRequest( int, int );
//Gps coordinates
void mouseClickScreenPosition( int, int );
void mouseMoveGeoPosition( QString );
protected Q_SLOTS:
void restoreViewContext();
void installPluginEventFilter( RenderPlugin *renderPlugin );
protected:
class Protected;
Protected * const d;
private:
Q_DISABLE_COPY( MarbleWidgetInputHandler )
};
class MARBLE_EXPORT MarbleWidgetDefaultInputHandler : public MarbleWidgetInputHandler
{
Q_OBJECT
public:
explicit MarbleWidgetDefaultInputHandler( MarbleWidget* );
~MarbleWidgetDefaultInputHandler();
static bool keyEvent( MarbleWidget * widget, QEvent* e );
protected:
bool eventFilter( QObject *, QEvent * );
private Q_SLOTS:
void showLmbMenu( int, int );
void showRmbMenu( int, int );
void openItemToolTip();
void lmbTimeout();
private:
Q_DISABLE_COPY( MarbleWidgetDefaultInputHandler )
class Private;
Private * const d;
};
}
#endif
|