mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 02:33:03 +00:00
This is a bundle of changes to the "new" GML documentation that I just noticed two hours ago. - Fix a bunch of typos, wording and style - Rework layout object documentation (they're not widgets!) - Document most of the common properties - Finish (as for now) GML syntax documentation - Extend GML usage explanation - Add symlink "GML" so that man gml works - Add a categorized GML page list to the introduction man page - Cross-link much more Much of the editing of existing docs is clearing up incorrect or imprecise statements. Note that because of massive changes in some places, git won't recognize renames as such.
3.8 KiB
3.8 KiB
Name
GUI Markup Language (GML)
Description
GML is Serenity's graphic user interface (GUI) markup language. GML files are human-readable text files and have no easily detectable filemagic. The format is strongly influenced by QML, the Qt Modeling Language.
It allows you to easily define GUI interfaces for your applications. It is easy to learn and use in C++.
You can easily add GML files to your project in Hack Studio either using
Project > New > GML File
Or right clicking on a folder in the TreeView and using
New > GML File
See also
- gml-format(1) formats your GML files.
- GML Playground(1) is an interactive GML creation tool.
List of GML manpages
- Using GML
- GML syntax
- Extending GML
- GML object and property reference
- Core::Object
- Layouts
- Widgets
- Breadcrumbbar
- Button
- Calendar
- CheckBox
- ColorInput
- ComboBox
- Frame
- GroupBox
- HorizontalProgressbar
- HorizontalSeparator
- HorizontalSlider
- HorizontalSplitter
- IconView
- ImageWidget
- Label
- ListView
- MultiView
- OpacitySlider
- PasswordBox
- Progressbar
- RadioButton
- ScrollableContainerWidget
- Scrollbar
- Slider
- SpinBox
- StackWidget
- Statusbar
- TableView
- TabWidget
- TextBox
- TextEditor
- Toolbar
- ToolbarContainer
- Tray
- TreeView
- UrlBox
- ValueSlider
- VerticalProgressbar
- VerticalSeparator
- VerticalSlider
- VerticalSplitter
- Widget