aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gtkflowbox.c
AgeCommit message (Collapse)AuthorFilesLines
2016-01-31interfaces have their own automake subdirectories and convenience libraries nowRobin Haberkorn1-4795/+0
* use libtool convenience libraries as much as possible (for all static libraries except Scintilla) * improves separation of language and user interface implementations (e.g. the Gtk widgets are not interesting for the rest of SciTECO) * the Curses popup widget can now be factored out of interface-curses.cpp * some common CPPFLAGS are now defined by ./configure via AM_CPPFLAGS, so they don't have to be repeated in each submodule. * fixed building the Curses UI: GTK_FLOW_BOX_FALLBACK conditional must always be defined.
2016-01-31made the fallback GtkFlowBox a stand-alone widget that can be built outside ↵Robin Haberkorn1-29/+22
of Gtk * it was necessary to remove the accessibility integration since I don't want to import a lot of bloat into the SciTECO codebase * Includes follow the guidelines of external Gtk code now * internationalization support has been removed * The "move-cursor" signal uses the generic marshaller now since we don't want to introduce genmarshal just for that signal (and it will never be called from a scripting language)
2016-01-31added GtkFlowbox imported from Gtk+ v3.12.2Robin Haberkorn1-0/+4802
* this is used as a fallback for installations with Gtk prior to v3.12