]> git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dlguser.cpp
fixed (rare but fatal) bug in wxWindowDisabler
[wxWidgets.git] / demos / dbbrowse / dlguser.cpp
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 //-- all #ifdefs that the whole Project needs. -------------------------------------------
12 //----------------------------------------------------------------------------------------
13 #ifdef __GNUG__
14 #pragma implementation
15 #pragma interface
16 #endif
17 //----------------------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx/wx.h".
19 #include "wx/wxprec.h"
20 //----------------------------------------------------------------------------------------
21 #ifdef __BORLANDC__
22 #pragma hdrstop
23 #endif
24 //----------------------------------------------------------------------------------------
25 #ifndef WX_PRECOMP
26 #include "wx/wx.h"
27 #endif
28 //----------------------------------------------------------------------------------------
29 //-- all #includes that every .cpp needs ----19990807.mj10777 ----------------
30 //----------------------------------------------------------------------------------------
31 #include "std.h"
32 //----------------------------------------------------------------------------------------
33 DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
34 wxDialog(parent, ID_DIALOG_DSN, title)
35 {
36 int chSize; // Height of Font * 1.4 = Height of wxTextCtrl
37 SetBackgroundColour("wheat");
38 pDoc = p_Doc;
39 wxLayoutConstraints* layout;
40 SetAutoLayout(TRUE);
41
42 m_Label1 = new wxStaticText(this, -1, _("User ID:"));
43 m_Label1->SetFont(* pDoc->ft_Doc);
44 layout = new wxLayoutConstraints;
45 layout->left.SameAs(this, wxLeft, 10);
46 layout->top.SameAs(this, wxTop, 10);
47 layout->height.AsIs();
48 layout->width.Absolute(75);
49 m_Label1->SetConstraints(layout);
50
51 m_UserName = new wxTextCtrl(this, -1, "");
52 m_UserName->SetFont(* pDoc->ft_Doc);
53 chSize = m_UserName->GetCharHeight()*1.4;
54 layout = new wxLayoutConstraints;
55 layout->left.SameAs(m_Label1, wxRight, 10);
56 layout->centreY.SameAs(m_Label1,wxCentreY);
57 layout->width.Absolute(200);
58 layout->height.Absolute(chSize);
59 m_UserName->SetConstraints(layout);
60
61
62 m_Label2 = new wxStaticText(this, -1, _("Password:"));
63 m_Label2->SetFont(* pDoc->ft_Doc);
64 layout = new wxLayoutConstraints;
65 layout->left.SameAs(m_Label1, wxLeft);
66 layout->top.SameAs(m_Label1, wxBottom, 10);
67 layout->height.AsIs();
68 layout->width.SameAs(m_Label1, wxWidth);
69 m_Label2->SetConstraints(layout);
70
71 m_Password = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
72 m_Password->SetFont(* pDoc->ft_Doc);
73 layout = new wxLayoutConstraints;
74 layout->left.SameAs(m_UserName, wxLeft);
75 layout->width.SameAs(m_UserName, wxWidth);
76 layout->centreY.SameAs(m_Label2,wxCentreY);
77 layout->height.Absolute(chSize);
78 m_Password->SetConstraints(layout);
79
80 m_OK = new wxButton(this, wxID_OK, _("OK"));
81 m_OK->SetFont(* pDoc->ft_Doc);
82 layout = new wxLayoutConstraints;
83 layout->left.SameAs(this, wxLeft, 10);
84 layout->top.SameAs(m_Label2, wxBottom,10);
85 layout->height.AsIs();
86 layout->width.Absolute(75);
87 m_OK->SetConstraints(layout);
88
89 m_Cancel = new wxButton(this, wxID_CANCEL, _("Cancel"));
90 m_Cancel->SetFont(* pDoc->ft_Doc);
91 layout = new wxLayoutConstraints;
92 layout->left.SameAs(m_OK, wxRight, 10);
93 layout->top.SameAs(m_OK, wxTop);
94 layout->height.AsIs();
95 layout->width.SameAs(m_OK, wxWidth);
96 m_Cancel->SetConstraints(layout);
97
98 m_OK->SetDefault();
99 m_UserName->SetFocus();
100
101 s_User = "";
102 s_Password = "";
103 Layout();
104 }
105 //----------------------------------------------------------------------------------------
106 void DlgUser::OnInit()
107 {
108 wxString Temp; Temp.Printf(">>> %s <<<",s_DSN.c_str());
109 SetTitle(Temp);
110 m_UserName->SetLabel(s_User);
111 m_Password->SetLabel(s_Password);
112 }
113 //----------------------------------------------------------------------------------------
114 BEGIN_EVENT_TABLE(DlgUser, wxDialog)
115 EVT_BUTTON(wxID_OK, DlgUser::OnOk)
116 EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
117 END_EVENT_TABLE()
118 //----------------------------------------------------------------------------------------
119 void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
120 {
121 //canceled = FALSE;
122 s_User = m_UserName->GetValue();
123 s_Password = m_Password->GetValue();
124 EndModal(wxID_OK);
125 }
126 //----------------------------------------------------------------------------------------
127 //void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
128 // {
129 // canceled = TRUE;
130 // EndModal(wxID_CANCEL);
131 // }
132 //----------------------------------------------------------------------------------------
133