2008-02-19 00:04:03 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-02-24 17:26:29 +00:00
|
|
|
// Name: grid.h
|
2008-02-19 00:04:03 +00:00
|
|
|
// Purpose: topic overview
|
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-03-12 08:50:42 +00:00
|
|
|
/**
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-03-12 08:50:42 +00:00
|
|
|
@page overview_grid wxGrid Overview
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-25 22:29:37 +00:00
|
|
|
Classes: wxGrid
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
@li @ref overview_grid_intro
|
|
|
|
@li @ref overview_grid_simpleexample
|
|
|
|
@li @ref overview_grid_complexexample
|
|
|
|
@li @ref overview_grid_classrelations
|
|
|
|
@li @ref overview_grid_keyboardmouse
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
|
|
|
|
@section overview_grid_intro Introduction
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
wxGrid and its related classes are used for displaying and editing tabular data.
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
|
|
|
|
@section overview_grid_simpleexample Getting started: a simple example
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
For simple applications you need only refer to the wxGrid class in your
|
2008-02-24 17:26:29 +00:00
|
|
|
code. This example shows how you might create a grid in a frame or
|
2008-02-19 13:28:24 +00:00
|
|
|
dialog constructor and illustrates some of the formatting functions.
|
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
@code
|
2008-02-24 17:26:29 +00:00
|
|
|
// Create a wxGrid object
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
grid = new wxGrid( this,
|
|
|
|
-1,
|
|
|
|
wxPoint( 0, 0 ),
|
|
|
|
wxSize( 400, 300 ) );
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
// Then we call CreateGrid to set the dimensions of the grid
|
|
|
|
// (100 rows and 10 columns in this example)
|
2008-03-02 15:18:23 +00:00
|
|
|
grid->CreateGrid( 100, 10 );
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
// We can set the sizes of individual rows and columns
|
|
|
|
// in pixels
|
2008-03-02 15:18:23 +00:00
|
|
|
grid->SetRowSize( 0, 60 );
|
|
|
|
grid->SetColSize( 0, 120 );
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
// And set grid cell contents as strings
|
2008-03-02 15:18:23 +00:00
|
|
|
grid->SetCellValue( 0, 0, "wxGrid is good" );
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-03-02 15:18:23 +00:00
|
|
|
// We can specify that some cells are read->only
|
|
|
|
grid->SetCellValue( 0, 3, "This is read->only" );
|
|
|
|
grid->SetReadOnly( 0, 3 );
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
// Colours can be specified for grid cell contents
|
2008-03-02 15:18:23 +00:00
|
|
|
grid->SetCellValue(3, 3, "green on grey");
|
|
|
|
grid->SetCellTextColour(3, 3, *wxGREEN);
|
|
|
|
grid->SetCellBackgroundColour(3, 3, *wxLIGHT_GREY);
|
2008-02-19 13:28:24 +00:00
|
|
|
|
|
|
|
// We can specify the some cells will store numeric
|
|
|
|
// values rather than strings. Here we set grid column 5
|
|
|
|
// to hold floating point values displayed with width of 6
|
2008-02-19 00:04:03 +00:00
|
|
|
// and precision of 2
|
2008-03-02 15:18:23 +00:00
|
|
|
grid->SetColFormatFloat(5, 6, 2);
|
|
|
|
grid->SetCellValue(0, 6, "3.1415");
|
2008-02-19 00:04:03 +00:00
|
|
|
@endcode
|
2008-02-19 13:28:24 +00:00
|
|
|
|
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
@section overview_grid_complexexample A more complex example
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
Yet to be written
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
|
|
|
|
@section overview_grid_classrelations How the wxGrid classes relate to each other
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-19 00:04:03 +00:00
|
|
|
Yet to be written
|
2008-02-19 13:28:24 +00:00
|
|
|
|
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
@section overview_grid_keyboardmouse Keyboard and mouse actions
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
Yet to be written
|
2008-02-19 13:28:24 +00:00
|
|
|
|
2008-02-24 17:26:29 +00:00
|
|
|
*/
|
2008-02-19 13:28:24 +00:00
|
|
|
|