Checkbox for remembering credential is added dynamically (on demand) now to reduce GUI clutter

This commit is contained in:
2016-09-21 11:44:34 +02:00
parent 2c138fc0a9
commit 2b232ba443
7 changed files with 52 additions and 256 deletions

View File

@@ -34,8 +34,8 @@ class wxEAPBannerPanel;
#include <wx/textctrl.h>
#include <wx/statbox.h>
#include <wx/timer.h>
#include <wx/checkbox.h>
#include <wx/choice.h>
#include <wx/checkbox.h>
///////////////////////////////////////////////////////////////////////////
@@ -199,13 +199,14 @@ class wxEAPCredentialsPromptPassPanelBase : public wxEAPCredentialsPanelBase
private:
protected:
wxStaticBoxSizer* m_sb_credentials;
wxStaticBitmap* m_credentials_icon;
wxBoxSizer* m_sb_credentials_vert;
wxStaticText* m_credentials_label;
wxStaticText* m_identity_label;
wxTextCtrl* m_identity;
wxStaticText* m_password_label;
wxTextCtrl* m_password;
wxCheckBox* m_remember;
public: