160 lines
6.7 KiB
MQL5
160 lines
6.7 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| RadioButton.mqh |
|
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#include "WndContainer.mqh"
|
|
#include "BmpButton.mqh"
|
|
#include "Edit.mqh"
|
|
//+------------------------------------------------------------------+
|
|
//| Resources |
|
|
//+------------------------------------------------------------------+
|
|
#resource "res\\RadioButtonOn.bmp"
|
|
#resource "res\\RadioButtonOff.bmp"
|
|
//+------------------------------------------------------------------+
|
|
//| Class CRadioButton |
|
|
//| Usage: class that implements the "RadioButton" control |
|
|
//+------------------------------------------------------------------+
|
|
class CRadioButton : public CWndContainer
|
|
{
|
|
private:
|
|
//--- dependent controls
|
|
CBmpButton m_button; // button object
|
|
CEdit m_label; // label object
|
|
|
|
public:
|
|
CRadioButton(void);
|
|
~CRadioButton(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);
|
|
//--- settings
|
|
string Text(void) const { return(m_label.Text()); }
|
|
bool Text(const string value) { return(m_label.Text(value)); }
|
|
color Color(void) const { return(m_label.Color()); }
|
|
bool Color(const color value) { return(m_label.Color(value)); }
|
|
//--- state
|
|
bool State(void) const { return(m_button.Pressed()); }
|
|
bool State(const bool flag) { return(m_button.Pressed(flag)); }
|
|
|
|
protected:
|
|
//--- create dependent controls
|
|
virtual bool CreateButton(void);
|
|
virtual bool CreateLabel(void);
|
|
//--- handlers of the dependent controls events
|
|
virtual bool OnClickButton(void);
|
|
virtual bool OnClickLabel(void);
|
|
};
|
|
//+------------------------------------------------------------------+
|
|
//| Common handler of chart events |
|
|
//+------------------------------------------------------------------+
|
|
EVENT_MAP_BEGIN(CRadioButton)
|
|
ON_EVENT(ON_CLICK,m_button,OnClickButton)
|
|
ON_EVENT(ON_CLICK,m_label,OnClickLabel)
|
|
EVENT_MAP_END(CWndContainer)
|
|
//+------------------------------------------------------------------+
|
|
//| Constructor |
|
|
//+------------------------------------------------------------------+
|
|
CRadioButton::CRadioButton(void)
|
|
{
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Destructor |
|
|
//+------------------------------------------------------------------+
|
|
CRadioButton::~CRadioButton(void)
|
|
{
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Create a control |
|
|
//+------------------------------------------------------------------+
|
|
bool CRadioButton::Create(const long chart,const string name,const int subwin,const int x1,const int y1,const int x2,const int y2)
|
|
{
|
|
//--- call method of the parent class
|
|
if(!CWndContainer::Create(chart,name,subwin,x1,y1,x2,y2))
|
|
return(false);
|
|
//--- create dependent controls
|
|
if(!CreateButton())
|
|
return(false);
|
|
if(!CreateLabel())
|
|
return(false);
|
|
//--- succeeded
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Create button |
|
|
//+------------------------------------------------------------------+
|
|
bool CRadioButton::CreateButton(void)
|
|
{
|
|
//--- calculate coordinates
|
|
int x1=CONTROLS_RADIO_BUTTON_X_OFF;
|
|
int y1=CONTROLS_RADIO_BUTTON_Y_OFF;
|
|
int x2=x1+CONTROLS_BUTTON_SIZE;
|
|
int y2=y1+CONTROLS_BUTTON_SIZE-CONTROLS_BORDER_WIDTH;
|
|
//--- create
|
|
if(!m_button.Create(m_chart_id,m_name+"Button",m_subwin,x1,y1,x2,y2))
|
|
return(false);
|
|
if(!m_button.BmpNames("::res\\RadioButtonOff.bmp","::res\\RadioButtonOn.bmp"))
|
|
return(false);
|
|
if(!Add(m_button))
|
|
return(false);
|
|
m_button.Locking(true);
|
|
//--- succeeded
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Create label |
|
|
//+------------------------------------------------------------------+
|
|
bool CRadioButton::CreateLabel(void)
|
|
{
|
|
//--- calculate coordinates
|
|
int x1=CONTROLS_RADIO_LABEL_X_OFF;
|
|
int y1=CONTROLS_RADIO_LABEL_Y_OFF;
|
|
int x2=Width();
|
|
int y2=Height();
|
|
//--- create
|
|
if(!m_label.Create(m_chart_id,m_name+"Label",m_subwin,x1,y1,x2,y2))
|
|
return(false);
|
|
if(!m_label.Text(m_name))
|
|
return(false);
|
|
if(!Add(m_label))
|
|
return(false);
|
|
m_label.ReadOnly(true);
|
|
m_label.ColorBackground(CONTROLS_CHECKGROUP_COLOR_BG);
|
|
m_label.ColorBorder(CONTROLS_CHECKGROUP_COLOR_BG);
|
|
//--- succeeded
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Handler of click on button |
|
|
//+------------------------------------------------------------------+
|
|
bool CRadioButton::OnClickButton(void)
|
|
{
|
|
//--- if button is in the "turned off" state, turn it on again and complete the handling
|
|
//--- this is due to that radio button can not be turned off by clicking on it (it can be only turned on)
|
|
if(!m_button.Pressed())
|
|
{
|
|
//--- turn on the radio button
|
|
if(!m_button.Pressed(true))
|
|
return(false);
|
|
}
|
|
//--- send the "changed state" event
|
|
EventChartCustom(CONTROLS_SELF_MESSAGE,ON_CHANGE,m_id,0.0,m_name);
|
|
//--- handled
|
|
return(true);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Handler of click on label |
|
|
//+------------------------------------------------------------------+
|
|
bool CRadioButton::OnClickLabel(void)
|
|
{
|
|
//--- if button is in the "turned on" state, simply complete the handling
|
|
//--- this is due to that radio button can not be turned off by clicking on it (it can be only turned on)
|
|
if(m_button.Pressed())
|
|
return(true);
|
|
//--- turn on the radio button
|
|
m_button.Pressed(true);
|
|
//--- return the result of the button click handler
|
|
return(OnClickButton());
|
|
}
|
|
//+------------------------------------------------------------------+
|