27 :
DIALOG_SHIM(parent, wxID_ANY,
_(
"Connection"), wxDefaultPosition, wxSize(400, 300))
39 wxBoxSizer* mainSizer =
new wxBoxSizer(wxVERTICAL);
40 this->SetSizer(mainSizer);
48 m_PasswordTextCtrl =
new wxTextCtrl(
this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
56 mainSizer->Add(
new wxStaticText(
this, wxID_ANY,
_(
"Name")), 0, wxALL, 10);
58 mainSizer->Add(
new wxStaticText(
this, wxID_ANY,
_(
"Url")), 0, wxALL, 10);
60 mainSizer->Add(
new wxStaticText(
this, wxID_ANY,
_(
"Authentication")), 0, wxALL, 10);
62 mainSizer->Add(
new wxStaticText(
this, wxID_ANY,
_(
"User Name")), 0, wxALL, 10);
64 mainSizer->Add(
new wxStaticText(
this, wxID_ANY,
_(
"Password")), 0, wxALL, 10);
69 wxBoxSizer* buttonSizer =
new wxBoxSizer(wxHORIZONTAL);
73 mainSizer->Add(buttonSizer, 0, wxALIGN_RIGHT);
wxTextCtrl * m_NameTextCtrl
void onTestClick(wxCommandEvent &aEvent)
wxTextCtrl * m_UserNameTextCtrl
wxFilePickerCtrl * m_PublicKeyPicker
wxTextCtrl * m_PasswordTextCtrl
wxButton * m_CancelButton
void onAuthChoiceChanged(wxCommandEvent &event)
virtual ~DIALOG_GIT_AUTH()
DIALOG_GIT_AUTH(wxWindow *parent)
wxTextCtrl * m_UrlTextCtrl
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...