mirror of https://github.com/fltk/fltk.git
FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.4 KiB
80 lines
2.4 KiB
// generated by Fast Light User Interface Designer (fluid) version 0.99 |
|
|
|
#include "alignment_panel.H" |
|
|
|
Fl_Window *alignment_window; |
|
|
|
Fl_Input *horizontal_input; |
|
|
|
Fl_Input *vertical_input; |
|
|
|
Fl_Input *snap_input; |
|
|
|
static void cb_close(Fl_Button*, void*) { |
|
alignment_window->hide(); |
|
} |
|
|
|
Fl_Input *header_file_input; |
|
|
|
Fl_Input *code_file_input; |
|
|
|
Fl_Light_Button *include_H_from_C_button; |
|
|
|
Fl_Window* make_alignment_window() { |
|
Fl_Window* w; |
|
{ Fl_Window* o = alignment_window = new Fl_Window(210, 310, "fluid Preferences"); |
|
w = o; |
|
{ Fl_Box* o = new Fl_Box(10, 20, 190, 100, "ALIGNMENT:"); |
|
o->box(FL_ENGRAVED_FRAME); |
|
o->labelsize(10); |
|
o->align(5); |
|
} |
|
{ Fl_Input* o = horizontal_input = new Fl_Input(90, 30, 100, 20, "horizontal:"); |
|
o->type(2); |
|
o->box(FL_THIN_DOWN_BOX); |
|
o->callback((Fl_Callback*)alignment_cb, (void*)(1)); |
|
o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY); |
|
} |
|
{ Fl_Input* o = vertical_input = new Fl_Input(90, 60, 100, 20, "vertical:"); |
|
o->type(2); |
|
o->box(FL_THIN_DOWN_BOX); |
|
o->callback((Fl_Callback*)alignment_cb, (void*)(2)); |
|
o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY); |
|
} |
|
{ Fl_Input* o = snap_input = new Fl_Input(90, 90, 100, 20, "snap:"); |
|
o->type(2); |
|
o->box(FL_THIN_DOWN_BOX); |
|
o->callback((Fl_Callback*)alignment_cb, (void*)(3)); |
|
o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY); |
|
} |
|
{ Fl_Button* o = new Fl_Button(10, 280, 190, 20, "close"); |
|
o->callback((Fl_Callback*)cb_close); |
|
} |
|
{ Fl_Box* o = new Fl_Box(10, 140, 190, 100, "OUTPUT FILE NAMES:"); |
|
o->box(FL_ENGRAVED_FRAME); |
|
o->labelsize(10); |
|
o->align(5); |
|
} |
|
{ Fl_Box* o = new Fl_Box(10, 140, 190, 40, "Use \"name.ext\" to set name, use just \".ext\" to set only extension."); |
|
o->labelsize(10); |
|
o->align(128); |
|
} |
|
{ Fl_Input* o = header_file_input = new Fl_Input(90, 180, 100, 20, "header file:"); |
|
o->box(FL_THIN_DOWN_BOX); |
|
o->callback((Fl_Callback*)header_input_cb, (void*)(1)); |
|
o->when(1); |
|
} |
|
{ Fl_Input* o = code_file_input = new Fl_Input(90, 210, 100, 20, "code file:"); |
|
o->box(FL_THIN_DOWN_BOX); |
|
o->callback((Fl_Callback*)code_input_cb, (void*)(1)); |
|
o->when(1); |
|
} |
|
{ Fl_Light_Button* o = include_H_from_C_button = new Fl_Light_Button(60, 250, 140, 20, "Include .H from .C"); |
|
o->value(1); |
|
o->callback((Fl_Callback*)include_H_from_C_button_cb); |
|
} |
|
o->set_modal(); |
|
o->end(); |
|
} |
|
return w; |
|
}
|
|
|