@@ -19,40 +19,40 @@ bool bitmap_button(bitmap bmp);
1919bool bitmap_button (bitmap bmp, const rectangle &rect);
2020bool bitmap_button (bitmap bmp, const rectangle &rect, drawing_options opts);
2121bool bitmap_button (bitmap bmp, drawing_options opts);
22- bool bitmap_button (const string &label , bitmap bmp);
23- bool bitmap_button (const string &label , bitmap bmp, drawing_options opts);
22+ bool bitmap_button (const string &label_text , bitmap bmp);
23+ bool bitmap_button (const string &label_text , bitmap bmp, drawing_options opts);
2424bool button (const string &text, const rectangle &rect);
2525bool button (const string &text);
26- bool button (const string &label , const string &text);
26+ bool button (const string &label_text , const string &text);
2727bool checkbox (const string &text, const bool &value, const rectangle &rect);
2828bool checkbox (const string &text, const bool &value);
29- bool checkbox (const string &label , const string &text, const bool &value);
29+ bool checkbox (const string &label_text , const string &text, const bool &value);
3030color color_slider (const color &clr, const rectangle &rect);
3131color color_slider (const color &clr);
32- color color_slider (const string &label , const color &clr);
32+ color color_slider (const string &label_text , const color &clr);
3333void disable_interface ();
3434void draw_interface ();
3535void enable_interface ();
3636void end_inset (const string &name);
3737void end_panel (const string &name);
3838void end_popup (const string &name);
39- void end_treenode (const string &label );
39+ void end_treenode (const string &label_text );
4040void enter_column ();
4141int get_interface_label_width ();
42- bool header (const string &label );
42+ bool header (const string &label_text );
4343color hsb_color_slider (const color &clr, const rectangle &rect);
4444color hsb_color_slider (const color &clr);
45- color hsb_color_slider (const string &label , const color &clr);
45+ color hsb_color_slider (const string &label_text , const color &clr);
4646bool interface_enabled ();
4747void interface_style_panel (const rectangle &initial_rectangle);
48- void label (const string &text);
49- void label (const string &text, const rectangle &rect);
48+ void label_element (const string &text);
49+ void label_element (const string &text, const rectangle &rect);
5050bool last_element_changed ();
5151bool last_element_confirmed ();
5252void leave_column ();
5353float number_box (const float &value, float step, const rectangle &rect);
5454float number_box (const float &value, float step);
55- float number_box (const string &label , const float &value, float step);
55+ float number_box (const string &label_text , const float &value, float step);
5656void open_popup (const string &name);
5757void paragraph (const string &text);
5858void paragraph (const string &text, const rectangle &rect);
@@ -77,7 +77,7 @@ void set_layout_height(int height);
7777void single_line_layout ();
7878float slider (const float &value, float min_value, float max_value, const rectangle &rect);
7979float slider (const float &value, float min_value, float max_value);
80- float slider (const string &label , const float &value, float min_value, float max_value);
80+ float slider (const string &label_text , const float &value, float min_value, float max_value);
8181void split_into_columns (int count);
8282void split_into_columns (int count, int last_width);
8383void split_into_columns_relative (int count, double last_width);
@@ -86,9 +86,9 @@ void start_inset(const string &name, const rectangle &rect);
8686void start_inset (const string &name, int height);
8787bool start_panel (const string &name, rectangle initial_rectangle);
8888bool start_popup (const string &name);
89- bool start_treenode (const string &label );
89+ bool start_treenode (const string &label_text );
9090string text_box (const string &value);
9191string text_box (const string &value, const rectangle &rect);
92- string text_box (const string &label , const string &value);
92+ string text_box (const string &label_text , const string &value);
9393
9494#endif /* __interface_h */
0 commit comments