def __init__(self, campos=2): super().__init__(campos) self.subelemento.data = Atributo() self.subelemento.data.label = TKUtils.obter_label() self.subelemento.data.input = TKUtils.obter_input() self.subelemento.duracao = Atributo() self.subelemento.duracao.label = TKUtils.obter_label() self.subelemento.duracao.input = TKUtils.obter_input()
def __init__(self): super().__init__() self.defs.cnf['title'] = 'Cadastrar Atividade' self.subelemento.titulo = Atributo() self.subelemento.titulo.label = TKUtils.obter_label() self.subelemento.titulo.input = TKUtils.obter_input() self.subelemento.descricao = Atributo() self.subelemento.descricao.label = TKUtils.obter_label() self.subelemento.descricao.input = TKUtils.obter_input()
def __init__(self): super().__init__() self.defs.cnf['title'] = 'Gerar Grupos' self.subelemento.nome = Atributo() self.subelemento.nome.label = TKUtils.obter_label() self.subelemento.nome.input = TKUtils.obter_input() self.subelemento.quantidade = Atributo() self.subelemento.quantidade.label = TKUtils.obter_label() self.subelemento.quantidade.input = TKUtils.obter_input()
def __init__(self): super().__init__(campos=3) self.defs.cnf['title'] = 'Cadastrar Evento' self.subelemento.titulo = Atributo() self.subelemento.titulo.label = TKUtils.obter_label() self.subelemento.titulo.input = TKUtils.obter_input()
def criar_campo_duracao(self, linha): cnf, grid = {}, {} cnf['text'] = 'Duração' cnf['pady'] = 4 cnf['padx'] = 8 grid['row'] = linha grid['column'] = 0 grid['sticky'] = 'W' self.campo_duracao['label'] =\ TKUtils.obter_label(master=self.corpo, cnf=cnf, grid=grid) cnf, grid = {}, {} cnf['placeholder'] = '20' grid['row'] = linha grid['column'] = 1 self.campo_duracao['input'] =\ TKUtils.obter_input(master=self.corpo, cnf=cnf, grid=grid)
def criar_campo_descricao(self): cnf, grid = {}, {} cnf['text'] = 'Descrição' cnf['pady'] = 4 grid['row'] = 1 grid['column'] = 0 grid['sticky'] = 'W' self.campo_descricao['label'] =\ TKUtils.obter_label(master=self.corpo, cnf=cnf, grid=grid) cnf, grid = {}, {} cnf['placeholder'] = 'Programar um drone para capinar um lote' grid['row'] = 1 grid['column'] = 1 self.campo_descricao['input'] =\ TKUtils.obter_input(master=self.corpo, cnf=cnf, grid=grid)
def criar_campo_titulo(self): cnf, grid = {}, {} cnf['text'] = 'Titulo' cnf['pady'] = 4 grid['row'] = 0 grid['column'] = 0 grid['sticky'] = 'W' self.campo_titulo['label'] =\ TKUtils.obter_label(master=self.corpo, cnf=cnf, grid=grid) cnf, grid = {}, {} cnf['placeholder'] = 'Capinar um lote' grid['row'] = 0 grid['column'] = 1 self.campo_titulo['input'] =\ TKUtils.obter_input(master=self.corpo, cnf=cnf, grid=grid)