Ejemplo n.º 1
0
RecordGUILabel::RecordGUILabel(MWindow *mwindow, Record *record, int x, int y)
 : BC_GenericButton(x, y, _("Label"))
{ 
	this->mwindow = mwindow;
	this->record = record;
	set_underline(0);
}
Ejemplo n.º 2
0
void	handle_reg(t_group *grp, char *cap_code, int c)
{
	t_elem	*curr;

	curr = reset_underline(grp, c);
	ft_tputs(cap_code);
	set_underline(grp, curr);
}
Ejemplo n.º 3
0
QuestionNoButton::QuestionNoButton(MWindow *mwindow, QuestionWindow *window, int x, int y)
 : BC_GenericButton(x, y, _("No"))
{
	this->window = window;
	set_underline(0);
}
Ejemplo n.º 4
0
void	handle_spec(t_group *grp, t_elem *curr, int c)
{
	reset_underline(grp, c);
	set_underline(grp, curr);
}