LeenO computo metrico con LibreOffice
3.22.0
Il software libero per la gestione di computi metrici e contabilità lavori.
|
Membri pubblici | |
def | __init__ (self, *Title='', Horz=False, Handler=None, CanClose=True, Items=None) |
def | add (self, *items) |
def | dump (self) |
def | __repr__ (self) |
def | windowClosing (self, evt) |
def | actionPerformed (self, widget, widgetId, param) |
def | run (self) |
def | stop (self, RetVal=None) |
def | show (self) |
def | hide (self) |
def | getWidget (self, wId) |
def | __getitem__ (self, key) |
def | showing (self) |
def | getValue (self) |
def | setData (self, data) |
def | getData (self, fields) |
Main dialog class
Definizione alla linea 2189 del file Dialogs.py.
def Dialogs.Dialog.__init__ | ( | self, | |
* | Title = '' , |
||
Horz = False , |
|||
Handler = None , |
|||
CanClose = True , |
|||
Items = None |
|||
) |
constructor
Definizione alla linea 2193 del file Dialogs.py.
def Dialogs.Dialog.__getitem__ | ( | self, | |
key | |||
) |
Definizione alla linea 2413 del file Dialogs.py.
def Dialogs.Dialog.__repr__ | ( | self | ) |
convert object to string
Definizione alla linea 2242 del file Dialogs.py.
def Dialogs.Dialog.actionPerformed | ( | self, | |
widget, | |||
widgetId, | |||
param | |||
) |
internal event handler will call a provided external event handler
Definizione alla linea 2335 del file Dialogs.py.
def Dialogs.Dialog.add | ( | self, | |
* | items | ||
) |
add elements to dialog
Definizione alla linea 2227 del file Dialogs.py.
def Dialogs.Dialog.dump | ( | self | ) |
convert object to string
Definizione alla linea 2232 del file Dialogs.py.
def Dialogs.Dialog.getData | ( | self, | |
fields | |||
) |
retrieve all data fields with names in 'fields' return a dictionary
Definizione alla linea 2431 del file Dialogs.py.
def Dialogs.Dialog.getValue | ( | self | ) |
Definizione alla linea 2419 del file Dialogs.py.
def Dialogs.Dialog.getWidget | ( | self, | |
wId | |||
) |
get widget by ID
Definizione alla linea 2409 del file Dialogs.py.
def Dialogs.Dialog.hide | ( | self | ) |
Hide the dialog
Definizione alla linea 2400 del file Dialogs.py.
def Dialogs.Dialog.run | ( | self | ) |
Runs the dialog and wait for completion
Definizione alla linea 2353 del file Dialogs.py.
def Dialogs.Dialog.setData | ( | self, | |
data | |||
) |
use a dictionary to fillup dialog data
Definizione alla linea 2422 del file Dialogs.py.
def Dialogs.Dialog.show | ( | self | ) |
Shows the dialog without waiting for completion
Definizione alla linea 2390 del file Dialogs.py.
def Dialogs.Dialog.showing | ( | self | ) |
Definizione alla linea 2416 del file Dialogs.py.
def Dialogs.Dialog.stop | ( | self, | |
RetVal = None |
|||
) |
Stops the dialog Shall be called from inside an handler
Definizione alla linea 2380 del file Dialogs.py.
def Dialogs.Dialog.windowClosing | ( | self, | |
evt | |||
) |
We didn't find a way to stop closing here, so we use the Closeable property of DialogModel to disallow closing Here we just catch the closing op to set return value Even if Closeable is set to False, this hook gets called
Definizione alla linea 2323 del file Dialogs.py.