Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cast each child of QgsAnnotationItem in SIP bindings for Python
(cherry-picked from eeea18e)
  • Loading branch information
ThomasG77 authored and nyalldawson committed Jun 30, 2016
1 parent 4c12f3a commit 4e41c36
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions python/gui/qgsannotationitem.sip
@@ -1,11 +1,33 @@
/** An annotation item can be either placed either on screen corrdinates or on map coordinates.
It may reference a feature and displays that associatiation with a balloon like appearance*/
/** An annotation item can be either placed either on screen coordinates or on map coordinates.
It may reference a feature and displays that association with a balloon like appearance*/

%ModuleCode
#include "qgsformannotationitem.h"
#include "qgshtmlannotationitem.h"
#include "qgssvgannotationitem.h"
#include "qgstextannotationitem.h"
%End

class QgsAnnotationItem: QgsMapCanvasItem
{
%TypeHeaderCode
#include <qgsannotationitem.h>
%End

%ConvertToSubClassCode
if (dynamic_cast<QgsFormAnnotationItem*>(sipCpp) )
sipType = sipType_QgsFormAnnotationItem;
else if (dynamic_cast<QgsHtmlAnnotationItem*>(sipCpp) )
sipType = sipType_QgsHtmlAnnotationItem;
else if (dynamic_cast<QgsSvgAnnotationItem*>(sipCpp) )
sipType = sipType_QgsSvgAnnotationItem;
else if (dynamic_cast<QgsTextAnnotationItem*>(sipCpp) )
sipType = sipType_QgsTextAnnotationItem;
else
sipType = 0;
%End


public:
enum MouseMoveAction
{
Expand Down

0 comments on commit 4e41c36

Please sign in to comment.