UI work continues...

This commit is contained in:
2016-06-04 07:03:58 +02:00
parent 6c935d53c3
commit ec6291f6ac
20 changed files with 226 additions and 43 deletions

View File

@@ -11,10 +11,7 @@
#include <wx/artprov.h>
#include <wx/xrc/xmlres.h>
#include <wx/intl.h>
#include <wx/bitmap.h>
#include <wx/image.h>
#include <wx/icon.h>
#include <wx/statbmp.h>
class wxEAPBannerPanel;
#include <wx/gdicmn.h>
#include <wx/font.h>
#include <wx/colour.h>
@@ -24,6 +21,8 @@
#include <wx/sizer.h>
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/stattext.h>
#include <wx/panel.h>
///////////////////////////////////////////////////////////////////////////
@@ -35,7 +34,7 @@ class wxEAPConfigBase : public wxDialog
private:
protected:
wxStaticBitmap* m_banner;
wxEAPBannerPanel *m_banner;
wxNotebook* m_providers;
wxStdDialogButtonSizer* m_buttons;
wxButton* m_buttonsOK;
@@ -48,4 +47,21 @@ class wxEAPConfigBase : public wxDialog
};
///////////////////////////////////////////////////////////////////////////////
/// Class wxEAPBannerPanelBase
///////////////////////////////////////////////////////////////////////////////
class wxEAPBannerPanelBase : public wxPanel
{
private:
protected:
wxStaticText* m_product_name;
public:
wxEAPBannerPanelBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = 0 );
~wxEAPBannerPanelBase();
};
#endif //__WXEAPMETHODS_H__