%name(GetDefCellAlignment)int GetCellAlignment();
wxColour& GetCellBackgroundColour(int row, int col);
%name(GetDefCellBackgroundColour) wxColour& GetCellBackgroundColour();
+
//wxGridCell *** GetCells();
+ %addmethods {
+ PyObject* GetCells() {
+ int row, col;
+ PyObject* rows = PyList_New(0);
+ for (row=0; row < self->GetRows(); row++) {
+ PyObject* rowList = PyList_New(0);
+ for (col=0; col < self->GetCols(); col++) {
+ wxGridCell* cell = self->GetCell(row, col);
+
+ bool doSave = wxPyRestoreThread();
+ PyObject* pyCell = wxPyConstructObject(cell, "wxGridCell");
+ wxPySaveThread(doSave);
+
+ if (PyList_Append(rowList, pyCell) == -1)
+ return NULL;
+ }
+ if (PyList_Append(rows, rowList) == -1)
+ return NULL;
+ }
+ return rows;
+ }
+ }
wxColour& GetCellTextColour(int row, int col);
%name(GetDefCellTextColour)wxColour& GetCellTextColour();
wxFont& GetCellTextFont(int row, int col);
void SetRowHeight(int row, int height);
void UpdateDimensions();
+
+ bool GetEditInPlace();
+ void SetEditInPlace(int edit = TRUE);
+
};
bool m_control;
bool m_shift;
wxGridCell* m_cell;
+
+ int GetRow();
+ int GetCol();
+ wxPoint GetPosition();
+ bool ControlDown();
+ bool ShiftDown();
+ wxGridCell* GetCell();
};
void Initialize(wxWindow* window);
bool IsSplit();
-
+ bool ReplaceWindow(wxWindow * winOld, wxWindow * winNew);
void SetBorderSize(int width);
void SetSashPosition(int position, int redraw = TRUE);
void SetSashSize(int width);