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:
Robin Dunn
2004-01-02 20:37:37 +00:00
parent cc6eca3509
commit e7726f5e5a
4 changed files with 60 additions and 1 deletions

View File

@@ -209,6 +209,13 @@ public:
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_OnDrawContents(wxDC& dc);
void base_OnDrawBranches(wxDC& dc, bool erase = FALSE);
@@ -291,8 +298,33 @@ public:
wxPyEndBlockThreads();
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 base_OnDraw(wxDC& dc);