Overview
Comment: | [lo] conjugueur as non modal dialog |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | lo |
Files: | files | file ages | folders |
SHA3-256: |
fabbc4bc0c5d02903249538a60c72ea6 |
User & Date: | olr on 2020-02-04 13:58:33 |
Other Links: | manifest | tags |
Context
2020-02-04
| ||
14:06 | [lo] lexicon editor as non modal dialog check-in: 2239a762bd user: olr tags: trunk, lo | |
13:58 | [lo] conjugueur as non modal dialog check-in: fabbc4bc0c user: olr tags: trunk, lo | |
11:35 | [fr] faux positifs check-in: 63781a2dda user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/oxt/Conjugueur/Conjugueur.py from [0d1a5ebb95] to [19edfcebcd].
|
| < > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Conjugueur # by Olivier R. # License: GPL 3 import unohelper import uno import traceback import grammalecte.fr.conj as conj_fr import helpers from com.sun.star.task import XJobExecutor from com.sun.star.awt import XActionListener from com.sun.star.awt import XTopWindowListener class Conjugueur (unohelper.Base, XActionListener, XTopWindowListener, XJobExecutor): def __init__ (self, ctx): self.ctx = ctx self.xSvMgr = self.ctx.ServiceManager self.xContainer = None self.xDialog = None self.lDropDown = ["être", "avoir", "aller", "vouloir", "pouvoir", "devoir", "acquérir", "connaître", "dire", "faire", \ "mettre", "partir", "prendre", "répondre", "savoir", "sentir", "tenir", "vaincre", "venir", "voir", \ |
︙ | ︙ | |||
210 211 212 213 214 215 216 | xWindowSize = helpers.getWindowSize() self.xDialog.PositionX = int((xWindowSize.Width / 2) - (self.xDialog.Width / 2)) self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) ## container self.xContainer = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialog', self.ctx) self.xContainer.setModel(self.xDialog) | | > > < > | > > > > > > > > > > > > > > > > > > > > > > | 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | xWindowSize = helpers.getWindowSize() self.xDialog.PositionX = int((xWindowSize.Width / 2) - (self.xDialog.Width / 2)) self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2)) ## container self.xContainer = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialog', self.ctx) self.xContainer.setModel(self.xDialog) self.xContainer.setVisible(True) # True for non modal dialog #self.xContainer.getControl('input').addEventListener(self) #self.xContainer.getControl('input').addEventCommand('New') self.xContainer.getControl('cbutton').addActionListener(self) self.xContainer.getControl('cbutton').setActionCommand('New') self.xContainer.getControl('oneg').addActionListener(self) self.xContainer.getControl('oneg').setActionCommand('Change') self.xContainer.getControl('opro').addActionListener(self) self.xContainer.getControl('opro').setActionCommand('Change') self.xContainer.getControl('oint').addActionListener(self) self.xContainer.getControl('oint').setActionCommand('Change') self.xContainer.getControl('otco').addActionListener(self) self.xContainer.getControl('otco').setActionCommand('Change') self.xContainer.getControl('ofem').addActionListener(self) self.xContainer.getControl('ofem').setActionCommand('Change') self.xContainer.addTopWindowListener(self) # listener with XTopWindowListener methods #self.xContainer.execute() # Modal dialog ## set verb self.input.Text = sArgs if sArgs else "être" self._newVerb() ## mysterious action xToolkit = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.ExtToolkit', self.ctx) self.xContainer.createPeer(xToolkit, None) # XActionListener def actionPerformed (self, xActionEvent): try: if xActionEvent.ActionCommand == 'Close': self.xContainer.dispose() # Non modal dialog #self.xContainer.endExecute() # Modal dialog elif xActionEvent.ActionCommand == 'New': self._newVerb() elif xActionEvent.ActionCommand == 'Change': if self.oVerb: self._displayResults() else: print(str(xActionEvent)) except: traceback.print_exc() # XTopWindowListener (useful for non modal dialog only) def windowOpened (self, xEvent): return def windowClosing (self, xEvent): self.xContainer.dispose() # Non modal dialog def windowClosed (self, xEvent): return def windowMinimized (self, xEvent): return def windowNormalized (self, xEvent): return def windowActivated (self, xEvent): return def windowDeactivated (self, xEvent): return # XJobExecutor def trigger (self, args): try: xDialog = Conjugueur(self.ctx) xDialog.run(args) except: |
︙ | ︙ |