1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
|
{-# LANGUAGE CPP #-}
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget TextView
--
-- Author : Axel Simon
--
-- Created: 23 February 2002
--
-- Copyright (C) 2002-2005 Axel Simon
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
--
-- This library is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
--
-- TODO
--
-- If PangoTabArray is bound:
-- Fucntions: textViewSetTabs and textViewGetTabs
-- Properties: textViewTabs
--
-- All on... and after... signales had incorrect names (underscore instead of hypens). Thus
-- they could not have been used in applications and removing them can't break anything.
-- Thus, I've removed them. Also, all key-binding singals are now removed as there is
-- no way to add additional key bindings programatically in a type-safe way, let alone
-- use these signals.
--
-- |
-- Maintainer : gtk2hs-users@lists.sourceforge.net
-- Stability : provisional
-- Portability : portable (depends on GHC)
--
-- Widget that displays a 'TextBuffer'
--
module Graphics.UI.Gtk.Multiline.TextView (
-- * Detail
--
-- | You may wish to begin by reading the text widget conceptual overview
-- which gives an overview of all the objects and data types related to the
-- text widget and how they work together.
--
-- Throughout we distinguish between buffer coordinates which are pixels with
-- the origin at the upper left corner of the first character on the first
-- line. Window coordinates are relative to the top left pixel which is visible
-- in the current 'TextView'. Coordinates from Events are in the latter
-- relation. The conversion can be done with 'textViewWindowToBufferCoords'.
-- * Class Hierarchy
-- |
-- @
-- | 'GObject'
-- | +----'Object'
-- | +----'Widget'
-- | +----'Container'
-- | +----TextView
-- |
-- |
-- | 'GObject'
-- | +----TextChildAnchor
-- @
-- * Types
TextView,
TextViewClass,
TextChildAnchor,
TextChildAnchorClass,
castToTextView, gTypeTextView,
toTextView,
DeleteType(..),
DirectionType(..),
Justification(..),
MovementStep(..),
TextWindowType(..),
WrapMode(..),
-- * Constructors
textViewNew,
textViewNewWithBuffer,
-- * Methods
textViewSetBuffer,
textViewGetBuffer,
textViewScrollToMark,
textViewScrollToIter,
textViewScrollMarkOnscreen,
textViewMoveMarkOnscreen,
textViewPlaceCursorOnscreen,
textViewGetLineAtY,
textViewGetLineYrange,
textViewGetIterAtLocation,
textViewBufferToWindowCoords,
textViewWindowToBufferCoords,
textViewGetWindow,
textViewGetWindowType,
textViewSetBorderWindowSize,
textViewGetBorderWindowSize,
textViewForwardDisplayLine,
textViewBackwardDisplayLine,
textViewForwardDisplayLineEnd,
textViewBackwardDisplayLineStart,
textViewStartsDisplayLine,
textViewMoveVisually,
textViewAddChildAtAnchor,
textChildAnchorNew,
textChildAnchorGetWidgets,
textChildAnchorGetDeleted,
textViewAddChildInWindow,
textViewMoveChild,
textViewSetWrapMode,
textViewGetWrapMode,
textViewSetEditable,
textViewGetEditable,
textViewSetCursorVisible,
textViewGetCursorVisible,
textViewSetPixelsAboveLines,
textViewGetPixelsAboveLines,
textViewSetPixelsBelowLines,
textViewGetPixelsBelowLines,
textViewSetPixelsInsideWrap,
textViewGetPixelsInsideWrap,
textViewSetJustification,
textViewGetJustification,
textViewSetLeftMargin,
textViewGetLeftMargin,
textViewSetRightMargin,
textViewGetRightMargin,
textViewSetIndent,
textViewGetIndent,
textViewGetDefaultAttributes,
textViewGetVisibleRect,
textViewGetIterLocation,
#if GTK_CHECK_VERSION(2,6,0)
textViewGetIterAtPosition,
#endif
#if GTK_CHECK_VERSION(2,4,0)
textViewSetOverwrite,
textViewGetOverwrite,
textViewSetAcceptsTab,
textViewGetAcceptsTab,
#endif
-- * Attributes
textViewPixelsAboveLines,
textViewPixelsBelowLines,
textViewPixelsInsideWrap,
textViewEditable,
textViewImModule,
textViewWrapMode,
textViewJustification,
textViewLeftMargin,
textViewRightMargin,
textViewIndent,
textViewCursorVisible,
textViewBuffer,
#if GTK_CHECK_VERSION(2,4,0)
textViewOverwrite,
textViewAcceptsTab,
#endif
-- * Signals
backspace,
copyClipboard,
cutClipboard,
deleteFromCursor,
insertAtCursor,
moveCursor,
moveViewport,
moveFocus,
pageHorizontally,
pasteClipboard,
populatePopup,
selectAll,
setAnchor,
setTextViewScrollAdjustments,
toggleCursorVisible,
toggleOverwrite,
) where
import Control.Monad (liftM)
import System.Glib.FFI
import System.Glib.Attributes
import System.Glib.Properties (newAttrFromStringProperty)
import Graphics.UI.Gtk.Abstract.Object (makeNewObject)
import System.Glib.GObject (constructNewGObject, makeNewGObject)
{#import Graphics.UI.Gtk.Types#}
{#import Graphics.UI.Gtk.Signals#}
{#import Graphics.UI.Gtk.Multiline.Types#}
{#import Graphics.UI.Gtk.Multiline.TextIter#}
{#import Graphics.UI.Gtk.Multiline.TextTag#}
import Graphics.UI.Gtk.General.Enums (TextWindowType(..), DeleteType(..),
DirectionType(..), Justification(..),
MovementStep(..), WrapMode(..),
ScrollStep (..))
import System.Glib.GList (fromGList)
import Graphics.UI.Gtk.General.Structs (Rectangle(..))
{# context lib="gtk" prefix="gtk" #}
--------------------
-- Constructors
-- | Creates a new 'TextView'. If you don't call 'textViewSetBuffer' before
-- using the text view, an empty default buffer will be created for you. Get
-- the buffer with 'textViewGetBuffer'. If you want to specify your own buffer,
-- consider 'textViewNewWithBuffer'.
--
textViewNew :: IO TextView
textViewNew =
makeNewObject mkTextView $
liftM (castPtr :: Ptr Widget -> Ptr TextView) $
{# call unsafe text_view_new #}
-- | Creates a new 'TextView' widget displaying the buffer @buffer@. One
-- buffer can be shared among many widgets.
--
textViewNewWithBuffer :: TextBufferClass buffer => buffer -> IO TextView
textViewNewWithBuffer buffer =
makeNewObject mkTextView $
liftM (castPtr :: Ptr Widget -> Ptr TextView) $
{# call text_view_new_with_buffer #}
(toTextBuffer buffer)
--------------------
-- Methods
-- | Sets the given buffer as the buffer being displayed by the text view.
--
textViewSetBuffer :: (TextViewClass self, TextBufferClass buffer) => self -> buffer -> IO ()
textViewSetBuffer self buffer =
{# call text_view_set_buffer #}
(toTextView self)
(toTextBuffer buffer)
-- | Returns the 'TextBuffer' being displayed by this text view.
--
textViewGetBuffer :: TextViewClass self => self -> IO TextBuffer
textViewGetBuffer self =
makeNewGObject mkTextBuffer $
{# call unsafe text_view_get_buffer #}
(toTextView self)
-- | Scrolls the 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 the alignment is
-- @Nothing@, 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 @withinMargin@.
--
textViewScrollToMark :: (TextViewClass self, TextMarkClass mark) => self
-> mark -- ^ @mark@ - a 'TextMark'
-> Double -- ^ @withinMargin@ - margin as a [0.0,0.5) fraction of screen size
-- and imposes an extra margin at all four sides of the window
-- within which @xalign@ and @yalign@ are evaluated.
-> Maybe (Double, Double) -- ^ @Just (xalign, yalign)@ - horizontal and
-- vertical alignment of mark within visible area (if @Nothing@,
-- scroll just enough to get the mark onscreen)
-> IO ()
textViewScrollToMark self mark withinMargin align =
let (useAlign, xalign, yalign) = case align of
Nothing -> (False, 0, 0)
Just (xalign, yalign) -> (True, xalign, yalign)
in
{# call text_view_scroll_to_mark #}
(toTextView self)
(toTextMark mark)
(realToFrac withinMargin)
(fromBool useAlign)
(realToFrac xalign)
(realToFrac yalign)
-- | Scrolls the 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 the alignment is
-- @Nothing@, 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 @withinMargin@.
--
-- * This function
-- uses the currently-computed height of the lines in the text buffer. Note
-- that 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 'textViewScrollToMark' which saves a point
-- to be scrolled to after line validation. This is particularly important
-- if you add new text to the buffer and immediately ask the view to scroll
-- to it (which it can't since it is not updated until the main loop runs).
--
textViewScrollToIter :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> Double -- ^ @withinMargin@ - margin as a [0.0,0.5) fraction of screen
-- size
-> Maybe (Double, Double) -- ^ @Just (xalign, yalign)@ - horizontal and
-- vertical alignment of mark within visible area (if @Nothing@,
-- scroll just enough to get the iterator onscreen)
-> IO Bool -- ^ returns @True@ if scrolling occurred
textViewScrollToIter self iter withinMargin align =
let (useAlign, xalign, yalign) = case align of
Nothing -> (False, 0, 0)
Just (xalign, yalign) -> (True, xalign, yalign)
in
liftM toBool $
{# call text_view_scroll_to_iter #}
(toTextView self)
iter
(realToFrac withinMargin)
(fromBool useAlign)
(realToFrac xalign)
(realToFrac yalign)
-- | Scrolls the text view the minimum distance such that @mark@ is contained
-- within the visible area of the widget.
--
textViewScrollMarkOnscreen :: (TextViewClass self, TextMarkClass mark) => self
-> mark -- ^ @mark@ - a mark in the buffer for the text view
-> IO ()
textViewScrollMarkOnscreen self mark =
{# call text_view_scroll_mark_onscreen #}
(toTextView self)
(toTextMark mark)
-- | Moves a mark within the buffer so that it's located within the
-- currently-visible text area.
--
textViewMoveMarkOnscreen :: (TextViewClass self, TextMarkClass mark) => self
-> mark -- ^ @mark@ - a 'TextMark'
-> IO Bool -- ^ returns @True@ if the mark moved (wasn't already onscreen)
textViewMoveMarkOnscreen self mark =
liftM toBool $
{# call text_view_move_mark_onscreen #}
(toTextView self)
(toTextMark mark)
-- | Moves the cursor to the currently visible region of the buffer, it it
-- isn't there already.
--
textViewPlaceCursorOnscreen :: TextViewClass self => self
-> IO Bool -- ^ returns @True@ if the cursor had to be moved.
textViewPlaceCursorOnscreen self =
liftM toBool $
{# call text_view_place_cursor_onscreen #}
(toTextView self)
-- | Returns the currently-visible region of the buffer, in
-- buffer coordinates. Convert to window coordinates with
-- 'textViewBufferToWindowCoords'.
--
textViewGetVisibleRect :: TextViewClass self => self -> IO Rectangle
textViewGetVisibleRect self =
alloca $ \rectPtr -> do
{# call unsafe text_view_get_visible_rect #}
(toTextView self)
(castPtr rectPtr)
peek rectPtr
-- | Gets a rectangle which roughly contains the character at @iter@. The
-- rectangle position is in buffer coordinates; use
-- 'textViewBufferToWindowCoords' to convert these coordinates to coordinates
-- for one of the windows in the text view.
--
textViewGetIterLocation :: TextViewClass self => self -> TextIter -> IO Rectangle
textViewGetIterLocation self iter =
alloca $ \rectPtr -> do
{# call unsafe text_view_get_iter_location #}
(toTextView self)
iter
(castPtr rectPtr)
peek rectPtr
-- | Gets the 'TextIter' at the start of the line containing the coordinate
-- @y@. @y@ is in buffer coordinates, convert from window coordinates with
-- 'textViewWindowToBufferCoords'. Also returns @lineTop@ the
-- coordinate of the top edge of the line.
--
textViewGetLineAtY :: TextViewClass self => self
-> Int -- ^ @y@ - a y coordinate
-> IO (TextIter, Int) -- ^ @(targetIter, lineTop)@ - returns the iter and the
-- top coordinate of the line
textViewGetLineAtY self y =
makeEmptyTextIter >>= \targetIter ->
alloca $ \lineTopPtr -> do
{# call unsafe text_view_get_line_at_y #}
(toTextView self)
targetIter
(fromIntegral y)
lineTopPtr
lineTop <- peek lineTopPtr
return (targetIter, fromIntegral lineTop)
-- | Gets 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 'textViewBufferToWindowCoords'.
--
textViewGetLineYrange :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO (Int, Int) -- ^ @(y, height)@ - y coordinate and height of the line
textViewGetLineYrange self iter =
alloca $ \yPtr ->
alloca $ \heightPtr -> do
{# call unsafe text_view_get_line_yrange #}
(toTextView self)
iter
yPtr
heightPtr
y <- peek yPtr
height <- peek heightPtr
return (fromIntegral y, fromIntegral height)
-- | Retrieves 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 'textViewWindowToBufferCoords'.
--
textViewGetIterAtLocation :: TextViewClass self => self
-> Int -- ^ @x@ - x position, in buffer coordinates
-> Int -- ^ @y@ - y position, in buffer coordinates
-> IO TextIter
textViewGetIterAtLocation self x y = do
iter <- makeEmptyTextIter
{# call unsafe text_view_get_iter_at_location #}
(toTextView self)
iter
(fromIntegral x)
(fromIntegral y)
return iter
-- | Converts coordinate @(bufferX, bufferY)@ to coordinates for the window
-- @win@
--
-- Note that you can't convert coordinates for a nonexisting window (see
-- 'textViewSetBorderWindowSize').
--
textViewBufferToWindowCoords :: TextViewClass self => self
-> TextWindowType -- ^ @win@ - a 'TextWindowType' except 'TextWindowPrivate'
-> (Int, Int) -- ^ @(bufferX, bufferY)@ - buffer x and y coordinates
-> IO (Int, Int) -- ^ returns window x and y coordinates
textViewBufferToWindowCoords self win (bufferX, bufferY) =
alloca $ \windowXPtr ->
alloca $ \windowYPtr -> do
{# call unsafe text_view_buffer_to_window_coords #}
(toTextView self)
((fromIntegral . fromEnum) win)
(fromIntegral bufferX)
(fromIntegral bufferY)
windowXPtr
windowYPtr
windowX <- peek windowXPtr
windowY <- peek windowYPtr
return (fromIntegral windowX, fromIntegral windowY)
-- | Converts coordinates on the window identified by @win@ to buffer
-- coordinates.
--
-- Note that you can't convert coordinates for a nonexisting window (see
-- 'textViewSetBorderWindowSize').
--
textViewWindowToBufferCoords :: TextViewClass self => self
-> TextWindowType -- ^ @win@ - a 'TextWindowType' except 'TextWindowPrivate'
-> (Int, Int) -- ^ @(windowX, windowY)@ - window x and y coordinates
-> IO (Int, Int) -- ^ returns buffer x and y coordinates
textViewWindowToBufferCoords self win (windowX, windowY) =
alloca $ \bufferXPtr ->
alloca $ \bufferYPtr -> do
{# call unsafe text_view_window_to_buffer_coords #}
(toTextView self)
((fromIntegral . fromEnum) win)
(fromIntegral windowX)
(fromIntegral windowY)
bufferXPtr
bufferYPtr
bufferX <- peek bufferXPtr
bufferY <- peek bufferYPtr
return (fromIntegral bufferX, fromIntegral bufferY)
-- | Retrieves the 'DrawWindow' corresponding to an area of the text view;
-- possible windows include the overall widget window, child windows on the
-- left, right, top, bottom, and the window that displays the text buffer.
-- Windows are @Nothing@ and nonexistent if their width or height is 0, and are
-- nonexistent before the widget has been realized.
--
textViewGetWindow :: TextViewClass self => self
-> TextWindowType -- ^ @win@ - window to get
-> IO (Maybe DrawWindow) -- ^ returns a 'DrawWindow', or @Nothing@
textViewGetWindow self win =
maybeNull (makeNewGObject mkDrawWindow) $
{# call unsafe text_view_get_window #}
(toTextView self)
((fromIntegral . fromEnum) win)
-- | Retrieve the type of window the 'TextView' widget contains.
--
-- Usually used to find out which window an event corresponds to. An emission
-- of an event signal of 'TextView' yields a 'DrawWindow'. This function can be
-- used to see if the event actually belongs to the main text window.
--
textViewGetWindowType :: TextViewClass self => self
-> DrawWindow
-> IO TextWindowType
textViewGetWindowType self window =
liftM (toEnum . fromIntegral) $
{# call unsafe text_view_get_window_type #}
(toTextView self)
window
-- | Sets the width of 'TextWindowLeft' or 'TextWindowRight', or the height of
-- 'TextWindowTop' or 'TextWindowBottom'. Automatically destroys the
-- corresponding window if the size is set to 0, and creates the window if the
-- size is set to non-zero. This function can only be used for the \"border
-- windows\", it doesn't work with 'TextWindowWidget', 'TextWindowText', or
-- 'TextWindowPrivate'.
--
textViewSetBorderWindowSize :: TextViewClass self => self
-> TextWindowType -- ^ @type@ - window to affect
-> Int -- ^ @size@ - width or height of the window
-> IO ()
textViewSetBorderWindowSize self type_ size =
{# call text_view_set_border_window_size #}
(toTextView self)
((fromIntegral . fromEnum) type_)
(fromIntegral size)
-- | Gets the width of the specified border window. See
-- 'textViewSetBorderWindowSize'.
--
textViewGetBorderWindowSize :: TextViewClass self => self
-> TextWindowType -- ^ @type@ - window to return size from
-> IO Int -- ^ returns width of window
textViewGetBorderWindowSize self type_ =
liftM fromIntegral $
{# call unsafe text_view_get_border_window_size #}
(toTextView self)
((fromIntegral . fromEnum) type_)
-- | Moves 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 'TextBuffer'.
--
textViewForwardDisplayLine :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO Bool -- ^ returns @True@ if @iter@ was moved and is not on the end
-- iterator
textViewForwardDisplayLine self iter =
liftM toBool $
{# call unsafe text_view_forward_display_line #}
(toTextView self)
iter
-- | Moves 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 'TextBuffer'.
--
textViewBackwardDisplayLine :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO Bool -- ^ returns @True@ if @iter@ was moved and is not on the end
-- iterator
textViewBackwardDisplayLine self iter =
liftM toBool $
{# call unsafe text_view_backward_display_line #}
(toTextView self)
iter
-- | Moves 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 'TextBuffer'.
--
textViewForwardDisplayLineEnd :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO Bool -- ^ returns @True@ if @iter@ was moved and is not on the end
-- iterator
textViewForwardDisplayLineEnd self iter =
liftM toBool $
{# call unsafe text_view_forward_display_line_end #}
(toTextView self)
iter
-- | Moves 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 'TextBuffer'.
--
textViewBackwardDisplayLineStart :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO Bool -- ^ returns @True@ if @iter@ was moved and is not on the end
-- iterator
textViewBackwardDisplayLineStart self iter =
liftM toBool $
{# call unsafe text_view_backward_display_line_start #}
(toTextView self)
iter
-- | Determines whether @iter@ is at the start of a display line. See
-- 'textViewForwardDisplayLine' for an explanation of display lines vs.
-- paragraphs.
--
textViewStartsDisplayLine :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> IO Bool -- ^ returns @True@ if @iter@ begins a wrapped line
textViewStartsDisplayLine self iter =
liftM toBool $
{# call unsafe text_view_starts_display_line #}
(toTextView self)
iter
-- | Move 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 bidirection 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.
--
textViewMoveVisually :: TextViewClass self => self
-> TextIter -- ^ @iter@ - a 'TextIter'
-> Int -- ^ @count@ - number of characters to move (negative moves left,
-- positive moves right)
-> IO Bool -- ^ returns @True@ if @iter@ moved and is not on the end
-- iterator
textViewMoveVisually self iter count =
liftM toBool $
{# call unsafe text_view_move_visually #}
(toTextView self)
iter
(fromIntegral count)
-- | Adds a child widget in the text buffer, at the given @anchor@.
--
textViewAddChildAtAnchor :: (TextViewClass self, WidgetClass child) => self
-> child -- ^ @child@ - a 'Widget'
-> TextChildAnchor -- ^ @anchor@ - a 'TextChildAnchor' in the 'TextBuffer'
-- for the text view
-> IO ()
textViewAddChildAtAnchor self child anchor =
{# call text_view_add_child_at_anchor #}
(toTextView self)
(toWidget child)
anchor
-- | Create a new 'TextChildAnchor'.
--
-- * Using 'textBufferCreateChildAnchor' is usually simpler then
-- executing this function and 'textBufferInsertChildAnchor'.
--
textChildAnchorNew :: IO TextChildAnchor
textChildAnchorNew =
constructNewGObject mkTextChildAnchor
{# call unsafe text_child_anchor_new #}
-- | Retrieve all 'Widget's at this
-- 'TextChildAnchor'.
--
-- * The widgets in the returned list need to be upcasted to what they were.
--
textChildAnchorGetWidgets :: TextChildAnchor -> IO [Widget]
textChildAnchorGetWidgets tca = do
gList <- {# call text_child_anchor_get_widgets #} tca
wList <- fromGList gList
mapM (makeNewObject mkWidget) (map return wList)
-- | Query if an anchor was deleted.
--
textChildAnchorGetDeleted :: TextChildAnchor -> IO Bool
textChildAnchorGetDeleted tca =
liftM toBool $
{# call unsafe text_child_anchor_get_deleted #} tca
-- | Adds a child at fixed coordinates in one of the text widget's windows.
-- The window must have nonzero size (see 'textViewSetBorderWindowSize'). Note
-- that the child coordinates are given relative to the 'DrawWindow' in
-- question, and that these coordinates have no sane relationship to scrolling.
-- When placing a child in 'TextWindowWidget', scrolling is irrelevant, the
-- child floats above all scrollable areas. If you want the widget to move when
-- the text view scrolls, use 'textViewAddChildAtAnchor' instead.
--
textViewAddChildInWindow :: (TextViewClass self, WidgetClass child) => self
-> child -- ^ @child@ - a 'Widget'
-> TextWindowType -- ^ @whichWindow@ - which window the child should appear
-- in
-> Int -- ^ @xpos@ - X position of child in window coordinates
-> Int -- ^ @ypos@ - Y position of child in window coordinates
-> IO ()
textViewAddChildInWindow self child whichWindow xpos ypos =
{# call text_view_add_child_in_window #}
(toTextView self)
(toWidget child)
((fromIntegral . fromEnum) whichWindow)
(fromIntegral xpos)
(fromIntegral ypos)
-- | Move a child widget within the 'TextView'. This is really only apprpriate
-- for \"floating\" child widgets added using 'textViewAddChildInWindow'.
--
textViewMoveChild :: (TextViewClass self, WidgetClass child) => self
-> child -- ^ @child@ - child widget already added to the text view
-> Int -- ^ @xpos@ - new X position in window coordinates
-> Int -- ^ @ypos@ - new Y position in window coordinates
-> IO ()
textViewMoveChild self child xpos ypos =
{# call text_view_move_child #}
(toTextView self)
(toWidget child)
(fromIntegral xpos)
(fromIntegral ypos)
-- | Sets the line wrapping for the view.
--
textViewSetWrapMode :: TextViewClass self => self -> WrapMode -> IO ()
textViewSetWrapMode self wrapMode =
{# call text_view_set_wrap_mode #}
(toTextView self)
((fromIntegral . fromEnum) wrapMode)
-- | Gets the line wrapping for the view.
--
textViewGetWrapMode :: TextViewClass self => self -> IO WrapMode
textViewGetWrapMode self =
liftM (toEnum . fromIntegral) $
{# call unsafe text_view_get_wrap_mode #}
(toTextView self)
-- | Sets the default editability of the 'TextView'. You can override this
-- default setting with tags in the buffer, using the \"editable\" attribute of
-- tags.
--
textViewSetEditable :: TextViewClass self => self -> Bool -> IO ()
textViewSetEditable self setting =
{# call text_view_set_editable #}
(toTextView self)
(fromBool setting)
-- | Returns the default editability of the 'TextView'. Tags in the buffer may
-- override this setting for some ranges of text.
--
textViewGetEditable :: TextViewClass self => self -> IO Bool
textViewGetEditable self =
liftM toBool $
{# call unsafe text_view_get_editable #}
(toTextView self)
-- | Toggles whether the insertion point is displayed. A buffer with no
-- editable text probably shouldn't have a visible cursor, so you may want to
-- turn the cursor off.
--
textViewSetCursorVisible :: TextViewClass self => self -> Bool -> IO ()
textViewSetCursorVisible self setting =
{# call text_view_set_cursor_visible #}
(toTextView self)
(fromBool setting)
-- | Find out whether the cursor is being displayed.
--
textViewGetCursorVisible :: TextViewClass self => self -> IO Bool
textViewGetCursorVisible self =
liftM toBool $
{# call unsafe text_view_get_cursor_visible #}
(toTextView self)
-- | Sets the default number of blank pixels above paragraphs in the text view.
-- Tags in the buffer for the text view may override the defaults.
--
-- * Tags in the buffer may override this default.
--
textViewSetPixelsAboveLines :: TextViewClass self => self -> Int -> IO ()
textViewSetPixelsAboveLines self pixelsAboveLines =
{# call text_view_set_pixels_above_lines #}
(toTextView self)
(fromIntegral pixelsAboveLines)
-- | Gets the default number of pixels to put above paragraphs.
--
textViewGetPixelsAboveLines :: TextViewClass self => self -> IO Int
textViewGetPixelsAboveLines self =
liftM fromIntegral $
{# call unsafe text_view_get_pixels_above_lines #}
(toTextView self)
-- | Sets the default number of pixels of blank space to put below paragraphs
-- in the text view. May be overridden by tags applied to the text view's
-- buffer.
--
textViewSetPixelsBelowLines :: TextViewClass self => self -> Int -> IO ()
textViewSetPixelsBelowLines self pixelsBelowLines =
{# call text_view_set_pixels_below_lines #}
(toTextView self)
(fromIntegral pixelsBelowLines)
-- | Gets the default number of blank pixels below each paragraph.
--
textViewGetPixelsBelowLines :: TextViewClass self => self -> IO Int
textViewGetPixelsBelowLines self =
liftM fromIntegral $
{# call unsafe text_view_get_pixels_below_lines #}
(toTextView self)
-- | Sets the default number of pixels of blank space to leave between
-- display\/wrapped lines within a paragraph. May be overridden by tags in
-- the text view's buffer.
--
textViewSetPixelsInsideWrap :: TextViewClass self => self -> Int -> IO ()
textViewSetPixelsInsideWrap self pixelsInsideWrap =
{# call text_view_set_pixels_inside_wrap #}
(toTextView self)
(fromIntegral pixelsInsideWrap)
-- | Gets the default number of pixels of blank space between lines in a
-- wrapped paragraph.
--
textViewGetPixelsInsideWrap :: TextViewClass self => self -> IO Int
textViewGetPixelsInsideWrap self =
liftM fromIntegral $
{# call unsafe text_view_get_pixels_inside_wrap #}
(toTextView self)
-- | Sets the default justification of text in the text view. Tags in the
-- view's buffer may override the default.
--
textViewSetJustification :: TextViewClass self => self -> Justification -> IO ()
textViewSetJustification self justification =
{# call text_view_set_justification #}
(toTextView self)
((fromIntegral . fromEnum) justification)
-- | Gets the default justification of paragraphs in the text view. Tags in the
-- buffer may override the default.
--
textViewGetJustification :: TextViewClass self => self -> IO Justification
textViewGetJustification self =
liftM (toEnum . fromIntegral) $
{# call unsafe text_view_get_justification #}
(toTextView self)
-- | Sets the default left margin for text in the text view. Tags in the buffer
-- may override the default.
--
textViewSetLeftMargin :: TextViewClass self => self
-> Int -- ^ @leftMargin@ - left margin in pixels
-> IO ()
textViewSetLeftMargin self leftMargin =
{# call text_view_set_left_margin #}
(toTextView self)
(fromIntegral leftMargin)
-- | Gets the default left margin size of paragraphs in the text view. Tags
-- in the buffer may override the default.
--
textViewGetLeftMargin :: TextViewClass self => self
-> IO Int -- ^ returns left margin in pixels
textViewGetLeftMargin self =
liftM fromIntegral $
{# call unsafe text_view_get_left_margin #}
(toTextView self)
-- | Sets the default right margin for text in the text view. Tags in the
-- buffer may override the default.
--
textViewSetRightMargin :: TextViewClass self => self
-> Int -- ^ @rightMargin@ - right margin in pixels
-> IO ()
textViewSetRightMargin self rightMargin =
{# call text_view_set_right_margin #}
(toTextView self)
(fromIntegral rightMargin)
-- | Gets the default right margin for text in the text view. Tags in the
-- buffer may override the default.
--
textViewGetRightMargin :: TextViewClass self => self
-> IO Int -- ^ returns right margin in pixels
textViewGetRightMargin self =
liftM fromIntegral $
{# call unsafe text_view_get_right_margin #}
(toTextView self)
-- | Sets the default indentation for paragraphs in the text view. Tags in the
-- buffer may override the default.
--
textViewSetIndent :: TextViewClass self => self
-> Int -- ^ @indent@ - indentation in pixels (may be negative)
-> IO ()
textViewSetIndent self indent =
{# call text_view_set_indent #}
(toTextView self)
(fromIntegral indent)
-- | Gets the default indentation of paragraphs in the text view. Tags in the
-- view's buffer may override the default. The indentation may be negative.
--
textViewGetIndent :: TextViewClass self => self
-> IO Int -- ^ returns number of pixels of indentation
textViewGetIndent self =
liftM fromIntegral $
{# call unsafe text_view_get_indent #}
(toTextView self)
-- | Obtains a copy of the default text attributes. These are the attributes
-- used for text unless a tag overrides them. You'd typically pass the default
-- attributes in to 'textIterGetAttributes' in order to get the attributes in
-- effect at a given text position.
--
textViewGetDefaultAttributes :: TextViewClass self => self -> IO TextAttributes
textViewGetDefaultAttributes self =
{# call gtk_text_view_get_default_attributes #}
(toTextView self)
>>= makeNewTextAttributes
#if GTK_CHECK_VERSION(2,6,0)
-- | Retrieves 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
-- 'textViewWindowToBufferCoords'.
--
-- Note that this is different from 'textViewGetIterAtLocation', which
-- returns cursor locations, i.e. positions /between/ characters.
--
-- * Available since Gtk+ version 2.6
--
textViewGetIterAtPosition :: TextViewClass self => self
-> Int -- ^ @x@ - x position, in buffer coordinates
-> Int -- ^ @y@ - y position, in buffer coordinates
-> IO (TextIter, Int) -- ^ @(iter, trailing)@ - returns the iterator and
-- an integer indicating where in the grapheme the
-- user clicked. It will either be zero, or the
-- number of characters in the grapheme. 0 represents
-- the trailing edge of the grapheme.
textViewGetIterAtPosition self x y =
alloca $ \trailingPtr -> do
iter <- makeEmptyTextIter
{# call gtk_text_view_get_iter_at_position #}
(toTextView self)
iter
trailingPtr
(fromIntegral x)
(fromIntegral y)
trailing <- peek trailingPtr
return (iter, fromIntegral trailing)
#endif
#if GTK_CHECK_VERSION(2,4,0)
-- | Changes the 'TextView' overwrite mode.
--
-- * Available since Gtk+ version 2.4
--
textViewSetOverwrite :: TextViewClass self => self
-> Bool -- ^ @overwrite@ - @True@ to turn on overwrite mode, @False@ to turn
-- it off
-> IO ()
textViewSetOverwrite self overwrite =
{# call gtk_text_view_set_overwrite #}
(toTextView self)
(fromBool overwrite)
-- | Returns whether the 'TextView' is in overwrite mode or not.
--
-- * Available since Gtk+ version 2.4
--
textViewGetOverwrite :: TextViewClass self => self -> IO Bool
textViewGetOverwrite self =
liftM toBool $
{# call gtk_text_view_get_overwrite #}
(toTextView self)
-- | Sets the behavior of the text widget when the Tab key is pressed. If
-- @acceptsTab@ is @True@ a tab character is inserted. If @acceptsTab@ is
-- @False@ the keyboard focus is moved to the next widget in the focus chain.
--
-- * Available since Gtk+ version 2.4
--
textViewSetAcceptsTab :: TextViewClass self => self
-> Bool -- ^ @acceptsTab@ - @True@ if pressing the Tab key should insert a
-- tab character, @False@, if pressing the Tab key should move the
-- keyboard focus.
-> IO ()
textViewSetAcceptsTab self acceptsTab =
{# call gtk_text_view_set_accepts_tab #}
(toTextView self)
(fromBool acceptsTab)
-- | Returns whether pressing the Tab key inserts a tab characters.
-- 'textViewSetAcceptsTab'.
--
-- * Available since Gtk+ version 2.4
--
textViewGetAcceptsTab :: TextViewClass self => self
-> IO Bool -- ^ returns @True@ if pressing the Tab key inserts a tab
-- character, @False@ if pressing the Tab key moves the keyboard
-- focus.
textViewGetAcceptsTab self =
liftM toBool $
{# call gtk_text_view_get_accepts_tab #}
(toTextView self)
#endif
--------------------
-- Attributes
-- | Pixels of blank space above paragraphs.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewPixelsAboveLines :: TextViewClass self => Attr self Int
textViewPixelsAboveLines = newAttr
textViewGetPixelsAboveLines
textViewSetPixelsAboveLines
-- | Pixels of blank space below paragraphs.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewPixelsBelowLines :: TextViewClass self => Attr self Int
textViewPixelsBelowLines = newAttr
textViewGetPixelsBelowLines
textViewSetPixelsBelowLines
-- | Pixels of blank space between wrapped lines in a paragraph.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewPixelsInsideWrap :: TextViewClass self => Attr self Int
textViewPixelsInsideWrap = newAttr
textViewGetPixelsInsideWrap
textViewSetPixelsInsideWrap
-- | Whether the text can be modified by the user.
--
-- Default value: @True@
--
textViewEditable :: TextViewClass self => Attr self Bool
textViewEditable = newAttr
textViewGetEditable
textViewSetEditable
-- | Which IM (input method) module should be used for this entry. See GtkIMContext.
-- Setting this to a non-empty value overrides the system-wide IM module setting.
-- See the GtkSettings "gtk-im-module" property.
--
-- Default value: \"\"
--
textViewImModule :: TextViewClass self => Attr self String
textViewImModule =
newAttrFromStringProperty "im-module"
-- | Whether to wrap lines never, at word boundaries, or at character
-- boundaries.
--
-- Default value: 'WrapNone'
--
textViewWrapMode :: TextViewClass self => Attr self WrapMode
textViewWrapMode = newAttr
textViewGetWrapMode
textViewSetWrapMode
-- | Left, right, or center justification.
--
-- Default value: 'JustifyLeft'
--
textViewJustification :: TextViewClass self => Attr self Justification
textViewJustification = newAttr
textViewGetJustification
textViewSetJustification
-- | Width of the left margin in pixels.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewLeftMargin :: TextViewClass self => Attr self Int
textViewLeftMargin = newAttr
textViewGetLeftMargin
textViewSetLeftMargin
-- | Width of the right margin in pixels.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewRightMargin :: TextViewClass self => Attr self Int
textViewRightMargin = newAttr
textViewGetRightMargin
textViewSetRightMargin
-- | Amount to indent the paragraph, in pixels.
--
-- Allowed values: >= 0
--
-- Default value: 0
--
textViewIndent :: TextViewClass self => Attr self Int
textViewIndent = newAttr
textViewGetIndent
textViewSetIndent
-- | If the insertion cursor is shown.
--
-- Default value: @True@
--
textViewCursorVisible :: TextViewClass self => Attr self Bool
textViewCursorVisible = newAttr
textViewGetCursorVisible
textViewSetCursorVisible
-- | The buffer which is displayed.
--
textViewBuffer :: TextViewClass self => Attr self TextBuffer
textViewBuffer = newAttr
textViewGetBuffer
textViewSetBuffer
#if GTK_CHECK_VERSION(2,4,0)
-- | Whether entered text overwrites existing contents.
--
-- Default value: @False@
--
textViewOverwrite :: TextViewClass self => Attr self Bool
textViewOverwrite = newAttr
textViewGetOverwrite
textViewSetOverwrite
-- | Whether Tab will result in a tab character being entered.
--
-- Default value: @True@
--
textViewAcceptsTab :: TextViewClass self => Attr self Bool
textViewAcceptsTab = newAttr
textViewGetAcceptsTab
textViewSetAcceptsTab
#endif
--------------------
-- Signals
-- | The 'backspace' signal is a keybinding signal which gets emitted when the user asks for it.
--
-- The default bindings for this signal are Backspace and Shift-Backspace.
--
backspace :: TextViewClass self => Signal self (IO ())
backspace = Signal (connect_NONE__NONE "on-backspace")
-- | Copying to the clipboard.
--
-- * This signal is emitted when a selection is copied to the clipboard.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
copyClipboard :: TextViewClass self => Signal self (IO ())
copyClipboard = Signal (connect_NONE__NONE "copy-clipboard")
-- | Cutting to the clipboard.
--
-- * This signal is emitted when a selection is cut out and copied to the
-- clipboard. The action itself happens when the textview processed this
-- request.
--
cutClipboard :: TextViewClass self => Signal self (IO ())
cutClipboard = Signal (connect_NONE__NONE "cut-clipboard")
-- | Deleting text.
--
-- * The widget will remove the specified number of units in the text where
-- the meaning of units depends on the kind of deletion.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
deleteFromCursor :: TextViewClass self => Signal self (DeleteType -> Int -> IO ())
deleteFromCursor = Signal (connect_ENUM_INT__NONE "delete-from-cursor")
-- | Inserting text.
--
-- * The widget will insert the string into the text where the meaning
-- of units depends on the kind of deletion.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
insertAtCursor :: TextViewClass self => Signal self (String -> IO ())
insertAtCursor = Signal (connect_STRING__NONE "insert-at-cursor")
-- | Moving the cursor.
--
-- * The signal specifies what kind and how many steps the cursor will do.
-- The flag is set to @True@ if this movement extends a selection.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
moveCursor :: TextViewClass self => Signal self (MovementStep -> Int -> Bool -> IO ())
moveCursor = Signal (connect_ENUM_INT_BOOL__NONE "move-cursor")
-- | The 'moveViewport' signal is a keybinding signal which can be bound to key combinations
-- to allow the user to move the viewport, i.e.
-- change what part of the text view is visible in a containing scrolled window.
-- There are no default bindings for this signal.
--
moveViewport :: TextViewClass self => Signal self (ScrollStep -> Int -> IO ())
moveViewport = Signal (connect_ENUM_INT__NONE "move-viewport")
-- | Moving the focus.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
moveFocus :: TextViewClass self => Signal self (DirectionType -> IO ())
moveFocus = Signal (connect_ENUM__NONE "move-focus")
-- | Page change signals.
--
-- * The signal specifies how many pages the view should move up or down.
-- The flag is set to @True@ if this movement extends a selection.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
-- * Figure out why this signal is called horizontally, not vertically.
--
pageHorizontally :: TextViewClass self => Signal self (Int -> Bool -> IO ())
pageHorizontally = Signal (connect_INT_BOOL__NONE "page-horizontally")
-- | Pasting from the clipboard.
--
-- * This signal is emitted when something is pasted from the clipboard.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
pasteClipboard :: TextViewClass self => Signal self (IO ())
pasteClipboard = Signal (connect_NONE__NONE "paste-clipboard")
-- | Add menu entries to context menus.
--
-- * This signal is emitted if a context menu within the 'TextView'
-- is opened. This signal can be used to add application specific menu
-- items to this popup.
--
populatePopup :: TextViewClass self => Signal self (Menu -> IO ())
populatePopup = Signal (connect_OBJECT__NONE "populate-popup")
-- | Inserting an anchor.
--
-- * This signal is emitted when anchor is inserted into the text.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
selectAll :: TextViewClass self => Signal self (Bool -> IO ())
selectAll = Signal (connect_BOOL__NONE "select-all")
-- | The scroll-bars changed.
--
setAnchor :: TextViewClass self => Signal self (IO ())
setAnchor = Signal (connect_NONE__NONE "set-anchor")
-- | The 'setTextViewScrollAdjustments' signal is a keybinding signal which
-- gets emitted to toggle the visibility of the cursor.
-- The default binding for this signal is F7.
--
setTextViewScrollAdjustments :: TextViewClass self => Signal self (Adjustment -> Adjustment -> IO ())
setTextViewScrollAdjustments = Signal (connect_OBJECT_OBJECT__NONE "set-scroll-adjustments")
-- | The 'toggleCursorVisible' signal is a keybinding signal
-- which gets emitted to toggle the visibility of the cursor.
-- The default binding for this signal is F7.
--
toggleCursorVisible :: TextViewClass self => Signal self (IO ())
toggleCursorVisible = Signal (connect_NONE__NONE "toggle-cursor-visible")
-- | Insert Overwrite mode has changed.
--
-- * This signal is emitted when the 'TextView' changes from
-- inserting mode to overwriting mode and vice versa.
--
-- * The action itself happens when the 'TextView' processes this
-- signal.
--
toggleOverwrite :: TextViewClass self => Signal self (IO ())
toggleOverwrite = Signal (connect_NONE__NONE "toggle-overwrite")
|