]> git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dlguser.h
This is how wxPlotWindow would look like with the
[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 // RCS-ID: $Id$
10 //----------------------------------------------------------------------------------------
11 // DlgUser
12 //----------------------------------------------------------------------------------------
13 #define ID_DIALOG_DSN 100
14 #define ID_DSN 101
15 #define ID_USER 102
16 #define ID_PASSWORD 103
17 #define ID_TEXT 104
18 //----------------------------------------------------------------------------------------
19 class MainDoc;
20 //----------------------------------------------------------------------------------------
21 class DlgUser: public wxDialog
22 {
23 public:
24 wxString s_DSN, s_User, s_Password;
25 wxStaticText *m_Label1, *m_Label2;
26 wxTextCtrl *m_UserName, *m_Password;
27 wxButton *m_OK, *m_Cancel;
28 MainDoc *pDoc;
29 //---------------------------------------------------------------------------------------
30 DlgUser(wxWindow *parent,MainDoc *pDoc, const wxString& title);
31 void OnInit();
32 void OnOk(wxCommandEvent& event);
33 //---------------------------------------------------------------------------------------
34 DECLARE_EVENT_TABLE()
35 };
36 //----------------------------------------------------------------------------------------