Package ch.bailu.gtk.gtk
Interface TextView.OnSelectAll
- Enclosing class:
- TextView
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onSelectAll
(boolean select) Gets emitted to select or unselect the complete contents of the text view.
-
Method Details
-
onSelectAll
void onSelectAll(boolean select) Gets emitted to select or unselect the complete contents of the text view.
The ::select-all signal is a [keybinding signal](class.SignalAction.html).
The default bindings for this signal are
<kbd>Ctrl</kbd>-<kbd>a</kbd> and
<kbd>Ctrl</kbd>-<kbd>/</kbd> for selecting and
<kbd>Shift</kbd>-<kbd>Ctrl</kbd>-<kbd>a</kbd> and
<kbd>Ctrl</kbd>-<kbd>\</kbd> for unselecting.- Parameters:
select
- %TRUE to select, %FALSE to unselect
-