tutte le finestre hanno le icone al loro posto
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>480</width>
|
<width>480</width>
|
||||||
<height>452</height>
|
<height>524</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@@ -22,6 +22,10 @@
|
|||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Avanzate Titolo</string>
|
<string>Avanzate Titolo</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="windowIcon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-smartphone-ram-100.png</normaloff>:/icons/icons8-smartphone-ram-100.png</iconset>
|
||||||
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="1" column="0" colspan="2">
|
<item row="1" column="0" colspan="2">
|
||||||
<widget class="Line" name="line">
|
<widget class="Line" name="line">
|
||||||
@@ -248,6 +252,8 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="resources.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
|||||||
@@ -15,4 +15,10 @@ if __name__ == '__main__':
|
|||||||
fp = open(r".\compiledUI\\"+f.replace("ui","py"), 'w')
|
fp = open(r".\compiledUI\\"+f.replace("ui","py"), 'w')
|
||||||
fp.write(str(rv.stdout, encoding='utf-8').replace('\r', ''))
|
fp.write(str(rv.stdout, encoding='utf-8').replace('\r', ''))
|
||||||
fp.close()
|
fp.close()
|
||||||
|
command = r'pyrcc5.exe '+'resources.qrc'
|
||||||
|
print (command)
|
||||||
|
rv = subprocess.run(command, capture_output=True)
|
||||||
|
fp = open(r".\compiledUI\\resources_rc.py", 'w')
|
||||||
|
fp.write(str(rv.stdout, encoding='utf-8').replace('\r', ''))
|
||||||
|
fp.close()
|
||||||
pass
|
pass
|
||||||
@@ -13,7 +13,7 @@ class Ui_mainwin(object):
|
|||||||
def setupUi(self, mainwin):
|
def setupUi(self, mainwin):
|
||||||
mainwin.setObjectName("mainwin")
|
mainwin.setObjectName("mainwin")
|
||||||
mainwin.setEnabled(True)
|
mainwin.setEnabled(True)
|
||||||
mainwin.resize(678, 581)
|
mainwin.resize(756, 703)
|
||||||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
|
||||||
sizePolicy.setHorizontalStretch(0)
|
sizePolicy.setHorizontalStretch(0)
|
||||||
sizePolicy.setVerticalStretch(0)
|
sizePolicy.setVerticalStretch(0)
|
||||||
@@ -24,6 +24,9 @@ class Ui_mainwin(object):
|
|||||||
font.setPointSize(10)
|
font.setPointSize(10)
|
||||||
mainwin.setFont(font)
|
mainwin.setFont(font)
|
||||||
mainwin.setFocusPolicy(QtCore.Qt.NoFocus)
|
mainwin.setFocusPolicy(QtCore.Qt.NoFocus)
|
||||||
|
icon = QtGui.QIcon()
|
||||||
|
icon.addPixmap(QtGui.QPixmap(":/icons/icons8-banana-split-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
mainwin.setWindowIcon(icon)
|
||||||
mainwin.setAnimated(False)
|
mainwin.setAnimated(False)
|
||||||
self.centralwidget = QtWidgets.QWidget(mainwin)
|
self.centralwidget = QtWidgets.QWidget(mainwin)
|
||||||
self.centralwidget.setObjectName("centralwidget")
|
self.centralwidget.setObjectName("centralwidget")
|
||||||
@@ -40,43 +43,6 @@ class Ui_mainwin(object):
|
|||||||
self.wgt_mainPage1.setObjectName("wgt_mainPage1")
|
self.wgt_mainPage1.setObjectName("wgt_mainPage1")
|
||||||
self.gridLayout = QtWidgets.QGridLayout(self.wgt_mainPage1)
|
self.gridLayout = QtWidgets.QGridLayout(self.wgt_mainPage1)
|
||||||
self.gridLayout.setObjectName("gridLayout")
|
self.gridLayout.setObjectName("gridLayout")
|
||||||
self.btn_avanti = QtWidgets.QPushButton(self.wgt_mainPage1)
|
|
||||||
self.btn_avanti.setMinimumSize(QtCore.QSize(79, 0))
|
|
||||||
self.btn_avanti.setMaximumSize(QtCore.QSize(80, 16777215))
|
|
||||||
self.btn_avanti.setObjectName("btn_avanti")
|
|
||||||
self.gridLayout.addWidget(self.btn_avanti, 4, 3, 1, 1)
|
|
||||||
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
|
|
||||||
self.verticalLayout_2.setSizeConstraint(QtWidgets.QLayout.SetMinimumSize)
|
|
||||||
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
|
||||||
self.btn_cartellasorg = QtWidgets.QPushButton(self.wgt_mainPage1)
|
|
||||||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
|
||||||
sizePolicy.setHorizontalStretch(0)
|
|
||||||
sizePolicy.setVerticalStretch(0)
|
|
||||||
sizePolicy.setHeightForWidth(self.btn_cartellasorg.sizePolicy().hasHeightForWidth())
|
|
||||||
self.btn_cartellasorg.setSizePolicy(sizePolicy)
|
|
||||||
self.btn_cartellasorg.setObjectName("btn_cartellasorg")
|
|
||||||
self.verticalLayout_2.addWidget(self.btn_cartellasorg)
|
|
||||||
self.btn_cartelladest = QtWidgets.QPushButton(self.wgt_mainPage1)
|
|
||||||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
|
||||||
sizePolicy.setHorizontalStretch(0)
|
|
||||||
sizePolicy.setVerticalStretch(0)
|
|
||||||
sizePolicy.setHeightForWidth(self.btn_cartelladest.sizePolicy().hasHeightForWidth())
|
|
||||||
self.btn_cartelladest.setSizePolicy(sizePolicy)
|
|
||||||
self.btn_cartelladest.setObjectName("btn_cartelladest")
|
|
||||||
self.verticalLayout_2.addWidget(self.btn_cartelladest)
|
|
||||||
self.gridLayout.addLayout(self.verticalLayout_2, 0, 1, 1, 1)
|
|
||||||
self.verticalLayout_4 = QtWidgets.QVBoxLayout()
|
|
||||||
self.verticalLayout_4.setObjectName("verticalLayout_4")
|
|
||||||
self.lbl_sorg = QtWidgets.QLabel(self.wgt_mainPage1)
|
|
||||||
self.lbl_sorg.setObjectName("lbl_sorg")
|
|
||||||
self.verticalLayout_4.addWidget(self.lbl_sorg)
|
|
||||||
self.lbl_dest = QtWidgets.QLabel(self.wgt_mainPage1)
|
|
||||||
self.lbl_dest.setObjectName("lbl_dest")
|
|
||||||
self.verticalLayout_4.addWidget(self.lbl_dest)
|
|
||||||
self.gridLayout.addLayout(self.verticalLayout_4, 0, 2, 1, 2)
|
|
||||||
self.lst_files = QtWidgets.QListWidget(self.wgt_mainPage1)
|
|
||||||
self.lst_files.setObjectName("lst_files")
|
|
||||||
self.gridLayout.addWidget(self.lst_files, 3, 0, 1, 4)
|
|
||||||
self.verticalLayout = QtWidgets.QVBoxLayout()
|
self.verticalLayout = QtWidgets.QVBoxLayout()
|
||||||
self.verticalLayout.setObjectName("verticalLayout")
|
self.verticalLayout.setObjectName("verticalLayout")
|
||||||
self.lbl_cartellasorg = QtWidgets.QLabel(self.wgt_mainPage1)
|
self.lbl_cartellasorg = QtWidgets.QLabel(self.wgt_mainPage1)
|
||||||
@@ -92,11 +58,97 @@ class Ui_mainwin(object):
|
|||||||
self.lbl_cartelladest.setObjectName("lbl_cartelladest")
|
self.lbl_cartelladest.setObjectName("lbl_cartelladest")
|
||||||
self.verticalLayout.addWidget(self.lbl_cartelladest)
|
self.verticalLayout.addWidget(self.lbl_cartelladest)
|
||||||
self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
|
self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
|
||||||
|
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
|
||||||
|
self.verticalLayout_2.setSizeConstraint(QtWidgets.QLayout.SetMinimumSize)
|
||||||
|
self.verticalLayout_2.setObjectName("verticalLayout_2")
|
||||||
|
self.btn_cartellasorg = QtWidgets.QPushButton(self.wgt_mainPage1)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.btn_cartellasorg.sizePolicy().hasHeightForWidth())
|
||||||
|
self.btn_cartellasorg.setSizePolicy(sizePolicy)
|
||||||
|
self.btn_cartellasorg.setText("")
|
||||||
|
icon1 = QtGui.QIcon()
|
||||||
|
icon1.addPixmap(QtGui.QPixmap(":/icons/icons8-add-folder-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.btn_cartellasorg.setIcon(icon1)
|
||||||
|
self.btn_cartellasorg.setIconSize(QtCore.QSize(30, 30))
|
||||||
|
self.btn_cartellasorg.setFlat(True)
|
||||||
|
self.btn_cartellasorg.setObjectName("btn_cartellasorg")
|
||||||
|
self.verticalLayout_2.addWidget(self.btn_cartellasorg)
|
||||||
|
self.btn_cartelladest = QtWidgets.QPushButton(self.wgt_mainPage1)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.btn_cartelladest.sizePolicy().hasHeightForWidth())
|
||||||
|
self.btn_cartelladest.setSizePolicy(sizePolicy)
|
||||||
|
self.btn_cartelladest.setText("")
|
||||||
|
icon2 = QtGui.QIcon()
|
||||||
|
icon2.addPixmap(QtGui.QPixmap(":/icons/icons8-downloads-folder-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.btn_cartelladest.setIcon(icon2)
|
||||||
|
self.btn_cartelladest.setIconSize(QtCore.QSize(30, 30))
|
||||||
|
self.btn_cartelladest.setFlat(True)
|
||||||
|
self.btn_cartelladest.setObjectName("btn_cartelladest")
|
||||||
|
self.verticalLayout_2.addWidget(self.btn_cartelladest)
|
||||||
|
self.gridLayout.addLayout(self.verticalLayout_2, 0, 1, 1, 1)
|
||||||
|
self.verticalLayout_4 = QtWidgets.QVBoxLayout()
|
||||||
|
self.verticalLayout_4.setObjectName("verticalLayout_4")
|
||||||
|
self.lbl_sorg = QtWidgets.QLabel(self.wgt_mainPage1)
|
||||||
|
self.lbl_sorg.setObjectName("lbl_sorg")
|
||||||
|
self.verticalLayout_4.addWidget(self.lbl_sorg)
|
||||||
|
self.lbl_dest = QtWidgets.QLabel(self.wgt_mainPage1)
|
||||||
|
self.lbl_dest.setObjectName("lbl_dest")
|
||||||
|
self.verticalLayout_4.addWidget(self.lbl_dest)
|
||||||
|
self.gridLayout.addLayout(self.verticalLayout_4, 0, 2, 1, 1)
|
||||||
self.line = QtWidgets.QFrame(self.wgt_mainPage1)
|
self.line = QtWidgets.QFrame(self.wgt_mainPage1)
|
||||||
self.line.setFrameShape(QtWidgets.QFrame.HLine)
|
self.line.setFrameShape(QtWidgets.QFrame.HLine)
|
||||||
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
|
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
|
||||||
self.line.setObjectName("line")
|
self.line.setObjectName("line")
|
||||||
self.gridLayout.addWidget(self.line, 1, 0, 1, 4)
|
self.gridLayout.addWidget(self.line, 1, 0, 1, 3)
|
||||||
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
||||||
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
||||||
|
self.label_2 = QtWidgets.QLabel(self.wgt_mainPage1)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Preferred)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.label_2.sizePolicy().hasHeightForWidth())
|
||||||
|
self.label_2.setSizePolicy(sizePolicy)
|
||||||
|
self.label_2.setObjectName("label_2")
|
||||||
|
self.horizontalLayout_2.addWidget(self.label_2)
|
||||||
|
self.rad_fileNew = QtWidgets.QRadioButton(self.wgt_mainPage1)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.rad_fileNew.sizePolicy().hasHeightForWidth())
|
||||||
|
self.rad_fileNew.setSizePolicy(sizePolicy)
|
||||||
|
self.rad_fileNew.setChecked(True)
|
||||||
|
self.rad_fileNew.setObjectName("rad_fileNew")
|
||||||
|
self.horizontalLayout_2.addWidget(self.rad_fileNew)
|
||||||
|
self.rad_fileOld = QtWidgets.QRadioButton(self.wgt_mainPage1)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.rad_fileOld.sizePolicy().hasHeightForWidth())
|
||||||
|
self.rad_fileOld.setSizePolicy(sizePolicy)
|
||||||
|
self.rad_fileOld.setObjectName("rad_fileOld")
|
||||||
|
self.horizontalLayout_2.addWidget(self.rad_fileOld)
|
||||||
|
self.btn_avanti = QtWidgets.QPushButton(self.wgt_mainPage1)
|
||||||
|
self.btn_avanti.setMinimumSize(QtCore.QSize(100, 40))
|
||||||
|
self.btn_avanti.setMaximumSize(QtCore.QSize(80, 16777215))
|
||||||
|
font = QtGui.QFont()
|
||||||
|
font.setPointSize(11)
|
||||||
|
self.btn_avanti.setFont(font)
|
||||||
|
self.btn_avanti.setLayoutDirection(QtCore.Qt.RightToLeft)
|
||||||
|
icon3 = QtGui.QIcon()
|
||||||
|
icon3.addPixmap(QtGui.QPixmap(":/icons/icons8-arrow-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.btn_avanti.setIcon(icon3)
|
||||||
|
self.btn_avanti.setIconSize(QtCore.QSize(25, 25))
|
||||||
|
self.btn_avanti.setFlat(False)
|
||||||
|
self.btn_avanti.setObjectName("btn_avanti")
|
||||||
|
self.horizontalLayout_2.addWidget(self.btn_avanti)
|
||||||
|
self.gridLayout.addLayout(self.horizontalLayout_2, 4, 0, 1, 3)
|
||||||
|
self.lst_files = QtWidgets.QListWidget(self.wgt_mainPage1)
|
||||||
|
self.lst_files.setObjectName("lst_files")
|
||||||
|
self.gridLayout.addWidget(self.lst_files, 3, 0, 1, 3)
|
||||||
self.label = QtWidgets.QLabel(self.wgt_mainPage1)
|
self.label = QtWidgets.QLabel(self.wgt_mainPage1)
|
||||||
font = QtGui.QFont()
|
font = QtGui.QFont()
|
||||||
font.setPointSize(11)
|
font.setPointSize(11)
|
||||||
@@ -105,17 +157,7 @@ class Ui_mainwin(object):
|
|||||||
self.label.setFont(font)
|
self.label.setFont(font)
|
||||||
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
self.label.setObjectName("label")
|
self.label.setObjectName("label")
|
||||||
self.gridLayout.addWidget(self.label, 2, 0, 1, 4)
|
self.gridLayout.addWidget(self.label, 2, 0, 1, 3)
|
||||||
self.rad_fileOld = QtWidgets.QRadioButton(self.wgt_mainPage1)
|
|
||||||
self.rad_fileOld.setObjectName("rad_fileOld")
|
|
||||||
self.gridLayout.addWidget(self.rad_fileOld, 4, 2, 1, 1)
|
|
||||||
self.rad_fileNew = QtWidgets.QRadioButton(self.wgt_mainPage1)
|
|
||||||
self.rad_fileNew.setChecked(True)
|
|
||||||
self.rad_fileNew.setObjectName("rad_fileNew")
|
|
||||||
self.gridLayout.addWidget(self.rad_fileNew, 4, 1, 1, 1)
|
|
||||||
self.label_2 = QtWidgets.QLabel(self.wgt_mainPage1)
|
|
||||||
self.label_2.setObjectName("label_2")
|
|
||||||
self.gridLayout.addWidget(self.label_2, 4, 0, 1, 1)
|
|
||||||
self.wgt_main.addTab(self.wgt_mainPage1, "")
|
self.wgt_main.addTab(self.wgt_mainPage1, "")
|
||||||
self.verticalLayout_3.addWidget(self.wgt_main)
|
self.verticalLayout_3.addWidget(self.wgt_main)
|
||||||
self.line_2 = QtWidgets.QFrame(self.centralwidget)
|
self.line_2 = QtWidgets.QFrame(self.centralwidget)
|
||||||
@@ -129,18 +171,23 @@ class Ui_mainwin(object):
|
|||||||
sizePolicy.setVerticalStretch(0)
|
sizePolicy.setVerticalStretch(0)
|
||||||
sizePolicy.setHeightForWidth(self.wgt_sub.sizePolicy().hasHeightForWidth())
|
sizePolicy.setHeightForWidth(self.wgt_sub.sizePolicy().hasHeightForWidth())
|
||||||
self.wgt_sub.setSizePolicy(sizePolicy)
|
self.wgt_sub.setSizePolicy(sizePolicy)
|
||||||
self.wgt_sub.setMinimumSize(QtCore.QSize(0, 75))
|
self.wgt_sub.setMinimumSize(QtCore.QSize(0, 50))
|
||||||
self.wgt_sub.setMaximumSize(QtCore.QSize(16777215, 500))
|
self.wgt_sub.setMaximumSize(QtCore.QSize(16777215, 500))
|
||||||
self.wgt_sub.setObjectName("wgt_sub")
|
self.wgt_sub.setObjectName("wgt_sub")
|
||||||
self.horizontalLayout = QtWidgets.QHBoxLayout(self.wgt_sub)
|
self.horizontalLayout = QtWidgets.QHBoxLayout(self.wgt_sub)
|
||||||
self.horizontalLayout.setObjectName("horizontalLayout")
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
||||||
self.lbl_log = QtWidgets.QLabel(self.wgt_sub)
|
self.lbl_log = QtWidgets.QLabel(self.wgt_sub)
|
||||||
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Minimum)
|
||||||
|
sizePolicy.setHorizontalStretch(0)
|
||||||
|
sizePolicy.setVerticalStretch(0)
|
||||||
|
sizePolicy.setHeightForWidth(self.lbl_log.sizePolicy().hasHeightForWidth())
|
||||||
|
self.lbl_log.setSizePolicy(sizePolicy)
|
||||||
self.lbl_log.setObjectName("lbl_log")
|
self.lbl_log.setObjectName("lbl_log")
|
||||||
self.horizontalLayout.addWidget(self.lbl_log)
|
self.horizontalLayout.addWidget(self.lbl_log)
|
||||||
self.verticalLayout_3.addWidget(self.wgt_sub)
|
self.verticalLayout_3.addWidget(self.wgt_sub)
|
||||||
mainwin.setCentralWidget(self.centralwidget)
|
mainwin.setCentralWidget(self.centralwidget)
|
||||||
self.menubar = QtWidgets.QMenuBar(mainwin)
|
self.menubar = QtWidgets.QMenuBar(mainwin)
|
||||||
self.menubar.setGeometry(QtCore.QRect(0, 0, 678, 26))
|
self.menubar.setGeometry(QtCore.QRect(0, 0, 756, 26))
|
||||||
self.menubar.setNativeMenuBar(True)
|
self.menubar.setNativeMenuBar(True)
|
||||||
self.menubar.setObjectName("menubar")
|
self.menubar.setObjectName("menubar")
|
||||||
self.bar_file = QtWidgets.QMenu(self.menubar)
|
self.bar_file = QtWidgets.QMenu(self.menubar)
|
||||||
@@ -157,14 +204,27 @@ class Ui_mainwin(object):
|
|||||||
self.toolBar.setObjectName("toolBar")
|
self.toolBar.setObjectName("toolBar")
|
||||||
mainwin.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar)
|
mainwin.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar)
|
||||||
self.actionCarica_Preset = QtWidgets.QAction(mainwin)
|
self.actionCarica_Preset = QtWidgets.QAction(mainwin)
|
||||||
|
icon4 = QtGui.QIcon()
|
||||||
|
icon4.addPixmap(QtGui.QPixmap(":/icons/icons8-documents-folder-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.actionCarica_Preset.setIcon(icon4)
|
||||||
|
self.actionCarica_Preset.setIconVisibleInMenu(True)
|
||||||
self.actionCarica_Preset.setObjectName("actionCarica_Preset")
|
self.actionCarica_Preset.setObjectName("actionCarica_Preset")
|
||||||
self.actionSalva_Preset = QtWidgets.QAction(mainwin)
|
self.actionSalva_Preset = QtWidgets.QAction(mainwin)
|
||||||
|
icon5 = QtGui.QIcon()
|
||||||
|
icon5.addPixmap(QtGui.QPixmap(":/icons/icons8-save-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.actionSalva_Preset.setIcon(icon5)
|
||||||
self.actionSalva_Preset.setObjectName("actionSalva_Preset")
|
self.actionSalva_Preset.setObjectName("actionSalva_Preset")
|
||||||
self.actionOpzioni = QtWidgets.QAction(mainwin)
|
self.actionOpzioni = QtWidgets.QAction(mainwin)
|
||||||
self.actionOpzioni.setObjectName("actionOpzioni")
|
self.actionOpzioni.setObjectName("actionOpzioni")
|
||||||
self.actionLingua = QtWidgets.QAction(mainwin)
|
self.actionLingua = QtWidgets.QAction(mainwin)
|
||||||
|
icon6 = QtGui.QIcon()
|
||||||
|
icon6.addPixmap(QtGui.QPixmap(":/icons/icons8-globe-earth-80.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.actionLingua.setIcon(icon6)
|
||||||
self.actionLingua.setObjectName("actionLingua")
|
self.actionLingua.setObjectName("actionLingua")
|
||||||
self.actionAvanzate = QtWidgets.QAction(mainwin)
|
self.actionAvanzate = QtWidgets.QAction(mainwin)
|
||||||
|
icon7 = QtGui.QIcon()
|
||||||
|
icon7.addPixmap(QtGui.QPixmap(":/icons/icons8-smartphone-ram-100.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
self.actionAvanzate.setIcon(icon7)
|
||||||
self.actionAvanzate.setObjectName("actionAvanzate")
|
self.actionAvanzate.setObjectName("actionAvanzate")
|
||||||
self.bar_file.addAction(self.actionCarica_Preset)
|
self.bar_file.addAction(self.actionCarica_Preset)
|
||||||
self.bar_file.addAction(self.actionSalva_Preset)
|
self.bar_file.addAction(self.actionSalva_Preset)
|
||||||
@@ -179,17 +239,15 @@ class Ui_mainwin(object):
|
|||||||
def retranslateUi(self, mainwin):
|
def retranslateUi(self, mainwin):
|
||||||
_translate = QtCore.QCoreApplication.translate
|
_translate = QtCore.QCoreApplication.translate
|
||||||
mainwin.setWindowTitle(_translate("mainwin", "bananaSPLIT"))
|
mainwin.setWindowTitle(_translate("mainwin", "bananaSPLIT"))
|
||||||
self.btn_avanti.setText(_translate("mainwin", "Avanti"))
|
|
||||||
self.btn_cartellasorg.setText(_translate("mainwin", "..."))
|
|
||||||
self.btn_cartelladest.setText(_translate("mainwin", "..."))
|
|
||||||
self.lbl_sorg.setText(_translate("mainwin", "..."))
|
|
||||||
self.lbl_dest.setText(_translate("mainwin", "..."))
|
|
||||||
self.lbl_cartellasorg.setText(_translate("mainwin", "Cartella sorgente"))
|
self.lbl_cartellasorg.setText(_translate("mainwin", "Cartella sorgente"))
|
||||||
self.lbl_cartelladest.setText(_translate("mainwin", "Cartella destinazione"))
|
self.lbl_cartelladest.setText(_translate("mainwin", "Cartella destinazione"))
|
||||||
self.label.setText(_translate("mainwin", "File disponibili per la conversione"))
|
self.lbl_sorg.setText(_translate("mainwin", "..."))
|
||||||
self.rad_fileOld.setText(_translate("mainwin", "Vecchia"))
|
self.lbl_dest.setText(_translate("mainwin", "..."))
|
||||||
self.rad_fileNew.setText(_translate("mainwin", "Nuova"))
|
|
||||||
self.label_2.setText(_translate("mainwin", "Versione dei File"))
|
self.label_2.setText(_translate("mainwin", "Versione dei File"))
|
||||||
|
self.rad_fileNew.setText(_translate("mainwin", "Nuova"))
|
||||||
|
self.rad_fileOld.setText(_translate("mainwin", "Vecchia"))
|
||||||
|
self.btn_avanti.setText(_translate("mainwin", "Avanti"))
|
||||||
|
self.label.setText(_translate("mainwin", "File disponibili per la conversione"))
|
||||||
self.wgt_main.setTabText(self.wgt_main.indexOf(self.wgt_mainPage1), _translate("mainwin", "SelezionaFile"))
|
self.wgt_main.setTabText(self.wgt_main.indexOf(self.wgt_mainPage1), _translate("mainwin", "SelezionaFile"))
|
||||||
self.lbl_log.setText(_translate("mainwin", "qui ci va il log ma devo pensare a come farlo in modo non eccessivamente stupido"))
|
self.lbl_log.setText(_translate("mainwin", "qui ci va il log ma devo pensare a come farlo in modo non eccessivamente stupido"))
|
||||||
self.bar_file.setTitle(_translate("mainwin", "File"))
|
self.bar_file.setTitle(_translate("mainwin", "File"))
|
||||||
@@ -202,3 +260,4 @@ class Ui_mainwin(object):
|
|||||||
self.actionAvanzate.setText(_translate("mainwin", "Avanzate"))
|
self.actionAvanzate.setText(_translate("mainwin", "Avanzate"))
|
||||||
|
|
||||||
|
|
||||||
|
import resources_rc
|
||||||
|
|||||||
12806
bananaSPLIT/UserInterface/compiledUI/resources_rc.py
Normal file
12806
bananaSPLIT/UserInterface/compiledUI/resources_rc.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -9,8 +9,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>678</width>
|
<width>756</width>
|
||||||
<height>581</height>
|
<height>703</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@@ -53,25 +53,34 @@
|
|||||||
<string>SelezionaFile</string>
|
<string>SelezionaFile</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="4" column="3">
|
<item row="0" column="0">
|
||||||
<widget class="QPushButton" name="btn_avanti">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<property name="minimumSize">
|
<item>
|
||||||
<size>
|
<widget class="QLabel" name="lbl_cartellasorg">
|
||||||
<width>79</width>
|
<property name="font">
|
||||||
<height>0</height>
|
<font>
|
||||||
</size>
|
<pointsize>10</pointsize>
|
||||||
</property>
|
</font>
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>80</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Avanti</string>
|
<string>Cartella sorgente</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="lbl_cartelladest">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Cartella destinazione</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<property name="sizeConstraint">
|
<property name="sizeConstraint">
|
||||||
@@ -131,7 +140,7 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="2" colspan="2">
|
<item row="0" column="2">
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="lbl_sorg">
|
<widget class="QLabel" name="lbl_sorg">
|
||||||
@@ -149,45 +158,103 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0" colspan="4">
|
<item row="1" column="0" colspan="3">
|
||||||
<widget class="QListWidget" name="lst_files"/>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0">
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="lbl_cartellasorg">
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Cartella sorgente</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="lbl_cartelladest">
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Cartella destinazione</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0" colspan="4">
|
|
||||||
<widget class="Line" name="line">
|
<widget class="Line" name="line">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
<enum>Qt::Horizontal</enum>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0" colspan="4">
|
<item row="4" column="0" colspan="3">
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Versione dei File</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="rad_fileNew">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Nuova</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="rad_fileOld">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Vecchia</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="btn_avanti">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>80</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>11</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="layoutDirection">
|
||||||
|
<enum>Qt::RightToLeft</enum>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Avanti</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-arrow-80.png</normaloff>:/icons/icons8-arrow-80.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>25</width>
|
||||||
|
<height>25</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="flat">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0" colspan="3">
|
||||||
|
<widget class="QListWidget" name="lst_files"/>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0" colspan="3">
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
@@ -204,30 +271,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="2">
|
|
||||||
<widget class="QRadioButton" name="rad_fileOld">
|
|
||||||
<property name="text">
|
|
||||||
<string>Vecchia</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="1">
|
|
||||||
<widget class="QRadioButton" name="rad_fileNew">
|
|
||||||
<property name="text">
|
|
||||||
<string>Nuova</string>
|
|
||||||
</property>
|
|
||||||
<property name="checked">
|
|
||||||
<bool>true</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="0">
|
|
||||||
<widget class="QLabel" name="label_2">
|
|
||||||
<property name="text">
|
|
||||||
<string>Versione dei File</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
@@ -250,7 +293,7 @@
|
|||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
<height>25</height>
|
<height>50</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
@@ -283,7 +326,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>678</width>
|
<width>756</width>
|
||||||
<height>26</height>
|
<height>26</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<RCC>
|
<RCC>
|
||||||
<qresource prefix="icons">
|
<qresource prefix="icons">
|
||||||
|
<file>icons8-arrow-80-back.png</file>
|
||||||
<file>icons8-smartphone-ram-100.png</file>
|
<file>icons8-smartphone-ram-100.png</file>
|
||||||
<file>icons8-globe-earth-80.png</file>
|
<file>icons8-globe-earth-80.png</file>
|
||||||
<file>icons8-save-80.png</file>
|
<file>icons8-save-80.png</file>
|
||||||
|
|||||||
@@ -6,15 +6,95 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>577</width>
|
<width>718</width>
|
||||||
<height>400</height>
|
<height>573</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Seleziona Linuga e Output</string>
|
<string>Seleziona Linuga e Output</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout_2">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<item row="5" column="0">
|
<item>
|
||||||
|
<widget class="QLabel" name="lbl_lingua">
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Seleziona la lingua degli articoli</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="Line" name="line_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="cmb_lingua">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="frame">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="modelColumn">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_3">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeType">
|
||||||
|
<enum>QSizePolicy::Expanding</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="lbl_indicazioni">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>10</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Seleziona il tipo di file da salvare</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="Line" name="line">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
<property name="sizeConstraint">
|
<property name="sizeConstraint">
|
||||||
<enum>QLayout::SetMaximumSize</enum>
|
<enum>QLayout::SetMaximumSize</enum>
|
||||||
@@ -60,53 +140,32 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="9" column="1">
|
<item>
|
||||||
<spacer name="verticalSpacer">
|
<widget class="QLabel" name="lbl_indicazioni_2">
|
||||||
<property name="orientation">
|
<property name="sizePolicy">
|
||||||
<enum>Qt::Vertical</enum>
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0" colspan="4">
|
|
||||||
<widget class="Line" name="line_2">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="0">
|
|
||||||
<widget class="QLabel" name="lbl_lingua">
|
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>10</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Seleziona la lingua degli articoli</string>
|
<string>Altre Opzioni </string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="4" column="0" colspan="4">
|
<item>
|
||||||
<widget class="Line" name="line">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="7" column="0" colspan="4">
|
|
||||||
<widget class="Line" name="line_3">
|
<widget class="Line" name="line_3">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
<enum>Qt::Horizontal</enum>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="8" column="0" colspan="4">
|
<item>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QCheckBox" name="chk_removeDuplicates">
|
<widget class="QCheckBox" name="chk_removeDuplicates">
|
||||||
@@ -173,76 +232,44 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lin_specialChars"/>
|
<widget class="QLineEdit" name="lin_specialChars"/>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item row="9" column="3">
|
<item>
|
||||||
<widget class="QPushButton" name="btn_split">
|
<spacer name="verticalSpacer">
|
||||||
<property name="minimumSize">
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
<size>
|
<size>
|
||||||
<width>75</width>
|
<width>20</width>
|
||||||
<height>0</height>
|
<height>40</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
</spacer>
|
||||||
<size>
|
|
||||||
<width>75</width>
|
|
||||||
<height>16777215</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>SPLITTA!</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0">
|
<item>
|
||||||
<widget class="QLabel" name="lbl_indicazioni">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<property name="sizePolicy">
|
<item>
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Seleziona il tipo di file da salvare</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="6" column="0">
|
|
||||||
<widget class="QLabel" name="lbl_indicazioni_2">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<pointsize>10</pointsize>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Altre Opzioni </string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="9" column="2">
|
|
||||||
<widget class="QPushButton" name="btn_indietro">
|
<widget class="QPushButton" name="btn_indietro">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>75</width>
|
<width>100</width>
|
||||||
<height>0</height>
|
<height>40</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
@@ -253,26 +280,89 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>11</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Indietro</string>
|
<string>Indietro</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-arrow-80-back.png</normaloff>:/icons/icons8-arrow-80-back.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>25</width>
|
||||||
|
<height>25</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0">
|
<item>
|
||||||
<widget class="QComboBox" name="cmb_lingua">
|
<spacer name="horizontalSpacer">
|
||||||
<property name="frame">
|
<property name="orientation">
|
||||||
<bool>true</bool>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="modelColumn">
|
<property name="sizeHint" stdset="0">
|
||||||
<number>0</number>
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="btn_split">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>12</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
|
<property name="cursor">
|
||||||
|
<cursorShape>PointingHandCursor</cursorShape>
|
||||||
|
</property>
|
||||||
|
<property name="layoutDirection">
|
||||||
|
<enum>Qt::RightToLeft</enum>
|
||||||
|
</property>
|
||||||
|
<property name="autoFillBackground">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>SPLITTA!</string>
|
||||||
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-banana-split-80.png</normaloff>:/icons/icons8-banana-split-80.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>50</width>
|
||||||
|
<height>50</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="flat">
|
||||||
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="resources.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>480</width>
|
<width>719</width>
|
||||||
<height>443</height>
|
<height>573</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
@@ -16,6 +16,12 @@
|
|||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
<item row="8" column="0" colspan="2">
|
<item row="8" column="0" colspan="2">
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>10</pointsize>
|
||||||
@@ -77,6 +83,17 @@
|
|||||||
<layout class="QHBoxLayout" name="lyt_nchars">
|
<layout class="QHBoxLayout" name="lyt_nchars">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="lbl_ncarat">
|
<widget class="QLabel" name="lbl_ncarat">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="font">
|
||||||
|
<font>
|
||||||
|
<pointsize>9</pointsize>
|
||||||
|
</font>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Numero di caratteri</string>
|
<string>Numero di caratteri</string>
|
||||||
</property>
|
</property>
|
||||||
@@ -134,13 +151,25 @@
|
|||||||
</item>
|
</item>
|
||||||
<item row="0" column="0" colspan="3">
|
<item row="0" column="0" colspan="3">
|
||||||
<widget class="QLabel" name="lbl_impotit">
|
<widget class="QLabel" name="lbl_impotit">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>10</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Impostazioni nome file</string>
|
<string>Impostazioni nome file in uscita</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -182,14 +211,30 @@
|
|||||||
<layout class="QHBoxLayout" name="lyt_buttons">
|
<layout class="QHBoxLayout" name="lyt_buttons">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="btn_avanzate">
|
<widget class="QPushButton" name="btn_avanzate">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>120</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>11</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Avanzate</string>
|
<string>Avanzate</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-smartphone-ram-100.png</normaloff>:/icons/icons8-smartphone-ram-100.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>30</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@@ -209,26 +254,61 @@
|
|||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="btn_indietro">
|
<widget class="QPushButton" name="btn_indietro">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>11</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Indietro</string>
|
<string>Indietro</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-arrow-80-back.png</normaloff>:/icons/icons8-arrow-80-back.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>25</width>
|
||||||
|
<height>25</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="btn_avanti">
|
<widget class="QPushButton" name="btn_avanti">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>100</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<pointsize>10</pointsize>
|
<pointsize>11</pointsize>
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="layoutDirection">
|
||||||
|
<enum>Qt::RightToLeft</enum>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Avanti</string>
|
<string>Avanti</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources.qrc">
|
||||||
|
<normaloff>:/icons/icons8-arrow-80.png</normaloff>:/icons/icons8-arrow-80.png</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="iconSize">
|
||||||
|
<size>
|
||||||
|
<width>25</width>
|
||||||
|
<height>25</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
@@ -330,7 +410,9 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources>
|
||||||
|
<include location="resources.qrc"/>
|
||||||
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
<buttongroups>
|
<buttongroups>
|
||||||
<buttongroup name="btngrp_divisore"/>
|
<buttongroup name="btngrp_divisore"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user