Ejemplo n.º 1
0
 def __init__(self, parent):
     super().__init__(parent, wx.ID_ANY)
     kwd = {
         'image': wx.ArtProvider.GetBitmap(wx.ART_FIND, size=(20, 20)),
     }
     kwd.update(BTN_MOUVEMENTS)
     self.btn = xboutons.BTN_action(self, **kwd)
Ejemplo n.º 2
0
 def __init__(self,parent):
     super().__init__(parent,wx.ID_ANY)
     kwd = {'label':"Synchroniser\nle prévu",
            'name':'synchro',
            'image':wx.ArtProvider.GetBitmap(wx.ART_FIND,size=(24,24)),
            'help':"Pour reprendre les effectifs prévus par synchronisation avec les incriptions",
            'size' : (150,40)}
     self.btn = xboutons.BTN_action(self,**kwd)
     self.Sizer()
Ejemplo n.º 3
0
 def __init__(self,parent):
     super().__init__(parent,wx.ID_ANY)
     kwd = {'label':"Rappeler\nl'antérieur",
            'name':'rappel',
            'image':wx.ArtProvider.GetBitmap(wx.ART_FIND,size=(24,24)),
            'help':"Pour reprendre une saisie antérieurement validée",
            'size' : (130,40)}
     self.btn = xboutons.BTN_action(self,**kwd)
     self.Sizer()
Ejemplo n.º 4
0
 def __init__(self, parent):
     super().__init__(parent, wx.ID_ANY)
     kwd = {
         'label': "Actualiser",
         'name': 'synchro',
         'image': wx.ArtProvider.GetBitmap(wx.ART_UNDO, size=(24, 24)),
         'help': "Pour appeler la balance",
         'size': (130, 40)
     }
     self.btn = xboutons.BTN_action(self, **kwd)
     self.Sizer()