Skip to content

Commit

Permalink
Cast each child of QgsAnnotationItem in SIP bindings for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasG77 committed May 26, 2016
1 parent aef3dd4 commit eeea18e
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 eeea18e

Please sign in to comment.