Revitalization of the code, -1->wxID_ANY, TRUE->true and FALSE->false replacements.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27441 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -135,7 +135,7 @@ Clookup::Clookup(wxChar *tblName, wxChar *colName, wxDb *pDb, const wxString &de
|
|||||||
defDir)
|
defDir)
|
||||||
{
|
{
|
||||||
|
|
||||||
SetColDefs (0, colName, DB_DATA_TYPE_VARCHAR, lookupCol, SQL_C_CHAR, LOOKUP_COL_LEN+1, FALSE, FALSE);
|
SetColDefs (0, colName, DB_DATA_TYPE_VARCHAR, lookupCol, SQL_C_CHAR, LOOKUP_COL_LEN+1, false, false);
|
||||||
|
|
||||||
} // Clookup()
|
} // Clookup()
|
||||||
|
|
||||||
@@ -153,10 +153,10 @@ Clookup2::Clookup2(wxChar *tblName, wxChar *colName1, wxChar *colName2,
|
|||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
SetColDefs (i, colName1, DB_DATA_TYPE_VARCHAR, lookupCol1, SQL_C_CHAR, LOOKUP_COL_LEN+1, FALSE, FALSE);
|
SetColDefs (i, colName1, DB_DATA_TYPE_VARCHAR, lookupCol1, SQL_C_CHAR, LOOKUP_COL_LEN+1, false, false);
|
||||||
|
|
||||||
if (wxStrlen(colName2) > 0)
|
if (wxStrlen(colName2) > 0)
|
||||||
SetColDefs (++i, colName2, DB_DATA_TYPE_VARCHAR, lookupCol2, SQL_C_CHAR, LOOKUP_COL_LEN+1, FALSE, FALSE);
|
SetColDefs (++i, colName2, DB_DATA_TYPE_VARCHAR, lookupCol2, SQL_C_CHAR, LOOKUP_COL_LEN+1, false, false);
|
||||||
|
|
||||||
} // Clookup2()
|
} // Clookup2()
|
||||||
|
|
||||||
@@ -172,12 +172,12 @@ END_EVENT_TABLE()
|
|||||||
ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
||||||
wxChar *colName, wxChar *where, wxChar *orderBy,
|
wxChar *colName, wxChar *where, wxChar *orderBy,
|
||||||
wxDb *pDb, const wxString &defDir)
|
wxDb *pDb, const wxString &defDir)
|
||||||
: wxDialog (parent, LOOKUP_DIALOG, wxT("Select..."), wxPoint(-1, -1), wxSize(400, 290))
|
: wxDialog (parent, LOOKUP_DIALOG, wxT("Select..."), wxDefaultPosition, wxSize(400, 290))
|
||||||
{
|
{
|
||||||
wxBeginBusyCursor();
|
wxBeginBusyCursor();
|
||||||
|
|
||||||
wxStrcpy(ListDB_Selection,wxT(""));
|
wxStrcpy(ListDB_Selection,wxT(""));
|
||||||
widgetPtrsSet = FALSE;
|
widgetPtrsSet = false;
|
||||||
lookup = 0;
|
lookup = 0;
|
||||||
lookup2 = 0;
|
lookup2 = 0;
|
||||||
noDisplayCols = 1;
|
noDisplayCols = 1;
|
||||||
@@ -187,7 +187,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
pLookUpOkBtn = new wxButton(this, LOOKUP_DIALOG_OK, wxT("&Ok"), wxPoint(113, 222), wxSize( 70, 35), 0, wxDefaultValidator, wxT("LookUpOkBtn"));
|
pLookUpOkBtn = new wxButton(this, LOOKUP_DIALOG_OK, wxT("&Ok"), wxPoint(113, 222), wxSize( 70, 35), 0, wxDefaultValidator, wxT("LookUpOkBtn"));
|
||||||
pLookUpCancelBtn = new wxButton(this, LOOKUP_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(212, 222), wxSize( 70, 35), 0, wxDefaultValidator, wxT("LookUpCancelBtn"));
|
pLookUpCancelBtn = new wxButton(this, LOOKUP_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(212, 222), wxSize( 70, 35), 0, wxDefaultValidator, wxT("LookUpCancelBtn"));
|
||||||
|
|
||||||
widgetPtrsSet = TRUE;
|
widgetPtrsSet = true;
|
||||||
|
|
||||||
// Query the lookup table and display the result set
|
// Query the lookup table and display the result set
|
||||||
lookup = new Clookup(tableName, colName, pDb, defDir);
|
lookup = new Clookup(tableName, colName, pDb, defDir);
|
||||||
@@ -229,7 +229,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
pLookUpCancelBtn->SetDefault();
|
pLookUpCancelBtn->SetDefault();
|
||||||
pLookUpOkBtn->Enable(FALSE);
|
pLookUpOkBtn->Enable(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Display the dialog window
|
// Display the dialog window
|
||||||
@@ -248,7 +248,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
// 1) 2 columns rather than one
|
// 1) 2 columns rather than one
|
||||||
// 2) The ability to select DISTINCT column values
|
// 2) The ability to select DISTINCT column values
|
||||||
//
|
//
|
||||||
// Only set distinctValues equal to TRUE if necessary. In many cases, the constraints
|
// Only set distinctValues equal to true if necessary. In many cases, the constraints
|
||||||
// of the index(es) will enforce this uniqueness. Selecting DISTINCT does require
|
// of the index(es) will enforce this uniqueness. Selecting DISTINCT does require
|
||||||
// overhead by the database to ensure that all values returned are distinct. Therefore,
|
// overhead by the database to ensure that all values returned are distinct. Therefore,
|
||||||
// use this ONLY when you need it.
|
// use this ONLY when you need it.
|
||||||
@@ -269,13 +269,13 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
wxChar *dispCol1, wxChar *dispCol2, wxChar *where, wxChar *orderBy,
|
wxChar *dispCol1, wxChar *dispCol2, wxChar *where, wxChar *orderBy,
|
||||||
wxDb *pDb, const wxString &defDir, bool distinctValues,
|
wxDb *pDb, const wxString &defDir, bool distinctValues,
|
||||||
wxChar *selectStmt, int maxLenCol1, bool allowOk)
|
wxChar *selectStmt, int maxLenCol1, bool allowOk)
|
||||||
: wxDialog (parent, LOOKUP_DIALOG, wxT("Select..."), wxPoint(-1, -1), wxSize(400, 290))
|
: wxDialog (parent, LOOKUP_DIALOG, wxT("Select..."), wxDefaultPosition, wxSize(400, 290))
|
||||||
{
|
{
|
||||||
wxBeginBusyCursor();
|
wxBeginBusyCursor();
|
||||||
|
|
||||||
wxStrcpy(ListDB_Selection,wxT(""));
|
wxStrcpy(ListDB_Selection,wxT(""));
|
||||||
wxStrcpy(ListDB_Selection2,wxT(""));
|
wxStrcpy(ListDB_Selection2,wxT(""));
|
||||||
widgetPtrsSet = FALSE;
|
widgetPtrsSet = false;
|
||||||
lookup = 0;
|
lookup = 0;
|
||||||
lookup2 = 0;
|
lookup2 = 0;
|
||||||
noDisplayCols = (wxStrlen(dispCol2) ? 2 : 1);
|
noDisplayCols = (wxStrlen(dispCol2) ? 2 : 1);
|
||||||
@@ -292,7 +292,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
pLookUpOkBtn = new wxButton(this, LOOKUP_DIALOG_OK, wxT("&Ok"), wxPoint(113, 222), wxSize(70, 35), 0, wxDefaultValidator, wxT("LookUpOkBtn"));
|
pLookUpOkBtn = new wxButton(this, LOOKUP_DIALOG_OK, wxT("&Ok"), wxPoint(113, 222), wxSize(70, 35), 0, wxDefaultValidator, wxT("LookUpOkBtn"));
|
||||||
pLookUpCancelBtn = new wxButton(this, LOOKUP_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(212, 222), wxSize(70, 35), 0, wxDefaultValidator, wxT("LookUpCancelBtn"));
|
pLookUpCancelBtn = new wxButton(this, LOOKUP_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(212, 222), wxSize(70, 35), 0, wxDefaultValidator, wxT("LookUpCancelBtn"));
|
||||||
|
|
||||||
widgetPtrsSet = TRUE;
|
widgetPtrsSet = true;
|
||||||
|
|
||||||
// Query the lookup table and display the result set
|
// Query the lookup table and display the result set
|
||||||
lookup2 = new Clookup2(tableName, dispCol1, dispCol2, pDb, defDir);
|
lookup2 = new Clookup2(tableName, dispCol1, dispCol2, pDb, defDir);
|
||||||
@@ -359,7 +359,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
{
|
{
|
||||||
lookup2->SetOrderByClause(orderBy);
|
lookup2->SetOrderByClause(orderBy);
|
||||||
lookup2->SetWhereClause(where);
|
lookup2->SetWhereClause(where);
|
||||||
if (!lookup2->Query(FALSE, distinctValues))
|
if (!lookup2->Query(false, distinctValues))
|
||||||
{
|
{
|
||||||
wxMessageBox(wxT("ODBC error during Query()"),wxT("ODBC Error..."));
|
wxMessageBox(wxT("ODBC error during Query()"),wxT("ODBC Error..."));
|
||||||
Close();
|
Close();
|
||||||
@@ -389,7 +389,7 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
pLookUpCancelBtn->SetDefault();
|
pLookUpCancelBtn->SetDefault();
|
||||||
pLookUpOkBtn->Enable(FALSE);
|
pLookUpOkBtn->Enable(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
pLookUpOkBtn->Enable(allowOk);
|
pLookUpOkBtn->Enable(allowOk);
|
||||||
@@ -405,8 +405,8 @@ ClookUpDlg::ClookUpDlg(wxWindow *parent, wxChar *windowTitle, wxChar *tableName,
|
|||||||
|
|
||||||
void ClookUpDlg::OnClose(wxCloseEvent& event)
|
void ClookUpDlg::OnClose(wxCloseEvent& event)
|
||||||
{
|
{
|
||||||
widgetPtrsSet = FALSE;
|
widgetPtrsSet = false;
|
||||||
GetParent()->Enable(TRUE);
|
GetParent()->Enable(true);
|
||||||
|
|
||||||
if (lookup)
|
if (lookup)
|
||||||
delete lookup;
|
delete lookup;
|
||||||
@@ -418,7 +418,7 @@ void ClookUpDlg::OnClose(wxCloseEvent& event)
|
|||||||
while (wxIsBusy()) wxEndBusyCursor();
|
while (wxIsBusy()) wxEndBusyCursor();
|
||||||
event.Skip();
|
event.Skip();
|
||||||
|
|
||||||
// return TRUE;
|
// return true;
|
||||||
|
|
||||||
} // ClookUpDlg::OnClose
|
} // ClookUpDlg::OnClose
|
||||||
|
|
||||||
|
@@ -84,7 +84,7 @@ class ClookUpDlg : public wxDialog
|
|||||||
// 1) 2 columns rather than one
|
// 1) 2 columns rather than one
|
||||||
// 2) The ability to select DISTINCT column values
|
// 2) The ability to select DISTINCT column values
|
||||||
//
|
//
|
||||||
// Only set distinctValues equal to TRUE if necessary. In many cases, the constraints
|
// Only set distinctValues equal to true if necessary. In many cases, the constraints
|
||||||
// of the index(es) will enforce this uniqueness. Selecting DISTINCT does require
|
// of the index(es) will enforce this uniqueness. Selecting DISTINCT does require
|
||||||
// overhead by the database to ensure that all values returned are distinct. Therefore,
|
// overhead by the database to ensure that all values returned are distinct. Therefore,
|
||||||
// use this ONLY when you need it.
|
// use this ONLY when you need it.
|
||||||
@@ -113,7 +113,7 @@ class ClookUpDlg : public wxDialog
|
|||||||
bool distinctValues, // e.g. SELECT DISTINCT ...
|
bool distinctValues, // e.g. SELECT DISTINCT ...
|
||||||
wxChar *selectStmt = 0, // If you wish to query by SQLstmt (complicated lookups)
|
wxChar *selectStmt = 0, // If you wish to query by SQLstmt (complicated lookups)
|
||||||
int maxLenCol1 = 0, // Mandatory if querying by SQLstmt
|
int maxLenCol1 = 0, // Mandatory if querying by SQLstmt
|
||||||
bool allowOk = TRUE); // is the OK button enabled
|
bool allowOk = true); // is the OK button enabled
|
||||||
|
|
||||||
void OnButton( wxCommandEvent &event );
|
void OnButton( wxCommandEvent &event );
|
||||||
void OnCommand(wxWindow& win, wxCommandEvent& event);
|
void OnCommand(wxWindow& win, wxCommandEvent& event);
|
||||||
|
Reference in New Issue
Block a user