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 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381
|
package OS2::localMorphPM;
# use strict;
sub new {
my ($c,$f) = @_;
OS2::MorphPM($f);
# print STDERR ">>>>>\n";
bless [$f], $c
}
sub DESTROY {
# print STDERR "<<<<<\n";
OS2::UnMorphPM(shift->[0])
}
package OS2::Process;
BEGIN {
require Exporter;
require XSLoader;
#require AutoLoader;
our @ISA = qw(Exporter);
our $VERSION = "1.12";
XSLoader::load('OS2::Process', $VERSION);
}
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
our @EXPORT = qw(
P_BACKGROUND
P_DEBUG
P_DEFAULT
P_DETACH
P_FOREGROUND
P_FULLSCREEN
P_MAXIMIZE
P_MINIMIZE
P_NOCLOSE
P_NOSESSION
P_NOWAIT
P_OVERLAY
P_PM
P_QUOTE
P_SESSION
P_TILDE
P_UNRELATED
P_WAIT
P_WINDOWED
my_type
file_type
T_NOTSPEC
T_NOTWINDOWCOMPAT
T_WINDOWCOMPAT
T_WINDOWAPI
T_BOUND
T_DLL
T_DOS
T_PHYSDRV
T_VIRTDRV
T_PROTDLL
T_32BIT
os2constant
ppid
ppidOf
sidOf
scrsize
scrsize_set
kbdChar
kbdhChar
kbdStatus
_kbdStatus_set
kbdhStatus
kbdhStatus_set
vioConfig
viohConfig
vioMode
viohMode
viohMode_set
_vioMode_set
_vioState
_vioState_set
vioFont
vioFont_set
process_entry
process_entries
process_hentry
process_hentries
change_entry
change_entryh
process_hwnd
Title_set
Title
winTitle_set
winTitle
swTitle_set
bothTitle_set
WindowText
WindowText_set
WindowPos
WindowPos_set
hWindowPos
hWindowPos_set
WindowProcess
SwitchToProgram
DesktopWindow
ActiveWindow
ActiveWindow_set
ClassName
FocusWindow
FocusWindow_set
ShowWindow
PostMsg
BeginEnumWindows
EndEnumWindows
GetNextWindow
IsWindow
ChildWindows
out_codepage
out_codepage_set
process_codepage_set
in_codepage
in_codepage_set
cursor
cursor_set
screen
screen_set
process_codepages
QueryWindow
WindowFromId
WindowFromPoint
EnumDlgItem
EnableWindow
EnableWindowUpdate
IsWindowEnabled
IsWindowVisible
IsWindowShowing
WindowPtr
WindowULong
WindowUShort
WindowStyle
SetWindowBits
SetWindowPtr
SetWindowULong
SetWindowUShort
WindowBits_set
WindowPtr_set
WindowULong_set
WindowUShort_set
TopLevel
FocusWindow_set_keep_Zorder
ActiveDesktopPathname
InvalidateRect
CreateFrameControls
ClipbrdFmtInfo
ClipbrdOwner
ClipbrdViewer
ClipbrdData
OpenClipbrd
CloseClipbrd
ClipbrdData_set
ClipbrdOwner_set
ClipbrdViewer_set
EnumClipbrdFmts
EmptyClipbrd
ClipbrdFmtNames
ClipbrdFmtAtoms
AddAtom
FindAtom
DeleteAtom
AtomUsage
AtomName
AtomLength
SystemAtomTable
CreateAtomTable
DestroyAtomTable
_ClipbrdData_set
ClipbrdText
ClipbrdText_set
ClipbrdText_2byte
ClipbrdTextUCS2le
MemoryRegionSize
_MessageBox
MessageBox
_MessageBox2
MessageBox2
get_pointer
LoadPointer
SysPointer
Alarm
FlashWindow
get_title
set_title
io_term
);
our @EXPORT_OK = qw(
ResetWinError
MPFROMSHORT
MPVOID
MPFROMCHAR
MPFROM2SHORT
MPFROMSH2CH
MPFROMLONG
);
our $AUTOLOAD;
sub AUTOLOAD {
# This AUTOLOAD is used to 'autoload' constants from the constant()
# XS function. If a constant is not found then control is passed
# to the AUTOLOAD in AutoLoader.
(my $constname = $AUTOLOAD) =~ s/.*:://;
my $val = constant($constname, @_ ? $_[0] : 0);
if ($! != 0) {
if ($! =~ /Invalid/ || $!{EINVAL}) {
die "Unsupported function $AUTOLOAD"
} else {
my ($pack,$file,$line) = caller;
die "Your vendor has not defined OS2::Process macro $constname, used at $file line $line.
";
}
}
eval "sub $AUTOLOAD { $val }";
goto &$AUTOLOAD;
}
sub os2constant {
require OS2::Process::Const;
my $sym = shift;
my ($err, $val) = OS2::Process::Const::constant($sym);
die $err if $err;
$val;
}
sub const_import {
require OS2::Process::Const;
my $sym = shift;
my $val = os2constant($sym);
my $p = caller(1);
# no strict;
*{"$p\::$sym"} = sub () { $val };
(); # needed by import()
}
sub import {
my $class = shift;
my $ini = @_;
@_ = ($class,
map {
/^(HWND|WM|SC|SWP|WC|PROG|QW|EDI|WS|QWS|QWP|QWL|FF|FI|LS|FS|FCF|BS|MS|TBM|CF|CFI|FID|MB|MBID|CF|CFI|SPTR)_/ ? const_import($_) : $_
} @_);
goto &Exporter::import if @_ > 1 or $ini == 0;
}
# Preloaded methods go here.
sub Title () { (process_entry())[0] }
# *Title_set = \&sesmgr_title_set;
sub swTitle_set_sw {
my ($title, @sw) = @_;
$sw[0] = $title;
change_entry(@sw);
}
sub swTitle_set ($) {
my (@sw) = process_entry();
swTitle_set_sw(shift, @sw);
}
sub winTitle_set_sw {
my ($title, @sw) = @_;
my $h = OS2::localMorphPM->new(0);
WindowText_set $sw[1], $title;
}
sub winTitle_set ($) {
my (@sw) = process_entry();
winTitle_set_sw(shift, @sw);
}
sub winTitle () {
my (@sw) = process_entry();
my $h = OS2::localMorphPM->new(0);
WindowText $sw[1];
}
sub bothTitle_set ($) {
my (@sw) = process_entry();
my $t = shift;
winTitle_set_sw($t, @sw);
swTitle_set_sw($t, @sw);
}
sub Title_set ($) {
my $t = shift;
return 1 if sesmgr_title_set($t);
return 0 unless $^E == 372;
my (@sw) = process_entry();
winTitle_set_sw($t, @sw);
swTitle_set_sw($t, @sw);
}
sub process_entry { swentry_expand(process_swentry(@_)) }
our @hentry_fields = qw( title owner_hwnd icon_hwnd
owner_phandle owner_pid owner_sid
visible nonswitchable jumpable ptype sw_entry );
sub swentry_hexpand ($) {
my %h;
@h{@hentry_fields} = swentry_expand(shift);
\%h;
}
sub process_hentry { swentry_hexpand(process_swentry(@_)) }
sub process_hwnd { process_hentry()->{owner_hwnd} }
my $swentry_size = swentry_size();
sub sw_entries () {
my $s = swentries_list();
my ($c, $s1) = unpack 'La*', $s;
die "Inconsistent size in swentries_list()" unless 4+$c*$swentry_size == length $s;
my (@l, $e);
push @l, $e while $e = substr $s1, 0, $swentry_size, '';
@l;
}
sub process_entries () {
map [swentry_expand($_)], sw_entries;
}
sub process_hentries () {
map swentry_hexpand($_), sw_entries;
}
sub change_entry {
change_swentry(create_swentry(@_));
}
sub create_swentryh ($) {
my $h = shift;
create_swentry(@$h{@hentry_fields});
}
sub change_entryh ($) {
change_swentry(create_swentryh(shift));
}
# Massage entries into the same order as WindowPos_set:
sub WindowPos ($) {
my ($fl, $h, $w, $y, $x, $behind, $hwnd, @rest)
= unpack 'L l4 L4', WindowSWP(shift);
($x, $y, $fl, $w, $h, $behind, @rest);
}
# Put them into a hash
sub hWindowPos ($) {
my %h;
@h{ qw(flags height width y x behind hwnd reserved1 reserved2) }
= unpack 'L l4 L4', WindowSWP(shift);
\%h;
}
my @SWP_keys = ( [qw(width height)], # SWP_SIZE=1
[qw(x y)], # SWP_MOVE=2
[qw(behind)] ); # SWP_ZORDER=3
my %SWP_def;
@SWP_def{ map @$_, @SWP_keys } = (0) x 20;
# Get them from a hash
sub hWindowPos_set ($$) {
my $hash = shift;
my $hwnd = (@_ ? shift : $hash->{hwnd} );
my $flags;
if (exists $hash->{flags}) {
$flags = $hash->{flags};
} else { # Set flags according to existing keys in $hash
$flags = 0;
for my $bit (0..2) {
exists $hash->{$_} and $flags |= (1<<$bit) for @{$SWP_keys[$bit]};
}
}
for my $bit (0..2) { # Check for required keys
next unless $flags & (1<<$bit);
exists $hash->{$_}
or die sprintf "key $_ required for flags=%#x", $flags
for @{$SWP_keys[$bit]};
}
my %h = (%SWP_def, flags => $flags, %$hash); # Avoid warnings
my ($x, $y, $fl, $w, $h, $behind) = @h{ qw(x y flags width height behind) };
WindowPos_set($hwnd, $x, $y, $fl, $w, $h, $behind);
}
sub ChildWindows (;$) {
my $hm = OS2::localMorphPM->new(0);
my @kids;
my $h = BeginEnumWindows(@_ ? shift : 1); # HWND_DESKTOP
my $w;
push @kids, $w while $w = GetNextWindow $h;
EndEnumWindows $h;
@kids;
}
sub TopLevel ($) {
my $d = DesktopWindow;
my $w = shift;
while (1) {
my $p = QueryWindow $w, 5; # QW_PARENT;
return $w if not $p or $p == $d;
$w = $p;
}
}
sub FocusWindow_set_keep_Zorder ($) {
my $w = shift;
my $t = TopLevel $w;
my $b = hWindowPos($t)->{behind}; # we are behind this
EnableWindowUpdate($t, 0);
FocusWindow_set($w);
# sleep 1; # Make flicker stronger when present
hWindowPos_set {behind => $b}, $t;
EnableWindowUpdate($t, 1);
}
sub WindowStyle ($) {
WindowULong(shift,-2); # QWL_STYLE
}
sub OS2::localClipbrd::new {
my ($c) = shift;
my $morph = [];
push @$morph, OS2::localMorphPM->new(0) unless shift;
&OpenClipbrd;
# print STDERR ">>>>>\n";
bless $morph, $c
}
sub OS2::localClipbrd::DESTROY {
# print STDERR "<<<<<\n";
CloseClipbrd();
}
sub OS2::localFlashWindow::new ($$) {
my ($c, $w) = (shift, shift);
my $morph = OS2::localMorphPM->new(0);
FlashWindow($w, 1);
# print STDERR ">>>>>\n";
bless [$w, $morph], $c
}
sub OS2::localFlashWindow::DESTROY {
# print STDERR "<<<<<\n";
FlashWindow(shift->[0], 0);
}
# Good for \0-terminated text (not "text/unicode" and other Firefox stuff)
sub ClipbrdText (@) {
my $h = OS2::localClipbrd->new;
my $data = ClipbrdData @_;
return unless $data;
my $lim = MemoryRegionSize($data);
$lim = StrLen($data, $lim); # Look for 1-byte 0
return unpack "P$lim", pack 'L', $data;
}
sub ClipbrdText_2byte (@) {
my $h = OS2::localClipbrd->new;
my $data = ClipbrdData @_;
return unless $data;
my $lim = MemoryRegionSize($data);
$lim = StrLen($data, $lim, 2); # Look for 2-byte 0
return unpack "P$lim", pack 'L', $data;
}
sub ClipbrdTextUCS2le (@) {
my $txt = ClipbrdText_2byte @_; # little-endian shorts
#require Unicode::String;
pack "U*", unpack "v*", $txt;
}
sub ClipbrdText_set ($;@) {
my $h = OS2::localClipbrd->new;
EmptyClipbrd(); # It may contain other types
my ($txt, $no_convert_nl) = (shift, shift);
ClipbrdData_set($txt, !$no_convert_nl, @_);
}
sub ClipbrdFmtAtoms {
my $h = OS2::localClipbrd->new('nomorph');
my $fmt = 0;
my @formats;
push @formats, $fmt while eval {$fmt = EnumClipbrdFmts $fmt};
die $@ if $@ and $^E == 0x1001 and $fmt = 0; # Croaks on empty list?
@formats;
}
sub ClipbrdFmtNames {
map AtomName($_), ClipbrdFmtAtoms(@_);
}
sub MessageBox ($;$$$$$) {
my $morph = OS2::localMorphPM->new(0);
die "MessageBox needs text" unless @_;
push @_ , ($0 eq '-e' ? "Perl one-liner's message" : "$0 message") if @_ == 1;
&_MessageBox;
}
my %pointers;
sub get_pointer ($;$$) {
my $id = $_[0];
return $pointers{$id} if exists $pointers{$id};
$pointers{$id} = &SysPointer;
}
# $button needs to be of the form 'String', ['String'] or ['String', flag].
# If ['String'], it is assumed the default button; same for 'String' if $only
# is set.
sub process_MB2 ($$;$) {
die "process_MB2() needs 2 arguments, got '@_'" unless @_ == 2 or @_ == 3;
my ($button, $ret, $only) = @_;
# default is BS_PUSHBUTTON, add BS_DEFAULT if $only is set
$button = [$button, $only ? 0x400 : 0] unless ref $button eq 'ARRAY';
push @$button, 0x400 if @$button == 1; # BS_PUSHBUTTON|BS_DEFAULT
die "Button needs to be of the form 'String', ['String'] or ['String', flag]"
unless @$button == 2;
pack "Z71 x L l", $button->[0], $ret, $button->[1]; # name, retval, flag
}
# If one button, make it the default one even if it is of 'String' => val form.
# If icon is of the form 'SP#<number>', load this via SysPointer.
sub process_MB2_INFO ($;$$$) {
my $l = 0;
my $out;
die "process_MB2_INFO() needs 1..4 arguments" unless @_ and @_ < 5;
my $buttons = shift;
die "Buttons array should consist of pairs" if @$buttons % 2;
push @_, 0 unless @_; # Icon id; non-0 ignored without MB_CUSTOMICON
# Box flags (MB_MOVABLE and MB_INFORMATION or MB_CUSTOMICON)
push @_, ($_[0] ? 0x4080 : 0x4030) unless @_ > 1;
push @_, 0 unless @_ > 2; # Notify window
my ($icon, $style, $notify) = (shift, shift, shift);
$icon = get_pointer $1 if $icon =~ /^SP#(\d+)\z/;
$out = pack "L L L L", # icon, #buttons, style, notify, buttons
$icon, @$buttons/2, $style, $notify;
$out .= join '',
map process_MB2($buttons->[2*$_], $buttons->[2*$_+1], @$buttons == 2),
0..@$buttons/2-1;
pack('L', length(pack 'L', 0) + length $out) . $out;
}
# MessageBox2 'Try this', OS2::Process::process_MB2_INFO([['Dismiss', 0] => 0x1000], OS2::Process::get_pointer(22),0x4080,0), 'me', 1, 0, 0
# or the shortcut
# MessageBox2 'Try this', [[['Dismiss', 0] => 0x1000], 'SP#22'], 'me'
# 0x80 means MB_CUSTOMICON (does not focus?!). This focuses:
# MessageBox2 'Try this', [[['Dismiss',0x400] => 0x1000], 0, 0x4030,0]
# 0x400 means BS_DEFAULT. This is the same as the shortcut
# MessageBox2 'Try this', [[Dismiss => 0x1000]]
sub MessageBox2 ($;$$$$$) {
my $morph = OS2::localMorphPM->new(0);
die "MessageBox needs text" unless @_;
push @_ , [[Dismiss => 0x1000], # Name, retval (style BS_PUSHBUTTON|BS_DEFAULT)
#0, # e.g., get_pointer(11),# SPTR_ICONINFORMATION
#0x4030, # = MB_MOVEABLE | MB_INFORMATION
#0, # Notify window; was 1==HWND_DESKTOP
] if @_ == 1;
push @_ , ($0 eq '-e' ? "Perl one-liner" : $0). "'s message" if @_ == 2;
$_[1] = &process_MB2_INFO(@{$_[1]}) if ref($_[1]) eq 'ARRAY';
&_MessageBox2;
}
my %mbH_default = (
text => 'Something happened',
title => ($0 eq '-e' ? "Perl one-liner" : $0). "'s message",
parent => 1, # HWND_DESKTOP
owner => 0,
helpID => 0,
buttons => ['Dismiss' => 0x1000],
default_button => 1,
# icon => 0x30, # MB_INFORMATION
# iconID => 0, # XXX???
flags => 0, # XXX???
notifyWindow => 0, # XXX???
);
sub MessageBoxH {
die "MessageBoxH: even number of arguments expected" if @_ % 2;
my %a = (%mbH_default, @_);
die "MessageBoxH: even number of elts of button array expected"
if @{$a{buttons}} % 2;
if (defined $a{iconID}) {
$a{flags} |= 0x80; # MB_CUSTOMICON
} else {
$a{icon} = 0x30 unless defined $a{icon};
$a{iconID} = 0;
$a{flags} |= $a{icon};
}
# Mark default_button as MessageBox2() expects it:
$a{buttons}[2*$a{default_button}] = [$a{buttons}[2*$a{default_button}]];
my $use_2 = 'ARRAY' eq ref $a{buttons};
return
MessageBox2 $a{text}, [@a{qw(buttons iconID flags notifyWindow)}],
$a{parent}, $a{owner}, $a{helpID}
if $use_2;
die "MessageBoxH: unexpected format of argument 'buttons'";
}
# backward compatibility
*set_title = \&Title_set;
*get_title = \&Title;
# New (logical) names
*WindowBits_set = \&SetWindowBits;
*WindowPtr_set = \&SetWindowPtr;
*WindowULong_set = \&SetWindowULong;
*WindowUShort_set = \&SetWindowUShort;
# adapter; display; cbMemory; Configuration; VDHVersion; Flags; HWBufferSize;
# FullSaveSize; PartSaveSize; EMAdaptersOFF; EMDisplaysOFF;
sub vioConfig (;$$) {
my $data = &_vioConfig;
my @out = unpack 'x[S]SSLSSSLLLSS', $data;
# If present, offset points to S/S (with only the first work making sense)
my (@adaptersEMU, @displayEMU);
@displaysEMU = unpack("x[$out[10]]S/S", $data), pop @out if @out > 10;
@adaptersEMU = unpack("x[$out[ 9]]S/S", $data), pop @out if @out > 9;
$out[9] = $adaptersEMU[0] if @adaptersEMU;
$out[10] = $displaysEMU[0] if @displaysEMU;
@out;
}
my @vioConfig = qw(adapter display cbMemory Configuration VDHVersion Flags
HWBufferSize FullSaveSize PartSaveSize EMAdapters EMDisplays);
sub viohConfig (;$$) {
my %h;
@h{@vioConfig} = &vioConfig;
%h;
}
# fbType; color; col; row; hres; vres; fmt_ID; attrib; buf_addr; buf_length;
# full_length; partial_length; ext_data_addr;
sub vioMode() {unpack 'x[S]CCSSSSCCLLLLL', _vioMode}
my @vioMode = qw( fbType color col row hres vres fmt_ID attrib buf_addr
buf_length full_length partial_length ext_data_addr);
sub viohMode() {
my %h;
@h{@vioMode} = vioMode;
%h;
}
sub viohMode_set {
my %h = (viohMode, @_);
my $o = pack 'x[S]CCSSSSCCLLLLL', @h{@vioMode};
$o = pack 'SCCSSSSCCLLLLL', length $o, @h{@vioMode};
_vioMode_set($o);
}
sub kbdChar (;$$) {unpack 'CCCCSL', &_kbdChar}
my @kbdChar = qw(ascii scancode status nlsstate shifts time);
sub kbdhChar (;$$) {
my %h;
@h{@kbdChar} = &kbdChar;
%h
}
sub kbdStatus (;$) {unpack 'x[S]SSSS', &_kbdStatus}
my @kbdStatus = qw(state turnChar intCharFlags shifts);
sub kbdhStatus (;$) {
my %h;
@h{@kbdStatus} = &kbdStatus;
%h
}
sub kbdhStatus_set {
my $h = (@_ % 2 ? shift @_ : 0);
my %h = (kbdhStatus($h), @_);
my $o = pack 'x[S]SSSS', @h{@kbdStatus};
$o = pack 'SSSSS', length $o, @h{@kbdStatus};
_kbdStatus_set($o,$h);
}
#sub DeleteAtom { !WinDeleteAtom(@_) }
sub DeleteAtom { !_DeleteAtom(@_) }
sub DestroyAtomTable { !_DestroyAtomTable(@_) }
# XXXX This is a wrong order: we start keyreader, then screenwriter; so it is
# the writer who gets signals.
# XXXX Do we ever get a message "screenwriter killed"??? If reader HUPs us...
# Large buffer works at least for read from pipes; should we binmode???
sub __term_mirror_screen { # Read from fd=$in and write to the console
local $SIG{TERM} = $SIG{HUP} = $SIG{BREAK} = $SIG{INT} = # die() can stop END
sub { my $s = shift; warn "screenwriter killed ($s)...\n";};
my $in = shift;
open IN, "<&=$in" or die "open <&=$in: $!";
# Attempt to redirect to STDERR/OUT is not very useful, but try this anyway...
open OUT, '>', '/dev/con' or open OUT, '>&STDERR' or open OUT, '>&STDOUT'
and select OUT or die "Can't open /dev/con or STDERR/STDOUT for write";
$| = 1; local $SIG{TERM} = sub { die "screenwriter exits...\n"};
binmode IN; binmode OUT;
eval { print $_ while sysread IN, $_, 1<<16; }; # print to OUT...
warn $@ if $@;
warn "Screenwriter can't read any more ($!, $^E), terminating...\n";
}
# Does not automatically ends when the parent exits if related => 0
# copy from fd=$in to screen ; same for $out; or $in may be a named pipe
sub __term_mirror {
my $pid;
### If related => 1, we get TERM when our parent exits...
local $SIG{TERM} = sub { my $s = shift;
die "keyreader exits in a few secs ($s)...\n" };
my ($in, $out) = (shift, shift);
if (defined $out and length $out) { # Allow '' for ease of @ARGV
open OUT, ">&=$out" or die "Cannot open &=$out for write: $!";
fcntl(OUT, 4, 1); # F_SETFD, NOINHERIT
open IN, "<&=$in" or die "Cannot open &=$in for read/ioctl: $!";
fcntl(IN, 4, 0); # F_SETFD, INHERIT
} else {
warn "Unexpected i/o pipe name: `$in'" unless $in =~ m,^[\\/]pipe[\\/],i;
OS2::pipe $in, 'wait';
open OUT, '+<', $in or die "Can't open `$in' for r/w: $!";
fcntl(OUT, 4, 0); # F_SETFD, INHERIT
$in = fileno OUT;
undef $out;
}
my %opt = @_;
Title_set $opt{title} if exists $opt{title};
&scrsize_set(split /,/, $opt{scrsize}) if exists $opt{scrsize};
my @i = map +('-I', $_), @INC; # Propagate @INC
# Careful unless PERL_SIGNALS=unsafe: SIGCHLD does not work...
$SIG{CHLD} = sub {wait; die "Keyreader follows screenwriter...\n"}
unless defined $out;
$pid = system 1, $^X, @i, '-MOS2::Process',
'-we', 'END {sleep 2} OS2::Process::__term_mirror_screen shift', $in;
close IN if defined $out;
$pid > 0 or die "Cannot start a grandkid";
open STDIN, '<', '/dev/con' or warn "reopen stdin: $!";
select OUT; $| = 1; binmode OUT; # need binmode: sysread() may be bin
$SIG{PIPE} = sub { die "writing to a closed pipe" };
$SIG{HUP} = $SIG{BREAK} = $SIG{INT} = $SIG{TERM};
# Workaround: EMX v61 won't return pid on SESSION|UNRELATED after fork()...
syswrite OUT, pack 'L', $$ or die "syswrite failed: $!" if $opt{writepid};
# Turn Nodelay on kbd. Pipe is automatically nodelay...
if ($opt{read_by_key}) {
if (eval {require Term::ReadKey; 1}) {
Term::ReadKey::ReadMode(4);
} else { warn "can't load Term::ReadKey; input by lines..." }
}
print while sysread STDIN, $_, 1<<($opt{smallbuffer} ? 0 : 16); # to OUT
}
my $c = 0;
sub io_term { # arguments as hash: read_by_key/title/scrsize/related/writepid
# read_by_key disables echo too...
local $\ = '';
my ($sysf, $in1, $out1, $in2, $out2, $f1, $f2, $fd) = 4; # P_SESSION
my %opt = @_;
if ($opt{related}) {
pipe $in1, $out1 or die "pipe(): $!";
pipe $in2, $out2 or do { close($in1), close($out1), die "pipe(): $!" };
$f1 = fileno $in1; $f2 = fileno $out2;
fcntl($in2, 4, 1); fcntl($out1, 4, 1); # F_SETFD, NOINHERIT
fcntl($in1, 4, 0); fcntl($out2, 4, 0); # F_SETFD, INHERIT
} else {
$f1 = "/pipe/perlmodule/OS2/Process/$$-" . $c++;
$out1 = OS2::pipe $f1, 'rw' or die "OS2::pipe(): $^E";
#open $out1, "+<&=$fd" or die "dup($fd): $!, $^E";
fcntl($out1, 4, 1); # F_SETFD, NOINHERIT
#$in2 = $out1;
$f2 = '';
$sysf |= 0x40000; # P_UNRELATED
$opt{writepid} = 1, unless exists $opt{writepid};
}
# system P_SESSION will fail if there is another process
# in the same session with a "related" asynchronous child session.
my @i = map +('-I', $_), @INC; # Propagate @INC
my $krun = <<'EOS';
END {sleep($sleep || 5)}
use OS2::Process; $sleep = 1;
OS2::Process::__term_mirror(@ARGV);
EOS
my $kpid;
if ($opt{related}) {
$kpid = system $sysf, $^X, @i, '-we', $krun, $f1, $f2, %opt;
} else {
local $ENV{PERL_SIGNALS} = 'unsafe';
$kpid = system $sysf, $^X, @i, '-we', $krun, $f1, $f2, %opt;
}
close $in1 or warn if defined $in1;
close $out2 or warn if defined $out2;
# EMX BUG with $kpid == 0 after fork()
do { close($in2), ($out1 != $in2 and close($out1)),
die "system $sysf, $^X: kid=$kpid, \$!=`$!', \$^E=`$^E'" }
unless $kpid > 0 or $kpid == 0 and $opt{writepid};
# Can't read or write until the kid opens the pipes
OS2::pipeCntl $out1, 'connect', 'wait' unless length $f2;
# Without duping: write after read (via termio) on the same fd dups input
open $in2, '<&', $out1 or die "dup($out1): $^E" unless $opt{related};
if ($opt{writepid}) {
my $c = length pack 'L', 0;
my $c1 = sysread $in2, (my $pid), $c;
$c1 == $c or die "unexpected length read: $c1 vs $c";
$kpid = unpack 'L', $pid;
}
return ($in2, $out1, $kpid);
}
# Autoload methods go after __END__, and are processed by the autosplit program.
1;
__END__
=head1 NAME
OS2::Process - exports constants for system() call, and process control on OS2.
=head1 SYNOPSIS
use OS2::Process;
$pid = system(P_PM | P_BACKGROUND, "epm.exe");
=head1 DESCRIPTION
=head2 Optional argument to system()
the builtin function system() under OS/2 allows an optional first
argument which denotes the mode of the process. Note that this argument is
recognized only if it is strictly numerical.
You can use either one of the process modes:
P_WAIT (0) = wait until child terminates (default)
P_NOWAIT = do not wait until child terminates
P_SESSION = new session
P_DETACH = detached
P_PM = PM program
and optionally add PM and session option bits:
P_DEFAULT (0) = default
P_MINIMIZE = minimized
P_MAXIMIZE = maximized
P_FULLSCREEN = fullscreen (session only)
P_WINDOWED = windowed (session only)
P_FOREGROUND = foreground (if running in foreground)
P_BACKGROUND = background
P_NOCLOSE = don't close window on exit (session only)
P_QUOTE = quote all arguments
P_TILDE = MKS argument passing convention
P_UNRELATED = do not kill child when father terminates
=head2 Access to process properties
On OS/2 processes have the usual I<parent/child> semantic;
additionally, there is a hierarchy of sessions with their own
I<parent/child> tree. A session is either a FS session, or a windowed
pseudo-session created by PM. A session is a "unit of user
interaction", a change to in/out settings in one of them does not
affect other sessions.
=over
=item my_type()
returns the type of the current process (one of
"FS", "DOS", "VIO", "PM", "DETACH" and "UNKNOWN"), or C<undef> on error.
=item C<file_type(file)>
returns the type of the executable file C<file>, or
dies on error. The bits 0-2 of the result contain one of the values
=over
=item C<T_NOTSPEC> (0)
Application type is not specified in the executable header.
=item C<T_NOTWINDOWCOMPAT> (1)
Application type is not-window-compatible.
=item C<T_WINDOWCOMPAT> (2)
Application type is window-compatible.
=item C<T_WINDOWAPI> (3)
Application type is window-API.
=back
The remaining bits should be masked with the following values to
determine the type of the executable:
=over
=item C<T_BOUND> (8)
Set to 1 if the executable file has been "bound" (by the BIND command)
as a Family API application. Bits 0, 1, and 2 still apply.
=item C<T_DLL> (0x10)
Set to 1 if the executable file is a dynamic link library (DLL)
module. Bits 0, 1, 2, 3, and 5 will be set to 0.
=item C<T_DOS> (0x20)
Set to 1 if the executable file is in PC/DOS format. Bits 0, 1, 2, 3,
and 4 will be set to 0.
=item C<T_PHYSDRV> (0x40)
Set to 1 if the executable file is a physical device driver.
=item C<T_VIRTDRV> (0x80)
Set to 1 if the executable file is a virtual device driver.
=item C<T_PROTDLL> (0x100)
Set to 1 if the executable file is a protected-memory dynamic link
library module.
=item C<T_32BIT> (0x4000)
Set to 1 for 32-bit executable files.
=back
file_type() may croak with one of the strings C<"Invalid EXE
signature"> or C<"EXE marked invalid"> to indicate typical error
conditions. If given non-absolute path, will look on C<PATH>, will
add extension F<.exe> if no extension is present (add extension F<.>
to suppress).
=item C<@list = process_codepages()>
the first element is the currently active codepage, up to 2 additional
entries specify the system's "prepared codepages": the codepages the
user can switch to. The active codepage of a process is one of the
prepared codepages of the system (if present).
=item C<process_codepage_set($cp)>
sets the currently active codepage. [Affects printer output, in/out
codepages of sessions started by this process, and the default
codepage for drawing in PM; is inherited by kids. Does not affect the
out- and in-codepages of the session.]
=item ppid()
returns the PID of the parent process.
=item C<ppidOf($pid = $$)>
returns the PID of the parent process of $pid. -1 on error.
=item C<sidOf($pid = $$)>
returns the session id of the process id $pid. -1 on error.
=back
=head2 Control of VIO sessions
VIO applications are applications running in a text-mode session.
=over
=item out_codepage()
gets code page used for screen output (glyphs). -1 means that a user font
was loaded.
=item C<out_codepage_set($cp)>
sets code page used for screen output (glyphs). -1 switches to a preloaded
user font. -2 switches off the preloaded user font.
=item in_codepage()
gets code page used for keyboard input. 0 means that a hardware codepage
is used.
=item C<in_codepage_set($cp)>
sets code page used for keyboard input.
=item C<($w, $h) = scrsize()>
width and height of the given console window in character cells.
=item C<scrsize_set([$w, ] $h)>
set height (and optionally width) of the given console window in
character cells. Use 0 size to keep the old size.
=item C<($s, $e, $w, $a) = cursor()>
gets start/end lines of the blinking cursor in the charcell, its width
(1 on text modes) and attribute (-1 for hidden, in text modes other
values mean visible, in graphic modes color).
=item C<cursor_set($s, $e, [$w [, $a]])>
sets start/end lines of the blinking cursor in the charcell. Negative
values mean percents of the character cell height.
=item screen()
gets a buffer with characters and attributes of the screen.
=item C<screen_set($buffer)>
restores the screen given the result of screen(). E.g., if the file
C<$file> contains the screen contents, then
open IN, '<', $file or die;
binmode IN;
read IN, $in, -s IN;
$s = screen;
$in .= qq(\0) x (length($s) - length $in);
substr($in, length $s) = '';
screen_set $in;
will restore the screen content even if the height of the window
changed (if the width changed, more manipulation is needed).
=back
=head2 Control of the process list
With the exception of Title_set(), all these calls require that PM is
running, they would not work under alternative Session Managers.
=over
=item process_entry()
returns a list of the following data:
=over
=item *
Title of the process (in the C<Ctrl-Esc> list);
=item *
window handle of switch entry of the process (in the C<Ctrl-Esc> list);
=item *
window handle of the icon of the process;
=item *
process handle of the owner of the entry in C<Ctrl-Esc> list;
=item *
process id of the owner of the entry in C<Ctrl-Esc> list;
=item *
session id of the owner of the entry in C<Ctrl-Esc> list;
=item *
whether visible in C<Ctrl-Esc> list;
=item *
whether item cannot be switched to (note that it is not actually
grayed in the C<Ctrl-Esc> list));
=item *
whether participates in jump sequence;
=item *
program type. Possible values are:
PROG_DEFAULT 0
PROG_FULLSCREEN 1
PROG_WINDOWABLEVIO 2
PROG_PM 3
PROG_VDM 4
PROG_WINDOWEDVDM 7
Although there are several other program types for WIN-OS/2 programs,
these do not show up in this field. Instead, the PROG_VDM or
PROG_WINDOWEDVDM program types are used. For instance, for
PROG_31_STDSEAMLESSVDM, PROG_WINDOWEDVDM is used. This is because all
the WIN-OS/2 programs run in DOS sessions. For example, if a program
is a windowed WIN-OS/2 program, it runs in a PROG_WINDOWEDVDM
session. Likewise, if it's a full-screen WIN-OS/2 program, it runs in
a PROG_VDM session.
=item *
switch-entry handle.
=back
Optional arguments: the pid and the window-handle of the application running
in the OS/2 session to query.
=item process_hentry()
similar to process_entry(), but returns a hash reference, the keys being
title owner_hwnd icon_hwnd owner_phandle owner_pid owner_sid
visible nonswitchable jumpable ptype sw_entry
(a copy of the list of keys is in @hentry_fields).
=item process_entries()
similar to process_entry(), but returns a list of array reference for all
the elements in the switch list (one controlling C<Ctrl-Esc> window).
=item process_hentries()
similar to process_hentry(), but returns a list of hash reference for all
the elements in the switch list (one controlling C<Ctrl-Esc> window).
=item change_entry()
changes a process entry, arguments are the same as process_entry() returns.
=item change_entryh()
Similar to change_entry(), but takes a hash reference as an argument.
=item process_hwnd()
returns the C<owner_hwnd> of the process entry (for VIO windowed processes
this is the frame window of the session).
=item Title()
returns the text of the task switch menu entry of the current session.
(There is no way to get this info in non-standard Session Managers. This
implementation is a shortcut via process_entry().)
=item C<Title_set(newtitle)>
tries two different interfaces. The Session Manager one does not work
with some windows (if the title is set from the start).
This is a limitation of OS/2, in such a case $^E is set to 372 (type
help 372
for a funny - and wrong - explanation ;-). In such cases a
direct-manipulation of low-level entries is used (same as bothTitle_set()).
Keep in mind that some versions of OS/2 leak memory with such a manipulation.
=item winTitle()
returns text of the titlebar of the current process' window.
=item C<winTitle_set(newtitle)>
sets text of the titlebar of the current process' window. The change does not
affect the text of the switch entry of the current window.
=item C<swTitle_set(newtitle)>
sets text of the task switch menu entry of the current process' window. [There
is no API to query this title.] Does it via SwitchEntry interface,
not Session manager interface. The change does not affect the text of the
titlebar of the current window.
=item C<bothTitle_set(newtitle)>
sets text of the titlebar and task switch menu of the current process' window
via direct manipulation of the windows' texts.
=item C<SwitchToProgram([$sw_entry])>
switch to session given by a switch list handle (defaults to the entry of our process).
Use of this function causes another window (and its related windows)
of a PM session to appear on the front of the screen, or a switch to
another session in the case of a non-PM program. In either case,
the keyboard (and mouse for the non-PM case) input is directed to
the new program.
=back
=head2 Control of the PM windows
Some of these API's require sending a message to the specified window.
In such a case the process needs to be a PM process, or to be morphed
to a PM process via OS2::MorphPM().
For a temporary morphing to PM use the L<OS2::localMorphPM|/OS2::localMorphPM,
OS2::localFlashWindow, and OS2::localClipbrd classes> class.
Keep in mind that PM windows are engaged in 2 "orthogonal" window
trees, as well as in the z-order list.
One tree is given by the I<parent/child> relationship. This
relationship affects drawing (child is drawn relative to its parent
(lower-left corner), and the drawing is clipped by the parent's
boundary; parent may request that I<it's> drawing is clipped to be
confined to the outsize of the child's and/or siblings' windows);
hiding; minimizing/restoring; and destroying windows.
Another tree (not necessarily connected?) is given by I<ownership>
relationship. Ownership relationship assumes cooperation of the
engaged windows via passing messages on "important events"; e.g.,
scrollbars send information messages when the "bar" is moved, menus
send messages when an item is selected; frames
move/hide/unhide/minimize/restore/change-z-order-of owned frames when
the owner is moved/etc., and destroy the owned frames (even when these
frames are not descendants) when the owner is destroyed; etc. [An
important restriction on ownership is that owner should be created by
the same thread as the owned thread, so they engage in the same
message queue.]
Windows may be in many different state: Focused (take keyboard events) or not,
Activated (=Frame windows in the I<parent/child> tree between the root and
the window with the focus; usually indicate such "active state" by titlebar
highlights, and take mouse events) or not, Enabled/Disabled (this influences
the ability to update the graphic, and may change appearance, as for
enabled/disabled buttons), Visible/Hidden, Minimized/Maximized/Restored, Modal
or not, etc.
The APIs below all die() on error with the message being $^E.
=over
=item C<WindowText($hwnd)>
gets "a text content" of a window. Requires (morphing to) PM.
=item C<WindowText_set($hwnd, $text)>
sets "a text content" of a window. Requires (morphing to) PM.
=item C<($x, $y, $flags, $width, $height, $behind, @rest) = WindowPos($hwnd)>
gets window position info as 8 integers (of C<SWP>), in the order suitable
for WindowPos_set(). @rest is marked as "reserved" in PM docs. $flags
is a combination of C<SWP_*> constants.
=item C<$hash = hWindowPos($hwnd)>
gets window position info as a hash reference; the keys are C<flags width
height x y behind hwnd reserved1 reserved2>.
Example:
exit unless $hash->{flags} & SWP_MAXIMIZE; # Maximized
=item C<WindowPos_set($hwnd, $x, $y, $flags = SWP_MOVE, $width = 0, $height = 0, $behind = HWND_TOP)>
Set state of the window: position, size, zorder, show/hide, activation,
minimize/maximize/restore etc. Which of these operations to perform
is governed by $flags.
=item C<hWindowPos_set($hash, [$hwnd])>
Same as C<WindowPos_set>, but takes the position from keys C<fl width height
x y behind hwnd> of the hash referenced by $hash. If $hwnd is explicitly
specified, it overrides C<< $hash->{hwnd} >>. If $hash->{flags} is not specified,
it is calculated basing on the existing keys of $hash. Requires (morphing to) PM.
Example:
hWindowPos_set {flags => SWP_MAXIMIZE}, $hwnd; # Maximize
=item C<($pid, $tid) = WindowProcess($hwnd)>
gets I<PID> and I<TID> of the process associated to the window.
=item C<ClassName($hwnd)>
returns the class name of the window.
If this window is of any of the preregistered WC_* classes the class
name returned is in the form "#nnnnn", where "nnnnn" is a group
of up to five digits that corresponds to the value of the WC_* class name
constant.
=item WindowStyle($hwnd)
Returns the "window style" flags for window handle $hwnd.
=item WindowULong($hwnd, $id), WindowPtr($hwnd, $id), WindowUShort($hwnd, $id)
Return data associated to window handle $hwnd. $id should be one of
C<QWL_*>, C<QWP_PFNWP>, C<QWS_*> constants, or a byte offset referencing
a region (of length 4, 4, 2 correspondingly) fully inside C<0..cbWindowData-1>.
Here C<cbWindowData> is the count of extra user-specified bytes reserved
for the given class of windows.
=item WindowULong_set($hwnd, $id, $value), WindowPtr_set, WindowUShort_set
Similar to WindowULong(), WindowPtr(), WindowUShort(), but for assigning the
value $value.
=item WindowBits_set($hwnd, $id, $value, $mask)
Similar to WindowULong_set(), but will change only the bits which are
set in $mask.
=item FocusWindow()
returns the handle of the focus window. Optional argument for specifying
the desktop to use.
=item C<FocusWindow_set($hwnd)>
set the focus window by handle. Optional argument for specifying the desktop
to use. E.g, the first entry in program_entries() is the C<Ctrl-Esc> list.
To show an application, use either one of
WinShowWindow( $hwnd, 1 );
FocusWindow_set( $hwnd );
SwitchToProgram($switch_handle);
(Which work with alternative focus-to-front policies?) Requires
(morphing to) PM.
Switching focus to currently-unfocused window moves the window to the
front in Z-order; use FocusWindow_set_keep_Zorder() to avoid this.
=item C<FocusWindow_set_keep_Zorder($hwnd)>
same as FocusWindow_set(), but preserves the Z-order of windows.
=item C<ActiveWindow([$parentHwnd])>
gets the active subwindow's handle for $parentHwnd or desktop.
Returns FALSE if none.
=item C<ActiveWindow_set($hwnd, [$parentHwnd])>
sets the active subwindow's handle for $parentHwnd or desktop. Requires (morphing to) PM.
=item C<ShowWindow($hwnd [, $show])>
Set visible/hidden flag of the window. Default: $show is TRUE.
=item C<EnableWindowUpdate($hwnd [, $update])>
Set window visibility state flag for the window for subsequent drawing.
No actual drawing is done at this moment. Use C<ShowWindow($hwnd, $state)>
when redrawing is needed. While update is disabled, changes to the "window
state" do not change the appearance of the window. Default: $update is TRUE.
(What is manipulated is the bit C<WS_VISIBLE> of the window style.)
=item C<EnableWindow($hwnd [, $enable])>
Set the window enabled state. Default: $enable is TRUE.
Results in C<WM_ENABLED> message sent to the window. Typically, this
would change the appearance of the window. If at the moment of disabling
focus is in the window (or a descendant), focus is lost (no focus anywhere).
If focus is needed, it can be reassigned explicitly later.
=item IsWindowEnabled(), IsWindowVisible(), IsWindowShowing()
these functions take $hwnd as an argument. IsWindowEnabled() queries
the state changed by EnableWindow(), IsWindowVisible() the state changed
by ShowWindow(), IsWindowShowing() is true if there is a part of the window
visible on the screen.
=item C<PostMsg($hwnd, $msg, $mp1, $mp2)>
post message to a window. The meaning of $mp1, $mp2 is specific for each
message id $msg, they default to 0. E.g.,
use OS2::Process qw(:DEFAULT WM_SYSCOMMAND WM_CONTEXTMENU
WM_SAVEAPPLICATION WM_QUIT WM_CLOSE
SC_MAXIMIZE SC_RESTORE);
$hwnd = process_hentry()->{owner_hwnd};
# Emulate choosing `Restore' from the window menu:
PostMsg $hwnd, WM_SYSCOMMAND, MPFROMSHORT(SC_RESTORE); # Not
# immediate
# Emulate `Show-Contextmenu' (Double-Click-2), two ways:
PostMsg ActiveWindow, WM_CONTEXTMENU;
PostMsg FocusWindow, WM_CONTEXTMENU;
/* Emulate `Close' */
PostMsg ActiveWindow, WM_CLOSE;
/* Same but with some "warnings" to the application */
$hwnd = ActiveWindow;
PostMsg $hwnd, WM_SAVEAPPLICATION;
PostMsg $hwnd, WM_CLOSE;
PostMsg $hwnd, WM_QUIT;
In fact, MPFROMSHORT() may be omitted above.
For messages to other processes, messages which take/return a pointer are
not supported.
=item C<MP*()>
The functions MPFROMSHORT(), MPVOID(), MPFROMCHAR(), MPFROM2SHORT(),
MPFROMSH2CH(), MPFROMLONG() can be used the same way as from C. Use them
to construct parameters $m1, $m2 to PostMsg().
These functions are not exported by default.
=item C<$eh = BeginEnumWindows($hwnd)>
starts enumerating immediate child windows of $hwnd in z-order. The
enumeration reflects the state at the moment of BeginEnumWindows() calls;
use IsWindow() to be sure. All the functions in this group require (morphing to) PM.
=item C<$kid_hwnd = GetNextWindow($eh)>
gets the next kid in the list. Gets 0 on error or when the list ends.
=item C<EndEnumWindows($eh)>
End enumeration and release the list.
=item C<@list = ChildWindows([$hwnd])>
returns the list of child windows at the moment of the call. Same remark
as for enumeration interface applies. Defaults to HWND_DESKTOP.
Example of usage:
sub l {
my ($o,$h) = @_;
printf ' ' x $o . "%#x\n", $h;
l($o+2,$_) for ChildWindows $h;
}
l 0, $HWND_DESKTOP
=item C<IsWindow($hwnd)>
true if the window handle is still valid.
=item C<QueryWindow($hwnd, $type)>
gets the handle of a related window. $type should be one of C<QW_*> constants.
=item C<IsChild($hwnd, $parent)>
return TRUE if $hwnd is a descendant of $parent.
=item C<WindowFromId($hwnd, $id)>
return a window handle of a child of $hwnd with the given $id.
hwndSysMenu = WinWindowFromID(hwndDlg, FID_SYSMENU);
WinSendMsg(hwndSysMenu, MM_SETITEMATTR,
MPFROM2SHORT(SC_CLOSE, TRUE),
MPFROM2SHORT(MIA_DISABLED, MIA_DISABLED));
=item C<WindowFromPoint($x, $y [, $hwndParent [, $descedantsToo]])>
gets a handle of a child of $hwndParent at C<($x,$y)>. If $descedantsToo
(defaulting to 1) then children of children may be returned too. May return
$hwndParent (defaults to desktop) if no suitable children are found,
or 0 if the point is outside the parent.
$x and $y are relative to $hwndParent.
=item C<EnumDlgItem($dlgHwnd, $type [, $relativeHwnd])>
gets a dialog item window handle for an item of type $type of $dlgHwnd
relative to $relativeHwnd, which is descendant of $dlgHwnd.
$relativeHwnd may be specified if $type is EDI_FIRSTTABITEM or
EDI_LASTTABITEM.
The return is always an immediate child of hwndDlg, even if hwnd is
not an immediate child window. $type may be
=over
=item EDI_FIRSTGROUPITEM
First item in the same group.
=item EDI_FIRSTTABITEM
First item in dialog with style WS_TABSTOP. hwnd is ignored.
=item EDI_LASTGROUPITEM
Last item in the same group.
=item EDI_LASTTABITEM
Last item in dialog with style WS_TABSTOP. hwnd is ignored.
=item EDI_NEXTGROUPITEM
Next item in the same group. Wraps around to beginning of group when
the end of the group is reached.
=item EDI_NEXTTABITEM
Next item with style WS_TABSTOP. Wraps around to beginning of dialog
item list when end is reached.
=item EDI_PREVGROUPITEM
Previous item in the same group. Wraps around to end of group when the
start of the group is reached. For information on the WS_GROUP style,
see Window Styles.
=item EDI_PREVTABITEM
Previous item with style WS_TABSTOP. Wraps around to end of dialog
item list when beginning is reached.
=back
=item DesktopWindow()
gets the actual window handle of the PM desktop; most APIs accept the
pseudo-handle C<HWND_DESKTOP> instead. Keep in mind that the WPS
desktop (one with WindowText() being C<"Desktop">) is a different beast?!
=item TopLevel($hwnd)
gets the toplevel window of $hwnd.
=item ResetWinError()
Resets $^E. One may need to call it before the C<Win*>-class APIs which may
return 0 during normal operation. In such a case one should check both
for return value being zero and $^E being non-zero. The following APIs
do ResetWinError() themselves, thus do not need an explicit one:
WindowPtr
WindowULong
WindowUShort
WindowTextLength
ActiveWindow
PostMsg
This function is normally not needed. Not exported by default.
=back
=head2 Control of the PM data
=over
=item ActiveDesktopPathname()
gets the path of the directory which corresponds to Desktop.
=item InvalidateRect
=item CreateFrameControls
=back
=head2 Control of the PM clipboard
=over
=item ClipbrdText()
gets the content of the clipboard. An optional argument is the format
of the data in the clipboard (defaults to C<CF_TEXT>). May croak with error
C<PMERR_INVALID_HWND> if no data of given $fmt is present.
Note that the usual convention is to have clipboard data with
C<"\r\n"> as line separators. This function will only work with clipboard
data types which are delimited by C<"\0"> byte (not included in the result).
=item ClipbrdText_2byte
Same as ClipbrdText(), but will only work with clipboard
data types which are collection of C C<shorts> delimited by C<0> short
(not included in the result).
=item ClipbrdTextUCS2le
Same as ClipbrdText_2byte(), but will assume that the shorts represent
an Unicode string in I<UCS-2le> format (little-endian 2-byte representation
of Unicode), and will provide the result in Perl internal C<utf8> format
(one short of input represents one Perl character).
Note that Firefox etc. export their selection in unicode types of this format.
=item ClipbrdText_set($txt, [$no_convert_nl, [$fmt, [$fmtinfo, [$hab] ] ] ] )
sets the text content of the clipboard after removing old contents. Unless the
optional argument $no_convert_nl is TRUE, will convert newlines to C<"\r\n">. Another optional
argument $fmt is the format of the data in the clipboard (should be an
atom, defaults to C<CF_TEXT>). Other arguments are as for C<ClipbrdData_set>.
Croaks on failure.
=item ClipbrdFmtInfo( [$fmt, [ $hab ] ])
returns the $fmtInfo flags set by the application which filled the
format $fmt of the clipboard. $fmt defaults to C<CF_TEXT>.
=item ClipbrdOwner( [ $hab ] )
Returns window handle of the current clipboard owner.
=item ClipbrdViewer( [ $hab ] )
Returns window handle of the current clipboard viewer.
=item ClipbrdData( [$fmt, [ $hab ] ])
Returns a handle to clipboard data of the given format as an integer.
Format defaults to C<CF_TEXT> (in this case the handle is a memory address).
Clipboard should be opened before calling this function. May croak with error
C<PMERR_INVALID_HWND> if no data of given $fmt is present.
The result should not be used after clipboard is closed. Hence a return handle
of type C<CLI_POINTER> may need to be converted to a string and stored for
future usage. Use MemoryRegionSize() to get a high estimate on the length
of region addressed by this pointer; the actual length inside this region
should be obtained by knowing particular format of data. E.g., it may be
0-byte terminated for string types, or 0-short terminated for wide-char string
types.
=item OpenClipbrd( [ $hab ] )
claim read access to the clipboard. May need a message queue to operate.
May block until other processes finish dealing with clipboard.
=item CloseClipbrd( [ $hab ] )
Allow other processes access to clipboard.
Clipboard should be opened before calling this function.
=item ClipbrdData_set($data, [$convert_nl, [$fmt, [$fmtInfo, [ $hab] ] ] ] )
Sets the clipboard data of format given by atom $fmt. Format defaults to
CF_TEXT.
$fmtInfo should declare what type of handle $data is; it should be either
C<CFI_POINTER>, or C<CFI_HANDLE> (possibly qualified by C<CFI_OWNERFREE>
and C<CFI_OWNERDRAW> flags). It defaults to C<CFI_HANDLE> for $fmt being
standard bitmap, metafile, and palette (undocumented???) formats;
otherwise defaults to C<CFI_POINTER>. If format is C<CFI_POINTER>, $data
should contain the string to copy to clipboard; otherwise it should be an
integer handle.
If $convert_nl is TRUE (the default), C<"\n"> in $data are converted to
C<"\r\n"> pairs if $fmt is C<CFI_POINTER> (as is the convention for text
format of the clipboard) unless they are already in such a pair.
=item _ClipbrdData_set($data, [$fmt, [$fmtInfo, [ $hab] ] ] )
Sets the clipboard data of format given by atom $fmt. Format defaults to
CF_TEXT. $data should be an address (in givable unnamed shared memory which
should not be accessed or manipulated after this call) or a handle in a form
of an integer.
$fmtInfo has the same semantic as for ClipbrdData_set().
=item ClipbrdOwner_set( $hwnd, [ $hab ] )
Sets window handle of the current clipboard owner (window which gets messages
when content of clipboard is retrieved).
=item ClipbrdViewer_set( $hwnd, [ $hab ] )
Sets window handle of the current clipboard owner (window which gets messages
when content of clipboard is changed).
=item ClipbrdFmtNames()
Returns list of names of formats currently available in the clipboard.
=item ClipbrdFmtAtoms()
Returns list of atoms of formats currently available in the clipboard.
=item EnumClipbrdFmts($fmt [, $hab])
Low-level access to the list of formats currently available in the clipboard.
Returns the atom for the format of clipboard after $fmt. If $fmt is 0, returns
the first format of clipboard. Returns 0 if $fmt is the last format. Example:
{
my $h = OS2::localClipbrd->new('nomorph');
my $fmt = 0;
push @formats, AtomName $fmt
while $fmt = EnumClipbrdFmts $fmt;
}
Clipboard should be opened before calling this function. May croak if
no format is present.
=item EmptyClipbrd( [ $hab ] )
Remove all the data handles in the clipboard. croak()s on failure.
Clipboard should be opened before calling this function.
Recommended before assigning a value to clipboard to remove extraneous
formats of data from clipboard.
=item ($size, $flags) = MemoryRegionSize($addr, [$size_lim, [ $interrupt ]])
$addr should be a memory address (encoded as integer). This call finds
the largest continuous region of memory belonging to the same memory object
as $addr, and having the same memory flags as $addr. $flags is the value of
the memory flag of $addr (see docs of DosQueryMem(3) for details). If
optional argument $size_lim is given, the search is restricted to the region
this many bytes long (after $addr).
($addr and $size are rounded so that all the memory pages containing
the region are inspected.) Optional argument $interrupt (defaults to 1)
specifies whether region scan should be interruptible by signals.
=back
Use class C<OS2::localClipbrd> to ensure that clipboard is closed even if
the code in the block made a non-local exit.
See the L</OS2::localMorphPM, OS2::localFlashWindow, and OS2::localClipbrd classes>
=head2 Control of the PM atom tables
Low-level methods to access the atom table(s). $atomtable defaults to
the SystemAtomTable().
=over
=item AddAtom($name, [$atomtable])
Returns the atom; increments the use count unless $name is a name of an
integer atom.
=item FindAtom($name, [$atomtable])
Returns the atom if it exists, 0 otherwise (actually, croaks).
=item DeleteAtom($name, [$atomtable])
Decrements the use count unless $name is a name of an integer atom.
When count goes to 0, association of the name to an integer is removed.
(Version with prepended underscore returns 0 on success.)
=item AtomName($atom, [$atomtable])
Returns the name of the atom. Integer atoms have names of format C<"#ddddd">
of variable length up to 7 chars.
=item AtomLength($atom, [$atomtable])
Returns the length of the name of the atom. Return of 0 means that no
such atom exists (but usually croaks in such a case).
Integer atoms always return length 6.
=item AtomUsage($name, [$atomtable])
Returns the usage count of the atom.
=item SystemAtomTable()
Returns central atom table accessible to any process.
=item CreateAtomTable( [ $initial, [ $buckets ] ] )
Returns new per-process atom table. See docs for WinCreateAtomTable(3).
=item DestroyAtomTable($atomtable)
Dispose of the table. (Version with prepended underscore returns 0 on success.)
=back
=head2 Alerting the user
=over
=item Alarm([$type])
Audible alarm of type $type (defaults to C<WA_ERROR=2>). Other useful
values are C<WA_WARNING=0>, C<WA_NOTE=1>. (What is C<WA_CDEFALARMS=3>???)
The duration and frequency of the alarms can be changed by the
OS2::SysValues_set(). The alarm frequency is defined to be in the range 0x0025
through 0x7FFF. The alarm is not generated if system value SV_ALARM is set
to FALSE. The alarms are dependent on the device capability.
=item FlashWindow($hwnd, $doFlash)
Starts/stops (depending on $doFlash being TRUE/FALSE) flashing the window
$hwnd's borders and titlebar. First 5 flashes are accompanied by alarm beeps.
Example (for VIO applications):
{ my $morph = OS2::localMorphPM->new(0);
print STDERR "Press ENTER!\n";
FlashWindow(process_hwnd, 1);
<>;
FlashWindow(process_hwnd, 0);
}
Since flashing window persists even when application ends, it is very
important to protect the switching off flashing from non-local exits. Use
the class C<OS2::localFlashWindow> for this. Creating the object of this
class starts flashing the window until the object is destroyed. The above
example becomes:
print STDERR "Press ENTER!\n";
{ my $flash = OS2::localFlashWindow->new( process_hwnd );
<>;
}
B<Notes from IBM docs:> Flashing a window brings the user's attention to a
window that is not the active window, where some important message or dialog
must be seen by the user.
Note: It should be used only for important messages, for example, where some
component of the system is failing and requires immediate attention to avoid
damage.
=item MessageBox($text, [ $title, [$flags, ...] ])
Shows a simple messagebox with (optional) icon, message $text, and one or
more buttons to dismiss the box. Returns the indicator of which action was
taken by the user. If optional argument $title is not given,
the title is constructed from the application name. The optional argument
$flags describes the appearance of the box; the default is to have B<Cancel>
button, I<INFO>-style icon, and a border for moving. Flags should be
a combination of
Buttons on the box: or Button Group
MB_OK OK
MB_OKCANCEL both OK and CANCEL
MB_CANCEL CANCEL
MB_ENTER ENTER
MB_ENTERCANCEL both ENTER and CANCEL
MB_RETRYCANCEL both RETRY and CANCEL
MB_ABORTRETRYIGNORE ABORT, RETRY, and IGNORE
MB_YESNO both YES and NO
MB_YESNOCANCEL YES, NO, and CANCEL
Color or Icon
MB_ICONHAND a small red circle with a red line across
it.
MB_ERROR a small red circle with a red line across
it.
MB_ICONASTERISK an information (i) icon.
MB_INFORMATION an information (i) icon.
MB_ICONEXCLAMATION an exclamation point (!) icon.
MB_WARNING an exclamation point (!) icon.
MB_ICONQUESTION a question mark (?) icon.
MB_QUERY a question mark (?) icon.
MB_NOICON No icon.
Default action (i.e., focussed button; default is MB_DEFBUTTON1)
MB_DEFBUTTON1 The first button is the default
selection.
MB_DEFBUTTON2 The second button is the default
selection.
MB_DEFBUTTON3 The third button is the default
selection.
Modality indicator
MB_APPLMODAL Message box is application modal
(default).
MB_SYSTEMMODAL Message box is system modal.
Mobility indicator
MB_MOVEABLE Message box is moveable.
With C<MB_MOVEABLE> the message box is displayed with a title bar and a
system menu, which shows only the Move, Close, and Task Manager choices,
which can be selected either by use of the pointing device or by
accelerator keys. If the user selects Close, the message box is removed
and the usResponse is set to C<MBID_CANCEL>, whether or not a cancel button
existed within the message box.
C<Esc> key dismisses the dialogue only if C<CANCEL> button is present; the
return value is C<MBID_CANCEL>.
With C<MB_APPLMODAL> the owner of the dialogue is disabled; therefore, do not
specify the owner as the parent if this option is used.
Additionally, the following flag is possible, but probably not very useful:
Help button
MB_HELP a HELP button appears, which sends a WM_HELP
message is sent to the window procedure of
the message box.
Other optional arguments: $parent window, $owner_window, $helpID (used with
C<WM_HELP> message if C<MB_HELP> style is given).
The return value is one of
MBID_ENTER ENTER was selected
MBID_OK OK was selected
MBID_CANCEL CANCEL was selected
MBID_ABORT ABORT was selected
MBID_RETRY RETRY was selected
MBID_IGNORE IGNORE was selected
MBID_YES YES was selected
MBID_NO NO was selected
0 Function not successful; an error occurred.
B<BUGS???> keyboard transversal by pressing C<TAB> key does not work.
Do not appear in window list, so may be hard to find if covered by other
windows.
=item _MessageBox($text, [ $title, [$flags, ...] ])
Similar to MessageBox(), but the default $title does not depend on the name
of the script.
=item MessageBox2($text, [ $buttons_Icon, [$title, ...] ])
Similar to MessageBox(), but allows more flexible choice of button texts
and the icon. $buttons_Icon is a reference to an array with information about
buttons and the icon to use; the semantic of this array is the same as
for argument list of process_MB2_INFO(). The default value will show
one button B<Dismiss> which will return C<0x1000>.
Other optional arguments are the same as for MessageBox().
B<NOTE.> Remark about C<MBID_CANCEL> in presence of C<MB_MOVABLE> is
equally applicable to MessageBox() and MessageBox2().
Example:
print MessageBox2
'Foo prints 100, Bar 101, Baz 102',
[['~Foo' => 100, 'B~ar' => 101, ['Ba~z'] => 102]],
'Choose a number to print';
will show a messagebox with
=over 20
=item Title
B<Choose a number to print>,
=item Text
B<Foo prints 100, Bar 101, Baz 102>
=item Icon
INFORMATION ICON
=item Buttons
B<Foo>, B<Bar>, B<Baz>
=item Default button
B<Baz>
=item accelerator keys
B<F>, B<a>, and B<z>
=item return values
100, 101, and 102 correspondingly,
=back
Using
print MessageBox2
'Foo prints 100, Bar 101, Baz 102',
[['~Foo' => 100, 'B~ar' => 101, ['Ba~z'] => 102], 'SP#22'],
'Choose a number to print';
will show the 22nd system icon as the dialog icon (small folder icon).
=item _MessageBox2($text, $buttons_Icon_struct, [$title, ...])
low-level workhorse to implement MessageBox2(). Differs by the default
$title, and that $buttons_Icon_struct is required, and is a string with
low-level C struct.
=item process_MB2_INFO($buttons, [$iconID, [$flags, [$notifyWindow]]])
low-level workhorse to implement MessageBox2(); calculates the second
argument of _MessageBox2(). $buttons is a reference
to array of button descriptions. $iconID is either an ID of icon for
the message box, or a string of the form C<"SP#number">; in the latter case
the number's system icon is chosen; this field is ignored unless
$flags contains C<MB_CUSTOMICON> flag. $flags has the same meaning as mobility,
modality, and icon flags for MessageBox() with addition of extra flags
MB_CUSTOMICON Use a custom icon specified in hIcon.
MB_NONMODAL Message box is nonmodal
$flags defaults to C<MB_INFORMATION> or C<MB_CUSTOMICON> (depending on whether
$iconID is non-0), combined with MB_MOVABLE.
Each button's description takes two elements of the description array,
appearance description, and the return value of MessageBox2() if this
button is selected. The appearance description is either an array reference
of the form C<[$button_Text, $button_Style]>, or the same without
$button_Style (then style is C<BS_DEFAULT>, making this button the default)
or just $button_Text (with "normal" style). E.g., the list
Foo => 100, Bar => 101, [Baz] => 102
will show three buttons B<Foo>, B<Bar>, B<Baz> with B<Baz> being the default
button; pressing buttons return 100, 101, or 102 correspondingly.
In particular, exactly one button should have C<BS_DEFAULT> style (e.g.,
given as C<[$button_Name]>); otherwise the message box will not have keyboard
focus! (The only exception is the case of one button; then C<[$button_Name]>
can be replaced (for convenience) with plain C<$button_Name>.)
If text of the button contains character C<~>, the following character becomes
the keyboard accelerator for this button. One can also get the handle
of system icons directly, so C<'SP#22'> can be replaced by
C<OS2::Process::get_pointer(22)>; see also C<SPTR_*> constants.
B<NOTE> With C<MB_NONMODAL> the program continues after displaying the
nonmodal message box. The message box remains visible until the owner window
destroys it. Two notification messages, WM_MSGBOXINIT and WM_MSGBOXDISMISS,
are used to support this non-modality.
=item LoadPointer($id, [$module, [$hwnd]])
Loads a handle for the pointer $id from the resources of the module
$module on desktop $hwnd. If $module is 0 (default), loads from the main
executable; otherwise from a DLL with the handle $module.
The pointer is owned by the process, and is destroyed by
DestroyPointer() call, or when the process terminates.
=item SysPointer($id, [$copy, [$hwnd]])
Gets a handle for (a copy of) the system pointer $id (the value should
be one of C<SPTR_*> constants). A copy is made if $copy is TRUE (the
default). $hwnd defaults to C<HWND_DESKTOP>.
=item get_pointer($id, [$copy, [$hwnd]])
Gets (and caches) a copy of the system pointer.
=back
=head2 Constants used by OS/2 APIs
Function C<os2constant($name)> returns the value of the constant; to
decrease the memory usage of this package, only the constants used by
APIs called by Perl functions in this package are made available.
For direct access, see also the L<"EXPORTS"> section; the latter way
may also provide some performance advantages, since the value of the
constant is cached.
=head1 OS2::localMorphPM, OS2::localFlashWindow, and OS2::localClipbrd classes
The class C<OS2::localMorphPM> morphs the process to PM for the duration of
the given scope.
{
my $h = OS2::localMorphPM->new(0);
# Do something
}
The argument has the same meaning as one to OS2::MorphPM(). Calls can
nest with internal ones being NOPs.
Likewise, C<OS2::localClipbrd> class opens the clipboard for the duration
of the current scope; if TRUE optional argument is given, it would not
morph the application into PM:
{
my $handle = OS2::localClipbrd->new(1); # Do not morph into PM
# Do something with clipboard here...
}
C<OS2::localFlashWindow> behaves similarly; see
L<FlashWindow($hwnd, $doFlash)>.
=head1 EXAMPLES
The test suite for this module contains an almost comprehensive collection
of examples of using the API of this module.
=head1 TODO
Add tests for:
SwitchToProgram
ClassName
out_codepage
out_codepage_set
in_codepage
in_codepage_set
cursor
cursor_set
screen
screen_set
process_codepages
QueryWindow
EnumDlgItem
WindowPtr
WindowUShort
SetWindowBits
SetWindowPtr
SetWindowULong
SetWindowUShort
my_type
file_type
scrsize
scrsize_set
Document: InvalidateRect,
CreateFrameControls, kbdChar, kbdhChar,
kbdStatus, _kbdStatus_set, kbdhStatus, kbdhStatus_set,
vioConfig, viohConfig, vioMode, viohMode, viohMode_set, _vioMode_set,
_vioState, _vioState_set, vioFont, vioFont_set
Test: SetWindowULong/Short/Ptr, SetWindowBits. InvalidateRect,
CreateFrameControls, ClipbrdOwner_set, ClipbrdViewer_set, _ClipbrdData_set,
Alarm, FlashWindow, _MessageBox, MessageBox, _MessageBox2, MessageBox2,
LoadPointer, SysPointer, kbdChar, kbdhChar, kbdStatus, _kbdStatus_set,
kbdhStatus, kbdhStatus_set, vioConfig, viohConfig, vioMode, viohMode,
viohMode_set, _vioMode_set, _vioState, _vioState_set, vioFont, vioFont_set
Implement SOMETHINGFROMMR.
>But I wish to change the default button if the user enters some
>text into an entryfield. I can detect the entry ok, but can't
>seem to get the button to change to default.
>
>No matter what message I send it, it's being ignored.
You need to get the style of the buttons using
WinQueryWindowULong/QWL_STYLE, set and reset the BS_DEFAULT bits as
appropriate and then use WinSetWindowULong/QWL_STYLE to set the
button style. Something like this:
hwnd1 = WinWindowFromID (hwnd, id1);
hwnd2 = WinWindowFromID (hwnd, id2);
style1 = WinQueryWindowULong (hwnd1, QWL_STYLE);
style2 = WinQueryWindowULong (hwnd2, QWL_STYLE);
style1 |= style2 & BS_DEFAULT;
style2 &= ~BS_DEFAULT;
WinSetWindowULong (hwnd1, QWL_STYLE, style1);
WinSetWindowULong (hwnd2, QWL_STYLE, style2);
> How to do query and change a frame creation flags for existing
> window?
Set the style bits that correspond to the FCF_* flag for the frame
window and then send a WM_UPDATEFRAME message with the appropriate
FCF_* flag in mp1.
ULONG ulFrameStyle;
ulFrameStyle = WinQueryWindowULong( WinQueryWindow(hwnd, QW_PARENT),
QWL_STYLE );
ulFrameStyle = (ulFrameStyle & ~FS_SIZEBORDER) | FS_BORDER;
WinSetWindowULong( WinQueryWindow(hwnd, QW_PARENT),
QWL_STYLE,
ulFrameStyle );
WinSendMsg( WinQueryWindow(hwnd, QW_PARENT),
WM_UPDATEFRAME,
MPFROMP(FCF_SIZEBORDER),
MPVOID );
If the FCF_* flags you want to change does not have a corresponding
FS_* style (i.e. the FCF_* flag corresponds to the presence/lack of a
frame control rather than a property of the frame itself) then you
create or destroy the appropriate control window using the correct
FID_* window identifier and then send the WM_UPDATEFRAME message with
the appropriate FCF_* flag in mp1.
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *
| SetFrameBorder() |
| Changes a frame window's border to the requested type. |
| |
| Parameters on entry: |
| hwndFrame -> Frame window whose border is to be changed. |
| ulBorderStyle -> Type of border to change to. |
| |
| Returns: |
| BOOL -> Success indicator. |
| |
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
BOOL SetFrameBorder( HWND hwndFrame, ULONG ulBorderType ) {
ULONG ulFrameStyle;
BOOL fSuccess = TRUE;
ulFrameStyle = WinQueryWindowULong( hwndFrame, QWL_STYLE );
switch ( ulBorderType ) {
case FS_SIZEBORDER :
ulFrameStyle = (ulFrameStyle & ~(FS_DLGBORDER | FS_BORDER))
| FS_SIZEBORDER;
break;
case FS_DLGBORDER :
ulFrameStyle = (ulFrameStyle & ~(FS_SIZEBORDER | FS_BORDER))
| FS_DLGBORDER;
break;
case FS_BORDER :
ulFrameStyle = (ulFrameStyle & ~(FS_SIZEBORDER | FS_DLGBORDER))
| FS_BORDER;
break;
default :
fSuccess = FALSE;
break;
} // end switch
if ( fSuccess ) {
fSuccess = WinSetWindowULong( hwndFrame, QWL_STYLE, ulFrameStyle );
if ( fSuccess ) {
fSuccess = (BOOL)WinSendMsg( hwndFrame, WM_UPDATEFRAME, 0, 0 );
if ( fSuccess )
fSuccess = WinInvalidateRect( hwndFrame, NULL, TRUE );
}
}
return ( fSuccess );
} // End SetFrameBorder()
hwndMenu=WinLoadMenu(hwndParent,NULL,WND_IMAGE);
WinSetWindowUShort(hwndMenu,QWS_ID,FID_MENU);
ulStyle=WinQueryWindowULong(hwndMenu,QWL_STYLE);
WinSetWindowULong(hwndMenu,QWL_STYLE,ulStyle|MS_ACTIONBAR);
WinSendMsg(hwndParent,WM_UPDATEFRAME,MPFROMSHORT(FCF_MENU),0L);
OS/2-windows have another "parent" called the *owner*,
which must be set separately - to get a close relationship:
WinSetOwner (hwndFrameChild, hwndFrameMain);
Now your child should move with your main window!
And always stays on top of it....
To avoid this, for example for dialogwindows, you can
also "disconnect" this relationship with:
WinSetWindowBits (hwndFrameChild, QWL_STYLE
, FS_NOMOVEWITHOWNER
, FS_NOMOVEWITHOWNER);
Adding a button icon later:
/* switch the button style to BS_MINIICON */
WinSetWindowBits(hwndBtn, QWL_STYLE, BS_MINIICON, BS_MINIICON) ;
/* set up button control data */
BTNCDATA bcd;
bcd.cb = sizeof(BTNCDATA);
bcd.hImage = WinLoadPointer(HWND_DESKTOP, dllHandle, ID_ICON_BUTTON1) ;
bcd.fsCheckState = bcd.fsHiliteState = 0 ;
WNDPARAMS wp;
wp.fsStatus = WPM_CTLDATA;
wp.pCtlData = &bcd;
/* add the icon on the button */
WinSendMsg(hwndBtn, WM_SETWINDOWPARAMS, (MPARAM)&wp, NULL);
MO> Can anyone tell what OS/2 expects of an application to be properly
MO> minimized to the desktop?
case WM MINMAXFRAME :
{
BOOL fShow = ! (((PSWP) mp1)->fl & SWP MINIMIZE);
HENUM henum;
HWND hwndChild;
WinEnableWindowUpdate ( hwnd, FALSE );
for (henum=WinBeginEnumWindows(hwnd);
(hwndChild = WinGetNextWindow (henum)) != 0; )
WinShowWindow ( hwndChild, fShow );
WinEndEnumWindows ( henum );
WinEnableWindowUpdate ( hwnd, TRUE );
}
break;
Why C<hWindowPos DesktopWindow> gives C<< behind => HWND_TOP >>?
=head1 $^E
the majority of the APIs of this module set $^E on failure (no matter
whether they die() on failure or not). By the semantic of PM API
which returns something other than a boolean, it is impossible to
distinguish failure from a "normal" 0-return. In such cases C<$^E ==
0> indicates an absence of error.
=head1 EXPORTS
In addition to symbols described above, the following constants (available
also via module C<OS2::Process::Const>) are exportable. Note that these
symbols live in package C<OS2::Process::Const>, they are not available
by full name through C<OS2::Process>!
HWND_* Standard (abstract) window handles
WM_* Message ids
SC_* WM_SYSCOMMAND flavor
SWP_* Size/move etc flag
WC_* Standard window classes
PROG_* Program category (PM, VIO etc)
QW_* Query-Window flag
EDI_* Enumerate-Dialog-Item code
WS_* Window Style flag
QWS_* Query-window-UShort offsets
QWP_* Query-window-pointer offsets
QWL_* Query-window-ULong offsets
FF_* Frame-window state flags
FI_* Frame-window information flags
LS_* List box styles
FS_* Frame style
FCF_* Frame creation flags
BS_* Button style
MS_* Menu style
TBM_* Title bar messages?
CF_* Clipboard formats
CFI_* Clipboard storage type
FID_* ids of subwindows of frames
=head1 BUGS
whether a given API dies or returns FALSE/empty-list on error may be
confusing. This may change in the future.
=head1 AUTHOR
Andreas Kaiser <ak@ananke.s.bawue.de>,
Ilya Zakharevich <ilya@math.ohio-state.edu>.
=head1 SEE ALSO
C<spawn*>() system calls, L<OS2::Proc> and L<OS2::WinObject> modules.
=cut
|