113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
#### Tags
self._addWidget("tags_section", 'FixedLine', nXB, nY0, 230, nHeight, Label = ui.get("tags_section"), FontDescriptor = xFDTitle)
self.xGridModel = self._addGrid("list_grid_tags", nXB, nY0+10, 230, 265, [
{"Title": ui.get("tags"), "ColumnWidth": 40},
{"Title": ui.get("meaning"), "ColumnWidth": 190}
])
self._addWidget('close_button', 'Button', self.xDialog.Width-50, self.xDialog.Height-20, 40, 12, Label = ui.get('close_button'), FontDescriptor = xFDSubTitle, TextColor = 0x550000)
self.loadData()
# container
self.xContainer = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialog', self.ctx)
self.xContainer.setModel(self.xDialog)
self.xGridControlInfo = self.xContainer.getControl('list_grid_tags')
|
|
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
#### Tags
self._addWidget("tags_section", 'FixedLine', nXB, nY0, 230, nHeight, Label = ui.get("tags_section"), FontDescriptor = xFDTitle)
self.xGridModel = self._addGrid("list_grid_tags", nXB, nY0+10, 230, 265, [
{"Title": ui.get("tags"), "ColumnWidth": 40},
{"Title": ui.get("meaning"), "ColumnWidth": 190}
])
self._addWidget('close_button', 'Button', self.xDialog.Width-50, self.xDialog.Height-20, 40, 12, Label = ui.get('close_button'), FontDescriptor = xFDSubTitle, TextColor = 0xBB5555)
self.loadData()
# container
self.xContainer = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialog', self.ctx)
self.xContainer.setModel(self.xDialog)
self.xGridControlInfo = self.xContainer.getControl('list_grid_tags')
|