Rename wxTTLSConfigPanel and move upstream
wxTTLSConfigPanel is about anonymizing inner identity and was renamed to wxEAPIdentityConfigPanel and moved upstream to make reusable. Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
@@ -336,4 +336,30 @@ class wxEAPProviderSelectDialogBase : public wxDialog
|
||||
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
/// Class wxEAPIdentityConfigPanelBase
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
class wxEAPIdentityConfigPanelBase : public wxPanel
|
||||
{
|
||||
private:
|
||||
|
||||
protected:
|
||||
wxStaticBitmap* m_outer_identity_icon;
|
||||
wxStaticText* m_outer_identity_label;
|
||||
wxRadioButton* m_outer_identity_same;
|
||||
wxRadioButton* m_outer_identity_empty;
|
||||
wxRadioButton* m_outer_identity_custom;
|
||||
wxTextCtrl* m_outer_identity_custom_val;
|
||||
|
||||
// Virtual event handlers, overide them in your derived class
|
||||
virtual void OnUpdateUI( wxUpdateUIEvent& event ) { event.Skip(); }
|
||||
|
||||
|
||||
public:
|
||||
|
||||
wxEAPIdentityConfigPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, long style = wxTAB_TRAVERSAL );
|
||||
~wxEAPIdentityConfigPanelBase();
|
||||
|
||||
};
|
||||
|
||||
#endif //__WXEAP_UI_H__
|
||||
|
Reference in New Issue
Block a user