2009-04-13 12:29:59 +00:00
|
|
|
|
|
|
|
/** \ingroup gui
|
|
|
|
* A maptip is a class to display a tip on a map canvas
|
|
|
|
* when a mouse is hovered over a feature.
|
|
|
|
*/
|
|
|
|
class QgsMapTip
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgsmaptip.h>
|
|
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default constructor
|
|
|
|
*/
|
|
|
|
QgsMapTip();
|
|
|
|
/** Destructor
|
|
|
|
*/
|
|
|
|
virtual ~QgsMapTip();
|
|
|
|
/** Show a maptip at a given point on the map canvas
|
2012-09-24 02:28:15 +02:00
|
|
|
* @param thepLayer a qgis vector map layer pointer that will
|
2009-04-13 12:29:59 +00:00
|
|
|
* be used to provide the attribute data for the map tip.
|
2012-09-24 02:28:15 +02:00
|
|
|
* @param theMapPosition a reference to the position of the cursor
|
2009-04-13 12:29:59 +00:00
|
|
|
* in map coordinatess.
|
2012-09-24 02:28:15 +02:00
|
|
|
* @param thePixelPosition a reference to the position of the cursor
|
2009-04-13 12:29:59 +00:00
|
|
|
* in pixel coordinates.
|
2012-09-24 02:28:15 +02:00
|
|
|
* @param mpMapCanvas a map canvas on which the tip is drawn
|
2009-04-13 12:29:59 +00:00
|
|
|
*/
|
|
|
|
void showMapTip( QgsMapLayer * thepLayer,
|
|
|
|
QgsPoint & theMapPosition,
|
|
|
|
QPoint & thePixelPosition,
|
|
|
|
QgsMapCanvas *mpMapCanvas );
|
|
|
|
/** Clear the current maptip if it exists
|
2012-09-24 02:28:15 +02:00
|
|
|
* @param mpMapCanvas the canvas from which the tip should be cleared.
|
2009-04-13 12:29:59 +00:00
|
|
|
*/
|
|
|
|
void clear( QgsMapCanvas *mpMapCanvas );
|
|
|
|
};
|