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 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
|
{-# LANGUAGE DeriveDataTypeable #-}
-----------------------------------------------------------------------------
-- |
-- Module : Graphics.X11.Xlib.Extras
-- Copyright : 2007 (c) Spencer Janssen
-- License : BSD3-style (see LICENSE)
-- Stability : experimental
--
-----------------------------------------------------------------------------
--
-- missing functionality from the X11 library
--
module Graphics.X11.Xlib.Extras (
module Graphics.X11.Xlib.Extras,
module Graphics.X11.Xlib.Internal
) where
import Data.Maybe
import Data.Typeable ( Typeable )
import Graphics.X11.Xrandr
import Graphics.X11.XScreenSaver
import Graphics.X11.Xlib
import Graphics.X11.Xlib.Internal
import Graphics.X11.Xlib.Types
import Foreign (Storable, Ptr, peek, poke, pokeArray, peekElemOff, peekByteOff, pokeByteOff, peekArray, throwIfNull, nullPtr, sizeOf, alignment, alloca, with, throwIf, Word8, Word16, #{type unsigned long}, Int32, plusPtr, castPtr, withArrayLen, setBit, testBit, allocaBytes, FunPtr)
import Foreign.C.Types
import Foreign.C.String
import Control.Monad
import System.IO.Unsafe
#include "XlibExtras.h"
data Event
= AnyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
}
| ConfigureRequestEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_parent :: !Window
, ev_window :: !Window
, ev_x :: !CInt
, ev_y :: !CInt
, ev_width :: !CInt
, ev_height :: !CInt
, ev_border_width :: !CInt
, ev_above :: !Window
, ev_detail :: !NotifyDetail
, ev_value_mask :: !CULong
}
| ConfigureEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_event :: !Window
, ev_window :: !Window
, ev_x :: !CInt
, ev_y :: !CInt
, ev_width :: !CInt
, ev_height :: !CInt
, ev_border_width :: !CInt
, ev_above :: !Window
, ev_override_redirect :: !Bool
}
| MapRequestEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_parent :: !Window
, ev_window :: !Window
}
| KeyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_root :: !Window
, ev_subwindow :: !Window
, ev_time :: !Time
, ev_x :: !CInt
, ev_y :: !CInt
, ev_x_root :: !CInt
, ev_y_root :: !CInt
, ev_state :: !KeyMask
, ev_keycode :: !KeyCode
, ev_same_screen :: !Bool
}
| ButtonEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_root :: !Window
, ev_subwindow :: !Window
, ev_time :: !Time
, ev_x :: !CInt
, ev_y :: !CInt
, ev_x_root :: !CInt
, ev_y_root :: !CInt
, ev_state :: !KeyMask
, ev_button :: !Button
, ev_same_screen :: !Bool
}
| MotionEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_x :: !CInt
, ev_y :: !CInt
, ev_window :: !Window
}
| DestroyWindowEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_event :: !Window
, ev_window :: !Window
}
| UnmapEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_event :: !Window
, ev_window :: !Window
, ev_from_configure :: !Bool
}
| MapNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_event :: !Window
, ev_window :: !Window
, ev_override_redirect :: !Bool
}
| MappingNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_request :: !MappingRequest
, ev_first_keycode :: !KeyCode
, ev_count :: !CInt
}
| CrossingEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_root :: !Window
, ev_subwindow :: !Window
, ev_time :: !Time
, ev_x :: !CInt
, ev_y :: !CInt
, ev_x_root :: !CInt
, ev_y_root :: !CInt
, ev_mode :: !NotifyMode
, ev_detail :: !NotifyDetail
, ev_same_screen :: !Bool
, ev_focus :: !Bool
, ev_state :: !Modifier
}
| SelectionRequest
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_owner :: !Window
, ev_requestor :: !Window
, ev_selection :: !Atom
, ev_target :: !Atom
, ev_property :: !Atom
, ev_time :: !Time
}
| SelectionClear
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_selection :: !Atom
, ev_time :: !Time
}
| PropertyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_atom :: !Atom
, ev_time :: !Time
, ev_propstate :: !CInt
}
| ExposeEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_x :: !CInt
, ev_y :: !CInt
, ev_width :: !CInt
, ev_height :: !CInt
, ev_count :: !CInt
}
| FocusChangeEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_mode :: !NotifyMode
, ev_detail :: !NotifyDetail
}
| ClientMessageEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_message_type :: !Atom
, ev_data :: ![CInt]
}
| RRScreenChangeNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_root :: !Window
, ev_timestamp :: !Time
, ev_config_timestamp :: !Time
, ev_size_index :: !SizeID
, ev_subpixel_order :: !SubpixelOrder
, ev_rotation :: !Rotation
, ev_width :: !CInt
, ev_height :: !CInt
, ev_mwidth :: !CInt
, ev_mheight :: !CInt
}
| RRNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_subtype :: !CInt
}
| RRCrtcChangeNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_subtype :: !CInt
, ev_crtc :: !RRCrtc
, ev_rr_mode :: !RRMode
, ev_rotation :: !Rotation
, ev_x :: !CInt
, ev_y :: !CInt
, ev_rr_width :: !CUInt
, ev_rr_height :: !CUInt
}
| RROutputChangeNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_subtype :: !CInt
, ev_output :: !RROutput
, ev_crtc :: !RRCrtc
, ev_rr_mode :: !RRMode
, ev_rotation :: !Rotation
, ev_connection :: !Connection
, ev_subpixel_order :: !SubpixelOrder
}
| RROutputPropertyNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_subtype :: !CInt
, ev_output :: !RROutput
, ev_property :: !Atom
, ev_timestamp :: !Time
, ev_rr_state :: !CInt
}
| ScreenSaverNotifyEvent
{ ev_event_type :: !EventType
, ev_serial :: !CULong
, ev_send_event :: !Bool
, ev_event_display :: Display
, ev_window :: !Window
, ev_root :: !Window
, ev_ss_state :: !XScreenSaverState
, ev_ss_kind :: !XScreenSaverKind
, ev_forced :: !Bool
, ev_time :: !Time
}
deriving ( Show, Typeable )
eventTable :: [(EventType, String)]
eventTable =
[ (keyPress , "KeyPress")
, (keyRelease , "KeyRelease")
, (buttonPress , "ButtonPress")
, (buttonRelease , "ButtonRelease")
, (motionNotify , "MotionNotify")
, (enterNotify , "EnterNotify")
, (leaveNotify , "LeaveNotify")
, (focusIn , "FocusIn")
, (focusOut , "FocusOut")
, (keymapNotify , "KeymapNotify")
, (expose , "Expose")
, (graphicsExpose , "GraphicsExpose")
, (noExpose , "NoExpose")
, (visibilityNotify , "VisibilityNotify")
, (createNotify , "CreateNotify")
, (destroyNotify , "DestroyNotify")
, (unmapNotify , "UnmapNotify")
, (mapNotify , "MapNotify")
, (mapRequest , "MapRequest")
, (reparentNotify , "ReparentNotify")
, (configureNotify , "ConfigureNotify")
, (configureRequest , "ConfigureRequest")
, (gravityNotify , "GravityNotify")
, (resizeRequest , "ResizeRequest")
, (circulateNotify , "CirculateNotify")
, (circulateRequest , "CirculateRequest")
, (propertyNotify , "PropertyNotify")
, (selectionClear , "SelectionClear")
, (selectionRequest , "SelectionRequest")
, (selectionNotify , "SelectionNotify")
, (colormapNotify , "ColormapNotify")
, (clientMessage , "ClientMessage")
, (mappingNotify , "MappingNotify")
, (lASTEvent , "LASTEvent")
, (screenSaverNotify , "ScreenSaverNotify")
]
eventName :: Event -> String
eventName e = maybe ("unknown " ++ show x) id $ lookup x eventTable
where x = fromIntegral $ ev_event_type e
getEvent :: XEventPtr -> IO Event
getEvent p = do
-- All events share this layout and naming convention, there is also a
-- common Window field, but the names for this field vary.
type_ <- #{peek XAnyEvent, type} p
serial <- #{peek XAnyEvent, serial} p
send_event <- #{peek XAnyEvent, send_event} p
display <- fmap Display (#{peek XAnyEvent, display} p)
rrData <- xrrQueryExtension display
let rrHasExtension = isJust rrData
let rrEventBase = fromIntegral $ fst $ fromMaybe (0, 0) rrData
case () of
-------------------------
-- ConfigureRequestEvent:
-------------------------
_ | type_ == configureRequest -> do
parent <- #{peek XConfigureRequestEvent, parent } p
window <- #{peek XConfigureRequestEvent, window } p
x <- #{peek XConfigureRequestEvent, x } p
y <- #{peek XConfigureRequestEvent, y } p
width <- #{peek XConfigureRequestEvent, width } p
height <- #{peek XConfigureRequestEvent, height } p
border_width <- #{peek XConfigureRequestEvent, border_width} p
above <- #{peek XConfigureRequestEvent, above } p
detail <- #{peek XConfigureRequestEvent, detail } p
value_mask <- #{peek XConfigureRequestEvent, value_mask } p
return $ ConfigureRequestEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_parent = parent
, ev_window = window
, ev_x = x
, ev_y = y
, ev_width = width
, ev_height = height
, ev_border_width = border_width
, ev_above = above
, ev_detail = detail
, ev_value_mask = value_mask
}
------------------
-- ConfigureEvent:
------------------
| type_ == configureNotify -> do
return (ConfigureEvent type_ serial send_event display)
`ap` #{peek XConfigureEvent, event } p
`ap` #{peek XConfigureEvent, window } p
`ap` #{peek XConfigureEvent, x } p
`ap` #{peek XConfigureEvent, y } p
`ap` #{peek XConfigureEvent, width } p
`ap` #{peek XConfigureEvent, height } p
`ap` #{peek XConfigureEvent, border_width } p
`ap` #{peek XConfigureEvent, above } p
`ap` #{peek XConfigureEvent, override_redirect } p
-------------------
-- MapRequestEvent:
-------------------
| type_ == mapRequest -> do
parent <- #{peek XMapRequestEvent, parent} p
window <- #{peek XMapRequestEvent, window} p
return $ MapRequestEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_parent = parent
, ev_window = window
}
-------------------
-- MapNotifyEvent
-------------------
| type_ == mapNotify -> do
event <- #{peek XMapEvent, event} p
window <- #{peek XMapEvent, window} p
override_redirect <- #{peek XMapEvent, override_redirect} p
return $ MapNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_event = event
, ev_window = window
, ev_override_redirect = override_redirect
}
-------------------
-- MappingNotifyEvent
-------------------
| type_ == mappingNotify -> do
window <- #{peek XMappingEvent,window} p
request <- #{peek XMappingEvent,request} p
first_keycode <- #{peek XMappingEvent,first_keycode} p
count <- #{peek XMappingEvent,count} p
return $ MappingNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_request = request
, ev_first_keycode = first_keycode
, ev_count = count
}
------------
-- KeyEvent:
------------
| type_ == keyPress || type_ == keyRelease -> do
window <- #{peek XKeyEvent, window } p
root <- #{peek XKeyEvent, root } p
subwindow <- #{peek XKeyEvent, subwindow } p
time <- #{peek XKeyEvent, time } p
x <- #{peek XKeyEvent, x } p
y <- #{peek XKeyEvent, y } p
x_root <- #{peek XKeyEvent, x_root } p
y_root <- #{peek XKeyEvent, y_root } p
state <- (#{peek XKeyEvent, state } p) :: IO CUInt
keycode <- (#{peek XKeyEvent, keycode } p) :: IO CUInt
same_screen <- #{peek XKeyEvent, same_screen} p
return $ KeyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_root = root
, ev_subwindow = subwindow
, ev_time = time
, ev_x = x
, ev_y = y
, ev_x_root = x_root
, ev_y_root = y_root
, ev_state = fromIntegral state
, ev_keycode = fromIntegral keycode
, ev_same_screen = same_screen
}
---------------
-- ButtonEvent:
---------------
| type_ == buttonPress || type_ == buttonRelease -> do
window <- #{peek XButtonEvent, window } p
root <- #{peek XButtonEvent, root } p
subwindow <- #{peek XButtonEvent, subwindow } p
time <- #{peek XButtonEvent, time } p
x <- #{peek XButtonEvent, x } p
y <- #{peek XButtonEvent, y } p
x_root <- #{peek XButtonEvent, x_root } p
y_root <- #{peek XButtonEvent, y_root } p
state <- (#{peek XButtonEvent, state } p) :: IO CUInt
button <- #{peek XButtonEvent, button } p
same_screen <- #{peek XButtonEvent, same_screen} p
return $ ButtonEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_root = root
, ev_subwindow = subwindow
, ev_time = time
, ev_x = x
, ev_y = y
, ev_x_root = x_root
, ev_y_root = y_root
, ev_state = fromIntegral state
, ev_button = button
, ev_same_screen = same_screen
}
---------------
-- MotionEvent:
---------------
| type_ == motionNotify -> do
window <- #{peek XMotionEvent, window} p
x <- #{peek XMotionEvent, x } p
y <- #{peek XMotionEvent, y } p
return $ MotionEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_x = x
, ev_y = y
, ev_window = window
}
----------------------
-- DestroyWindowEvent:
----------------------
| type_ == destroyNotify -> do
event <- #{peek XDestroyWindowEvent, event } p
window <- #{peek XDestroyWindowEvent, window} p
return $ DestroyWindowEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_event = event
, ev_window = window
}
--------------------
-- UnmapNotifyEvent:
--------------------
| type_ == unmapNotify -> do
event <- #{peek XUnmapEvent, event } p
window <- #{peek XUnmapEvent, window } p
from_configure <- #{peek XUnmapEvent, from_configure} p
return $ UnmapEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_event = event
, ev_window = window
, ev_from_configure = from_configure
}
--------------------
-- CrossingEvent
--------------------
| type_ == enterNotify || type_ == leaveNotify -> do
window <- #{peek XCrossingEvent, window } p
root <- #{peek XCrossingEvent, root } p
subwindow <- #{peek XCrossingEvent, subwindow } p
time <- #{peek XCrossingEvent, time } p
x <- #{peek XCrossingEvent, x } p
y <- #{peek XCrossingEvent, y } p
x_root <- #{peek XCrossingEvent, x_root } p
y_root <- #{peek XCrossingEvent, y_root } p
mode <- #{peek XCrossingEvent, mode } p
detail <- #{peek XCrossingEvent, detail } p
same_screen <- #{peek XCrossingEvent, same_screen } p
focus <- #{peek XCrossingEvent, focus } p
state <- (#{peek XCrossingEvent, state } p) :: IO CUInt
return $ CrossingEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_root = root
, ev_subwindow = subwindow
, ev_time = time
, ev_x = x
, ev_y = y
, ev_x_root = x_root
, ev_y_root = y_root
, ev_mode = mode
, ev_detail = detail
, ev_same_screen = same_screen
, ev_focus = focus
, ev_state = fromIntegral state
}
-------------------------
-- SelectionRequestEvent:
-------------------------
| type_ == selectionRequest -> do
owner <- #{peek XSelectionRequestEvent, owner } p
requestor <- #{peek XSelectionRequestEvent, requestor } p
selection <- #{peek XSelectionRequestEvent, selection } p
target <- #{peek XSelectionRequestEvent, target } p
property <- #{peek XSelectionRequestEvent, property } p
time <- #{peek XSelectionRequestEvent, time } p
return $ SelectionRequest
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_owner = owner
, ev_requestor = requestor
, ev_selection = selection
, ev_target = target
, ev_property = property
, ev_time = time
}
-------------------------
-- SelectionClearEvent:
-------------------------
| type_ == selectionClear -> do
window <- #{peek XSelectionClearEvent, window } p
atom <- #{peek XSelectionClearEvent, selection } p
time <- #{peek XSelectionClearEvent, time } p
return $ SelectionClear
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_selection = atom
, ev_time = time
}
-------------------------
-- PropertyEvent
-------------------------
| type_ == propertyNotify -> do
window <- #{peek XPropertyEvent, window } p
atom <- #{peek XPropertyEvent, atom } p
time <- #{peek XPropertyEvent, time } p
state <- #{peek XPropertyEvent, state } p
return $ PropertyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_atom = atom
, ev_time = time
, ev_propstate = state
}
-------------------------
-- ExposeEvent
-------------------------
| type_ == expose -> do
window <- #{peek XExposeEvent, window } p
x <- #{peek XExposeEvent, x } p
y <- #{peek XExposeEvent, y } p
width <- #{peek XExposeEvent, width } p
height <- #{peek XExposeEvent, height } p
count <- #{peek XExposeEvent, count } p
return $ ExposeEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_x = x
, ev_y = y
, ev_width = width
, ev_height = height
, ev_count = count
}
-------------------------
-- FocusChangeEvent
-------------------------
| type_ == focusIn || type_ == focusOut -> do
window <- #{peek XFocusChangeEvent, window } p
mode <- #{peek XFocusChangeEvent, mode } p
detail <- #{peek XFocusChangeEvent, detail } p
return $ FocusChangeEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_mode = mode
, ev_detail = detail
}
-------------------------
-- ClientMessageEvent
-------------------------
| type_ == clientMessage -> do
window <- #{peek XClientMessageEvent, window } p
message_type <- #{peek XClientMessageEvent, message_type } p
format <- #{peek XClientMessageEvent, format } p
let datPtr = #{ptr XClientMessageEvent, data } p
dat <- case (format::CInt) of
8 -> do a <- peekArray 20 datPtr
return $ map fromIntegral (a::[Word8])
16 -> do a <- peekArray 10 datPtr
return $ map fromIntegral (a::[Word16])
32 -> do a <- peekArray 5 datPtr
return $ map fromIntegral (a::[CLong])
_ -> error "X11.Extras.clientMessage: illegal value"
return $ ClientMessageEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_message_type = message_type
, ev_data = dat
}
-------------------------
-- RRScreenChangeNotify
-------------------------
| rrHasExtension &&
type_ == rrEventBase + rrScreenChangeNotify -> do
window <- #{peek XRRScreenChangeNotifyEvent, window } p
root <- #{peek XRRScreenChangeNotifyEvent, root } p
timestamp <- #{peek XRRScreenChangeNotifyEvent, timestamp } p
config_timestamp <- #{peek XRRScreenChangeNotifyEvent, config_timestamp } p
size_index <- #{peek XRRScreenChangeNotifyEvent, config_timestamp } p
subpixel_order <- #{peek XRRScreenChangeNotifyEvent, subpixel_order } p
rotation <- #{peek XRRScreenChangeNotifyEvent, rotation } p
width <- #{peek XRRScreenChangeNotifyEvent, width } p
height <- #{peek XRRScreenChangeNotifyEvent, height } p
mwidth <- #{peek XRRScreenChangeNotifyEvent, mwidth } p
mheight <- #{peek XRRScreenChangeNotifyEvent, mheight } p
return $ RRScreenChangeNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_root = root
, ev_timestamp = timestamp
, ev_config_timestamp = config_timestamp
, ev_size_index = size_index
, ev_subpixel_order = subpixel_order
, ev_rotation = rotation
, ev_width = width
, ev_height = height
, ev_mwidth = mwidth
, ev_mheight = mheight
}
-------------------------
-- RRNotify
-------------------------
| rrHasExtension &&
type_ == rrEventBase + rrNotify -> do
window <- #{peek XRRNotifyEvent, window } p
subtype <- #{peek XRRNotifyEvent, subtype } p
let subtype_ = fromIntegral subtype
case () of
_ | subtype_ == rrNotifyCrtcChange -> do
crtc <- #{peek XRRCrtcChangeNotifyEvent, crtc } p
mode <- #{peek XRRCrtcChangeNotifyEvent, mode } p
rotation <- #{peek XRRCrtcChangeNotifyEvent, rotation } p
x <- #{peek XRRCrtcChangeNotifyEvent, x } p
y <- #{peek XRRCrtcChangeNotifyEvent, y } p
width <- #{peek XRRCrtcChangeNotifyEvent, width } p
height <- #{peek XRRCrtcChangeNotifyEvent, height } p
return $ RRCrtcChangeNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_subtype = subtype
, ev_crtc = crtc
, ev_rr_mode = mode
, ev_rotation = rotation
, ev_x = x
, ev_y = y
, ev_rr_width = width
, ev_rr_height = height
}
| subtype_ == rrNotifyOutputChange -> do
output <- #{peek XRROutputChangeNotifyEvent, output } p
crtc <- #{peek XRROutputChangeNotifyEvent, crtc } p
mode <- #{peek XRROutputChangeNotifyEvent, mode } p
rotation <- #{peek XRROutputChangeNotifyEvent, rotation } p
connection <- #{peek XRROutputChangeNotifyEvent, connection } p
subpixel_order <- #{peek XRROutputChangeNotifyEvent, subpixel_order } p
return $ RROutputChangeNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_subtype = subtype
, ev_output = output
, ev_crtc = crtc
, ev_rr_mode = mode
, ev_rotation = rotation
, ev_connection = connection
, ev_subpixel_order = subpixel_order
}
| subtype_ == rrNotifyOutputProperty -> do
output <- #{peek XRROutputPropertyNotifyEvent, output } p
property <- #{peek XRROutputPropertyNotifyEvent, property } p
timestamp <- #{peek XRROutputPropertyNotifyEvent, timestamp } p
state <- #{peek XRROutputPropertyNotifyEvent, state } p
return $ RROutputPropertyNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_subtype = subtype
, ev_output = output
, ev_property = property
, ev_timestamp = timestamp
, ev_rr_state = state
}
-- We don't handle this event specifically, so return the generic
-- RRNotifyEvent.
| otherwise -> do
return $ RRNotifyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
, ev_subtype = subtype
}
-----------------
-- ScreenSaverNotifyEvent:
-----------------
| type_ == screenSaverNotify -> do
return (ScreenSaverNotifyEvent type_ serial send_event display)
`ap` (#{peek XScreenSaverNotifyEvent, window } p )
`ap` (#{peek XScreenSaverNotifyEvent, root } p )
`ap` (#{peek XScreenSaverNotifyEvent, state } p )
`ap` (#{peek XScreenSaverNotifyEvent, kind } p )
`ap` (#{peek XScreenSaverNotifyEvent, forced } p )
`ap` (#{peek XScreenSaverNotifyEvent, time } p )
-- We don't handle this event specifically, so return the generic
-- AnyEvent.
| otherwise -> do
window <- #{peek XAnyEvent, window} p
return $ AnyEvent
{ ev_event_type = type_
, ev_serial = serial
, ev_send_event = send_event
, ev_event_display = display
, ev_window = window
}
data WindowChanges = WindowChanges
{ wc_x :: CInt
, wc_y :: CInt
, wc_width :: CInt
, wc_height:: CInt
, wc_border_width :: CInt
, wc_sibling :: Window
, wc_stack_mode :: CInt
}
instance Storable WindowChanges where
sizeOf _ = #{size XWindowChanges}
-- I really hope this is right:
alignment _ = alignment (undefined :: CInt)
poke p wc = do
#{poke XWindowChanges, x } p $ wc_x wc
#{poke XWindowChanges, y } p $ wc_y wc
#{poke XWindowChanges, width } p $ wc_width wc
#{poke XWindowChanges, height } p $ wc_height wc
#{poke XWindowChanges, border_width} p $ wc_border_width wc
#{poke XWindowChanges, sibling } p $ wc_sibling wc
#{poke XWindowChanges, stack_mode } p $ wc_stack_mode wc
peek p = return WindowChanges
`ap` (#{peek XWindowChanges, x} p)
`ap` (#{peek XWindowChanges, y} p)
`ap` (#{peek XWindowChanges, width} p)
`ap` (#{peek XWindowChanges, height} p)
`ap` (#{peek XWindowChanges, border_width} p)
`ap` (#{peek XWindowChanges, sibling} p)
`ap` (#{peek XWindowChanges, stack_mode} p)
--
-- Some extra constants
--
none :: XID
none = #{const None}
anyButton :: Button
anyButton = #{const AnyButton}
anyKey :: KeyCode
anyKey = toEnum #{const AnyKey}
currentTime :: Time
currentTime = #{const CurrentTime}
--
-- The use of Int rather than CInt isn't 64 bit clean.
--
foreign import ccall unsafe "XlibExtras.h XConfigureWindow"
xConfigureWindow :: Display -> Window -> CULong -> Ptr WindowChanges -> IO CInt
foreign import ccall unsafe "XlibExtras.h XKillClient"
killClient :: Display -> Window -> IO CInt
configureWindow :: Display -> Window -> CULong -> WindowChanges -> IO ()
configureWindow d w m c = do
_ <- with c (xConfigureWindow d w m)
return ()
foreign import ccall unsafe "XlibExtras.h XQueryTree"
xQueryTree :: Display -> Window -> Ptr Window -> Ptr Window -> Ptr (Ptr Window) -> Ptr CInt -> IO Status
queryTree :: Display -> Window -> IO (Window, Window, [Window])
queryTree d w =
alloca $ \root_return ->
alloca $ \parent_return ->
alloca $ \children_return ->
alloca $ \nchildren_return -> do
_ <- throwIfZero "queryTree" $ xQueryTree d w root_return parent_return children_return nchildren_return
p <- peek children_return
n <- fmap fromIntegral $ peek nchildren_return
ws <- peekArray n p
_ <- xFree p
liftM3 (,,) (peek root_return) (peek parent_return) (return ws)
-- TODO: this data type is incomplete wrt. the C struct
data WindowAttributes = WindowAttributes
{ wa_x, wa_y, wa_width, wa_height, wa_border_width :: CInt
, wa_colormap :: Colormap
, wa_map_installed :: Bool
, wa_map_state :: CInt
, wa_all_event_masks :: EventMask
, wa_your_event_mask :: EventMask
, wa_do_not_propagate_mask :: EventMask
, wa_override_redirect :: Bool
}
--
-- possible map_states'
--
waIsUnmapped, waIsUnviewable, waIsViewable :: CInt
waIsUnmapped = fromIntegral ( #{const IsUnmapped} :: CInt ) -- 0
waIsUnviewable = fromIntegral ( #{const IsUnviewable} :: CInt ) -- 1
waIsViewable = fromIntegral ( #{const IsViewable} :: CInt ) -- 2
instance Storable WindowAttributes where
-- this might be incorrect
alignment _ = alignment (undefined :: CInt)
sizeOf _ = #{size XWindowAttributes}
peek p = return WindowAttributes
`ap` (#{peek XWindowAttributes, x } p)
`ap` (#{peek XWindowAttributes, y } p)
`ap` (#{peek XWindowAttributes, width } p)
`ap` (#{peek XWindowAttributes, height } p)
`ap` (#{peek XWindowAttributes, border_width } p)
`ap` (#{peek XWindowAttributes, colormap } p)
`ap` (#{peek XWindowAttributes, map_installed } p)
`ap` (#{peek XWindowAttributes, map_state } p)
`ap` (#{peek XWindowAttributes, all_event_masks } p)
`ap` (#{peek XWindowAttributes, your_event_mask } p)
`ap` (#{peek XWindowAttributes, do_not_propagate_mask } p)
`ap` (#{peek XWindowAttributes, override_redirect} p)
poke p wa = do
#{poke XWindowAttributes, x } p $ wa_x wa
#{poke XWindowAttributes, y } p $ wa_y wa
#{poke XWindowAttributes, width } p $ wa_width wa
#{poke XWindowAttributes, height } p $ wa_height wa
#{poke XWindowAttributes, border_width } p $ wa_border_width wa
#{poke XWindowAttributes, colormap } p $ wa_colormap wa
#{poke XWindowAttributes, map_installed } p $ wa_map_installed wa
#{poke XWindowAttributes, map_state } p $ wa_map_state wa
#{poke XWindowAttributes, all_event_masks } p $ wa_all_event_masks wa
#{poke XWindowAttributes, your_event_mask } p $ wa_your_event_mask wa
#{poke XWindowAttributes, do_not_propagate_mask } p $ wa_do_not_propagate_mask wa
#{poke XWindowAttributes, override_redirect} p $ wa_override_redirect wa
foreign import ccall unsafe "XlibExtras.h XGetWindowAttributes"
xGetWindowAttributes :: Display -> Window -> Ptr (WindowAttributes) -> IO Status
getWindowAttributes :: Display -> Window -> IO WindowAttributes
getWindowAttributes d w = alloca $ \p -> do
_ <- throwIfZero "getWindowAttributes" $ xGetWindowAttributes d w p
peek p
-- | interface to the X11 library function @XChangeWindowAttributes()@.
foreign import ccall unsafe "XlibExtras.h XChangeWindowAttributes"
changeWindowAttributes :: Display -> Window -> AttributeMask -> Ptr SetWindowAttributes -> IO ()
-- | Run an action with the server
withServer :: Display -> IO () -> IO ()
withServer dpy f = do
grabServer dpy
f
ungrabServer dpy
data TextProperty = TextProperty {
tp_value :: CString,
tp_encoding :: Atom,
tp_format :: CInt,
tp_nitems :: #{type unsigned long}
}
instance Storable TextProperty where
sizeOf _ = #{size XTextProperty}
alignment _ = alignment (undefined :: #{type unsigned long})
peek p = TextProperty `fmap` #{peek XTextProperty, value } p
`ap` #{peek XTextProperty, encoding} p
`ap` #{peek XTextProperty, format } p
`ap` #{peek XTextProperty, nitems } p
poke p (TextProperty val enc fmt nitems) = do
#{poke XTextProperty, value } p val
#{poke XTextProperty, encoding} p enc
#{poke XTextProperty, format } p fmt
#{poke XTextProperty, nitems } p nitems
foreign import ccall unsafe "XlibExtras.h XGetTextProperty"
xGetTextProperty :: Display -> Window -> Ptr TextProperty -> Atom -> IO Status
getTextProperty :: Display -> Window -> Atom -> IO TextProperty
getTextProperty d w a =
alloca $ \textp -> do
_ <- throwIf (0==) (const "getTextProperty") $ xGetTextProperty d w textp a
peek textp
foreign import ccall unsafe "XlibExtras.h XwcTextPropertyToTextList"
xwcTextPropertyToTextList :: Display -> Ptr TextProperty -> Ptr (Ptr CWString) -> Ptr CInt -> IO CInt
wcTextPropertyToTextList :: Display -> TextProperty -> IO [String]
wcTextPropertyToTextList d prop =
alloca $ \listp ->
alloca $ \countp ->
with prop $ \propp -> do
_ <- throwIf (success>) (const "wcTextPropertyToTextList") $
xwcTextPropertyToTextList d propp listp countp
count <- peek countp
list <- peek listp
texts <- flip mapM [0..fromIntegral count - 1] $ \i ->
peekElemOff list i >>= peekCWString
wcFreeStringList list
return texts
foreign import ccall unsafe "XlibExtras.h XwcFreeStringList"
wcFreeStringList :: Ptr CWString -> IO ()
newtype FontSet = FontSet (Ptr FontSet)
deriving (Eq, Ord, Show)
foreign import ccall unsafe "XlibExtras.h XCreateFontSet"
xCreateFontSet :: Display -> CString -> Ptr (Ptr CString) -> Ptr CInt -> Ptr CString -> IO (Ptr FontSet)
createFontSet :: Display -> String -> IO ([String], String, FontSet)
createFontSet d fn =
withCString fn $ \fontp ->
alloca $ \listp ->
alloca $ \countp ->
alloca $ \defp -> do
fs <- throwIfNull "createFontSet" $
xCreateFontSet d fontp listp countp defp
count <- peek countp
list <- peek listp
missing <- flip mapM [0..fromIntegral count - 1] $ \i ->
peekElemOff list i >>= peekCString
def <- peek defp >>= peekCString
freeStringList list
return (missing, def, FontSet fs)
foreign import ccall unsafe "XlibExtras.h XFreeStringList"
freeStringList :: Ptr CString -> IO ()
foreign import ccall unsafe "XlibExtras.h XFreeFontSet"
freeFontSet :: Display -> FontSet -> IO ()
foreign import ccall unsafe "XlibExtras.h XwcTextExtents"
xwcTextExtents :: FontSet -> CWString -> CInt -> Ptr Rectangle -> Ptr Rectangle -> IO CInt
wcTextExtents :: FontSet -> String -> (Rectangle, Rectangle)
wcTextExtents fs text = unsafePerformIO $
withCWStringLen text $ \(textp, len) ->
alloca $ \inkp ->
alloca $ \logicalp -> do
_ <- xwcTextExtents fs textp (fromIntegral len) inkp logicalp
(,) `fmap` peek inkp `ap` peek logicalp
foreign import ccall unsafe "XlibExtras.h XwcDrawString"
xwcDrawString :: Display -> Drawable -> FontSet -> GC -> Position -> Position -> CWString -> CInt -> IO ()
wcDrawString :: Display -> Drawable -> FontSet -> GC -> Position -> Position -> String -> IO ()
wcDrawString d w fs gc x y =
flip withCWStringLen $ \(s, len) ->
xwcDrawString d w fs gc x y s (fromIntegral len)
foreign import ccall unsafe "XlibExtras.h XwcDrawImageString"
xwcDrawImageString :: Display -> Drawable -> FontSet -> GC -> Position -> Position -> CWString -> CInt -> IO ()
wcDrawImageString :: Display -> Drawable -> FontSet -> GC -> Position -> Position -> String -> IO ()
wcDrawImageString d w fs gc x y =
flip withCWStringLen $ \(s, len) ->
xwcDrawImageString d w fs gc x y s (fromIntegral len)
foreign import ccall unsafe "XlibExtras.h XwcTextEscapement"
xwcTextEscapement :: FontSet -> CWString -> CInt -> IO Int32
wcTextEscapement :: FontSet -> String -> Int32
wcTextEscapement font_set string = unsafePerformIO $
withCWStringLen string $ \ (c_string, len) ->
xwcTextEscapement font_set c_string (fromIntegral len)
foreign import ccall unsafe "XlibExtras.h XFetchName"
xFetchName :: Display -> Window -> Ptr CString -> IO Status
fetchName :: Display -> Window -> IO (Maybe String)
fetchName d w = alloca $ \p -> do
_ <- xFetchName d w p
cstr <- peek p
if cstr == nullPtr
then return Nothing
else do
str <- peekCString cstr
_ <- xFree cstr
return $ Just str
foreign import ccall unsafe "XlibExtras.h XGetTransientForHint"
xGetTransientForHint :: Display -> Window -> Ptr Window -> IO Status
getTransientForHint :: Display -> Window -> IO (Maybe Window)
getTransientForHint d w = alloca $ \wp -> do
status <- xGetTransientForHint d w wp
if status == 0
then return Nothing
else Just `liftM` peek wp
------------------------------------------------------------------------
-- setWMProtocols :: Display -> Window -> [Atom] -> IO ()
{-
setWMProtocols :: Display -> Window -> [Atom] -> IO ()
setWMProtocols display w protocols =
withArray protocols $ \ protocol_array ->
xSetWMProtocols display w protocol_array (length protocols)
foreign import ccall unsafe "HsXlib.h XSetWMProtocols"
xSetWMProtocols :: Display -> Window -> Ptr Atom -> CInt -> IO ()
-}
-- | The XGetWMProtocols function returns the list of atoms
-- stored in the WM_PROTOCOLS property on the specified window.
-- These atoms describe window manager protocols in
-- which the owner of this window is willing to participate.
-- If the property exists, is of type ATOM, is of format 32,
-- and the atom WM_PROTOCOLS can be interned, XGetWMProtocols
-- sets the protocols_return argument to a list of atoms,
-- sets the count_return argument to the number of elements
-- in the list, and returns a nonzero status. Otherwise, it
-- sets neither of the return arguments and returns a zero
-- status. To release the list of atoms, use XFree.
--
getWMProtocols :: Display -> Window -> IO [Atom]
getWMProtocols display w = do
alloca $ \atom_ptr_ptr ->
alloca $ \count_ptr -> do
st <- xGetWMProtocols display w atom_ptr_ptr count_ptr
if st == 0
then return []
else do sz <- peek count_ptr
atom_ptr <- peek atom_ptr_ptr
atoms <- peekArray (fromIntegral sz) atom_ptr
_ <- xFree atom_ptr
return atoms
foreign import ccall unsafe "HsXlib.h XGetWMProtocols"
xGetWMProtocols :: Display -> Window -> Ptr (Ptr Atom) -> Ptr CInt -> IO Status
------------------------------------------------------------------------
-- Creating events
setEventType :: XEventPtr -> EventType -> IO ()
setEventType = #{poke XEvent,type}
{-
typedef struct {
int type; /* SelectionNotify */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
Window requestor;
Atom selection;
Atom target;
Atom property; /* atom or None */
Time time;
} XSelectionEvent;
-}
setSelectionNotify :: XEventPtr -> Window -> Atom -> Atom -> Atom -> Time -> IO ()
setSelectionNotify p requestor selection target property time = do
setEventType p selectionNotify
#{poke XSelectionEvent, requestor} p requestor
#{poke XSelectionEvent, selection} p selection
#{poke XSelectionEvent, target} p target
#{poke XSelectionEvent, property} p property
#{poke XSelectionEvent, time} p time
-- hacky way to set up an XClientMessageEvent
-- Should have a Storable instance for XEvent/Event?
setClientMessageEvent :: XEventPtr -> Window -> Atom -> CInt -> Atom -> Time -> IO ()
setClientMessageEvent p window message_type format l_0_ l_1_ = do
setClientMessageEvent' p window message_type format [fromIntegral l_0_, fromIntegral l_1_]
-- slightly less hacky way to set up an XClientMessageEvent
setClientMessageEvent' :: XEventPtr -> Window -> Atom -> CInt -> [CInt] -> IO ()
setClientMessageEvent' p window message_type format dat = do
#{poke XClientMessageEvent, window} p window
#{poke XClientMessageEvent, message_type} p message_type
#{poke XClientMessageEvent, format} p format
case format of
8 -> do let datap = #{ptr XClientMessageEvent, data} p :: Ptr Word8
pokeArray datap $ take 20 $ map fromIntegral dat ++ repeat 0
16 -> do let datap = #{ptr XClientMessageEvent, data} p :: Ptr Word16
pokeArray datap $ take 10 $ map fromIntegral dat ++ repeat 0
32 -> do let datap = #{ptr XClientMessageEvent, data} p :: Ptr CLong
pokeArray datap $ take 5 $ map fromIntegral dat ++ repeat 0
_ -> error "X11.Extras.setClientMessageEvent': illegal format"
setConfigureEvent :: XEventPtr -> Window -> Window -> CInt -> CInt -> CInt -> CInt -> CInt -> Window -> Bool -> IO ()
setConfigureEvent p ev win x y w h bw abv org = do
#{poke XConfigureEvent, event } p ev
#{poke XConfigureEvent, window } p win
#{poke XConfigureEvent, x } p x
#{poke XConfigureEvent, y } p y
#{poke XConfigureEvent, width } p w
#{poke XConfigureEvent, height } p h
#{poke XConfigureEvent, border_width } p bw
#{poke XConfigureEvent, above } p abv
#{poke XConfigureEvent, override_redirect} p (if org then 1 else 0 :: CInt)
setKeyEvent :: XEventPtr -> Window -> Window -> Window -> KeyMask -> KeyCode -> Bool -> IO ()
setKeyEvent p win root subwin state keycode sameScreen = do
#{poke XKeyEvent, window } p win
#{poke XKeyEvent, root } p root
#{poke XKeyEvent, subwindow } p subwin
#{poke XKeyEvent, time } p currentTime
#{poke XKeyEvent, x } p (1 :: CInt)
#{poke XKeyEvent, y } p (1 :: CInt)
#{poke XKeyEvent, x_root } p (1 :: CInt)
#{poke XKeyEvent, y_root } p (1 :: CInt)
#{poke XKeyEvent, state } p state
#{poke XKeyEvent, keycode } p keycode
#{poke XKeyEvent, same_screen } p sameScreen
return ()
{-
typedef struct {
int type; /* ClientMessage */
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
Window window;
Atom message_type;
int format;
union {
char b[20];
short s[10];
long l[5];
} data;
} XClientMessageEvent;
-}
------------------------------------------------------------------------
-- XErrorEvents
--
-- I'm too lazy to write the binding
--
foreign import ccall unsafe "XlibExtras.h x11_extras_set_error_handler"
xSetErrorHandler :: IO ()
-- | refreshKeyboardMapping. TODO Remove this binding when the fix has been commited to
-- X11
refreshKeyboardMapping :: Event -> IO ()
refreshKeyboardMapping ev@(MappingNotifyEvent {ev_event_display = (Display d)})
= allocaBytes #{size XMappingEvent} $ \p -> do
#{poke XMappingEvent, type } p $ ev_event_type ev
#{poke XMappingEvent, serial } p $ ev_serial ev
#{poke XMappingEvent, send_event } p $ ev_send_event ev
#{poke XMappingEvent, display } p $ d
#{poke XMappingEvent, window } p $ ev_window ev
#{poke XMappingEvent, request } p $ ev_request ev
#{poke XMappingEvent, first_keycode } p $ ev_first_keycode ev
#{poke XMappingEvent, count } p $ ev_count ev
_ <- xRefreshKeyboardMapping p
return ()
refreshKeyboardMapping _ = return ()
foreign import ccall unsafe "XlibExtras.h XRefreshKeyboardMapping"
xRefreshKeyboardMapping :: Ptr () -> IO CInt
-- Properties
anyPropertyType :: Atom
anyPropertyType = #{const AnyPropertyType}
foreign import ccall unsafe "XlibExtras.h XChangeProperty"
xChangeProperty :: Display -> Window -> Atom -> Atom -> CInt -> CInt -> Ptr CUChar -> CInt -> IO Status
foreign import ccall unsafe "XlibExtras.h XDeleteProperty"
xDeleteProperty :: Display -> Window -> Atom -> IO Status
foreign import ccall unsafe "XlibExtras.h XGetWindowProperty"
xGetWindowProperty :: Display -> Window -> Atom -> CLong -> CLong -> Bool -> Atom -> Ptr Atom -> Ptr CInt -> Ptr CULong -> Ptr CULong -> Ptr (Ptr CUChar) -> IO Status
rawGetWindowProperty :: Storable a => Int -> Display -> Atom -> Window -> IO (Maybe [a])
rawGetWindowProperty bits d atom w =
alloca $ \actual_type_return ->
alloca $ \actual_format_return ->
alloca $ \nitems_return ->
alloca $ \bytes_after_return ->
alloca $ \prop_return -> do
ret <- xGetWindowProperty d w atom 0 0xFFFFFFFF False anyPropertyType
actual_type_return
actual_format_return
nitems_return
bytes_after_return
prop_return
if ret /= 0
then return Nothing
else do
prop_ptr <- peek prop_return
actual_format <- fromIntegral `fmap` peek actual_format_return
nitems <- fromIntegral `fmap` peek nitems_return
getprop prop_ptr nitems actual_format
where
getprop prop_ptr nitems actual_format
| actual_format == 0 = return Nothing -- Property not found
| actual_format /= bits = xFree prop_ptr >> return Nothing
| otherwise = do
retval <- peekArray nitems (castPtr prop_ptr)
_ <- xFree prop_ptr
return $ Just retval
getWindowProperty8 :: Display -> Atom -> Window -> IO (Maybe [CChar])
getWindowProperty8 = rawGetWindowProperty 8
getWindowProperty16 :: Display -> Atom -> Window -> IO (Maybe [CShort])
getWindowProperty16 = rawGetWindowProperty 16
getWindowProperty32 :: Display -> Atom -> Window -> IO (Maybe [CLong])
getWindowProperty32 = rawGetWindowProperty 32
-- this assumes bytes are 8 bits. I hope X isn't more portable than that :(
changeProperty8 :: Display -> Window -> Atom -> Atom -> CInt -> [CChar] -> IO ()
changeProperty8 dpy w prop typ mode dat =
withArrayLen dat $ \ len ptr -> do
_ <- xChangeProperty dpy w prop typ 8 mode (castPtr ptr) (fromIntegral len)
return ()
changeProperty16 :: Display -> Window -> Atom -> Atom -> CInt -> [CShort] -> IO ()
changeProperty16 dpy w prop typ mode dat =
withArrayLen dat $ \ len ptr -> do
_ <- xChangeProperty dpy w prop typ 16 mode (castPtr ptr) (fromIntegral len)
return ()
changeProperty32 :: Display -> Window -> Atom -> Atom -> CInt -> [CLong] -> IO ()
changeProperty32 dpy w prop typ mode dat =
withArrayLen dat $ \ len ptr -> do
_ <- xChangeProperty dpy w prop typ 32 mode (castPtr ptr) (fromIntegral len)
return ()
propModeReplace, propModePrepend, propModeAppend :: CInt
propModeReplace = #{const PropModeReplace}
propModePrepend = #{const PropModePrepend}
propModeAppend = #{const PropModeAppend}
deleteProperty :: Display -> Window -> Atom -> IO ()
deleteProperty dpy w prop = do
_ <- xDeleteProperty dpy w prop
return ()
-- Windows
foreign import ccall unsafe "XlibExtras.h XUnmapWindow"
xUnmapWindow :: Display -> Window -> IO CInt
unmapWindow :: Display -> Window -> IO ()
unmapWindow d w = xUnmapWindow d w >> return ()
------------------------------------------------------------------------
-- Size hints
data SizeHints = SizeHints
{ sh_min_size :: Maybe (Dimension, Dimension)
, sh_max_size :: Maybe (Dimension, Dimension)
, sh_resize_inc :: Maybe (Dimension, Dimension)
, sh_aspect :: Maybe ((Dimension, Dimension), (Dimension, Dimension))
, sh_base_size :: Maybe (Dimension, Dimension)
, sh_win_gravity :: Maybe (BitGravity)
}
pMinSizeBit, pMaxSizeBit, pResizeIncBit, pAspectBit, pBaseSizeBit, pWinGravityBit :: Int
pMinSizeBit = 4
pMaxSizeBit = 5
pResizeIncBit = 6
pAspectBit = 7
pBaseSizeBit = 8
pWinGravityBit = 9
instance Storable SizeHints where
alignment _ = alignment (undefined :: CInt)
sizeOf _ = #{size XSizeHints}
poke p sh = do
let whenSet f x = maybe (return ()) x (f sh)
let pokeFlag b = do flag <- #{peek XSizeHints, flags} p :: IO CLong
#{poke XSizeHints, flags} p (setBit flag b)
#{poke XSizeHints, flags} p (0 :: CLong)
whenSet sh_min_size $ \(w, h) -> do
pokeFlag pMinSizeBit
#{poke XSizeHints, min_width } p w
#{poke XSizeHints, min_height } p h
whenSet sh_max_size $ \(w, h) -> do
pokeFlag pMaxSizeBit
#{poke XSizeHints, max_width } p w
#{poke XSizeHints, max_height } p h
whenSet sh_resize_inc $ \(w, h) -> do
pokeFlag pResizeIncBit
#{poke XSizeHints, width_inc } p w
#{poke XSizeHints, height_inc } p h
whenSet sh_aspect $ \((minx, miny), (maxx, maxy)) -> do
pokeFlag pAspectBit
#{poke XSizeHints, min_aspect.x} p minx
#{poke XSizeHints, min_aspect.y} p miny
#{poke XSizeHints, max_aspect.x} p maxx
#{poke XSizeHints, max_aspect.y} p maxy
whenSet sh_base_size $ \(w, h) -> do
pokeFlag pBaseSizeBit
#{poke XSizeHints, base_width } p w
#{poke XSizeHints, base_height } p h
whenSet sh_win_gravity $ \g -> do
pokeFlag pWinGravityBit
#{poke XSizeHints, win_gravity } p g
peek p = do
flags <- #{peek XSizeHints, flags} p :: IO CLong
let whenBit n x = if testBit flags n then liftM Just x else return Nothing
return SizeHints
`ap` whenBit pMinSizeBit (do liftM2 (,) (#{peek XSizeHints, min_width } p)
(#{peek XSizeHints, min_height } p))
`ap` whenBit pMaxSizeBit (do liftM2 (,) (#{peek XSizeHints, max_width } p)
(#{peek XSizeHints, max_height } p))
`ap` whenBit pResizeIncBit (do liftM2 (,) (#{peek XSizeHints, width_inc } p)
(#{peek XSizeHints, height_inc } p))
`ap` whenBit pAspectBit (do minx <- #{peek XSizeHints, min_aspect.x} p
miny <- #{peek XSizeHints, min_aspect.y} p
maxx <- #{peek XSizeHints, max_aspect.x} p
maxy <- #{peek XSizeHints, max_aspect.y} p
return ((minx, miny), (maxx, maxy)))
`ap` whenBit pBaseSizeBit (do liftM2 (,) (#{peek XSizeHints, base_width } p)
(#{peek XSizeHints, base_height} p))
`ap` whenBit pWinGravityBit (#{peek XSizeHints, win_gravity} p)
foreign import ccall unsafe "XlibExtras.h XGetWMNormalHints"
xGetWMNormalHints :: Display -> Window -> Ptr SizeHints -> Ptr CLong -> IO Status
getWMNormalHints :: Display -> Window -> IO SizeHints
getWMNormalHints d w
= alloca $ \sh -> do
alloca $ \supplied_return -> do
-- what's the purpose of supplied_return?
status <- xGetWMNormalHints d w sh supplied_return
case status of
0 -> return (SizeHints Nothing Nothing Nothing Nothing Nothing Nothing)
_ -> peek sh
foreign import ccall "XlibExtras.h XAllocSizeHints"
xAllocSizeHints :: IO (Ptr SizeHints)
foreign import ccall unsafe "XlibExtras.h XSetWMNormalHints"
xSetWMNormalHints :: Display -> Window -> Ptr SizeHints -> IO ()
setWMNormalHints :: Display -> Window -> SizeHints -> IO ()
setWMNormalHints dpy win hints = do
ptr_hints <- throwIfNull "xAllocSizeHints" xAllocSizeHints
poke ptr_hints hints
xSetWMNormalHints dpy win ptr_hints
_ <- xFree ptr_hints
return ()
data ClassHint = ClassHint
{ resName :: String
, resClass :: String
}
getClassHint :: Display -> Window -> IO ClassHint
getClassHint d w = allocaBytes (#{size XClassHint}) $ \ p -> do
s <- xGetClassHint d w p
if s /= 0 -- returns a nonzero status on success
then do
res_name_p <- #{peek XClassHint, res_name} p
res_class_p <- #{peek XClassHint, res_class} p
res <- liftM2 ClassHint (peekCString res_name_p) (peekCString res_class_p)
_ <- xFree res_name_p
_ <- xFree res_class_p
return res
else return $ ClassHint "" ""
foreign import ccall unsafe "XlibExtras.h XGetClassHint"
xGetClassHint :: Display -> Window -> Ptr ClassHint -> IO Status
-- | Set the @WM_CLASS@ property for the given window.
setClassHint :: Display -> Window -> ClassHint -> IO ()
setClassHint dpy win (ClassHint name cl) =
allocaBytes (#{size XClassHint}) $ \ptr -> do
withCString name $ \c_name -> withCString cl $ \c_cl -> do
#{poke XClassHint, res_name } ptr c_name
#{poke XClassHint, res_class} ptr c_cl
xSetClassHint dpy win ptr
foreign import ccall unsafe "XlibExtras.h XSetClassHint"
xSetClassHint :: Display -> Window -> Ptr ClassHint -> IO ()
------------------------------------------------------------------------
-- WM Hints
-- These are the documented values for a window's "WM State", set, for example,
-- in wmh_initial_state, below. Note, you may need to play games with
-- fromIntegral and/or fromEnum.
withdrawnState,normalState, iconicState :: Int
withdrawnState = #{const WithdrawnState}
normalState = #{const NormalState}
iconicState = #{const IconicState}
-- The following values are the documented bit positions on XWMHints's flags field.
-- Use testBit, setBit, and clearBit to manipulate the field.
inputHintBit,stateHintBit,iconPixmapHintBit,iconWindowHintBit,iconPositionHintBit,iconMaskHintBit,windowGroupHintBit,urgencyHintBit :: Int
inputHintBit = 0
stateHintBit = 1
iconPixmapHintBit = 2
iconWindowHintBit = 3
iconPositionHintBit = 4
iconMaskHintBit = 5
windowGroupHintBit = 6
urgencyHintBit = 8
-- The following bitmask tests for the presence of all bits except for the
-- urgencyHintBit.
allHintsBitmask :: CLong
allHintsBitmask = #{const AllHints}
data WMHints = WMHints
{ wmh_flags :: CLong
, wmh_input :: Bool
, wmh_initial_state :: CInt
, wmh_icon_pixmap :: Pixmap
, wmh_icon_window :: Window
, wmh_icon_x :: CInt
, wmh_icon_y :: CInt
, wmh_icon_mask :: Pixmap
, wmh_window_group :: XID
}
instance Storable WMHints where
-- should align to the alignment of the largest type
alignment _ = alignment (undefined :: CLong)
sizeOf _ = #{size XWMHints}
peek p = return WMHints
`ap` #{peek XWMHints, flags} p
`ap` #{peek XWMHints, input} p
`ap` #{peek XWMHints, initial_state} p
`ap` #{peek XWMHints, icon_pixmap} p
`ap` #{peek XWMHints, icon_window} p
`ap` #{peek XWMHints, icon_x} p
`ap` #{peek XWMHints, icon_x} p
`ap` #{peek XWMHints, icon_mask} p
`ap` #{peek XWMHints, window_group} p
poke p wmh = do
#{poke XWMHints, flags} p $ wmh_flags wmh
#{poke XWMHints, input} p $ wmh_input wmh
#{poke XWMHints, initial_state} p $ wmh_initial_state wmh
#{poke XWMHints, icon_pixmap} p $ wmh_icon_pixmap wmh
#{poke XWMHints, icon_window} p $ wmh_icon_window wmh
#{poke XWMHints, icon_x} p $ wmh_icon_x wmh
#{poke XWMHints, icon_y} p $ wmh_icon_y wmh
#{poke XWMHints, icon_mask} p $ wmh_icon_mask wmh
#{poke XWMHints, window_group} p $ wmh_window_group wmh
foreign import ccall unsafe "XlibExtras.h XGetWMHints"
xGetWMHints :: Display -> Window -> IO (Ptr WMHints)
getWMHints :: Display -> Window -> IO WMHints
getWMHints dpy w = do
p <- xGetWMHints dpy w
if p == nullPtr
then return $ WMHints 0 False 0 0 0 0 0 0 0
else do x <- peek p; _ <- xFree p; return x
foreign import ccall unsafe "XlibExtras.h XAllocWMHints"
xAllocWMHints :: IO (Ptr WMHints)
foreign import ccall unsafe "XlibExtras.h XSetWMHints"
xSetWMHints :: Display -> Window -> Ptr WMHints -> IO Status
setWMHints :: Display -> Window -> WMHints -> IO Status
setWMHints dpy w wmh = do
p_wmh <- xAllocWMHints
poke p_wmh wmh
res <- xSetWMHints dpy w p_wmh
_ <- xFree p_wmh
return res
------------------------------------------------------------------------
-- Keysym Macros
--
-- Which we have to wrap in functions, then bind here.
foreign import ccall unsafe "XlibExtras.h x11_extras_IsCursorKey"
isCursorKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsFunctionKey"
isFunctionKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsKeypadKey"
isKeypadKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsMiscFunctionKey"
isMiscFunctionKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsModifierKey"
isModifierKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsPFKey"
isPFKey :: KeySym -> Bool
foreign import ccall unsafe "XlibExtras.h x11_extras_IsPrivateKeypadKey"
isPrivateKeypadKey :: KeySym -> Bool
-------------------------------------------------------------------------------
-- Selections
--
foreign import ccall unsafe "HsXlib.h XSetSelectionOwner"
xSetSelectionOwner :: Display -> Atom -> Window -> Time -> IO ()
foreign import ccall unsafe "HsXlib.h XGetSelectionOwner"
xGetSelectionOwner :: Display -> Atom -> IO Window
foreign import ccall unsafe "HsXlib.h XConvertSelection"
xConvertSelection :: Display -> Atom -> Atom -> Atom -> Window -> Time -> IO ()
-------------------------------------------------------------------------------
-- Error handling
--
type XErrorEventPtr = Ptr ()
type CXErrorHandler = Display -> XErrorEventPtr -> IO CInt
type XErrorHandler = Display -> XErrorEventPtr -> IO ()
data ErrorEvent = ErrorEvent {
ev_type :: !CInt,
ev_display :: Display,
ev_serialnum :: !CULong,
ev_error_code :: !CUChar,
ev_request_code :: !CUChar,
ev_minor_code :: !CUChar,
ev_resourceid :: !XID
}
foreign import ccall safe "wrapper"
mkXErrorHandler :: CXErrorHandler -> IO (FunPtr CXErrorHandler)
foreign import ccall safe "dynamic"
getXErrorHandler :: FunPtr CXErrorHandler -> CXErrorHandler
foreign import ccall safe "HsXlib.h XSetErrorHandler"
_xSetErrorHandler :: FunPtr CXErrorHandler -> IO (FunPtr CXErrorHandler)
-- |A binding to XSetErrorHandler.
-- NOTE: This is pretty experimental because of safe vs. unsafe calls. I
-- changed sync to a safe call, but there *might* be other calls that cause a
-- problem
setErrorHandler :: XErrorHandler -> IO ()
setErrorHandler new_handler = do
_handler <- mkXErrorHandler (\d -> \e -> new_handler d e >> return 0)
_ <- _xSetErrorHandler _handler
return ()
-- |Retrieves error event data from a pointer to an XErrorEvent and
-- puts it into an ErrorEvent.
getErrorEvent :: XErrorEventPtr -> IO ErrorEvent
getErrorEvent ev_ptr = do
_type <- #{peek XErrorEvent, type } ev_ptr
serial <- #{peek XErrorEvent, serial} ev_ptr
dsp <- fmap Display (#{peek XErrorEvent, display} ev_ptr)
error_code <- #{peek XErrorEvent, error_code} ev_ptr
request_code <- #{peek XErrorEvent, request_code} ev_ptr
minor_code <- #{peek XErrorEvent, minor_code} ev_ptr
resourceid <- #{peek XErrorEvent, resourceid} ev_ptr
return $ ErrorEvent {
ev_type = _type,
ev_display = dsp,
ev_serialnum = serial,
ev_error_code = error_code,
ev_request_code = request_code,
ev_minor_code = minor_code,
ev_resourceid = resourceid
}
-- |A binding to XMapRaised.
foreign import ccall unsafe "HsXlib.h XMapRaised"
mapRaised :: Display -> Window -> IO CInt
foreign import ccall unsafe "HsXlib.h XGetCommand"
xGetCommand :: Display -> Window -> Ptr (Ptr CWString) -> Ptr CInt -> IO Status
getCommand :: Display -> Window -> IO [String]
getCommand d w =
alloca $
\argvp ->
alloca $
\argcp ->
do
_ <- throwIf (success >) (\status -> "xGetCommand returned status: " ++ show status) $ xGetCommand d w argvp argcp
argc <- peek argcp
argv <- peek argvp
texts <- flip mapM [0 .. fromIntegral $ pred argc] $ \i -> peekElemOff argv i >>= peekCWString
wcFreeStringList argv
return texts
foreign import ccall unsafe "HsXlib.h XGetModifierMapping"
xGetModifierMapping :: Display -> IO (Ptr ())
foreign import ccall unsafe "HsXlib.h XFreeModifiermap"
xFreeModifiermap :: Ptr () -> IO (Ptr CInt)
getModifierMapping :: Display -> IO [(Modifier, [KeyCode])]
getModifierMapping d = do
p <- xGetModifierMapping d
m' <- #{peek XModifierKeymap, max_keypermod} p :: IO CInt
let m = fromIntegral m'
pks <- #{peek XModifierKeymap, modifiermap} p :: IO (Ptr KeyCode)
ks <- peekArray (m * 8) pks
_ <- xFreeModifiermap p
return . zip masks . map fst . tail . iterate (splitAt m . snd) $ ([], ks)
where
masks = [shiftMapIndex .. mod5MapIndex]
|