package ocgtk
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=4e50fdb5093136a10fc8ffbe388e44cbcb70d52f8afdd48863ec7e22580ff054
doc/ocgtk.gtk/Ocgtk_gtk/Gtk/Wrappers/Text_view/index.html
Module Wrappers.Text_view
type t = [ `text_view | `widget | `initially_unowned | `object_ ] Gobject.objval new_ : unit -> tCreate a new TextView
val new_with_buffer : [ `text_buffer | `object_ ] Gobject.obj -> tCreate a new TextView
val window_to_buffer_coords :
t ->
Gtk_enums.textwindowtype ->
int ->
int ->
int * intConverts coordinates on the window identified by @win to buffer coordinates.
val starts_display_line : t -> [ `text_iter ] Gobject.obj -> boolDetermines whether @iter is at the start of a display line.
See method@Gtk.TextView.forward_display_line for an explanation of display lines vs. paragraphs.
val set_wrap_mode : t -> Gtk_enums.wrapmode -> unitSets the line wrapping for the view.
val set_top_margin : t -> int -> unitSets the top margin for text in @text_view.
Note that this function is confusingly named. In CSS terms, the value set here is padding.
val set_tabs : t -> Ocgtk_pango.Pango.Wrappers.Tab_array.t -> unitSets the default tab stops for paragraphs in @text_view.
Tags in the buffer may override the default.
val set_right_margin : t -> int -> unitSets the default right margin for text in the text view.
Tags in the buffer may override the default.
Note that this function is confusingly named. In CSS terms, the value set here is padding.
val set_pixels_inside_wrap : t -> int -> unitSets the default number of pixels of blank space to leave between display/wrapped lines within a paragraph.
May be overridden by tags in @text_view’s buffer.
val set_pixels_below_lines : t -> int -> unitSets the default number of pixels of blank space to put below paragraphs in @text_view.
May be overridden by tags applied to @text_view’s buffer.
val set_pixels_above_lines : t -> int -> unitSets the default number of blank pixels above paragraphs in @text_view.
Tags in the buffer for @text_view may override the defaults.
val set_overwrite : t -> bool -> unitChanges the `GtkTextView` overwrite mode.
val set_monospace : t -> bool -> unitSets whether the `GtkTextView` should display text in monospace styling.
val set_left_margin : t -> int -> unitSets the default left margin for text in @text_view.
Tags in the buffer may override the default.
Note that this function is confusingly named. In CSS terms, the value set here is padding.
val set_justification : t -> Gtk_enums.justification -> unitSets the default justification of text in @text_view.
Tags in the view’s buffer may override the default.
val set_input_purpose : t -> Gtk_enums.inputpurpose -> unitSets the `input-purpose` of the `GtkTextView`.
The `input-purpose` can be used by on-screen keyboards and other input methods to adjust their behaviour.
val set_input_hints : t -> Gtk_enums.inputhints -> unitSets the `input-hints` of the `GtkTextView`.
The `input-hints` allow input methods to fine-tune their behaviour.
val set_indent : t -> int -> unitSets the default indentation for paragraphs in @text_view.
Tags in the buffer may override the default.
val set_gutter :
t ->
Gtk_enums.textwindowtype ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj option ->
unitPlaces @widget into the gutter specified by @win.
@win must be one of %GTK_TEXT_WINDOW_LEFT, %GTK_TEXT_WINDOW_RIGHT, %GTK_TEXT_WINDOW_TOP, or %GTK_TEXT_WINDOW_BOTTOM.
Sets a menu model to add when constructing the context menu for @text_view.
You can pass %NULL to remove a previously set extra menu.
val set_editable : t -> bool -> unitSets the default editability of the `GtkTextView`.
You can override this default setting with tags in the buffer, using the “editable” attribute of tags.
val set_cursor_visible : t -> bool -> unitToggles whether the insertion point should be displayed.
A buffer with no editable text probably shouldn’t have a visible cursor, so you may want to turn the cursor off.
Note that this property may be overridden by the property@Gtk.Settings:gtk-keynav-use-caret setting.
val set_buffer : t -> [ `text_buffer | `object_ ] Gobject.obj option -> unitSets @buffer as the buffer being displayed by @text_view.
The previous buffer displayed by the text view is unreferenced, and a reference is added to @buffer. If you owned a reference to @buffer before passing it to this function, you must remove that reference yourself; `GtkTextView` will not “adopt” it.
val set_bottom_margin : t -> int -> unitSets the bottom margin for text in @text_view.
Note that this function is confusingly named. In CSS terms, the value set here is padding.
val set_accepts_tab : t -> bool -> unitSets the behavior of the text widget when the <kbd>Tab</kbd> key is pressed.
If @accepts_tab is %TRUE, a tab character is inserted. If @accepts_tab is %FALSE the keyboard focus is moved to the next widget in the focus chain.
Focus can always be moved using <kbd>Ctrl</kbd>+<kbd>Tab</kbd>.
val scroll_to_mark :
t ->
[ `text_mark | `object_ ] Gobject.obj ->
float ->
bool ->
float ->
float ->
unitScrolls @text_view so that @mark is on the screen in the position indicated by @xalign and @yalign.
An alignment of 0.0 indicates left or top, 1.0 indicates right or bottom, 0.5 means center. If @use_align is %FALSE, the text scrolls the minimal distance to get the mark onscreen, possibly not scrolling at all. The effective screen for purposes of this function is reduced by a margin of size @within_margin.
val scroll_to_iter :
t ->
[ `text_iter ] Gobject.obj ->
float ->
bool ->
float ->
float ->
boolScrolls @text_view so that @iter is on the screen in the position indicated by @xalign and @yalign.
An alignment of 0.0 indicates left or top, 1.0 indicates right or bottom, 0.5 means center. If @use_align is %FALSE, the text scrolls the minimal distance to get the mark onscreen, possibly not scrolling at all. The effective screen for purposes of this function is reduced by a margin of size @within_margin.
Note that this function uses the currently-computed height of the lines in the text buffer. Line heights are computed in an idle handler; so this function may not have the desired effect if it’s called before the height computations. To avoid oddness, consider using method@Gtk.TextView.scroll_to_mark which saves a point to be scrolled to after line validation.
val scroll_mark_onscreen : t -> [ `text_mark | `object_ ] Gobject.obj -> unitScrolls @text_view the minimum distance such that @mark is contained within the visible area of the widget.
val reset_im_context : t -> unitReset the input method context of the text view if needed.
This can be necessary in the case where modifying the buffer would confuse on-going input method behavior.
val reset_cursor_blink : t -> unitEnsures that the cursor is shown.
This also resets the time that it will stay blinking (or visible, in case blinking is disabled).
This function should be called in response to user input (e.g. from derived classes that override the textview's event handlers).
val remove :
t ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj ->
unitRemoves a child widget from @text_view.
val place_cursor_onscreen : t -> boolMoves the cursor to the currently visible region of the buffer.
val move_visually : t -> [ `text_iter ] Gobject.obj -> int -> boolMove the iterator a given number of characters visually, treating it as the strong cursor position.
If @count is positive, then the new strong cursor position will be @count positions to the right of the old cursor position. If @count is negative then the new strong cursor position will be @count positions to the left of the old cursor position.
In the presence of bi-directional text, the correspondence between logical and visual order will depend on the direction of the current run, and there may be jumps when the cursor is moved off of the end of a run.
val move_overlay :
t ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj ->
int ->
int ->
unitUpdates the position of a child.
See method@Gtk.TextView.add_overlay.
val move_mark_onscreen : t -> [ `text_mark | `object_ ] Gobject.obj -> boolMoves a mark within the buffer so that it's located within the currently-visible text area.
val im_context_filter_keypress : t -> Ocgtk_gdk.Gdk.Wrappers.Event.t -> boolAllow the `GtkTextView` input method to internally handle key press and release events.
If this function returns %TRUE, then no further processing should be done for this key event. See method@Gtk.IMContext.filter_keypress.
Note that you are expected to call this function from your handler when overriding key event handling. This is needed in the case when you need to insert your own key handling between the input method and the default key event handling of the `GtkTextView`.
```c static gboolean gtk_foo_bar_key_press_event (GtkWidget *widget, GdkEvent *event)
guint keyval;
gdk_event_get_keyval ((GdkEvent*\)event, &keyval);
if (keyval == GDK_KEY_Return || keyval == GDK_KEY_KP_Enter)
{
if (gtk_text_view_im_context_filter_keypress (GTK_TEXT_VIEW (widget), event))
return TRUE;
// Do some stuff
return GTK_WIDGET_CLASS (gtk_foo_bar_parent_class)->key_press_event (widget, event);
}
```
val get_wrap_mode : t -> Gtk_enums.wrapmodeGets the line wrapping for the view.
val get_visible_rect : t -> Ocgtk_gdk.Gdk.Wrappers.Rectangle.tFills @visible_rect with the currently-visible region of the buffer, in buffer coordinates.
Convert to window coordinates with method@Gtk.TextView.buffer_to_window_coords.
val get_top_margin : t -> intGets the top margin for text in the @text_view.
val get_tabs : t -> Ocgtk_pango.Pango.Wrappers.Tab_array.t optionGets the default tabs for @text_view.
Tags in the buffer may override the defaults. The returned array will be %NULL if “standard” (8-space) tabs are used. Free the return value with method@Pango.TabArray.free.
val get_rtl_context : t -> Ocgtk_pango.Pango.Wrappers.Context.tGets the `PangoContext` that is used for rendering RTL directed text layouts.
The context may be replaced when CSS changes occur.
val get_right_margin : t -> intGets the default right margin for text in @text_view.
Tags in the buffer may override the default.
val get_pixels_inside_wrap : t -> intGets the default number of pixels to put between wrapped lines inside a paragraph.
val get_pixels_below_lines : t -> intGets the default number of pixels to put below paragraphs.
The line space is the sum of the value returned by this function and the value returned by method@Gtk.TextView.get_pixels_above_lines.
val get_pixels_above_lines : t -> intGets the default number of pixels to put above paragraphs.
Adding this function with method@Gtk.TextView.get_pixels_below_lines is equal to the line space between each paragraph.
val get_overwrite : t -> boolReturns whether the `GtkTextView` is in overwrite mode or not.
val get_monospace : t -> boolGets whether the `GtkTextView` uses monospace styling.
val get_ltr_context : t -> Ocgtk_pango.Pango.Wrappers.Context.tGets the `PangoContext` that is used for rendering LTR directed text layouts.
The context may be replaced when CSS changes occur.
val get_line_yrange : t -> [ `text_iter ] Gobject.obj -> int * intGets the y coordinate of the top of the line containing @iter, and the height of the line.
The coordinate is a buffer coordinate; convert to window coordinates with method@Gtk.TextView.buffer_to_window_coords.
val get_line_at_y : t -> int -> [ `text_iter ] Gobject.obj * intGets the `GtkTextIter` at the start of the line containing the coordinate @y.
@y is in buffer coordinates, convert from window coordinates with method@Gtk.TextView.window_to_buffer_coords. If non-%NULL, @line_top will be filled with the coordinate of the top edge of the line.
val get_left_margin : t -> intGets the default left margin size of paragraphs in the @text_view.
Tags in the buffer may override the default.
val get_justification : t -> Gtk_enums.justificationGets the default justification of paragraphs in @text_view.
Tags in the buffer may override the default.
val get_iter_location :
t ->
[ `text_iter ] Gobject.obj ->
Ocgtk_gdk.Gdk.Wrappers.Rectangle.tGets a rectangle which roughly contains the character at @iter.
The rectangle position is in buffer coordinates; use method@Gtk.TextView.buffer_to_window_coords to convert these coordinates to coordinates for one of the windows in the text view.
val get_iter_at_position :
t ->
int ->
int ->
bool * [ `text_iter ] Gobject.obj * intRetrieves the iterator pointing to the character at buffer coordinates @x and @y.
Buffer coordinates are coordinates for the entire buffer, not just the currently-displayed portion. If you have coordinates from an event, you have to convert those to buffer coordinates with method@Gtk.TextView.window_to_buffer_coords.
Note that this is different from method@Gtk.TextView.get_iter_at_location, which returns cursor locations, i.e. positions between characters.
val get_iter_at_location : t -> int -> int -> bool * [ `text_iter ] Gobject.objRetrieves the iterator at buffer coordinates @x and @y.
Buffer coordinates are coordinates for the entire buffer, not just the currently-displayed portion. If you have coordinates from an event, you have to convert those to buffer coordinates with method@Gtk.TextView.window_to_buffer_coords.
val get_input_purpose : t -> Gtk_enums.inputpurposeGets the `input-purpose` of the `GtkTextView`.
val get_input_hints : t -> Gtk_enums.inputhintsGets the `input-hints` of the `GtkTextView`.
val get_indent : t -> intGets the default indentation of paragraphs in @text_view.
Tags in the view’s buffer may override the default. The indentation may be negative.
val get_gutter :
t ->
Gtk_enums.textwindowtype ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj optionGets a `GtkWidget` that has previously been set as gutter.
See method@Gtk.TextView.set_gutter.
@win must be one of %GTK_TEXT_WINDOW_LEFT, %GTK_TEXT_WINDOW_RIGHT, %GTK_TEXT_WINDOW_TOP, or %GTK_TEXT_WINDOW_BOTTOM.
Gets the menu model that gets added to the context menu or %NULL if none has been set.
val get_editable : t -> boolReturns the default editability of the `GtkTextView`.
Tags in the buffer may override this setting for some ranges of text.
val get_cursor_visible : t -> boolFind out whether the cursor should be displayed.
val get_cursor_locations :
t ->
[ `text_iter ] Gobject.obj option ->
Ocgtk_gdk.Gdk.Wrappers.Rectangle.t * Ocgtk_gdk.Gdk.Wrappers.Rectangle.tDetermine the positions of the strong and weak cursors if the insertion point is at @iter.
The position of each cursor is stored as a zero-width rectangle. The strong cursor location is the location where characters of the directionality equal to the base direction of the paragraph are inserted. The weak cursor location is the location where characters of the directionality opposite to the base direction of the paragraph are inserted.
If @iter is %NULL, the actual cursor position is used.
Note that if @iter happens to be the actual cursor position, and there is currently an IM preedit sequence being entered, the returned locations will be adjusted to account for the preedit cursor’s offset within the preedit sequence.
The rectangle position is in buffer coordinates; use method@Gtk.TextView.buffer_to_window_coords to convert these coordinates to coordinates for one of the windows in the text view.
val get_buffer : t -> [ `text_buffer | `object_ ] Gobject.objReturns the `GtkTextBuffer` being displayed by this text view.
The reference count on the buffer is not incremented; the caller of this function won’t own a new reference.
val get_bottom_margin : t -> intGets the bottom margin for text in the @text_view.
val get_accepts_tab : t -> boolReturns whether pressing the <kbd>Tab</kbd> key inserts a tab characters.
See method@Gtk.TextView.set_accepts_tab.
val forward_display_line_end : t -> [ `text_iter ] Gobject.obj -> boolMoves the given @iter forward to the next display line end.
A display line is different from a paragraph. Paragraphs are separated by newlines or other paragraph separator characters. Display lines are created by line-wrapping a paragraph. If wrapping is turned off, display lines and paragraphs will be the same. Display lines are divided differently for each view, since they depend on the view’s width; paragraphs are the same in all views, since they depend on the contents of the `GtkTextBuffer`.
val forward_display_line : t -> [ `text_iter ] Gobject.obj -> boolMoves the given @iter forward by one display (wrapped) line.
A display line is different from a paragraph. Paragraphs are separated by newlines or other paragraph separator characters. Display lines are created by line-wrapping a paragraph. If wrapping is turned off, display lines and paragraphs will be the same. Display lines are divided differently for each view, since they depend on the view’s width; paragraphs are the same in all views, since they depend on the contents of the `GtkTextBuffer`.
val buffer_to_window_coords :
t ->
Gtk_enums.textwindowtype ->
int ->
int ->
int * intConverts buffer coordinates to window coordinates.
val backward_display_line_start : t -> [ `text_iter ] Gobject.obj -> boolMoves the given @iter backward to the next display line start.
A display line is different from a paragraph. Paragraphs are separated by newlines or other paragraph separator characters. Display lines are created by line-wrapping a paragraph. If wrapping is turned off, display lines and paragraphs will be the same. Display lines are divided differently for each view, since they depend on the view’s width; paragraphs are the same in all views, since they depend on the contents of the `GtkTextBuffer`.
val backward_display_line : t -> [ `text_iter ] Gobject.obj -> boolMoves the given @iter backward by one display (wrapped) line.
A display line is different from a paragraph. Paragraphs are separated by newlines or other paragraph separator characters. Display lines are created by line-wrapping a paragraph. If wrapping is turned off, display lines and paragraphs will be the same. Display lines are divided differently for each view, since they depend on the view’s width; paragraphs are the same in all views, since they depend on the contents of the `GtkTextBuffer`.
val add_overlay :
t ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj ->
int ->
int ->
unitAdds @child at a fixed coordinate in the `GtkTextView`'s text window.
The @xpos and @ypos must be in buffer coordinates (see method@Gtk.TextView.get_iter_location to convert to buffer coordinates).
@child will scroll with the text view.
If instead you want a widget that will not move with the `GtkTextView` contents see `GtkOverlay`.
val add_child_at_anchor :
t ->
[ `widget | `initially_unowned | `object_ ] Gobject.obj ->
[ `text_child_anchor | `object_ ] Gobject.obj ->
unitAdds a child widget in the text buffer, at the given @anchor.
val get_im_module : t -> stringGet property: im-module
val set_im_module : t -> string -> unitSet property: im-module
val on_backspace :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_copy_clipboard :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_cut_clipboard :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_delete_from_cursor :
?after:bool ->
t ->
callback:(type_:Gtk_enums.deletetype -> count:int -> unit) ->
Gobject.Signal.handler_idval on_insert_at_cursor :
?after:bool ->
t ->
callback:(string:string -> unit) ->
Gobject.Signal.handler_idval on_insert_emoji :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_move_cursor :
?after:bool ->
t ->
callback:
(step:Gtk_enums.movementstep -> count:int -> extend_selection:bool -> unit) ->
Gobject.Signal.handler_idval on_move_viewport :
?after:bool ->
t ->
callback:(step:Gtk_enums.scrollstep -> count:int -> unit) ->
Gobject.Signal.handler_idval on_paste_clipboard :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_preedit_changed :
?after:bool ->
t ->
callback:(preedit:string -> unit) ->
Gobject.Signal.handler_idval on_select_all :
?after:bool ->
t ->
callback:(select:bool -> unit) ->
Gobject.Signal.handler_idval on_set_anchor :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_toggle_cursor_visible :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_idval on_toggle_overwrite :
?after:bool ->
t ->
callback:(unit -> unit) ->
Gobject.Signal.handler_id