aggiunti prefisso e suffisso alle avanzatenome
This commit is contained in:
@@ -16,6 +16,8 @@ from libfancylogger import fancyLogger
|
||||
from libconfload import bananaCONF
|
||||
from libsplit import bananaSPLITTER
|
||||
|
||||
from PyQt5.QtCore import QDir
|
||||
|
||||
class bananaMain(PyQt5.QtWidgets.QMainWindow):
|
||||
def __init__(self):
|
||||
PyQt5.QtWidgets.QMainWindow.__init__(self)
|
||||
@@ -116,6 +118,9 @@ class bananaMain(PyQt5.QtWidgets.QMainWindow):
|
||||
self.conf.setParam(keys=('paths','INworkPath',), val=rv)
|
||||
self.ui.lbl_sorg.setText(rv)
|
||||
self.logger.debug("Selezionata Cartella Sorgente: {}".format(rv))
|
||||
fl = QDir(rv).entryList()
|
||||
for f in fl:
|
||||
self.ui.lst_files.addItem(PyQt5.QtWidgets.QListWidgetItem(f))
|
||||
pass
|
||||
|
||||
def selezDest(self):
|
||||
@@ -149,7 +154,6 @@ class bananaTitolo(PyQt5.QtWidgets.QWidget):
|
||||
self.advtitolo.show()
|
||||
pass
|
||||
|
||||
|
||||
class bananaTitoloAvanzate(PyQt5.QtWidgets.QWidget):
|
||||
def __init__(self, confloader=None):
|
||||
PyQt5.QtWidgets.QWidget.__init__(self)
|
||||
@@ -157,12 +161,13 @@ class bananaTitoloAvanzate(PyQt5.QtWidgets.QWidget):
|
||||
self.titoloavui.setupUi(self)
|
||||
self.titoloavui.btn_OK.clicked.connect(self.returnOk)
|
||||
self.titoloavui.btn_annulla.clicked.connect(self.returnKo)
|
||||
self.conf = confloader
|
||||
pass
|
||||
|
||||
def returnOk(self):
|
||||
pass
|
||||
|
||||
def returnOk(self, conf):
|
||||
pass
|
||||
|
||||
def returnKo(self, conf):
|
||||
def returnKo(self):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user