mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2025-01-12 20:03:28 +01:00
Minor fix to section 3
Editing for readability.
This commit is contained in:
parent
ced4e0ce69
commit
6880bebac7
1 changed files with 12 additions and 10 deletions
|
@ -4,15 +4,17 @@
|
||||||
|
|
||||||
### GtkApplication and g\_application\_run
|
### GtkApplication and g\_application\_run
|
||||||
|
|
||||||
Usually people write a programming code to make an application.
|
Usually people write programming code to make an application.
|
||||||
What are applications?
|
What are applications?
|
||||||
Applications are software that runs using libraries, which includes OS, frameworks and so on.
|
Applications are software that runs using libraries, which includes the
|
||||||
In Gtk4 programming, GtkApplication is an object that runs on Gtk libraries.
|
OS, frameworks and so on.
|
||||||
|
In Gtk4 programming, the GtkApplication is a program (or executable) that runs
|
||||||
|
using Gtk libraries.
|
||||||
|
|
||||||
The basic way how to write GtkApplication is as follows.
|
The basic way to write a GtkApplication is as follows.
|
||||||
|
|
||||||
- Creates a GtkApplication instance.
|
- Create a GtkApplication instance.
|
||||||
- Runs the application.
|
- Run the application.
|
||||||
|
|
||||||
That's all.
|
That's all.
|
||||||
Very simple.
|
Very simple.
|
||||||
|
|
Loading…
Reference in a new issue