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
|
2025-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.56.1
2025-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Update for the new release-service component
https://discourse.gnome.org/t/gnome-release-service-ftpadmin-replacement-coming-11th-december/25487
2025-01-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.56.0
2025-01-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add new API from pango 1.56.0
* configure.ac:
* meson.build: Require pangocairo >= 1.56.0
* pango/src/fontdescription.hg: Add set/get_features().
* pango/src/fontmap.hg: Add add_font_file().
2025-01-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files, using files from pango 1.56.0
2024-12-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Replace gtkmm.org by gtkmm.gnome.org
2024-12-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
AttrList: Update the documentation
Pango::UNDERLINE_LOW -> Pango::Underline::LOW.
Use _WRAP_METHOD() on insert(), insert_before() and change().
2024-12-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove unsupported entries
2024-07-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.54.0
2024-07-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Don't build pango examples or tests
2024-07-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add new API from pango 1.54.0
Most of this new API was added to pango earlier than 1.54.0.
* configure.ac:
* meson.build: Require pangocairo >= 1.54.0
* pango/src/attriter.hg: Add a TODO comment.
* pango/src/color.[ccg|hg]: Add parse_with_alpha().
* pango/src/context.hg: Add set/get_round_glyph_positions().
* pango/src/item.[ccg|hg]: Add default constructor, get_char_offset().
Simplify the Item(PangoItem* castitem, bool make_a_copy) constructor.
* pango/src/layout.hg: Add set/get_justify_last_line(), get_direction(),
get_caret_pos().
* pango/src/layoutiter.[ccg|hg]: Add operator bool(), get_run_baseline().
* pango/src/layoutline.[ccg|hg]: Add is_paragraph_start(),
get_resolved_direction(), get_height().
* pango/src/tabarray.[ccg|hg]: Add TabArray(const Glib::ustring& text) ctor,
operator bool(), set_positions_in_pixels(), to_string(),
set/get_decimal_point(), sort().
2024-07-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files, using files from pango 1.54.0
2024-07-20 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Use Meson's pkgconfig module
instead of using the *.pc.in templates.
Require meson >= 0.62. Remove the can_add_dist_script variable.
It's unnecessary when the meson version >= 0.58.
Simplify the calls to dependency().get_variable().
Possible when meson version >= 0.51.
2024-07-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: meson install -> meson install --quiet
2024-07-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Don't link to library.gnome.org
Require python3 >= 3.7. That's what Meson requires.
2024-07-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove obsolete entries
2024-04-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Language::get_scripts(): Improve the documentation
* pango/src/language.ccg: 0 -> nullptr
* pango/src/language.hg: Improve the documentation of get_scripts().
2024-03-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.52.0
2024-03-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Don't use warning_level and werror in meson setup
They are applied also to subprojects.
2024-03-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add new API from pango 1.52.0
* configure.ac:
* meson.build: Require pangocairo >= 1.52.0
* pango/src/fontfamily.hg: Add property_item_type(), property_n_items(),
property_name(), property_is_monospace(), property_is_variable().
* pango/src/fontmap.hg: Add reload_font(), property_item_type(),
property_n_items().
2024-03-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files
using files from pango 1.52.0. Add pango_signals.defs.
2024-01-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.50.2
2024-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Update htmlrefpub
2023-12-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Don't fail if warning_level=everything
2023-07-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Remove AUTHORS, HACKING, README.SUN; add info to README.md
See gtkmm#140
2023-07-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Update pangomm.doap
2023-06-27 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32.md: Make dependencies clearer
Make it clear that glibmm-2.68 and cairomm-1.16 refer to the C++17 branches of
glibmm and cairomm, which are the glibmm-2.68.x and cairo-1.16.x or later
branches/releases, including the master/main branch.
2023-06-27 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Convert to MarkDown
Convert to MarkDown format so that the formatting is easier on the eye, and
switch to UNIX line endings.
Also update the info in there so that the actual build situation is better
refleted, especially in regards to Visual Studio builds. Re-organize items
for the Meson builds to be under their respective headers for MinGW and Visual
Studio.
2023-05-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Don't use deprecated pango_coverage_ref/unref()
They are deprecated since pango 1.52.0. It has been possible
to use g_object_ref/unref() since pango 1.44.0.
2023-05-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Doxyfile.in: Remove obsolete entries
2023-05-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
pangomm.pc.in: Update htmlrefpub
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
fontset.ccg: Use callback function with C linkage
Code that mixes up C linkage and C++ linkage has undefined behavior.
Most compilers make no difference between C and C++ linkage, so it
has not been an issue so far. But see issue glibmm#1.
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Simplify if-file-exists test
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
README.md, CI: meson -> meson setup
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Doxyfile.in: Don't hide undocumented classes
Might make the inheritance diagrams less incomplete when Doxygen's
tag files are not perfect.
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Install all dependencies with apt
Ubuntu 22.10 contains libsigc++-3.0-dev, libglibmm-2.68-dev
and libcairomm-1.16-dev.
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Simplify lookup of python command
See libsigcplusplus PR#83
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Fix the evaluation of is_git_build on Windows
See gtkmm#131
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Don't copy files with configure_file()
It's deprecated from Meson 0.64. The replacement, fs.copyfile(),
is not useful here. It only copies from the source directory to
the build directory.
2022-09-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Detect if we build from a git subtree
See gtkmm!72 (William Roy)
2022-09-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.50.1
2022-09-12 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Convert README to README.md
2022-05-24 Chun-wei Fan <fanchunwei@src.gnome.org>
meson/MSVC: Re-organize warning-related compiler flags
Add a short description for each of the warning-related compiler flags that we
apply globally.
Also, apply '/wd4267' only when we are building a 64-bit build, as that warning
should only be related to 64-bit builds.
2022-05-20 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Avoid configuration warnings
2022-03-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Use artifacts to transfer data between stages, part 2
2022-03-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Build documentation of dependencies
Build documentation of libsigc++, glibmm, cairomm, or else pangomm's
inheritance diagrams will be incomplete due to missing tag files.
2022-03-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Use artifacts to transfer data between stages
2022-02-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Don't build everything with warnings=fatal
Build only pangomm with warnings=fatal.
Select latest released version of libsigc++3.
2022-02-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Check if Perl is required for building documentation
New versions of mm-common use the Python scripts doc_postprocess.py
and doc_install.py instead of the Perl scripts doc-postprocess.pl and
doc-install.pl when documentation is built.
2022-02-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Context::get_font_map(): Fix reference count
pango_context_get_font_map() returns "(transfer none)".
See https://mail.gnome.org/archives/gtkmm-list/2022-February/msg00031.html
2022-02-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Specify 'check' option in run_command()
The default value will be changed in future Meson releases.
Don't use deprecated python3.path().
Let import('python').find_installation() always find the python
installation used to run Meson.
2022-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Reinsert 'meson test'
now with (hopefully) correct YAML syntax.
2022-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Skip 'meson test'
2022-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Don't build documentation of dependencies
2021-12-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.50.0
2021-12-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Comment out 'meson test'
If the package manager does not find a new enough version of pango,
pango is built as a subproject, and 'meson test' tests both pango and
pangomm. If a pango test fails, the whole CI fails.
There are no tests in pangomm, anyway.
2021-12-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Attribute: Add some create_attr_*() methods
and add TextTransform, BaselineShift and FontScale enums.
2021-12-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
AttrList: Add to_string() and from_string()
and require pango >= 1.49.4.
2021-12-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files, using files from pango 1.50.0
and update pango_docs_override.xml.
2021-11-10 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Support Visual Studio 2022 builds
Make these builds distinct from the Visual Studio 2019 builds.
2021-10-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add FontMap::get_family()
2021-10-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add the CairoFontMapImpl class
* pango/pangomm/.gitignore:
* pango/pangomm/filelist.am:
* pango/pangomm/meson.build: Add cairofontmapimpl.
* pango/src/cairofontmap.hg: Improve the documentation of get_default().
* pango/src/fontmap.[ccg|hg]: Add a custom wrap_new(). Wrap in a
CairoFontMapImpl if the PangoFontMap object implements PangoCairoFontMap.
* pango/pangomm/cairofontmapimpl.[cc|h]: New files. A CairoFontMapImpl
derives from FontMap and implements CairoFontMap.
Fixes #15
2021-09-12 Pavlo Solntsev <p.sun.fun@gmail.com>
CI: Switching to debian:testing
2021-09-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
AttrList: Add get_attributes(), update(), equal()
Fixes #12
2021-09-06 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove obsolete entry
2021-08-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
CI: Add .gitlab-ci.yml
2021-08-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Don't include individual pango headers, part 2
2021-08-24 Matthias Clasen <mclasen@redhat.com>
Don't include individual pango headers
As in every gnome library, you are only supposed
to include the main pango.h header from the outside.
This was causing build failures after some recent
pango header rearrangements.
2021-07-16 Matthias Clasen <mclasen@redhat.com>
Use pango from the main branch
Change the Pango subproject to use the main branch.
This depends on
https://gitlab.gnome.org/GNOME/pango/-/merge_requests/379
2021-05-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.49.1
2021-05-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add dependencies to Doxygen tag files in subprojects
Doxygen in a main project shall not be called before tag files have been
created or updated in subprojects.
2021-05-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fix build as subproject without building documentation
* meson.build: If mm-common-get is not found in maintainer-mode
with 'required: false', try with 'required: true'.
Don't try to use tag_file, if documentation is not built.
* docs/reference/meson.build: Don't use variables from modules
that don't define doxytagfile. These are subprojects that don't build
their documentation.
2021-05-11 Chun-wei Fan <fanchunwei@src.gnome.org>
Visual Studio builds: Clean up build files
glibmm will be updated to be clear of classes that export items making the
built binaries dependent on the exact compiler version and the STL version,
which will eliminate the need to ignore warnings C4251, C4273 and C4275.
We will also use the /EHsc compiler flag so that we can also drop the
ignore on warning C4530.
2021-05-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Subprojects can use meson.add_dist_script() if meson.version() >= 0.58.0
Call add_dist_script() in a subproject, if meson.version() >= 0.58.0.
2021-04-08 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: No implicit_include_directories
2021-03-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: No implicit_include_directories
It shall not be possible to find a pangomm header file
with #include <xxx.h> instead of #include <pangomm/xxx.h>.
Not fully fixed until https://github.com/mesonbuild/meson/issues/8562
has been fixed.
2021-03-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Make it possible to use pangomm as a subproject
pango, cairomm and glibmm can be subprojects of pangomm.
2021-03-09 Chun-wei Fan <fanchunwei@src.gnome.org>
pangommconfig.h.*: Don't dllimport on MinGW
This will fix warnings when building items using pangomm with MinGW/GCC.
Please see: https://gitlab.gnome.org/GNOME/gtkmm/-/issues/90
2021-02-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Use relative paths to untracked/
The paths to the source code in untracked/ shall be relative to the
meson.build file, when library files are built from a tarball.
With absolute paths Meson may generate too long file names.
See merge request gtkmm!61
2021-01-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
GlyphItem: Make most methods public
They became private by mistake 12 years ago in
commit d5781fecebf7eeb5bafbfb875027f6f1707a2bf1.
Fixes #11
2021-01-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout, LayoutIter: Add get_const_line() and get_const_lines()
* pango/src/layout.hg: Add get_const_line() and get_const_lines().
* pango/src/layoutiter.hg: Add get_const_line().
Fixes #10
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout: Speed up get_log_attrs()
Call pango_layout_get_log_attrs_readonly() instead of
pango_layout_get_log_attrs(). The PangoLogAttr structs
will then be copied once instead of twice.
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
GlyphItem: Fix a memory leak in split()
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove obsolete entries
2020-12-19 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.48.0
2020-12-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files
2020-12-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Change ABI to pangomm-2.48; Use glibmm-2.68 instead of glibmm-2.66
So we can use the 2.44-2.46 version numbers for stable releases in
the pangomm-1.4 ABI series.
We've done similar ABI name changes before.
2020-11-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add Layout::set/get_line_spacing()
See #9
2020-11-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
configure.ac, meson.build: Require pangocairo >= 1.45.1
Overline support, such as pango_attr_overline_new(), was added in
pango 1.45.1. The requirement should have been bumped when those
functions were wrapped.
2020-11-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Wrap pango_shape_with_flags()
* configure.ac:
* meson.build: Require pangocairo >= 1.44.3
* pango/src/glyphstring.[ccg|hg]: Add constructor
GlyphString(const Glib::ustring& item_text,
const Glib::ustring& paragraph_text, const Analysis& analysis,
ShapeFlags flags = ShapeFlags::NONE).
* pango/src/item.[ccg|hg]: Add enum ShapeFlags and
shape(const Glib::ustring& item_text, const Glib::ustring& paragraph_text,
ShapeFlags flags = ShapeFlags::NONE).
* tools/m4/convert_pango.m4: Add conversions for ShapeFlags.
See #9
2020-10-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Bump version to 2.43.3
Even micro version in released versions, odd micro version in Git.
See https://wiki.gnome.org/MaintainersCorner/Releasing
(which says minor version in one sentence where it should
say micro version)
2020-10-01 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Fix versioning on macOS
See libsigcplusplus, pull request 65
2020-07-23 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Use Meson-style DLL and .lib naming if requested
To make things more consistent and less prone to confusion, if 'USE_MESON_LIBS'
is specified in the NMake command line, build the DLLs and .lib's that are
named like the Meson counterparts. Binaries built with Meson+Visual Studio
and the ones that are built via NMake using 'USE_MESON_LIBS' are
interchangeable, provided that they are built with the same Visual Studio
version.
2020-07-23 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix generating pangomm[config.h|.rc]
The previous additions to generate those files accidentally made the build
attempt to generate them, even if done from a release tarball that is done by
the autotools builds.
This will fix this situation, and improve the situation that if pangomm.rc or
pangommconfig.h needs to be generated, these files will be generated
automatically
2020-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutIter: Fix get_run() and get_line()
get_run() shall call pango_layout_iter_get_run_readonly() and
take a copy of the returned PangoLayoutRun.
Make proper const and non-const versions of get_line().
2020-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutRun: Rename to GlyphItem
PangoLayoutRun was renamed to PangoGlyphItem in the year 2002.
For backward compatibility PangoLayoutRun is a typedef of PangoGlyphItem.
No such backward compatibility is needed in this version of pangomm.
2020-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Renderer: Add vfuncs
See #9
2020-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Font, FontFace, FontFamily, FontMetrics: Add new methods
2020-07-22 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Link with giomm
...since we are now using items from giomm since commit 17021092, and ensure
that we do indeed refer to the glibmm (giomm) master headers
as we are using items from
2020-07-20 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Attribute: Add Overline and ShowFlags enums and some create*() methods
Fixes #9
2020-07-20 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files
2020-07-19 Andreas Persson <andreasp56@outlook.com>
Let FontMap and FontFamily implement ListModel
Let the FontMap and FontFamily classes implement the Gio::ListModel
interface, just as the C level pango classes do. For this, a dependency
to giomm was added. Wrap CairoFontMap::get_default().
2020-07-08 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix headers search
We ought to look in $(PREFIX)\include\harfbuzz and $(PREFIX)\include, as the
HarfBuzz and Cairo headers can be found in these respective locations.
2020-07-08 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support ARM64 Windows builds
This will make the NMake Makefiles capable of building ARM64 binaries of
pangomm, which can be used on Windows 10 on ARM systems.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Update Meson build info
It is now possible to build Pango directly from a GIT checkout on Visual Studio
builds for a while, so let people know about this.
Also note that glibmm and cairomm should be built with Meson in order to use the
Meson build files for pangomm, and that it is recommended to use the same compiler
to build pangomm, glibmm and cairomm.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Use the /utf-8 compiler flag
This makes it easier to build pangomm on non-Western locales, without requiring
to change the "Locale settings for non-Unicode programs" to English, which will
require a restart, since warning (error) C4819 can be otherwise triggered, which
can indicate broken builds due to Unicode handling issues in the compiler.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Apply toolset version for Meson-built deps
As the Meson build files for Visual Studio apply the toolset version in the
.lib filenames by default, apply the toolset version in the Meson-built -mm
.lib files that we link in, just as we did when we we link in the -mm .lib
files that was built with NMake, by default.
The option 'USE_COMPAT_LIBS' will also mean that we will use the former
behavior when we link in the Meson-built -mm .lib's, just as we did when we
link in the NMake-built -mm .lib's.
Also fix the case also when the 'USE_COMPAT_LIBS' option is used and when
'USE_MESON_LIBS' is not used on Visual Studio 2017, where the toolset version
was not correctly applied.
2020-06-29 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/: Update for Doxygen >= 1.8.16
* docs/reference/meson.build: Doxygen 1.8.16 and later does not store
tag file names in the html files. This requires changes in meson.build
and in doc-install.pl (in mm-common). Otherwise references to other modules
won't be updated in the html files when they are installed.
* docs/reference/Doxyfile.in: Remove PERL_PATH and MSCGEN_PATH.
Doxygen since version 1.8.0 does not use them.
2020-06-29 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson/Visual Studio builds: Include toolset version by default
This makes the built DLL and .lib's contain the toolset version if the build is
carried out using Visual Studio 2017 or later, unless the
'msvc14x-parallel-installable' option is set to be false during configuration.
The reasoning behind this change is that there can be subtle problems when, for
instance, one tries to link to a Visual Studio 2017-built pangomm when building
items dependening on pangomm with Visual Studio 2019. This is unfortunate as
Microsoft did try hard to make interoperating between binaries built with
Visual Studio 2017 and 2019 as easy as possible in terms of ABI and API, but
unfortunately this can hit the corner cases where this compatibility does not
work.
As the name suggests, this attempts to make Visual Studio 2017 and 2019 builds
share a single set of underlying C DLLs easier, while avoiding breakages caused
by such subtle differences.
2020-06-29 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Check for /utf-8 on Visual Studio
Enable this compiler flag on Visual Studio if it is supported, so that building
under non-English (East Asian) locales is made easier, which helps to avoid the
C4819 error under such situations, due to a Unicode handling issue in the
compiler when running under such locales
2020-06-29 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Use pkg-config to find glibmm and cairomm for all builds
Stop manually looking for glibmm and cairomm for better consistency, as:
-Items that depended on glibmm which added Meson build support after glibmm,
such as gtkmm and libxml++ also required glibmm to be found via pkg-config
files, and they still had NMake Makefile support for Visual Studio builds.
For items that use cairomm directly, this will be the case as well.
-There could be corner cases on the glibmm and cairomm libraries that pangomm
links to in terms of ABI compatibility between Visual Studio 2015, 2017 and
2019.
2020-06-16 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Use toolset version in DLL/.lib naming
Instead of using the Visual Studio version ('vc150' for Visual Studio 2017),
use the toolset version ('vc141' for Visual Studio 2017 and 'vc142' for Visual
Studio 2019, as defined by Microsoft) so that we are more in-line with what
is now done in the pangomm-2-42 branch.
If using the old naming convention is desired, an NMake command line option
'USE_COMPAT_LIBS' have been added-note that this will require glibmm, cairomm,
and libsigc++ to be built with that option enabled.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Clean up Visual Studio bits
Streamline how we look for the dependencies manually, by using the
'has_headers:' attribute of cpp_compiler.find_library(), so that we can
check for the presence of the headers at the same time as looking for
the glibmm, cairomm and/or libsigc++ headers.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson/Visual Studio: Support cairomm lookup using pkg-config
cairomm recently received Meson build support, which will generate the
pkg-config files for us, so try to look for cairomm first using
pkg-config, before looking for it manually.
Since cairomm's pkg-config file also pulls in libsigc++, we can also
skip looking for libsigc++ if we found cairomm via pkg-config.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support Meson-built cairomm
Allow linking directly to Meson-built cairomm when using the
USE_MESON_LIBS option when running NMake.
2020-04-28 Kjell Ahlstedt <kjellahlstedt@gmail.com>
pango/meson.build: Minor fix of pangomm-2.44.pc
libdir=${exec_prefix}/lib, as when it's generated with Autotools.
2020-04-11 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/fontdescription.hg: Mark operators with PANGOMM_API
We are using a _WRAP_EQUAL here which generates operator== and
operator!= overloads that actually need to be exported. So, pass in a
function decorator to _WRAP_EQUAL
2020-04-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: If not maintainer-mode, check that generate-binding.py exists
Trying to build with maintainer-mode=false from a tarball generated with
Autotools will fail with a proper error message.
Fixes #6
2020-03-31 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Set default value of the 'warnings' option to 'min'
And add 'dist-warnings' with default value 'fatal'. It's used when a
tarball is tested by 'ninja dist' or 'meson dist'.
https://mail.gnome.org/archives/gtkmm-list/2020-March/msg00025.html
Add a better error message if mm-common-get is required but not found.
2020-03-31 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/*.hg: Mark _WRAP_ENUM with decl_prefix
This way, we can use compiler directives to export the symbols for the
_WRAP_ENUM-generated template<> classes.
2020-03-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix build instruction info display
Make up the missing escape carats...
2020-03-29 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Avoid some recompilations, and other changes
* MSVC_NMake/filelist.am: Remove pangomm/copy-pangommconfig-h.py.
* MSVC_NMake/pangomm/copy-pangommconfig-h.py: Removed file.
* MSVC_NMake/pangomm/meson.build: Copy pangommconfig.h with configure_file().
* Makefile.am: Distribute tools/dummy-header.py instead of tools/dist-cmd.py.
* docs/reference/meson.build: Rename a variable.
* meson.build: Rename some variables. Always set gmmproc_dir.
In maintainer-mode, show its value in the summary.
* pango/meson.build: Set pangommconfig_h.
* pango/pangomm/meson.build: Create dummy_header.h, depending on all
generated headers. It guarantees that all generated headers are built
before pangomm_library is built, at the same time avoiding unnecessary
recompilations.
* tools/dist-cmd.py: Removed file. It's not necessary in add_dist_script()
when the first parameter is python3.path().
* tools/dummy-header.py: New file.
2020-03-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.43.2
2020-03-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
README: Describe building with Meson and Autotools
2020-03-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Use glibmm-2.66 instead of glibmm-2.64
We have changed the ABI name in glibmm.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support Meson-built glibmm
Add the correct naming for the DLLs and .lib's for glibmm that is built
with Meson.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Ignore warnings C4251 and C4275
We might well be building against glibmm that is not built using gendef,
so we get C4251 and C4275 warnings when building against such GLib
builds. Ignore those warnings, since we know quite well that we are
importing from glibmm's import libraries using __declspec(dllimport) in
this case.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
Drop gendef from the sources
Since we are now using compiler directives to export the symbols on
Visual Studio builds, we can now drop the venerable gendef tool from the
sources.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
Visual Studio builds: Do not use gendef.exe
Instead, use compiler directives to build the pangomm DLLs.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/pangomm/*.h: Decorate APIs with PANGOMM_API
This prepares for the export of symbols using compiler directives rather
than using gendef.exe.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/*.hg: Decorate classes and functions with PANGOMM_API
This prepares for using compiler directives to export symbols rather
than using gendef.exe.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/pangomm/meson.build: Define PANGOMM_BUILD
This will eventually let us tell the compiler that we want to use
compiler directives to export the symbols.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/pangommconfig.h.*: Add PANGOMM_API
This prepares for decoration of the various APIs in pangomm so that we
can export symbols at least on Visual Studio buids using compiler
directives, without the need of gendef.exe.
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix build from Meson tarballs
Look also for headers in untraced/pango and untracked/pango/pangomm, and
fix up headers installation and build rules.
2020-03-11 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Ignore warning C4251 and C4275 on MSVC builds
We might be building against glibmm that is built with
__declspec(dllexport), meaning that warnings C4251 and C4275 will be
generated as we are now in-turn using __declspec(dllimport). We can
just ignore these compiler warnings, since we are pretty sure what we
are doing at this point.
2020-03-11 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Build generate_extra_defs with Visual Studio too
The NMake Makefiles in glibmm now builds glibmm_generate_extra_defs-2.x.lib,
so we can make use of it to build generate_extra_defs on Visual Studio too.
2020-03-11 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Look for glibmm with pkg-config on MSVC too
glibmm gained Meson build support for Visual Studio, so we can first
try to look for glibmm with pkg-config first, and then fall back to
manual searching if that cannot be found.
Note that libsigc++ also has a Meson build system as well, but either we
look for it via glibmm's pkg-config files, or we look for both glibmm
and libsigc++ manually.
Also support looking for Meson-built libsigc++ .lib's as well if glibmm
is to be looked for manually.
2020-03-11 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: allow maintainer builds on Visual Studio too
glibmm recently gained the ability to build with Visual Studio from a GIT
checkout and to install the PERL scripts used to generate the C++ sources from
the respective templates, so enable this support for pangomm as well as the
needed infrastructure are largely in place.
Note that a new configuration option has been added for Visual Studio builds
to specify the directory for gmmproc, although there is Meson build support
for building glibmm, but NMake Makefiles could have been used to build
glibmm, meaning glibmm built with Visual Studio may not have pkg-config
files, so it is used to specify the location if gmmproc if necessary.
Since some portions that we use for non-maintainer builds can be used for
maintainer builds as well, make them shared to keep changes minimal.
2020-03-11 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/color.hg: Fix call to _CLASS_BOXEDTYPE_STATIC
Remove all the parameters after the second one, they were originally ignored
as _CLASS_BOXEDTYPE_STATIC accepted 2 arguments and will cause issues with
the new api_decoration stuff that was recently added to glibmm, which was the
third argument
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support Meson-built libsigc++
Add an option USE_MESON_LIBS for the NMake command line so that we can use
the Meson-built libsigc++ easier, without needing to manually update Makefiles
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Separate outdir and intdir by toolset version
This reduces the chances of builds by different Visual Studio versions become
mixed up with other versions, and makes the build tree cleaner. Note that
Visaul Studio 2015 through 2019 are treated as the same toolset version since
they link to the same CRT.
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Allow builds from a GIT checkout
...or a Meson-generated release tarball.
Add targets to the NMake Makefiles which will allow:
-Generating MSVC_NMake/pangomm/pangommconfig.h and
MSVC_NMake/pangomm/pangomm.rc, needed for GIT checkouts and
Meson-generated release tarballs
-Generating the sources that need to be generated with gmmproc and
generate_wrap_init.pl, needed for GIT checkouts, and fix installation
accordingly.
-Look for sources also in $(srcroot)/untracked, which will be the case
for Meson-generated release tarballs.
-"Install" the m4 files in tools/m4, so that other projects may use it.
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Add rules to generate pre-configured items
This will generate the pangomm.rc and pangommconfig.h files, which are needed
for a Visual Studio build. This will make builds from a GIT checkout
easier with NMake.
2020-01-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Improve internal dependencies
* docs/reference/meson.build: Less difference between maintainer-mode and
not maintainer-mode.
* pango/pangomm/meson.build: Make separate lists of built .h files and
built .cc files.
2020-01-02 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/meson.build: Check if perl is found
Don't use perl.path() when configuring Doxyfile, if perl is not found.
Perl is not required, if build-documentation=false.
See https://github.com/libsigcplusplus/libsigcplusplus/issues/53
2019-12-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Check if .git is a directory or file
In a git worktree, .git is a regular file.
See MR !8 (Ting-Wei Lan)
2019-10-22 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Add instructions on Meson builds
This is added for at least the Visual Studio builds.
2019-10-22 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Fix library search error messages
The .format(...) items are placed wrongly in the cases that the required
-mm libraries are not found. Fix this.
Make these messages clearer to people that all 3 C++-17 versions of the
cairomm, glibmm and sigc++ .lib's are required by combining the 3
assert messages into a single assert message.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Link in the version resource on Windows
For all Windows builds, compile the version resource script (pangomm.rc)
and link it into the pangomm DLL so that we embed the version info in
that DLL.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Add MSVC-specific warning items
Let MSVC report warnings that roughly match those reported by the GCC
builds, but ignore the warnings that aren't really harmful, by referring
to GLib's msvc_recommended_pragmas.h.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Build import .lib for MSVC builds
This first builds gendef.cc in MSVC_NMake/gendef so that we can use it
to generate the .def file that we need to build the import .lib file for
the pangomm DLL.
However, in order to do this in Meson, we need to build the sources into
a temporary static .lib and run gendef.exe against it (which works with
gendef.cc unchanged, thanks to dumpbin /symbols accepting static .lib's
as well, so we won't have to figure out where the compiled object files
are) in order to obtain the symbols that we need, since Meson does not
support pre-link build steps.
Note that all the source files are still compiled only once since we are
using extract_all_objects(), so the only overhead is the temporary static
.lib that we need to build to obtain the .def file.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Don't use 'cp' in MSVC_NMake
The 'cp' command is unfortunately not available in non-UNIXy shells, so
use a Python script instead to do the same thing.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Don't build generate_extra_defs on MSVC
This depends on portions in glibmm tat is not applicable directly to
MSVC builds, so skip building this on MSVC
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Check for -mm deps manually on MSVC
The MSVC build files for the -mm library dependencies do not generate
pkg-config files, so check for them manually. This can be eventually
replaced by the pkg-config checks when these dependencies gain
Meson build support for MSVC.
This will build and link pangomm without the import libraries, which
will require us to build and use gendef.exe that is in
MSVC_NMake/gendef, which will be done in a later commit.
2019-10-21 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson builds: Improve GIT check on MSVC builds
Check that we are not attempting to build directly from a GIT
checkout on MSVC, as this is currently not supported as m4 is required,
which is not well supported on a Windows cmd.exe environment.
2019-10-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
pango/pangomm/meson.build: Fix output from declare_dependency()
* meson.build: Rename pangomm_deps -> pangomm_build_dep to avoid mix-up
with pangomm_dep in pango/pangomm/meson.build.
* pango/pangomm/meson.build: Add correct include directories in
declare_dependency() when maintainer_mode is false. Simplify the code.
* tools/extra_defs_gen/meson.build: Depend on pangomm_build_dep.
2019-09-29 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add support for building pangomm with Meson
pangomm can be built with either Autotools or Meson.
See MR !4
2019-09-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Use glibmm-2.64 instead of glibmm-2.62
We have changed the ABI name in glibmm.
2019-08-12 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Minor documentation fix
2019-07-28 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools: Remove obsolete files
* tools/Makefile.am: Don't distribute README.
* tools/Makefile_list_of_sources.am_fragment: Remove, not used.
* tools/README:
* tools/TODO: Remove, once copied from glibmm, don't belong to pangomm.
2019-07-24 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutLine: Remove unnecessary forward declaration
The forward declaration of Glib::wrap(PangoLayoutLine*, bool) became
unnecessary when the LayoutLineTraits struct was moved to layout.ccg
in commit 57d8bceba336e972a4967db6872a373eac1833b9.
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Remove deprecated API
* pango/src/attrlist.[ccg|hg]: Remove non-const operator bool().
* pango/src/cairofontmap.[ccg|hg]: Remove create_context().
* pango/src/color.[ccg|hg]: Remove non-const operator bool().
* pango/src/layout.[ccg|hg]: Remove get_iter(LayoutIter& iter).
* pango/src/layoutiter.[ccg|hg]: Remove assign_gobj().
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout::get_lines(): Fix ownership of the GSList
Change Glib::OWNERSHIP_SHALLOW -> NONE
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Remove max(), to_bytes() and one create()
* pango/src/coverage.[ccg|hg]: pango_coverage_from_bytes(),
pango_coverage_to_bytes() and pango_coverage_max() are deprecated in
pango 1.43. Remove them in pangomm.
* pango/src/fontmap.hg: Remove an _IGNORE() macro.
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate pango_docs.xml and .defs files
and update pango_extra_objects.defs.
2019-03-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Doxyfile.in: Remove obsolete glibmm configuration constants
They have been removed from glibmm. See issue glibmm#22.
2019-03-19 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Use glibmm-2.62 instead of glibmm-2.60
We have changed the ABI name in glibmm.
2018-12-30 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools/gen_scripts: Update for non-source-dir builds
Most modules (e.g. pango) can be built in a directory separated from the
source directory. Update the scripts that generate .defs and doc.xml files
to handle that.
The environment variable JHBUILD_SOURCES is not used any more.
Instead the environment variables GMMPROC_GEN_SOURCE_DIR and
GMMPROC_GEN_BUILD_DIR are read. See comments in init_generate.sh.
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.43.1
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Change the ABI to pangomm-2.44
So we can use the 2.42 version numbers for stable releases in the
pangomm-1.4 ABI series.
We don't need to release a stable ABI-parallel pangomm until
we need to release gtkmm 4.0, and that won't happen until GTK+ 4.0.0
happens, and we don't know when that might be.
We've done similar ABI name changes before.
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
FontDescription: Add set/get_variations()
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate .defs and docs.xml files
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add tools/gen_scripts/generate_all.sh
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Use glibmm-2.60 instead of glibmm-2.58
We have changed the ABI name in glibmm.
2018-10-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
configure.ac: Update bug report address
2018-09-10 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Update .gitignore
2018-09-10 Chun-wei Fan <fanchunwei@src.gnome.org>
Fix reference documentation generation
* pango/pangomm/Makefile.am:
* pango/pangomm/filelist.gmake.am: Split out again the autotools-specific
portion that we previously split out from pango/pangomm/filelist.am into a
file of its own.
* docs/Makefile.am: Include pango/pangomm/filelist.gmake.am to ensure the
reference documentation is generated for all files.
2018-09-07 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Remove Visual Studio 2017 projects
Since they have been superseded with the NMake Makefiles, remove them
from the source tree.
2018-09-07 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Add NMake Makefiles to build pangomm
This adds a set of NMake Makefiles to be used to build pangomm with
Visual Studio 2017 and later, which will share the
pango/[src|pangomm]/filelist.am with the autotools build system. By
doing so, this will reduce the likelihood of the Visual Studio build
files getting out-of-date when source files are added or removed.
This also updates the build instructions in README.win32 (which is also
changed to DOS/Windows line endings), and will dist the NMake Makefiles
instead of the Visual Studio project files, which have been superseded
and will be removed in the next commit.
2018-09-07 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Split out GNU-specific stuff from filelist.am
This is to prepare for it to be shared with non-GNU Make build systems.
2018-09-07 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Rename MSVC_Net2017 to MSVC_NMake
This prepares for the transition of the Visual Studio build files from
the Visual Studio projects to NMake Makefiles, to ease future
maintenance.
2018-09-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Attribute: Add several create_attr_*() methods
* pango/src/attributes.[ccg|hg]: Add create_attr_size_absolute(),
create_attr_underline_color(), create_attr_strikethrough_color(),
create_attr_fallback(), create_attr_letter_spacing(),
create_attr_gravity(), create_attr_gravity_hint(),
create_attr_font_features(). Fixes #2
2018-09-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fix compilation of each header file
Add #includes, necessary to make all header files pass the test with
glibmm/tools/test_scripts/testheaders.sh.
2018-04-08 Murray Cumming <murrayc@murrayc.com>
Require C++17
Because libsigc++-3.0 (and therefore glibmm) now requires C++17.
2018-03-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Use glibmm-2.58 instead of glibmm-2.56
We have changed the ABI name in glibmm.
2018-02-22 Murray Cumming <murrayc@murrayc.com>
2.41.5
2017-09-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Update .gitignore
2017-09-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
GlyphString: Remove some functions from _IGNORE()
and remove an obsolete TODO comment. There is no
pango_cairo_glyph_string_path() in pango.
2017-09-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate pango_docs.xml and the .defs files
and add PangoCoverage to pango_extra_objects.defs.
2017-09-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools/gen_scripts/: Update for pango built with meson
When pango is built with meson instead of autotools, generated .h and .c
files are stored in pango/build/pango. Files in that directory shall be read
when pango_docs.xml and the .defs files are generated.
Don't read private and internal .h files.
2017-08-25 Murray Cumming <murrayc@murrayc.com>
2.41.4
2017-08-25 Murray Cumming <murrayc@murrayc.com>
Use glibmm-2.56 instead of glibmm-2.54.
We have changed the ABI name in glibmm.
2017-07-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fontset: Remove GLIBMM_EXCEPTIONS_ENABLED
2017-06-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
AttrString: Let _MEMBER_GET convert from const char*
It's better to invoke a _CONVERSION that converts from a constant character
array. _MEMBER_GET shall not modify or delete the array. The used _CONVERSION
from non-const char* will be removed from convert_glib.m4. Bug 783360
2017-06-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Make enum Weight implicitly convertible to int
Add CONV_TO_INT to _WRAP_ENUM. Bug 86864
2017-04-26 Murray Cumming <murrayc@murrayc.com>
2.41.3
2017-04-19 Murray Cumming <murrayc@murrayc.com>
Renderer: Change RendererPart to Renderer::Part.
2017-04-19 Murray Cumming <murrayc@murrayc.com>
Coverage: Change CoverageLevel to Coverage::Level.
2017-04-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fix build when _WRAP_ENUM generates enum class
Bug 86864
2017-04-07 Chun-wei Fan <fanchunwei@src.gnome.org>
Visual Studio builds: Update glibmm ABI version
The glibmm ABI version has been updated in its unstable development series
as we await for GTK+-4.0, so update it accordingly here.
|