]> git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dlguser.h
add makefile.b32
[wxWidgets.git] / demos / dbbrowse / dlguser.h
1 //---------------------------------------------------------------------------
2 // Name: DlgUser.h,cpp
3 // Purpose: Dialog mit Variable Gestaltung durch DlgUser.wxr
4 // Author: Mark Johnson, mj10777@gmx.net
5 // Modified by: 19991105.mj10777
6 // Created: 19991105
7 // Copyright: (c) Mark Johnson
8 // Licence: wxWindows license
9 //---------------------------------------------------------------------------
10 // DlgUser
11 //---------------------------------------------------------------------------
12 #define ID_DIALOG_DSN 100
13 #define ID_DSN 101
14 #define ID_USER 102
15 #define ID_PASSWORD 103
16 #define ID_TEXT 104
17 //---------------------------------------------------------------------------
18 //---------------------------------------------------------------------------
19 class DlgUser: public wxDialog
20 {
21 public:
22 bool canceled;
23 wxString s_DSN, s_User, s_Password;
24 wxTextCtrl *tc_User, *tc_Password;
25 //---------------------------------------------------------------------------
26 DlgUser(wxWindow *parent, const wxString& title, const wxPoint& pos, const wxSize& size,const long style = wxDEFAULT_DIALOG_STYLE);
27 void OnInit();
28 void OnOk(wxCommandEvent& event);
29 void OnCancel(wxCommandEvent& event);
30 //---------------------------------------------------------------------------
31 DECLARE_EVENT_TABLE()
32 };
33 //---------------------------------------------------------------------------