mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2024-11-16 19:50:35 +01:00
Fix typos.
This commit is contained in:
parent
39036e7761
commit
cd87b5895c
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
|||
# Widgets (2)
|
||||
|
||||
## GtkTextView, GtkTextbuffer and GtkScrolledWindow
|
||||
## GtkTextView, GtkTextBuffer and GtkScrolledWindow
|
||||
|
||||
### GtkTextView and GtkTextBuffer
|
||||
|
||||
GtkTextview is a widget for multi-line text editing.
|
||||
GtkTextView is a widget for multi-line text editing.
|
||||
GtkTextBuffer is a text buffer which is connected to GtkTextView.
|
||||
See the sample program `tfv1.c` below.
|
||||
|
||||
|
@ -29,7 +29,7 @@ Now compile and run it.
|
|||
![GtkTextView](../image/screenshot_tfv1.png){width=6.3cm height=5.325cm}
|
||||
|
||||
There's an I-beam pointer in the window.
|
||||
You can add or delete any characters on the GtkTextview,
|
||||
You can add or delete any characters on the GtkTextView,
|
||||
and your changes are kept in the GtkTextBuffer.
|
||||
If you add more characters beyond the limit of the window, the height increases and the window extends.
|
||||
If the height gets bigger than the height of the display screen, you won't be
|
||||
|
|
Loading…
Reference in a new issue