From 2a05198441689b5f9c50dca3d0ca7b655ff990ca Mon Sep 17 00:00:00 2001 From: Loïc Guégan Date: Mon, 16 Sep 2024 15:13:37 +0200 Subject: Minor changes --- tropical/qt/createcalendar.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tropical/qt/createcalendar.py (limited to 'tropical/qt/createcalendar.py') diff --git a/tropical/qt/createcalendar.py b/tropical/qt/createcalendar.py new file mode 100644 index 0000000..df16277 --- /dev/null +++ b/tropical/qt/createcalendar.py @@ -0,0 +1,17 @@ + +from PyQt6.QtWidgets import QDialog, QColorDialog +from PyQt6 import uic + +class CreateCalendar(QDialog): + + def __init__(self,uipath): + super(CreateCalendar,self).__init__() + uic.loadUi(uipath+"/CreateCalendar.ui",self) + self.pickerButton.setText("") + self.pickerButton.clicked.connect(self.pickupColor) + self.pickerButton.setStyleSheet("QPushButton { background-color : blue }") + + def pickupColor(self): + hexValue=QColorDialog.getColor().name() + self.pickerButton.setStyleSheet("QPushButton { background-color : "+hexValue+" }") + print("TODO!") -- cgit v1.2.3