mirror of
https://github.com/fltk/fltk.git
synced 2026-06-01 14:52:46 +08:00
STR 3442: changed .cxx file, but not .fl
This commit is contained in:
committed by
Matthias Melcher
parent
160832ce04
commit
08c69a548c
@@ -61,12 +61,12 @@ Version x.x.x}
|
|||||||
}
|
}
|
||||||
Fl_Button {} {
|
Fl_Button {} {
|
||||||
label {View License...}
|
label {View License...}
|
||||||
callback {show_help("license.html");}
|
callback {show_help("license.html");} selected
|
||||||
xywh {115 145 123 25} labelcolor 136
|
xywh {115 145 123 25} labelcolor 136
|
||||||
}
|
}
|
||||||
Fl_Return_Button {} {
|
Fl_Return_Button {} {
|
||||||
label Close
|
label Close
|
||||||
callback {((Fl_Window*)(o->parent()))->hide();} selected
|
callback {((Fl_Window*)(o->parent()))->hide();}
|
||||||
xywh {250 145 83 25}
|
xywh {250 145 83 25}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -528,7 +528,11 @@ Function {make_comment_panel()} {} {
|
|||||||
Function {type_make_cb(Fl_Widget*,void*d)} {open return_type void
|
Function {type_make_cb(Fl_Widget*,void*d)} {open return_type void
|
||||||
} {
|
} {
|
||||||
code {const char *type_name = (const char*)d;
|
code {const char *type_name = (const char*)d;
|
||||||
add_new_widget_from_user(type_name);} {}
|
if (Fl_Type::current && Fl_Type::current->is_group())
|
||||||
|
add_new_widget_from_user(type_name, kAddAsLastChild);
|
||||||
|
else
|
||||||
|
add_new_widget_from_user(type_name, kAddAfterCurrent);} {selected
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Function {make_widgetbin()} {open
|
Function {make_widgetbin()} {open
|
||||||
@@ -606,7 +610,7 @@ else
|
|||||||
} {
|
} {
|
||||||
Fl_Button {} {
|
Fl_Button {} {
|
||||||
user_data {"Fl_Window"}
|
user_data {"Fl_Window"}
|
||||||
callback type_make_cb selected
|
callback type_make_cb
|
||||||
tooltip Window xywh {89 21 24 24} box THIN_UP_BOX
|
tooltip Window xywh {89 21 24 24} box THIN_UP_BOX
|
||||||
code0 {o->image(pixmap[1]);}
|
code0 {o->image(pixmap[1]);}
|
||||||
class Widget_Bin_Window_Button
|
class Widget_Bin_Window_Button
|
||||||
|
|||||||
Reference in New Issue
Block a user