turned openPreset button into comboBox to fit a new design

This commit is contained in:
tassaron 2017-05-28 19:50:29 -04:00
parent 39944a56a8
commit ce414ff960
2 changed files with 17 additions and 11 deletions

18
main.py
View File

@ -178,13 +178,11 @@ class Main(QtCore.QObject):
self.window.pushButton_listMoveUp.clicked.connect(self.moveComponentUp)
self.window.pushButton_listMoveDown.clicked.connect(self.moveComponentDown)
'''
window.lineEdit_visColor.setText('%s,%s,%s' % self.visColor)
window.pushButton_visColor.clicked.connect(lambda: self.pickColor('vis'))
btnStyle = "QPushButton { background-color : %s; outline: none; }" % QColor(*self.visColor).name()
window.pushButton_visColor.setStyleSheet(btnStyle)
window.lineEdit_visColor.textChanged.connect(self.drawPreview)
'''
self.window.pushButton_savePreset.clicked.connect(self.openSavePresetDialog)
self.window.comboBox_openPreset.currentIndexChanged.connect( \
lambda _: self.openPreset(self.window.comboBox_openPreset.currentIndex())
)
self.drawPreview()
window.show()
@ -353,6 +351,12 @@ class Main(QtCore.QObject):
self.window.listWidget_componentList.setCurrentRow(row + 1)
self.window.stackedWidget.setCurrentIndex(row + 1)
def openSavePresetDialog(self):
pass
def openPreset(self, comboBoxIndex):
pass
def LoadDefaultSettings(self):
self.resolutions = [

View File

@ -217,10 +217,12 @@
<item>
<layout class="QHBoxLayout" name="horizontalLayout_15">
<item>
<widget class="QPushButton" name="pushButton_openPreset">
<property name="text">
<string>Open Preset</string>
</property>
<widget class="QComboBox" name="comboBox_openPreset">
<item>
<property name="text">
<string>Open Preset</string>
</property>
</item>
</widget>
</item>
<item>