Overview
Comment: | [lo] fix lexicon editor |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | lo |
Files: | files | file ages | folders |
SHA3-256: |
ad847e39e28067b9e5fa27db9bf6ac4d |
User & Date: | olr on 2020-08-23 05:44:36 |
Other Links: | manifest | tags |
Context
2020-08-26
| ||
17:02 | [fr] ajustements check-in: fb7fbed379 user: olr tags: trunk, fr | |
2020-08-23
| ||
06:26 | merge trunk check-in: b4b3569231 user: olr tags: salxg | |
05:44 | [lo] fix lexicon editor check-in: ad847e39e2 user: olr tags: trunk, lo | |
05:38 | [fx] fix lexicon editor check-in: b14f8f2526 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/oxt/DictOptions/TagsInfo.py from [c0dafbb224] to [190c0fe5da].
1 2 3 4 5 6 7 8 9 10 11 | # Lexicon editor: Information # by Olivier R. # License: MPL 2 import unohelper import uno import traceback import helpers import ti_strings | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Lexicon editor: Information # by Olivier R. # License: MPL 2 import unohelper import uno import traceback import helpers import ti_strings import grammalecte.graphspell.lexgraph_fr as lxg from com.sun.star.task import XJobExecutor from com.sun.star.awt import XActionListener class TagsInfo (unohelper.Base, XActionListener): |
︙ | ︙ | |||
70 71 72 73 74 75 76 | #self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) # fonts xFDTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor") xFDTitle.Height = 9 xFDTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD") xFDTitle.Name = "Verdana" | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) # fonts xFDTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor") xFDTitle.Height = 9 xFDTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD") xFDTitle.Name = "Verdana" xFDSubTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor") xFDSubTitle.Height = 8 xFDSubTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD") xFDSubTitle.Name = "Verdana" # widget nX1 = 10 |
︙ | ︙ | |||
93 94 95 96 97 98 99 | nXB = nX1 + 110 nHeight = 10 #### Add word self._addWidget("add_section", 'FixedLine', nX1, nY0, 100, nHeight, Label = self.dUI.get("information_section", "#err"), FontDescriptor = xFDTitle) | | | | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | nXB = nX1 + 110 nHeight = 10 #### Add word self._addWidget("add_section", 'FixedLine', nX1, nY0, 100, nHeight, Label = self.dUI.get("information_section", "#err"), FontDescriptor = xFDTitle) self._addWidget('save_label', 'FixedText', nX1, nY1, 100, nHeight, Label = self.dUI.get('save', "#err"), FontDescriptor = xFDTitle) self._addWidget('save_desc_label', 'FixedText', nX1, nY1+10, 100, nHeight*5, Label = self.dUI.get('save_desc', "#err"), MultiLine=True) self._addWidget('duplicates_label', 'FixedText', nX1, nY2, 100, nHeight, Label = self.dUI.get('duplicates', "#err"), FontDescriptor = xFDTitle) self._addWidget('duplicates_desc_label', 'FixedText', nX1, nY2+10, 100, nHeight*5, Label = self.dUI.get('duplicates_desc', "#err"), MultiLine=True) self._addWidget('compilation_label', 'FixedText', nX1, nY3, 100, nHeight, Label = self.dUI.get('compilation', "#err"), FontDescriptor = xFDTitle) self._addWidget('compilation_desc_label', 'FixedText', nX1, nY3+10, 100, nHeight*7, Label = self.dUI.get('compilation_desc', "#err"), MultiLine=True) self._addWidget('warning_label', 'FixedText', nX1, nY4, 100, nHeight, Label = self.dUI.get('warning', "#err"), FontDescriptor = xFDTitle) self._addWidget('warning_desc_label', 'FixedText', nX1, nY4+10, 100, nHeight*7, Label = self.dUI.get('warning_desc', "#err"), MultiLine=True) #### Tags self._addWidget("tags_section", 'FixedLine', nXB, nY0, 230, nHeight, Label = self.dUI.get("tags_section", "#err"), FontDescriptor = xFDTitle) self.xGridModel = self._addGrid("list_grid_tags", nXB, nY0+10, 230, 265, [ {"Title": self.dUI.get("tags", "#err"), "ColumnWidth": 40}, |
︙ | ︙ |