Skip to content
Permalink
Browse files
missing identify/highlight sip methods
  • Loading branch information
blazek committed Mar 27, 2014
1 parent cdbe1ee commit 0bdca1f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
@@ -148,6 +148,8 @@ class QGis

static const double DEFAULT_IDENTIFY_RADIUS;

static const double DEFAULT_SEARCH_RADIUS_MM;

//! Default threshold between map coordinates and device coordinates for map2pixel simplification
static const float DEFAULT_MAPTOPIXEL_THRESHOLD;
};
@@ -9,9 +9,15 @@ class QgsHighlight : QgsMapCanvasItem

void setColor( const QColor & color );

void setFillColor( const QColor & fillColor );

/** Set width. Ignored in feature mode. */
void setWidth( int width );

void setBuffer( double buffer );

void setMinWidth( double width );

protected:
virtual void paint( QPainter* p );

@@ -111,6 +111,12 @@ class QgsMapTool : QObject
*/
QString toolName();

static double searchRadiusMM();

static double searchRadiusMU( const QgsRenderContext& context );

static double searchRadiusMU( QgsMapCanvas * canvas );

signals:
//! emit a message
void messageEmitted( QString message, QgsMessageBar::MessageLevel = QgsMessageBar::INFO );

0 comments on commit 0bdca1f

Please sign in to comment.