Пример #1
0
 def open_not_implemented(self, log, pop_width, pop_height):
     pop = Popup(title=lang['Not_yet_implemented'])
     pop.size_hint = None, None
     pop.width = pop_width
     pop.height = pop_height
     pop.content = Label(text=logNot[log])
     pop.open()
Пример #2
0
 def open_not_implemented(self, log, pop_width, pop_height):
     pop = Popup(title=lang['Not_yet_implemented'])
     pop.size_hint = None, None
     pop.width = pop_width
     pop.height = pop_height
     pop.content = Label(text=logNot[log])
     pop.open()
Пример #3
0
    def not_yet_implemented(self):
        popup = Popup(size_hint=[None, None])
        popup.height = 70
        popup.width = 200

        popup.title = self.lang['Not_yet_implemented']
        popup.open()
Пример #4
0
    def not_yet_implemented(self):
        popup = Popup(size_hint=[None, None])
        popup.height = 70
        popup.width = 200

        popup.title = self.lang['Not_yet_implemented']
        popup.open()
Пример #5
0
 def open_popup_new_dir(self, path):
     poupup = Popup(content=PopupNewDir(make_new_dir=self.make_new_dir))
     poupup.title = lang['New_Folder']
     poupup.title_size = 16
     poupup.size_hint = None, None
     poupup.height = 120
     poupup.width = 250
     poupup.id = 'pop_new_dir'
     self.ids['pop_new_dir'] = poupup
     global path_new_dir
     self.path_new_dir = path
     poupup.open()
Пример #6
0
 def open_popup_new_dir(self,path):
     poupup = Popup(content=PopupNewDir(make_new_dir=self.make_new_dir))
     poupup.title = lang['New_Folder']
     poupup.title_size = 16
     poupup.size_hint = None, None
     poupup.height = 120
     poupup.width = 250
     poupup.id = 'pop_new_dir'
     self.ids['pop_new_dir'] = poupup
     global path_new_dir
     self.path_new_dir = path
     poupup.open()