Added support for setting the font of GridGUI.GuiControlClass using the new method GridGUI.GuiControlClass.Font and for changing the size of the control after applying the font, to avoid changing the size set the font on the GUI instance instead of the control and apply the font manually.
GridGUI.GUI.GuiSize callback is now called with a second argument that indicates if the GUI was minimized or maximized.
Added a utility script that converts the lib to a single script.
v1.1.9
Added support for removing controls from a GridGUI
Fixed a bug where overlapping controls were not clickable. For examples of how to make overlapping controls clickable see (Example Background.ahk, UCR Example.ahk)
Added an example showing how to remove controls from a GridGUI (Example Grid Game.ahk)
v1.1.8
Added support for Gui Events via the following callbacks GuiSize, GuiMoved, GuiClose, GuiActivate, GuiContextMenu
Added support for drag and drop files to a GUI or Control using the method RegisterDropTarget of the GUI class
Added an example showing how to use Gui Events and registering Drag and Drop (Example Gui Events.ahk)
Updated the examples to use the new GUI events
v1.1.7
Fixed the handling of minsize for expanding and filling controls (to allow a control to disappear entirely set its initial size to 0 like in this example)
Added two new convenience methods to the main GridGUI class that makes Position instances called GridGUI.Pos() and GridGUI.Area()
Removed lots of potential warnings so that using #Warn in a script that has included this lib would not be as annoying of an experience
Added an option to the TabControl class that makes it only calculate the positions of the selected tab
Made the TabControl class no longer use the standard callback so that it is free to be used for input interrupts
Updated a number of examples to work with the fixed minsize handeling
v1.1.6
Added SubGrids that can make a grid in a Cell of a GridGUI or really anywhere
Added a new Control class for handling Tabs with subgrids called TabControl
Added a new Control class for handling StatusBars called StatusBarControl