use crate::co;
use crate::decl::*;
use crate::gui::privs::*;
pub trait GuiEventsMonthCalendar: priv_ctrl_events::GuiEvents {
fn_nfy_withparm_noret! { mcn_get_day_state, co::MCN::GETDAYSTATE, NMDAYSTATE;
}
fn_nfy_withparm_noret! { mcn_sel_change, co::MCN::SELCHANGE, NMSELCHANGE;
}
fn_nfy_withparm_noret! { mcn_select, co::MCN::SELECT, NMSELCHANGE;
}
fn_nfy_withparm_noret! { mcn_view_change, co::MCN::VIEWCHANGE, NMVIEWCHANGE;
}
fn_nfy_noparm_noret! { nm_released_capture, co::NM::RELEASEDCAPTURE;
}
}
impl GuiEventsMonthCalendar for BaseCtrlEvents {}