]> git.saurik.com Git - wxWidgets.git/blame - samples/db/listdb.h
updated code to not use deprecated methods
[wxWidgets.git] / samples / db / listdb.h
CommitLineData
108106cf
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: listdb.h
3// Purpose: wxWindows database demo app
4// Author: George Tasker
5// Modified by:
6// Created: 1996
7// RCS-ID: $Id$
8// Copyright: (c) 1996 Remstar International, Inc.
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
1fc5dd6f 12#ifdef __GNUG__
108106cf 13#pragma interface "listdb.h"
1fc5dd6f 14#endif
108106cf
JS
15
16/*
e70e8f4c 17 Contains dialog class for creating a data table lookup listbox
108106cf
JS
18*/
19
20#ifndef LISTDB_DOT_H
21#define LISTDB_DOT_H
22
23
fb86524f 24#include "wx/dbtable.h"
108106cf 25
5b077d48 26const int LOOKUP_COL_LEN = 250;
108106cf 27
108106cf 28// Clookup class
f6bcfd97 29class Clookup : public wxDbTable
108106cf 30{
e70e8f4c 31 public:
108106cf 32
94613352 33 wxChar lookupCol[LOOKUP_COL_LEN+1];
108106cf 34
049977d0 35 Clookup(wxChar *tblName, wxChar *colName, wxDb *pDb, const wxString &defDir="");
108106cf
JS
36
37}; // Clookup
38
049977d0 39
108106cf 40// Clookup2 class
f6bcfd97 41class Clookup2 : public wxDbTable
108106cf 42{
e70e8f4c 43 public:
108106cf 44
94613352
GT
45 wxChar lookupCol1[LOOKUP_COL_LEN+1];
46 wxChar lookupCol2[LOOKUP_COL_LEN+1];
108106cf 47
049977d0 48 Clookup2(wxChar *tblName, wxChar *colName1, wxChar *colName2, wxDb *pDb, const wxString &defDir="");
108106cf
JS
49
50}; // Clookup2
51
049977d0
GT
52
53// ClookUpDlg class
1fc5dd6f 54class ClookUpDlg : public wxDialog
108106cf 55{
e70e8f4c
GT
56 private:
57 bool widgetPtrsSet;
58 int currentCursor;
59 Clookup *lookup;
60 Clookup2 *lookup2;
61 int noDisplayCols;
62 int col1Len;
63
64 wxListBox *pLookUpSelectList;
65 wxButton *pLookUpOkBtn;
66 wxButton *pLookUpCancelBtn;
67
68 public:
69
70 // This is a generic lookup constructor that will work with any table and any column
71 ClookUpDlg(wxWindow *parent,
94613352
GT
72 wxChar *windowTitle,
73 wxChar *tableName,
74 wxChar *colName,
75 wxChar *where,
049977d0
GT
76 wxChar *orderBy,
77 wxDb *pDb,
78 const wxString &defDir);
e70e8f4c
GT
79
80 //
81 // This is a generic lookup constructor that will work with any table and any column.
82 // It extends the capabilites of the lookup dialog in the following ways:
83 //
84 // 1) 2 columns rather than one
049977d0 85 // 2) The ability to select DISTINCT column values
e70e8f4c 86 //
a4054ad1 87 // Only set distinctValues equal to TRUE if necessary. In many cases, the constraints
e70e8f4c
GT
88 // of the index(es) will enforce this uniqueness. Selecting DISTINCT does require
89 // overhead by the database to ensure that all values returned are distinct. Therefore,
90 // use this ONLY when you need it.
91 //
92 // For complicated queries, you can pass in the sql select statement. This would be
93 // necessary if joins are involved since by default both columns must come from the
94 // same table.
95 //
96 // If you do query by sql statement, you must pass in the maximum length of column1,
97 // since it cannot be derived when you query using your own sql statement.
98 //
99 // The optional database connection can be used if you'd like the lookup class
049977d0
GT
100 // to use a database pointer other than the READONLY_DB of the app. This is necessary
101 // if records are being saved, but not committed to the db, yet should be included
e70e8f4c
GT
102 // in the lookup window.
103 //
104 ClookUpDlg(wxWindow *parent,
94613352
GT
105 wxChar *windowTitle,
106 wxChar *tableName,
107 wxChar *dispCol1, // Must have at least 1 display column
108 wxChar *dispCol2, // Optional
109 wxChar *where,
110 wxChar *orderBy,
049977d0
GT
111 wxDb *pDb, // Database connection pointer
112 const wxString &defDir,
94613352
GT
113 bool distinctValues, // e.g. SELECT DISTINCT ...
114 wxChar *selectStmt = 0, // If you wish to query by SQLstmt (complicated lookups)
115 int maxLenCol1 = 0, // Mandatory if querying by SQLstmt
a4054ad1 116 bool allowOk = TRUE); // is the OK button enabled
e70e8f4c
GT
117
118 void OnButton( wxCommandEvent &event );
119 void OnCommand(wxWindow& win, wxCommandEvent& event);
120 void OnClose(wxCloseEvent& event);
121 void OnActivate(bool) {}; // necessary for hot keys
65d7ddc4
GT
122
123DECLARE_EVENT_TABLE()
049977d0 124}; // class ClookUpDlg
108106cf 125
1fc5dd6f
JS
126#define LOOKUP_DIALOG 500
127
128#define LOOKUP_DIALOG_SELECT 501
129#define LOOKUP_DIALOG_OK 502
130#define LOOKUP_DIALOG_CANCEL 503
131
108106cf
JS
132#endif // LISTDB_DOT_H
133
134// ************************************ listdb.h *********************************