mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Add Gtk.SizeGroup
This commit is contained in:
parent
b4d4877e07
commit
2224f0958c
9 changed files with 130 additions and 4 deletions
9
tests/sample_errors/size_group_non_widget.blp
Normal file
9
tests/sample_errors/size_group_non_widget.blp
Normal file
|
@ -0,0 +1,9 @@
|
|||
using Gtk 4.0;
|
||||
using GObject 2.0;
|
||||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets: [object];
|
||||
}
|
||||
|
||||
GObject.Object object {}
|
1
tests/sample_errors/size_group_non_widget.err
Normal file
1
tests/sample_errors/size_group_non_widget.err
Normal file
|
@ -0,0 +1 @@
|
|||
6,13,6,Cannot assign GObject.Object to Gtk.Widget
|
7
tests/sample_errors/size_group_obj_dne.blp
Normal file
7
tests/sample_errors/size_group_obj_dne.blp
Normal file
|
@ -0,0 +1,7 @@
|
|||
using Gtk 4.0;
|
||||
using GObject 2.0;
|
||||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets: [object];
|
||||
}
|
1
tests/sample_errors/size_group_obj_dne.err
Normal file
1
tests/sample_errors/size_group_obj_dne.err
Normal file
|
@ -0,0 +1 @@
|
|||
6,13,6,Could not find object with ID object
|
Loading…
Add table
Add a link
Reference in a new issue