]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/db/listdb.h
Renamed .nt makefiles to .vc and factored them out; made DND sample compile
[wxWidgets.git] / samples / db / listdb.h
index 0d966c961ecb352a797b16e6514fe89d27b78542..440ad92f3b8bbe57ae23bdc47a4294f26dd12f2b 100644 (file)
@@ -9,15 +9,12 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
+#ifdef __GNUG__
 #pragma interface "listdb.h"
+#endif
 
 /*
-/*
-// SYNOPSIS START
-
        Contains dialog class for creating a data table lookup listbox
-
-// SYNOPSIS STOP
 */
 
 #ifndef LISTDB_DOT_H
@@ -26,7 +23,7 @@
 
 #include <wx/dbtable.h>
 
-const LOOKUP_COL_LEN = 250;
+const int LOOKUP_COL_LEN = 250;
 
 // Global database connection
 extern wxDB *READONLY_DB;
@@ -54,7 +51,7 @@ class Clookup2 : public wxTable
 
 };  // Clookup2
 
-class ClookUpDlg : public wxDialogBox
+class ClookUpDlg : public wxDialog
 {
        private:
                bool                     widgetPtrsSet;
@@ -120,6 +117,12 @@ class ClookUpDlg : public wxDialogBox
                void            OnActivate(bool) {};  // necessary for hot keys
 };
 
+#define LOOKUP_DIALOG                   500
+
+#define LOOKUP_DIALOG_SELECT            501
+#define LOOKUP_DIALOG_OK                502
+#define LOOKUP_DIALOG_CANCEL            503
+
 #endif  // LISTDB_DOT_H
 
 // ************************************ listdb.h *********************************