Skip to content

Commit db0d2aa

Browse files
author
Mehmet Aksoy
committed
V2024.12 changes, ui, night mode and images
1 parent 15b5b4a commit db0d2aa

5 files changed

+26
-34
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@ Then the project can be run with:
5151
pip install -r requirements.txt
5252
```
5353

54-
![Project SS](https://github.com/mcagriaksoy/Serial-Communication-GUI-Program/blob/master/img/Screenshot_v2024_07.jpg)
55-
56-
Simple View and Night Mode have been introduced:
57-
5854
![Project SS](https://github.com/mcagriaksoy/Serial-Communication-GUI-Program/blob/master/img/Screenshot_v2024_07_2.jpg)
5955

6056
If you encounter any problems while using the COM port tool, try these solutions:

img/Screenshot_v2024_07.jpg

-55.1 KB
Binary file not shown.

img/Screenshot_v2024_07_2.jpg

75 KB
Loading

src/ui_main.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,18 @@ def night_mode_clicked(self):
159159
#define static variable
160160
global nightModeEnabled
161161

162+
# Invert all colors
162163
if nightModeEnabled == False:
163-
self.data_textEdit.setStyleSheet("background-color: black; color: white;")
164-
self.night_mode.setText("Day Mode")
164+
self.setStyleSheet("background-color: #2C2F33; color: #FFFFFF;")
165+
self.night_mode.setText("🌘 Day Mode")
166+
self.tabWidget.setStyleSheet("QWidget { background-color: #2C2F33; color: #FFFFFF; } QTabBar::tab { background: #2C2F33; color: #FFFFFF; }")
165167
nightModeEnabled = True
166168
else:
167-
self.data_textEdit.setStyleSheet("background-color: white; color: black;")
169+
self.setStyleSheet("background-color: #FFFFFF; color: #000000;")
168170
self.night_mode.setText("🌘 Night Mode")
171+
self.tabWidget.setStyleSheet("QWidget { background-color: #FFFFFF; color: #000000; } QTabBar::tab { background: #FFFFFF; color: #000000; }")
169172
nightModeEnabled = False
173+
170174

171175
def command1(self):
172176
""" Open the text input popup to save command for button 1 """

ui/main_window.ui

+19-27
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<x>0</x>
88
<y>0</y>
99
<width>929</width>
10-
<height>577</height>
10+
<height>579</height>
1111
</rect>
1212
</property>
1313
<property name="sizePolicy">
@@ -18,14 +18,14 @@
1818
</property>
1919
<property name="minimumSize">
2020
<size>
21-
<width>929</width>
22-
<height>573</height>
21+
<width>600</width>
22+
<height>579</height>
2323
</size>
2424
</property>
2525
<property name="maximumSize">
2626
<size>
27-
<width>16777213</width>
28-
<height>16777215</height>
27+
<width>929</width>
28+
<height>579</height>
2929
</size>
3030
</property>
3131
<property name="cursor">
@@ -105,7 +105,7 @@
105105
<x>900</x>
106106
<y>390</y>
107107
<width>21</width>
108-
<height>121</height>
108+
<height>132</height>
109109
</rect>
110110
</property>
111111
<layout class="QVBoxLayout" name="verticalLayout_5">
@@ -640,27 +640,29 @@
640640
<property name="sizeConstraint">
641641
<enum>QLayout::SizeConstraint::SetNoConstraint</enum>
642642
</property>
643-
<item>
644-
<widget class="QLabel" name="label_22">
645-
<property name="text">
646-
<string>Tx Data:</string>
647-
</property>
648-
</widget>
649-
</item>
650643
<item>
651644
<widget class="QTextEdit" name="send_data_text">
652645
<property name="sizePolicy">
653-
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
646+
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
654647
<horstretch>5</horstretch>
655648
<verstretch>5</verstretch>
656649
</sizepolicy>
657650
</property>
651+
<property name="maximumSize">
652+
<size>
653+
<width>465</width>
654+
<height>28</height>
655+
</size>
656+
</property>
658657
<property name="frameShape">
659658
<enum>QFrame::Shape::Box</enum>
660659
</property>
661660
<property name="frameShadow">
662661
<enum>QFrame::Shadow::Plain</enum>
663662
</property>
663+
<property name="placeholderText">
664+
<string>Please enter the data want to sent...</string>
665+
</property>
664666
</widget>
665667
</item>
666668
<item>
@@ -725,19 +727,6 @@
725727
</property>
726728
</widget>
727729
</item>
728-
<item>
729-
<spacer name="horizontalSpacer">
730-
<property name="orientation">
731-
<enum>Qt::Orientation::Horizontal</enum>
732-
</property>
733-
<property name="sizeHint" stdset="0">
734-
<size>
735-
<width>40</width>
736-
<height>20</height>
737-
</size>
738-
</property>
739-
</spacer>
740-
</item>
741730
<item>
742731
<widget class="QPushButton" name="night_mode">
743732
<property name="text">
@@ -830,6 +819,9 @@ li.checked::marker { content: &quot;\2612&quot;; }
830819
<property name="text">
831820
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Feel free to ask any questions or bug report on &lt;a href=&quot;https://github.com/mcagriaksoy/Serial-Communication-GUI-Program&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Github&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
832821
</property>
822+
<property name="openExternalLinks">
823+
<bool>true</bool>
824+
</property>
833825
</widget>
834826
</widget>
835827
</widget>

0 commit comments

Comments
 (0)