1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxGridCellFloatRenderer
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxGridCellFloatRenderer
12 This class may be used to format floating point data in a cell.
17 @see wxGridCellRenderer, wxGridCellNumberRenderer, wxGridCellStringRenderer,
18 wxGridCellBoolRenderer
20 class wxGridCellFloatRenderer
: public wxGridCellStringRenderer
25 Minimum number of characters to be shown.
27 Number of digits after the decimal dot.
29 wxGridCellFloatRenderer(int width
= -1, int precision
= -1);
32 Returns the precision.
34 int GetPrecision() const;
42 Parameters string format is "width[,precision]".
44 void SetParameters(const wxString
& params
);
49 void SetPrecision(int precision
);
54 void SetWidth(int width
);
60 @class wxGridTableBase
67 class wxGridTableBase
: public wxObject
83 bool AppendCols(size_t numCols
= 1);
88 bool AppendRows(size_t numRows
= 1);
93 bool CanGetValueAs(int row
, int col
, const wxString
& typeName
);
96 Does this table allow attributes? Default implementation creates
97 a wxGridCellAttrProvider if necessary.
99 bool CanHaveAttributes();
104 bool CanSetValueAs(int row
, int col
, const wxString
& typeName
);
114 bool DeleteCols(size_t pos
= 0, size_t numCols
= 1);
119 bool DeleteRows(size_t pos
= 0, size_t numRows
= 1);
122 by default forwarded to wxGridCellAttrProvider if any. May be
123 overridden to handle attributes directly in the table.
125 wxGridCellAttr
* GetAttr(int row
, int col
);
128 get the currently used attr provider (may be @NULL)
130 wxGridCellAttrProvider
* GetAttrProvider() const;
135 wxString
GetColLabelValue(int col
);
143 You must override these functions in a derived table class.
150 wxString
GetRowLabelValue(int row
);
153 Data type determination and value access.
155 wxString
GetTypeName(int row
, int col
);
160 wxString
GetValue(int row
, int col
);
165 bool GetValueAsBool(int row
, int col
);
168 For user defined types
170 void* GetValueAsCustom(int row
, int col
,
171 const wxString
& typeName
);
176 double GetValueAsDouble(int row
, int col
);
181 long GetValueAsLong(int row
, int col
);
186 wxGrid
* GetView() const;
191 bool InsertCols(size_t pos
= 0, size_t numCols
= 1);
196 bool InsertRows(size_t pos
= 0, size_t numRows
= 1);
201 bool IsEmptyCell(int row
, int col
);
204 these functions take ownership of the pointer
206 void SetAttr(wxGridCellAttr
* attr
, int row
, int col
);
210 give us the attr provider to use - we take ownership of the pointer
212 void SetAttrProvider(wxGridCellAttrProvider
* attrProvider
);
217 void SetColAttr(wxGridCellAttr
* attr
, int col
);
222 void SetColLabelValue() const;
227 void SetRowAttr(wxGridCellAttr
* attr
, int row
);
232 void SetRowLabelValue() const;
237 void SetValue(int row
, int col
, const wxString
& value
);
242 void SetValueAsBool(int row
, int col
, bool value
);
247 void SetValueAsCustom(int row
, int col
, const wxString
& typeName
,
253 void SetValueAsDouble(int row
, int col
, double value
);
258 void SetValueAsLong(int row
, int col
, long value
);
261 Overriding these is optional
263 void SetView(wxGrid
* grid
);
268 void UpdateAttrCols(size_t pos
, int numCols
);
271 change row/col number in attribute if needed
273 void UpdateAttrRows(size_t pos
, int numRows
);
279 @class wxGridCellEditor
281 This class is responsible for providing and manipulating
282 the in-place edit controls for the grid. Instances of wxGridCellEditor
283 (actually, instances of derived classes since it is an abstract class) can be
284 associated with the cell attributes for individual cells, rows, columns, or
285 even for the entire grid.
290 @see wxGridCellTextEditor, wxGridCellFloatEditor, wxGridCellBoolEditor,
291 wxGridCellNumberEditor, wxGridCellChoiceEditor
293 class wxGridCellEditor
302 The dtor is private because only DecRef() can delete us.
307 Fetch the value from the table and prepare the edit control
308 to begin editing. Set the focus to the edit control.
310 void BeginEdit(int row
, int col
, wxGrid
* grid
);
313 Create a new object which is the copy of this one.
315 wxGridCellEditor
* Clone() const;
318 Creates the actual edit control.
320 void Create(wxWindow
* parent
, wxWindowID id
,
321 wxEvtHandler
* evtHandler
);
329 Complete the editing of the current cell. Returns @true if the value has
330 changed. If necessary, the control may be destroyed.
332 bool EndEdit(int row
, int col
, wxGrid
* grid
);
335 Some types of controls on some platforms may need some help
338 void HandleReturn(wxKeyEvent
& event
);
346 Draws the part of the cell not occupied by the control: the base class
347 version just fills it with background colour from the attribute.
349 void PaintBackground(const wxRect
& rectCell
,
350 wxGridCellAttr
* attr
);
353 Reset the value in the control back to its starting value.
358 Size and position the edit control.
360 void SetSize(const wxRect
& rect
);
363 Show or hide the edit control, use the specified attributes to set
364 colours/fonts for it.
366 void Show(bool show
, wxGridCellAttr
* attr
= NULL
);
369 If the editor is enabled by clicking on the cell, this method will be
372 void StartingClick();
375 If the editor is enabled by pressing keys on the grid,
376 this will be called to let the editor do something about
377 that first key if desired.
379 void StartingKey(wxKeyEvent
& event
);
385 @class wxGridCellTextEditor
387 The editor for string/text data.
392 @see wxGridCellEditor, wxGridCellFloatEditor, wxGridCellBoolEditor,
393 wxGridCellNumberEditor, wxGridCellChoiceEditor
395 class wxGridCellTextEditor
: public wxGridCellEditor
401 wxGridCellTextEditor();
404 The parameters string format is "n" where n is a number representing the
407 void SetParameters(const wxString
& params
);
413 @class wxGridCellStringRenderer
415 This class may be used to format string data in a cell; it is the default
421 @see wxGridCellRenderer, wxGridCellNumberRenderer, wxGridCellFloatRenderer,
422 wxGridCellBoolRenderer
424 class wxGridCellStringRenderer
: public wxGridCellRenderer
430 wxGridCellStringRenderer();
436 @class wxGridCellChoiceEditor
438 The editor for string data allowing to choose from a list of strings.
443 @see wxGridCellEditor, wxGridCellFloatEditor, wxGridCellBoolEditor,
444 wxGridCellTextEditor, wxGridCellNumberEditor
446 class wxGridCellChoiceEditor
: public wxGridCellEditor
452 Number of strings from which the user can choose.
454 An array of strings from which the user can choose.
456 If allowOthers is @true, the user can type a string not in choices array.
458 wxGridCellChoiceEditor(size_t count
= 0,
459 const wxString choices
[] = NULL
,
460 bool allowOthers
= false);
461 wxGridCellChoiceEditor(const wxArrayString
& choices
,
462 bool allowOthers
= false);
466 Parameters string format is "item1[,item2[...,itemN]]"
468 void SetParameters(const wxString
& params
);
474 @class wxGridEditorCreatedEvent
480 class wxGridEditorCreatedEvent
: public wxCommandEvent
487 wxGridEditorCreatedEvent();
488 wxGridEditorCreatedEvent(int id
, wxEventType type
,
496 Returns the column at which the event occurred.
501 Returns the edit control.
503 wxControl
* GetControl();
506 Returns the row at which the event occurred.
511 Sets the column at which the event occurred.
513 void SetCol(int col
);
516 Sets the edit control.
518 void SetControl(wxControl
* ctrl
);
521 Sets the row at which the event occurred.
523 void SetRow(int row
);
529 @class wxGridRangeSelectEvent
535 class wxGridRangeSelectEvent
: public wxNotifyEvent
542 wxGridRangeSelectEvent();
543 wxGridRangeSelectEvent(int id
, wxEventType type
,
545 const wxGridCellCoords
& topLeft
,
546 const wxGridCellCoords
& bottomRight
,
548 bool control
= false,
555 Returns @true if the Alt key was down at the time of the event.
560 Returns @true if the Control key was down at the time of the event.
565 Top left corner of the rectangular area that was (de)selected.
567 wxGridCellCoords
GetBottomRightCoords();
570 Bottom row of the rectangular area that was (de)selected.
575 Left column of the rectangular area that was (de)selected.
580 Right column of the rectangular area that was (de)selected.
585 Top left corner of the rectangular area that was (de)selected.
587 wxGridCellCoords
GetTopLeftCoords();
590 Top row of the rectangular area that was (de)selected.
595 Returns @true if the Meta key was down at the time of the event.
600 Returns @true if the area was selected, @false otherwise.
605 Returns @true if the Shift key was down at the time of the event.
613 @class wxGridCellRenderer
615 This class is responsible for actually drawing the cell
616 in the grid. You may pass it to the wxGridCellAttr (below) to change the
617 format of one given cell or to wxGrid::SetDefaultRenderer() to change the
618 view of all cells. This is an abstract class, and you will normally use one of
620 predefined derived classes or derive your own class from it.
625 @see wxGridCellStringRenderer, wxGridCellNumberRenderer,
626 wxGridCellFloatRenderer, wxGridCellBoolRenderer
628 class wxGridCellRenderer
634 wxGridCellRenderer
* Clone() const;
637 Draw the given cell on the provided DC inside the given rectangle
638 using the style specified by the attribute and the default or selected
639 state corresponding to the isSelected value.
640 This pure virtual function has a default implementation which will
641 prepare the DC using the given attribute: it will draw the rectangle
642 with the background colour from attr and set the text colour and font.
644 void Draw(wxGrid
& grid
, wxGridCellAttr
& attr
, wxDC
& dc
,
645 const wxRect
& rect
, int row
, int col
,
649 Get the preferred size of the cell for its contents.
651 wxSize
GetBestSize(wxGrid
& grid
, wxGridCellAttr
& attr
, wxDC
& dc
,
658 @class wxGridCellNumberEditor
660 The editor for numeric integer data.
665 @see wxGridCellEditor, wxGridCellFloatEditor, wxGridCellBoolEditor,
666 wxGridCellTextEditor, wxGridCellChoiceEditor
668 class wxGridCellNumberEditor
: public wxGridCellTextEditor
672 Allows to specify the range for acceptable data;
673 if min == max == -1, no range checking is done
675 wxGridCellNumberEditor(int min
= -1, int max
= -1);
678 String representation of the value.
680 wxString
GetString() const;
683 If the return value is @true, the editor uses a wxSpinCtrl to get user input,
684 otherwise it uses a wxTextCtrl.
686 bool HasRange() const;
689 Parameters string format is "min,max".
691 void SetParameters(const wxString
& params
);
697 @class wxGridSizeEvent
699 This event class contains information about a row/column resize event.
704 class wxGridSizeEvent
: public wxNotifyEvent
712 wxGridSizeEvent(int id
, wxEventType type
, wxObject
* obj
,
716 bool control
= false,
723 Returns @true if the Alt key was down at the time of the event.
728 Returns @true if the Control key was down at the time of the event.
733 Position in pixels at which the event occurred.
735 wxPoint
GetPosition();
738 Row or column at that was resized.
743 Returns @true if the Meta key was down at the time of the event.
748 Returns @true if the Shift key was down at the time of the event.
756 @class wxGridCellNumberRenderer
758 This class may be used to format integer data in a cell.
763 @see wxGridCellRenderer, wxGridCellStringRenderer, wxGridCellFloatRenderer,
764 wxGridCellBoolRenderer
766 class wxGridCellNumberRenderer
: public wxGridCellStringRenderer
772 wxGridCellNumberRenderer();
778 @class wxGridCellAttr
780 This class can be used to alter the cells' appearance in
781 the grid by changing their colour/font/... from default. An object of this
782 class may be returned by wxGridTableBase::GetAttr.
792 Constructor specifying some of the often used attributes.
795 wxGridCellAttr(const wxColour
& colText
,
796 const wxColour
& colBack
,
798 int hAlign
, int vAlign
);
802 Creates a new copy of this object.
804 wxGridCellAttr
* Clone() const;
812 See SetAlignment() for the returned values.
814 void GetAlignment(int* hAlign
, int* vAlign
) const;
819 const wxColour
GetBackgroundColour() const;
824 wxGridCellEditor
* GetEditor(wxGrid
* grid
, int row
, int col
) const;
829 const wxFont
GetFont() const;
834 wxGridCellRenderer
* GetRenderer(wxGrid
* grid
, int row
, int col
) const;
839 const wxColour
GetTextColour() const;
844 bool HasAlignment() const;
849 bool HasBackgroundColour() const;
854 bool HasEditor() const;
859 bool HasFont() const;
864 bool HasRenderer() const;
869 bool HasTextColour() const;
872 This class is ref counted: it is created with ref count of 1, so
873 calling DecRef() once will delete it. Calling IncRef() allows to lock
874 it until the matching DecRef() is called
881 bool IsReadOnly() const;
884 Sets the alignment. @a hAlign can be one of @c wxALIGN_LEFT,
885 @c wxALIGN_CENTRE or @c wxALIGN_RIGHT and @a vAlign can be one
886 of @c wxALIGN_TOP, @c wxALIGN_CENTRE or @c wxALIGN_BOTTOM.
888 void SetAlignment(int hAlign
, int vAlign
);
891 Sets the background colour.
893 void SetBackgroundColour(const wxColour
& colBack
);
898 void SetDefAttr(wxGridCellAttr
* defAttr
);
903 void SetEditor(wxGridCellEditor
* editor
);
908 void SetFont(const wxFont
& font
);
913 void SetReadOnly(bool isReadOnly
= true);
916 takes ownership of the pointer
918 void SetRenderer(wxGridCellRenderer
* renderer
);
921 Sets the text colour.
923 void SetTextColour(const wxColour
& colText
);
929 @class wxGridCellBoolRenderer
931 This class may be used to format boolean data in a cell.
937 @see wxGridCellRenderer, wxGridCellStringRenderer, wxGridCellFloatRenderer,
938 wxGridCellNumberRenderer
940 class wxGridCellBoolRenderer
: public wxGridCellRenderer
946 wxGridCellBoolRenderer();
954 This event class contains information about various grid events.
959 class wxGridEvent
: public wxNotifyEvent
967 wxGridEvent(int id
, wxEventType type
, wxObject
* obj
,
968 int row
= -1, int col
= -1,
969 int x
= -1, int y
= -1,
971 bool control
= false,
978 Returns @true if the Alt key was down at the time of the event.
983 Returns @true if the Control key was down at the time of the event.
988 Column at which the event occurred.
993 Position in pixels at which the event occurred.
995 wxPoint
GetPosition();
998 Row at which the event occurred.
1003 Returns @true if the Meta key was down at the time of the event.
1008 Returns @true if the user is selecting grid cells, @false -- if
1014 Returns @true if the Shift key was down at the time of the event.
1022 @class wxGridCellFloatEditor
1024 The editor for floating point numbers data.
1029 @see wxGridCellEditor, wxGridCellNumberEditor, wxGridCellBoolEditor,
1030 wxGridCellTextEditor, wxGridCellChoiceEditor
1032 class wxGridCellFloatEditor
: public wxGridCellTextEditor
1037 Minimum number of characters to be shown.
1039 Number of digits after the decimal dot.
1041 wxGridCellFloatEditor(int width
= -1, int precision
= -1);
1044 Parameters string format is "width,precision"
1046 void SetParameters(const wxString
& params
);
1054 wxGrid and its related classes are used for displaying and editing tabular
1056 They provide a rich set of features for display, editing, and interacting
1057 with a variety of data sources. For simple applications, and to help you
1058 get started, wxGrid is the only class you need to refer to directly. It
1059 will set up default instances of the other classes and manage them for you.
1060 For more complex applications you can derive your own classes for custom
1061 grid views, grid data tables, cell editors and renderers. The @ref
1062 overview_gridoverview has examples of simple and more complex applications,
1063 explains the relationship between the various grid classes and has a
1064 summary of the keyboard shortcuts and mouse functions provided by wxGrid.
1066 wxGrid has been greatly expanded and redesigned for wxWidgets 2.2 onwards.
1067 The new grid classes are reasonably backward-compatible but there are some
1068 exceptions. There are also easier ways of doing many things compared to the
1069 previous implementation.
1071 A wxGridTableBase class holds the actual data to be displayed by a wxGrid
1072 class. One or more wxGrid classes may act as a view for one table class.
1073 The default table class is called wxGridStringTable and holds an array of
1074 strings. An instance of such a class is created by wxGrid::CreateGrid.
1076 wxGridCellRenderer is the abstract base class for rendereing contents in a
1077 cell. The following renderers are predefined:
1078 - wxGridCellStringRenderer,
1079 - wxGridCellBoolRenderer,
1080 - wxGridCellFloatRenderer,
1081 - wxGridCellNumberRenderer.
1082 The look of a cell can be further defined using wxGridCellAttr. An object
1083 of this type may be returned by wxGridTableBase::GetAttr.
1085 wxGridCellEditor is the abstract base class for editing the value of a
1086 cell. The following editors are predefined:
1087 - wxGridCellTextEditor
1088 - wxGridCellBoolEditor
1089 - wxGridCellChoiceEditor
1090 - wxGridCellNumberEditor.
1095 @see @ref overview_gridoverview "wxGrid overview"
1097 class wxGrid
: public wxScrolledWindow
1101 Different selection modes supported by the grid.
1103 enum wxGridSelectionModes
1106 The default selection mode allowing selection of the individual
1107 cells as well as of the entire rows and columns.
1112 The selection mode allowing the selection of the entire rows only.
1114 The user won't be able to select any cells or columns in this mode.
1119 The selection mode allowing the selection of the entire columns only.
1121 The user won't be able to select any cells or rows in this mode.
1127 Default constructor.
1129 You must call Create() to really create the grid window and also call
1130 CreateGrid() or SetTable() to initialize the grid contents.
1135 Constructor creating the grid window.
1137 You must call either CreateGrid() or SetTable() to initialize the grid
1138 contents before using it.
1140 wxGrid(wxWindow
* parent
,
1142 const wxPoint
& pos
= wxDefaultPosition
,
1143 const wxSize
& size
= wxDefaultSize
,
1144 long style
= wxWANTS_CHARS
,
1145 const wxString
& name
= wxGridNameStr
);
1148 Creates the grid window for an object initialized using the default
1151 You must call either CreateGrid() or SetTable() to initialize the grid
1152 contents before using it.
1154 bool Create(wxWindow
* parent
,
1156 const wxPoint
& pos
= wxDefaultPosition
,
1157 const wxSize
& size
= wxDefaultSize
,
1158 long style
= wxWANTS_CHARS
,
1159 const wxString
& name
= wxGridNameStr
);
1164 This will also destroy the associated grid table unless you passed a
1165 table object to the grid and specified that the grid should not take
1166 ownership of the table (see wxGrid::SetTable).
1171 Appends one or more new columns to the right of the grid.
1173 The @a updateLabels argument is not used at present. If you are using a
1174 derived grid table class you will need to override
1175 wxGridTableBase::AppendCols. See InsertCols() for further information.
1177 @return @true on success or @false if appending columns failed.
1179 bool AppendCols(int numCols
= 1, bool updateLabels
= true);
1182 Appends one or more new rows to the bottom of the grid.
1184 The @a updateLabels argument is not used at present. If you are using a
1185 derived grid table class you will need to override
1186 wxGridTableBase::AppendRows. See InsertRows() for further information.
1188 @return @true on success or @false if appending rows failed.
1190 bool AppendRows(int numRows
= 1, bool updateLabels
= true);
1193 Automatically sets the height and width of all rows and columns to fit their
1199 Automatically adjusts width of the column to fit its label.
1201 void AutoSizeColLabelSize(int col
);
1204 Automatically sizes the column to fit its contents. If setAsMin is @true the
1205 calculated width will
1206 also be set as the minimal width for the column.
1208 void AutoSizeColumn(int col
, bool setAsMin
= true);
1211 Automatically sizes all columns to fit their contents. If setAsMin is @true the
1212 calculated widths will
1213 also be set as the minimal widths for the columns.
1215 void AutoSizeColumns(bool setAsMin
= true);
1218 Automatically sizes the row to fit its contents. If setAsMin is @true the
1219 calculated height will
1220 also be set as the minimal height for the row.
1222 void AutoSizeRow(int row
, bool setAsMin
= true);
1225 Automatically adjusts height of the row to fit its label.
1227 void AutoSizeRowLabelSize(int col
);
1230 Automatically sizes all rows to fit their contents. If setAsMin is @true the
1231 calculated heights will
1232 also be set as the minimal heights for the rows.
1234 void AutoSizeRows(bool setAsMin
= true);
1237 Increments the grid's batch count.
1239 When the count is greater than zero repainting of the grid is
1240 suppressed. Each call to BeginBatch must be matched by a later call to
1241 EndBatch(). Code that does a lot of grid modification can be enclosed
1242 between BeginBatch and EndBatch calls to avoid screen flicker. The
1243 final EndBatch will cause the grid to be repainted.
1245 Notice that you should use wxGridUpdateLocker which ensures that there
1246 is always a matching EndBatch() call for this BeginBatch() if possible
1247 instead of calling this method directly.
1252 Convert grid cell coordinates to grid window pixel coordinates.
1254 This function returns the rectangle that encloses the block of cells
1255 limited by @a topLeft and @a bottomRight cell in device coords and
1256 clipped to the client size of the grid window.
1260 wxRect
BlockToDeviceRect(const wxGridCellCoords
& topLeft
,
1261 const wxGridCellCoords
& bottomRight
) const;
1264 Returns @true if columns can be moved by dragging with the mouse.
1266 Columns can be moved by dragging on their labels.
1268 bool CanDragColMove() const;
1271 Returns @true if columns can be resized by dragging with the mouse.
1273 Columns can be resized by dragging the edges of their labels. If grid
1274 line dragging is enabled they can also be resized by dragging the right
1275 edge of the column in the grid cell area (see
1276 wxGrid::EnableDragGridSize).
1278 bool CanDragColSize() const;
1281 Return @true if the dragging of grid lines to resize rows and columns
1282 is enabled or @false otherwise.
1284 bool CanDragGridSize() const;
1287 Returns @true if rows can be resized by dragging with the mouse.
1289 Rows can be resized by dragging the edges of their labels. If grid line
1290 dragging is enabled they can also be resized by dragging the lower edge
1291 of the row in the grid cell area (see wxGrid::EnableDragGridSize).
1293 bool CanDragRowSize() const;
1296 Returns @true if the in-place edit control for the current grid cell
1297 can be used and @false otherwise.
1299 This function always returns @false for the read-only cells.
1301 bool CanEnableCellControl() const;
1304 Returns @true if this grid has support for cell attributes.
1306 The grid supports attributes if it has the associated table which, in
1307 turn, has attributes support, i.e. wxGridTableBase::CanHaveAttributes()
1310 bool CanHaveAttributes() const;
1314 Return the rectangle corresponding to the grid cell's size and position
1315 in logical coordinates.
1317 @see BlockToDeviceRect()
1319 wxRect
CellToRect(int row
, int col
) const;
1320 const wxRect
CellToRect(const wxGridCellCoords
& coords
) const;
1325 Clears all data in the underlying grid table and repaints the grid.
1327 The table is not deleted by this function. If you are using a derived
1328 table class then you need to override wxGridTableBase::Clear() for this
1329 function to have any effect.
1334 Deselects all cells that are currently selected.
1336 void ClearSelection();
1339 Creates a grid with the specified initial number of rows and columns.
1341 Call this directly after the grid constructor. When you use this
1342 function wxGrid will create and manage a simple table of string values
1343 for you. All of the grid data will be stored in memory.
1344 For applications with more complex data types or relationships, or for
1345 dealing with very large datasets, you should derive your own grid table
1346 class and pass a table object to the grid with SetTable().
1348 bool CreateGrid(int numRows
, int numCols
,
1349 wxGridSelectionModes selmode
= wxGridSelectCells
);
1352 Deletes one or more columns from a grid starting at the specified
1355 The @a updateLabels argument is not used at present. If you are using a
1356 derived grid table class you will need to override
1357 wxGridTableBase::DeleteCols. See InsertCols() for further information.
1359 @return @true on success or @false if deleting columns failed.
1361 bool DeleteCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true);
1364 Deletes one or more rows from a grid starting at the specified position.
1366 The @a updateLabels argument is not used at present. If you are using a
1367 derived grid table class you will need to override
1368 wxGridTableBase::DeleteRows. See InsertRows() for further information.
1370 @return @true on success or @false if appending rows failed.
1372 bool DeleteRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true);
1375 Disables in-place editing of grid cells.
1377 Equivalent to calling EnableCellEditControl(@false).
1379 void DisableCellEditControl();
1382 Disables column moving by dragging with the mouse.
1384 Equivalent to passing @false to EnableDragColMove().
1386 void DisableDragColMove();
1389 Disables column sizing by dragging with the mouse.
1391 Equivalent to passing @false to EnableDragColSize().
1393 void DisableDragColSize();
1396 Disable mouse dragging of grid lines to resize rows and columns.
1398 Equivalent to passing @false to EnableDragGridSize()
1400 void DisableDragGridSize();
1403 Disables row sizing by dragging with the mouse.
1405 Equivalent to passing @false to EnableDragRowSize().
1407 void DisableDragRowSize();
1410 Enables or disables in-place editing of grid cell data.
1412 The grid will issue either a wxEVT_GRID_EDITOR_SHOWN or
1413 wxEVT_GRID_EDITOR_HIDDEN event.
1415 void EnableCellEditControl(bool enable
= true);
1418 Enables or disables column moving by dragging with the mouse.
1420 void EnableDragColMove(bool enable
= true);
1423 Enables or disables column sizing by dragging with the mouse.
1425 void EnableDragColSize(bool enable
= true);
1428 Enables or disables row and column resizing by dragging gridlines with the
1431 void EnableDragGridSize(bool enable
= true);
1434 Enables or disables row sizing by dragging with the mouse.
1436 void EnableDragRowSize(bool enable
= true);
1439 Makes the grid globally editable or read-only.
1441 If the edit argument is @false this function sets the whole grid as
1442 read-only. If the argument is @true the grid is set to the default
1443 state where cells may be editable. In the default state you can set
1444 single grid cells and whole rows and columns to be editable or
1445 read-only via wxGridCellAttribute::SetReadOnly. For single cells you
1446 can also use the shortcut function SetReadOnly().
1448 For more information about controlling grid cell attributes see the
1449 wxGridCellAttr cell attribute class and the
1450 @ref overview_gridoverview.
1452 void EnableEditing(bool edit
);
1455 Turns the drawing of grid lines on or off.
1457 void EnableGridLines(bool enable
= true);
1460 Decrements the grid's batch count.
1462 When the count is greater than zero repainting of the grid is
1463 suppressed. Each previous call to BeginBatch() must be matched by a
1464 later call to EndBatch. Code that does a lot of grid modification can
1465 be enclosed between BeginBatch and EndBatch calls to avoid screen
1466 flicker. The final EndBatch will cause the grid to be repainted.
1468 @see wxGridUpdateLocker
1473 Overridden wxWindow method.
1478 Causes immediate repainting of the grid.
1480 Use this instead of the usual wxWindow::Refresh.
1482 void ForceRefresh();
1485 Returns the number of times that BeginBatch() has been called
1486 without (yet) matching calls to EndBatch(). While
1487 the grid's batch count is greater than zero the display will not be updated.
1489 int GetBatchCount() const;
1492 Sets the arguments to the horizontal and vertical text alignment values
1493 for the grid cell at the specified location.
1495 Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE
1496 or @c wxALIGN_RIGHT.
1498 Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or
1501 void GetCellAlignment(int row
, int col
, int* horiz
, int* vert
) const;
1504 Returns the background colour of the cell at the specified location.
1506 wxColour
GetCellBackgroundColour(int row
, int col
) const;
1509 Returns a pointer to the editor for the cell at the specified location.
1511 See wxGridCellEditor and the @ref overview_gridoverview "wxGrid
1512 overview" for more information about cell editors and renderers.
1514 The caller must call DecRef() on the returned pointer.
1516 wxGridCellEditor
* GetCellEditor(int row
, int col
) const;
1519 Returns the font for text in the grid cell at the specified location.
1521 wxFont
GetCellFont(int row
, int col
) const;
1524 Returns a pointer to the renderer for the grid cell at the specified
1527 See wxGridCellRenderer and the @ref overview_gridoverview "wxGrid
1528 overview" for more information about cell editors and renderers.
1530 The caller must call DecRef() on the returned pointer.
1532 wxGridCellRenderer
* GetCellRenderer(int row
, int col
) const;
1535 Returns the text colour for the grid cell at the specified location.
1537 wxColour
GetCellTextColour(int row
, int col
) const;
1541 Returns the string contained in the cell at the specified location.
1543 For simple applications where a grid object automatically uses a
1544 default grid table of string values you use this function together with
1545 SetCellValue() to access cell values. For more complex applications
1546 where you have derived your own grid table class that contains various
1547 data types (e.g. numeric, boolean or user-defined custom types) then
1548 you only use this function for those cells that contain string values.
1550 See wxGridTableBase::CanGetValueAs and the @ref overview_gridoverview
1551 "wxGrid overview" for more information.
1553 wxString
GetCellValue(int row
, int col
) const;
1554 const wxString
GetCellValue(const wxGridCellCoords
& coords
) const;
1558 Returns the column ID of the specified column position.
1560 int GetColAt(int colPos
) const;
1563 Returns the pen used for vertical grid lines.
1565 This virtual function may be overridden in derived classes in order to
1566 change the appearance of individual grid lines for the given column @e
1569 See GetRowGridLinePen() for an example.
1571 wxPen
GetColGridLinePen(int col
);
1574 Sets the arguments to the current column label alignment values.
1576 Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE
1577 or @c wxALIGN_RIGHT.
1579 Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or
1582 void GetColLabelAlignment(int* horiz
, int* vert
) const;
1585 Returns the current height of the column labels.
1587 int GetColLabelSize() const;
1590 Returns the specified column label.
1592 The default grid table class provides column labels of the form
1593 A,B...Z,AA,AB...ZZ,AAA... If you are using a custom grid table you can
1594 override wxGridTableBase::GetColLabelValue to provide your own labels.
1596 wxString
GetColLabelValue(int col
) const;
1599 Returns the coordinate of the left border specified column.
1601 int GetColLeft(int col
) const;
1604 Returns the minimal width to which a column may be resized.
1606 Use SetColMinimalAcceptableWidth() to change this value globally or
1607 SetColMinimalWidth() to do it for individual columns.
1609 int GetColMinimalAcceptableWidth() const;
1612 Get the minimal width of the given column/row.
1614 The value returned by this function may be different than that returned
1615 by GetColMinimalAcceptableWidth() if SetColMinimalWidth() had been
1616 called for this column.
1618 int GetColMinimalWidth(int col
) const;
1621 Returns the position of the specified column.
1623 int GetColPos(int colID
) const;
1626 Returns the coordinate of the right border specified column.
1628 int GetColRight(int col
) const;
1631 Returns the width of the specified column.
1633 int GetColSize(int col
) const;
1636 Returns the default cell alignment.
1638 Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE
1639 or @c wxALIGN_RIGHT.
1641 Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or
1644 @see SetDefaultCellAlignment()
1646 void GetDefaultCellAlignment(int* horiz
, int* vert
) const;
1649 Returns the current default background colour for grid cells.
1651 wxColour
GetDefaultCellBackgroundColour() const;
1654 Returns the current default font for grid cell text.
1656 wxFont
GetDefaultCellFont() const;
1659 Returns the current default colour for grid cell text.
1661 wxColour
GetDefaultCellTextColour() const;
1664 Returns the default height for column labels.
1666 int GetDefaultColLabelSize() const;
1669 Returns the current default width for grid columns.
1671 int GetDefaultColSize() const;
1674 Returns a pointer to the current default grid cell editor.
1676 See wxGridCellEditor and the @ref overview_gridoverview "wxGrid
1677 overview" for more information about cell editors and renderers.
1679 wxGridCellEditor
* GetDefaultEditor() const;
1683 Returns the default editor for the specified cell.
1685 The base class version returns the editor appropriate for the current
1686 cell type but this method may be overridden in the derived classes to
1687 use custom editors for some cells by default.
1689 Notice that the same may be usually achieved in simpler way by
1690 associating a custom editor with the given cell or cells.
1692 The caller must call DecRef() on the returned pointer.
1694 virtual wxGridCellEditor
* GetDefaultEditorForCell(int row
, int col
) const;
1695 wxGridCellEditor
* GetDefaultEditorForCell(const wxGridCellCoords
& c
) const;
1699 Returns the default editor for the cells containing values of the given
1702 The base class version returns the editor which was associated with the
1703 specified @a typeName when it was registered RegisterDataType() but
1704 this function may be overridden to return something different. This
1705 allows to override an editor used for one of the standard types.
1707 The caller must call DecRef() on the returned pointer.
1709 virtual wxGridCellEditor
*
1710 GetDefaultEditorForType(const wxString
& typeName
) const;
1713 Returns the pen used for grid lines.
1715 This virtual function may be overridden in derived classes in order to
1716 change the appearance of grid lines. Note that currently the pen width
1719 @see GetColGridLinePen(), GetRowGridLinePen()
1721 wxPen
GetDefaultGridLinePen();
1724 Returns a pointer to the current default grid cell renderer.
1726 See wxGridCellRenderer and the @ref overview_gridoverview "wxGrid
1727 overview" for more information about cell editors and renderers.
1729 The caller must call DecRef() on the returned pointer.
1731 wxGridCellRenderer
* GetDefaultRenderer() const;
1734 Returns the default renderer for the given cell.
1736 The base class version returns the renderer appropriate for the current
1737 cell type but this method may be overridden in the derived classes to
1738 use custom renderers for some cells by default.
1740 The caller must call DecRef() on the returned pointer.
1742 virtual wxGridCellRenderer
*GetDefaultRendererForCell(int row
, int col
) const;
1745 Returns the default renderer for the cell containing values of the
1748 @see GetDefaultEditorForType()
1750 virtual wxGridCellRenderer
*
1751 GetDefaultRendererForType(const wxString
& typeName
) const;
1754 Returns the default width for the row labels.
1756 int GetDefaultRowLabelSize() const;
1759 Returns the current default height for grid rows.
1761 int GetDefaultRowSize() const;
1764 Returns the current grid cell column position.
1766 int GetGridCursorCol() const;
1769 Returns the current grid cell row position.
1771 int GetGridCursorRow() const;
1774 Returns the colour used for grid lines.
1776 @see GetDefaultGridLinePen()
1778 wxColour
GetGridLineColour() const;
1781 Returns the colour used for the background of row and column labels.
1783 wxColour
GetLabelBackgroundColour() const;
1786 Returns the font used for row and column labels.
1788 wxFont
GetLabelFont() const;
1791 Returns the colour used for row and column label text.
1793 wxColour
GetLabelTextColour() const;
1796 Returns the total number of grid columns.
1798 This is the same as the number of columns in the underlying grid
1801 int GetNumberCols() const;
1804 Returns the total number of grid rows.
1806 This is the same as the number of rows in the underlying grid table.
1808 int GetNumberRows() const;
1811 Returns the attribute for the given cell creating one if necessary.
1813 If the cell already has an attribute, it is returned. Otherwise a new
1814 attribute is created, associated with the cell and returned. In any
1815 case the caller must call DecRef() on the returned pointer.
1817 This function may only be called if CanHaveAttributes() returns @true.
1819 wxGridCellAttr
*GetOrCreateCellAttr(int row
, int col
) const;
1822 Returns the pen used for horizontal grid lines.
1824 This virtual function may be overridden in derived classes in order to
1825 change the appearance of individual grid line for the given row @e row.
1829 // in a grid displaying music notation, use a solid black pen between
1830 // octaves (C0=row 127, C1=row 115 etc.)
1831 wxPen MidiGrid::GetRowGridLinePen(int row)
1833 if ( row % 12 == 7 )
1834 return wxPen(*wxBLACK, 1, wxSOLID);
1836 return GetDefaultGridLinePen();
1840 wxPen
GetRowGridLinePen(int row
);
1843 Returns the alignment used for row labels.
1845 Horizontal alignment will be one of @c wxALIGN_LEFT, @c wxALIGN_CENTRE
1846 or @c wxALIGN_RIGHT.
1848 Vertical alignment will be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE or
1851 void GetRowLabelAlignment(int* horiz
, int* vert
) const;
1854 Returns the current width of the row labels.
1856 int GetRowLabelSize() const;
1859 Returns the specified row label.
1861 The default grid table class provides numeric row labels. If you are
1862 using a custom grid table you can override
1863 wxGridTableBase::GetRowLabelValue to provide your own labels.
1865 wxString
GetRowLabelValue(int row
) const;
1868 Returns the minimal size to which rows can be resized.
1870 Use SetRowMinimalAcceptableHeight() to change this value globally or
1871 SetRowMinimalHeight() to do it for individual cells.
1873 @see GetColMinimalAcceptableWidth()
1875 int GetRowMinimalAcceptableHeight() const;
1878 Returns the minimal size for the given column.
1880 The value returned by this function may be different than that returned
1881 by GetRowMinimalAcceptableHeight() if SetRowMinimalHeight() had been
1882 called for this row.
1884 int GetRowMinimalHeight(int col
) const;
1887 Returns the height of the specified row.
1889 int GetRowSize(int row
) const;
1892 Returns the number of pixels per horizontal scroll increment.
1896 @see GetScrollLineY(), SetScrollLineX(), SetScrollLineY()
1898 int GetScrollLineX() const;
1901 Returns the number of pixels per vertical scroll increment.
1905 @see GetScrollLineX(), SetScrollLineX(), SetScrollLineY()
1907 int GetScrollLineY() const;
1910 Returns an array of individually selected cells.
1912 Notice that this array does @em not contain all the selected cells in
1913 general as it doesn't include the cells selected as part of column, row
1914 or block selection. You must use this method, GetSelectedCols(),
1915 GetSelectedRows() and GetSelectionBlockTopLeft() and
1916 GetSelectionBlockBottomRight() methods to obtain the entire selection
1919 Please notice this behaviour is by design and is needed in order to
1920 support grids of arbitrary size (when an entire column is selected in
1921 a grid with a million of columns, we don't want to create an array with
1922 a million of entries in this function, instead it returns an empty
1923 array and GetSelectedCols() returns an array containing one element).
1925 wxGridCellCoordsArray
GetSelectedCells() const;
1928 Returns an array of selected columns.
1930 Please notice that this method alone is not sufficient to find all the
1931 selected columns as it contains only the columns which were
1932 individually selected but not those being part of the block selection
1933 or being selected in virtue of all of their cells being selected
1934 individually, please see GetSelectedCells() for more details.
1936 wxArrayInt
GetSelectedCols() const;
1939 Returns an array of selected rows.
1941 Please notice that this method alone is not sufficient to find all the
1942 selected rows as it contains only the rows which were individually
1943 selected but not those being part of the block selection or being
1944 selected in virtue of all of their cells being selected individually,
1945 please see GetSelectedCells() for more details.
1947 wxArrayInt
GetSelectedRows() const;
1950 Access or update the selection fore/back colours
1952 wxColour
GetSelectionBackground() const;
1955 Returns an array of the bottom right corners of blocks of selected
1958 Please see GetSelectedCells() for more information about the selection
1959 representation in wxGrid.
1961 @see GetSelectionBlockTopLeft()
1963 wxGridCellCoordsArray
GetSelectionBlockBottomRight() const;
1966 Returns an array of the top left corners of blocks of selected cells.
1968 Please see GetSelectedCells() for more information about the selection
1969 representation in wxGrid.
1971 @see GetSelectionBlockBottomRight()
1973 wxGridCellCoordsArray
GetSelectionBlockTopLeft() const;
1976 Returns the colour used for drawing the selection foreground.
1978 wxColour
GetSelectionForeground() const;
1981 Returns the current selection mode.
1983 @see SetSelectionMode().
1985 wxGridSelectionModes
GetSelectionMode() const;
1988 Returns a base pointer to the current table object.
1990 The returned pointer is still owned by the grid.
1992 wxGridTableBase
*GetTable() const;
1995 Returns @true if drawing of grid lines is turned on, @false otherwise.
1997 bool GridLinesEnabled() const;
2000 Hides the in-place cell edit control.
2002 void HideCellEditControl();
2005 Hides the column labels by calling SetColLabelSize()
2006 with a size of 0. Show labels again by calling that method with
2007 a width greater than 0.
2009 void HideColLabels();
2012 Hides the row labels by calling SetRowLabelSize() with a size of 0.
2014 The labels can be shown again by calling SetRowLabelSize() with a width
2017 void HideRowLabels();
2020 Inserts one or more new columns into a grid with the first new column
2021 at the specified position.
2023 Notice that inserting the columns in the grid requires grid table
2024 cooperation: when this method is called, grid object begins by
2025 requesting the underlying grid table to insert new columns. If this is
2026 successful the table notifies the grid and the grid updates the
2027 display. For a default grid (one where you have called
2028 wxGrid::CreateGrid) this process is automatic. If you are using a
2029 custom grid table (specified with wxGrid::SetTable) then you must
2030 override wxGridTableBase::InsertCols() in your derived table class.
2033 The position which the first newly inserted column will have.
2035 The number of columns to insert.
2039 @true if the columns were successfully inserted, @false if an error
2040 occurred (most likely the table couldn't be updated).
2042 bool InsertCols(int pos
= 0, int numCols
= 1, bool updateLabels
= true);
2045 Inserts one or more new rows into a grid with the first new row at the
2048 Notice that you must implement wxGridTableBase::InsertRows() if you use
2049 a grid with a custom table, please see InsertCols() for more
2053 The position which the first newly inserted row will have.
2055 The number of rows to insert.
2059 @true if the rows were successfully inserted, @false if an error
2060 occurred (most likely the table couldn't be updated).
2062 bool InsertRows(int pos
= 0, int numRows
= 1, bool updateLabels
= true);
2065 Returns @true if the in-place edit control is currently enabled.
2067 bool IsCellEditControlEnabled() const;
2070 Returns @true if the current cell is read-only.
2072 @see SetReadOnly(), IsReadOnly()
2074 bool IsCurrentCellReadOnly() const;
2077 Returns @false if the whole grid has been set as read-only or @true
2080 See EnableEditing() for more information about controlling the editing
2081 status of grid cells.
2083 bool IsEditable() const;
2087 Is this cell currently selected?
2089 bool IsInSelection(int row
, int col
) const;
2090 bool IsInSelection(const wxGridCellCoords
& coords
) const;
2094 Returns @true if the cell at the specified location can't be edited.
2096 @see SetReadOnly(), IsCurrentCellReadOnly()
2098 bool IsReadOnly(int row
, int col
) const;
2101 Returns @true if there are currently any selected cells, rows, columns
2104 bool IsSelection() const;
2108 Returns @true if a cell is either wholly or at least partially visible
2111 By default, the cell must be entirely visible for this function to
2112 return true but if @a wholeCellVisible is @false, the function returns
2113 @true even if the cell is only partially visible.
2115 bool IsVisible(int row
, int col
, bool wholeCellVisible
= true) const;
2116 const bool IsVisible(const wxGridCellCoords
& coords
,
2117 bool wholeCellVisible
= true) const;
2122 Brings the specified cell into the visible grid cell area with minimal
2125 Does nothing if the cell is already visible.
2127 void MakeCellVisible(int row
, int col
);
2128 void MakeCellVisible(const wxGridCellCoords
& coords
);
2132 Moves the grid cursor down by one row.
2134 If a block of cells was previously selected it will expand if the
2135 argument is @true or be cleared if the argument is @false.
2137 bool MoveCursorDown(bool expandSelection
);
2140 Moves the grid cursor down in the current column such that it skips to
2141 the beginning or end of a block of non-empty cells.
2143 If a block of cells was previously selected it will expand if the
2144 argument is @true or be cleared if the argument is @false.
2146 bool MoveCursorDownBlock(bool expandSelection
);
2149 Moves the grid cursor left by one column.
2151 If a block of cells was previously selected it will expand if the
2152 argument is @true or be cleared if the argument is @false.
2154 bool MoveCursorLeft(bool expandSelection
);
2157 Moves the grid cursor left in the current row such that it skips to the
2158 beginning or end of a block of non-empty cells.
2160 If a block of cells was previously selected it will expand if the
2161 argument is @true or be cleared if the argument is @false.
2163 bool MoveCursorLeftBlock(bool expandSelection
);
2166 Moves the grid cursor right by one column.
2168 If a block of cells was previously selected it will expand if the
2169 argument is @true or be cleared if the argument is @false.
2171 bool MoveCursorRight(bool expandSelection
);
2174 Moves the grid cursor right in the current row such that it skips to
2175 the beginning or end of a block of non-empty cells.
2177 If a block of cells was previously selected it will expand if the
2178 argument is @true or be cleared if the argument is @false.
2180 bool MoveCursorRightBlock(bool expandSelection
);
2183 Moves the grid cursor up by one row.
2185 If a block of cells was previously selected it will expand if the
2186 argument is @true or be cleared if the argument is @false.
2188 bool MoveCursorUp(bool expandSelection
);
2191 Moves the grid cursor up in the current column such that it skips to
2192 the beginning or end of a block of non-empty cells.
2194 If a block of cells was previously selected it will expand if the
2195 argument is @true or be cleared if the argument is @false.
2197 bool MoveCursorUpBlock(bool expandSelection
);
2200 Moves the grid cursor down by some number of rows so that the previous
2201 bottom visible row becomes the top visible row.
2203 bool MovePageDown();
2206 Moves the grid cursor up by some number of rows so that the previous
2207 top visible row becomes the bottom visible row.
2212 Register a new data type.
2214 The data types allow to naturally associate specific renderers and
2215 editors to the cells containing values of the given type. For example,
2216 the grid automatically registers a data type with the name @c
2217 wxGRID_VALUE_STRING which uses wxGridCellStringRenderer and
2218 wxGridCellTextEditor as its renderer and editor respectively -- this is
2219 the data type used by all the cells of the default wxGridStringTable,
2220 so this renderer and editor are used by default for all grid cells.
2222 However if a custom table returns @c wxGRID_VALUE_BOOL from its
2223 wxGridTableBase::GetTypeName() method, then wxGridCellBoolRenderer and
2224 wxGridCellBoolEditor are used for it because the grid also registers a
2225 boolean data type with this name.
2227 And as this mechanism is completely generic, you may register your own
2228 data types using your own custom renderers and editors. Just remember
2229 that the table must identify a cell as being of the given type for them
2230 to be used for this cell.
2233 Name of the new type. May be any string, but if the type name is
2234 the same as the name of an already registered type, including one
2235 of the standard ones (which are @c wxGRID_VALUE_STRING, @c
2236 wxGRID_VALUE_BOOL, @c wxGRID_VALUE_NUMBER, @c wxGRID_VALUE_FLOAT
2237 and @c wxGRID_VALUE_CHOICE), then the new registration information
2238 replaces the previously used renderer and editor.
2240 The renderer to use for the cells of this type. Its ownership is
2241 taken by the grid, i.e. it will call DecRef() on this pointer when
2242 it doesn't need it any longer.
2244 The editor to use for the cells of this type. Its ownership is also
2247 void RegisterDataType(const wxString
& typeName
,
2248 wxGridCellRenderer
* renderer
,
2249 wxGridCellEditor
* editor
);
2252 Sets the value of the current grid cell to the current in-place edit
2255 This is called automatically when the grid cursor moves from the
2256 current cell to a new cell. It is also a good idea to call this
2257 function when closing a grid since any edits to the final cell location
2258 will not be saved otherwise.
2260 void SaveEditControlValue();
2263 Selects all cells in the grid.
2269 Selects a rectangular block of cells.
2271 If @a addToSelected is @false then any existing selection will be
2272 deselected; if @true the column will be added to the existing
2275 void SelectBlock(int topRow
, int leftCol
, int bottomRow
, int rightCol
,
2276 bool addToSelected
= false);
2277 void SelectBlock(const wxGridCellCoords
& topLeft
,
2278 const wxGridCellCoords
& bottomRight
,
2279 bool addToSelected
= false);
2283 Selects the specified column.
2285 If @a addToSelected is @false then any existing selection will be
2286 deselected; if @true the column will be added to the existing
2289 This method won't select anything if the current selection mode is
2292 void SelectCol(int col
, bool addToSelected
= false);
2295 Selects the specified row.
2297 If @a addToSelected is @false then any existing selection will be
2298 deselected; if @true the row will be added to the existing selection.
2300 This method won't select anything if the current selection mode is
2301 wxGridSelectColumns.
2303 void SelectRow(int row
, bool addToSelected
= false);
2307 Sets the horizontal and vertical alignment for grid cell text at the
2310 Horizontal alignment should be one of @c wxALIGN_LEFT, @c
2311 wxALIGN_CENTRE or @c wxALIGN_RIGHT.
2313 Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE
2314 or @c wxALIGN_BOTTOM.
2316 void SetCellAlignment(int row
, int col
, int horiz
, int vert
);
2317 void SetCellAlignment(int align
, int row
, int col
);
2322 Set the background colour for the given cell or all cells by default.
2324 void SetCellBackgroundColour(int row
, int col
, const wxColour
& colour
);
2328 Sets the editor for the grid cell at the specified location.
2330 The grid will take ownership of the pointer.
2332 See wxGridCellEditor and the @ref overview_gridoverview "wxGrid
2333 overview" for more information about cell editors and renderers.
2335 void SetCellEditor(int row
, int col
, wxGridCellEditor
* editor
);
2338 Sets the font for text in the grid cell at the specified location.
2340 void SetCellFont(int row
, int col
, const wxFont
& font
);
2343 Sets the renderer for the grid cell at the specified location.
2345 The grid will take ownership of the pointer.
2347 See wxGridCellRenderer and the @ref overview_gridoverview "wxGrid
2348 overview" for more information about cell editors and renderers.
2350 void SetCellRenderer(int row
, int col
, wxGridCellRenderer
* renderer
);
2354 Sets the text colour for the given cell or all cells by default.
2356 void SetCellTextColour(int row
, int col
, const wxColour
& colour
);
2357 void SetCellTextColour(const wxColour
& val
, int row
, int col
);
2358 void SetCellTextColour(const wxColour
& colour
);
2363 Sets the string value for the cell at the specified location.
2365 For simple applications where a grid object automatically uses a
2366 default grid table of string values you use this function together with
2367 GetCellValue() to access cell values. For more complex applications
2368 where you have derived your own grid table class that contains various
2369 data types (e.g. numeric, boolean or user-defined custom types) then
2370 you only use this function for those cells that contain string values.
2371 The last form is for backward compatibility only.
2373 See wxGridTableBase::CanSetValueAs and the @ref overview_gridoverview
2374 "wxGrid overview" for more information.
2376 void SetCellValue(int row
, int col
, const wxString
& s
);
2377 void SetCellValue(const wxGridCellCoords
& coords
, const wxString
& s
);
2378 void SetCellValue(const wxString
& val
, int row
, int col
);
2382 Sets the cell attributes for all cells in the specified column.
2384 For more information about controlling grid cell attributes see the
2385 wxGridCellAttr cell attribute class and the @ref overview_gridoverview.
2387 void SetColAttr(int col
, wxGridCellAttr
* attr
);
2390 Sets the specified column to display boolean values.
2392 @see SetColFormatCustom()
2394 void SetColFormatBool(int col
);
2397 Sets the specified column to display data in a custom format.
2399 This method provides an alternative to defining a custom grid table
2400 which would return @a typeName from its GetTypeName() method for the
2401 cells in this column: while it doesn't really change the type of the
2402 cells in this column, it does associate the renderer and editor used
2403 for the cells of the specified type with them.
2405 See the @ref overview_gridoverview "wxGrid overview" for more
2406 information on working with custom data types.
2408 void SetColFormatCustom(int col
, const wxString
& typeName
);
2411 Sets the specified column to display floating point values with the
2412 given width and precision.
2414 @see SetColFormatCustom()
2416 void SetColFormatFloat(int col
, int width
= -1, int precision
= -1);
2419 Sets the specified column to display integer values.
2421 @see SetColFormatCustom()
2423 void SetColFormatNumber(int col
);
2426 Sets the horizontal and vertical alignment of column label text.
2428 Horizontal alignment should be one of @c wxALIGN_LEFT, @c
2429 wxALIGN_CENTRE or @c wxALIGN_RIGHT.
2430 Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE
2431 or @c wxALIGN_BOTTOM.
2433 void SetColLabelAlignment(int horiz
, int vert
);
2436 Sets the height of the column labels.
2438 If @a height equals to @c wxGRID_AUTOSIZE then height is calculated
2439 automatically so that no label is truncated. Note that this could be
2440 slow for a large table.
2442 void SetColLabelSize(int height
);
2445 Set the value for the given column label.
2447 If you are using a custom grid table you must override
2448 wxGridTableBase::SetColLabelValue for this to have any effect.
2450 void SetColLabelValue(int col
, const wxString
& value
);
2453 Sets the minimal width to which the user can resize columns.
2455 @see GetColMinimalAcceptableWidth()
2457 void SetColMinimalAcceptableWidth(int width
);
2460 Sets the minimal width for the specified column.
2462 It is usually best to call this method during grid creation as calling
2463 it later will not resize the column to the given minimal width even if
2464 it is currently narrower than it.
2466 @a width must be greater than the minimal acceptable column width as
2467 returned by GetColMinimalAcceptableWidth().
2469 void SetColMinimalWidth(int col
, int width
);
2472 Sets the position of the specified column.
2474 void SetColPos(int colID
, int newPos
);
2477 Sets the width of the specified column.
2479 Notice that this function does not refresh the grid, you need to call
2480 ForceRefresh() to make the changes take effect immediately.
2485 The new column width in pixels or a negative value to fit the
2486 column width to its label width.
2488 void SetColSize(int col
, int width
);
2491 Sets the default horizontal and vertical alignment for grid cell text.
2493 Horizontal alignment should be one of @c wxALIGN_LEFT, @c
2494 wxALIGN_CENTRE or @c wxALIGN_RIGHT.
2495 Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE
2496 or @c wxALIGN_BOTTOM.
2498 void SetDefaultCellAlignment(int horiz
, int vert
);
2501 Sets the default background colour for grid cells.
2503 void SetDefaultCellBackgroundColour(const wxColour
& colour
);
2506 Sets the default font to be used for grid cell text.
2508 void SetDefaultCellFont(const wxFont
& font
);
2511 Sets the current default colour for grid cell text.
2513 void SetDefaultCellTextColour(const wxColour
& colour
);
2516 Sets the default width for columns in the grid.
2518 This will only affect columns subsequently added to the grid unless
2519 @a resizeExistingCols is @true.
2521 If @a width is less than GetColMinimalAcceptableWidth(), then the
2522 minimal acceptable width is used instead of it.
2524 void SetDefaultColSize(int width
, bool resizeExistingCols
= false);
2527 Sets the default editor for grid cells.
2529 The grid will take ownership of the pointer.
2531 See wxGridCellEditor and the @ref overview_gridoverview "wxGrid
2532 overview" for more information about cell editors and renderers.
2534 void SetDefaultEditor(wxGridCellEditor
* editor
);
2537 Sets the default renderer for grid cells.
2539 The grid will take ownership of the pointer.
2541 See wxGridCellRenderer and the @ref overview_gridoverview "wxGrid
2542 overview" for more information about cell editors and renderers.
2544 void SetDefaultRenderer(wxGridCellRenderer
* renderer
);
2547 Sets the default height for rows in the grid.
2549 This will only affect rows subsequently added to the grid unless
2550 @a resizeExistingRows is @true.
2552 If @a height is less than GetRowMinimalAcceptableHeight(), then the
2553 minimal acceptable heihgt is used instead of it.
2555 void SetDefaultRowSize(int height
, bool resizeExistingRows
= false);
2558 Set the grid cursor to the specified cell.
2560 This function calls MakeCellVisible().
2562 void SetGridCursor(int row
, int col
);
2565 Sets the colour used to draw grid lines.
2567 void SetGridLineColour(const wxColour
& colour
);
2570 Sets the background colour for row and column labels.
2572 void SetLabelBackgroundColour(const wxColour
& colour
);
2575 Sets the font for row and column labels.
2577 void SetLabelFont(const wxFont
& font
);
2580 Sets the colour for row and column label text.
2582 void SetLabelTextColour(const wxColour
& colour
);
2585 Sets the extra margins used around the grid area.
2587 A grid may occupy more space than needed for its data display and
2588 this function allows to set how big this extra space is
2590 void SetMargins(int extraWidth
, int extraHeight
);
2593 Makes the cell at the specified location read-only or editable.
2597 void SetReadOnly(int row
, int col
, bool isReadOnly
= true);
2600 Sets the cell attributes for all cells in the specified row.
2602 The grid takes ownership of the attribute pointer.
2604 See the wxGridCellAttr class for more information about controlling
2607 void SetRowAttr(int row
, wxGridCellAttr
* attr
);
2610 Sets the horizontal and vertical alignment of row label text.
2612 Horizontal alignment should be one of @c wxALIGN_LEFT, @c
2613 wxALIGN_CENTRE or @c wxALIGN_RIGHT.
2614 Vertical alignment should be one of @c wxALIGN_TOP, @c wxALIGN_CENTRE
2615 or @c wxALIGN_BOTTOM.
2617 void SetRowLabelAlignment(int horiz
, int vert
);
2620 Sets the width of the row labels.
2622 If @a width equals @c wxGRID_AUTOSIZE then width is calculated
2623 automatically so that no label is truncated. Note that this could be
2624 slow for a large table.
2626 void SetRowLabelSize(int width
);
2629 Sets the value for the given row label.
2631 If you are using a derived grid table you must override
2632 wxGridTableBase::SetRowLabelValue for this to have any effect.
2634 void SetRowLabelValue(int row
, const wxString
& value
);
2637 Sets the minimal row height used by default.
2639 See SetColMinimalAcceptableWidth() for more information.
2641 void SetRowMinimalAcceptableHeight(int height
);
2644 Sets the minimal height for the specified row.
2646 See SetColMinimalWidth() for more information.
2648 void SetRowMinimalHeight(int row
, int height
);
2651 Sets the height of the specified row.
2653 See SetColSize() for more information.
2655 void SetRowSize(int row
, int height
);
2658 Sets the number of pixels per horizontal scroll increment.
2662 @see GetScrollLineX(), GetScrollLineY(), SetScrollLineY()
2664 void SetScrollLineX(int x
);
2667 Sets the number of pixels per vertical scroll increment.
2671 @see GetScrollLineX(), GetScrollLineY(), SetScrollLineX()
2673 void SetScrollLineY(int y
);
2676 Set the colour to be used for drawing the selection background.
2678 void SetSelectionBackground(const wxColour
& c
);
2681 Set the colour to be used for drawing the selection foreground.
2683 void SetSelectionForeground(const wxColour
& c
);
2686 Set the selection behaviour of the grid.
2688 The existing selection is converted to conform to the new mode if
2689 possible and discarded otherwise (e.g. any individual selected cells
2690 are deselected if the new mode allows only the selection of the entire
2693 void SetSelectionMode(wxGridSelectionModes selmode
);
2696 Passes a pointer to a custom grid table to be used by the grid.
2698 This should be called after the grid constructor and before using the
2699 grid object. If @a takeOwnership is set to @true then the table will be
2700 deleted by the wxGrid destructor.
2702 Use this function instead of CreateGrid() when your application
2703 involves complex or non-string data or data sets that are too large to
2704 fit wholly in memory.
2706 bool SetTable(wxGridTableBase
* table
,
2707 bool takeOwnership
= false,
2708 wxGridSelectionModes selmode
= wxGridSelectCells
);
2711 Call this in order to make the column labels use a native look by using
2712 wxRenderer::DrawHeaderButton internally.
2714 There is no equivalent method for drawing row columns as there is not
2715 native look for that. This option is useful when using wxGrid for
2716 displaying tables and not as a spread-sheet.
2718 void SetUseNativeColLabels(bool native
= true);
2721 Displays the in-place cell edit control for the current cell.
2723 void ShowCellEditControl();
2726 Returns the column at the given pixel position.
2729 The x position to evaluate.
2731 If @true, rather than returning wxNOT_FOUND, it returns either the
2732 first or last column depending on whether x is too far to the left
2733 or right respectively.
2735 The column index or wxNOT_FOUND.
2737 int XToCol(int x
, bool clipToMinMax
= false) const;
2740 Returns the column whose right hand edge is close to the given logical
2743 If no column edge is near to this position @c wxNOT_FOUND is returned.
2745 int XToEdgeOfCol(int x
) const;
2748 Returns the row whose bottom edge is close to the given logical y
2751 If no row edge is near to this position @c wxNOT_FOUND is returned.
2753 int YToEdgeOfRow(int y
) const;
2756 Returns the grid row that corresponds to the logical y coordinate.
2758 Returns @c wxNOT_FOUND if there is no row at the y position.
2760 int YToRow(int y
) const;
2766 @class wxGridCellBoolEditor
2768 The editor for boolean data.
2773 @see wxGridCellEditor, wxGridCellFloatEditor, wxGridCellNumberEditor,
2774 wxGridCellTextEditor, wxGridCellChoiceEditor
2776 class wxGridCellBoolEditor
: public wxGridCellEditor
2780 Default constructor.
2782 wxGridCellBoolEditor();
2785 Returns @true if the given @a value is equal to the string representation of
2786 the truth value we currently use (see
2787 wxGridCellBoolEditor::UseStringValues).
2789 static bool IsTrueValue(const wxString
& value
);
2792 , wxString&@e valueFalse = _T(""))
2793 This method allows to customize the values returned by GetValue() method for
2794 the cell using this editor. By default, the default values of the arguments are
2795 used, i.e. @c "1" is returned if the cell is checked and an empty string
2796 otherwise, using this method allows to change this.
2798 static void UseStringValues() const;
2804 @class wxGridUpdateLocker
2806 This small class can be used to prevent wxGrid from redrawing
2807 during its lifetime by calling wxGrid::BeginBatch
2808 in its constructor and wxGrid::EndBatch in its
2809 destructor. It is typically used in a function performing several operations
2810 with a grid which would otherwise result in flicker. For example:
2815 m_grid = new wxGrid(this, ...);
2817 wxGridUpdateLocker noUpdates(m_grid);
2818 m_grid-AppendColumn();
2819 ... many other operations with m_grid...
2822 // destructor called, grid refreshed
2826 Using this class is easier and safer than calling
2827 wxGrid::BeginBatch and wxGrid::EndBatch
2828 because you don't risk not to call the latter (due to an exception for example).
2833 class wxGridUpdateLocker
2837 Creates an object preventing the updates of the specified @e grid. The
2838 parameter could be @NULL in which case nothing is done. If @a grid is
2839 non-@NULL then the grid must exist for longer than wxGridUpdateLocker object
2841 The default constructor could be followed by a call to
2845 wxGridUpdateLocker(wxGrid
* grid
= NULL
);
2848 Destructor reenables updates for the grid this object is associated with.
2850 ~wxGridUpdateLocker();
2853 This method can be called if the object had been constructed using the default
2854 constructor. It must not be called more than once.
2856 void Create(wxGrid
* grid
);