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:
2020-01-15 11:51:50 +01:00
parent 18184a2762
commit bacd4fd8d8
11 changed files with 822 additions and 887 deletions

View File

@@ -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__