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
|
/* gui_utils.c
* UI utility routines, some GTK+-specific (declared in gtk/gui_utils.h)
* and some with GUI-independent APIs, with this file containing the GTK+
* implementations of them (declared in ui_util.h)
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#if GTK_CHECK_VERSION(3,0,0)
# include <gdk/gdkkeysyms-compat.h>
#endif
#include <epan/prefs.h>
#include "epan/epan.h"
#include <epan/packet_info.h>
#include "../../globals.h"
#include "ui/recent.h"
#include "ui/ui_util.h"
#include <wsutil/file_util.h>
#include "ui/gtk/gtkglobals.h"
#include "ui/gtk/gui_utils.h"
#include "ui/gtk/font_utils.h"
#include "ui/gtk/color_utils.h"
#include "ui/gtk/old-gtk-compat.h"
#ifndef HAVE_GDK_GRESOURCE
#include "ui/gtk/pixbuf-csource.h"
#endif
#ifdef _WIN32
#include <windows.h>
#endif
#define WINDOW_GEOM_KEY "window_geom"
#define WINDOW_DECORATION_SIZE 50
/* Set our window icon. The GDK documentation doesn't provide any
actual documentation for gdk_window_set_icon(), so we'll steal
libgimp/gimpdialog.c:gimp_dialog_realize_callback() from the Gimp
sources and assume it's safe.
XXX - The current icon size is fixed at 16x16 pixels, which looks fine
with kwm (KDE 1.x's window manager), Sawfish (the "default" window
manager for GNOME?), and under Windows with Exceed putting X windows
on the Windows desktop, using Exceed as the window manager, as those
window managers put a 16x16 icon on the title bar.
The window managers in some windowing environments (e.g. dtwm in CDE)
and some stand-alone window managers have larger icon sizes (many window
managers put the window icon on the desktop, in the Windows 3.x style,
rather than in the titlebar, in the Windows 4.x style), so we need to
find a way to size our icon appropriately.
The X11 Inter-Client Communications Conventions Manual, Version 1.1,
in X11R5, specifies that "a window manager that wishes to place
constraints on the sizes of icon pixmaps and/or windows should
place a property called WM_ICON_SIZE on the root"; that property
contains minimum width and height, maximum width and height, and
width and height increment values. "XGetIconSizes()" retrieves
that property; unfortunately, I've yet to find a window manager
that sets it on the root window (kwm, AfterStep, and Exceed don't
appear to set it).
The X Desktop Group's Window Manager Standard specifies, in the section
on Application Window Properties, an _NET_WM_ICON property, presumably
set by the window manager, which is an array of possible icon sizes
for the client. There's no API in GTK+ 1.2[.x] for this; there may
eventually be one either in GTK+ 2.0 or GNOME 2.0.
Some window managers can be configured to take the window name
specified by the WM_NAME property of a window or the resource
or class name specified by the WM_CLASS property and base the
choice of icon for the window on one of those; WM_CLASS for
Wireshark's windows has a resource name of "wireshark" and a class
name of "Wireshark". However, the way that's done is window-manager-
specific, and there's no way to determine what size a particular
window manager would want, so there's no way to automate this as
part of the installation of Wireshark.
*/
static void
window_icon_realize_cb(GtkWidget *win,
gpointer data _U_)
{
#ifndef _WIN32
GList *ws_icon_list = NULL;
GdkPixbuf *icon16, *icon32, *icon48, *icon64;
#ifdef HAVE_GDK_GRESOURCE
icon16 = ws_gdk_pixbuf_new_from_resource("/org/wireshark/image/wsicon16.png");
icon32 = ws_gdk_pixbuf_new_from_resource("/org/wireshark/image/wsicon32.png");
icon48 = ws_gdk_pixbuf_new_from_resource("/org/wireshark/image/wsicon48.png");
icon64 = ws_gdk_pixbuf_new_from_resource("/org/wireshark/image/wsicon64.png");
#else
icon16 = gdk_pixbuf_new_from_inline(-1, wsicon_16_pb_data, FALSE, NULL);
icon32 = gdk_pixbuf_new_from_inline(-1, wsicon_32_pb_data, FALSE, NULL);
icon48 = gdk_pixbuf_new_from_inline(-1, wsicon_48_pb_data, FALSE, NULL);
icon64 = gdk_pixbuf_new_from_inline(-1, wsicon_64_pb_data, FALSE, NULL);
#endif
ws_icon_list = g_list_append(ws_icon_list, icon16);
ws_icon_list = g_list_append(ws_icon_list, icon32);
ws_icon_list = g_list_append(ws_icon_list, icon48);
ws_icon_list = g_list_append(ws_icon_list, icon64);
gtk_window_set_icon_list(GTK_WINDOW(win), ws_icon_list);
g_list_foreach(ws_icon_list, (GFunc)g_object_unref, NULL);
g_list_free(ws_icon_list);
/* set icon by name, this allows us to use even SVG icon if it is present */
gtk_window_set_icon_name(GTK_WINDOW(win), "wireshark");
#endif
}
/* Create a new window, of the specified type, with the specified title
(if any) and the Wireshark icon. */
GtkWidget *
window_new(GtkWindowType type,
const gchar *title)
{
GtkWidget *win;
win = gtk_window_new(type);
if (title != NULL)
gtk_window_set_title(GTK_WINDOW(win), title);
g_signal_connect(win, "realize", G_CALLBACK(window_icon_realize_cb), NULL);
/* XXX - which one is the correct default policy? or use a preference for this? */
/* GTK_WIN_POS_NONE, GTK_WIN_POS_CENTER or GTK_WIN_POS_MOUSE */
/* a lot of people dislike GTK_WIN_POS_MOUSE */
/* set the initial position (must be done, before show is called!) */
gtk_window_set_position(GTK_WINDOW(win), GTK_WIN_POS_NONE);
if (top_level) {
GdkScreen *default_screen;
gint x, y, n;
/* Ideally, new windows would open on the same monitor where the main
* window is located, but this doesn't happen when the main window is
* not located on the primary monitor. So, if there's more than 1
* monitor and Wireshark's main window isn't located on the primary
* one, attempt to improve the situation by at least displaying the new
* window somewhere on the same monitor, even if it won't be positioned
* the same way as it would be when it's on the primary monitor. Don't
* attempt to influence the placement on the primary monitor though,
* because that's probably the preferred placement strategy. But how
* to make window placement behave the same way on any monitor?
*/
default_screen = gdk_screen_get_default();
n = gdk_screen_get_n_monitors(default_screen);
if (n > 1) {
gtk_window_get_position(GTK_WINDOW(top_level), &x, &y);
n = gdk_screen_get_monitor_at_point(default_screen, x, y);
if (n > 0)
gtk_window_move(GTK_WINDOW(win), x + 40, y + 30);
}
}
return win;
}
/* Same as window_new(), but will keep its geometry values (size, position, ...).
* Be sure to use window_present() and window_destroy() appropriately! */
GtkWidget *
window_new_with_geom(GtkWindowType type,
const gchar *title,
const gchar *geom_name,
GtkWindowPosition pos)
{
window_geometry_t geom;
GtkWidget *win = window_new(type, title);
g_object_set_data(G_OBJECT(win), WINDOW_GEOM_KEY, (gpointer)g_strdup(geom_name));
/* do we have a previously saved size and position of this window? */
if(geom_name) {
/* It's a good idea to set the position and size of the window already here,
* as it's still invisible and won't "flicker the screen" while initially resizing. */
if(window_geom_load(geom_name, &geom)) {
/* XXX - use prefs to select which values to set? */
geom.set_pos = TRUE;
geom.set_size = TRUE;
geom.set_maximized = FALSE; /* don't maximize until window is shown */
window_set_geometry(win, &geom);
} else if (pos != GTK_WIN_POS_NONE) {
#ifdef _WIN32
/* Testing using GTK+ 2.24.10 shows that
* GTK_WIN_POS_CENTER_ON_PARENT doesn't seem to work on Windows, so
* use the next best thing. Is this a problem for all OS's though,
* or just Windows? Unknown. (Tested with Windows XP SP3 32-bit)
*/
if (pos == GTK_WIN_POS_CENTER_ON_PARENT)
pos = GTK_WIN_POS_CENTER;
#endif
gtk_window_set_position(GTK_WINDOW(win), pos);
}
}
return win;
}
/* Create a new window for a splash screen; it's a main window, without decoration,
positioned in the center of the screen. */
GtkWidget *
splash_window_new(void)
{
GtkWidget *win;
win = window_new(GTK_WINDOW_TOPLEVEL, "Wireshark");
gtk_window_set_decorated(GTK_WINDOW(win), FALSE);
/* set the initial position (must be done, before show is called!) */
gtk_window_set_position(GTK_WINDOW(win), GTK_WIN_POS_CENTER);
return win;
}
/* Present the created window on the screen. */
void
window_present(GtkWidget *win)
{
window_geometry_t geom;
const gchar *name;
/* present this window */
gtk_window_present(GTK_WINDOW(win));
/* do we have a previously saved size and position of this window? */
name = (const gchar *)g_object_get_data(G_OBJECT(win), WINDOW_GEOM_KEY);
if(name) {
if(window_geom_load(name, &geom)) {
/* XXX - use prefs to select which values to set? */
geom.set_pos = TRUE;
geom.set_size = TRUE;
geom.set_maximized = TRUE;
window_set_geometry(win, &geom);
}
}
}
static gboolean
window_key_press_cb(GtkWidget *widget,
GdkEventKey *event,
gpointer cancel_button)
{
g_return_val_if_fail(widget != NULL, FALSE);
g_return_val_if_fail(event != NULL, FALSE);
if (event->keyval == GDK_Escape) {
gtk_widget_activate(GTK_WIDGET(cancel_button));
return TRUE;
}
return FALSE;
}
/* Set the "key_press_event" signal for a top-level dialog window to
call a routine to activate the "Cancel" button for a dialog box if
the key being pressed is the <Esc> key.
XXX - there should be a GTK+ widget that'll do that for you, and
let you specify a "Cancel" button. It should also not impose
a requirement that there be a separator in the dialog box, as
the GtkDialog widget does; the visual convention that there's
such a separator between the rest of the dialog boxes and buttons
such as "OK" and "Cancel" is, for better or worse, not universal
(not even in GTK+ - look at the GtkFileSelection dialog!). */
static void
window_set_cancel(GtkWidget *widget,
GtkWidget *cancel_button)
{
g_signal_connect(widget, "key_press_event", G_CALLBACK(window_key_press_cb), cancel_button);
}
/* set the actions needed for the cancel "Close"/"Ok"/"Cancel" button that closes the window */
void
window_set_cancel_button(GtkWidget *win,
GtkWidget *bt,
window_cancel_button_fct cb)
{
if(cb)
g_signal_connect(bt, "clicked", G_CALLBACK(cb), win);
gtk_widget_grab_default(bt);
window_set_cancel(win, bt);
}
/* default callback handler for cancel button "clicked" signal */
void
window_cancel_button_cb(GtkWidget *w _U_,
gpointer data)
{
window_destroy(GTK_WIDGET(data));
}
/* default callback handler: the window managers X of the window was clicked (delete_event) */
gboolean
window_delete_event_cb(GtkWidget *win,
GdkEvent *event _U_,
gpointer user_data _U_)
{
window_destroy(win);
/* event handled, don't do anything else */
return TRUE;
}
/* get the geometry of a window from window_new() */
void
window_get_geometry(GtkWidget *widget,
window_geometry_t *geom)
{
GdkWindowState state;
GdkWindow *widget_window;
/* Try to grab our geometry.
GTK+ provides two routines to get a window's position relative
to the X root window. If I understand the documentation correctly,
gdk_window_get_deskrelative_origin applies mainly to Enlightenment
and gdk_window_get_root_origin applies for all other WMs.
The code below tries both routines, and picks the one that returns
the upper-left-most coordinates.
More info at:
http://mail.gnome.org/archives/gtk-devel-list/2001-March/msg00289.html
http://www.gtk.org/faq/#AEN606
As gdk_window_get_deskrelative_origin() is deprecated it has been removed 2011-07-24.
*/
memset(geom, 0, sizeof(window_geometry_t));
widget_window = gtk_widget_get_window(widget);
gdk_window_get_root_origin(widget_window,
&geom->x,
&geom->y);
/* XXX - Is this the "approved" method? */
#if GTK_CHECK_VERSION(2,24,0)
geom->width = gdk_window_get_width(widget_window);
geom->height = gdk_window_get_height(widget_window);
#else
ws_gdk_drawable_get_size(widget_window,
&geom->width,
&geom->height);
#endif
state = gdk_window_get_state(widget_window);
geom->maximized = ((state & GDK_WINDOW_STATE_MAXIMIZED) != 0);
}
#ifdef _WIN32
/* Ensure Wireshark isn't obscured by the system taskbar (or other desktop toolbars).
* Resolves https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3034 */
static void
window_adjust_if_obscured(window_geometry_t *geom)
{
MONITORINFO MonitorInfo;
HMONITOR hMonitor;
POINT pt, vs;
DWORD dwFlags = MONITOR_DEFAULTTONEAREST; /* MONITOR_DEFAULTTOPRIMARY? */
/*
* Get the virtual screen's top-left coordinates so we can reliably
* determine which monitor we're dealing with. See also:
* http://msdn.microsoft.com/en-us/library/windows/desktop/dd145136%28v=vs.85%29.aspx
*/
vs.x = GetSystemMetrics(SM_XVIRTUALSCREEN);
vs.y = GetSystemMetrics(SM_YVIRTUALSCREEN);
pt.x = geom->x + vs.x;
pt.y = geom->y + vs.y;
MonitorInfo.cbSize = sizeof(MONITORINFO);
hMonitor = MonitorFromPoint(pt, dwFlags);
if (GetMonitorInfo(hMonitor, &MonitorInfo)) {
if (pt.x < MonitorInfo.rcWork.left)
geom->x += MonitorInfo.rcWork.left - pt.x;
if (pt.y < MonitorInfo.rcWork.top)
geom->y += MonitorInfo.rcWork.top - pt.y;
}
}
#endif
/* detect broken GNOME shell fullscreen described in #11303 */
static gboolean
broken_gnome_fullscreen(void) {
return (0 == g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "GNOME") &&
(0 == g_strcmp0(g_getenv("GDMSESSION"), "gnome-shell") ||
0 == g_strcmp0(g_getenv("GDMSESSION"), "gnome-classic") ||
0 == g_strcmp0(g_getenv("GDMSESSION"), "gnome")));
}
/* set the geometry of a window from window_new() */
void
window_set_geometry(GtkWidget *widget,
window_geometry_t *geom)
{
GdkScreen *default_screen;
GdkRectangle viewable_area;
gint monitor_num;
/* vertical offset to be set for fixing #11303, it makes room for window */
/* titlebar */
const gint y_offset = (geom->set_maximized &&
geom->maximized &&
broken_gnome_fullscreen())?WINDOW_DECORATION_SIZE:0;
/* as we now have the geometry from the recent file, set it */
/* if the window was minimized, x and y are -32000 (at least on Win32) */
if (geom->set_pos && geom->x != -32000 && geom->y != -32000) {
/* Per Wireshark bug #553, GTK has a problem on MS Windows
* where the upper-left corner of the window may appear off
* screen when when a single desktop spans multiple monitors
* of different resolutions and positions relative to each
* other.
*
* If the requested (x,y) position isn't within the monitor's
* viewable area, change it to the viewable area's (x,y). */
default_screen = gdk_screen_get_default();
monitor_num = gdk_screen_get_monitor_at_point(default_screen,
geom->x, geom->y);
gdk_screen_get_monitor_geometry(default_screen, monitor_num,
&viewable_area);
if(geom->x < viewable_area.x || geom->x > (viewable_area.x + viewable_area.width))
geom->x = viewable_area.x;
if(geom->y < viewable_area.y || geom->y > (viewable_area.y + viewable_area.height))
geom->y = viewable_area.y;
#ifdef _WIN32
window_adjust_if_obscured(geom);
#endif
gtk_window_move(GTK_WINDOW(widget),
geom->x,
geom->y + y_offset);
}
if (geom->set_size) {
gtk_window_resize(GTK_WINDOW(widget),
/*gtk_widget_set_size_request(widget,*/
geom->width,
geom->height - y_offset);
}
if(geom->set_maximized) {
if (geom->maximized) {
gdk_window_maximize(gtk_widget_get_window(widget));
} else {
gdk_window_unmaximize(gtk_widget_get_window(widget));
}
}
}
void
window_destroy(GtkWidget *win)
{
window_geometry_t geom;
const gchar *name;
if (!win)
return;
/* get_geometry must be done *before* destroy is running, as the window geometry
* cannot be retrieved at destroy time (so don't use event "destroy" for this) */
/* ...and don't do this at all, if we currently have no GdkWindow (e.g. if the
* GtkWidget is hidden) */
if(gtk_widget_get_has_window(win) && gtk_widget_get_visible(win)) {
window_get_geometry(win, &geom);
name = (const gchar *)g_object_get_data(G_OBJECT(win), WINDOW_GEOM_KEY);
if(name) {
window_geom_save(name, &geom);
g_free((gpointer)name);
}
}
gtk_widget_destroy(win);
}
static GtkWidget *
_gtk_image_new_from_pixbuf_unref(GdkPixbuf *pixbuf) {
GtkWidget *widget;
widget = gtk_image_new_from_pixbuf(pixbuf);
g_object_unref(pixbuf);
return widget;
}
/* convert an xpm to a GtkWidget */
GtkWidget *
xpm_to_widget(const char **xpm) {
GdkPixbuf *pixbuf;
pixbuf = gdk_pixbuf_new_from_xpm_data(xpm);
return _gtk_image_new_from_pixbuf_unref(pixbuf);
}
/* Convert an pixbuf GResource to a GtkWidget */
GtkWidget *
#ifdef HAVE_GDK_GRESOURCE
pixbuf_to_widget(const char *pb_path) {
#else
pixbuf_to_widget(const guint8 *pb_data) {
#endif
GdkPixbuf *pixbuf;
#ifdef HAVE_GDK_GRESOURCE
pixbuf = ws_gdk_pixbuf_new_from_resource(pb_path);
#else
pixbuf = gdk_pixbuf_new_from_inline(-1, pb_data, FALSE, NULL);
#endif
return _gtk_image_new_from_pixbuf_unref(pixbuf);
}
/*
* Alert box for an invalid display filter expression.
* Assumes "dfilter_error_msg" has been set by "dfilter_compile()" to the
* error message for the filter.
*
* XXX - should this have a "Help" button that pops up the display filter
* help?
*/
void
bad_dfilter_alert_box(GtkWidget *parent,
const char *dftext,
gchar *err_msg)
{
GtkWidget *msg_dialog;
msg_dialog = gtk_message_dialog_new(GTK_WINDOW(parent),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"The filter expression \"%s\" isn't a valid display filter. (%s)",
dftext, err_msg);
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(msg_dialog),
"See the help for a description of the display filter syntax.");
gtk_dialog_run(GTK_DIALOG(msg_dialog));
gtk_widget_destroy(msg_dialog);
}
/* update the main window */
void
main_window_update(void)
{
while (gtk_events_pending())
gtk_main_iteration();
}
#ifdef HAVE_LIBPCAP
/* quit a nested main window */
void
main_window_nested_quit(void)
{
if (gtk_main_level() > 0)
gtk_main_quit();
}
/* quit the main window */
void
main_window_quit(void)
{
gtk_main_quit();
}
typedef struct pipe_input_tag {
gint source;
gpointer user_data;
ws_process_id *child_process;
pipe_input_cb_t input_cb;
guint pipe_input_id;
#ifdef _WIN32
#else
GIOChannel *channel;
#endif
} pipe_input_t;
#ifdef _WIN32
/* The timer has expired, see if there's stuff to read from the pipe,
if so, do the callback */
static gboolean
pipe_timer_cb(gpointer data)
{
HANDLE handle;
DWORD avail = 0;
gboolean result;
DWORD childstatus;
pipe_input_t *pipe_input = data;
gint iterations = 0;
/* try to read data from the pipe only 5 times, to avoid blocking */
while(iterations < 5) {
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: new iteration");*/
/* Oddly enough although Named pipes don't work on win9x,
PeekNamedPipe does !!! */
handle = (HANDLE)_get_osfhandle(pipe_input->source);
result = PeekNamedPipe(handle, NULL, 0, NULL, &avail, NULL);
/* Get the child process exit status */
GetExitCodeProcess((HANDLE)*(pipe_input->child_process), &childstatus);
/* If the Peek returned an error, or there are bytes to be read
or the childwatcher thread has terminated then call the normal
callback */
if (!result || avail > 0 || childstatus != STILL_ACTIVE) {
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: data avail");*/
if(pipe_input->pipe_input_id != 0) {
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: stop timer");*/
/* avoid reentrancy problems and stack overflow */
g_source_remove(pipe_input->pipe_input_id);
pipe_input->pipe_input_id = 0;
}
/* And call the real handler */
if (!pipe_input->input_cb(pipe_input->source, pipe_input->user_data)) {
g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: input pipe closed, iterations: %u", iterations);
/* pipe closed, return false so that the old timer is not run again */
return FALSE;
}
}
else {
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: no data avail");*/
/* No data, stop now */
break;
}
iterations++;
}
if(pipe_input->pipe_input_id == 0) {
/* restore pipe handler */
pipe_input->pipe_input_id = g_timeout_add(200, pipe_timer_cb, data);
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: finished with iterations: %u, new timer", iterations);*/
/* Return false so that the old timer is not run again */
return FALSE;
} else {
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_timer_cb: finished with iterations: %u, old timer", iterations);*/
/* we didn't stopped the old timer, so let it run */
return TRUE;
}
}
#else /* _WIN32 */
/* There's stuff to read from the sync pipe, meaning the child has sent
us a message, or the sync pipe has closed, meaning the child has
closed it (perhaps because it exited). */
static gboolean
pipe_input_cb(GIOChannel *source _U_,
GIOCondition condition _U_,
gpointer data)
{
pipe_input_t *pipe_input = (pipe_input_t *)data;
/* avoid reentrancy problems and stack overflow */
g_source_remove(pipe_input->pipe_input_id);
if (pipe_input->input_cb(pipe_input->source, pipe_input->user_data)) {
/* restore pipe handler */
pipe_input->pipe_input_id = g_io_add_watch_full(pipe_input->channel,
G_PRIORITY_HIGH,
(GIOCondition)(G_IO_IN|G_IO_ERR|G_IO_HUP),
pipe_input_cb,
pipe_input,
NULL);
}
return TRUE;
}
#endif
void
pipe_input_set_handler(gint source,
gpointer user_data,
ws_process_id *child_process,
pipe_input_cb_t input_cb)
{
static pipe_input_t pipe_input;
pipe_input.source = source;
pipe_input.child_process = child_process;
pipe_input.user_data = user_data;
pipe_input.input_cb = input_cb;
#ifdef _WIN32
/* Tricky to use pipes in win9x, as no concept of wait. NT can
do this but that doesn't cover all win32 platforms. GTK can do
this but doesn't seem to work over processes. Attempt to do
something similar here, start a timer and check for data on every
timeout. */
/*g_log(NULL, G_LOG_LEVEL_DEBUG, "pipe_input_set_handler: new");*/
pipe_input.pipe_input_id = g_timeout_add(200, pipe_timer_cb, &pipe_input);
#else
pipe_input.channel = g_io_channel_unix_new(source);
g_io_channel_set_encoding(pipe_input.channel, NULL, NULL);
pipe_input.pipe_input_id = g_io_add_watch_full(pipe_input.channel,
G_PRIORITY_HIGH,
(GIOCondition)(G_IO_IN|G_IO_ERR|G_IO_HUP),
pipe_input_cb,
&pipe_input,
NULL);
#endif
}
#endif /* HAVE_LIBPCAP */
/* Given a pointer to a GtkWidget for a top-level window, raise it and
de-iconify it. This routine is used if the user has done something to
ask that a window of a certain type be popped up when there can be only
one such window and such a window has already been popped up - we
pop up the existing one rather than creating a new one.
XXX - we should request that it be given the input focus, too. Alas,
GDK has nothing to do that, e.g. by calling "XSetInputFocus()" in a
window in X. Besides, using "XSetInputFocus()" doesn't work anyway,
apparently due to the way GTK+/GDK manages the input focus.
The X Desktop Group's Window Manager Standard specifies, in the section
on Root Window Properties, an _NET_ACTIVE_WINDOW client message that
can be sent to the root window, containing the window ID of the
window to activate; I infer that this might be the way to give the
window the input focus - I assume that means it's also de-iconified,
but I wouldn't assume it'd raise it.
XXX - will this do the right thing on window systems other than X? */
void
reactivate_window(GtkWidget *win)
{
GdkWindow *win_window;
win_window = gtk_widget_get_window(win);
gdk_window_show(win_window);
gdk_window_raise(win_window);
}
/* List of all GtkScrolledWindows, so we can globally set the scrollbar
placement of all of them. */
static GList *scrolled_windows;
static void setup_scrolled_window(GtkWidget *scrollw);
static void forget_scrolled_window(GtkWidget *scrollw, gpointer data);
/* Create a GtkScrolledWindow, set its scrollbar placement appropriately,
and remember it. */
GtkWidget *
scrolled_window_new(GtkAdjustment *hadjustment,
GtkAdjustment *vadjustment)
{
GtkWidget *scrollw;
scrollw = gtk_scrolled_window_new(hadjustment, vadjustment);
setup_scrolled_window(scrollw);
return scrollw;
}
/* Set a GtkScrolledWindow's scrollbar placement and add it to the list
of GtkScrolledWindows. */
static void
setup_scrolled_window(GtkWidget *scrollw)
{
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollw),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
#if GTK_CHECK_VERSION(3,16,0)
gtk_scrolled_window_set_overlay_scrolling(GTK_SCROLLED_WINDOW(scrollw), FALSE);
#endif /* OVERLAY_SCROLLING */
scrolled_windows = g_list_append(scrolled_windows, scrollw);
/* Catch the "destroy" event on the widget, so that we remove it from
the list when it's destroyed. */
g_signal_connect(scrollw, "destroy", G_CALLBACK(forget_scrolled_window), NULL);
}
/* Remove a GtkScrolledWindow from the list of GtkScrolledWindows. */
static void
forget_scrolled_window(GtkWidget *scrollw,
gpointer data _U_)
{
scrolled_windows = g_list_remove(scrolled_windows, scrollw);
}
/* List of all CTrees/TreeViews, so we can globally set the line and
* expander style of all of them. */
static GList *trees;
static void setup_tree(GtkWidget *tree);
static void forget_tree(GtkWidget *tree, gpointer data);
static void set_tree_styles(GtkWidget *tree);
static gboolean tree_view_key_pressed_cb(GtkWidget *tree, GdkEventKey *event, gpointer user_data _U_);
/* Create a Tree, give it the right styles, and remember it. */
GtkWidget *
tree_view_new(GtkTreeModel *model)
{
GtkWidget *tree;
tree = gtk_tree_view_new_with_model(model);
setup_tree(tree);
return tree;
}
/* Set a Tree's styles and add it to the list of Trees. */
static void
setup_tree(GtkWidget *tree)
{
set_tree_styles(tree);
trees = g_list_append(trees, tree);
/* Catch the "destroy" event on the widget, so that we remove it from
the list when it's destroyed. */
g_signal_connect(tree, "destroy", G_CALLBACK(forget_tree), NULL);
g_signal_connect(tree, "key-press-event", G_CALLBACK(tree_view_key_pressed_cb), NULL );
}
/* Remove a Tree from the list of Trees. */
static void
forget_tree(GtkWidget *tree,
gpointer data _U_)
{
trees = g_list_remove(trees, tree);
}
/* Set the styles of a Tree based upon user preferences. */
static void
set_tree_styles(GtkWidget *tree)
{
g_assert(prefs.gui_altern_colors >= 0 && prefs.gui_altern_colors <= 1);
gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(tree),
prefs.gui_altern_colors);
}
static void
set_tree_styles_cb(gpointer data,
gpointer user_data _U_)
{
set_tree_styles((GtkWidget *)data);
}
/* Set the styles of all Trees based upon style values. */
void
set_tree_styles_all(void)
{
g_list_foreach(trees, set_tree_styles_cb, NULL);
}
/* Move the currently-selected item in a list store up or down one position. */
gboolean
tree_view_list_store_move_selection(GtkTreeView *tree,
gboolean move_up)
{
GtkTreeIter from, to;
GtkTreeModel *model;
GtkTreeSelection *sel;
GtkTreePath *path_from, *path_to;
sel = gtk_tree_view_get_selection(tree);
if (!gtk_tree_selection_get_selected(sel, &model, &from)) {
return FALSE;
}
path_from = gtk_tree_model_get_path(model, &from);
if (!path_from) {
return FALSE;
}
path_to = gtk_tree_path_copy(path_from);
/* XXX - Why does one return void and the other return a gboolean? */
if (move_up) {
gtk_tree_path_prev(path_to);
} else {
gtk_tree_path_next(path_to);
}
if (gtk_tree_path_compare(path_from, path_to) == 0) {
gtk_tree_path_free(path_from);
gtk_tree_path_free(path_to);
return FALSE;
}
gtk_tree_model_get_iter(model, &to, path_to);
gtk_list_store_swap(GTK_LIST_STORE(model), &from, &to);
gtk_tree_path_free(path_from);
gtk_tree_path_free(path_to);
return TRUE;
}
/* Find the selected row number in a list store. */
gint
tree_view_list_store_get_selected_row(GtkTreeView *tree) {
GtkTreeIter iter;
GtkTreeModel *model;
GtkTreeSelection *sel;
GtkTreePath *path;
gchar *path_str;
gint row;
sel = gtk_tree_view_get_selection(tree);
if (!gtk_tree_selection_get_selected(sel, &model, &iter)) {
return -1;
}
path = gtk_tree_model_get_path(model, &iter);
if (!path) {
return FALSE;
}
path_str = gtk_tree_path_to_string(path);
gtk_tree_path_free(path);
row = (gint)strtol(path_str, NULL, 10);
g_free(path_str);
return row;
}
/* append a row to the simple list */
/* use it like: simple_list_append(list, 0, "first", 1, "second", -1) */
void
simple_list_append(GtkWidget *list,
...)
{
va_list ap;
GtkTreeIter iter;
GtkListStore *store;
va_start(ap, list);
store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(list)));
gtk_list_store_append(store, &iter);
gtk_list_store_set_valist(store, &iter, ap);
va_end(ap);
}
/* create a simple list widget */
GtkWidget *
simple_list_new(gint cols,
const gchar **titles) {
GtkWidget *plugins_list;
int i;
GtkListStore *store;
GtkCellRenderer *renderer;
GtkTreeViewColumn *column;
g_assert(cols <= 10);
store = gtk_list_store_new(cols,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
plugins_list = tree_view_new(GTK_TREE_MODEL(store));
g_object_unref(G_OBJECT(store));
gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(plugins_list), (titles != NULL));
for(i=0; i<cols; i++) {
renderer = gtk_cell_renderer_text_new();
column = gtk_tree_view_column_new_with_attributes(titles ? titles[i] : "", renderer,
"text", i, NULL);
gtk_tree_view_column_set_sort_column_id(column, i);
gtk_tree_view_append_column(GTK_TREE_VIEW(plugins_list), column);
}
return plugins_list;
}
void
render_as_url(GtkCellRenderer *cell)
{
g_object_set(cell, "foreground", "blue", NULL);
g_object_set(cell, "foreground-set", TRUE, NULL);
g_object_set(cell, "underline", PANGO_UNDERLINE_SINGLE, NULL);
g_object_set(cell, "underline-set", TRUE, NULL);
}
void
simple_list_url_col(GtkWidget *list,
gint col)
{
GtkTreeViewColumn *ul_column;
GList *renderers_list;
GtkCellRenderer *ul_renderer;
/* make the column look like a link ... */
ul_column = gtk_tree_view_get_column(GTK_TREE_VIEW(list), col);
renderers_list = gtk_cell_layout_get_cells(GTK_CELL_LAYOUT(ul_column));
if(renderers_list != NULL) {
/* it is simple list - there should be only one renderer */
ul_renderer = (GtkCellRenderer*)renderers_list->data;
render_as_url(ul_renderer);
g_list_free(renderers_list);
}
}
void
copy_to_clipboard(GString *str)
{
GtkClipboard *cb;
cb = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); /* Get the default clipboard */
gtk_clipboard_set_text(cb, str->str, -1); /* Copy the byte data into the clipboard */
}
typedef struct _copy_binary_t {
guint8 *data;
int len;
} copy_binary_t;
static copy_binary_t *
create_copy_binary_t(const guint8 *data,
int len)
{
copy_binary_t* copy_data;
g_assert(len > 0);
copy_data = g_new(copy_binary_t,1);
copy_data->data = g_new(guint8,len);
copy_data->len = len;
memcpy(copy_data->data,data,len * sizeof(guint8));
return copy_data;
}
static void
destroy_copy_binary_t(copy_binary_t *copy_data) {
g_free(copy_data->data);
g_free(copy_data);
}
static void
copy_binary_free_cb(GtkClipboard *clipboard _U_,
gpointer user_data_or_owner)
{
destroy_copy_binary_t((copy_binary_t*)user_data_or_owner);
}
static void
copy_binary_get_cb(GtkClipboard *clipboard _U_,
GtkSelectionData *selection_data,
guint info _U_,
gpointer user_data_or_owner)
{
copy_binary_t* copy_data;
copy_data = (copy_binary_t*)user_data_or_owner;
/* Just do a dumb set as binary data */
gtk_selection_data_set(selection_data, GDK_NONE, 8, copy_data->data, copy_data->len);
}
void
copy_binary_to_clipboard(const guint8 *data_p,
int len)
{
static GtkTargetEntry target_entry[] = {
{"application/octet-stream", 0, 0}};
/* XXX - this is not understood by most applications,
* but can be pasted into the better hex editors - is
* there something better that we can do?
*/
GtkClipboard *cb;
copy_binary_t *copy_data;
gboolean ret;
if(len <= 0) {
return; /* XXX would it be better to clear the clipboard? */
}
cb = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD); /* Get the default clipboard */
copy_data = create_copy_binary_t(data_p,len);
ret = gtk_clipboard_set_with_data(cb,target_entry,1,
copy_binary_get_cb, copy_binary_free_cb,copy_data);
if(!ret) {
destroy_copy_binary_t(copy_data);
}
}
/*
* Create a new window title string with user-defined title preference.
* (Or ignore it if unspecified).
*/
gchar *
create_user_window_title(const gchar *caption)
{
/* fail-safe */
if (caption == NULL)
return g_strdup("");
/* no user-defined title specified */
if ((prefs.gui_window_title == NULL) || (*prefs.gui_window_title == '\0'))
return g_strdup(caption);
return g_strdup_printf("%s [%s]", caption, prefs.gui_window_title);
}
/*
* Set the title of a window based on a supplied caption and the
* display name for the capture file.
*
* XXX - should this include the user preference as well?
*/
void
set_window_title(GtkWidget *win,
const gchar *caption)
{
char *title;
char *display_name;
display_name = cf_get_display_name(&cfile);
title = g_strdup_printf("%s: %s", caption, display_name);
g_free(display_name);
gtk_window_set_title(GTK_WINDOW(win), title);
g_free(title);
}
/*
* Collapse row and his children
*/
static void
tree_collapse_row_with_children(GtkTreeView *tree_view, GtkTreeModel *model, GtkTreePath *path,
GtkTreeIter *iter)
{
GtkTreeIter child;
if (gtk_tree_view_row_expanded(tree_view, path)) {
if (gtk_tree_model_iter_children(model, &child, iter)) {
gtk_tree_path_down(path);
do {
if (gtk_tree_view_row_expanded(tree_view, path)) {
tree_collapse_row_with_children(tree_view, model, path, &child);
}
gtk_tree_path_next(path);
} while (gtk_tree_model_iter_next(model, &child));
gtk_tree_path_up(path);
gtk_tree_view_collapse_row(tree_view, path);
}
}
}
void
tree_collapse_path_all(GtkTreeView *tree_view, GtkTreePath *path)
{
GtkTreeIter iter;
GtkTreeModel *model;
model = gtk_tree_view_get_model(tree_view);
gtk_tree_model_get_iter(model, &iter, path);
tree_collapse_row_with_children(tree_view, model, path, &iter);
}
/*
* This callback is invoked when keyboard focus is within either
* the packetlist view or the detail view. The keystrokes processed
* within this callback are attempting to modify the detail view.
* Within the detail view we special case the Left Arrow, Backspace
* and Enter keys depending on the state of the expander (if any)
* for the item in focus.
*
* Returning FALSE allows processing of the original key_press_event
* by other callbacks. Left/Right scrolling of the packetlist
* view and expanding/collapsing of the detail view lists is
* handled by the default GtkTreeView key-press-event call back.
*
* XXX - Would an improved version of this callback test to see which
* of the two GtkTreeView lists has focus? Left/Right scrolling of
* the packetlist is currently not optimal. It will take several
* right or left keypress events before the packetlist responds.
* The problem appears to be that the focus is on a particular cell
* within the highlighted row cell (like a spreadsheet). Scrolling
* of the view right or left will not occur until the focus is
* moved to a cell off the left or right edge of the packet list
* view. Also TAB/SHIFT-TAB events can move keyboard focus to
* the packetlist header where there is currently visual hint
* a header cell has focus.
*/
static gboolean
tree_view_key_pressed_cb(GtkWidget *tree,
GdkEventKey *event,
gpointer user_data _U_)
{
GtkTreeSelection *selection;
GtkTreeIter iter;
GtkTreeIter parent;
GtkTreeModel *model;
GtkTreePath *path;
gboolean expanded, expandable;
int rc = FALSE;
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree));
if(!selection) {
return FALSE;
}
if(!gtk_tree_selection_get_selected(selection, &model, &iter)) {
return FALSE;
}
path = gtk_tree_model_get_path(model, &iter);
if(!path) {
return FALSE;
}
/* Always FALSE when we're in the packet list (at least until we add sub-packets) */
expanded = gtk_tree_view_row_expanded(GTK_TREE_VIEW(tree), path);
expandable = gtk_tree_model_iter_has_child(model, &iter);
switch (event->keyval) {
case GDK_Left:
if(expanded) {
/* Subtree is expanded. Collapse it. */
if (event->state & GDK_SHIFT_MASK)
{
tree_collapse_row_with_children(GTK_TREE_VIEW(tree), model, path, &iter);
}
else
gtk_tree_view_collapse_row(GTK_TREE_VIEW(tree), path);
rc = TRUE;
break;
}
/* No break - fall through to jumping to the parent */
case GDK_BackSpace:
if (!expanded) {
/* subtree is already collapsed, jump to parent node */
if(! gtk_tree_model_iter_parent(model, &parent, &iter)) {
rc = FALSE;
break;
}
gtk_tree_path_free(path);
path = gtk_tree_model_get_path(model, &parent);
if(!path) {
return FALSE;
}
gtk_tree_view_set_cursor(GTK_TREE_VIEW(tree), path,
NULL /* focus_column */,
FALSE /* !start_editing */);
rc = TRUE;
break;
}
break;
case GDK_Right:
if (expandable) {
/* We have a subtree. Try to expand it. */
gtk_tree_view_expand_row(GTK_TREE_VIEW(tree), path, FALSE /* !open_all */);
rc = TRUE;
break;
} else {
rc = FALSE;
break;
}
case GDK_Return:
case GDK_KP_Enter:
/* Reverse the current state. */
if (expanded)
gtk_tree_view_collapse_row(GTK_TREE_VIEW(tree), path);
else
gtk_tree_view_expand_row(GTK_TREE_VIEW(tree), path, FALSE /* !open_all */);
rc = TRUE;
break;
}
if(path) {
gtk_tree_path_free(path);
}
return rc;
}
void
switch_to_fixed_col(GtkTreeView *view)
{
gint size;
GtkTreeViewColumn *column;
GList *columns, *list;
columns = gtk_tree_view_get_columns(GTK_TREE_VIEW(view));
list = columns;
while(columns) {
column = (GtkTreeViewColumn *)columns->data;
size = gtk_tree_view_column_get_width(column);
gtk_tree_view_column_set_sizing(column,GTK_TREE_VIEW_COLUMN_FIXED);
if (size > gtk_tree_view_column_get_fixed_width(column))
gtk_tree_view_column_set_fixed_width(column, size);
columns = g_list_next(columns);
}
g_list_free(list);
gtk_tree_view_set_fixed_height_mode(view, TRUE);
}
gint
get_default_col_size(GtkWidget *view,
const gchar *str)
{
PangoLayout *layout;
gint col_width;
layout = gtk_widget_create_pango_layout(view, str);
pango_layout_get_pixel_size(layout,
&col_width, /* width */
NULL); /* height */
g_object_unref(G_OBJECT(layout));
/* Add a single character's width to get some spacing between columns */
return col_width + (pango_font_description_get_size(user_font_get_regular()) / PANGO_SCALE);
}
/*
* This function can be called from gtk_tree_view_column_set_cell_data_func()
* the user data must be the column number.
* Present floats with two decimals
*/
void
float_data_func(GtkTreeViewColumn *column _U_,
GtkCellRenderer *renderer,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer user_data)
{
gfloat float_val;
gchar buf[20];
char *savelocale;
/* the col to get data from is in userdata */
gint float_col = GPOINTER_TO_INT(user_data);
gtk_tree_model_get(model, iter, float_col, &float_val, -1);
/* save the current locale */
savelocale = g_strdup(setlocale(LC_NUMERIC, NULL));
/* switch to "C" locale to avoid problems with localized decimal separators
* in g_snprintf("%f") functions
*/
setlocale(LC_NUMERIC, "C");
g_snprintf(buf, sizeof(buf), "%.2f", float_val);
/* restore previous locale setting */
setlocale(LC_NUMERIC, savelocale);
g_free(savelocale);
g_object_set(renderer, "text", buf, NULL);
}
/*
* This function can be called from gtk_tree_view_column_set_cell_data_func()
* the user data must be the column number.
* Present value as hexadecimal.
*/
void
present_as_hex_func(GtkTreeViewColumn *column _U_,
GtkCellRenderer *renderer,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer user_data)
{
guint val;
gchar buf[35];
/* the col to get data from is in userdata */
gint col = GPOINTER_TO_INT(user_data);
gtk_tree_model_get(model, iter, col, &val, -1);
g_snprintf(buf, sizeof(buf), "0x%02x", val);
g_object_set(renderer, "text", buf, NULL);
}
void
u64_data_func(GtkTreeViewColumn *column _U_,
GtkCellRenderer *renderer,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer user_data)
{
guint64 val;
int i = 0;
gchar *bp;
gchar buf[35];
/* the col to get data from is in userdata */
gint col = GPOINTER_TO_INT(user_data);
gtk_tree_model_get(model, iter, col, &val, -1);
bp = &buf[34];
*bp = 0;
do {
*--bp = (gchar)(val % 10) +'0';
if (!(++i % 3)) {
*--bp = ' ';
}
} while ((val /= 10) != 0 && bp > buf);
g_object_set(renderer, "text", bp, NULL);
}
/*
* This function can be called from gtk_tree_view_column_set_cell_data_func()
* The user data must be the column number.
* Renders the const static string whose pointer is stored.
*/
void
str_ptr_data_func(GtkTreeViewColumn *column _U_,
GtkCellRenderer *renderer,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer user_data)
{
const gchar *str = NULL;
/* The col to get data from is in userdata */
gint data_column = GPOINTER_TO_INT(user_data);
gtk_tree_model_get(model, iter, data_column, &str, -1);
/* XXX should we check that str is non NULL and print a warning or do assert? */
g_object_set(renderer, "text", str, NULL);
}
gint
str_ptr_sort_func(GtkTreeModel *model,
GtkTreeIter *a,
GtkTreeIter *b,
gpointer user_data)
{
const gchar *str_a = NULL;
const gchar *str_b = NULL;
gint ret = 0;
/* The col to get data from is in userdata */
gint data_column = GPOINTER_TO_INT(user_data);
gtk_tree_model_get(model, a, data_column, &str_a, -1);
gtk_tree_model_get(model, b, data_column, &str_b, -1);
if (str_a == str_b) {
/* it's worth testing because a lot of rows point to the same data */
return 0;
}
else if (str_a == NULL || str_b == NULL) {
ret = (str_a == NULL) ? -1 : 1;
}
else {
ret = g_ascii_strcasecmp(str_a,str_b);
}
return ret;
}
/** --------------------------------------------------
* ws_combo_box_text_and_pointer convenience functions
* (Code adapted from GtkComboBox.c)
*/
/**
* ws_combo_box_new_text_and_pointer_full:
*
* Convenience function which constructs a new "text and pointer" combo box, which
* is a #GtkComboBox just displaying strings and storing a pointer associated with
* each combo_box entry; The pointer can be retrieved when an entry is selected.
* Also: optionally returns the cell renderer for the combo box.
* If you use this function to create a text_and_pointer combo_box,
* you should only manipulate its data source with the
* following convenience functions:
* ws_combo_box_append_text_and_pointer()
* ws_combo_box_append_text_and_pointer_full()
*
* @param cell_p pointer to return the 'GtkCellRenderer *' for the combo box (or NULL).
* @return A pointer to a new text_and_pointer combo_box.
*/
/* Note:
* GtkComboBox style property: "appears-as-list":
* Default: 0: ie: displays as menus
* Wireshark Windows gtkrc: 1: ie: displays as lists (treeview)
*/
GtkWidget *
ws_combo_box_new_text_and_pointer_full(GtkCellRenderer **cell_p) {
GtkWidget *combo_box;
GtkCellRenderer *cell;
GtkTreeStore *store;
/* The Tree store for the GtkComboBox has 3 columns:
0: text string for display in GtkComboBox list;
1: pointer (data) associated with the entry;
2: True/False depending upon whether this entry is selectable ("sensitive" attribute).
*/
store = gtk_tree_store_new(3, G_TYPE_STRING, G_TYPE_POINTER, G_TYPE_BOOLEAN);
combo_box = gtk_combo_box_new_with_model(GTK_TREE_MODEL(store));
g_object_unref(store);
cell = gtk_cell_renderer_text_new();
gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo_box), cell, TRUE);
gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo_box), cell,
"text", 0, "sensitive", 2,
NULL);
if (cell_p != NULL) {
*cell_p = cell;
}
return combo_box;
}
/**
* ws_combo_box_new_text_and_pointer:
*
* Convenience function which constructs a new "text and pointer" combo box, which
* is a #GtkComboBox just displaying strings and storing a pointer associated with
* each combo_box entry; The pointer can be retrieved when an entry is selected.
* If you use this function to create a text_and_pointer combo_box,
* you should only manipulate its data source with the
* following convenience functions:
* ws_combo_box_append_text_and_pointer()
* ws_combo_box_append_text_and_pointer_full()
*
* @return A pointer to a new text_and_pointer combo_box.
*/
GtkWidget *
ws_combo_box_new_text_and_pointer(void) {
return ws_combo_box_new_text_and_pointer_full(NULL);
}
/**
* ws_combo_box_clear_text_and_pointer:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
*
* Clears all the text_and_pointer entries in the text_and_pointer combo_box.
* Note: A "changed" signal will be emitted after the clear if there was
* an active (selected) entry before the clear.
* You should use this function only with combo boxes constructed with
* ws_combo_box_new_text_and_pointer().
*/
void
ws_combo_box_clear_text_and_pointer(GtkComboBox *combo_box)
{
gtk_tree_store_clear(GTK_TREE_STORE(gtk_combo_box_get_model(combo_box)));
}
/**
* ws_combo_box_append_text_and_pointer_full:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @param parent_iter Parent row for apending; NULL if appending to tree top-level;
* @param text A string to be displayed as an entry in the dropdown list of the combo_box
* @param ptr A pointer to be associated with this entry of the combo_box
* @param sensitive TRUE/FALSE to set sensitivity of the entry
* @return A GtkTreeIter pointing to the appended GtkVomboBox entry.
*
* Appends text and ptr to the list of strings and pointers stored in combo_box.
* The text and ptr can be appended to any existing level of the tree_store.
* The sensitivity of the row will be set as requested.
* Note that you can only use this function with combo boxes constructed with
* ws_combo_box_new_text_and_pointer().
*/
GtkTreeIter
ws_combo_box_append_text_and_pointer_full(GtkComboBox *combo_box,
GtkTreeIter *parent_iter,
const gchar *text,
gconstpointer ptr,
gboolean sensitive)
{
GtkTreeIter iter;
GtkTreeStore *store;
store = GTK_TREE_STORE(gtk_combo_box_get_model(combo_box));
gtk_tree_store_append(store, &iter, parent_iter);
gtk_tree_store_set(store, &iter, 0, text, 1, ptr, 2, sensitive, -1);
return iter;
}
/**
* ws_combo_box_append_text_and_pointer:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @param text A string to be displayed as an entry in the dropdown list of the combo_box
* @param ptr A pointer to be associated with this entry of the combo_box
* @return A GtkTreeIter pointing to the appended GtkComboBox entry.
*
* Appends text and ptr to the list of strings and pointers stored in combo_box. Note that
* you can only use this function with combo boxes constructed with
* ws_combo_box_new_text_and_pointer().
*/
GtkTreeIter
ws_combo_box_append_text_and_pointer(GtkComboBox *combo_box,
const gchar *text,
gconstpointer ptr)
{
return ws_combo_box_append_text_and_pointer_full(combo_box, NULL, text, ptr, TRUE);
}
/**
* ws_combo_box_get_active_pointer:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @param ptr A pointer to a location in which to store the pointer associated with the active entry
* @return TRUE if an entry is selected (i.e: an active entry exists); FALSE otherwise
*
* You can only use this function with combo boxes constructed with
* ws_combo_box_new_text_and_pointer().
*/
gboolean
ws_combo_box_get_active_pointer(GtkComboBox *combo_box,
gpointer *ptr)
{
GtkTreeStore *store;
GtkTreeIter iter;
*ptr = NULL;
if (gtk_combo_box_get_active_iter(combo_box, &iter)) {
store = GTK_TREE_STORE(gtk_combo_box_get_model(combo_box));
gtk_tree_model_get(GTK_TREE_MODEL(store), &iter,
1, ptr, -1);
return TRUE;
}
return FALSE;
}
/**
* ws_combo_box_get_active:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @return Index of the active entry; -1 if no entry is selected;
* Note: If the active item is not an immediate child of root of the tree then
* the index returned is that of the top-level for the acftive entry.
*/
gint
ws_combo_box_get_active(GtkComboBox *combo_box)
{
return gtk_combo_box_get_active(combo_box);
}
/**
* ws_combo_box_set_active:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @param idx of the entry which is to be set as active (ie: selected).
* Index refers to the immediate children of the tree.
*/
void
ws_combo_box_set_active(GtkComboBox *combo_box,
gint idx)
{
gtk_combo_box_set_active(combo_box, idx);
}
/**
* ws_combo_box_set_active_iter:
* @param combo_box A #GtkComboBox constructed using ws_combo_box_new_text_and_pointer()
* @param iter of the entry which is to be set as active (ie: selected).
*/
void
ws_combo_box_set_active_iter(GtkComboBox *combo_box, GtkTreeIter *iter)
{
gtk_combo_box_set_active_iter(combo_box, iter);
}
/* Copy functions from GTK 3.0 to be used if GTK version is 2.22 or 2.24 to be able save Graphs to file */
#if GTK_CHECK_VERSION(2,22,0)
#if !GTK_CHECK_VERSION(3,0,0)
static cairo_format_t
gdk_cairo_format_for_content(cairo_content_t content)
{
switch (content)
{
case CAIRO_CONTENT_COLOR:
return CAIRO_FORMAT_RGB24;
case CAIRO_CONTENT_ALPHA:
return CAIRO_FORMAT_A8;
case CAIRO_CONTENT_COLOR_ALPHA:
default:
return CAIRO_FORMAT_ARGB32;
}
}
static cairo_surface_t *
gdk_cairo_surface_coerce_to_image(cairo_surface_t *surface,
cairo_content_t content,
int src_x,
int src_y,
int width,
int height)
{
cairo_surface_t *copy;
cairo_t *cr;
copy = cairo_image_surface_create(gdk_cairo_format_for_content(content),
width,
height);
cr = cairo_create(copy);
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
cairo_set_source_surface(cr, surface, -src_x, -src_y);
cairo_paint(cr);
cairo_destroy(cr);
return copy;
}
static void
convert_alpha(guchar *dest_data,
int dest_stride,
guchar *src_data,
int src_stride,
int src_x,
int src_y,
int width,
int height)
{
int x, y;
src_data += src_stride * src_y + src_x * 4;
for (y = 0; y < height; y++) {
guint32 *src = (guint32 *)src_data;
for (x = 0; x < width; x++) {
guint alpha = src[x] >> 24;
if (alpha == 0)
{
dest_data[x * 4 + 0] = 0;
dest_data[x * 4 + 1] = 0;
dest_data[x * 4 + 2] = 0;
}
else
{
dest_data[x * 4 + 0] = (((src[x] & 0xff0000) >> 16) * 255 + alpha / 2) / alpha;
dest_data[x * 4 + 1] = (((src[x] & 0x00ff00) >> 8) * 255 + alpha / 2) / alpha;
dest_data[x * 4 + 2] = (((src[x] & 0x0000ff) >> 0) * 255 + alpha / 2) / alpha;
}
dest_data[x * 4 + 3] = alpha;
}
src_data += src_stride;
dest_data += dest_stride;
}
}
static void
convert_no_alpha(guchar *dest_data,
int dest_stride,
guchar *src_data,
int src_stride,
int src_x,
int src_y,
int width,
int height)
{
int x, y;
src_data += src_stride * src_y + src_x * 4;
for (y = 0; y < height; y++) {
guint32 *src = (guint32 *)src_data;
for (x = 0; x < width; x++) {
dest_data[x * 3 + 0] = src[x] >> 16;
dest_data[x * 3 + 1] = src[x] >> 8;
dest_data[x * 3 + 2] = src[x];
}
src_data += src_stride;
dest_data += dest_stride;
}
}
/**
* gdk_pixbuf_get_from_surface:
* @surface: surface to copy from
* @src_x: Source X coordinate within @surface
* @src_y: Source Y coordinate within @surface
* @width: Width in pixels of region to get
* @height: Height in pixels of region to get
*
* Transfers image data from a #cairo_surface_t and converts it to an RGB(A)
* representation inside a #GdkPixbuf. This allows you to efficiently read
* individual pixels from cairo surfaces. For #GdkWindows, use
* gdk_pixbuf_get_from_window() instead.
*
* This function will create an RGB pixbuf with 8 bits per channel.
* The pixbuf will contain an alpha channel if the @surface contains one.
*
* Return value: (transfer full): A newly-created pixbuf with a reference
* count of 1, or %NULL on error
*/
GdkPixbuf *
gdk_pixbuf_get_from_surface(cairo_surface_t *surface,
gint src_x,
gint src_y,
gint width,
gint height)
{
cairo_content_t content;
GdkPixbuf *dest;
/* General sanity checks */
g_return_val_if_fail(surface != NULL, NULL);
g_return_val_if_fail(width > 0 && height > 0, NULL);
content = (cairo_content_t)(cairo_surface_get_content(surface) | CAIRO_CONTENT_COLOR);
dest = gdk_pixbuf_new(GDK_COLORSPACE_RGB,
!!(content & CAIRO_CONTENT_ALPHA),
8,
width, height);
surface = gdk_cairo_surface_coerce_to_image(surface, content,
src_x, src_y,
width, height);
cairo_surface_flush(surface);
if (cairo_surface_status(surface) || dest == NULL)
{
cairo_surface_destroy(surface);
return NULL;
}
if (gdk_pixbuf_get_has_alpha(dest))
convert_alpha(gdk_pixbuf_get_pixels(dest),
gdk_pixbuf_get_rowstride(dest),
cairo_image_surface_get_data(surface),
cairo_image_surface_get_stride(surface),
0, 0,
width, height);
else
convert_no_alpha(gdk_pixbuf_get_pixels(dest),
gdk_pixbuf_get_rowstride(dest),
cairo_image_surface_get_data(surface),
cairo_image_surface_get_stride(surface),
0, 0,
width, height);
cairo_surface_destroy(surface);
return dest;
}
#endif /* !GTK_CHECK_VERSION(3,0,0) */
#endif /* GTK_CHECK_VERSION(2,22,0) */
GtkWidget *
ws_gtk_box_new(GtkOrientation orientation,
gint spacing,
gboolean homogeneous)
{
#if !GTK_CHECK_VERSION(3,0,0)
if (orientation == GTK_ORIENTATION_HORIZONTAL)
return ws_gtk_hbox_new(homogeneous, spacing);
else
return ws_gtk_vbox_new(homogeneous, spacing);
#else
GtkWidget *widget;
widget = gtk_box_new(orientation, spacing);
gtk_box_set_homogeneous(GTK_BOX(widget), homogeneous);
return widget;
#endif /* GTK_CHECK_VERSION(3,0,0) */
}
#if !GTK_CHECK_VERSION(3,0,0)
GtkWidget *
gtk_button_box_new(GtkOrientation orientation)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL) {
return ws_gtk_hbutton_box_new();
} else {
return gtk_vbutton_box_new();
}
}
GtkWidget *
gtk_scrollbar_new(GtkOrientation orientation,
GtkAdjustment *adjustment)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL) {
return gtk_hscrollbar_new(adjustment);
} else {
return gtk_vscrollbar_new(adjustment);
}
}
GtkWidget *
gtk_paned_new(GtkOrientation orientation)
{
if(orientation == GTK_ORIENTATION_HORIZONTAL) {
return gtk_hpaned_new();
} else {
return gtk_vpaned_new();
}
}
GtkWidget *
gtk_separator_new(GtkOrientation orientation)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL) {
return gtk_hseparator_new();
} else {
return gtk_vseparator_new();
}
}
#endif /* GTK_CHECK_VERSION(3,0,0) */
GtkWidget *
frame_new(const gchar *title) {
GtkWidget *frame, *frame_lb;
GString *mu_title = g_string_new("");
frame = gtk_frame_new(NULL);
gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE);
if (title) {
#if defined(_WIN32) || defined(__APPLE__)
g_string_printf(mu_title, "%s", title);
#else
g_string_printf(mu_title, "<b>%s</b>", title);
#endif
frame_lb = gtk_label_new(NULL);
gtk_label_set_markup(GTK_LABEL(frame_lb), mu_title->str);
gtk_frame_set_label_widget(GTK_FRAME(frame), frame_lb);
}
g_string_free(mu_title, TRUE);
return frame;
}
/* ---------------------------------
* ws_gtk_grid...() wrappers
* See gui_utils.h
*/
#if !GTK_CHECK_VERSION(3,0,0)
#else /* GTK3 */
void
ws_gtk_grid_attach_defaults(GtkGrid *grid, GtkWidget *child, gint left, gint top, gint width, gint height)
{
/* Use defaults for [x|y]options and [x|y]padding which match those for gtk_table_attach_defaults() */
ws_gtk_grid_attach_extended(grid, child, left, top, width, height,
(GtkAttachOptions)(GTK_EXPAND|GTK_FILL), (GtkAttachOptions)(GTK_EXPAND|GTK_FILL), 0, 0);
}
void
ws_gtk_grid_attach_extended(GtkGrid *grid, GtkWidget *child,
gint left, gint top, gint width, gint height,
GtkAttachOptions xoptions, GtkAttachOptions yoptions,
guint xpadding, guint ypadding)
{
gtk_grid_attach(grid, child, left, top, width, height);
/* XXX: On Gtk3, there's Some trickyness about EXPAND which I probably don't
* really understand.
* It seems that:
* Default for EXPAND is "not set".
* In this case "computed expand" based on any child(ren) of this widget will
* affect this widget.
* If EXPAND is set (either TRUE or FALSE) then the value overrides any effect
* from children.
*/
/* Note: widget defaults are FALSE */
if (xoptions & GTK_EXPAND)
gtk_widget_set_hexpand(child, TRUE);
if (yoptions & GTK_EXPAND)
gtk_widget_set_vexpand(child, TRUE);
/* Note: widget default is GTK_FILL */
/* XXX: Is an 'align' ignored if the corresponding 'fill; is FALSE ? */
/* XXX: don't set FILL(since is dedault) but just clear if not set ?? */
/* ToDo: review effect of explicit set/clear vs explict clear only */
gtk_widget_set_halign(child, (xoptions & GTK_FILL) ? GTK_ALIGN_FILL : GTK_ALIGN_CENTER);
gtk_widget_set_valign(child, (yoptions & GTK_FILL) ? GTK_ALIGN_FILL : GTK_ALIGN_CENTER);
if (xpadding != 0) {
gtk_widget_set_margin_left(child, xpadding);
gtk_widget_set_margin_right(child, xpadding);
}
if (ypadding != 0) {
gtk_widget_set_margin_top(child, ypadding);
gtk_widget_set_margin_bottom(child, ypadding);
}
}
void
ws_gtk_grid_set_homogeneous(GtkGrid *grid, gboolean homogeneous)
{
gtk_grid_set_row_homogeneous(grid, homogeneous);
gtk_grid_set_column_homogeneous(grid, homogeneous);
}
#endif /* !GTK_CHECK_VERSION(3,0,0) */
/*
* Wrap gdk_cairo_set_source_color() with the GTK 3 equivalent
* to be used in GTK2
*/
#if !GTK_CHECK_VERSION(3,0,0)
void
gdk_cairo_set_source_rgba(cairo_t *cr, const GdkRGBA *rgba)
{
GdkColor color;
gdkRGBAcolor_to_GdkColor(&color, rgba);
gdk_cairo_set_source_color(cr, &color);
}
#endif /* GTK_CHECK_VERSION(3,0,0) */
#ifdef HAVE_GDK_GRESOURCE
GdkPixbuf *
ws_gdk_pixbuf_new_from_resource(const char *path)
{
GdkPixbuf *pixbuf;
GError *err = NULL;
pixbuf = gdk_pixbuf_new_from_resource(path, &err);
g_assert_no_error(err);
return pixbuf;
}
#endif /* HAVE_GDK_GRESOURCE */
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* vi: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
|