//+------------------------------------------------------------------+ //| PanelDialog.mqh | //| Copyright 2009-2015, MetaQuotes Software Corp. | //| http://www.mql5.com | //+------------------------------------------------------------------+ #include #include #include #include #include #include #include #include #include //+------------------------------------------------------------------+ //| defines | //+------------------------------------------------------------------+ //--- indents and gaps #define INDENT_LEFT (11) // indent from left (with allowance for border width) #define INDENT_TOP (11) // indent from top (with allowance for border width) #define INDENT_RIGHT (11) // indent from right (with allowance for border width) #define INDENT_BOTTOM (11) // indent from bottom (with allowance for border width) #define CONTROLS_GAP_X (10) // gap by X coordinate #define CONTROLS_GAP_Y (10) // gap by Y coordinate //--- for buttons #define BUTTON_WIDTH (100) // size by X coordinate #define BUTTON_HEIGHT (20) // size by Y coordinate //--- for the indication area #define EDIT_HEIGHT (20) // size by Y coordinate //+------------------------------------------------------------------+ //| Class CPanelDialog | //| Usage: main dialog of the SimplePanel application | //+------------------------------------------------------------------+ class CPanelDialog : public CAppDialog { private: CEdit m_edit1; // the display field object CButton m_button1; // the button object CButton m_button2; // the button object CButton m_button3; // the fixed button object CListView m_list_view; // the list object CRadioGroup m_radio_group; // the radio buttons group object CCheckGroup m_check_group; // the check box group object CLabel m_label1; public: CPanelDialog(void); ~CPanelDialog(void); //--- create virtual bool Create(const long chart,const string name,const int subwin,const int x1,const int y1,const int x2,const int y2); //--- chart event handler virtual bool OnEvent(const int id,const long &lparam,const double &dparam,const string &sparam); protected: //--- create dependent controls bool CreateEdit1(void); bool CreateButton1(void); bool CreateButton2(void); bool CreateButton3(void); bool CreateRadioGroup(void); bool CreateCheckGroup(void); bool CreateListView(void); bool CreateLabel1(void); //--- internal event handlers virtual bool OnResize(void); //--- handlers of the dependent controls events void OnClickButton1(void); void OnClickButton2(void); void OnClickButton3(void); void OnChangeRadioGroup(void); void OnChangeCheckGroup(void); void OnChangeListView(void); void OnChangeLabel1(void); bool OnDefault(const int id,const long &lparam,const double &dparam,const string &sparam); }; //+------------------------------------------------------------------+ //| Event Handling | //+------------------------------------------------------------------+ EVENT_MAP_BEGIN(CPanelDialog) ON_EVENT(ON_CLICK,m_button1,OnClickButton1) ON_EVENT(ON_CLICK,m_button2,OnClickButton2) ON_EVENT(ON_CLICK,m_button3,OnClickButton3) ON_EVENT(ON_CHANGE,m_radio_group,OnChangeRadioGroup) ON_EVENT(ON_CHANGE,m_check_group,OnChangeCheckGroup) ON_EVENT(ON_CHANGE,m_list_view,OnChangeListView) ON_OTHER_EVENTS(OnDefault) EVENT_MAP_END(CAppDialog) //+------------------------------------------------------------------+ //| Constructor | //+------------------------------------------------------------------+ CPanelDialog::CPanelDialog(void) { } //+------------------------------------------------------------------+ //| Destructor | //+------------------------------------------------------------------+ CPanelDialog::~CPanelDialog(void) { } //+------------------------------------------------------------------+ //| Create | //+------------------------------------------------------------------+ bool CPanelDialog::Create(const long chart,const string name,const int subwin,const int x1,const int y1,const int x2,const int y2) { if(!CAppDialog::Create(chart,name,subwin,x1,y1,x2,y2)) return(false); //--- create dependent controls if(!CreateEdit1()) return(false); if(!CreateButton1()) return(false); if(!CreateButton2()) return(false); if(!CreateButton3()) return(false); if(!CreateRadioGroup()) return(false); if(!CreateCheckGroup()) return(false); if(!CreateListView()) return(false); if(!CreateLabel1()) return(false); //--- succeed return(true); } //+------------------------------------------------------------------+ //| Create the display field | //+------------------------------------------------------------------+ bool CPanelDialog::CreateEdit1(void) { //--- coordinates int x1=INDENT_LEFT; int y1=INDENT_TOP+25; int x2=ClientAreaWidth()-(INDENT_RIGHT+BUTTON_WIDTH+CONTROLS_GAP_X); int y2=y1+EDIT_HEIGHT; //--- create if(!m_edit1.Create (m_chart_id,m_name+"Edit",m_subwin,x1,y1,x1+150,y2)) return(false); if(!m_edit1.ReadOnly(true)) return(false); if(!Add(m_edit1)) return(false); m_edit1.Text("TRYTRYTRYTRY 01"); m_edit1.Alignment(WND_ALIGN_WIDTH,INDENT_LEFT,0,INDENT_RIGHT+BUTTON_WIDTH+CONTROLS_GAP_X,0); m_edit1.ColorBackground(clrBeige); m_edit1.ColorBorder(clrCoral); m_edit1.Color(clrMaroon); //--- succeed return(true); } //+------------------------------------------------------------------+ //| Create the "Button1" button | //+------------------------------------------------------------------+ bool CPanelDialog::CreateButton1(void) { //--- coordinates int x1=ClientAreaWidth()-(INDENT_RIGHT+BUTTON_WIDTH); int y1=INDENT_TOP; int x2=x1+BUTTON_WIDTH; int y2=y1+BUTTON_HEIGHT; //--- create if(!m_button1.Create(m_chart_id,m_name+"Button1",m_subwin,x1,y1,x2,y2)) return(false); if(!m_button1.Text("Button1")) return(false); if(!Add(m_button1)) return(false); m_button1.Alignment(WND_ALIGN_RIGHT,0,0,INDENT_RIGHT,0); //--- succeed return(true); } //+------------------------------------------------------------------+ //| Create the "Button2" button | //+------------------------------------------------------------------+ bool CPanelDialog::CreateButton2(void) { //--- coordinates int x1=ClientAreaWidth()-(INDENT_RIGHT+BUTTON_WIDTH); int y1=INDENT_TOP+BUTTON_HEIGHT+CONTROLS_GAP_Y; int x2=x1+BUTTON_WIDTH; int y2=y1+BUTTON_HEIGHT; //--- create if(!m_button2.Create(m_chart_id,m_name+"Button2",m_subwin,x1,y1,x2,y2)) return(false); if(!m_button2.Text("Button2")) return(false); if(!Add(m_button2)) return(false); m_button2.Alignment(WND_ALIGN_RIGHT,0,0,INDENT_RIGHT,0); //--- succeed return(true); } //+------------------------------------------------------------------+ //| Create the "Button3" fixed button | //+------------------------------------------------------------------+ bool CPanelDialog::CreateButton3(void) { //--- coordinates int x1=ClientAreaWidth()-(INDENT_RIGHT+BUTTON_WIDTH); int y1=ClientAreaHeight()-(INDENT_BOTTOM+BUTTON_HEIGHT); int x2=x1+BUTTON_WIDTH; int y2=y1+BUTTON_HEIGHT; //--- create if(!m_button3.Create(m_chart_id,m_name+"Button3",m_subwin,x1,y1,x2,y2)) return(false); if(!m_button3.Text("Locked")) return(false); if(!Add(m_button3)) return(false); m_button3.Locking(true); m_button3.Alignment(WND_ALIGN_RIGHT|WND_ALIGN_BOTTOM,0,0,INDENT_RIGHT,INDENT_BOTTOM); //--- succeed return(true); } //+------------------------------------------------------------------+ //| Create the "RadioGroup" element | //+------------------------------------------------------------------+ bool CPanelDialog::CreateRadioGroup(void) { int sx=(ClientAreaWidth()-(INDENT_LEFT+INDENT_RIGHT+BUTTON_WIDTH))/3-CONTROLS_GAP_X; //--- coordinates int x1=INDENT_LEFT; int y1=INDENT_TOP+EDIT_HEIGHT+CONTROLS_GAP_Y; int x2=x1+sx; int y2=ClientAreaHeight()-INDENT_BOTTOM; //--- create if(!m_radio_group.Create(m_chart_id,m_name+"RadioGroup",m_subwin,x1,y1,x2,y2)) return(false); if(!Add(m_radio_group)) return(false); m_radio_group.Alignment(WND_ALIGN_HEIGHT,0,y1,0,INDENT_BOTTOM); //--- fill out with strings for(int i=0;i<4;i++) if(!m_radio_group.AddItem("Item "+IntegerToString(i),1<