update readme

This commit is contained in:
yggverse 2024-09-27 20:49:44 +03:00
parent b3c7545717
commit 8b521e459a

View File

@ -38,11 +38,11 @@ This guide in process
* access 1 level of child API, never parents (e.g.`super`) * access 1 level of child API, never parents (e.g.`super`)
* implement only one `struct` (same as one file for one class) * implement only one `struct` (same as one file for one class)
* `struct` is public, where members - private * `struct` is public, where members - private
* contain `struct` implementation: * contain main `struct` implementation:
* at least one constructor that must return: * at least one constructor that must return:
* raw `struct` (`new() -> Self`) without cover to any kind of smart `std` or `glib` pointers * unwrapped main `Self` structure
* ownership to new object created * granted ownership for new object created
* one public link getter for privately constructed widget (`widget -> &Gtk`) * public link getter for privately constructed widget
### Contribution ### Contribution