Commit Graph

90 Commits

Author SHA1 Message Date
c26dc8cd78 developing... 2019-10-18 23:49:42 +03:00
815f96a50a Merge remote-tracking branch 'origin/hotfix/v5.2.8' into develop 2019-01-22 15:04:53 +03:00
792a0b35e1 [copyright] For bug 39644
Change address Latvian office.
2019-01-17 17:03:31 +03:00
288d208da3 [copyright] Update Copyright
2018 -> 2019
2019-01-17 16:44:11 +03:00
73ef4140a2 [x2t] rename String.h -> StringExt.h 2018-11-09 14:33:25 +03:00
4acefb020f Remove not required defines 2018-04-19 17:50:31 +03:00
1900e2f0a0 . 2018-04-19 15:08:19 +03:00
f0bb87ba14 . 2018-04-18 13:40:13 +03:00
f57b28cd24 PdfReader builds 2018-04-17 13:40:11 +03:00
8100a2860f 19 2018-04-16 14:14:31 +03:00
c3cd1afa85 Update copyright to 2018 2018-03-01 14:30:24 +03:00
04d197375c change license to 2017 2017-01-17 18:17:26 +03:00
c5c64cb6c2 XpsFile & DjVuFile - fix build 2016-12-16 17:26:20 +03:00
a91293fddb . 2016-10-24 13:32:30 +03:00
a66cd47c4e 1) docbuilder : save to image support
2) docbuilder : add save params
3) IOfficeDrawingFile : set sizes for save to raster
2016-10-21 17:31:30 +03:00
5c6de53d11 core -> new pro files 2016-07-20 15:32:24 +03:00
beb64a6efa utf8 -> utf8 with BOM 2016-06-23 19:23:34 +03:00
7e8eeed3ea add AGPL header 2016-06-23 17:24:44 +03:00
01a3fd5efc to utf8 2016-06-23 16:47:17 +03:00
f275c0a406 static link libstd 2016-06-16 18:48:56 +03:00
e6292fb3aa versions up 2016-05-21 01:42:27 +03:00
5342f784e1 быстрое открытие форматов pdf, djvu, xps. первая версия 2016-05-21 01:37:11 +03:00
1e35ce87cd сделал общий интерфейс для открытия PdfReader, Djvu, Xps 2016-05-21 01:34:00 +03:00
c17cd54073 Changed target directory 2016-05-21 01:17:30 +03:00
2c132fa84e static_link_stdlib
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@67865 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:54:28 +03:00
20c5758525 Merged revision(s) from AVS/Sources/TeamlabOffice/branches/TeamlabOffice_v3.5_CPP:
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@66199 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:45:20 +03:00
f76daec992 уход от экспорта под линуксом OfficeUtils
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65527 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:40:23 +03:00
92333c2035 no export graphics
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64012 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:21:55 +03:00
574951a359 win64
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63898 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:20:43 +03:00
01e2e31c46 linux libxml inner
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63857 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:20:21 +03:00
ef5ee9934a version
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63815 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:20:00 +03:00
59372212a6 Сделано, чтобы все ридеры работали по одной схеме.
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63804 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:19:47 +03:00
ba973a9ad8 работа под линукс
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63685 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:18:07 +03:00
746ccb420b сборка под линукс. странные правки (добавление this->) - не править. Это особенность компилятора gcc
The problem is that templates are processed in two passes (according to the standard, VS does otherwise). In the first pass, before the type substitution, everything that does not depend on the template arguments is looked up and checked. Dependent names are then left to resolve in the second pass, once the type has been substituted. 

Now, in the first pass there is nothing that indicates that next is dependent on template arguments, and thus it needs to resolve before type substitution. Now, because the base type is templated on the template argument of your current template, the compiler cannot look into it (it might be specialized for some types, and without knowing what type T we are instantiating the template with, we cannot know which specialization to use, i.e. the base depends on T and we are checking before knowing T).

The trick of adding this-> turns next into a dependent name, and that in turn means that lookup is delayed until the second pass, where T is known, and because T is known, List<T> is also known and can be looked up into.


git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63683 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:18:05 +03:00
e5a0ebb024 полностью реализован механизм билда статической и динамической библиотеки
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63673 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:17:48 +03:00
fb6bae5ee1 NSString->NSStringExt. Переделано на новый интерфейс IRenderer.
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63573 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:15:37 +03:00
7068e50d00 Вывод номеров страниц при конвертации в Pdf убран из релизной версии.
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63330 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:11:29 +03:00
608c5df9fc Сделана специальная конвертация Djvu в Pdf, при которой ч/б картинки и составные картинки передаются через специальные функции для достижения лучшей скорости и лучшего финального размера pdf-файла.
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63314 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:11:11 +03:00
d92c01c247 Конвертации строк переделаны на функции из DesktopEditor/Common
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62616 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:03:54 +03:00
c9c9ed4f90 Добавлены исходники для сборки кроссплатформенной библиотеки для чтения DjVu файлов.
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62606 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:03:41 +03:00