Re: How to test draw page grid lines?

2021-01-11 Thread Regina Henschel
n->GetBitmapEx(aEmptyPoint, pActiveWin->GetOutputSizePixel())); then I get a entire black bitmap. Does really nobody have an idea? Otherwise I will commit the patch without unit test. Kind regards Regina Regina Henschel schrieb am 08.01.2021 um 18:52: Hi all, I have a fix for bug "Gr

Re: FastSaxParser ans XFastParser

2020-11-26 Thread Regina Henschel
Dante Doménech schrieb am 26-Nov-20 um 23:37: Hello. I'm sorry for asking stuff like this, but I'm not a full fledged developer and stuff like this is quite hard for me. Starmath mathml is supposed to use FastSaxParser (or I understand that). At least changes on FastSaxParserImpl will have

Re: Math/Formula visual editing

2020-12-06 Thread Regina Henschel
Hi Peter, LibreOffice has an in-line formula editor. But no one has improved it in the last seven years, so it is still an "experimental feature". You are welcome to bring it to the regular UI. With this editor you write the formula directly into the main window and the markup is

Re: how does arithmetic exactly work in Calc?

2020-12-03 Thread Regina Henschel
Hi Michel, for example look for ScAdd in https://opengrok.libreoffice.org/xref/core/sc/source/core/tool/interpr5.cxx and for the rtl::math things in https://opengrok.libreoffice.org/xref/core/include/rtl/math.hxx Kind regards Regina Michel Onoff schrieb am 03-Dec-20 um 13:48: Hi, I would

Re: Mathml XMLReader (starmath module)

2020-11-23 Thread Regina Henschel
Hi Dante, Dante Doménech schrieb am 22-Nov-20 um 15:27: Hello. I'm trying to add support for in mathml. The reason why actually isn't supported is because mathml is being loaded as XML. It is similar, but it isn't. That is why when XmlReader finds a mathml particular , it will throw an

Re: LO calc formulas

2020-12-09 Thread Regina Henschel
Hi Dante, the methods for the Calc functions are in files interpr*.cxx and interpre.hxx. Most methods are named kind ScFoo, ScSum for example. They do outer things like checking, that parameters are valid. From there you will easily find the calculating algorithm, often a local method. I

Re: Trouble with SdrMeasureObj (dimension line)

2020-12-01 Thread Regina Henschel
Hi Miklos, hi all, Regina Henschel schrieb am 20-Nov-20 um 11:46: Hi Miklos, Miklos Vajna schrieb am 19-Nov-20 um 09:22: Hi Regina, On Wed, Nov 18, 2020 at 11:56:01PM +0100, Regina Henschel wrote: Do you know examples for unit tests with "drag create" and for unit tests wi

Mirror shape on right-to-left sheet?

2020-12-20 Thread Regina Henschel
Hi all, Start Calc and set the sheet to right-to-left (complex text layout enabled, menu Format). Insert left-to-right arrow, one cell anchored, another page anchored. Save to .ods and open archive. Examine element draw:enhanced-geometry. There is no attribute 'draw:mirror-horizontal' which

Problem with /core/sc/qa/unit/helper/qahelper.cxx

2020-11-12 Thread Regina Henschel
Hi all, with current master and make sc.check I get the error D:/Build_forCommit/core/sc/qa/unit/helper/qahelper.cxx(192): error C2672: 'CppUnit::assertEquals': no matching overloade d function found D:/Build_forCommit/core/sc/qa/unit/helper/qahelper.cxx(192): error C2782: 'void

Re: Problem with /core/sc/qa/unit/helper/qahelper.cxx

2020-11-12 Thread Regina Henschel
Hi Stephan, Stephan Bergmann schrieb am 12-Nov-20 um 21:34: [..] The line #192 is CPPUNIT_ASSERT_EQUAL_MESSAGE("font size should be 10", 200l, aFont.GetFontSize().getHeight()); that "200l" needs to be "tools::Long(200)" now; not sure why that hasn't been fixed yet, please go ahead and

make sc.check fails in subsequent_filters-test in ScFiltersTest::testPreviewMissingObjLink()

2020-11-12 Thread Regina Henschel
Hi all, A "make sc.check" fails for me in current master in subsequent_filters-test in ScFiltersTest::testPreviewMissingObjLink() Line: CPPUNIT_ASSERT_MESSAGE("the ole object links to a missing file, but we should retain its preview", pGraphic); Some days ago, it had not failed. I use

Re: Trouble with SdrMeasureObj (dimension line)

2020-11-20 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 19-Nov-20 um 09:22: Hi Regina, On Wed, Nov 18, 2020 at 11:56:01PM +0100, Regina Henschel wrote: Do you know examples for unit tests with "drag create" and for unit tests with "create default objects"? I'm not sure we have such tests.

Trouble with SdrMeasureObj (dimension line)

2020-11-18 Thread Regina Henschel
Hi all, I have wondered why a SdrMeasureObj, which is anchored "to cell (resize with cell), does not work in Calc (e.g. tdf#137576). Problems detected so far: (A) TRGetBaseGeometry does not include a rotation angle. So a chain of TRGetBaseGeometry followed by TRSetBaseGeometry does not work.

pointer check in unit tests

2020-11-02 Thread Regina Henschel
Hi all, In a unit test I have often sequences like this: ScDocShellRef xDocSh = loadDoc("tdf137020_FlipVertical.", FORMAT_ODS); CPPUNIT_ASSERT_MESSAGE("Failed to load tdf137020_FlipVertical.ods", xDocSh.is()); ScDocument& rDoc = xDocSh->GetDocument(); ScDrawLayer* pDrawLayer =

Re: pointer check in unit tests

2020-11-03 Thread Regina Henschel
+0100, Regina Henschel wrote: ScDocShellRef xDocSh = loadDoc("tdf137020_FlipVertical.", FORMAT_ODS); CPPUNIT_ASSERT_MESSAGE("Failed to load tdf137020_FlipVertical.ods", xDocSh.is()); ScDocument& rDoc = xDocSh->GetDocument(); ScDrawLayer* pDrawLayer = rDoc.GetDrawLaye

Re: Where are Calc functions implemented in libreoffce?

2020-10-22 Thread Regina Henschel
Hi Emmertt, you mean functions like LINEST or GCD? They belong to class ScInterpreter. You might have a look at https://wiki.openoffice.org/wiki/Hacking_Calc_-_The_First_Step and the very good guide written by Eike https://wiki.openoffice.org/wiki/Calc/Implementation/Spreadsheet_Functions If

Problems with shapes on right-to-left sheets

2021-01-06 Thread Regina Henschel
Hi all, I'm investigating problems with shapes on right-to-left sheets. Currently we have; Save and reload of shapes on right-to-left sheets: (A1) cell anchored: shape keeps its orientation (A2) page anchored: shape is horizontal mirrored Toggle between right-to-left and left-to-right (menu

How to test draw page grid lines?

2021-01-08 Thread Regina Henschel
Hi all, I have a fix for bug "Grid does not work in RTL sheet" [https://bugs.documentfoundation.org/show_bug.cgi?id=137083] [https://gerrit.libreoffice.org/c/core/+/108989] But I have no idea how to test it. Error was, that the coordinates of the grid lines were wrongly calculated and so the

Jenkins fails with error: undefined reference to 'uscript_getScript_50' ?

2021-01-15 Thread Regina Henschel
Hi all, my patch https://gerrit.libreoffice.org/c/core/+/109386 fails with error message /home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/linguistic/source/hhconvdic.cxx:57: error: undefined reference to 'uscript_getScript_50' That is unrelated to my patch. I have

Trouble with testTdf137576_LogicRectInDefaultMeasureline

2021-01-01 Thread Regina Henschel
Hi all, sc/qa/unit/scshapetest.cxx(145) had failed in testTdf137576_LogicRectInDefaultMeasureline on Mac. Caolán has disabled it for Mac with 5c6139ac36134a21345525c21e167a356b0892b9. Thank you, Caolán. But Mike Kaganski gets failures too on Windows, see discussion in

Re: understanding ImpForceLineAngle, aGeo and friends

2021-01-02 Thread Regina Henschel
Hi David, Dr. David Alan Gilbert schrieb am 02.01.2021 um 04:35: Hi, I'd appreciate some pointers on shape creation and in particular why ImpForceLineAngle exists. ImpForceLineAngle() exists from the beginning. I see it already in OOo1.1.5. You will find it as ImpForceLineWink() in the

Shapes in RTL sheets

2021-01-31 Thread Regina Henschel
Hi all, since no one answered my question about what behavior is desirable for shapes on right-to-left sheets, I have now implemented it according to my ideas: On saving and loading the shapes are shifted between positive and negative part of the draw page regardless of anchoring type. It

Re: Fwd: CppunitTest_sc_shapetest failing after cd966aac6e

2021-01-26 Thread Regina Henschel
Hi, That test has if (!IsDefaultDPI()) return; to skip it for other UI scaling. So it might be something different? Do you have execute the steps of the test in the GUI of running LibreOffice. Is the measure line there correct after loading? The difference in the test is about 2cm

Review of 'Improve wrap margins in docx filters'

2021-06-16 Thread Regina Henschel
Hi Miklos, hi all, this is about patch https://gerrit.libreoffice.org/c/core/+/115668 From my point of view, the patch is now ready. But it is quite big and has deeper changes, so I would appreciate it if you take a look at the patch. There are still parts missing, but they can be added

Problems with unittest testEffectExtentInline

2021-06-09 Thread Regina Henschel
Hi Miklos, hi all, I'm currently working on https://gerrit.libreoffice.org/c/core/+/115668 WIP improve wrap margins in docx filters My current state is, that distances needed for shadow and glow, for rotation and for fat stroke/border are read from docx, and they are written to docx from docx

Re: Problems with unittest testEffectExtentInline

2021-06-10 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 10.06.2021 um 09:30: Hi Regina, On Wed, Jun 09, 2021 at 03:33:59PM +0200, Regina Henschel wrote: I'm currently working on https://gerrit.libreoffice.org/c/core/+/115668 WIP improve wrap margins in docx filters My current state is, that distances needed

Re: Default set to save like office extension is not working

2021-06-22 Thread Regina Henschel
Hi Ulisses, this is a mailing list for developers, who want to contribute to the code. So it is wrong for your questions. Find the mailing lists for Portuguese at https://wiki.documentfoundation.org/Language/LocalMailingLists#Brazilian_Portuguese Or use an internatinal support channels as

Re: Problems with unittest testEffectExtentInline

2021-06-11 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 11.06.2021 um 09:50: Hi Regina, On Thu, Jun 10, 2021 at 03:12:32PM +0200, Regina Henschel wrote: The problem is more general. What should happen, if the Word document contains settings, that cannot (yet) be represented in LibreOffice? That would

Re: Trouble with unittests testDmlTextshape and testDmlTextshapeB

2021-05-18 Thread Regina Henschel
reas and the general direction is correct. Kind regards Regina Miklos Vajna schrieb am 17.05.2021 um 09:28: Hi Regina, On Sun, May 16, 2021 at 08:03:18PM +0200, Regina Henschel wrote: May I remove the positioning parts from these unittests? If the test fails and your manual testing confirms

Trouble with unittests testDmlTextshape and testDmlTextshapeB

2021-05-16 Thread Regina Henschel
Hi all, I'm currently working on improving the import of group shapes in docx, see https://gerrit.libreoffice.org/c/core/+/115668 In that the unittests testDmlTextshape and testDmlTextshapeB in sw/qa/extras/ooxmlexport/ooxmlexport6.cxx fail. But I think, the problem is not my patch but an

SdrObject from SwFrameFormat

2021-06-01 Thread Regina Henschel
Hi all, in DocxSdrExport::startDMLAnchorInline() in sw/source/filter/ww8/docxsdrexport.cxx I can get the SdrObject of an object with SdrObject* pObject = pFrameFormat->FindRealSdrObject(); Do you know a Scenario, when pObject does not exist when startDMLAnchorInline() is used? Kind regards

Re: SdrObject from SwFrameFormat

2021-06-02 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 02.06.2021 um 08:53: Hi Regina, On Wed, Jun 02, 2021 at 12:48:59AM +0200, Regina Henschel wrote: in DocxSdrExport::startDMLAnchorInline() in sw/source/filter/ww8/docxsdrexport.cxx I can get the SdrObject of an object with SdrObject* pObject = pFrameFormat

Re: Review of 'Improve wrap margins in docx filters'

2021-06-28 Thread Regina Henschel
Hi Miklos, thank you for looking at it. Kind regards Regina Miklos Vajna schrieb am 28.06.2021 um 09:52: Hi Regina, On Wed, Jun 16, 2021 at 06:55:47PM +0200, Regina Henschel wrote: this is about patch https://gerrit.libreoffice.org/c/core/+/115668 From my point of view, the patch is now

Intended behavior for wrap "parallel" for custom shapes?

2021-05-19 Thread Regina Henschel
Hi all, this is a question about correct way of wrap around a shape. The question is connected to bug 142305 "FILEOPEN DOCX wrap is tight in LibreOffice but not in Word". Take a text, insert a custom shape "Circle Pie", and set the wrap mode to "Parallel". Make sure, "Contour" is off. The

Re: Parameter for addShape for a child of a group in oox import

2021-04-30 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 30.04.2021 um 10:19: Hi Regina, On Thu, Apr 29, 2021 at 11:03:14AM +0200, Regina Henschel wrote: Overnight, I found a much easier way. I only need to apply the rotation of the child shape around its center after applying the parent transformation. Please

Parameter for addShape for a child of a group in oox import

2021-04-28 Thread Regina Henschel
Hi all, if a child shape in a group is rotated, then it is currently imported wrongly. The visual effect of the wrong import is, that the shape might be skewed. The correct behavior would be: 1. Build transformation matrix Mg for the unrotated group shape. Would use "off" and "ext" from

Re: [Solved] Parameter for addShape for a child of a group in oox import

2021-04-29 Thread Regina Henschel
Hi all, Overnight, I found a much easier way. I only need to apply the rotation of the child shape around its center after applying the parent transformation. Please excuse me for bothering you with this problem. Kind regards Regina ___

Re: Gradient background for Calc cells

2021-04-25 Thread Regina Henschel
Hi, I would like to point out that the current ODF 1.3 file format does neither allow gradients for cells nor for complete tables. Therefore, whoever wants to implement gradients must -ideally before implementation- develop a concept of how the file format can be extended in a meaningful

Re: Parameter for addShape for a child of a group in oox import

2021-05-03 Thread Regina Henschel
Hi Miklos, answer below. Miklos Vajna schrieb am 03.05.2021 um 15:47: Hi Regina, On Fri, Apr 30, 2021 at 04:39:41PM +0200, Regina Henschel wrote: So I still need a way to transport the values from the group to its children. Besides my first idea to put all group infos into a struct and use

Unit test, with inserting a control?

2021-02-09 Thread Regina Henschel
Hi all, this is about https://gerrit.libreoffice.org/c/core/+/110636, a fix for Bug 140252 - Form control is not in front of other shapes I would need to make a test with this: 1. Open toolbar "Form controls". 2. Select a form control, e.g. the push button. 3. Drag create the button control

Overview about items in settings.xml ?

2021-02-10 Thread Regina Henschel
Hi all, exists an overview about the items in settings.xml? Problem: I have got a docx document and have converted it to odt. Then I start a new document and import all styles from the converted one. Then I mark all content from the converted one and copy it to the new one. Despite of

Re: Unit test, with inserting a control?

2021-02-10 Thread Regina Henschel
want to get. Kind regards Regina On 9/2/21 15:11, Regina Henschel wrote: Hi all, this is about https://gerrit.libreoffice.org/c/core/+/110636, a fix for Bug 140252 - Form control is not in front of other shapes I would need to make a test with this: 1. Open toolbar "Form controls".

Re: Overview about items in settings.xml ?

2021-02-10 Thread Regina Henschel
Hi Micheal, Michael Stahl schrieb am 10.02.2021 um 21:09: On 10.02.21 20:00, Regina Henschel wrote: Hi all, exists an overview about the items in settings.xml? Problem: I have got a docx document and have converted it to odt. Then I start a new document and import all styles from

Re: Unit test, with inserting a control?

2021-02-11 Thread Regina Henschel
Hi Xisco, Regina Henschel schrieb am 10.02.2021 um 22:36: There will be the same problem in my upcoming fix for tdf#134355. There I will need to drag-create a custom-shape. And I have no idea, how to make a drag-create in a cppunit test. The patch for tdf#134355 is now in https

C++ help needed for table with constant values

2021-04-01 Thread Regina Henschel
Hi all, I'm currently working on import of MS 3D effects. For that I need a table of the property values, which are included in the camera presets of OOXML, and their corresponding property values in LO. The current state is in https://gerrit.libreoffice.org/c/core/+/113445 I have

logerrit date: unknown option -- v

2021-03-14 Thread Regina Henschel
Hi all, after ./logerrit submit master I get the message date: unknown option -- v Submit was successful nevertheless. Kind regards Regina ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

Need help for unit test

2021-03-15 Thread Regina Henschel
Hi all, and again I need help for making a unit test. My idea for unit test for https://gerrit.libreoffice.org/c/core/+/112474 is to load a document with a custom shape in 3D mode. It has extrusion direction "Extrusion Backwards", which means, that no side faces are visible. Then I want let

Re: logerrit date: unknown option -- v

2021-03-14 Thread Regina Henschel
:45, Regina Henschel wrote: after   ./logerrit submit master I get the message   date: unknown option -- v Submit was successful nevertheless. It is related to 69959235c3094b811406f734e863a63fc61046c0 and 3646ab583736e6d5e2b3fb4d51857b4b6b777b45. Please check if https://git.libreoffice.org

Re: [Solved] Need help for unit test

2021-03-16 Thread Regina Henschel
Regina Henschel schrieb am 16.03.2021 um 02:58: Hi all, and again I need help for making a unit test. My idea for unit test for https://gerrit.libreoffice.org/c/core/+/112474 is to load a document with a custom shape in 3D mode. It has extrusion direction "Extrusion Backwards", w

oox import/export of custom shape extrusion

2021-03-18 Thread Regina Henschel
Hi all, I want to work on getting oox import/export of custom shape extrusion. In this context I have two questions: (A) In case a grabBag exists, it will be necessary to merge values from the internal "extrusion" property with values from the grabBag on export. In case no grabBag exists,

Bug 140865 - FILEOPEN FILESAVE PPTX: Wordart 3D is lost on round trip

2021-03-09 Thread Regina Henschel
Hi all, I have a fix for it in https://gerrit.libreoffice.org/c/core/+/112185 But I'm not (yet) familiar with oox, so I would appreciate, if someone of you oox experts would have a look at it. Kind regards Regina ___ LibreOffice mailing list

Re: Integer overflow in Calc lcl_getSingleCellAddressFromXMLString nColumn computation

2021-03-09 Thread Regina Henschel
/03/2021 20:18, Regina Henschel wrote: Your problem with table:cell-range-address="PivotChart" might be related to bug https://bugs.documentfoundation.org/show_bug.cgi?id=112783 "PIVOT CHARTS: Save produces invalid file because of invalid cell address" Ah, thanks, that's a

Re: oox import/export of custom shape extrusion

2021-03-19 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 19.03.2021 um 14:36: Hi Regina, On Fri, Mar 19, 2021 at 02:20:54PM +0100, Regina Henschel wrote: It would indeed make the structure much easier, if only the situations "no grabBag" and "only grabBag" need to be handled. So that is f

Re: oox import/export of custom shape extrusion

2021-03-19 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 19.03.2021 um 08:18: Hi Regina, On Thu, Mar 18, 2021 at 04:24:38PM +0100, Regina Henschel wrote: I want to work on getting oox import/export of custom shape extrusion. Great, much appreciated. In case a grabBag exists, it will be necessary to merge

Re: Integer overflow in Calc lcl_getSingleCellAddressFromXMLString nColumn computation

2021-03-08 Thread Regina Henschel
Hi Stephan, Your problem with table:cell-range-address="PivotChart" might be related to bug https://bugs.documentfoundation.org/show_bug.cgi?id=112783 "PIVOT CHARTS: Save produces invalid file because of invalid cell address" Kind regards Regina Stephan Bergmann schrieb am 08.03.2021 um

Fix docx import of wrap 'Square' for groups

2021-04-15 Thread Regina Henschel
Hi Miklos (and you all), I write to you (list in CC) because you are often working in that area. I cannot continue my actual "3D extrusion" project because groups are being imported to Writer incorrectly. So I have tried to fix the import. The current state is in

Re: Fix docx import of wrap 'Square' for groups

2021-04-20 Thread Regina Henschel
eded for Writer. Impress uses the same resulting shape from oox without any scaling. Nevertheless I suggest to use the patch unless someone has concerns. Kind regards Regina Miklos Vajna schrieb am 16.04.2021 um 09:31: Hi Regina, On Fri, Apr 16, 2021 at 12:42:28AM +0200, Regina Henschel wrot

Re: problem with link error in unit test

2021-02-15 Thread Regina Henschel
Hi Noel, my local build on Windows 10 with VS2019 works, but gerrit_mac and gerrit_android_x86_64 complain. https://gerrit.libreoffice.org/c/core/+/110959 I still need help. Kind regards Regina Noel Grandin schrieb am 14.02.2021 um 06:52: Hi You will need to annotate those methods with

Re: [Solved] Unit test, with inserting a control?

2021-02-16 Thread Regina Henschel
Hi all, it is solved now. Solution is in https://gerrit.libreoffice.org/c/core/+/110959 Main idea is, to use the Dispatcher to bring ScTabView in "draw a push button" state and then use the MouseButtonDown, MouseMove and MouseButtonUp methods of FuConstUnoControl to actually draw the push

Re: problem with link error in unit test

2021-02-17 Thread Regina Henschel
Hi Noel, thank you for the help. It works now. Kind regards Regina Noel Grandin schrieb am 16.02.2021 um 08:37: On 2021/02/16 12:22 am, Regina Henschel wrote: Hi Noel, my local build on Windows 10 with VS2019 works, but gerrit_mac and gerrit_android_x86_64 complain. https

Re: Inserting shapes in unittests

2021-02-17 Thread Regina Henschel
Hi Xisco, Xisco Fauli schrieb am 17.02.2021 um 15:49: Hello, Is there any reason why inserting shapes doesn't work in CppUnittests ? I got shapes inserted in Calc in scshapetest.cxx. See around #225, #322, #277, #503, #686, #746. There are different methods used. But I don't know whether

Re: problem with link error in unit test

2021-02-15 Thread Regina Henschel
Hi Noel, Noel Grandin schrieb am 14.02.2021 um 06:52: Hi You will need to annotate those methods with SC_DLLPUBLIC to make them visible to the unit tests OK. That solves the link problem. But I wonder, why it is needed for FuConstUnoControl and not needed for FuConstCustomShape. Kind

Re: Unit test, with inserting a control?

2021-02-11 Thread Regina Henschel
Hi Xisco, Regina Henschel schrieb am 11.02.2021 um 18:58: Hi Xisco, Regina Henschel schrieb am 10.02.2021 um 22:36: There will be the same problem in my upcoming fix for tdf#134355. There I will need to drag-create a custom-shape. And I have no idea, how to make a drag-create in a cppunit

problem with link error in unit test

2021-02-13 Thread Regina Henschel
Hi all, I have added a unit test ScShapeTest::testTdf134355_DragCreateCustomShape() in /sc/qa/unit/scshapetest.cxx https://git.libreoffice.org/core/+/02e4f6c44295004f5c7201a7aa2744fd0518ba9d Now I want to do the same with a form control. But I get link errors 'unresolved external symbol' about

Re: Unit test, with inserting a control?

2021-02-13 Thread Regina Henschel
Regina Xisco Fauli schrieb am 10.02.2021 um 22:03: Hi Regina, I see the patch contains a unittest. Could you eventually find a way to test it or do you also want to test something else ? Cheers On 9/2/21 15:11, Regina Henschel wrote: Hi all, this is about https://gerrit.libreoffice.org/c/core

Re: Playing ping pong with ODF version; does it pose a danger to the end user.

2021-04-22 Thread Regina Henschel
Hi Drew, Drew Jensen schrieb am 22.04.2021 um 18:59: Howdy, Recently I exchanged a few documents between a number of ODF editors: LO 7.1 (all documents were created here with default settings) Google Docs Microsoft Office 365 Apache OpenOffice In the case of all Google and MSO the files open

Re: Why is PolyPolygonShape excluded from DML export?

2021-08-24 Thread Regina Henschel
Hi Miklos, hi all, Excluding polygon shapes from DML export (done as fix for tdf#75254) is no longer needed. But I'm still unsure whether to remove this restriction. Pro: Polygon shapes are already exported as DML in Impress and Calc. So the behavior would become consistent. Polygon shapes

Re: Why is PolyPolygonShape excluded from DML export?

2021-08-16 Thread Regina Henschel
and can try it? Background is, that in case Word 2010 does not show it, the exclusion of DML for PolyPolygon-shapes needs to be kept for docx version 12. Otherwise I would simple remove that part from DocxSdrExport::Impl::isSupportedDMLShape() Kind regards Regina Regina Henschel schrieb am

Problems with filtering by font color

2021-08-16 Thread Regina Henschel
Hi all, LibreOffice has got the new feature in 7.3 to filter by font color (strings and numbers) in Calc. Such color can be determined by a) direct style assignment, including direct formatting b) by number-format, e.g. red for negative numbers c) by conditional formatting Filtering is not

Re: Problems with filtering by font color

2021-08-16 Thread Regina Henschel
Hi Caolán, Caolán McNamara schrieb am 16.08.2021 um 23:00: On Mon, 2021-08-16 at 21:32 +0200, Regina Henschel wrote: How do you think filtering by font color should be specified in the ODF standard? FWIW we have extras/source/palettes/html.soc which lists the color- names of https://www.w3

Re: Improvement for Hebrew writing

2021-09-17 Thread Regina Henschel
Hi Simone, Simone Aiello schrieb am 16.09.2021 um 16:46: The software has problems with the integration of Latin text and Hebrew text. Would it be possible to make a change? Yes. It depends on your skills, how you can help. Or make a plugin to make things better? "plugin" ? Is there

Where have markers to be drawn in custom-shapes?

2021-09-13 Thread Regina Henschel
Hi all, I cannot determine where to draw markers for the draw:enhanced-path of a custom-shape. This question is not about path-objects and not about SVG, but only about custom-shapes. ODF has no rule for it yet. Examples A Consists of one sub-path, which is closed by command Z. M 25,10 L

Re: How to create a lockedCanvas in MSWord?

2021-07-30 Thread Regina Henschel
is imported, it would be good, if you review it. Kind regards Regina Miklos Vajna schrieb am 27.07.2021 um 08:56: Hi Regina, On Mon, Jul 26, 2021 at 02:21:51AM +0200, Regina Henschel wrote: does someone know, how to create a document in MSWord, which uses a lockedCanvas? Or is that only

Review for: tdf#143432 and more, improve wrap contour export

2021-08-11 Thread Regina Henschel
Hi all, this is about patch: "tdf#143432 and more, improve wrap contour export" https://gerrit.libreoffice.org/c/core/+/120169 The patch is ready for now. I would be happy about a review. In case, please let me know, that you want to have a look at the patch. The patch still contains some

Re: Need help with patch for Fontwork shape

2021-10-13 Thread Regina Henschel
Hi Miklos, thank you for starting a next try to build. The build was now successful. Kind regards Regina Regina Henschel schrieb am 12.10.2021 um 17:00: Hi all, I need help with patch https://gerrit.libreoffice.org/c/core/+/123295 It passes Jenkins in Patchset 3. The only change

Need help with patch for Fontwork shape

2021-10-12 Thread Regina Henschel
Hi all, I need help with patch https://gerrit.libreoffice.org/c/core/+/123295 It passes Jenkins in Patchset 3. The only change was then a change in the commit message. But now it fails with always the same problem. I know Jenkins has a "hiccup" sometimes and tried a Rebase. But without

How to deal with dpi-dependent values in unit tests?

2021-10-15 Thread Regina Henschel
Hi all, the values of the bound rectangle of a Fontwork shape are dpi dependent (I don't know why). I could increase the tolerance to cover more dpi settings as done in https://gerrit.libreoffice.org/c/core/+/123613 or I add if (!IsDefaultDPI()) return; as done in

Re: How to deal with dpi-dependent values in unit tests?

2021-10-16 Thread Regina Henschel
Hi Tomaž, Tomaž Vajngerl schrieb am 16.10.2021 um 15:35: Hi Regina, On Fri, Oct 15, 2021 at 1:29 PM Regina Henschel <mailto:rb.hensc...@t-online.de>> wrote: Hi all, the values of the bound rectangle of a Fontwork shape are dpi dependent (I don't know why). I could

Re: Where have markers to be drawn in custom-shapes?

2021-09-21 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 21.09.2021 um 08:35: Hi Regina, On Mon, Sep 13, 2021 at 07:35:10PM +0200, Regina Henschel wrote: I cannot determine where to draw markers for the draw:enhanced-path of a custom-shape. This question is not about path-objects and not about SVG, but only

Problems with item "RotationCenter" in item "Extrusion" in the property "CustomShapeGeometry"

2021-11-21 Thread Regina Henschel
Hi all, The current implementation of "RotationCenter" uses the three XYZ values as if they are in 1/100 Millimeter (Hmm). That is, if the values in ODF file are in Hmm, then the shape behaves as expected. But that does not fit the specifications. The "RotationCenter" appears in the

Re: Tests for improvement in rendering

2021-11-10 Thread Regina Henschel
schrieb am 10.11.2021 um 22:14: Hi Regina, On Tue, Nov 9, 2021 at 11:28 PM Regina Henschel <mailto:rb.hensc...@t-online.de>> wrote: Hi Tomaž, your dump works in principle. I can read the xml-file and build the assertXPath. For example, I am able to write a test about the

Re: Problems with item "RotationCenter" in item "Extrusion" in the property "CustomShapeGeometry"

2021-11-24 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 22.11.2021 um 08:21: Yes, if our doc model wants to work in fractions and MSO works in EMUs, then doing this mapping in the MSO import/export filters sounds good to me. The situation is different. All specifications and our own description in API use

Re: Another Windows configure issue: error: Could not figure out what C++ library this is

2021-11-27 Thread Regina Henschel
Hi Ilmari, Ilmari Lauhakangas schrieb am 27.11.2021 um 11:56: One of the three new devs who faced an issue of our configure not finding VS updated his Windows 8.1 and got one step further, but is now stuck with another issue. Any ideas on what to check? Ilmari user@computer ~/lode/dev/core

Re: Problems with item "RotationCenter" in item "Extrusion" in the property "CustomShapeGeometry"

2021-11-25 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 25.11.2021 um 09:33: Hi Regina, On Wed, Nov 24, 2021 at 04:50:38PM +0100, Regina Henschel wrote: The situation is different. All specifications and our own description in API use "fraction of shape size", but our internal property "RotationC

Re: Tests for improvement in rendering

2021-11-08 Thread Regina Henschel
Hi Tomaž, thank you for adding that part and providing an example. Tomaž Vajngerl schrieb am 08.11.2021 um 16:33: Hi Regina, On Fri, Nov 5, 2021 at 10:01 AM Tomaž Vajngerl > wrote: Hi Regina, I guess rendering the shape to primitives and then dumping the

Re: Tests for improvement in rendering

2021-11-09 Thread Regina Henschel
Hi Tomaž, your dump works in principle. I can read the xml-file and build the assertXPath. For example, I am able to write a test about the material properties 'specular' and 'specularIntensity' of an object. Such is needed to verify correct values in case of material 'Metal'. But while

Tests for improvement in rendering

2021-11-04 Thread Regina Henschel
Hi all, I have a first version of a patch for https://bugs.documentfoundation.org/show_bug.cgi?id=140321 "Fontwork: Change in surface has no effect" in Gerrit https://gerrit.libreoffice.org/c/core/+/124720 The improvements are about rendering. I'm looking for a partner, who can write tests for

Re: ESC meeting agenda: 2021-12-09 16:00 Berlin time

2021-12-08 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 08.12.2021 um 16:37: * Pending Action Items:     + reach out to Regina regarding the ODF tender spec (Michael S) Michael Stahl has contacted me. I had already a list of about 80 relevant bugs from my comment on the tender. I have agreed and already

How update projection when transformation matrix is applied to a 3D scene?

2021-12-07 Thread Regina Henschel
Hi all, I'm going to correct errors in custom shape extrusion. That is in https://opengrok.libreoffice.org/xref/core/svx/source/customshapes/EnhancedCustomShape3d.cxx The current solution calculates a transformation matrix aNewTransform and applies it to the scene by pScene->NbcSetTransform in

Review list of bugs with ODF relationship to be covered by a TDF tender

2021-12-16 Thread Regina Henschel
Hi all, hi Florian, TDF is planning a tender "Cleanup & further improve ODF conformance". In case you have not noticed it, the call for comments had been on https://listarchives.documentfoundation.org/www/board-discuss/2021/msg00253.html I have been asked to review relevant bugs. The

Adding item to ReleaseNotes

2021-12-16 Thread Regina Henschel
Hi all, I have added an item to https://wiki.documentfoundation.org/ReleaseNotes/7.3 But that is a multilingua page and I don't know what to do now. Kind regards, Regina

Re: Need a help

2021-12-15 Thread Regina Henschel
Hi Rajeev, Rajeev Kumar schrieb am 14.12.2021 um 19:28: Hi everyone, I have a doubt. when we import ppt in LibreOffice. It extracts and parses all the xml files to layout. ? If you import ppt, then there is no XML. It you have XML, then you are likely importing pptx. ppt and pptx are

Re: Why is PolyPolygonShape excluded from DML export?

2021-07-21 Thread Regina Henschel
Hi Miklos, thank you for pointing me to that bug report. Miklos Vajna schrieb am 21.07.2021 um 08:46: Hi Regina, On Tue, Jul 20, 2021 at 12:08:30AM +0200, Regina Henschel wrote: Is it possible, that the exclusion was only forgotten to remove, or is there a valid reason? This was added

Why is PolyPolygonShape excluded from DML export?

2021-07-19 Thread Regina Henschel
Hi all, this is about export ODF shape -> OOXML. bool DocxSdrExport::Impl::isSupportedDMLShape(const uno::Reference& xShape) { uno::Reference xServiceInfo(xShape, uno::UNO_QUERY_THROW); if (xServiceInfo->supportsService("com.sun.star.drawing.PolyPolygonShape") ||

Re: How to create a lockedCanvas in MSWord?

2021-07-27 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 27.07.2021 um 08:56: Hi Regina, On Mon, Jul 26, 2021 at 02:21:51AM +0200, Regina Henschel wrote: does someone know, how to create a document in MSWord, which uses a lockedCanvas? Or is that only possible via macro? It would be good to be able to generate

How to create a lockedCanvas in MSWord?

2021-07-25 Thread Regina Henschel
Hi all, does someone know, how to create a document in MSWord, which uses a lockedCanvas? Or is that only possible via macro? It would be good to be able to generate own test documents. Kind regards Regina ___ LibreOffice mailing list

Re: How to create a lockedCanvas in MSWord?

2021-07-28 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 27.07.2021 um 08:56: Hi Regina, I attach a sample I just created this way in MSO 2007. Can you please make a lockedCanvas example for me, containing a small image and a straight line? Perhaps attach it to

Re: Problems with lighting of extruded custom-shapes

2022-01-07 Thread Regina Henschel
Hi Miklos, Miklos Vajna schrieb am 07.01.2022 um 14:30: Somewhat related, if you have some RTF document where these properties are not imported, but the DOC version of it is imported correctly, I would be interested to look at that -- could you please file a bug and CC me? Bug for RTF import

Re: Problems with lighting of extruded custom-shapes

2022-01-07 Thread Regina Henschel
Hi all, (Hi Miklos, I repeat here my answer to you for the list, because CC didn't work because the attachment was too large.) Miklos Vajna schrieb am 07.01.2022 um 14:30: Hi Regina, On Thu, Jan 06, 2022 at 10:33:54PM +0100, Regina Henschel wrote: If the OOXML 'scene3d' and 'sp3d

Re: Ideas for improving DevGuide

2022-03-08 Thread Regina Henschel
Hi Hossein, Hossein Nourikhah schrieb am 08.03.2022 um 13:05: Hello, As you may already know, with the efforts from Ilmari, DevGuide is now imported as multi-page chapters into the TDF Wiki. There were some performance and formatting problems that are now resolved, or will be fixed soon

<    3   4   5   6   7   8   9   10   11   12   >