]>
git.saurik.com Git - wxWidgets.git/blob - demos/dbbrowse/dlguser.cpp
1 //----------------------------------------------------------------------------------------
3 // Purpose: Dialog mit Variable Gestaltung durch DlgUser.wxr
4 // Author: Mark Johnson, mj10777@gmx.net
5 // Modified by: 19991105.mj10777
7 // Copyright: (c) Mark Johnson
8 // Licence: wxWindows license
10 //----------------------------------------------------------------------------------------
11 //-- all #ifdefs that the whole Project needs. -------------------------------------------
12 //----------------------------------------------------------------------------------------
14 #pragma implementation
17 //----------------------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx/wx.h".
19 #include "wx/wxprec.h"
20 //----------------------------------------------------------------------------------------
24 //----------------------------------------------------------------------------------------
28 //----------------------------------------------------------------------------------------
29 //-- all #includes that every .cpp needs ----19990807.mj10777 ----------------
30 //----------------------------------------------------------------------------------------
32 //----------------------------------------------------------------------------------------
33 DlgUser::DlgUser(wxWindow
*parent
, MainDoc
*p_Doc
, const wxString
& title
) :
34 wxDialog(parent
, ID_DIALOG_DSN
, title
)
36 int chSize
; // Height of Font * 1.4 = Height of wxTextCtrl
37 SetBackgroundColour("wheat");
39 wxLayoutConstraints
* layout
;
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
);
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
);
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
);
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
);
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
);
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
);
99 m_UserName
->SetFocus();
105 //----------------------------------------------------------------------------------------
106 void DlgUser::OnInit()
108 wxString Temp
; Temp
.Printf(">>> %s <<<",s_DSN
.c_str());
110 m_UserName
->SetLabel(s_User
);
111 m_Password
->SetLabel(s_Password
);
113 //----------------------------------------------------------------------------------------
114 BEGIN_EVENT_TABLE(DlgUser
, wxDialog
)
115 EVT_BUTTON(wxID_OK
, DlgUser::OnOk
)
116 EVT_BUTTON(wxID_CANCEL
, DlgUser::OnCancel
)
118 //----------------------------------------------------------------------------------------
119 void DlgUser::OnOk(wxCommandEvent
& WXUNUSED(event
) )
122 s_User
= m_UserName
->GetValue();
123 s_Password
= m_Password
->GetValue();
126 //----------------------------------------------------------------------------------------
127 //void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
130 // EndModal(wxID_CANCEL);
132 //----------------------------------------------------------------------------------------