├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── doc └── tutorial │ ├── 10_resize.png │ ├── 11_center.png │ ├── 1_button_initial.png │ ├── 2_button_up.png │ ├── 3_button_up_left.png │ ├── 4_text_up_left.png │ ├── 5_separator_expand_left_up.png │ ├── 6_separator_result.png │ ├── 7_textarea_expand_1.png │ ├── 8_textarea_expand_2.png │ ├── 9_textarea_expand_result.png │ └── logo.png └── src ├── Fl_Flow ├── Fl_Exception.h ├── Fl_Flow.h ├── Fl_Helper.h ├── Fl_Instruction.h ├── Fl_State.h └── Fl_Transform.h ├── advanced └── main.cpp ├── center └── main.cpp ├── fluent ├── README.md ├── advanced │ └── main.cpp ├── center │ └── main.cpp ├── sample │ └── main.cpp └── tutorial │ └── main.cpp ├── sample └── main.cpp └── tutorial └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/README.md -------------------------------------------------------------------------------- /doc/tutorial/10_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/10_resize.png -------------------------------------------------------------------------------- /doc/tutorial/11_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/11_center.png -------------------------------------------------------------------------------- /doc/tutorial/1_button_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/1_button_initial.png -------------------------------------------------------------------------------- /doc/tutorial/2_button_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/2_button_up.png -------------------------------------------------------------------------------- /doc/tutorial/3_button_up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/3_button_up_left.png -------------------------------------------------------------------------------- /doc/tutorial/4_text_up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/4_text_up_left.png -------------------------------------------------------------------------------- /doc/tutorial/5_separator_expand_left_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/5_separator_expand_left_up.png -------------------------------------------------------------------------------- /doc/tutorial/6_separator_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/6_separator_result.png -------------------------------------------------------------------------------- /doc/tutorial/7_textarea_expand_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/7_textarea_expand_1.png -------------------------------------------------------------------------------- /doc/tutorial/8_textarea_expand_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/8_textarea_expand_2.png -------------------------------------------------------------------------------- /doc/tutorial/9_textarea_expand_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/9_textarea_expand_result.png -------------------------------------------------------------------------------- /doc/tutorial/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/doc/tutorial/logo.png -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_Exception.h -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_Flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_Flow.h -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_Helper.h -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_Instruction.h -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_State.h -------------------------------------------------------------------------------- /src/Fl_Flow/Fl_Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/Fl_Flow/Fl_Transform.h -------------------------------------------------------------------------------- /src/advanced/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/advanced/main.cpp -------------------------------------------------------------------------------- /src/center/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/center/main.cpp -------------------------------------------------------------------------------- /src/fluent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/fluent/README.md -------------------------------------------------------------------------------- /src/fluent/advanced/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/fluent/advanced/main.cpp -------------------------------------------------------------------------------- /src/fluent/center/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/fluent/center/main.cpp -------------------------------------------------------------------------------- /src/fluent/sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/fluent/sample/main.cpp -------------------------------------------------------------------------------- /src/fluent/tutorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/fluent/tutorial/main.cpp -------------------------------------------------------------------------------- /src/sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/sample/main.cpp -------------------------------------------------------------------------------- /src/tutorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osen/Fl_Flow/HEAD/src/tutorial/main.cpp --------------------------------------------------------------------------------