Changeset 1159
- Timestamp:
- Aug 11, 2015, 3:56:54 PM (10 years ago)
- Location:
- poppler/vendor/current
- Files:
-
- 2 added
- 61 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified poppler/vendor/current/CMakeLists.txt ¶
r1150 r1159 23 23 24 24 set(POPPLER_MAJOR_VERSION "0") 25 set(POPPLER_MINOR_VERSION "3 3")25 set(POPPLER_MINOR_VERSION "35") 26 26 set(POPPLER_MICRO_VERSION "0") 27 27 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") … … 40 40 option(ENABLE_LIBCURL "Build libcurl based HTTP support." OFF) 41 41 option(ENABLE_ZLIB "Build with zlib (not totally safe)." OFF) 42 option(SPLASH_CMYK "Include support for CMYK rasterization." OFF) 42 43 option(USE_FIXEDPOINT "Use fixed point arithmetic in the Splash backend" OFF) 43 44 option(USE_FLOAT "Use single precision arithmetic in the Splash backend" OFF) … … 159 160 set(USE_OPENJPEG1 FALSE) 160 161 set(USE_OPENJPEG2 FALSE) 162 set(WITH_OPENJPEG FALSE) 161 163 if(ENABLE_LIBOPENJPEG STREQUAL "auto") 162 164 find_package(LIBOPENJPEG) … … 177 179 set(WITH_OPENJPEG ${LIBOPENJPEG2_FOUND}) 178 180 endif() 181 set(ENABLE_LIBOPENJPEG "${WITH_OPENJPEG}") 179 182 if(ENABLE_CMS STREQUAL "auto") 180 183 find_package(LCMS2) … … 475 478 add_library(poppler SHARED ${poppler_SRCS}) 476 479 endif(MSVC) 477 set_target_properties(poppler PROPERTIES VERSION 5 2.0.0 SOVERSION 52)480 set_target_properties(poppler PROPERTIES VERSION 54.0.0 SOVERSION 54) 478 481 target_link_libraries(poppler ${poppler_LIBS}) 479 482 target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "") … … 702 705 show_end_message("font configuration" ${font_configuration}) 703 706 show_end_message_yesno("splash output" ENABLE_SPLASH) 707 if(SPLASH_CMYK) 708 message(" with CMYK support") 709 endif() 704 710 show_end_message_yesno("cairo output" CAIRO_FOUND) 705 711 show_end_message_yesno("qt4 wrapper" QT4_FOUND) -
TabularUnified poppler/vendor/current/ChangeLog ¶
r1150 r1159 1 commit 1213501882cf2ec6e3dcb3c078391040c8cb0a57 2 Author: Albert Astals Cid <aacid@kde.org> 3 Date: Sun Aug 9 18:27:06 2015 +0200 4 5 0.35.0 6 7 CMakeLists.txt | 4 ++-- 8 NEWS | 29 +++++++++++++++++++++++++++++ 9 configure.ac | 2 +- 10 cpp/Doxyfile | 2 +- 11 poppler/Makefile.am | 2 +- 12 qt4/src/CMakeLists.txt | 2 +- 13 qt4/src/Doxyfile | 2 +- 14 qt4/src/Makefile.am | 2 +- 15 qt5/src/CMakeLists.txt | 2 +- 16 qt5/src/Doxyfile | 2 +- 17 qt5/src/Makefile.am | 2 +- 18 11 files changed, 40 insertions(+), 11 deletions(-) 19 20 commit a7b1151ce7a14d359d85bacfe02352cdeb8d9a8f 21 Author: Hib Eris <hib@hiberis.nl> 22 Date: Sun Jul 26 10:38:37 2015 +0200 23 24 glib-demo: Prefer gtk_label_set_{x,y}align() over deprecated 25 gtk_misc_set_alignment() 26 27 https://bugs.freedesktop.org/show_bug.cgi?id=88788 28 29 glib/demo/main.c | 16 ++++++++++++---- 30 1 file changed, 12 insertions(+), 4 deletions(-) 31 32 commit e6e7d1492b518d57136031a94069a994182693cc 33 Author: Hib Eris <hib@hiberis.nl> 34 Date: Sun May 31 12:32:36 2015 +0200 35 36 pdftocairo: Fix cast to pointer from integer of different size 37 on win64 38 39 Fixes warning: 40 41 [ 322s] CXX pdftocairo-pdftocairo-win32.o 42 [ 324s] In file included from 43 /usr/x86_64-w64-mingw32/sys-root/mingw/include/windows.h:72:0, 44 [ 324s] from 45 /usr/x86_64-w64-mingw32/sys-root/mingw/include/cairo/cairo-win32.h:44, 46 [ 324s] from pdftocairo-win32.cc:16: 47 [ 324s] pdftocairo-win32.cc: In function 'HWND__* 48 createGroupBox(HWND, HINSTANCE, int, const char*, RECT*)': 49 [ 324s] pdftocairo-win32.cc:170:23: warning: cast to pointer from 50 integer of different size [-Wint-to-pointer-cast] 51 [ 324s] parent, (HMENU)id, 52 [ 324s] ^ 53 [ 324s] pdftocairo-win32.cc: In function 'HWND__* 54 createCheckBox(HWND, HINSTANCE, int, const char*, RECT*)': 55 [ 324s] pdftocairo-win32.cc:186:23: warning: cast to pointer from 56 integer of different size [-Wint-to-pointer-cast] 57 [ 324s] parent, (HMENU)id, 58 [ 324s] ^ 59 [ 324s] pdftocairo-win32.cc: In function 'HWND__* 60 createStaticText(HWND, HINSTANCE, int, const char*, RECT*)': 61 [ 324s] pdftocairo-win32.cc:202:23: warning: cast to pointer from 62 integer of different size [-Wint-to-pointer-cast] 63 [ 324s] parent, (HMENU)id, 64 [ 324s] ^ 65 [ 324s] pdftocairo-win32.cc: In function 'HWND__* 66 createPageScaleComboBox(HWND, HINSTANCE, int, RECT*)': 67 [ 324s] pdftocairo-win32.cc:219:23: warning: cast to pointer from 68 integer of different size [-Wint-to-pointer-cast] 69 [ 324s] parent, (HMENU)id, 70 [ 324s] ^ 71 72 https://bugs.freedesktop.org/show_bug.cgi?id=91465 73 74 utils/pdftocairo-win32.cc | 26 +++++++++++++------------- 75 1 file changed, 13 insertions(+), 13 deletions(-) 76 77 commit f3a0191abbf67c8b0f83739e1844a2fabe4138a4 78 Author: Hib Eris <hib@hiberis.nl> 79 Date: Thu Jul 23 21:44:57 2015 +0200 80 81 Explicitly link poppler-glib against pthread 82 83 Debian complains about missing symbols: 84 85 dpkg-shlibdeps: warning: symbol pthread_mutexattr_destroy used by 86 debian/libpoppler-glib8/usr/lib/i386-linux-gnu/libpoppler-glib.so.8.6.0 87 found in none of the libraries 88 dpkg-shlibdeps: warning: symbol pthread_mutexattr_init used by 89 debian/libpoppler-glib8/usr/lib/i386-linux-gnu/libpoppler-glib.so.8.6.0 90 found in none of the libraries 91 dpkg-shlibdeps: warning: symbol pthread_mutexattr_settype used by 92 debian/libpoppler-glib8/usr/lib/i386-linux-gnu/libpoppler-glib.so.8.6.0 93 found in none of the libraries 94 95 https://bugs.freedesktop.org/show_bug.cgi?id=91450 96 97 glib/Makefile.am | 1 + 98 1 file changed, 1 insertion(+) 99 100 commit fb264bfa8bf7142cabc8d94a86594cf0e7c9f134 101 Author: Hib Eris <hib@hiberis.nl> 102 Date: Fri Jul 24 22:18:26 2015 +0200 103 104 glib-demo: Remove code for no longer supported gtk versions 105 106 https://bugs.freedesktop.org/show_bug.cgi?id=88788 107 108 glib/demo/annots.c | 8 -------- 109 glib/demo/selections.c | 16 ---------------- 110 2 files changed, 24 deletions(-) 111 112 commit dd0883649ac296c6033474fe5991c534ac2ce594 113 Author: Hib Eris <hib@hiberis.nl> 114 Date: Fri Jul 24 22:09:57 2015 +0200 115 116 glib-demo: Remove use of deprecated 117 gtk_dialog_set_alternative_button_order() 118 119 https://bugs.freedesktop.org/show_bug.cgi?id=88788 120 121 glib/demo/main.c | 4 ---- 122 1 file changed, 4 deletions(-) 123 124 commit ffc798a7fcf95d2aaf123772072ef956ceb2dff7 125 Author: Hib Eris <hib@hiberis.nl> 126 Date: Sun Jan 25 18:16:04 2015 +0100 127 128 glib-demo: Remove deprecated use of gtk_misc_set_alignment() 129 130 https://bugs.freedesktop.org/show_bug.cgi?id=88788 131 132 glib/demo/main.c | 10 ++++++---- 133 1 file changed, 6 insertions(+), 4 deletions(-) 134 135 commit 56915b2989fc244b58a454fe40412eb731e706bd 136 Author: Hib Eris <hib@hiberis.nl> 137 Date: Sun Jan 25 13:10:31 2015 +0100 138 139 glib-demo: Remove use of deprecated GtkAlignment 140 141 https://bugs.freedesktop.org/show_bug.cgi?id=88788 142 143 glib/demo/annots.c | 23 +++++++++++--------- 144 glib/demo/forms.c | 23 +++++++++++--------- 145 glib/demo/info.cc | 18 +++++++++------ 146 glib/demo/main.c | 12 +--------- 147 glib/demo/page.c | 34 ++++++++++++++++++----------- 148 glib/demo/text.c | 18 +++++++++------ 149 glib/demo/utils.c | 64 150 +++++++++++++++++++++++++++++++----------------------- 151 7 files changed, 107 insertions(+), 85 deletions(-) 152 153 commit 49e33e1213a7957d4814656960bf269abcabc7c3 154 Author: Hib Eris <hib@hiberis.nl> 155 Date: Sun Jan 25 12:21:41 2015 +0100 156 157 glib-demo: Remove deprecated use of gtk_tree_view_set_rules_hint() 158 159 The use of rules-hint is deprecated in gtk because it is 160 considered bad application API and is not really usefull. 161 162 See 163 https://git.gnome.org/browse/gtk+/commit/?id=0ed766ec866a2da7e3db05b1db2fc2519d6b1cdc 164 165 https://bugs.freedesktop.org/show_bug.cgi?id=88788 166 167 glib/demo/attachments.c | 1 - 168 glib/demo/find.c | 1 - 169 glib/demo/fonts.c | 1 - 170 glib/demo/transitions.c | 1 - 171 4 files changed, 4 deletions(-) 172 173 commit 70f3c5ff0010775e5fcd590db1b8d475694fe3a4 174 Author: William Bader <williambader@hotmail.com> 175 Date: Sat Jul 18 16:36:30 2015 +0200 176 177 Updated patch to add configure --enable-build-type 178 179 Bug #90796 180 181 configure.ac | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 182 1 file changed, 52 insertions(+) 183 184 commit 1aa2f6e8a41a6a86dc02bf7c5cbc62355e780961 185 Author: Albert Astals Cid <aacid@kde.org> 186 Date: Fri Jul 17 00:40:56 2015 +0200 187 188 Silly micro optimization: Move vars inside case {} 189 190 poppler/SplashOutputDev.cc | 19 ++++++++++++------- 191 1 file changed, 12 insertions(+), 7 deletions(-) 192 193 commit 705615f7569bbadb555bbf45c15c7c01f1690db5 194 Author: Albert Astals Cid <aacid@kde.org> 195 Date: Fri Jul 17 00:38:58 2015 +0200 196 197 More typo fix 198 199 poppler/Catalog.cc | 2 +- 200 1 file changed, 1 insertion(+), 1 deletion(-) 201 202 commit 3b6b3fefe97b885e42966fece84a123fc4671b20 203 Author: William Bader <williambader@hotmail.com> 204 Date: Fri Jul 17 00:37:46 2015 +0200 205 206 [Splash] Fix wrong writes on non rgb outputs 207 208 Bug #90570 209 210 poppler/SplashOutputDev.cc | 52 211 +++++++++++++++++++++++++++++++++++++++++++++- 212 1 file changed, 51 insertions(+), 1 deletion(-) 213 214 commit 885b23bfd16a3e4970a52956493e92a160b2d0a8 215 Author: Dmytro Morgun <lztoad@gmail.com> 216 Date: Fri Jul 17 00:30:08 2015 +0200 217 218 GlobalParamsWin bug/fixes 219 220 Bug #91053 221 222 poppler/GlobalParamsWin.cc | 57 223 ++++++++++++++++++++++++++-------------------- 224 1 file changed, 32 insertions(+), 25 deletions(-) 225 226 commit 0ce4da8ab16b4a5497688a6cf86175aaec0f585f 227 Author: Albert Astals Cid <aacid@kde.org> 228 Date: Wed Jul 15 23:59:11 2015 +0200 229 230 Make sure pageRootRef is a ref before using it 231 232 Bug #91344 233 234 poppler/Catalog.cc | 32 ++++++++++++++++++-------------- 235 1 file changed, 18 insertions(+), 14 deletions(-) 236 237 commit b71431513b45f8a1aa4154332dae56af241258f8 238 Author: Albert Astals Cid <aacid@kde.org> 239 Date: Wed Jul 15 13:10:27 2015 +0200 240 241 Typo fix in warning 242 243 poppler/Catalog.cc | 2 +- 244 1 file changed, 1 insertion(+), 1 deletion(-) 245 246 commit ccd780f9504f5b077ea12370fd5380ff7da5cd23 247 Author: Dmytro Morgun <lztoad@gmail.com> 248 Date: Wed Jul 15 00:26:55 2015 +0200 249 250 [Windows] remove ifndef 251 252 splash/SplashFontEngine.cc | 9 +-------- 253 1 file changed, 1 insertion(+), 8 deletions(-) 254 255 commit 2ed8465074c4fc2c88f745b29bdae92410751327 256 Author: William Bader <williambader@hotmail.com> 257 Date: Wed Jul 15 00:07:48 2015 +0200 258 259 Allow configuring SPLASH_CMYK support from cmake/configure 260 261 Bug #90795 262 263 CMakeLists.txt | 4 ++++ 264 config.h.cmake | 3 +++ 265 configure.ac | 7 +++++++ 266 poppler/SplashOutputDev.cc | 4 ++-- 267 qt4/src/poppler-document.cc | 3 ++- 268 qt4/src/poppler-page.cc | 4 ++-- 269 qt5/src/poppler-document.cc | 3 ++- 270 qt5/src/poppler-page.cc | 4 ++-- 271 splash/Splash.cc | 2 +- 272 splash/SplashBitmap.cc | 4 ++-- 273 10 files changed, 27 insertions(+), 11 deletions(-) 274 275 commit 334dc56f2f9adf4daa33c20ce034a5b1f8259baf 276 Author: Albert Astals Cid <aacid@kde.org> 277 Date: Sun Jul 12 23:29:30 2015 +0200 278 279 [qt] KeepAlphaChannel -> IgnorePaperColor 280 281 qt4/src/poppler-page.cc | 13 ++++++------- 282 qt4/src/poppler-qt4.h | 4 ++-- 283 qt5/src/poppler-page.cc | 13 ++++++------- 284 qt5/src/poppler-qt5.h | 4 ++-- 285 4 files changed, 16 insertions(+), 18 deletions(-) 286 287 commit 2a1363a4a3129fe4b5e4fae1018dc8919a2d796a 288 Author: Albert Astals Cid <aacid@kde.org> 289 Date: Sun Jul 12 23:22:32 2015 +0200 290 291 Update (C) 292 293 splash/SplashBitmap.cc | 1 + 294 splash/SplashBitmap.h | 1 + 295 2 files changed, 2 insertions(+) 296 297 commit e903b2364f55c4f6417d826ab85dcb60cd240563 298 Author: Albert Astals Cid <aacid@kde.org> 299 Date: Sun Jul 12 23:20:20 2015 +0200 300 301 [qt] fix spacing in header 302 303 qt4/src/poppler-qt4.h | 4 ++-- 304 qt5/src/poppler-qt5.h | 4 ++-- 305 2 files changed, 4 insertions(+), 4 deletions(-) 306 307 commit 810c659faea542c3bd6e9c48c9a7c60b886a9269 308 Author: Adam Reichold <adam.reichold@t-online.de> 309 Date: Fri Jul 3 00:31:56 2015 +0200 310 311 Switch default image format of Qt frontends 312 313 This changes the Poppler::Page::renderToImage method w.r.t. to 314 the image 315 formats used to render using Splash, i.e. the default will be RGB8. If 316 overprint preview is requested, DeviceN8 will be used and converted to 317 XBGR8 for display. If the internal alpha channel is requested, 318 XBGR8 will 319 be used and augmented by Splash's separate alpha channel. 320 321 This yields some improvements w.r.t. to rendering including alpha 322 blending 323 with the paper colour, i.e. synthetic benchmarks using structurally 324 simple 325 documents yield more than two percent improvement. 326 327 qt4/src/poppler-page.cc | 115 328 +++++++++++++++++++++++++++++------------------- 329 qt5/src/poppler-page.cc | 114 330 ++++++++++++++++++++++++++++------------------- 331 2 files changed, 138 insertions(+), 91 deletions(-) 332 333 commit 8fea54e48ec9ba35122c565f761e7e7f016a34f9 334 Author: Adam Reichold <adam.reichold@t-online.de> 335 Date: Thu Jul 2 21:08:38 2015 +0200 336 337 Improve efficiency of Poppler::Page::renderToImage 338 339 Improves the efficiency of rendering into a QImage using 340 the Splash output device by removing a copy of the raw bitmap data 341 since Qt5 will properly free this data using a function supplied 342 during construction, i.e. in this case gfree. 343 344 This improves performance in synthentic rendering benchmarks 345 by approximately four percent and reduces the maximum working 346 set size. 347 348 qt5/src/poppler-page.cc | 7 +++---- 349 1 file changed, 3 insertions(+), 4 deletions(-) 350 351 commit 09db5a71fff4b7a0ed1d5d7e76c8270e2f6e9a8d 352 Author: Adam Reichold <adam.reichold@t-online.de> 353 Date: Thu Jul 2 21:02:59 2015 +0200 354 355 Add KeepAlphaChannel render flag to Qt frontends 356 357 Adds a new render flag which will indicate that the image return by 358 Poppler::Page::renderToImage will not be opaque and alpha blended with 359 the paper colour, but retain its actually background transparency. 360 361 This improves performance in synthentic rendering benchmarks by almost 362 five percent and the additional alpha blending that is then done 363 by the 364 consuming application is often a hardware-accellerated operation. 365 366 qt4/src/poppler-page.cc | 6 ++++-- 367 qt4/src/poppler-qt4.h | 3 ++- 368 qt5/src/poppler-page.cc | 6 ++++-- 369 qt5/src/poppler-qt5.h | 3 ++- 370 4 files changed, 12 insertions(+), 6 deletions(-) 371 372 commit d604a075c6b171d5c3fe26c146d3469c4bc0af3f 373 Author: Adam Reichold <adam.reichold@t-online.de> 374 Date: Thu Jul 2 21:00:16 2015 +0200 375 376 Make SplashBitmap XBGR transfer alpha channel 377 378 Adds an option to SplashBitmap::convertToXBGR and 379 SplashBitmap::getXBGRLine 380 so that both optionally transfer Splash's internal alpha channel 381 into the 382 fourth component of the resulting bitmap data. 383 384 splash/SplashBitmap.cc | 27 ++++++++++++++++++++++----- 385 splash/SplashBitmap.h | 4 ++-- 386 2 files changed, 24 insertions(+), 7 deletions(-) 387 388 commit 17adfc848f99a5c5bfad35c94289ccf03fba1a16 389 Author: Adam Reichold <adamreichold@myopera.com> 390 Date: Sun Jul 12 17:05:24 2015 +0200 391 392 Adjust memory layout computation of GooString 393 394 GooString uses the small string optimization but the static buffer 395 size is 396 hard-coded and hence the final object size becomes dependent on 397 architecture. 398 This adds a helper class to compute the memory layout at compile 399 time so that 400 the target object size of e.g. 32 or another multiple of 16 is 401 achieved. 402 403 This also adds an overload so that the C string returned by 404 GooString's 405 getCString method respect the constness of this and fixes a constness 406 issue 407 in the lexer tests. 408 409 goo/GooString.h | 24 ++++++++++++++++-------- 410 qt4/tests/check_lexer.cpp | 2 +- 411 qt5/tests/check_lexer.cpp | 2 +- 412 3 files changed, 18 insertions(+), 10 deletions(-) 413 414 commit d1720740f3381f489f1ee83ce1ce53e73aafd537 415 Author: Albert Astals Cid <aacid@kde.org> 416 Date: Wed Jul 8 23:22:13 2015 +0200 417 418 Poppler 0.34 419 420 CMakeLists.txt | 4 ++-- 421 NEWS | 13 +++++++++++++ 422 configure.ac | 2 +- 423 poppler/Makefile.am | 2 +- 424 qt4/src/Doxyfile | 2 +- 425 qt5/src/Doxyfile | 2 +- 426 6 files changed, 19 insertions(+), 6 deletions(-) 427 428 commit 2fc1f540754391ffa87d7fe9f3438e134d821207 429 Author: Thomas Freitag <Thomas.Freitag@alfa.de> 430 Date: Tue Jul 7 18:48:51 2015 +0200 431 432 [Splash] Fix crash in PDF with nested softmasks 433 434 Bug #91240 435 436 poppler/SplashOutputDev.cc | 20 ++++++++++++-------- 437 1 file changed, 12 insertions(+), 8 deletions(-) 438 439 commit 0b8919f19dd501c9962bca05c9b0559464e923c3 440 Author: Dmytro Morgun <lztoad@gmail.com> 441 Date: Mon Jul 6 00:28:27 2015 +0200 442 443 Fix pedantic memory leak 444 445 poppler/StructElement.cc | 15 +++++++++++++++ 446 1 file changed, 15 insertions(+) 447 448 commit 2ef22af960d3d800087209fea047009a8419134c 449 Author: Albert Astals Cid <aacid@kde.org> 450 Date: Sun Jul 5 16:03:57 2015 +0200 451 452 [cmake] Make sure ENABLE_LIBOPENJPEG is either 0 or 1 453 454 Otherwise if it was auto it gets translated to 1 for the cmakedefine 455 boolean 456 which is wrong when the auto ends up meaning "i din't find it" 457 458 CMakeLists.txt | 2 ++ 459 1 file changed, 2 insertions(+) 460 461 commit 50455bcf4f1644060b2187d4e60c3798793041cc 462 Author: Tamas Szekeres <szekerest@gmail.com> 463 Date: Fri Jul 3 20:24:01 2015 +0200 464 465 std::max/min need <algorithm> 466 467 Bug #88511 468 469 cpp/poppler-font.cpp | 3 +++ 470 cpp/poppler-global.cpp | 3 +++ 471 poppler/Annot.cc | 2 ++ 472 poppler/SplashOutputDev.cc | 2 ++ 473 4 files changed, 10 insertions(+) 474 475 commit 346fc70dbf2803e23e70b093401aa2cda216492b 476 Author: Albert Astals Cid <aacid@kde.org> 477 Date: Fri Jul 3 20:19:01 2015 +0200 478 479 Forgot the (C) 480 481 poppler/PSOutputDev.cc | 1 + 482 1 file changed, 1 insertion(+) 483 484 commit df09c1a84dfe80d2e6cfde3308c79da5b2ea7428 485 Author: Marek Kasik <mkasik@redhat.com> 486 Date: Fri Jul 3 20:14:23 2015 +0200 487 488 Embed Type1 fonts to PostScript files correctly 489 490 Remove PFB headers from embedded Type1 fonts 491 before embedding them into a PostScript file. 492 493 Bug #19747 494 495 poppler/PSOutputDev.cc | 57 496 +++++++++++++++++++++++++++++++++++++++++++------- 497 1 file changed, 50 insertions(+), 7 deletions(-) 498 499 commit 11f117cc71641b89783b207232171f850a2b64ff 500 Author: Carlos Garcia Campos <carlosgc@gnome.org> 501 Date: Thu Jun 4 10:51:36 2015 +0200 502 503 regtest: Disable pretty diffs for text files in HTML reports 504 505 difflib is entering in an infinite loop with some files, so disable it 506 for now. We need to either fix that somehow or find a different way to 507 generate pretty diffs of text files. 508 509 regtest/HTMLReport.py | 7 +++++-- 510 1 file changed, 5 insertions(+), 2 deletions(-) 511 512 commit 3db4cb6f07229e26405bfb512c626a272f6351f5 513 Author: Thomas Freitag <Thomas.Freitag@alfa.de> 514 Date: Sun May 24 18:41:30 2015 +0200 515 516 Splash: Speed up of rendering icc based images 517 518 Bug #90171 519 520 poppler/SplashOutputDev.cc | 142 521 +++++++++++++++++++++++++++++++++++++++++++-- 522 poppler/SplashOutputDev.h | 8 ++- 523 splash/Splash.cc | 17 ++++-- 524 splash/Splash.h | 9 ++- 525 4 files changed, 163 insertions(+), 13 deletions(-) 526 527 commit c50720dcc9e15516e0e19072c0df03fbdee63dec 528 Author: Adrian Johnson <ajohnson@redneon.com> 529 Date: Fri May 22 21:44:55 2015 +0930 530 531 glib: update new symbols section 532 533 glib/reference/poppler-docs.sgml | 8 ++++++++ 534 1 file changed, 8 insertions(+) 535 536 commit b271a19ec30b20bc11f2240ae6b96672e3cafafb 537 Author: Albert Astals Cid <aacid@kde.org> 538 Date: Thu May 14 21:56:47 2015 +0200 539 540 Poppler 0.33 541 542 CMakeLists.txt | 4 ++-- 543 NEWS | 25 +++++++++++++++++++++++++ 544 configure.ac | 2 +- 545 cpp/Doxyfile | 2 +- 546 glib/CMakeLists.txt | 2 +- 547 glib/Makefile.am | 2 +- 548 poppler/Makefile.am | 2 +- 549 qt4/src/Doxyfile | 2 +- 550 qt5/src/Doxyfile | 2 +- 551 9 files changed, 34 insertions(+), 9 deletions(-) 552 1 553 commit 2b2fb719aa5ffe32fbc3fb500444b1643b1c6099 2 554 Author: Albert Astals Cid <aacid@kde.org> -
TabularUnified poppler/vendor/current/NEWS ¶
r1150 r1159 1 Release 0.35.0 2 core: 3 * Fix assert in broken file. Bug #91344 4 * Adjust memory layout computation of GooString 5 * Make SplashBitmap XBGR transfer alpha channel 6 * Splash: Fix wrong writes on non rgb outputs. Bug #90570 7 * Splash: remove ifndef in Windows code 8 * GlobalParamsWin bugfixes. Bug #91053 9 10 qt4: 11 * Switch default image format 12 * Add IgnorePaperColor render flag 13 14 qt5: 15 * Improve efficiency of Poppler::Page::renderToImage 16 * Switch default image format 17 * Add IgnorePaperColor render flag 18 19 build system: 20 * Allow configuring SPLASH_CMYK support 21 * Add configure --enable-build-type. Bug #90796 22 23 glib: 24 * Explicitly link against pthread 25 * Deprecation fixes 26 27 utils: 28 * pdftocairo: Fix cast to pointer from integer of different size on win64 29 30 Release 0.34.0 31 core: 32 * Splash: Fix crash in PDF with nested softmasks. Bug #91240 33 * Splash: Speed up of rendering icc based images. Bug #90171 34 * PSOutputDev: Embed Type1 fonts to PostScript files correctly. Bug #19747 35 * Fix pedantic memory leak 36 37 glib: 38 * update new symbols section 39 40 build system: 41 * cmake: Make sure ENABLE_LIBOPENJPEG is either 0 or 1 42 1 43 Release 0.33.0 2 44 core: -
TabularUnified poppler/vendor/current/config.h.cmake ¶
r937 r1159 174 174 /* Support for curl based doc builder is compiled in. */ 175 175 #cmakedefine POPPLER_HAS_CURL_SUPPORT 1 176 177 /* Include support for CMYK rasterization */ 178 #cmakedefine SPLASH_CMYK 1 176 179 177 180 /* Define to 1 if you have the ANSI C header files. */ -
TabularUnified poppler/vendor/current/config.h.in ¶
r1019 r1159 197 197 your system. */ 198 198 #undef PTHREAD_CREATE_JOINABLE 199 200 /* Include support for CMYK rasterization */ 201 #undef SPLASH_CMYK 199 202 200 203 /* Define to 1 if you have the ANSI C header files. */ -
TabularUnified poppler/vendor/current/configure ¶
r1151 r1159 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.69 for poppler 0.3 3.0.3 # Generated by GNU Autoconf 2.69 for poppler 0.35.0. 4 4 # 5 5 # Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=poppler>. … … 592 592 PACKAGE_NAME='poppler' 593 593 PACKAGE_TARNAME='poppler' 594 PACKAGE_VERSION='0.3 3.0'595 PACKAGE_STRING='poppler 0.3 3.0'594 PACKAGE_VERSION='0.35.0' 595 PACKAGE_STRING='poppler 0.35.0' 596 596 PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=poppler' 597 597 PACKAGE_URL='' … … 909 909 enable_libtool_lock 910 910 enable_xpdf_headers 911 enable_build_type 911 912 enable_single_precision 912 913 enable_fixedpoint 914 enable_cmyk 913 915 enable_relocatable 914 916 with_x … … 1529 1531 # This message is too long to be a string in the A/UX 3.1 sh. 1530 1532 cat <<_ACEOF 1531 \`configure' configures poppler 0.3 3.0 to adapt to many kinds of systems.1533 \`configure' configures poppler 0.35.0 to adapt to many kinds of systems. 1532 1534 1533 1535 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1603 1605 if test -n "$ac_init_help"; then 1604 1606 case $ac_init_help in 1605 short | recursive ) echo "Configuration of poppler 0.3 3.0:";;1607 short | recursive ) echo "Configuration of poppler 0.35.0:";; 1606 1608 esac 1607 1609 cat <<\_ACEOF … … 1623 1625 --disable-libtool-lock avoid locking (might break parallel builds) 1624 1626 --enable-xpdf-headers Install unsupported xpdf headers. 1627 --enable-build-type=[relwithdebinfo/release/debug/debugfull/profile] 1628 Build with options similar to 'cmake 1629 -DCMAKE_BUILD_TYPE=' values. 1625 1630 --enable-single-precision use single precision arithmetic (instead of double precision) in the Splash backend 1626 1631 --enable-fixedpoint use fixed point (instead of double precision) arithmetic in the Splash backend 1632 --enable-cmyk Include support for CMYK rasterization 1627 1633 --disable-relocatable Hardcode the poppler library location (on Windows). 1628 1634 --enable-libopenjpeg=[auto/openjpeg1/openjpeg2/none] … … 1819 1825 if $ac_init_version; then 1820 1826 cat <<\_ACEOF 1821 poppler configure 0.3 3.01827 poppler configure 0.35.0 1822 1828 generated by GNU Autoconf 2.69 1823 1829 … … 2513 2519 running configure, to aid debugging if configure makes a mistake. 2514 2520 2515 It was created by poppler $as_me 0.3 3.0, which was2521 It was created by poppler $as_me 0.35.0, which was 2516 2522 generated by GNU Autoconf 2.69. Invocation command line was 2517 2523 … … 3377 3383 # Define the identity of the package. 3378 3384 PACKAGE='poppler' 3379 VERSION='0.3 3.0'3385 VERSION='0.35.0' 3380 3386 3381 3387 … … 17773 17779 17774 17780 cat >>confdefs.h <<_ACEOF 17775 #define POPPLER_VERSION "0.3 3.0"17781 #define POPPLER_VERSION "0.35.0" 17776 17782 _ACEOF 17777 17783 … … 18237 18243 18238 18244 18245 18246 # Check whether --enable-build-type was given. 18247 if test "${enable_build_type+set}" = set; then : 18248 enableval=$enable_build_type; enable_build_type=no; 18249 case "$enableval" in 18250 relwithdebinfo|release|debug|debugfull|profile) enable_build_type="$enableval" ;; 18251 *) as_fn_error $? "bad value $enableval for --enable-build-type option. 18252 Options are relwithdebinfo, release, debug, debugfull, and profile." "$LINENO" 5 ;; 18253 esac 18254 else 18255 enable_build_type=no 18256 fi 18257 18258 18259 if test "x$GCC" = "xyes"; then 18260 case "$enable_build_type" in 18261 relwithdebinfo) 18262 CFLAGS="-O2 -g $CFLAGS" 18263 CXXFLAGS="-O2 -g $CXXFLAGS" 18264 ;; 18265 release) 18266 CFLAGS="-O2 $CFLAGS -g0 -DNDEBUG" 18267 CXXFLAGS="-O2 $CXXFLAGS -g0 -DNDEBUG" 18268 ;; 18269 debug) 18270 CFLAGS="-O2 -g $CFLAGS -fno-reorder-blocks -fno-schedule-insns -fno-inline" 18271 CXXFLAGS="-O2 -g $CXXFLAGS -fno-reorder-blocks -fno-schedule-insns -fno-inline" 18272 ;; 18273 debugfull) 18274 CFLAGS="$CFLAGS -g3 -fno-inline" 18275 CXXFLAGS="$CXXFLAGS -g3 -fno-inline" 18276 ;; 18277 profile) 18278 CFLAGS="$CFLAGS -g3 -fno-inline -ftest-coverage -fprofile-arcs" 18279 CXXFLAGS="$CXXFLAGS -g3 -fno-inline -ftest-coverage -fprofile-arcs" 18280 LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage -lgcov" 18281 ;; 18282 *) 18283 enable_build_type=no 18284 ;; 18285 esac 18286 else 18287 case "$enable_build_type" in 18288 relwithdebinfo|release|debug|debugfull|profile) 18289 echo " Warning: --enable-build-type ignored for non-gcc compiler." 18290 ;; 18291 esac 18292 enable_build_type=no 18293 fi 18294 18239 18295 # Check whether --enable-single-precision was given. 18240 18296 if test "${enable_single_precision+set}" = set; then : … … 18249 18305 enableval=$enable_fixedpoint; 18250 18306 $as_echo "#define USE_FIXEDPOINT 1" >>confdefs.h 18307 18308 fi 18309 18310 18311 # Check whether --enable-cmyk was given. 18312 if test "${enable_cmyk+set}" = set; then : 18313 enableval=$enable_cmyk; 18314 $as_echo "#define SPLASH_CMYK 1" >>confdefs.h 18251 18315 18252 18316 fi … … 24967 25031 POPPLER_MAJOR_VERSION=0 24968 25032 24969 POPPLER_MINOR_VERSION=3 325033 POPPLER_MINOR_VERSION=35 24970 25034 24971 25035 POPPLER_MICRO_VERSION=0 24972 25036 24973 POPPLER_VERSION=0.3 3.025037 POPPLER_VERSION=0.35.0 24974 25038 24975 25039 … … 25623 25687 # values after options handling. 25624 25688 ac_log=" 25625 This file was extended by poppler $as_me 0.3 3.0, which was25689 This file was extended by poppler $as_me 0.35.0, which was 25626 25690 generated by GNU Autoconf 2.69. Invocation command line was 25627 25691 … … 25689 25753 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 25690 25754 ac_cs_version="\\ 25691 poppler config.status 0.3 3.025755 poppler config.status 0.35.0 25692 25756 configured by $0, generated by GNU Autoconf 2.69, 25693 25757 with options \\"\$ac_cs_config\\" … … 27775 27839 echo " font configuration: $with_font_configuration" 27776 27840 echo " splash output: $enable_splash_output" 27841 if test x$enable_cmyk = xyes;then 27842 echo " with CMYK support" 27843 fi 27777 27844 echo " cairo output: $use_cairo" 27778 27845 echo " qt4 wrapper: $enable_poppler_qt4" … … 27803 27870 fi 27804 27871 fi 27872 if test x$enable_build_type != xno;then 27873 echo " build type: $enable_build_type" 27874 fi 27805 27875 echo " command line utils: $enable_utils" 27806 27876 echo " test data dir: $TESTDATADIR" -
TabularUnified poppler/vendor/current/configure.ac ¶
r1150 r1159 1 1 m4_define([poppler_version_major],[0]) 2 m4_define([poppler_version_minor],[3 3])2 m4_define([poppler_version_minor],[35]) 3 3 m4_define([poppler_version_micro],[0]) 4 4 m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) … … 72 72 AM_CONDITIONAL(ENABLE_XPDF_HEADERS, test x$enable_xpdf_headers = xyes) 73 73 74 dnl ##### Emulate cmake -DCMAKE_BUILD_TYPE=Release using options from cmake/modules/PopplerMacros.cmake 75 76 AC_ARG_ENABLE(build-type, 77 AC_HELP_STRING([--enable-build-type=@<:@relwithdebinfo/release/debug/debugfull/profile@:>@], 78 [Build with options similar to 'cmake -DCMAKE_BUILD_TYPE=' values.]), 79 [enable_build_type=no; 80 case "$enableval" in 81 relwithdebinfo|release|debug|debugfull|profile) enable_build_type="$enableval" ;; 82 *) AC_MSG_ERROR([bad value $enableval for --enable-build-type option. 83 Options are relwithdebinfo, release, debug, debugfull, and profile.]) ;; 84 esac], 85 enable_build_type=no) 86 87 if test "x$GCC" = "xyes"; then 88 case "$enable_build_type" in 89 relwithdebinfo) 90 CFLAGS="-O2 -g $CFLAGS" 91 CXXFLAGS="-O2 -g $CXXFLAGS" 92 ;; 93 release) 94 CFLAGS="-O2 $CFLAGS -g0 -DNDEBUG" 95 CXXFLAGS="-O2 $CXXFLAGS -g0 -DNDEBUG" 96 ;; 97 debug) 98 CFLAGS="-O2 -g $CFLAGS -fno-reorder-blocks -fno-schedule-insns -fno-inline" 99 CXXFLAGS="-O2 -g $CXXFLAGS -fno-reorder-blocks -fno-schedule-insns -fno-inline" 100 ;; 101 debugfull) 102 CFLAGS="$CFLAGS -g3 -fno-inline" 103 CXXFLAGS="$CXXFLAGS -g3 -fno-inline" 104 ;; 105 profile) 106 CFLAGS="$CFLAGS -g3 -fno-inline -ftest-coverage -fprofile-arcs" 107 CXXFLAGS="$CXXFLAGS -g3 -fno-inline -ftest-coverage -fprofile-arcs" 108 LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage -lgcov" 109 ;; 110 *) 111 enable_build_type=no 112 ;; 113 esac 114 else 115 case "$enable_build_type" in 116 relwithdebinfo|release|debug|debugfull|profile) 117 echo " Warning: --enable-build-type ignored for non-gcc compiler." 118 ;; 119 esac 120 enable_build_type=no 121 fi 122 74 123 AC_ARG_ENABLE(single-precision, 75 124 [ --enable-single-precision use single precision arithmetic (instead of double precision) in the Splash backend], … … 79 128 [ --enable-fixedpoint use fixed point (instead of double precision) arithmetic in the Splash backend], 80 129 AC_DEFINE(USE_FIXEDPOINT, [1], [Use fixed point arithmetic in the Splash backend])) 130 131 AC_ARG_ENABLE(cmyk, 132 [ --enable-cmyk Include support for CMYK rasterization], 133 AC_DEFINE(SPLASH_CMYK, [1], [Include support for CMYK rasterization])) 81 134 82 135 dnl Relocation support … … 939 992 echo " font configuration: $with_font_configuration" 940 993 echo " splash output: $enable_splash_output" 994 if test x$enable_cmyk = xyes;then 995 echo " with CMYK support" 996 fi 941 997 echo " cairo output: $use_cairo" 942 998 echo " qt4 wrapper: $enable_poppler_qt4" … … 967 1023 fi 968 1024 fi 1025 if test x$enable_build_type != xno;then 1026 echo " build type: $enable_build_type" 1027 fi 969 1028 echo " command line utils: $enable_utils" 970 1029 echo " test data dir: $TESTDATADIR" -
TabularUnified poppler/vendor/current/cpp/poppler-font.cpp ¶
r721 r1159 1 1 /* 2 2 * Copyright (C) 2009, Pino Toscano <pino@kde.org> 3 * Copyright (C) 2015, Tamas Szekeres <szekerest@gmail.com> 3 4 * 4 5 * This program is free software; you can redistribute it and/or modify … … 23 24 #include "FontInfo.h" 24 25 26 #include <algorithm> 27 25 28 using namespace poppler; 26 29 -
TabularUnified poppler/vendor/current/cpp/poppler-global.cpp ¶
r1019 r1159 3 3 * Copyright (C) 2010, Hib Eris <hib@hiberis.nl> 4 4 * Copyright (C) 2014, Hans-Peter Deifel <hpdeifel@gmx.de> 5 * Copyright (C) 2015, Tamas Szekeres <szekerest@gmail.com> 5 6 * 6 7 * This program is free software; you can redistribute it and/or modify … … 22 23 23 24 #include "poppler-private.h" 25 26 #include <algorithm> 24 27 25 28 #include <cerrno> -
TabularUnified poppler/vendor/current/cpp/poppler-version.h ¶
r1150 r1159 22 22 #include "poppler-global.h" 23 23 24 #define POPPLER_VERSION "0.3 3.0"24 #define POPPLER_VERSION "0.35.0" 25 25 #define POPPLER_VERSION_MAJOR 0 26 #define POPPLER_VERSION_MINOR 3 326 #define POPPLER_VERSION_MINOR 35 27 27 #define POPPLER_VERSION_MICRO 0 28 28 -
TabularUnified poppler/vendor/current/glib/Makefile.am ¶
r1150 r1159 78 78 $(top_builddir)/poppler/libpoppler.la \ 79 79 $(top_builddir)/poppler/libpoppler-cairo.la \ 80 $(PTHREAD_LIBS) \ 80 81 $(POPPLER_GLIB_LIBS) \ 81 82 $(FREETYPE_LIBS) -
TabularUnified poppler/vendor/current/glib/Makefile.in ¶
r1150 r1159 137 137 $(top_builddir)/poppler/libpoppler.la \ 138 138 $(top_builddir)/poppler/libpoppler-cairo.la \ 139 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 139 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ 140 $(am__DEPENDENCIES_1) 140 141 am__objects_1 = libpoppler_glib_la-poppler-enums.lo 141 142 am_libpoppler_glib_la_OBJECTS = $(am__objects_1) \ … … 556 557 $(top_builddir)/poppler/libpoppler.la \ 557 558 $(top_builddir)/poppler/libpoppler-cairo.la \ 559 $(PTHREAD_LIBS) \ 558 560 $(POPPLER_GLIB_LIBS) \ 559 561 $(FREETYPE_LIBS) -
TabularUnified poppler/vendor/current/glib/demo/annots.c ¶
r937 r1159 459 459 PgdAnnotsDemo *demo) 460 460 { 461 #if GTK_CHECK_VERSION(3,4,0)462 461 gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (button), &demo->annot_color); 463 #else464 gtk_color_button_get_rgba (GTK_COLOR_BUTTON (button), &demo->annot_color);465 #endif466 462 } 467 463 … … 620 616 PopplerAnnot *annot) 621 617 { 622 GtkWidget *alignment;623 618 GtkWidget *table; 624 619 gint row = 0; … … 627 622 PopplerRectangle rect; 628 623 629 alignment = gtk_bin_get_child (GTK_BIN (demo->annot_view)); 630 if (alignment) { 631 gtk_container_remove (GTK_CONTAINER (demo->annot_view), alignment); 632 } 633 634 alignment = gtk_alignment_new (0.5, 0.5, 1, 1); 635 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 8, 5); 636 gtk_container_add (GTK_CONTAINER (demo->annot_view), alignment); 637 gtk_widget_show (alignment); 624 table = gtk_bin_get_child (GTK_BIN (demo->annot_view)); 625 if (table) { 626 gtk_container_remove (GTK_CONTAINER (demo->annot_view), table); 627 } 638 628 639 629 if (!annot) … … 641 631 642 632 table = gtk_grid_new (); 633 gtk_widget_set_margin_top (table, 5); 634 gtk_widget_set_margin_bottom (table, 5); 635 #if GTK_CHECK_VERSION(3, 12, 0) 636 gtk_widget_set_margin_start (table, 8); 637 gtk_widget_set_margin_end (table, 5); 638 #else 639 gtk_widget_set_margin_left (table, 8); 640 gtk_widget_set_margin_right (table, 5); 641 #endif 643 642 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 644 643 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 695 694 } 696 695 697 gtk_container_add (GTK_CONTAINER ( alignment), table);696 gtk_container_add (GTK_CONTAINER (demo->annot_view), table); 698 697 gtk_widget_show (table); 699 698 } … … 1334 1333 demo->annot_color.red = 65535; 1335 1334 demo->annot_color.alpha = 1.0; 1336 #if GTK_CHECK_VERSION(3,4,0)1337 1335 gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (button), &demo->annot_color); 1338 #else1339 gtk_color_button_set_rgba (GTK_COLOR_BUTTON (button), &demo->annot_color);1340 #endif1341 1336 g_signal_connect (button, "notify::color", 1342 1337 G_CALLBACK (pgd_annot_color_changed), -
TabularUnified poppler/vendor/current/glib/demo/attachments.c ¶
r937 r1159 83 83 treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model)); 84 84 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), TRUE); 85 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview), TRUE);86 85 87 86 renderer = gtk_cell_renderer_text_new (); -
TabularUnified poppler/vendor/current/glib/demo/find.c ¶
r660 r1159 454 454 g_object_unref (model); 455 455 demo->treeview = treeview; 456 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview), TRUE);457 456 selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview)); 458 457 gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); -
TabularUnified poppler/vendor/current/glib/demo/fonts.c ¶
r591 r1159 256 256 demo->treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model)); 257 257 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (demo->treeview), FALSE); 258 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (demo->treeview), TRUE);259 258 gtk_tree_selection_set_mode (gtk_tree_view_get_selection (GTK_TREE_VIEW (demo->treeview)), 260 259 GTK_SELECTION_NONE); -
TabularUnified poppler/vendor/current/glib/demo/forms.c ¶
r591 r1159 130 130 PopplerFormField *field) 131 131 { 132 GtkWidget *alignment;133 132 GtkWidget *table; 134 133 PopplerAction *action; … … 137 136 gint row = 0; 138 137 139 alignment = gtk_bin_get_child (GTK_BIN (field_view)); 140 if (alignment) { 141 gtk_container_remove (GTK_CONTAINER (field_view), alignment); 142 } 143 144 alignment = gtk_alignment_new (0.5, 0.5, 1, 1); 145 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5); 146 gtk_container_add (GTK_CONTAINER (field_view), alignment); 147 gtk_widget_show (alignment); 138 table = gtk_bin_get_child (GTK_BIN (field_view)); 139 if (table) { 140 gtk_container_remove (GTK_CONTAINER (field_view), table); 141 } 148 142 149 143 if (!field) … … 151 145 152 146 table = gtk_grid_new (); 147 gtk_widget_set_margin_top (table, 5); 148 gtk_widget_set_margin_bottom (table, 5); 149 #if GTK_CHECK_VERSION(3, 12, 0) 150 gtk_widget_set_margin_start (table, 12); 151 gtk_widget_set_margin_end (table, 5); 152 #else 153 gtk_widget_set_margin_left (table, 12); 154 gtk_widget_set_margin_right (table, 5); 155 #endif 153 156 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 154 157 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 252 255 } 253 256 254 gtk_container_add (GTK_CONTAINER ( alignment), table);257 gtk_container_add (GTK_CONTAINER (field_view), table); 255 258 gtk_widget_show (table); 256 259 } -
TabularUnified poppler/vendor/current/glib/demo/info.cc ¶
r591 r1159 144 144 GtkWidget *vbox; 145 145 GtkWidget *label; 146 GtkWidget *frame, * alignment, *table;146 GtkWidget *frame, *table; 147 147 gchar *str; 148 148 gchar *title, *format, *author, *subject; … … 197 197 gtk_frame_set_label_widget (GTK_FRAME (frame), label); 198 198 gtk_widget_show (label); 199 200 alignment = gtk_alignment_new (0.5, 0.5, 1, 1);201 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5);202 gtk_container_add (GTK_CONTAINER (frame), alignment);203 gtk_widget_show (alignment);204 199 205 200 table = gtk_grid_new (); 201 gtk_widget_set_margin_top (table, 5); 202 gtk_widget_set_margin_bottom (table, 5); 203 #if GTK_CHECK_VERSION(3, 12, 0) 204 gtk_widget_set_margin_start (table, 12); 205 gtk_widget_set_margin_end (table, 5); 206 #else 207 gtk_widget_set_margin_left (table, 12); 208 gtk_widget_set_margin_right (table, 5); 209 #endif 206 210 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 207 211 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 262 266 /* TODO: view_prefs */ 263 267 264 gtk_container_add (GTK_CONTAINER ( alignment), table);268 gtk_container_add (GTK_CONTAINER (frame), table); 265 269 gtk_widget_show (table); 266 270 -
TabularUnified poppler/vendor/current/glib/demo/main.c ¶
r937 r1159 171 171 GtkDialog *dialog; 172 172 GtkWidget *content_area; 173 GtkWidget *entry_container;174 173 GtkWidget *password_entry; 175 174 GtkWidget *hbox, *main_vbox, *vbox, *icon; … … 197 196 gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), 198 197 GTK_RESPONSE_OK, FALSE); 199 gtk_dialog_set_alternative_button_order (dialog,200 GTK_RESPONSE_OK,201 GTK_RESPONSE_CANCEL,202 -1);203 198 204 199 /* Build contents */ … … 210 205 icon = gtk_image_new_from_icon_name ("dialog-password", 211 206 GTK_ICON_SIZE_DIALOG); 212 213 gtk_ misc_set_alignment (GTK_MISC (icon), 0.5, 0.0);207 gtk_widget_set_halign (icon, GTK_ALIGN_CENTER); 208 gtk_widget_set_valign (icon, GTK_ALIGN_START); 214 209 gtk_box_pack_start (GTK_BOX (hbox), icon, FALSE, FALSE, 0); 215 210 gtk_widget_show (icon); … … 220 215 221 216 label = gtk_label_new (NULL); 217 #if GTK_CHECK_VERSION(3, 15, 0) 218 gtk_label_set_xalign (GTK_LABEL (label), 0.0); 219 gtk_label_set_yalign (GTK_LABEL (label), 0.5); 220 #else 222 221 gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); 222 #endif 223 223 gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); 224 224 file_name = g_file_get_basename (uri_file); … … 240 240 241 241 /* The table that holds the entries */ 242 entry_container = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);243 244 gtk_alignment_set_padding (GTK_ALIGNMENT (entry_container),245 0, 0, 0, 0);246 247 gtk_box_pack_start (GTK_BOX (vbox), entry_container,248 FALSE, FALSE, 0);249 gtk_widget_show (entry_container);250 251 242 table = gtk_grid_new (); 252 243 gtk_grid_set_column_spacing (GTK_GRID (table), 12); 253 244 gtk_grid_set_row_spacing (GTK_GRID (table), 6); 254 gtk_ container_add (GTK_CONTAINER (entry_container), table);245 gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); 255 246 gtk_widget_show (table); 256 247 257 248 label = gtk_label_new_with_mnemonic ("_Password:"); 249 #if GTK_CHECK_VERSION(3, 15, 0) 250 gtk_label_set_xalign (GTK_LABEL (label), 0.0); 251 gtk_label_set_yalign (GTK_LABEL (label), 0.5); 252 #else 258 253 gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); 254 #endif 259 255 260 256 password_entry = gtk_entry_new (); -
TabularUnified poppler/vendor/current/glib/demo/page.c ¶
r937 r1159 216 216 GtkWidget *hbox, *page_selector; 217 217 GtkWidget *button; 218 GtkWidget *frame , *alignment;218 GtkWidget *frame; 219 219 GtkWidget *table; 220 220 GtkWidget *label; … … 270 270 gtk_widget_show (label); 271 271 272 alignment = gtk_alignment_new (0.5, 0.5, 1, 1);273 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5);274 gtk_container_add (GTK_CONTAINER (frame), alignment);275 gtk_widget_show (alignment);276 277 272 table = gtk_grid_new (); 273 gtk_widget_set_margin_top (table, 5); 274 gtk_widget_set_margin_bottom (table, 5); 275 #if GTK_CHECK_VERSION(3, 12, 0) 276 gtk_widget_set_margin_start (table, 12); 277 gtk_widget_set_margin_end (table, 5); 278 #else 279 gtk_widget_set_margin_left (table, 12); 280 gtk_widget_set_margin_right (table, 5); 281 #endif 278 282 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 279 283 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 288 292 &(demo->duration), NULL, &row); 289 293 290 gtk_container_add (GTK_CONTAINER ( alignment), table);294 gtk_container_add (GTK_CONTAINER (frame), table); 291 295 gtk_widget_show (table); 292 296 … … 302 306 gtk_widget_show (label); 303 307 304 alignment = gtk_alignment_new (0.5, 0.5, 1, 1);305 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5);306 gtk_container_add (GTK_CONTAINER (frame), alignment);307 gtk_widget_show (alignment);308 309 308 thumnail_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); 309 gtk_widget_set_margin_top (thumnail_box, 5); 310 gtk_widget_set_margin_bottom (thumnail_box, 5); 311 #if GTK_CHECK_VERSION(3, 12, 0) 312 gtk_widget_set_margin_start (thumnail_box, 12); 313 gtk_widget_set_margin_end (thumnail_box, 5); 314 #else 315 gtk_widget_set_margin_left (thumnail_box, 12); 316 gtk_widget_set_margin_right (thumnail_box, 5); 317 #endif 310 318 311 319 demo->thumbnail = gtk_image_new (); … … 318 326 gtk_widget_show (demo->thumbnail_size); 319 327 320 gtk_container_add (GTK_CONTAINER ( alignment), thumnail_box);328 gtk_container_add (GTK_CONTAINER (frame), thumnail_box); 321 329 gtk_widget_show (thumnail_box); 322 330 -
TabularUnified poppler/vendor/current/glib/demo/selections.c ¶
r660 r1159 337 337 338 338 gtk_style_context_get_color (style_context, GTK_STATE_FLAG_SELECTED, &rgba); 339 #if GTK_CHECK_VERSION(3,4,0)340 339 gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (demo->fg_color_button), &rgba); 341 #else342 gtk_color_button_set_rgba (GTK_COLOR_BUTTON (demo->fg_color_button), &rgba);343 #endif344 340 gtk_style_context_get_background_color (style_context, GTK_STATE_FLAG_SELECTED, &rgba); 345 #if GTK_CHECK_VERSION(3,4,0)346 341 gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (demo->bg_color_button), &rgba); 347 #else348 gtk_color_button_set_rgba (GTK_COLOR_BUTTON (demo->bg_color_button), &rgba);349 #endif350 342 } 351 343 … … 466 458 GdkRGBA color; 467 459 468 #if GTK_CHECK_VERSION(3,4,0)469 460 gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (button), &color); 470 #else471 gtk_color_button_get_rgba (GTK_COLOR_BUTTON (button), &color);472 #endif473 461 demo->glyph_color.red = CLAMP ((guint) (color.red * 65535), 0, 65535); 474 462 demo->glyph_color.green = CLAMP ((guint) (color.green * 65535), 0, 65535); … … 483 471 GdkRGBA color; 484 472 485 #if GTK_CHECK_VERSION(3,4,0)486 473 gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (button), &color); 487 #else488 gtk_color_button_get_rgba (GTK_COLOR_BUTTON (button), &color);489 #endif490 474 demo->background_color.red = CLAMP ((guint) (color.red * 65535), 0, 65535); 491 475 demo->background_color.green = CLAMP ((guint) (color.green * 65535), 0, 65535); -
TabularUnified poppler/vendor/current/glib/demo/text.c ¶
r721 r1159 331 331 GtkWidget *swindow, *textview, *treeview; 332 332 GtkTreeSelection *selection; 333 GtkWidget *frame, * alignment, *table;333 GtkWidget *frame, *table; 334 334 GtkWidget *hpaned; 335 335 GtkCellRenderer *renderer; … … 516 516 gtk_widget_show (label); 517 517 518 alignment = gtk_alignment_new (0.5, 0.5, 1, 1);519 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5);520 gtk_container_add (GTK_CONTAINER (frame), alignment);521 gtk_widget_show (alignment);522 523 518 table = gtk_grid_new (); 519 gtk_widget_set_margin_top (table, 5); 520 gtk_widget_set_margin_bottom (table, 5); 521 #if GTK_CHECK_VERSION(3, 12, 0) 522 gtk_widget_set_margin_start (table, 12); 523 gtk_widget_set_margin_end (table, 5); 524 #else 525 gtk_widget_set_margin_left (table, 12); 526 gtk_widget_set_margin_right (table, 5); 527 #endif 524 528 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 525 529 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 534 538 pgd_table_add_property_with_custom_widget (GTK_GRID (table), "<b>Color:</b>", demo->text_color, &row); 535 539 536 gtk_container_add (GTK_CONTAINER ( alignment), table);540 gtk_container_add (GTK_CONTAINER (frame), table); 537 541 gtk_widget_show (table); 538 542 -
TabularUnified poppler/vendor/current/glib/demo/transitions.c ¶
r591 r1159 208 208 treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model)); 209 209 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), TRUE); 210 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview), TRUE);211 210 gtk_tree_selection_set_mode (gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview)), 212 211 GTK_SELECTION_NONE); -
TabularUnified poppler/vendor/current/glib/demo/utils.c ¶
r937 r1159 159 159 new_dest = poppler_document_find_dest (document, dest->named_dest); 160 160 if (new_dest) { 161 GtkWidget *new_table , *alignment;161 GtkWidget *new_table; 162 162 gint new_row = 0; 163 163 164 alignment = gtk_alignment_new (0.5, 0.5, 1, 1);165 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5);166 167 164 new_table = gtk_grid_new (); 165 gtk_widget_set_margin_top (new_table, 5); 166 gtk_widget_set_margin_bottom (new_table, 5); 167 #if GTK_CHECK_VERSION(3, 12, 0) 168 gtk_widget_set_margin_start (new_table, 12); 169 gtk_widget_set_margin_end (new_table, 5); 170 #else 171 gtk_widget_set_margin_left (new_table, 12); 172 gtk_widget_set_margin_right (new_table, 5); 173 #endif 168 174 gtk_grid_set_column_spacing (GTK_GRID (new_table), 6); 169 175 gtk_grid_set_row_spacing (GTK_GRID (new_table), 6); 170 gtk_grid_attach (GTK_GRID(table), alignment, 0, *row, 1, 1);171 gtk_widget_show (alignment);172 176 173 177 pgd_action_view_add_destination (action_view, GTK_GRID (new_table), … … 175 179 poppler_dest_free (new_dest); 176 180 177 gtk_ container_add (GTK_CONTAINER (alignment), new_table);181 gtk_grid_attach (GTK_GRID(table), new_table, 0, *row, 1, 1); 178 182 gtk_widget_show (new_table); 179 183 … … 312 316 PopplerAction *action) 313 317 { 314 GtkWidget *alignment;315 318 GtkWidget *table; 316 319 gint row = 0; 317 320 318 alignment = gtk_bin_get_child (GTK_BIN (action_view)); 319 if (alignment) { 320 gtk_container_remove (GTK_CONTAINER (action_view), alignment); 321 } 322 323 alignment = gtk_alignment_new (0.5, 0.5, 1, 1); 324 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5); 325 gtk_container_add (GTK_CONTAINER (action_view), alignment); 326 gtk_widget_show (alignment); 321 table = gtk_bin_get_child (GTK_BIN (action_view)); 322 if (table) { 323 gtk_container_remove (GTK_CONTAINER (action_view), table); 324 } 327 325 328 326 if (!action) … … 330 328 331 329 table = gtk_grid_new (); 330 gtk_widget_set_margin_top (table, 5); 331 gtk_widget_set_margin_bottom (table, 5); 332 #if GTK_CHECK_VERSION(3, 12, 0) 333 gtk_widget_set_margin_start (table, 12); 334 gtk_widget_set_margin_end (table, 5); 335 #else 336 gtk_widget_set_margin_left (table, 12); 337 gtk_widget_set_margin_right (table, 5); 338 #endif 332 339 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 333 340 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 467 474 } 468 475 469 gtk_container_add (GTK_CONTAINER (a lignment), table);476 gtk_container_add (GTK_CONTAINER (action_view), table); 470 477 gtk_widget_show (table); 471 478 } … … 547 554 PopplerMovie *movie) 548 555 { 549 GtkWidget *alignment;550 556 GtkWidget *table; 551 557 GtkWidget *button; 552 558 gint row = 0; 553 559 554 alignment = gtk_bin_get_child (GTK_BIN (movie_view)); 555 if (alignment) { 556 gtk_container_remove (GTK_CONTAINER (movie_view), alignment); 557 } 558 559 alignment = gtk_alignment_new (0.5, 0.5, 1, 1); 560 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment), 5, 5, 12, 5); 561 gtk_container_add (GTK_CONTAINER (movie_view), alignment); 562 gtk_widget_show (alignment); 560 table = gtk_bin_get_child (GTK_BIN (movie_view)); 561 if (table) { 562 gtk_container_remove (GTK_CONTAINER (movie_view), table); 563 } 563 564 564 565 if (!movie) … … 566 567 567 568 table = gtk_grid_new (); 569 gtk_widget_set_margin_top (table, 5); 570 gtk_widget_set_margin_bottom (table, 5); 571 #if GTK_CHECK_VERSION(3, 12, 0) 572 gtk_widget_set_margin_start (table, 12); 573 gtk_widget_set_margin_end (table, 5); 574 #else 575 gtk_widget_set_margin_left (table, 12); 576 gtk_widget_set_margin_right (table, 5); 577 #endif 568 578 gtk_grid_set_column_spacing (GTK_GRID (table), 6); 569 579 gtk_grid_set_row_spacing (GTK_GRID (table), 6); … … 580 590 gtk_widget_show (button); 581 591 582 gtk_container_add (GTK_CONTAINER ( alignment), table);592 gtk_container_add (GTK_CONTAINER (movie_view), table); 583 593 gtk_widget_show (table); 584 594 } -
TabularUnified poppler/vendor/current/glib/reference/html/annotation-glossary.html ¶
r875 r1159 7 7 <link rel="home" href="index.html" title="Poppler Reference Manual"> 8 8 <link rel="up" href="index.html" title="Poppler Reference Manual"> 9 <link rel="prev" href="api-index-0- 22.html" title="Index of new symbols in 0.22">9 <link rel="prev" href="api-index-0-33.html" title="Index of new symbols in 0.33"> 10 10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)"> 11 11 <link rel="stylesheet" href="style.css" type="text/css"> … … 26 26 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> 27 27 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td> 28 <td><a accesskey="p" href="api-index-0- 22.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>28 <td><a accesskey="p" href="api-index-0-33.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> 29 29 <td><img src="right-insensitive.png" width="16" height="16" border="0"></td> 30 30 </tr></table> -
TabularUnified poppler/vendor/current/glib/reference/html/api-index-0-22.html ¶
r937 r1159 8 8 <link rel="up" href="index.html" title="Poppler Reference Manual"> 9 9 <link rel="prev" href="api-index-0-20.html" title="Index of new symbols in 0.20"> 10 <link rel="next" href="a nnotation-glossary.html" title="Annotation Glossary">10 <link rel="next" href="api-index-0-26.html" title="Index of new symbols in 0.26"> 11 11 <meta name="generator" content="GTK-Doc V1.21 (XML mode)"> 12 12 <link rel="stylesheet" href="style.css" type="text/css"> … … 24 24 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td> 25 25 <td><a accesskey="p" href="api-index-0-20.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> 26 <td><a accesskey="n" href="a nnotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>26 <td><a accesskey="n" href="api-index-0-26.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> 27 27 </tr></table> 28 28 <div class="index"> -
TabularUnified poppler/vendor/current/glib/reference/html/index.html ¶
r1150 r1159 16 16 <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Poppler Reference Manual</p></th></tr></table></div> 17 17 <div><p class="releaseinfo"> 18 for Poppler 0.3 3.018 for Poppler 0.35.0 19 19 20 20 </p></div> … … 76 76 <dt><span class="index"><a href="api-index-0-20.html">Index of new symbols in 0.20</a></span></dt> 77 77 <dt><span class="index"><a href="api-index-0-22.html">Index of new symbols in 0.22</a></span></dt> 78 <dt><span class="index"><a href="api-index-0-26.html">Index of new symbols in 0.26</a></span></dt> 79 <dt><span class="index"><a href="api-index-0-33.html">Index of new symbols in 0.33</a></span></dt> 78 80 <dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt> 79 81 </dl></div> -
TabularUnified poppler/vendor/current/glib/reference/html/poppler-Version-and-Features-Information.html ¶
r1150 r1159 120 120 <div class="refsect2"> 121 121 <a name="POPPLER-MINOR-VERSION:CAPS"></a><h3>POPPLER_MINOR_VERSION</h3> 122 <pre class="programlisting">#define POPPLER_MINOR_VERSION (3 3)122 <pre class="programlisting">#define POPPLER_MINOR_VERSION (35) 123 123 </pre> 124 124 <p>The major version number of the poppler header files (e.g. in poppler version -
TabularUnified poppler/vendor/current/glib/reference/html/poppler.devhelp2 ¶
r1150 r1159 27 27 <sub name="Index of new symbols in 0.20" link="api-index-0-20.html"/> 28 28 <sub name="Index of new symbols in 0.22" link="api-index-0-22.html"/> 29 <sub name="Index of new symbols in 0.26" link="api-index-0-26.html"/> 30 <sub name="Index of new symbols in 0.33" link="api-index-0-33.html"/> 29 31 <sub name="Annotation Glossary" link="annotation-glossary.html"/> 30 32 </chapters> -
TabularUnified poppler/vendor/current/glib/reference/poppler-docs.sgml ¶
r937 r1159 62 62 <xi:include href="xml/api-index-0.22.xml"><xi:fallback /></xi:include> 63 63 </index> 64 <index id="api-index-0-26"> 65 <title>Index of new symbols in 0.26</title> 66 <xi:include href="xml/api-index-0.26.xml"><xi:fallback /></xi:include> 67 </index> 68 <index id="api-index-0-33"> 69 <title>Index of new symbols in 0.33</title> 70 <xi:include href="xml/api-index-0.33.xml"><xi:fallback /></xi:include> 71 </index> 64 72 65 73 <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include> -
TabularUnified poppler/vendor/current/glib/reference/version.xml ¶
r1150 r1159 1 0.3 3.01 0.35.0 -
TabularUnified poppler/vendor/current/goo/GooString.h ¶
r937 r1159 21 21 // Copyright (C) 2012-2014 Fabio D'Urso <fabiodurso@hotmail.it> 22 22 // Copyright (C) 2013 Jason Crain <jason@aquaticape.us> 23 // Copyright (C) 2015 Adam Reichold <adam.reichold@t-online.de> 23 24 // 24 25 // To see a description of the changes please see the Changelog file that … … 115 116 116 117 // Get length. 117 int getLength() { return length; }118 int getLength() const { return length; } 118 119 119 120 // Get C string. 120 char *getCString() const { return s; } 121 char *getCString() { return s; } 122 const char *getCString() const { return s; } 121 123 122 124 // Get <i>th character. 123 char getChar(int i) { return s[i]; }125 char getChar(int i) const { return s[i]; } 124 126 125 127 // Change <i>th character. … … 171 173 GooString& operator=(const GooString &other); 172 174 173 // you can tweak this number for a different speed/memory usage tradeoffs. 174 // In libc malloc() rounding is 16 so it's best to choose a value that 175 // results in sizeof(GooString) be a multiple of 16. 176 // 24 makes sizeof(GooString) to be 32. 177 static const int STR_STATIC_SIZE = 24; 175 // You can tweak the final object size for different time/space tradeoffs. 176 // In libc malloc(), rounding is 16 so it's best to choose a value that 177 // is a multiple of 16. 178 class MemoryLayout { 179 char c[sizeof(char*)]; 180 int i; 181 char* s; 182 }; 183 184 static const int STR_FINAL_SIZE = 32; 185 static const int STR_STATIC_SIZE = STR_FINAL_SIZE - sizeof(MemoryLayout) + sizeof(char*); 178 186 179 187 int roundedSize(int len); -
TabularUnified poppler/vendor/current/poppler/Annot.cc ¶
r1150 r1159 35 35 // Copyright (C) 2015 Petr Gajdos <pgajdos@suse.cz> 36 36 // Copyright (C) 2015 Philipp Reinkemeier <philipp.reinkemeier@offis.de> 37 // Copyright (C) 2015 Tamas Szekeres <szekerest@gmail.com> 37 38 // 38 39 // To see a description of the changes please see the Changelog file that … … 74 75 #include "Link.h" 75 76 #include <string.h> 77 #include <algorithm> 76 78 77 79 #if MULTITHREADED -
TabularUnified poppler/vendor/current/poppler/Catalog.cc ¶
r1019 r1159 826 826 catDict.dictLookupNF("Pages", &pageRootRef); 827 827 828 error(errSyntaxError, -1, "Pages top-level is a single Page. The document is mal -formet, trying to recover...");828 error(errSyntaxError, -1, "Pages top-level is a single Page. The document is malformed, trying to recover..."); 829 829 830 830 Dict *pageDict = pagesDict.getDict(); 831 const Ref pageRef = pageRootRef.getRef(); 832 Page *p = new Page(doc, 1, pageDict, pageRef, new PageAttrs(NULL, pageDict), form); 833 if (p->isOk()) { 834 pages = (Page **)gmallocn(1, sizeof(Page *)); 835 pageRefs = (Ref *)gmallocn(1, sizeof(Ref)); 836 837 pages[0] = p; 838 pageRefs[0].num = pageRef.num; 839 pageRefs[0].gen = pageRef.gen; 840 841 numPages = 1; 842 lastCachedPage = 1; 843 pagesSize = 1; 831 if (pageRootRef.isRef()) { 832 const Ref pageRef = pageRootRef.getRef(); 833 Page *p = new Page(doc, 1, pageDict, pageRef, new PageAttrs(NULL, pageDict), form); 834 if (p->isOk()) { 835 pages = (Page **)gmallocn(1, sizeof(Page *)); 836 pageRefs = (Ref *)gmallocn(1, sizeof(Ref)); 837 838 pages[0] = p; 839 pageRefs[0].num = pageRef.num; 840 pageRefs[0].gen = pageRef.gen; 841 842 numPages = 1; 843 lastCachedPage = 1; 844 pagesSize = 1; 845 } else { 846 delete p; 847 numPages = 0; 848 } 844 849 } else { 845 delete p;846 850 numPages = 0; 847 851 } -
TabularUnified poppler/vendor/current/poppler/GlobalParamsWin.cc ¶
r660 r1159 8 8 // Copyright (C) 2012 Mark Brand <mabrand@mabrand.nl> 9 9 // Copyright (C) 2013 Adam Reichold <adamreichold@myopera.com> 10 // Copyright (C) 2013 Dmytro Morgun <lztoad@gmail.com> 10 11 11 12 TODO: instead of a fixed mapping defined in displayFontTab, it could … … 444 445 } 445 446 446 if (displayFontTab[i].warnIfMissing) 447 error(errSyntaxError, -1, "No display font for '{0:s}'", fontName); 447 if (displayFontTab[i].warnIfMissing) { 448 error(errSyntaxError, -1, "No display font for '{0:s}'", displayFontTab[i].name); 449 delete fontName; 450 } 448 451 } 449 452 if (winFontDir[0]) { 450 sysFonts->scanWindowsFonts(new GooString(winFontDir)); 453 GooString gooWinFontsDir(winFontDir); 454 sysFonts->scanWindowsFonts(&gooWinFontsDir); 451 455 } 452 456 … … 469 473 parser->getObj(&obj1); 470 474 while (!obj1.isEOF()) { 471 parser->getObj(&obj2);472 if (obj1.isName()) {473 // Substitutions474 if (obj2.isDict()) {475 Object obj3;476 obj2.getDict()->lookup("Path", &obj3);477 if (obj3.isString())478 addFontFile(new GooString(obj1.getName()), obj3.getString()->copy());479 obj3.free();480 // Aliases481 } else if (obj2.isName()) {482 substFiles->add(new GooString(obj1.getName()), new GooString(obj2.getName()));483 }484 }485 obj2.free();486 obj1.free();487 parser->getObj(&obj1);488 // skip trailing ';'489 while (obj1.isCmd(";")) {490 obj1.free();491 parser->getObj(&obj1);492 }475 parser->getObj(&obj2); 476 if (obj1.isName()) { 477 // Substitutions 478 if (obj2.isDict()) { 479 Object obj3; 480 obj2.getDict()->lookup("Path", &obj3); 481 if (obj3.isString()) 482 addFontFile(new GooString(obj1.getName()), obj3.getString()->copy()); 483 obj3.free(); 484 // Aliases 485 } else if (obj2.isName()) { 486 substFiles->add(new GooString(obj1.getName()), new GooString(obj2.getName())); 487 } 488 } 489 obj2.free(); 490 obj1.free(); 491 parser->getObj(&obj1); 492 // skip trailing ';' 493 while (obj1.isCmd(";")) { 494 obj1.free(); 495 parser->getObj(&obj1); 496 } 493 497 } 494 498 delete file; 495 499 delete parser; 500 } 501 else { 502 delete fileName; 496 503 } 497 504 } -
TabularUnified poppler/vendor/current/poppler/Makefile.am ¶
r1150 r1159 297 297 298 298 libpoppler_la_LDFLAGS = \ 299 -version-info 5 2:0:0 \299 -version-info 54:0:0 \ 300 300 @create_shared_lib@ \ 301 301 @auto_import_flags@ -
TabularUnified poppler/vendor/current/poppler/Makefile.in ¶
r1150 r1159 795 795 796 796 libpoppler_la_LDFLAGS = \ 797 -version-info 5 2:0:0 \797 -version-info 54:0:0 \ 798 798 @create_shared_lib@ \ 799 799 @auto_import_flags@ -
TabularUnified poppler/vendor/current/poppler/PSOutputDev.cc ¶
r1150 r1159 30 30 // Copyright (C) 2012 Lu Wang <coolwanglu@gmail.com> 31 31 // Copyright (C) 2014 Till Kamppeter <till.kamppeter@gmail.com> 32 // Copyright (C) 2015 Marek Kasik <mkasik@redhat.com> 32 33 // 33 34 // To see a description of the changes please see the Changelog file that … … 2123 2124 Object refObj, strObj, obj1, obj2, obj3; 2124 2125 Dict *dict; 2125 intlength1, length2, length3;2126 long length1, length2, length3; 2126 2127 int c; 2127 2128 int start[4]; … … 2173 2174 embFontList->append("\n"); 2174 2175 2176 strObj.streamReset(); 2177 if (strObj.streamGetChar() == 0x80 && 2178 strObj.streamGetChar() == 1) { 2179 // PFB format 2180 length1 = strObj.streamGetChar() | 2181 (strObj.streamGetChar() << 8) | 2182 (strObj.streamGetChar() << 16) | 2183 (strObj.streamGetChar() << 24); 2184 } else { 2185 strObj.streamReset(); 2186 } 2175 2187 // copy ASCII portion of font 2176 strObj.streamReset();2177 2188 for (i = 0; i < length1 && (c = strObj.streamGetChar()) != EOF; ++i) { 2178 2189 writePSChar(c); … … 2207 2218 // convert binary data to ASCII 2208 2219 if (binMode) { 2209 for (i = 0; i < 4; ++i) { 2210 writePSChar(hexChar[(start[i] >> 4) & 0x0f]); 2211 writePSChar(hexChar[start[i] & 0x0f]); 2220 if (start[0] == 0x80 && 2221 start[1] == 2) { 2222 length2 = start[2] | 2223 (start[3] << 8) | 2224 (strObj.streamGetChar() << 16) | 2225 (strObj.streamGetChar() << 24); 2226 i = 0; 2227 } else { 2228 for (i = 0; i < 4; ++i) { 2229 writePSChar(hexChar[(start[i] >> 4) & 0x0f]); 2230 writePSChar(hexChar[start[i] & 0x0f]); 2231 } 2212 2232 } 2213 2233 #if 0 // this causes trouble for various PostScript printers … … 2247 2267 if (length3 > 0) { 2248 2268 // write fixed-content portion 2249 while ((c = strObj.streamGetChar()) != EOF) { 2250 writePSChar(c); 2269 c = strObj.streamGetChar(); 2270 if (c == 0x80) { 2271 c = strObj.streamGetChar(); 2272 if (c == 1) { 2273 length3 = strObj.streamGetChar() | 2274 (strObj.streamGetChar() << 8) | 2275 (strObj.streamGetChar() << 16) | 2276 (strObj.streamGetChar() << 24); 2277 2278 i = 0; 2279 while (i < length3) { 2280 if ((c = strObj.streamGetChar()) == EOF) { 2281 break; 2282 } 2283 writePSChar(c); 2284 ++i; 2285 } 2286 } 2287 } else { 2288 if (c != EOF) { 2289 writePSChar(c); 2290 2291 while ((c = strObj.streamGetChar()) != EOF) { 2292 writePSChar(c); 2293 } 2294 } 2251 2295 } 2252 2296 } else { -
TabularUnified poppler/vendor/current/poppler/SplashOutputDev.cc ¶
r1150 r1159 35 35 // Copyright (C) 2014 Ed Porras <ed@moto-research.com> 36 36 // Copyright (C) 2014 Richard PALO <richard@netbsd.org> 37 // Copyright (C) 2015 Tamas Szekeres <szekerest@gmail.com> 37 38 // 38 39 // To see a description of the changes please see the Changelog file that … … 73 74 #include "splash/Splash.h" 74 75 #include "SplashOutputDev.h" 76 #include <algorithm> 75 77 76 78 #ifdef VMS … … 142 144 } 143 145 146 // Copy a color according to the color mode. 147 // Use convertGfxShortColor() below when the destination is a bitmap 148 // to avoid overwriting cells. 149 // Calling this in SplashGouraudPattern::getParameterizedColor() fixes bug 90570. 150 // Use convertGfxColor() above when the destination is an array of SPOT_NCOMPS+4 bytes, 151 // to ensure that everything is initialized. 152 153 static inline void convertGfxShortColor(SplashColorPtr dest, 154 SplashColorMode colorMode, 155 GfxColorSpace *colorSpace, 156 GfxColor *src) { 157 switch (colorMode) { 158 case splashModeMono1: 159 case splashModeMono8: 160 { 161 GfxGray gray; 162 colorSpace->getGray(src, &gray); 163 dest[0] = colToByte(gray); 164 } 165 break; 166 case splashModeXBGR8: 167 dest[3] = 255; 168 case splashModeBGR8: 169 case splashModeRGB8: 170 { 171 GfxRGB rgb; 172 colorSpace->getRGB(src, &rgb); 173 dest[0] = colToByte(rgb.r); 174 dest[1] = colToByte(rgb.g); 175 dest[2] = colToByte(rgb.b); 176 } 177 break; 178 #if SPLASH_CMYK 179 case splashModeCMYK8: 180 { 181 GfxCMYK cmyk; 182 colorSpace->getCMYK(src, &cmyk); 183 dest[0] = colToByte(cmyk.c); 184 dest[1] = colToByte(cmyk.m); 185 dest[2] = colToByte(cmyk.y); 186 dest[3] = colToByte(cmyk.k); 187 } 188 break; 189 case splashModeDeviceN8: 190 { 191 GfxColor deviceN; 192 colorSpace->getDeviceN(src, &deviceN); 193 for (int i = 0; i < SPOT_NCOMPS + 4; i++) 194 dest[i] = colToByte(deviceN.c[i]); 195 } 196 break; 197 #endif 198 } 199 } 200 144 201 //------------------------------------------------------------------------ 145 202 // SplashGouraudPattern … … 178 235 dest[m] = colToByte(src.c[m]); 179 236 } else { 180 convertGfx Color(dest, mode, srcColorSpace, &src);237 convertGfxShortColor(dest, mode, srcColorSpace, &src); 181 238 } 182 239 } … … 887 944 SplashColorPtr blend, SplashColorMode cm) { 888 945 Guchar r0, g0, b0; 889 #if defSPLASH_CMYK946 #if SPLASH_CMYK 890 947 Guchar r1, g1, b1; 891 948 int i; … … 937 994 SplashColorMode cm) { 938 995 Guchar r0, g0, b0; 939 #if defSPLASH_CMYK996 #if SPLASH_CMYK 940 997 Guchar r1, g1, b1; 941 998 int i; … … 1228 1285 int tx, ty; // translation coordinates 1229 1286 SplashBitmap *tBitmap; // bitmap for transparency group 1287 SplashBitmap *softmask; // bitmap for softmasks 1230 1288 GfxColorSpace *blendingColorSpace; 1231 1289 GBool isolated; … … 2779 2837 imgMaskData.y = 0; 2780 2838 2781 maskBitmap= new SplashBitmap(bitmap->getWidth(), bitmap->getHeight(), 1, splashModeMono8, gFalse);2782 maskSplash = new Splash( maskBitmap, vectorAntialias);2839 transpGroupStack->softmask = new SplashBitmap(bitmap->getWidth(), bitmap->getHeight(), 1, splashModeMono8, gFalse); 2840 maskSplash = new Splash(transpGroupStack->softmask, vectorAntialias); 2783 2841 maskColor[0] = 0; 2784 2842 maskSplash->clear(maskColor); … … 2797 2855 // memcpy(maskBitmap->getAlphaPtr(), maskBitmap->getDataPtr(), bitmap->getRowSize() * bitmap->getHeight()); 2798 2856 // memset(maskBitmap->getDataPtr(), 0, bitmap->getRowSize() * bitmap->getHeight()); 2799 Guchar *dest = bitmap->getAlphaPtr(); 2800 Guchar *src = maskBitmap->getDataPtr(); 2801 for (int c= 0; c < maskBitmap->getRowSize() * maskBitmap->getHeight(); c++) { 2802 dest[c] = src[c]; 2803 } 2804 delete maskBitmap; 2805 maskBitmap = NULL; 2857 if (transpGroupStack->softmask != NULL) { 2858 Guchar *dest = bitmap->getAlphaPtr(); 2859 Guchar *src = transpGroupStack->softmask->getDataPtr(); 2860 for (int c= 0; c < transpGroupStack->softmask->getRowSize() * transpGroupStack->softmask->getHeight(); c++) { 2861 dest[c] = src[c]; 2862 } 2863 delete transpGroupStack->softmask; 2864 transpGroupStack->softmask = NULL; 2865 } 2806 2866 endTransparencyGroup(state); 2807 2867 baseMatrix[4] += transpGroupStack->tx; … … 2818 2878 int width, height, y; 2819 2879 }; 2880 2881 #ifdef USE_CMS 2882 GBool SplashOutputDev::useIccImageSrc(void *data) { 2883 SplashOutImageData *imgData = (SplashOutImageData *)data; 2884 2885 if (!imgData->lookup && imgData->colorMap->getColorSpace()->getMode() == csICCBased) { 2886 GfxICCBasedColorSpace *colorSpace = (GfxICCBasedColorSpace *) imgData->colorMap->getColorSpace(); 2887 switch (imgData->colorMode) { 2888 case splashModeMono1: 2889 case splashModeMono8: 2890 if (colorSpace->getAlt() != NULL && colorSpace->getAlt()->getMode() == csDeviceGray) 2891 return gTrue; 2892 break; 2893 case splashModeXBGR8: 2894 case splashModeRGB8: 2895 case splashModeBGR8: 2896 if (colorSpace->getAlt() != NULL && colorSpace->getAlt()->getMode() == csDeviceRGB) 2897 return gTrue; 2898 break; 2899 #if SPLASH_CMYK 2900 case splashModeCMYK8: 2901 if (colorSpace->getAlt() != NULL && colorSpace->getAlt()->getMode() == csDeviceCMYK) 2902 return gTrue; 2903 break; 2904 #endif 2905 } 2906 } 2907 2908 return gFalse; 2909 } 2910 #endif 2820 2911 2821 2912 GBool SplashOutputDev::imageSrc(void *data, SplashColorPtr colorLine, … … 2965 3056 return gTrue; 2966 3057 } 3058 3059 #ifdef USE_CMS 3060 GBool SplashOutputDev::iccImageSrc(void *data, SplashColorPtr colorLine, 3061 Guchar * /*alphaLine*/) { 3062 SplashOutImageData *imgData = (SplashOutImageData *)data; 3063 Guchar *p; 3064 int nComps; 3065 3066 if (imgData->y == imgData->height) { 3067 return gFalse; 3068 } 3069 if (!(p = imgData->imgStr->getLine())) { 3070 int destComps = 1; 3071 if (imgData->colorMode == splashModeRGB8 || imgData->colorMode == splashModeBGR8) 3072 destComps = 3; 3073 else if (imgData->colorMode == splashModeXBGR8) 3074 destComps = 4; 3075 #if SPLASH_CMYK 3076 else if (imgData->colorMode == splashModeCMYK8) 3077 destComps = 4; 3078 else if (imgData->colorMode == splashModeDeviceN8) 3079 destComps = SPOT_NCOMPS + 4; 3080 #endif 3081 memset(colorLine, 0, imgData->width * destComps); 3082 return gFalse; 3083 } 3084 3085 if (imgData->colorMode == splashModeXBGR8) { 3086 SplashColorPtr q; 3087 int x; 3088 for (x = 0, q = colorLine; x < imgData->width; ++x) { 3089 *q++ = *p++; 3090 *q++ = *p++; 3091 *q++ = *p++; 3092 *q++ = 255; 3093 } 3094 } else { 3095 nComps = imgData->colorMap->getNumPixelComps(); 3096 memcpy(colorLine, p, imgData->width * nComps); 3097 } 3098 3099 ++imgData->y; 3100 return gTrue; 3101 } 3102 3103 void SplashOutputDev::iccTransform(void *data, SplashBitmap *bitmap) { 3104 SplashOutImageData *imgData = (SplashOutImageData *)data; 3105 int nComps = imgData->colorMap->getNumPixelComps(); 3106 3107 Guchar *colorLine = (Guchar *) gmalloc(nComps * bitmap->getWidth()); 3108 Guchar *rgbxLine = (imgData->colorMode == splashModeXBGR8) ? (Guchar *) gmalloc(3 * bitmap->getWidth()) : NULL; 3109 for (int i = 0; i < bitmap->getHeight(); i++) { 3110 Guchar *p = bitmap->getDataPtr() + i * bitmap->getRowSize(); 3111 switch (imgData->colorMode) { 3112 case splashModeMono1: 3113 case splashModeMono8: 3114 imgData->colorMap->getGrayLine(p, colorLine, bitmap->getWidth()); 3115 memcpy(p, colorLine, nComps * bitmap->getWidth()); 3116 break; 3117 case splashModeRGB8: 3118 case splashModeBGR8: 3119 imgData->colorMap->getRGBLine(p, colorLine, bitmap->getWidth()); 3120 memcpy(p, colorLine, nComps * bitmap->getWidth()); 3121 break; 3122 #if SPLASH_CMYK 3123 case splashModeCMYK8: 3124 imgData->colorMap->getCMYKLine(p, colorLine, bitmap->getWidth()); 3125 memcpy(p, colorLine, nComps * bitmap->getWidth()); 3126 break; 3127 #endif 3128 case splashModeXBGR8: 3129 Guchar *q; 3130 Guchar *b = p; 3131 int x; 3132 for (x = 0, q = rgbxLine; x < bitmap->getWidth(); ++x, ++b) { 3133 *q++ = *b++; 3134 *q++ = *b++; 3135 *q++ = *b++; 3136 } 3137 imgData->colorMap->getRGBLine(rgbxLine, colorLine, bitmap->getWidth()); 3138 b = p; 3139 for (x = 0, q = colorLine; x < bitmap->getWidth(); ++x, ++b) { 3140 *b++ = *q++; 3141 *b++ = *q++; 3142 *b++ = *q++; 3143 } 3144 break; 3145 } 3146 } 3147 gfree(colorLine); 3148 if (rgbxLine != NULL) 3149 gfree(rgbxLine); 3150 } 3151 #endif 2967 3152 2968 3153 GBool SplashOutputDev::alphaImageSrc(void *data, SplashColorPtr colorLine, … … 3177 3362 SplashColorMode srcMode; 3178 3363 SplashImageSource src; 3364 SplashICCTransform tf; 3179 3365 GfxGray gray; 3180 3366 GfxRGB rgb; … … 3294 3480 srcMode = colorMode; 3295 3481 } 3482 #ifdef USE_CMS 3483 src = maskColors ? &alphaImageSrc : useIccImageSrc(&imgData) ? &iccImageSrc : &imageSrc; 3484 tf = maskColors == NULL && useIccImageSrc(&imgData) ? &iccTransform : NULL; 3485 #else 3296 3486 src = maskColors ? &alphaImageSrc : &imageSrc; 3297 splash->drawImage(src, &imgData, srcMode, maskColors ? gTrue : gFalse, 3487 tf = NULL; 3488 #endif 3489 splash->drawImage(src, tf, &imgData, srcMode, maskColors ? gTrue : gFalse, 3298 3490 width, height, mat, interpolate); 3299 3491 if (inlineImg) { … … 3597 3789 srcMode = colorMode; 3598 3790 } 3599 splash->drawImage(&maskedImageSrc, &imgData, srcMode, gTrue,3791 splash->drawImage(&maskedImageSrc, NULL, &imgData, srcMode, gTrue, 3600 3792 width, height, mat, interpolate); 3601 3793 delete maskBitmap; … … 3672 3864 maskColor[0] = 0; 3673 3865 maskSplash->clear(maskColor); 3674 maskSplash->drawImage(&imageSrc, &imgMaskData, splashModeMono8, gFalse,3866 maskSplash->drawImage(&imageSrc, NULL, &imgMaskData, splashModeMono8, gFalse, 3675 3867 maskWidth, maskHeight, mat, maskInterpolate); 3676 3868 delete imgMaskData.imgStr; … … 3760 3952 srcMode = colorMode; 3761 3953 } 3762 splash->drawImage(&imageSrc, &imgData, srcMode, gFalse, width, height, mat, interpolate);3954 splash->drawImage(&imageSrc, NULL, &imgData, srcMode, gFalse, width, height, mat, interpolate); 3763 3955 splash->setSoftMask(NULL); 3764 3956 gfree(imgData.lookup); … … 3853 4045 // push a new stack entry 3854 4046 transpGroup = new SplashTransparencyGroup(); 4047 transpGroup->softmask = NULL; 3855 4048 transpGroup->tx = tx; 3856 4049 transpGroup->ty = ty; … … 4359 4552 retValue = gTrue; 4360 4553 } else { 4361 retValue = splash->drawImage(&tilingBitmapSrc, &imgData, colorMode, gTrue, result_width, result_height, matc, gFalse, gTrue) == splashOk;4554 retValue = splash->drawImage(&tilingBitmapSrc, NULL, &imgData, colorMode, gTrue, result_width, result_height, matc, gFalse, gTrue) == splashOk; 4362 4555 } 4363 4556 delete tBitmap; -
TabularUnified poppler/vendor/current/poppler/SplashOutputDev.h ¶
r1019 r1159 15 15 // 16 16 // Copyright (C) 2005 Takashi Iwai <tiwai@suse.de> 17 // Copyright (C) 2009-201 4Thomas Freitag <Thomas.Freitag@alfa.de>17 // Copyright (C) 2009-2015 Thomas Freitag <Thomas.Freitag@alfa.de> 18 18 // Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org> 19 19 // Copyright (C) 2010 Christian Feuersänger <cfeuersaenger@googlemail.com> … … 384 384 void drawType3Glyph(GfxState *state, T3FontCache *t3Font, 385 385 T3FontCacheTag *tag, Guchar *data); 386 #ifdef USE_CMS 387 GBool useIccImageSrc(void *data); 388 static void iccTransform(void *data, SplashBitmap *bitmap); 389 static GBool iccImageSrc(void *data, SplashColorPtr colorLine, 390 Guchar *alphaLine); 391 #endif 386 392 static GBool imageMaskSrc(void *data, SplashColorPtr line); 387 393 static GBool imageSrc(void *data, SplashColorPtr colorLine, -
TabularUnified poppler/vendor/current/poppler/StructElement.cc ¶
r937 r1159 8 8 // Copyright 2014 Luigi Scarso <luigi.scarso@gmail.com> 9 9 // Copyright 2014 Albert Astals Cid <aacid@kde.org> 10 // Copyright 2015 Dmytro Morgun <lztoad@gmail.com> 10 11 // 11 12 //======================================================================== … … 279 280 Before.initName("Before"); 280 281 Nat1.initInt(1); 282 } 283 284 ~AttributeDefaults() { 285 Inline.free(); 286 LrTb.free(); 287 Normal.free(); 288 Distribute.free(); 289 off.free(); 290 Zero.free(); 291 Auto.free(); 292 Start.free(); 293 None.free(); 294 Before.free(); 295 Nat1.free(); 281 296 } 282 297 }; -
TabularUnified poppler/vendor/current/qt4/src/CMakeLists.txt ¶
r1019 r1159 31 31 qt4_automoc(${poppler_qt4_SRCS}) 32 32 add_library(poppler-qt4 SHARED ${poppler_qt4_SRCS}) 33 set_target_properties(poppler-qt4 PROPERTIES VERSION 4. 6.0 SOVERSION 4)33 set_target_properties(poppler-qt4 PROPERTIES VERSION 4.7.0 SOVERSION 4) 34 34 target_link_libraries(poppler-qt4 poppler ${QT4_QTCORE_LIBRARY} ${QT4_QTGUI_LIBRARY} ${QT4_QTXML_LIBRARY}) 35 35 if(MSVC) -
TabularUnified poppler/vendor/current/qt4/src/Makefile.am ¶
r1019 r1159 61 61 62 62 libpoppler_qt4_la_LDFLAGS = \ 63 -version-info 1 0:0:6\63 -version-info 11:0:7 \ 64 64 @create_shared_lib@ \ 65 65 @auto_import_flags@ -
TabularUnified poppler/vendor/current/qt4/src/Makefile.in ¶
r1019 r1159 510 510 511 511 libpoppler_qt4_la_LDFLAGS = \ 512 -version-info 1 0:0:6\512 -version-info 11:0:7 \ 513 513 @create_shared_lib@ \ 514 514 @auto_import_flags@ -
TabularUnified poppler/vendor/current/qt4/src/poppler-document.cc ¶
r721 r1159 9 9 * Copyright (C) 2012 Fabio D'Urso <fabiodurso@hotmail.it> 10 10 * Copyright (C) 2014 Adam Reichold <adamreichold@myopera.com> 11 * Copyright (C) 2015 William Bader <williambader@hotmail.com> 11 12 * 12 13 * This program is free software; you can redistribute it and/or modify … … 692 693 693 694 bool isOverprintPreviewAvailable() { 694 #if defined(SPLASH_CMYK)695 #if SPLASH_CMYK 695 696 return true; 696 697 #else -
TabularUnified poppler/vendor/current/qt4/src/poppler-page.cc ¶
r1019 r1159 295 295 #if defined(HAVE_SPLASH) 296 296 SplashColor bgColor; 297 GBool overprint = gFalse;298 #if defined(SPLASH_CMYK)299 overprint = m_page->parentDoc->m_hints & Document::OverprintPreview ? gTrue : gFalse;300 if (overprint )297 GBool overprintPreview = gFalse; 298 #if SPLASH_CMYK 299 overprintPreview = m_page->parentDoc->m_hints & Document::OverprintPreview ? gTrue : gFalse; 300 if (overprintPreview) 301 301 { 302 302 Guchar c, m, y, k; … … 327 327 bgColor[2] = m_page->parentDoc->paperColor.red(); 328 328 } 329 330 SplashColorMode colorMode = splashModeRGB8; 331 332 const bool ignorePaperColor = m_page->parentDoc->m_hints & Document::IgnorePaperColor; 333 if (ignorePaperColor) colorMode = splashModeXBGR8; 334 335 #if SPLASH_CMYK 336 if (overprintPreview) colorMode = splashModeDeviceN8; 337 #endif 329 338 330 339 SplashThinLineMode thinLineMode = splashThinLineDefault; … … 332 341 if (m_page->parentDoc->m_hints & Document::ThinLineSolid) thinLineMode = splashThinLineSolid; 333 342 334 SplashOutputDev * splash_output = new SplashOutputDev(335 #if defined(SPLASH_CMYK) 336 (overprint) ? splashModeDeviceN8 : splashModeXBGR8,337 #else 338 splashModeXBGR8,339 #endif 340 4, gFalse, bgColor, gTrue, thinLineMode, overprint);341 342 splash_output ->setFontAntialias(m_page->parentDoc->m_hints & Document::TextAntialiasing ? gTrue : gFalse);343 splash_output ->setVectorAntialias(m_page->parentDoc->m_hints & Document::Antialiasing ? gTrue : gFalse);344 splash_output ->setFreeTypeHinting(m_page->parentDoc->m_hints & Document::TextHinting ? gTrue : gFalse,343 SplashOutputDev splash_output( 344 colorMode, 4, 345 gFalse, 346 ignorePaperColor ? NULL : bgColor, 347 gTrue, 348 thinLineMode, 349 overprintPreview); 350 351 splash_output.setFontAntialias(m_page->parentDoc->m_hints & Document::TextAntialiasing ? gTrue : gFalse); 352 splash_output.setVectorAntialias(m_page->parentDoc->m_hints & Document::Antialiasing ? gTrue : gFalse); 353 splash_output.setFreeTypeHinting(m_page->parentDoc->m_hints & Document::TextHinting ? gTrue : gFalse, 345 354 m_page->parentDoc->m_hints & Document::TextSlightHinting ? gTrue : gFalse); 346 355 347 splash_output ->startDoc(m_page->parentDoc->doc);348 349 m_page->parentDoc->doc->displayPageSlice( splash_output, m_page->index + 1, xres, yres,356 splash_output.startDoc(m_page->parentDoc->doc); 357 358 m_page->parentDoc->doc->displayPageSlice(&splash_output, m_page->index + 1, xres, yres, 350 359 rotation, false, true, false, x, y, w, h, 351 360 NULL, NULL, NULL, NULL, gTrue); 352 361 353 SplashBitmap *bitmap = splash_output->getBitmap(); 354 int bw = bitmap->getWidth(); 355 int bh = bitmap->getHeight(); 356 357 if (bitmap->convertToXBGR()) 358 { 359 SplashColorPtr dataPtr = bitmap->getDataPtr(); 360 361 if (QSysInfo::BigEndian == QSysInfo::ByteOrder) 362 { 363 uchar c; 364 int count = bw * bh * 4; 365 for (int k = 0; k < count; k += 4) 366 { 367 c = dataPtr[k]; 368 dataPtr[k] = dataPtr[k+3]; 369 dataPtr[k+3] = c; 370 371 c = dataPtr[k+1]; 372 dataPtr[k+1] = dataPtr[k+2]; 373 dataPtr[k+2] = c; 374 } 375 } 376 377 // construct a qimage SHARING the raw bitmap data in memory 378 QImage tmpimg( dataPtr, bw, bh, QImage::Format_ARGB32 ); 379 img = tmpimg.copy(); 362 SplashBitmap *bitmap = splash_output.getBitmap(); 363 364 const int bw = bitmap->getWidth(); 365 const int bh = bitmap->getHeight(); 366 const int brs = bitmap->getRowSize(); 367 368 // If we use DeviceN8, convert to XBGR8. 369 // If requested, also transfer Splash's internal alpha channel. 370 if (overprintPreview || ignorePaperColor) { 371 if (bitmap->convertToXBGR(ignorePaperColor)) { 372 SplashColorPtr data = bitmap->getDataPtr(); 373 374 if (QSysInfo::ByteOrder == QSysInfo::BigEndian) { 375 // Convert byte order from RGBX to XBGR. 376 for (int i = 0; i < bh; ++i) { 377 for (int j = 0; j < bw; ++j) { 378 SplashColorPtr pixel = &data[i * brs + j]; 379 380 qSwap(pixel[0], pixel[3]); 381 qSwap(pixel[1], pixel[2]); 382 } 383 } 384 } 385 386 // Construct a Qt image sharing the raw bitmap data. 387 img = QImage(data, bw, bh, brs, QImage::Format_ARGB32).copy(); 388 } 389 } else { 390 SplashColorPtr data = bitmap->getDataPtr(); 391 392 if (QSysInfo::ByteOrder == QSysInfo::BigEndian) { 393 // Convert byte order from BGR to RGB. 394 for (int i = 0; i < bh; ++i) { 395 for (int j = 0; j < bw; ++j) { 396 SplashColorPtr pixel = &data[i * brs + j]; 397 398 qSwap(pixel[0], pixel[2]); 399 } 400 } 401 } 402 403 // Construct a Qt image sharing the raw bitmap data. 404 img = QImage(data, bw, bh, brs, QImage::Format_RGB888).copy(); 380 405 } 381 delete splash_output;382 406 #endif 383 407 break; -
TabularUnified poppler/vendor/current/qt4/src/poppler-qt4.h ¶
r1019 r1159 2 2 * Copyright (C) 2005, Net Integration Technologies, Inc. 3 3 * Copyright (C) 2005, 2007, Brad Hards <bradh@frogmouth.net> 4 * Copyright (C) 2005-2012, 2014, Albert Astals Cid <aacid@kde.org>4 * Copyright (C) 2005-2012, 2014, 2015, Albert Astals Cid <aacid@kde.org> 5 5 * Copyright (C) 2005, Stefan Kebekus <stefan.kebekus@math.uni-koeln.de> 6 6 * Copyright (C) 2006-2011, Pino Toscano <pino@kde.org> … … 902 902 OverprintPreview = 0x00000010, ///< Overprint preview \since 0.22 903 903 ThinLineSolid = 0x00000020, ///< Enhance thin lines solid \since 0.24 904 ThinLineShape = 0x00000040 ///< Enhance thin lines shape. Wins over ThinLineSolid \since 0.24 904 ThinLineShape = 0x00000040, ///< Enhance thin lines shape. Wins over ThinLineSolid \since 0.24 905 IgnorePaperColor = 0x00000080 ///< Do not compose with the paper color \since 0.35 905 906 }; 906 907 Q_DECLARE_FLAGS( RenderHints, RenderHint ) -
TabularUnified poppler/vendor/current/qt4/tests/check_lexer.cpp ¶
r660 r1159 13 13 void TestLexer::testNumbers() 14 14 { 15 char *data= "0 1 -1 2147483647 -2147483647 2147483648 -2147483648 4294967297 -2147483649 0.1 1.1 -1.1 2147483647.1 -2147483647.1 2147483648.1 -2147483648.1 4294967297.1 -2147483649.1 9223372036854775807 18446744073709551615";15 char data[] = "0 1 -1 2147483647 -2147483647 2147483648 -2147483648 4294967297 -2147483649 0.1 1.1 -1.1 2147483647.1 -2147483647.1 2147483648.1 -2147483648.1 4294967297.1 -2147483649.1 9223372036854775807 18446744073709551615"; 16 16 Object dummy; 17 17 MemStream *stream = new MemStream(data, 0, strlen(data), &dummy); -
TabularUnified poppler/vendor/current/qt5/src/CMakeLists.txt ¶
r1019 r1159 33 33 ) 34 34 add_library(poppler-qt5 SHARED ${poppler_qt5_SRCS}) 35 set_target_properties(poppler-qt5 PROPERTIES VERSION 1. 3.0 SOVERSION 1)35 set_target_properties(poppler-qt5 PROPERTIES VERSION 1.4.0 SOVERSION 1) 36 36 target_link_libraries(poppler-qt5 poppler ${Qt5Core_LIBRARIES} ${Qt5Gui_LIBRARIES} ${Qt5Xml_LIBRARIES}) 37 37 if(MSVC) -
TabularUnified poppler/vendor/current/qt5/src/Makefile.am ¶
r1019 r1159 61 61 62 62 libpoppler_qt5_la_LDFLAGS = \ 63 -version-info 4:0:3\63 -version-info 5:0:4 \ 64 64 @create_shared_lib@ \ 65 65 @auto_import_flags@ -
TabularUnified poppler/vendor/current/qt5/src/Makefile.in ¶
r1019 r1159 510 510 511 511 libpoppler_qt5_la_LDFLAGS = \ 512 -version-info 4:0:3\512 -version-info 5:0:4 \ 513 513 @create_shared_lib@ \ 514 514 @auto_import_flags@ -
TabularUnified poppler/vendor/current/qt5/src/poppler-document.cc ¶
r721 r1159 9 9 * Copyright (C) 2012 Fabio D'Urso <fabiodurso@hotmail.it> 10 10 * Copyright (C) 2014 Adam Reichold <adamreichold@myopera.com> 11 * Copyright (C) 2015 William Bader <williambader@hotmail.com> 11 12 * 12 13 * This program is free software; you can redistribute it and/or modify … … 673 674 674 675 bool isOverprintPreviewAvailable() { 675 #if defined(SPLASH_CMYK)676 #if SPLASH_CMYK 676 677 return true; 677 678 #else -
TabularUnified poppler/vendor/current/qt5/src/poppler-page.cc ¶
r1019 r1159 295 295 #if defined(HAVE_SPLASH) 296 296 SplashColor bgColor; 297 GBool overprint = gFalse;298 #if defined(SPLASH_CMYK)299 overprint = m_page->parentDoc->m_hints & Document::OverprintPreview ? gTrue : gFalse;300 if (overprint )297 GBool overprintPreview = gFalse; 298 #if SPLASH_CMYK 299 overprintPreview = m_page->parentDoc->m_hints & Document::OverprintPreview ? gTrue : gFalse; 300 if (overprintPreview) 301 301 { 302 302 Guchar c, m, y, k; … … 327 327 bgColor[2] = m_page->parentDoc->paperColor.red(); 328 328 } 329 330 SplashColorMode colorMode = splashModeRGB8; 329 331 332 const bool ignorePaperColor = m_page->parentDoc->m_hints & Document::IgnorePaperColor; 333 if (ignorePaperColor) colorMode = splashModeXBGR8; 334 335 #if SPLASH_CMYK 336 if (overprintPreview) colorMode = splashModeDeviceN8; 337 #endif 338 330 339 SplashThinLineMode thinLineMode = splashThinLineDefault; 331 340 if (m_page->parentDoc->m_hints & Document::ThinLineShape) thinLineMode = splashThinLineShape; 332 341 if (m_page->parentDoc->m_hints & Document::ThinLineSolid) thinLineMode = splashThinLineSolid; 333 342 334 SplashOutputDev * splash_output = new SplashOutputDev(335 #if defined(SPLASH_CMYK) 336 (overprint) ? splashModeDeviceN8 : splashModeXBGR8,337 #else 338 splashModeXBGR8,339 #endif 340 4, gFalse, bgColor, gTrue, thinLineMode, overprint);341 342 splash_output ->setFontAntialias(m_page->parentDoc->m_hints & Document::TextAntialiasing ? gTrue : gFalse);343 splash_output ->setVectorAntialias(m_page->parentDoc->m_hints & Document::Antialiasing ? gTrue : gFalse);344 splash_output ->setFreeTypeHinting(m_page->parentDoc->m_hints & Document::TextHinting ? gTrue : gFalse,343 SplashOutputDev splash_output( 344 colorMode, 4, 345 gFalse, 346 ignorePaperColor ? NULL : bgColor, 347 gTrue, 348 thinLineMode, 349 overprintPreview); 350 351 splash_output.setFontAntialias(m_page->parentDoc->m_hints & Document::TextAntialiasing ? gTrue : gFalse); 352 splash_output.setVectorAntialias(m_page->parentDoc->m_hints & Document::Antialiasing ? gTrue : gFalse); 353 splash_output.setFreeTypeHinting(m_page->parentDoc->m_hints & Document::TextHinting ? gTrue : gFalse, 345 354 m_page->parentDoc->m_hints & Document::TextSlightHinting ? gTrue : gFalse); 346 355 347 splash_output ->startDoc(m_page->parentDoc->doc);348 349 m_page->parentDoc->doc->displayPageSlice( splash_output, m_page->index + 1, xres, yres,356 splash_output.startDoc(m_page->parentDoc->doc); 357 358 m_page->parentDoc->doc->displayPageSlice(&splash_output, m_page->index + 1, xres, yres, 350 359 rotation, false, true, false, x, y, w, h, 351 360 NULL, NULL, NULL, NULL, gTrue); 352 361 353 SplashBitmap *bitmap = splash_output->getBitmap(); 354 int bw = bitmap->getWidth(); 355 int bh = bitmap->getHeight(); 356 357 if (bitmap->convertToXBGR()) 358 { 359 SplashColorPtr dataPtr = bitmap->getDataPtr(); 360 361 if (QSysInfo::BigEndian == QSysInfo::ByteOrder) 362 { 363 uchar c; 364 int count = bw * bh * 4; 365 for (int k = 0; k < count; k += 4) 366 { 367 c = dataPtr[k]; 368 dataPtr[k] = dataPtr[k+3]; 369 dataPtr[k+3] = c; 370 371 c = dataPtr[k+1]; 372 dataPtr[k+1] = dataPtr[k+2]; 373 dataPtr[k+2] = c; 374 } 375 } 376 377 // construct a qimage SHARING the raw bitmap data in memory 378 QImage tmpimg( dataPtr, bw, bh, QImage::Format_ARGB32 ); 379 img = tmpimg.copy(); 362 SplashBitmap *bitmap = splash_output.getBitmap(); 363 364 const int bw = bitmap->getWidth(); 365 const int bh = bitmap->getHeight(); 366 const int brs = bitmap->getRowSize(); 367 368 // If we use DeviceN8, convert to XBGR8. 369 // If requested, also transfer Splash's internal alpha channel. 370 if (overprintPreview || ignorePaperColor) { 371 if (bitmap->convertToXBGR(ignorePaperColor)) { 372 SplashColorPtr data = bitmap->takeData(); 373 374 if (QSysInfo::ByteOrder == QSysInfo::BigEndian) { 375 // Convert byte order from RGBX to XBGR. 376 for (int i = 0; i < bh; ++i) { 377 for (int j = 0; j < bw; ++j) { 378 SplashColorPtr pixel = &data[i * brs + j]; 379 380 qSwap(pixel[0], pixel[3]); 381 qSwap(pixel[1], pixel[2]); 382 } 383 } 384 } 385 386 // Construct a Qt image holding (and also owning) the raw bitmap data. 387 img = QImage(data, bw, bh, brs, QImage::Format_ARGB32, gfree, data); 388 } 389 } else { 390 SplashColorPtr data = bitmap->takeData(); 391 392 if (QSysInfo::ByteOrder == QSysInfo::BigEndian) { 393 // Convert byte order from BGR to RGB. 394 for (int i = 0; i < bh; ++i) { 395 for (int j = 0; j < bw; ++j) { 396 SplashColorPtr pixel = &data[i * brs + j]; 397 398 qSwap(pixel[0], pixel[2]); 399 } 400 } 401 } 402 403 // Construct a Qt image holding (and also owning) the raw bitmap data. 404 img = QImage(data, bw, bh, brs, QImage::Format_RGB888, gfree, data); 380 405 } 381 delete splash_output;382 406 #endif 383 407 break; -
TabularUnified poppler/vendor/current/qt5/src/poppler-qt5.h ¶
r1019 r1159 2 2 * Copyright (C) 2005, Net Integration Technologies, Inc. 3 3 * Copyright (C) 2005, 2007, Brad Hards <bradh@frogmouth.net> 4 * Copyright (C) 2005-201 4, Albert Astals Cid <aacid@kde.org>4 * Copyright (C) 2005-2015, Albert Astals Cid <aacid@kde.org> 5 5 * Copyright (C) 2005, Stefan Kebekus <stefan.kebekus@math.uni-koeln.de> 6 6 * Copyright (C) 2006-2011, Pino Toscano <pino@kde.org> … … 892 892 OverprintPreview = 0x00000010, ///< Overprint preview \since 0.22 893 893 ThinLineSolid = 0x00000020, ///< Enhance thin lines solid \since 0.24 894 ThinLineShape = 0x00000040 ///< Enhance thin lines shape. Wins over ThinLineSolid \since 0.24 894 ThinLineShape = 0x00000040, ///< Enhance thin lines shape. Wins over ThinLineSolid \since 0.24 895 IgnorePaperColor = 0x00000080 ///< Do not compose with the paper color \since 0.35 895 896 }; 896 897 Q_DECLARE_FLAGS( RenderHints, RenderHint ) -
TabularUnified poppler/vendor/current/qt5/tests/check_lexer.cpp ¶
r660 r1159 13 13 void TestLexer::testNumbers() 14 14 { 15 char *data= "0 1 -1 2147483647 -2147483647 2147483648 -2147483648 4294967297 -2147483649 0.1 1.1 -1.1 2147483647.1 -2147483647.1 2147483648.1 -2147483648.1 4294967297.1 -2147483649.1 9223372036854775807 18446744073709551615";15 char data[] = "0 1 -1 2147483647 -2147483647 2147483648 -2147483648 4294967297 -2147483649 0.1 1.1 -1.1 2147483647.1 -2147483647.1 2147483648.1 -2147483648.1 4294967297.1 -2147483649.1 9223372036854775807 18446744073709551615"; 16 16 Object dummy; 17 17 MemStream *stream = new MemStream(data, 0, strlen(data), &dummy); -
TabularUnified poppler/vendor/current/splash/Splash.cc ¶
r1150 r1159 14 14 // Copyright (C) 2005-2015 Albert Astals Cid <aacid@kde.org> 15 15 // Copyright (C) 2005 Marco Pesenti Gritti <mpg@redhat.com> 16 // Copyright (C) 2010-201 4Thomas Freitag <Thomas.Freitag@alfa.de>16 // Copyright (C) 2010-2015 Thomas Freitag <Thomas.Freitag@alfa.de> 17 17 // Copyright (C) 2010 Christian FeuersÀnger <cfeuersaenger@googlemail.com> 18 18 // Copyright (C) 2011-2013, 2015 William Bader <williambader@hotmail.com> … … 606 606 607 607 if (state->blendFunc) { 608 #if defSPLASH_CMYK608 #if SPLASH_CMYK 609 609 if (bitmap->mode == splashModeDeviceN8) { 610 610 for (int k = 4; k < 4 + SPOT_NCOMPS; k++) { … … 3660 3660 } 3661 3661 3662 SplashError Splash::drawImage(SplashImageSource src, void *srcData,3662 SplashError Splash::drawImage(SplashImageSource src, SplashICCTransform tf, void *srcData, 3663 3663 SplashColorMode srcMode, GBool srcAlpha, 3664 3664 int w, int h, SplashCoord *mat, GBool interpolate, … … 3751 3751 return splashErrBadArg; 3752 3752 } 3753 if (tf != NULL) { 3754 (*tf)(srcData, scaledImg); 3755 } 3753 3756 blitImage(scaledImg, srcAlpha, x0, y0, clipRes); 3754 3757 delete scaledImg; … … 3789 3792 return splashErrBadArg; 3790 3793 } 3794 if (tf != NULL) { 3795 (*tf)(srcData, scaledImg); 3796 } 3791 3797 vertFlipImage(scaledImg, scaledWidth, scaledHeight, nComps); 3792 3798 blitImage(scaledImg, srcAlpha, x0, y0, clipRes); … … 3796 3802 // all other cases 3797 3803 } else { 3798 return arbitraryTransformImage(src, srcData, srcMode, nComps, srcAlpha,3804 return arbitraryTransformImage(src, tf, srcData, srcMode, nComps, srcAlpha, 3799 3805 w, h, mat, interpolate, tilingPattern); 3800 3806 } … … 3803 3809 } 3804 3810 3805 SplashError Splash::arbitraryTransformImage(SplashImageSource src, void *srcData,3811 SplashError Splash::arbitraryTransformImage(SplashImageSource src, SplashICCTransform tf, void *srcData, 3806 3812 SplashColorMode srcMode, int nComps, 3807 3813 GBool srcAlpha, … … 3938 3944 } 3939 3945 3946 if (tf != NULL) { 3947 (*tf)(srcData, scaledImg); 3948 } 3940 3949 // construct the three sections 3941 3950 i = 0; -
TabularUnified poppler/vendor/current/splash/Splash.h ¶
r660 r1159 14 14 // Copyright (C) 2005 Marco Pesenti Gritti <mpg@redhat.com> 15 15 // Copyright (C) 2007, 2011 Albert Astals Cid <aacid@kde.org> 16 // Copyright (C) 2010-2013 Thomas Freitag <Thomas.Freitag@alfa.de>16 // Copyright (C) 2010-2013, 2015 Thomas Freitag <Thomas.Freitag@alfa.de> 17 17 // Copyright (C) 2010 Christian Feuersänger <cfeuersaenger@googlemail.com> 18 18 // Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com> … … 56 56 typedef GBool (*SplashImageSource)(void *data, SplashColorPtr colorLine, 57 57 Guchar *alphaLine); 58 59 // Use ICCColorSpace to transform a bitmap 60 typedef void (*SplashICCTransform)(void *data, SplashBitmap *bitmap); 58 61 59 62 //------------------------------------------------------------------------ … … 212 215 // CMYK8 CMYK8 213 216 // The matrix behaves as for fillImageMask. 214 SplashError drawImage(SplashImageSource src, void *srcData,217 SplashError drawImage(SplashImageSource src, SplashICCTransform tf, void *srcData, 215 218 SplashColorMode srcMode, GBool srcAlpha, 216 219 int w, int h, SplashCoord *mat, GBool interpolate, … … 358 361 void blitMask(SplashBitmap *src, int xDest, int yDest, 359 362 SplashClipResult clipRes); 360 SplashError arbitraryTransformImage(SplashImageSource src, void *srcData,363 SplashError arbitraryTransformImage(SplashImageSource src, SplashICCTransform tf, void *srcData, 361 364 SplashColorMode srcMode, int nComps, 362 365 GBool srcAlpha, -
TabularUnified poppler/vendor/current/splash/SplashBitmap.cc ¶
r1150 r1159 19 19 // Copyright (C) 2010 Harry Roberts <harry.roberts@midnight-labs.org> 20 20 // Copyright (C) 2010 Christian Feuersänger <cfeuersaenger@googlemail.com> 21 // Copyright (C) 2010 William Bader <williambader@hotmail.com>21 // Copyright (C) 2010, 2015 William Bader <williambader@hotmail.com> 22 22 // Copyright (C) 2011-2013 Thomas Freitag <Thomas.Freitag@alfa.de> 23 23 // Copyright (C) 2012 Anthony Wesley <awesley@smartnetworks.com.au> 24 // Copyright (C) 2015 Adam Reichold <adamreichold@myopera.com> 24 25 // 25 26 // To see a description of the changes please see the Changelog file that … … 362 363 363 364 #ifdef ENABLE_LIBJPEG 364 #if defSPLASH_CMYK365 #if SPLASH_CMYK 365 366 case splashFormatJpegCMYK: 366 367 writer = new JpegWriter(JpegWriter::CMYK); … … 461 462 } 462 463 463 void SplashBitmap::getXBGRLine(int yl, SplashColorPtr line ) {464 void SplashBitmap::getXBGRLine(int yl, SplashColorPtr line, bool useAlpha) { 464 465 SplashColor col; 465 466 double c, m, y, k, c1, m1, y1, k1, r, g, b; … … 504 505 *line++ = dblToByte(clip01(g)); 505 506 *line++ = dblToByte(clip01(r)); 506 *line++ = 255; 507 } 508 } 509 510 GBool SplashBitmap::convertToXBGR() { 511 if (mode == splashModeXBGR8) 507 *line++ = useAlpha ? getAlpha(x, yl) : 255; 508 } 509 } 510 511 GBool SplashBitmap::convertToXBGR(bool useAlpha) { 512 if (mode == splashModeXBGR8) { 513 if (useAlpha) { 514 // Copy the alpha channel into the fourth component so that XBGR becomes ABGR. 515 const SplashColorPtr dbegin = data; 516 const SplashColorPtr dend = data + rowSize * height; 517 518 Guchar *const abegin = alpha; 519 Guchar *const aend = alpha + width * height; 520 521 SplashColorPtr d = dbegin + 3; 522 Guchar *a = abegin; 523 524 for(; d < dend && a < aend; d += 4, a += 1) { 525 *d = *a; 526 } 527 } 528 512 529 return gTrue; 530 } 513 531 514 532 int newrowSize = width * 4; … … 517 535 for (int y = 0; y < height; y++) { 518 536 unsigned char *row = newdata + y * newrowSize; 519 getXBGRLine(y, row );537 getXBGRLine(y, row, useAlpha); 520 538 } 521 539 if (rowSize < 0) { -
TabularUnified poppler/vendor/current/splash/SplashBitmap.h ¶
r591 r1159 21 21 // Copyright (C) 2010 William Bader <williambader@hotmail.com> 22 22 // Copyright (C) 2012 Thomas Freitag <Thomas.Freitag@alfa.de> 23 // Copyright (C) 2015 Adam Reichold <adamreichold@myopera.com> 23 24 // 24 25 // To see a description of the changes please see the Changelog file that … … 76 77 SplashError writeImgFile(ImgWriter *writer, FILE *f, int hDPI, int vDPI); 77 78 78 GBool convertToXBGR( );79 GBool convertToXBGR(bool useAlpha = false); 79 80 80 81 void getPixel(int x, int y, SplashColorPtr pixel); 81 82 void getRGBLine(int y, SplashColorPtr line); 82 void getXBGRLine(int y, SplashColorPtr line );83 void getXBGRLine(int y, SplashColorPtr line, bool useAlpha = false); 83 84 #if SPLASH_CMYK 84 85 void getCMYKLine(int y, SplashColorPtr line); -
TabularUnified poppler/vendor/current/splash/SplashFontEngine.cc ¶
r721 r1159 18 18 // Copyright (C) 2011 Andreas Hartmetz <ahartmetz@gmail.com> 19 19 // Copyright (C) 2013 Thomas Freitag <Thomas.Freitag@alfa.de> 20 // Copyright (C) 2015 Dmytro Morgun <lztoad@gmail.com> 20 21 // 21 22 // To see a description of the changes please see the Changelog file that … … 150 151 #endif 151 152 152 #ifndef _WIN32 153 // delete the (temporary) font file -- with Unix hard link 154 // semantics, this will remove the last link; otherwise it will 155 // return an error, leaving the file to be deleted later (if 156 // loadXYZFont failed, the file will always be deleted) 157 if (src->isFile) 158 src->unref(); 159 #endif 153 // delete the (temporary) font file -- with Unix hard link 154 // semantics, this will remove the last link; otherwise it will 155 // return an error, leaving the file to be deleted later (if 156 // loadXYZFont failed, the file will always be deleted) 157 if (src->isFile) 158 src->unref(); 160 159 161 160 return fontFile; … … 179 178 #endif 180 179 181 #ifndef _WIN32 182 // delete the (temporary) font file -- with Unix hard link 183 // semantics, this will remove the last link; otherwise it will 184 // return an error, leaving the file to be deleted later (if 185 // loadXYZFont failed, the file will always be deleted) 186 if (src->isFile) 187 src->unref(); 188 #endif 180 // delete the (temporary) font file -- with Unix hard link 181 // semantics, this will remove the last link; otherwise it will 182 // return an error, leaving the file to be deleted later (if 183 // loadXYZFont failed, the file will always be deleted) 184 if (src->isFile) 185 src->unref(); 189 186 190 187 return fontFile; … … 224 221 #endif 225 222 226 #ifndef _WIN32 227 // delete the (temporary) font file -- with Unix hard link 228 // semantics, this will remove the last link; otherwise it will 229 // return an error, leaving the file to be deleted later (if 230 // loadXYZFont failed, the file will always be deleted) 231 if (src->isFile) 232 src->unref(); 233 #endif 223 // delete the (temporary) font file -- with Unix hard link 224 // semantics, this will remove the last link; otherwise it will 225 // return an error, leaving the file to be deleted later (if 226 // loadXYZFont failed, the file will always be deleted) 227 if (src->isFile) 228 src->unref(); 234 229 235 230 return fontFile; … … 278 273 } 279 274 280 #ifndef _WIN32 281 // delete the (temporary) font file -- with Unix hard link 282 // semantics, this will remove the last link; otherwise it will 283 // return an error, leaving the file to be deleted later (if 284 // loadXYZFont failed, the file will always be deleted) 285 if (src->isFile) 286 src->unref(); 287 #endif 275 // delete the (temporary) font file -- with Unix hard link 276 // semantics, this will remove the last link; otherwise it will 277 // return an error, leaving the file to be deleted later (if 278 // loadXYZFont failed, the file will always be deleted) 279 if (src->isFile) 280 src->unref(); 288 281 289 282 return fontFile; -
TabularUnified poppler/vendor/current/utils/pdftocairo-win32.cc ¶
r937 r1159 160 160 } 161 161 162 static HWND createGroupBox(HWND parent, HINSTANCE hInstance, intid, const char *label, RECT *rect)162 static HWND createGroupBox(HWND parent, HINSTANCE hInstance, HMENU id, const char *label, RECT *rect) 163 163 { 164 164 HWND hwnd = CreateWindowA(WC_BUTTONA, … … 168 168 rect->right - rect->left, 169 169 rect->bottom - rect->top, 170 parent, (HMENU)id,170 parent, id, 171 171 hInstance, NULL); 172 172 HFONT hFont = (HFONT)SendMessage(parent, WM_GETFONT, (WPARAM)0, (LPARAM)0); … … 176 176 } 177 177 178 static HWND createCheckBox(HWND parent, HINSTANCE hInstance, intid, const char *label, RECT *rect)178 static HWND createCheckBox(HWND parent, HINSTANCE hInstance, HMENU id, const char *label, RECT *rect) 179 179 { 180 180 HWND hwnd = CreateWindowA(WC_BUTTONA, … … 184 184 rect->right - rect->left, 185 185 rect->bottom - rect->top, 186 parent, (HMENU)id,186 parent, id, 187 187 hInstance, NULL); 188 188 HFONT hFont = (HFONT)SendMessage(parent, WM_GETFONT, (WPARAM)0, (LPARAM)0); … … 192 192 } 193 193 194 static HWND createStaticText(HWND parent, HINSTANCE hinstance, intid, const char *text, RECT *rect)194 static HWND createStaticText(HWND parent, HINSTANCE hinstance, HMENU id, const char *text, RECT *rect) 195 195 { 196 196 HWND hwnd = CreateWindowA(WC_STATICA, … … 200 200 rect->right - rect->left, 201 201 rect->bottom - rect->top, 202 parent, (HMENU)id,202 parent, id, 203 203 hinstance, NULL); 204 204 HFONT hFont = (HFONT)SendMessage(parent, WM_GETFONT, (WPARAM)0, (LPARAM)0); … … 208 208 } 209 209 210 HWND createPageScaleComboBox(HWND parent, HINSTANCE hinstance, intid, RECT *rect)210 HWND createPageScaleComboBox(HWND parent, HINSTANCE hinstance, HMENU id, RECT *rect) 211 211 { 212 212 HWND hwnd = CreateWindowA(WC_COMBOBOX, … … 217 217 rect->right - rect->left, 218 218 rect->bottom - rect->top, 219 parent, (HMENU)id,219 parent, id, 220 220 hinstance, NULL); 221 221 HFONT hFont = (HFONT)SendMessage(parent, WM_GETFONT, (WPARAM)0, (LPARAM)0); … … 297 297 pdfGroupBoxRect.top = printRangeGroupRect.bottom + interGroupSpace; 298 298 pdfGroupBoxRect.bottom = pdfGroupBoxRect.top + groupHeight; 299 createGroupBox(hdlg, hinstance, grp3, "PDF Print Options", &pdfGroupBoxRect);299 createGroupBox(hdlg, hinstance, (HMENU)grp3, "PDF Print Options", &pdfGroupBoxRect); 300 300 301 301 RECT textRect; … … 304 304 textRect.top = pdfGroupBoxRect.top + nameLabelRect.top - printerGroupRect.top; 305 305 textRect.bottom = textRect.top + nameLabelRect.bottom - nameLabelRect.top; 306 createStaticText(hdlg, hinstance, stc1, "Page Scaling:", &textRect);306 createStaticText(hdlg, hinstance, (HMENU)stc1, "Page Scaling:", &textRect); 307 307 308 308 RECT comboBoxRect; … … 311 311 comboBoxRect.top = pdfGroupBoxRect.top + printerComboRect.top - printerGroupRect.top; 312 312 comboBoxRect.bottom = textRect.top + 4*(printerComboRect.bottom - printerComboRect.top); 313 HWND comboBoxWind = createPageScaleComboBox(hdlg, hinstance, cmb1, &comboBoxRect);313 HWND comboBoxWind = createPageScaleComboBox(hdlg, hinstance, (HMENU)cmb1, &comboBoxRect); 314 314 315 315 RECT checkBox1Rect; … … 318 318 checkBox1Rect.top = pdfGroupBoxRect.top + statusLabelRect.top - printerGroupRect.top; 319 319 checkBox1Rect.bottom = checkBox1Rect.top + radio1Rect.bottom - radio1Rect.top; 320 HWND checkBox1Wind = createCheckBox(hdlg, hinstance, chx3, "Center", &checkBox1Rect);320 HWND checkBox1Wind = createCheckBox(hdlg, hinstance, (HMENU)chx3, "Center", &checkBox1Rect); 321 321 322 322 RECT checkBox2Rect; … … 325 325 checkBox2Rect.top = checkBox1Rect.top + radio2Rect.top - radio1Rect.top; 326 326 checkBox2Rect.bottom = checkBox2Rect.top + radio1Rect.bottom - radio1Rect.top; 327 HWND checkBox2Wind = createCheckBox(hdlg, hinstance, chx4, "Select page size using document page size", &checkBox2Rect);327 HWND checkBox2Wind = createCheckBox(hdlg, hinstance, (HMENU)chx4, "Select page size using document page size", &checkBox2Rect); 328 328 329 329 // Move OK and Cancel buttons down ensuring they are last in the Z order
Note:
See TracChangeset
for help on using the changeset viewer.