Some wxOGL tweaks to match what has been done in the C++ classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25057 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
#ifndef BUILDING_RENAMERS
|
#ifndef BUILDING_RENAMERS
|
||||||
|
|
||||||
%rename(ShapeRegion) wxShapeRegion;
|
%rename(ShapeRegion) wxShapeRegion;
|
||||||
|
%rename(AttachmentPoint) wxAttachmentPoint;
|
||||||
%rename(PyShapeEvtHandler) wxPyShapeEvtHandler;
|
%rename(PyShapeEvtHandler) wxPyShapeEvtHandler;
|
||||||
%rename(PyShape) wxPyShape;
|
%rename(PyShape) wxPyShape;
|
||||||
%rename(PseudoMetaFile) wxPseudoMetaFile;
|
%rename(PseudoMetaFile) wxPseudoMetaFile;
|
||||||
|
@@ -56,6 +56,22 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/*
|
||||||
|
* User-defined attachment point
|
||||||
|
*/
|
||||||
|
|
||||||
|
class wxAttachmentPoint: public wxObject
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxAttachmentPoint(int id=0, double x=0.0, double y=0.0);
|
||||||
|
int m_id; // Identifier
|
||||||
|
double m_x; // x offset from centre of object
|
||||||
|
double m_y; // y offset from centre of object
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
%{
|
%{
|
||||||
@@ -294,6 +310,14 @@ public:
|
|||||||
int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
|
int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
|
||||||
int GetNumberOfAttachments();
|
int GetNumberOfAttachments();
|
||||||
bool AttachmentIsValid(int attachment);
|
bool AttachmentIsValid(int attachment);
|
||||||
|
|
||||||
|
%extend {
|
||||||
|
PyObject* GetAttachments() {
|
||||||
|
wxList& list = self->GetAttachments();
|
||||||
|
return wxPy_ConvertList(&list);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool GetAttachmentPositionEdge(int attachment, double *OUTPUT, double *OUTPUT,
|
bool GetAttachmentPositionEdge(int attachment, double *OUTPUT, double *OUTPUT,
|
||||||
int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
|
int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
|
||||||
wxRealPoint CalcSimpleAttachment(const wxRealPoint& pt1, const wxRealPoint& pt2,
|
wxRealPoint CalcSimpleAttachment(const wxRealPoint& pt1, const wxRealPoint& pt2,
|
||||||
@@ -336,6 +360,7 @@ public:
|
|||||||
void CopyWithHandler(wxPyShape& copy);
|
void CopyWithHandler(wxPyShape& copy);
|
||||||
void Rotate(double x, double y, double theta);
|
void Rotate(double x, double y, double theta);
|
||||||
double GetRotation();
|
double GetRotation();
|
||||||
|
void SetRotation(double rotation);
|
||||||
void ClearAttachments();
|
void ClearAttachments();
|
||||||
void Recentre(wxDC& dc);
|
void Recentre(wxDC& dc);
|
||||||
void ClearPointList(wxList& list);
|
void ClearPointList(wxList& list);
|
||||||
|
@@ -130,6 +130,7 @@ public:
|
|||||||
void _setCallbackInfo(PyObject* self, PyObject* _class);
|
void _setCallbackInfo(PyObject* self, PyObject* _class);
|
||||||
|
|
||||||
void SetCornerRadius(double radius);
|
void SetCornerRadius(double radius);
|
||||||
|
double GetCornerRadius();
|
||||||
|
|
||||||
void base_OnDelete();
|
void base_OnDelete();
|
||||||
void base_OnDraw(wxDC& dc);
|
void base_OnDraw(wxDC& dc);
|
||||||
|
@@ -209,6 +209,13 @@ public:
|
|||||||
void Unlink();
|
void Unlink();
|
||||||
|
|
||||||
|
|
||||||
|
void SetAlignmentOrientation(bool isEnd, bool isHoriz);
|
||||||
|
void SetAlignmentType(bool isEnd, int alignType);
|
||||||
|
bool GetAlignmentOrientation(bool isEnd);
|
||||||
|
int GetAlignmentType(bool isEnd);
|
||||||
|
int GetAlignmentStart() const;
|
||||||
|
int GetAlignmentEnd() const;
|
||||||
|
|
||||||
void base_OnDraw(wxDC& dc);
|
void base_OnDraw(wxDC& dc);
|
||||||
void base_OnDrawContents(wxDC& dc);
|
void base_OnDrawContents(wxDC& dc);
|
||||||
void base_OnDrawBranches(wxDC& dc, bool erase = FALSE);
|
void base_OnDrawBranches(wxDC& dc, bool erase = FALSE);
|
||||||
@@ -291,8 +298,33 @@ public:
|
|||||||
wxPyEndBlockThreads();
|
wxPyEndBlockThreads();
|
||||||
return pyList;
|
return pyList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PyObject* GetOriginalPoints() {
|
||||||
|
wxList* list = self->GetOriginalPoints();
|
||||||
|
PyObject* pyList;
|
||||||
|
PyObject* pyObj;
|
||||||
|
wxObject* wxObj;
|
||||||
|
wxNode* node = list->GetFirst();
|
||||||
|
|
||||||
|
wxPyBeginBlockThreads();
|
||||||
|
pyList = PyList_New(0);
|
||||||
|
while (node) {
|
||||||
|
wxObj = node->GetData();
|
||||||
|
pyObj = wxPyConstructObject(wxObj, wxT("wxRealPoint"), 0);
|
||||||
|
PyList_Append(pyList, pyObj);
|
||||||
|
node = node->GetNext();
|
||||||
|
}
|
||||||
|
wxPyEndBlockThreads();
|
||||||
|
return pyList;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double GetOriginalWidth() const;
|
||||||
|
double GetOriginalHeight() const;
|
||||||
|
|
||||||
|
void SetOriginalWidth(double w);
|
||||||
|
void SetOriginalHeight(double h);
|
||||||
|
|
||||||
void UpdateOriginalPoints();
|
void UpdateOriginalPoints();
|
||||||
|
|
||||||
void base_OnDraw(wxDC& dc);
|
void base_OnDraw(wxDC& dc);
|
||||||
|
Reference in New Issue
Block a user