projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
added carbonaccessors.o
[wxWidgets.git]
/
include
/
wx
/
dbgrid.h
diff --git
a/include/wx/dbgrid.h
b/include/wx/dbgrid.h
index 60f9ca0816710dc7abb3352c555c85f4d215ff8a..a55ccfdcad2149d1dd342afc77823399176e05fa 100644
(file)
--- a/
include/wx/dbgrid.h
+++ b/
include/wx/dbgrid.h
@@
-3,7
+3,7
@@
// Purpose: Displays a wxDbTable in a wxGrid.
// Author: Roger Gammans, Paul Gammans
// Modified by:
// Purpose: Displays a wxDbTable in a wxGrid.
// Author: Roger Gammans, Paul Gammans
// Modified by:
-// Created:
+// Created:
// RCS-ID: $Id$
// Copyright: (c) 1999 The Computer Surgery (roger@computer-surgery.co.uk)
// Licence: wxWindows licence
// RCS-ID: $Id$
// Copyright: (c) 1999 The Computer Surgery (roger@computer-surgery.co.uk)
// Licence: wxWindows licence
@@
-49,11
+49,11
@@
public:
{
DbCol = ref.DbCol;
wxtypename = ref.wxtypename;
{
DbCol = ref.DbCol;
wxtypename = ref.wxtypename;
- Title = ref.Title;
+ Title = ref.Title;
}
//Empty destructor for member obj's
~wxDbGridColInfoBase() {}
}
//Empty destructor for member obj's
~wxDbGridColInfoBase() {}
-
+
int DbCol;
wxString wxtypename;
wxString Title;
int DbCol;
wxString wxtypename;
wxString Title;
@@
-106,18
+106,18
@@
class wxDbGridTableBase : public wxGridTableBase
{
public:
wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo *ColInfo,
{
public:
wxDbGridTableBase(wxDbTable *tab, wxDbGridColInfo *ColInfo,
- int count = wxUSE_QUERY, bool takeOwnership =
true
);
+ int count = wxUSE_QUERY, bool takeOwnership =
TRUE
);
~wxDbGridTableBase();
virtual int GetNumberRows()
{
wxLogDebug(" GetNumberRows() = %i",m_rowtotal);
~wxDbGridTableBase();
virtual int GetNumberRows()
{
wxLogDebug(" GetNumberRows() = %i",m_rowtotal);
- return m_rowtotal;
+ return m_rowtotal;
}
virtual int GetNumberCols()
}
virtual int GetNumberCols()
- {
+ {
wxLogDebug(" GetNumberCols() = %i",m_nocols);
wxLogDebug(" GetNumberCols() = %i",m_nocols);
- return m_nocols;
+ return m_nocols;
}
virtual bool IsEmptyCell(int row, int col) ;
virtual wxString GetValue(int row, int col) ;
}
virtual bool IsEmptyCell(int row, int col) ;
virtual wxString GetValue(int row, int col) ;
@@
-138,16
+138,16
@@
public:
virtual wxString wxDbGridTableBase::GetColLabelValue(int col);
virtual wxString wxDbGridTableBase::GetColLabelValue(int col);
- virtual bool AssignDbTable(wxDbTable *tab, int count = wxUSE_QUERY, bool takeOwnership=
true
);
+ virtual bool AssignDbTable(wxDbTable *tab, int count = wxUSE_QUERY, bool takeOwnership=
TRUE
);
virtual void ValidateRow(int row);
virtual bool UpdateRow(int row) const
{
if (m_row != row)
virtual void ValidateRow(int row);
virtual bool UpdateRow(int row) const
{
if (m_row != row)
- return
true
;
- else
+ return
TRUE
;
+ else
return Writeback();
}
return Writeback();
}
-
+
private:
//Operates on the current row
bool Writeback() const;
private:
//Operates on the current row
bool Writeback() const;
@@
-166,4
+166,4
@@
private:
#endif // #if wxUSE_NEW_GRID
#endif // #if wxUSE_ODBC
#endif // #if wxUSE_NEW_GRID
#endif // #if wxUSE_ODBC
-#endif _WX_GENERIC_DBGRID_H_
+#endif
//
_WX_GENERIC_DBGRID_H_