]>
git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dbgrid.cpp
1 //----------------------------------------------------------------------------------------
3 // Purpose: wxGrid sample
4 // Author: Mark Johnson
5 // Modified by: 19990929.mj10777 a reuseable DBGrid
8 // Licence: wxWindows license
10 //----------------------------------------------------------------------------------------
11 //-- all #ifdefs that the whole Project needs. -------------------------------------------
12 //----------------------------------------------------------------------------------------
14 #pragma implementation
17 //----------------------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx/wx.h".
19 #include "wx/wxprec.h"
20 //----------------------------------------------------------------------------------------
24 //----------------------------------------------------------------------------------------
28 //----------------------------------------------------------------------------------------
29 //-- all #includes that every .cpp needs --- 19990807.mj10777 ----------------
30 //----------------------------------------------------------------------------------------
31 #include "std.h" // sorgsam Pflegen !
32 //----------------------------------------------------------------------------------------
33 BEGIN_EVENT_TABLE(DBGrid
, wxGrid
)
34 EVT_MOTION (DBGrid::OnMouseMove
)
37 EVT_GRID_CELL_CHANGE( DBGrid::OnCellChange
)
38 EVT_GRID_CELL_LEFT_CLICK( DBGrid::OnCellLeftClick
)
39 EVT_GRID_CELL_LEFT_DCLICK( DBGrid::OnCellLeftDClick
)
40 EVT_GRID_CELL_RIGHT_CLICK( DBGrid::OnCellRightClick
)
41 EVT_GRID_CELL_RIGHT_DCLICK( DBGrid::OnCellRightDClick
)
42 // EVT_GRID_COL_SIZE( DBGrid::OnColSize )
43 // EVT_GRID_ROW_SIZE( DBGrid::OnRowSize )
44 EVT_GRID_EDITOR_SHOWN( DBGrid::OnEditorShown
)
45 EVT_GRID_EDITOR_HIDDEN( DBGrid::OnEditorHidden
)
46 EVT_GRID_LABEL_LEFT_CLICK( DBGrid::OnLabelLeftClick
)
47 EVT_GRID_LABEL_LEFT_DCLICK( DBGrid::OnLabelLeftDClick
)
48 EVT_GRID_LABEL_RIGHT_CLICK( DBGrid::OnLabelRightClick
)
49 EVT_GRID_LABEL_RIGHT_DCLICK( DBGrid::OnLabelRightDClick
)
50 EVT_GRID_RANGE_SELECT( DBGrid::OnRangeSelected
)
51 EVT_GRID_ROW_SIZE( DBGrid::OnRowSize
)
52 EVT_GRID_SELECT_CELL( DBGrid::OnSelectCell
)
53 EVT_MENU(GRID_EDIT
,DBGrid::OnModusEdit
)
54 EVT_MENU(GRID_BROWSE
,DBGrid::OnModusBrowse
)
56 //----------------------------------------------------------------------------------------
57 // wxListCtrl(parent, id, pos, size, style)
58 // wxGrid(parent,-1,wxPoint( 0, 0 ), wxSize( 400, 300 ) );
59 //----------------------------------------------------------------------------------------
61 //----------------------------------------------------------------------------------------
62 // DBGrid::DBGrid(wxWindow *parent, const wxWindowID id,const wxPoint& pos,const wxSize& size):
63 // wxGrid(parent, id, pos, size)
64 DBGrid::DBGrid(wxWindow
*parent
, const wxWindowID id
,const wxPoint
& pos
,const wxSize
& size
, long style
):
65 wxGrid(parent
, id
, pos
, size
, style
)
68 //---------------------------------------------------------------------------------------
69 popupMenu1
= new wxMenu("");
70 popupMenu1
->Append(GRID_EDIT
, _("Edit Modus"));
71 popupMenu2
= new wxMenu("");
72 popupMenu2
->Append(GRID_BROWSE
, _("Browse Modus"));
74 //----------------------------------------------------------------------------------------
80 //----------------------------------------------------------------------------------------
81 int DBGrid::OnTableView(wxString Table
)
84 //---------------------------------------------------------------------------------------
85 int i
=0,x
,y
,z
, ValidTable
=0;
88 SetDefaultCellFont(* pDoc
->ft_Doc
);
89 //---------------------------------------------------------------------------------------
90 ct_BrowserDB
= (db_Br
+i_Which
)->ct_BrowserDB
; // Get the DSN Pointer
91 //---------------------------------------------------------------------------------------
92 if (ct_BrowserDB
) // Valid pointer (!= NULL) ?
93 { // Pointer is Valid, use the wxDatabase Information
94 for (x
=0;x
<ct_BrowserDB
->numTables
;x
++) // go through the Tables
96 if (!wxStrcmp((ct_BrowserDB
->pTableInf
+x
)->tableName
,Table
)) // is this our Table ?
97 { // Yes, the Data of this Table shall be put into the Grid
98 ValidTable
= x
; // Save the Tablenumber
99 (db_Br
+i_Which
)->OnSelect(Table
,FALSE
); // Select * from "table"
100 // Set the local Pointer to the Column Information we are going to use
101 (db_Br
+i_Which
)->cl_BrowserDB
= (ct_BrowserDB
->pTableInf
+x
)->pColInf
;
102 if ((ct_BrowserDB
->pTableInf
+x
)->pColInf
) // Valid pointer (!= NULL) ?
103 { // Pointer is Valid, Column Informationen sind Vorhanden
104 i
= (db_Br
+i_Which
)->i_Records
; // How many Records are there
105 (db_Br
+i_Which
)->i_Which
= ValidTable
; // Still used ???? mj10777
106 if (i
== 0) // If the Table is empty, then show one empty row
108 // wxLogMessage(_("\n-I-> DBGrid::OnTableView() : Vor CreateGrid"));
109 CreateGrid(i
,(ct_BrowserDB
->pTableInf
+x
)->numCols
); // Records , Columns
110 for (y
=0;y
<(ct_BrowserDB
->pTableInf
+x
)->numCols
;y
++) // Loop through the Fields
111 { // The Field / Column name is used here as Row Titel
112 SetColLabelValue(y
,((ct_BrowserDB
->pTableInf
+x
)->pColInf
+y
)->colName
);
114 } // for (y=0;y<(ct_BrowserDB->pTableInf+x)->numCols;y++)
115 SetColSize(((ct_BrowserDB
->pTableInf
+x
)->numCols
-1),120); // Make the last Column Wider
116 // The Grid has been created, now fill it
117 for (z
=0;z
<(db_Br
+i_Which
)->i_Records
;z
++) // Loop through the Records
119 Temp0
.Printf("%06d",z
+1); SetRowLabelValue(z
,Temp0
); // Set Row Lable Value
120 (db_Br
+i_Which
)->OnGetNext((ct_BrowserDB
->pTableInf
+ValidTable
)->numCols
,FALSE
);
121 for (y
=0;y
<(ct_BrowserDB
->pTableInf
+ValidTable
)->numCols
;y
++) // Loop through the Fields
122 { // BrowserDB::OnGetNext Formats the field Value into tablename
123 SetCellValue(z
, y
,((db_Br
+i_Which
)->cl_BrowserDB
+y
)->tableName
);
127 Temp0
.Printf(_("-I-> DBGrid::OnTableView(%s) - Record %6d (from %d) has been read."),Table
.c_str(),z
,(db_Br
+i_Which
)->i_Records
);
128 pDoc
->p_MainFrame
->SetStatusText(Temp0
, 0);
130 } // for (z=0;z<(db_Br+i_Which)->i_Records;z++)
131 Temp0
.Printf(_("-I-> DBGrid::OnTableView(%s) - %6d Records have been read. - Time needed : %ld ms"),Table
.c_str(),z
,sw
.Time());
133 pDoc
->p_MainFrame
->SetStatusText(Temp0
, 0);
134 // The Grid has been filled, now leave
136 } // if ((ct_BrowserDB->pTableInf+x)->pColInf)
138 wxLogMessage(_("\n-E-> DBGrid::OnTableView() : Invalid Column Pointer : Failed"));
139 } // if ((ct_BrowserDB->pTableInf+x)->tableType == "TABLE")
140 } // for (x=0;x<ct_BrowserDB->numTables;x++)
141 } // if (ct_BrowserDB)
143 wxLogMessage(_("\n-E-> DBGrid::OnTableView() : Invalid DSN Pointer : Failed"));
144 //---------------------------------------------------------------------------------------
146 EnableEditing(b_EditModus
); // Deactivate in-place Editing
148 //---------------------------------------------------------------------------------------
149 wxLogMessage(_("-I-> DBGrid::OnTableView() - End"));
152 //----------------------------------------------------------------------------------------
153 void DBGrid::OnModusEdit(wxCommandEvent
& event
)
155 b_EditModus
= TRUE
; // Needed by PopupMenu
156 EnableEditing(b_EditModus
); // Activate in-place Editing
157 UpdateDimensions(); // Redraw the Grid
158 // wxLogMessage(_("-I-> DBGrid::OnModusEdit() - End"));
160 //----------------------------------------------------------------------------------------
161 void DBGrid::OnModusBrowse(wxCommandEvent
& event
)
163 b_EditModus
= FALSE
; // Needed by PopupMenu
164 EnableEditing(b_EditModus
); // Deactivate in-place Editing
165 UpdateDimensions(); // Redraw the Grid
166 // wxLogMessage(_("-I-> DBGrid::OnModusBrowse() - End"));
168 //----------------------------------------------------------------------------------------
169 void DBGrid::OnEditorShown( wxGridEvent
& ev
)
171 // wxLogMessage(_("-I-> DBGrid::OnEditorShown() - End"));
174 //----------------------------------------------------------------------------------------
175 void DBGrid::OnEditorHidden( wxGridEvent
& ev
)
177 // wxLogMessage(_("-I-> DBGrid::OnEditorHidden() - End"));
180 void DBGrid::OnSelectCell( wxGridEvent
& ev
)
183 logBuf
<< "Selected cell at row " << ev
.GetRow()
184 << " col " << ev
.GetCol();
185 wxLogMessage( "%s", logBuf
.c_str() );
186 // you must call Skip() if you want the default processing
187 // to occur in wxGrid
190 //----------------------------------------------------------------------------------------
191 void DBGrid::OnMouseMove(wxMouseEvent
&event
)
193 MousePos
= event
.GetPosition();
195 //----------------------------------------------------------------------------------------
196 void DBGrid::OnLabelLeftClick( wxGridEvent
& ev
)
198 logBuf
= "DBGrid::OnLabelLeftClick : ";
199 if ( ev
.GetRow() != -1 )
201 logBuf
<< "row label " << ev
.GetRow();
203 else if ( ev
.GetCol() != -1 )
205 logBuf
<< "col label " << ev
.GetCol();
209 logBuf
<< "corner label";
211 if ( ev
.ShiftDown() )
212 logBuf
<< " (shift down)";
213 // wxLogMessage( "%s", logBuf.c_str() );
215 wxLogMessage(logBuf
.c_str());
218 //----------------------------------------------------------------------------------------
219 void DBGrid::OnLabelRightClick( wxGridEvent
& ev
)
221 //-------------------------------------------------------
223 PopupMenu(popupMenu2
,MousePos
.x
,MousePos
.y
);
225 PopupMenu(popupMenu1
,MousePos
.x
,MousePos
.y
);
226 //-------------------
227 logBuf
= "DBGrid::OnLabelRightClick : ";
228 if ( ev
.GetRow() != -1 )
230 logBuf
<< "row label " << ev
.GetRow();
232 else if ( ev
.GetCol() != -1 )
234 logBuf
<< "col label " << ev
.GetCol();
238 logBuf
<< "corner label";
240 if ( ev
.ShiftDown() )
241 logBuf
<< " (shift down)";
242 // wxLogMessage( "%s", logBuf.c_str() );
244 wxLogMessage(logBuf
.c_str());
247 //----------------------------------------------------------------------------------------
248 void DBGrid::OnLabelLeftDClick( wxGridEvent
& ev
)
250 logBuf
= "DBGrid::OnLabelLeftDClick : ";
251 if ( ev
.GetRow() != -1 )
253 logBuf
<< "row label " << ev
.GetRow();
255 else if ( ev
.GetCol() != -1 )
257 logBuf
<< "col label " << ev
.GetCol();
261 logBuf
<< "corner label";
263 if ( ev
.ShiftDown() )
264 logBuf
<< " (shift down)";
265 // wxLogMessage( "%s", logBuf.c_str() );
267 wxLogMessage(logBuf
.c_str());
270 //----------------------------------------------------------------------------------------
271 void DBGrid::OnLabelRightDClick( wxGridEvent
& ev
)
273 logBuf
= "DBGrid::OnLabelRightDClick : ";
274 if ( ev
.GetRow() != -1 )
276 logBuf
<< "row label " << ev
.GetRow();
278 else if ( ev
.GetCol() != -1 )
280 logBuf
<< "col label " << ev
.GetCol();
284 logBuf
<< "corner label";
286 if ( ev
.ShiftDown() )
287 logBuf
<< " (shift down)";
288 // wxLogMessage( "%s", logBuf.c_str() );
290 wxLogMessage(logBuf
.c_str());
293 //----------------------------------------------------------------------------------------
294 void DBGrid::OnCellLeftClick( wxGridEvent
& ev
)
296 logBuf
= "DBGrid::OnCellLeftClick : ";
297 logBuf
<< "Cell at row " << ev
.GetRow()
298 << " col " << ev
.GetCol();
299 // wxLogMessage( "%s", logBuf.c_str() );
300 // wxMessageBox(logBuf);
302 wxLogMessage(logBuf
.c_str());
303 // you must call event skip if you want default grid processing
304 // (cell highlighting etc.)
308 //----------------------------------------------------------------------------------------
309 void DBGrid::OnCellRightClick( wxGridEvent
& ev
)
311 logBuf
= "DBGrid::OnCellRightClick : ";
312 logBuf
<< "Cell at row " << ev
.GetRow()
313 << " col " << ev
.GetCol();
314 // wxLogMessage( "%s", logBuf.c_str() );
315 // wxMessageBox(logBuf);
317 wxLogMessage(logBuf
.c_str());
318 // you must call event skip if you want default grid processing
319 // (cell highlighting etc.)
323 //----------------------------------------------------------------------------------------
324 void DBGrid::OnCellLeftDClick( wxGridEvent
& ev
)
326 logBuf
= "DBGrid::OnCellLeftDClick : ";
327 logBuf
<< "Cell at row " << ev
.GetRow()
328 << " col " << ev
.GetCol();
329 // wxLogMessage( "%s", logBuf.c_str() );
330 // wxMessageBox(logBuf);
332 wxLogMessage(logBuf
.c_str());
333 // you must call event skip if you want default grid processing
334 // (cell highlighting etc.)
338 //----------------------------------------------------------------------------------------
339 void DBGrid::OnCellRightDClick( wxGridEvent
& ev
)
341 logBuf
= "DBGrid::OnCellRightDClick : ";
342 logBuf
<< "Cell at row " << ev
.GetRow()
343 << " col " << ev
.GetCol();
344 // wxLogMessage( "%s", logBuf.c_str() );
345 // wxMessageBox(logBuf);
347 wxLogMessage(logBuf
.c_str());
348 // you must call event skip if you want default grid processing
349 // (cell highlighting etc.)
353 //----------------------------------------------------------------------------------------
354 void DBGrid::OnCellChange( wxGridEvent
& ev
)
356 logBuf
= "DBGrid::OnCellChange : ";
357 logBuf
<< "Cell at row " << ev
.GetRow()
358 << " col " << ev
.GetCol();
359 // wxLogMessage( "%s", logBuf.c_str() );
360 // wxMessageBox(logBuf);
362 wxLogMessage(logBuf
.c_str());
363 // you must call event skip if you want default grid processing
364 // (cell highlighting etc.)
368 //----------------------------------------------------------------------------------------
369 void DBGrid::OnRowSize( wxGridSizeEvent
& ev
)
371 logBuf
= "DBGrid::OnRowSize : ";
372 logBuf
<< "Resized row " << ev
.GetRowOrCol();
373 // wxLogMessage( "%s", logBuf.c_str() );
375 wxLogMessage(logBuf
.c_str());
378 //----------------------------------------------------------------------------------------
379 void DBGrid::OnColSize( wxGridSizeEvent
& ev
)
381 logBuf
= "DBGrid::OnColSize : ";
382 logBuf
<< "Resized col " << ev
.GetRowOrCol();
383 // wxLogMessage( "%s", logBuf.c_str() );
385 wxLogMessage(logBuf
.c_str());
388 //----------------------------------------------------------------------------------------
389 void DBGrid::OnRangeSelected( wxGridRangeSelectEvent
& ev
)
391 logBuf
= "DBGrid::OnRangeSelected : ";
392 logBuf
<< "Selected cells from row " << ev
.GetTopRow()
393 << " col " << ev
.GetLeftCol()
394 << " to row " << ev
.GetBottomRow()
395 << " col " << ev
.GetRightCol();
397 // wxLogMessage( "%s", logBuf.c_str() );
398 wxLogMessage(logBuf
.c_str());
401 //----------------------------------------------------------------------------------------