]>
git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dlguser.h
1 //----------------------------------------------------------------------------------------
3 // Purpose: Dialog mit Variable Gestaltung durch DlgUser.wxr
4 // Author: Mark Johnson
5 // Modified by: 19991105.mj10777
7 // Copyright: (c) Mark Johnson
8 // Licence: wxWindows license
10 //----------------------------------------------------------------------------------------
12 //----------------------------------------------------------------------------------------
13 #define ID_DIALOG_DSN 100
16 #define ID_PASSWORD 103
19 //----------------------------------------------------------------------------------------
22 //----------------------------------------------------------------------------------------
23 class DlgUser
: public wxDialog
26 wxString s_DSN
, s_User
, s_Password
;
27 wxStaticText
*m_Label1
, *m_Label2
;
28 wxTextCtrl
*m_UserName
, *m_Password
;
29 wxButton
*m_OK
, *m_Cancel
;
31 //---------------------------------------------------------------------------------------
32 DlgUser(wxWindow
*parent
,MainDoc
*pDoc
, const wxString
& title
);
34 void OnOk(wxCommandEvent
& event
);
35 //---------------------------------------------------------------------------------------
39 //----------------------------------------------------------------------------------------