not1mm 23.5.24__py3-none-any.whl → 23.5.26.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- not1mm/__main__.py +10 -56
- not1mm/bandmap.py +0 -3
- not1mm/data/main.ui +0 -2
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +0 -2
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/METADATA +27 -17
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/RECORD +11 -12
- not1mm/data/Combinear.qss +0 -995
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/LICENSE +0 -0
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/WHEEL +0 -0
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/entry_points.txt +0 -0
- {not1mm-23.5.24.dist-info → not1mm-23.5.26.1.dist-info}/top_level.txt +0 -0
not1mm/__main__.py
CHANGED
@@ -61,27 +61,27 @@ from not1mm.lib.n1mm import N1MM
|
|
61
61
|
from not1mm.lib.version import __version__
|
62
62
|
from not1mm.lib.versiontest import VersionTest
|
63
63
|
|
64
|
-
|
65
|
-
# os.environ["
|
64
|
+
# gsettings get org.gnome.desktop.interface color-scheme
|
65
|
+
# os.environ["QT_QPA_PLATFORM"] = "wayland"
|
66
|
+
|
67
|
+
if os.environ.get("XDG_CURRENT_DESKTOP", False) == "GNOME":
|
68
|
+
os.environ["QT_QPA_PLATFORMTHEME"] = "gnome"
|
69
|
+
os.environ["QT_STYLE_OVERRIDE"] = "Adwaita-Dark"
|
66
70
|
|
67
71
|
loader = pkgutil.get_loader("not1mm")
|
68
72
|
WORKING_PATH = os.path.dirname(loader.get_filename())
|
69
73
|
|
70
|
-
|
71
|
-
DATA_PATH = os.environ.get("XDG_DATA_HOME")
|
72
|
-
else:
|
73
|
-
DATA_PATH = str(Path.home() / ".local" / "share")
|
74
|
+
DATA_PATH = os.environ.get("XDG_DATA_HOME", str(Path.home() / ".local" / "share"))
|
74
75
|
DATA_PATH += "/not1mm"
|
76
|
+
|
75
77
|
try:
|
76
78
|
os.mkdir(DATA_PATH)
|
77
79
|
except FileExistsError:
|
78
80
|
...
|
79
81
|
|
80
|
-
|
81
|
-
CONFIG_PATH = os.environ.get("XDG_CONFIG_HOME")
|
82
|
-
else:
|
83
|
-
CONFIG_PATH = str(Path.home() / ".config")
|
82
|
+
CONFIG_PATH = os.environ.get("XDG_CONFIG_HOME", str(Path.home() / ".config"))
|
84
83
|
CONFIG_PATH += "/not1mm"
|
84
|
+
|
85
85
|
try:
|
86
86
|
os.mkdir(CONFIG_PATH)
|
87
87
|
except FileExistsError:
|
@@ -92,11 +92,6 @@ CTYFILE = {}
|
|
92
92
|
with open(WORKING_PATH + "/data/cty.json", "rt", encoding="utf-8") as c_file:
|
93
93
|
CTYFILE = loads(c_file.read())
|
94
94
|
|
95
|
-
DARK_STYLESHEET = ""
|
96
|
-
|
97
|
-
with open(WORKING_PATH + "/data/Combinear.qss", encoding="utf-8") as stylefile:
|
98
|
-
DARK_STYLESHEET = stylefile.read()
|
99
|
-
|
100
95
|
poll_time = datetime.now()
|
101
96
|
|
102
97
|
|
@@ -135,7 +130,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
135
130
|
"lookupusername": "username",
|
136
131
|
"lookuppassword": "password",
|
137
132
|
"run_state": True,
|
138
|
-
"dark_mode": False,
|
139
133
|
"command_buttons": False,
|
140
134
|
"cw_macros": True,
|
141
135
|
"bands_modes": True,
|
@@ -215,7 +209,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
215
209
|
|
216
210
|
self.actionCW_Macros.triggered.connect(self.cw_macros_state_changed)
|
217
211
|
self.actionCommand_Buttons.triggered.connect(self.command_buttons_state_change)
|
218
|
-
self.actionDark_Mode.triggered.connect(self.dark_mode_state_change)
|
219
212
|
self.actionLog_Window.triggered.connect(self.launch_log_window)
|
220
213
|
self.actionBandmap.triggered.connect(self.launch_bandmap_window)
|
221
214
|
self.actionRecalculate_Mults.triggered.connect(self.recalculate_mults)
|
@@ -373,8 +366,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
373
366
|
def show_about_dialog(self):
|
374
367
|
"""Show about dialog"""
|
375
368
|
self.about_dialog = About(WORKING_PATH)
|
376
|
-
if self.pref.get("dark_mode"):
|
377
|
-
self.about_dialog.setStyleSheet(DARK_STYLESHEET)
|
378
369
|
self.about_dialog.donors.setSource(
|
379
370
|
QtCore.QUrl.fromLocalFile(WORKING_PATH + "/data/donors.html")
|
380
371
|
)
|
@@ -383,8 +374,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
383
374
|
def edit_configuration_settings(self):
|
384
375
|
"""Configuration Settings was clicked"""
|
385
376
|
self.configuration_dialog = Settings(WORKING_PATH, CONFIG_PATH, self.pref)
|
386
|
-
if self.pref.get("dark_mode"):
|
387
|
-
self.configuration_dialog.setStyleSheet(DARK_STYLESHEET)
|
388
377
|
self.configuration_dialog.usehamdb_radioButton.hide()
|
389
378
|
self.configuration_dialog.show()
|
390
379
|
self.configuration_dialog.accepted.connect(self.edit_configuration_return)
|
@@ -452,8 +441,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
452
441
|
|
453
442
|
if contests:
|
454
443
|
self.contest_dialog = SelectContest(WORKING_PATH)
|
455
|
-
if self.pref.get("dark_mode"):
|
456
|
-
self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
|
457
444
|
self.contest_dialog.contest_list.setRowCount(0)
|
458
445
|
self.contest_dialog.contest_list.setColumnCount(4)
|
459
446
|
self.contest_dialog.contest_list.verticalHeader().setVisible(False)
|
@@ -511,14 +498,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
511
498
|
if self.contest_settings is None:
|
512
499
|
return
|
513
500
|
self.contest_dialog = NewContest(WORKING_PATH)
|
514
|
-
if self.pref.get("dark_mode"):
|
515
|
-
self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
|
516
501
|
self.contest_dialog.setWindowTitle("Edit Contest")
|
517
502
|
self.contest_dialog.title.setText("")
|
518
503
|
self.contest_dialog.accepted.connect(self.save_edited_contest)
|
519
|
-
if self.pref.get("dark_mode"):
|
520
|
-
self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
|
521
|
-
|
522
504
|
value = self.contest_settings.get("ContestName").upper().replace("_", " ")
|
523
505
|
if value == "GENERAL LOGGING":
|
524
506
|
value = "General Logging"
|
@@ -1090,8 +1072,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1090
1072
|
logger.debug("New contest Dialog")
|
1091
1073
|
self.contest_dialog = NewContest(WORKING_PATH)
|
1092
1074
|
self.contest_dialog.accepted.connect(self.save_contest)
|
1093
|
-
if self.pref.get("dark_mode"):
|
1094
|
-
self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
|
1095
1075
|
self.contest_dialog.dateTimeEdit.setDate(QtCore.QDate.currentDate())
|
1096
1076
|
self.contest_dialog.dateTimeEdit.setCalendarPopup(True)
|
1097
1077
|
self.contest_dialog.dateTimeEdit.setTime(QtCore.QTime(0, 0))
|
@@ -1134,12 +1114,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1134
1114
|
"""Show settings dialog"""
|
1135
1115
|
logger.debug("Station Settings selected")
|
1136
1116
|
self.settings_dialog = EditStation(WORKING_PATH)
|
1137
|
-
if self.pref.get("dark_mode"):
|
1138
|
-
self.settings_dialog.setStyleSheet(DARK_STYLESHEET)
|
1139
1117
|
self.settings_dialog.accepted.connect(self.save_settings)
|
1140
|
-
# if self.pref.get("dark_mode"):
|
1141
|
-
# self.settings_dialog.setStyleSheet(DARK_STYLESHEET)
|
1142
|
-
|
1143
1118
|
self.settings_dialog.Call.setText(self.station.get("Call", ""))
|
1144
1119
|
self.settings_dialog.Name.setText(self.station.get("Name", ""))
|
1145
1120
|
self.settings_dialog.Address1.setText(self.station.get("Street1", ""))
|
@@ -1205,8 +1180,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1205
1180
|
"""Show edit macro dialog"""
|
1206
1181
|
self.edit_macro_dialog = EditMacro(function_key, WORKING_PATH)
|
1207
1182
|
self.edit_macro_dialog.accepted.connect(self.edited_macro)
|
1208
|
-
if self.pref.get("dark_mode"):
|
1209
|
-
self.edit_macro_dialog.setStyleSheet(DARK_STYLESHEET)
|
1210
1183
|
self.edit_macro_dialog.open()
|
1211
1184
|
|
1212
1185
|
def edited_macro(self):
|
@@ -1545,11 +1518,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1545
1518
|
else:
|
1546
1519
|
self.radioButton_sp.setChecked(True)
|
1547
1520
|
|
1548
|
-
if self.pref.get("dark_mode"):
|
1549
|
-
self.actionDark_Mode.setChecked(True)
|
1550
|
-
else:
|
1551
|
-
self.actionDark_Mode.setChecked(False)
|
1552
|
-
|
1553
1521
|
if self.pref.get("command_buttons"):
|
1554
1522
|
self.actionCommand_Buttons.setChecked(True)
|
1555
1523
|
else:
|
@@ -1625,7 +1593,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1625
1593
|
self.n1mm.send_score_packets = self.pref.get("send_n1mm_score", False)
|
1626
1594
|
self.n1mm.radio_info["StationName"] = self.pref.get("n1mm_station_name", "")
|
1627
1595
|
|
1628
|
-
self.dark_mode()
|
1629
1596
|
self.show_command_buttons()
|
1630
1597
|
self.show_CW_macros()
|
1631
1598
|
# self.show_band_mode()
|
@@ -1678,19 +1645,6 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1678
1645
|
self.callsign.activateWindow()
|
1679
1646
|
window.raise_()
|
1680
1647
|
|
1681
|
-
def dark_mode_state_change(self):
|
1682
|
-
"""darkmode dropdown checkmark changed"""
|
1683
|
-
self.pref["dark_mode"] = self.actionDark_Mode.isChecked()
|
1684
|
-
self.write_preference()
|
1685
|
-
self.dark_mode()
|
1686
|
-
|
1687
|
-
def dark_mode(self):
|
1688
|
-
"""change display mode"""
|
1689
|
-
if self.pref.get("dark_mode"):
|
1690
|
-
self.setStyleSheet(DARK_STYLESHEET)
|
1691
|
-
else:
|
1692
|
-
self.setStyleSheet("")
|
1693
|
-
|
1694
1648
|
def cw_macros_state_changed(self):
|
1695
1649
|
"""Menu item to show/hide macro buttons"""
|
1696
1650
|
self.pref["cw_macros"] = self.actionCW_Macros.isChecked()
|
not1mm/bandmap.py
CHANGED
@@ -46,9 +46,6 @@ CONFIG_PATH += "/not1mm"
|
|
46
46
|
|
47
47
|
DARK_STYLESHEET = ""
|
48
48
|
|
49
|
-
with open(WORKING_PATH + "/data/Combinear.qss", encoding="utf-8") as stylefile:
|
50
|
-
DARK_STYLESHEET = stylefile.read()
|
51
|
-
|
52
49
|
MULTICAST_PORT = 2239
|
53
50
|
MULTICAST_GROUP = "224.1.1.1"
|
54
51
|
INTERFACE_IP = "0.0.0.0"
|
not1mm/data/main.ui
CHANGED
@@ -1060,9 +1060,7 @@
|
|
1060
1060
|
<property name="title">
|
1061
1061
|
<string>View</string>
|
1062
1062
|
</property>
|
1063
|
-
<addaction name="actionCommand_Buttons"/>
|
1064
1063
|
<addaction name="actionCW_Macros"/>
|
1065
|
-
<addaction name="actionDark_Mode"/>
|
1066
1064
|
</widget>
|
1067
1065
|
<widget class="QMenu" name="menuWindow">
|
1068
1066
|
<property name="title">
|
not1mm/lib/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""It's the version"""
|
2
|
-
__version__ = "23.5.
|
2
|
+
__version__ = "23.5.26.1"
|
not1mm/logwindow.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 23.5.
|
3
|
+
Version: 23.5.26.1
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/mbridak/not1mm
|
@@ -46,10 +46,11 @@ Requires-Dist: numpy
|
|
46
46
|
- [Ubuntu 23.04](#ubuntu-2304)
|
47
47
|
- [Fedora 38](#fedora-38)
|
48
48
|
- [You may or may not get a warning message like](#you-may-or-may-not-get-a-warning-message-like)
|
49
|
+
- [Or this fan favorite](#or-this-fan-favorite)
|
49
50
|
- [Updating with pip/pipx](#updating-with-pippipx)
|
50
51
|
- [Other Libraries](#other-libraries)
|
51
|
-
- [Running on Ubuntu LTS 22.04](#running-on-ubuntu-lts-2204)
|
52
52
|
- [Dark mode on Ubuntu](#dark-mode-on-ubuntu)
|
53
|
+
- [Wayland Compositor](#wayland-compositor)
|
53
54
|
- [Running from source](#running-from-source)
|
54
55
|
- [Various data file locations](#various-data-file-locations)
|
55
56
|
- [Data](#data)
|
@@ -132,6 +133,7 @@ The current state is "**BETA**". I've used it for A few contests, and was able t
|
|
132
133
|
|
133
134
|
## Changes of note
|
134
135
|
|
136
|
+
- [23-5-26] Fixed Dark Mode on Ubuntu. Removed the crappy dark css theme and the code to load it.
|
135
137
|
- [23-5-24] Added contact delete and change n1mm packets.
|
136
138
|
- [23-5-23] Reworked N1MM packets. Can now specify multiple destinations for the packets.
|
137
139
|
- [23-5-22] Worked on n1mm contactinfo packets. Reduced network beaconing from 100 miliseconds to 10 seconds, Unless the radio state changes.
|
@@ -228,7 +230,7 @@ I've included what installation steps I took to install on fresh images of Ubunt
|
|
228
230
|
```bash
|
229
231
|
sudo apt update
|
230
232
|
sudo apt upgrade
|
231
|
-
sudo apt install -y libportaudio2 python3-pip python3-pyqt5 python3-numpy
|
233
|
+
sudo apt install -y libportaudio2 python3-pip python3-pyqt5 python3-numpy adwaita-qt
|
232
234
|
pip install -U not1mm
|
233
235
|
```
|
234
236
|
|
@@ -261,21 +263,13 @@ Consider adding this directory to PATH or, if you prefer to suppress this warnin
|
|
261
263
|
|
262
264
|
If you do, just logout and back in, or reboot.
|
263
265
|
|
264
|
-
###
|
265
|
-
|
266
|
-
I've been posting updates just about everyday. Sometimes multiple times a day. It's early days, so there is much to do. You can check for and install updates with `pip install -U not1mm` or if installed with pipx `pipx upgrade not1mm`.
|
267
|
-
|
268
|
-
## Other Libraries
|
269
|
-
|
270
|
-
The audio library used, uses pipewire/portaudio. You may need to install portaudio. Ubuntu: `sudo apt install libportaudio2`
|
271
|
-
|
272
|
-
## Running on Ubuntu LTS 22.04
|
273
|
-
|
274
|
-
Seems Ubuntu LTS is not a big fan of wayland. When launching from the command line you'll see a message:
|
266
|
+
### Or this fan favorite
|
275
267
|
|
276
|
-
|
268
|
+
```text
|
269
|
+
Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
|
277
270
|
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
|
278
|
-
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem
|
271
|
+
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
|
272
|
+
```
|
279
273
|
|
280
274
|
To avoid this you can export an environment variable and launch the app like this:
|
281
275
|
|
@@ -283,9 +277,21 @@ To avoid this you can export an environment variable and launch the app like thi
|
|
283
277
|
|
284
278
|
For a more permanent solution you can place the line `export QT_QPA_PLATFORM=wayland` in your home directories .bashrc file. Then after logging out and back in you should be able to launch it normally.
|
285
279
|
|
280
|
+
### Updating with pip/pipx
|
281
|
+
|
282
|
+
I've been posting updates just about everyday. Sometimes multiple times a day. It's early days, so there is much to do. You can check for and install updates with `pip install -U not1mm` or if installed with pipx `pipx upgrade not1mm`.
|
283
|
+
|
284
|
+
## Other Libraries
|
285
|
+
|
286
|
+
The audio library used, uses pipewire/portaudio. You may need to install portaudio. Ubuntu: `sudo apt install libportaudio2`
|
287
|
+
|
286
288
|
### Dark mode on Ubuntu
|
287
289
|
|
288
|
-
|
290
|
+
I believe I figured out dark mode in Ubuntu and have it working on my shack PC that runs Ubuntu 22.04. The secret sauce seems to be installing adwaita-qt with apt, and setting an environment variable `QT_STYLE_OVERRIDE` to `Adwaita-Dark`. I set the environment variable in the start of the program if running on a Gnome platform. So you don't need to do that part.
|
291
|
+
|
292
|
+
## Wayland Compositor
|
293
|
+
|
294
|
+
One side effect of Wayland is that we are not able to request for a window to regain or retain focus. So if you were to click on a spot in the bandmap window to tune to that spot, you would have to then click on the main window to continue entering contest data. I'm aware of this, but i can not change it.
|
289
295
|
|
290
296
|
## Running from source
|
291
297
|
|
@@ -406,8 +412,12 @@ Under the `CW` TAB, There are three options. `cwdaemon`, which normally uses IP
|
|
406
412
|
|
407
413
|
### N1MM Packets
|
408
414
|
|
415
|
+
Work has started on N1MM udp packets. So far just RadioInfo, contactinfo, contactreplace and contactdelete.
|
416
|
+
|
409
417
|

|
410
418
|
|
419
|
+
When entering IP and Ports, enter them with a colon ':' between them. You can enter multiple pairs on the same line if separated by a space ' '.
|
420
|
+
|
411
421
|
## Hiding screen elements
|
412
422
|
|
413
423
|
You can show or hide certain buttons/indicators by checking and unchecking their boxes under the view menu. You can then resize the screen to make it more compact.
|
@@ -1,8 +1,7 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
3
|
-
not1mm/bandmap.py,sha256=
|
4
|
-
not1mm/logwindow.py,sha256=
|
5
|
-
not1mm/data/Combinear.qss,sha256=SKqM0g8GvNXay1ovgtwCw3Egt0eLfN5P3iTREInC1eE,16590
|
2
|
+
not1mm/__main__.py,sha256=IrAcO0cODt4LkrLNjYDVy5DsEPdLVsMeqkUQJHT2QpE,87675
|
3
|
+
not1mm/bandmap.py,sha256=HL7nDi4_2a686epgSDLX3Znep2jZQtEbDWTmHVJAMa0,25231
|
4
|
+
not1mm/logwindow.py,sha256=vzIW5n8m1EeWL45zYrIUwfj8bOyuz_ENp8x6O680jOA,33703
|
6
5
|
not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
|
7
6
|
not1mm/data/MASTER.SCP,sha256=oqUB3Fvy40vU-ra-R3-cvTeBnZWW04Da1Et011UITbI,542666
|
8
7
|
not1mm/data/about.ui,sha256=7TqvtXFFm0Rmcu0bmLupwpO1CsK8MekfZ09_xn6kZrQ,2067
|
@@ -22,7 +21,7 @@ not1mm/data/k6gte.not1mm-128.png,sha256=vWqt3Cgsaguj-BBiIoSJApzzhisPxldM8HZQbZ05
|
|
22
21
|
not1mm/data/k6gte.not1mm-32.png,sha256=yucSwzlmqv3NegdWUvPvZzSgP7G22Ky3se8TWRXvzfI,1108
|
23
22
|
not1mm/data/k6gte.not1mm-64.png,sha256=1KQvk0WBckUds79BvIFUt-KdTwQKKvTz6hiJu8MiT68,2152
|
24
23
|
not1mm/data/logwindow.ui,sha256=_-wobHhIjALzCswyXIrqNadnLdc88eay1GNF23a-Qh0,970
|
25
|
-
not1mm/data/main.ui,sha256=
|
24
|
+
not1mm/data/main.ui,sha256=7gapA3y2s0dEOV42-XtNLc4f_YrMynHidj-WDFsob5s,43956
|
26
25
|
not1mm/data/new_contest.ui,sha256=_w_tLQ3FZ-sqohkTX4OxbWv7EmEb0OG81_3O9pn3maw,17963
|
27
26
|
not1mm/data/opon.ui,sha256=6r9_6ORGfNqwOnpzQjaJ1tWP_81amuXqLYlx1hHgdME,2018
|
28
27
|
not1mm/data/pickcontest.ui,sha256=_9JFiJw4l-bRRgNDtVg1DpxreylYd_UqEq0wfcr9gJc,1600
|
@@ -93,7 +92,7 @@ not1mm/lib/n1mm.py,sha256=O3U2dhOX-_5nBomyuiyfx-_GQk6rj067lwrcC9GtDpQ,5713
|
|
93
92
|
not1mm/lib/new_contest.py,sha256=mHKNCS3iKOKN-bT9d8ZK3JemThOZFQ0ikfUSS0-ZTpY,354
|
94
93
|
not1mm/lib/select_contest.py,sha256=XQdRUkPAIHIMVsilm82M54b_v9yWpYrZ1nfInJrtZoo,363
|
95
94
|
not1mm/lib/settings.py,sha256=tkCWgJ3CpNkGR_IyCTOCIlO6PEPZCShHO9FL-9Wono8,6885
|
96
|
-
not1mm/lib/version.py,sha256=
|
95
|
+
not1mm/lib/version.py,sha256=a-letcpWZXBcEaW3PkSMnf3XG062mAJ2Di3sY_FwdOA,49
|
97
96
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
98
97
|
not1mm/plugins/10_10_fall_cw.py,sha256=EJ2CPLQUb_SNkbXJw8hGk-M74IDxjQZDl3imiebxYa0,13746
|
99
98
|
not1mm/plugins/10_10_spring_cw.py,sha256=NqsV2cWsMVuqBM98SLhacladI_gFiOUnlaI7jPbiZoQ,13752
|
@@ -120,9 +119,9 @@ not1mm/testing/flrigclient.py,sha256=24r_0HqpoTjyJ6Bqg_HIC8Nn9wjtnwwWQ26I7UprwgA
|
|
120
119
|
not1mm/testing/n1mm_listener.py,sha256=UD-qyKEnppQua330WEFKMvMJaNjnYKi7dDuX_RGB5lQ,1099
|
121
120
|
not1mm/testing/test.py,sha256=wGblvMlyOCVkEiHbxE6wvLsorim15ehL72_EZLQeWkk,1660
|
122
121
|
testing/test.py,sha256=5AxvNGijTzD-OwzbNWpPgk2tqFOdjsDHWrU8nskKDwg,1909
|
123
|
-
not1mm-23.5.
|
124
|
-
not1mm-23.5.
|
125
|
-
not1mm-23.5.
|
126
|
-
not1mm-23.5.
|
127
|
-
not1mm-23.5.
|
128
|
-
not1mm-23.5.
|
122
|
+
not1mm-23.5.26.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
123
|
+
not1mm-23.5.26.1.dist-info/METADATA,sha256=baeTJjCC4W45OKDzhzyoKs52iKVgCEMX0jCkfyl3h_E,29158
|
124
|
+
not1mm-23.5.26.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
125
|
+
not1mm-23.5.26.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
126
|
+
not1mm-23.5.26.1.dist-info/top_level.txt,sha256=-NwUrh4k1kzpOvf720xYWSTKSlr-zNSIz3D_eplrxLs,15
|
127
|
+
not1mm-23.5.26.1.dist-info/RECORD,,
|
not1mm/data/Combinear.qss
DELETED
@@ -1,995 +0,0 @@
|
|
1
|
-
/*Copyright (c) DevSec Studio. All rights reserved.
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
-
*/
|
22
|
-
|
23
|
-
/*-----QWidget-----*/
|
24
|
-
QWidget
|
25
|
-
{
|
26
|
-
background-color: #3a3a3a;
|
27
|
-
color: #fff;
|
28
|
-
selection-background-color: #b78620;
|
29
|
-
selection-color: #000;
|
30
|
-
|
31
|
-
}
|
32
|
-
|
33
|
-
|
34
|
-
/*-----QLabel-----*/
|
35
|
-
QLabel
|
36
|
-
{
|
37
|
-
background-color: transparent;
|
38
|
-
color: #fff;
|
39
|
-
|
40
|
-
}
|
41
|
-
|
42
|
-
|
43
|
-
/*-----QMenuBar-----*/
|
44
|
-
QMenuBar
|
45
|
-
{
|
46
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(57, 57, 57, 255),stop:1 rgba(50, 50, 50, 255));
|
47
|
-
border: 1px solid #000;
|
48
|
-
color: #fff;
|
49
|
-
|
50
|
-
}
|
51
|
-
|
52
|
-
|
53
|
-
QMenuBar::item
|
54
|
-
{
|
55
|
-
background-color: transparent;
|
56
|
-
|
57
|
-
}
|
58
|
-
|
59
|
-
|
60
|
-
QMenuBar::item:selected
|
61
|
-
{
|
62
|
-
background-color: rgba(183, 134, 32, 20%);
|
63
|
-
border: 1px solid #b78620;
|
64
|
-
color: #fff;
|
65
|
-
|
66
|
-
}
|
67
|
-
|
68
|
-
|
69
|
-
QMenuBar::item:pressed
|
70
|
-
{
|
71
|
-
background-color: rgb(183, 134, 32);
|
72
|
-
border: 1px solid #b78620;
|
73
|
-
color: #fff;
|
74
|
-
|
75
|
-
}
|
76
|
-
|
77
|
-
|
78
|
-
/*-----QMenu-----*/
|
79
|
-
QMenu
|
80
|
-
{
|
81
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(57, 57, 57, 255),stop:1 rgba(50, 50, 50, 255));
|
82
|
-
border: 1px solid #222;
|
83
|
-
padding: 4px;
|
84
|
-
color: #fff;
|
85
|
-
|
86
|
-
}
|
87
|
-
|
88
|
-
|
89
|
-
QMenu::item
|
90
|
-
{
|
91
|
-
background-color: transparent;
|
92
|
-
padding: 2px 20px 2px 20px;
|
93
|
-
|
94
|
-
}
|
95
|
-
|
96
|
-
|
97
|
-
QMenu::separator
|
98
|
-
{
|
99
|
-
background-color: rgb(183, 134, 32);
|
100
|
-
height: 1px;
|
101
|
-
|
102
|
-
}
|
103
|
-
|
104
|
-
|
105
|
-
QMenu::item:disabled
|
106
|
-
{
|
107
|
-
color: #555;
|
108
|
-
background-color: transparent;
|
109
|
-
padding: 2px 20px 2px 20px;
|
110
|
-
|
111
|
-
}
|
112
|
-
|
113
|
-
|
114
|
-
QMenu::item:selected
|
115
|
-
{
|
116
|
-
background-color: rgba(183, 134, 32, 20%);
|
117
|
-
border: 1px solid #b78620;
|
118
|
-
color: #fff;
|
119
|
-
|
120
|
-
}
|
121
|
-
|
122
|
-
|
123
|
-
/*-----QToolBar-----*/
|
124
|
-
QToolBar
|
125
|
-
{
|
126
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(69, 69, 69, 255),stop:1 rgba(58, 58, 58, 255));
|
127
|
-
border-top: none;
|
128
|
-
border-bottom: 1px solid #4f4f4f;
|
129
|
-
border-left: 1px solid #4f4f4f;
|
130
|
-
border-right: 1px solid #4f4f4f;
|
131
|
-
|
132
|
-
}
|
133
|
-
|
134
|
-
|
135
|
-
QToolBar::separator
|
136
|
-
{
|
137
|
-
background-color: #2e2e2e;
|
138
|
-
width: 1px;
|
139
|
-
|
140
|
-
}
|
141
|
-
|
142
|
-
|
143
|
-
/*-----QToolButton-----*/
|
144
|
-
QToolButton
|
145
|
-
{
|
146
|
-
background-color: transparent;
|
147
|
-
color: #fff;
|
148
|
-
padding: 5px;
|
149
|
-
padding-left: 8px;
|
150
|
-
padding-right: 8px;
|
151
|
-
margin-left: 1px;
|
152
|
-
}
|
153
|
-
|
154
|
-
|
155
|
-
QToolButton:hover
|
156
|
-
{
|
157
|
-
background-color: rgba(183, 134, 32, 20%);
|
158
|
-
border: 1px solid #b78620;
|
159
|
-
color: #fff;
|
160
|
-
|
161
|
-
}
|
162
|
-
|
163
|
-
|
164
|
-
QToolButton:pressed
|
165
|
-
{
|
166
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(57, 57, 57, 255),stop:1 rgba(50, 50, 50, 255));
|
167
|
-
border: 1px solid #b78620;
|
168
|
-
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
QToolButton:checked
|
173
|
-
{
|
174
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(57, 57, 57, 255),stop:1 rgba(50, 50, 50, 255));
|
175
|
-
border: 1px solid #222;
|
176
|
-
}
|
177
|
-
|
178
|
-
|
179
|
-
/*-----QPushButton-----*/
|
180
|
-
QPushButton
|
181
|
-
{
|
182
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(84, 84, 84, 255),stop:1 rgba(59, 59, 59, 255));
|
183
|
-
color: #ffffff;
|
184
|
-
min-width: 80px;
|
185
|
-
border-style: solid;
|
186
|
-
border-width: 1px;
|
187
|
-
border-radius: 3px;
|
188
|
-
border-color: #051a39;
|
189
|
-
padding: 5px;
|
190
|
-
|
191
|
-
}
|
192
|
-
|
193
|
-
|
194
|
-
QPushButton::flat
|
195
|
-
{
|
196
|
-
background-color: transparent;
|
197
|
-
border: none;
|
198
|
-
color: #fff;
|
199
|
-
|
200
|
-
}
|
201
|
-
|
202
|
-
|
203
|
-
QPushButton::disabled
|
204
|
-
{
|
205
|
-
background-color: #404040;
|
206
|
-
color: #656565;
|
207
|
-
border-color: #051a39;
|
208
|
-
|
209
|
-
}
|
210
|
-
|
211
|
-
|
212
|
-
QPushButton::hover
|
213
|
-
{
|
214
|
-
background-color: rgba(183, 134, 32, 20%);
|
215
|
-
border: 1px solid #b78620;
|
216
|
-
|
217
|
-
}
|
218
|
-
|
219
|
-
|
220
|
-
QPushButton::pressed
|
221
|
-
{
|
222
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(74, 74, 74, 255),stop:1 rgba(49, 49, 49, 255));
|
223
|
-
border: 1px solid #b78620;
|
224
|
-
|
225
|
-
}
|
226
|
-
|
227
|
-
|
228
|
-
QPushButton::checked
|
229
|
-
{
|
230
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(74, 74, 74, 255),stop:1 rgba(49, 49, 49, 255));
|
231
|
-
border: 1px solid #222;
|
232
|
-
|
233
|
-
}
|
234
|
-
|
235
|
-
|
236
|
-
/*-----QLineEdit-----*/
|
237
|
-
QLineEdit
|
238
|
-
{
|
239
|
-
background-color: #131313;
|
240
|
-
color : #eee;
|
241
|
-
border: 1px solid #343434;
|
242
|
-
border-radius: 2px;
|
243
|
-
padding: 3px;
|
244
|
-
padding-left: 5px;
|
245
|
-
|
246
|
-
}
|
247
|
-
|
248
|
-
|
249
|
-
/*-----QPlainTExtEdit-----*/
|
250
|
-
QPlainTextEdit
|
251
|
-
{
|
252
|
-
background-color: #131313;
|
253
|
-
color : #eee;
|
254
|
-
border: 1px solid #343434;
|
255
|
-
border-radius: 2px;
|
256
|
-
padding: 3px;
|
257
|
-
padding-left: 5px;
|
258
|
-
|
259
|
-
}
|
260
|
-
|
261
|
-
|
262
|
-
/*-----QTabBar-----*/
|
263
|
-
QTabBar::tab
|
264
|
-
{
|
265
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(84, 84, 84, 255),stop:1 rgba(59, 59, 59, 255));
|
266
|
-
color: #ffffff;
|
267
|
-
border-style: solid;
|
268
|
-
border-width: 1px;
|
269
|
-
border-color: #666;
|
270
|
-
border-bottom: none;
|
271
|
-
padding: 5px;
|
272
|
-
padding-left: 15px;
|
273
|
-
padding-right: 15px;
|
274
|
-
|
275
|
-
}
|
276
|
-
|
277
|
-
|
278
|
-
QTabWidget::pane
|
279
|
-
{
|
280
|
-
background-color: red;
|
281
|
-
border: 1px solid #666;
|
282
|
-
top: 1px;
|
283
|
-
|
284
|
-
}
|
285
|
-
|
286
|
-
|
287
|
-
QTabBar::tab:last
|
288
|
-
{
|
289
|
-
margin-right: 0;
|
290
|
-
|
291
|
-
}
|
292
|
-
|
293
|
-
|
294
|
-
QTabBar::tab:first:!selected
|
295
|
-
{
|
296
|
-
background-color: #0c0c0d;
|
297
|
-
margin-left: 0px;
|
298
|
-
|
299
|
-
}
|
300
|
-
|
301
|
-
|
302
|
-
QTabBar::tab:!selected
|
303
|
-
{
|
304
|
-
color: #b1b1b1;
|
305
|
-
border-bottom-style: solid;
|
306
|
-
background-color: #0c0c0d;
|
307
|
-
|
308
|
-
}
|
309
|
-
|
310
|
-
|
311
|
-
QTabBar::tab:selected
|
312
|
-
{
|
313
|
-
margin-bottom: 0px;
|
314
|
-
|
315
|
-
}
|
316
|
-
|
317
|
-
|
318
|
-
QTabBar::tab:!selected:hover
|
319
|
-
{
|
320
|
-
border-top-color: #b78620;
|
321
|
-
|
322
|
-
}
|
323
|
-
|
324
|
-
|
325
|
-
/*-----QComboBox-----*/
|
326
|
-
QComboBox
|
327
|
-
{
|
328
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(84, 84, 84, 255),stop:1 rgba(59, 59, 59, 255));
|
329
|
-
border: 1px solid #000;
|
330
|
-
padding-left: 6px;
|
331
|
-
color: #ffffff;
|
332
|
-
height: 20px;
|
333
|
-
|
334
|
-
}
|
335
|
-
|
336
|
-
|
337
|
-
QComboBox::disabled
|
338
|
-
{
|
339
|
-
background-color: #404040;
|
340
|
-
color: #656565;
|
341
|
-
border-color: #051a39;
|
342
|
-
|
343
|
-
}
|
344
|
-
|
345
|
-
|
346
|
-
QComboBox:on
|
347
|
-
{
|
348
|
-
background-color: #b78620;
|
349
|
-
color: #000;
|
350
|
-
|
351
|
-
}
|
352
|
-
|
353
|
-
|
354
|
-
QComboBox QAbstractItemView
|
355
|
-
{
|
356
|
-
background-color: #383838;
|
357
|
-
color: #ffffff;
|
358
|
-
border: 1px solid black;
|
359
|
-
selection-background-color: #b78620;
|
360
|
-
outline: 0;
|
361
|
-
|
362
|
-
}
|
363
|
-
|
364
|
-
|
365
|
-
QComboBox::drop-down
|
366
|
-
{
|
367
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(57, 57, 57, 255),stop:1 rgba(50, 50, 50, 255));
|
368
|
-
subcontrol-origin: padding;
|
369
|
-
subcontrol-position: top right;
|
370
|
-
width: 15px;
|
371
|
-
border-left-width: 1px;
|
372
|
-
border-left-color: black;
|
373
|
-
border-left-style: solid;
|
374
|
-
|
375
|
-
}
|
376
|
-
|
377
|
-
|
378
|
-
QComboBox::down-arrow
|
379
|
-
{
|
380
|
-
image: url(://arrow-down.png);
|
381
|
-
width: 8px;
|
382
|
-
height: 8px;
|
383
|
-
}
|
384
|
-
|
385
|
-
|
386
|
-
/*-----QSpinBox & QDateTimeEdit-----*/
|
387
|
-
QSpinBox,
|
388
|
-
QDateTimeEdit
|
389
|
-
{
|
390
|
-
background-color: #131313;
|
391
|
-
color : #eee;
|
392
|
-
border: 1px solid #343434;
|
393
|
-
padding: 3px;
|
394
|
-
padding-left: 5px;
|
395
|
-
border-radius : 2px;
|
396
|
-
|
397
|
-
}
|
398
|
-
|
399
|
-
|
400
|
-
QSpinBox::up-button,
|
401
|
-
QDateTimeEdit::up-button
|
402
|
-
{
|
403
|
-
border-top-right-radius:2px;
|
404
|
-
background-color: #777777;
|
405
|
-
width: 16px;
|
406
|
-
border-width: 1px;
|
407
|
-
|
408
|
-
}
|
409
|
-
|
410
|
-
|
411
|
-
QSpinBox::up-button:hover,
|
412
|
-
QDateTimeEdit::up-button:hover
|
413
|
-
{
|
414
|
-
background-color: #585858;
|
415
|
-
|
416
|
-
}
|
417
|
-
|
418
|
-
|
419
|
-
QSpinBox::up-button:pressed,
|
420
|
-
QDateTimeEdit::up-button:pressed
|
421
|
-
{
|
422
|
-
background-color: #252525;
|
423
|
-
width: 16px;
|
424
|
-
border-width: 1px;
|
425
|
-
|
426
|
-
}
|
427
|
-
|
428
|
-
|
429
|
-
QSpinBox::up-arrow,
|
430
|
-
QDateTimeEdit::up-arrow
|
431
|
-
{
|
432
|
-
image: url(://arrow-up.png);
|
433
|
-
width: 7px;
|
434
|
-
height: 7px;
|
435
|
-
|
436
|
-
}
|
437
|
-
|
438
|
-
|
439
|
-
QSpinBox::down-button,
|
440
|
-
QDateTimeEdit::down-button
|
441
|
-
{
|
442
|
-
border-bottom-right-radius:2px;
|
443
|
-
background-color: #777777;
|
444
|
-
width: 16px;
|
445
|
-
border-width: 1px;
|
446
|
-
|
447
|
-
}
|
448
|
-
|
449
|
-
|
450
|
-
QSpinBox::down-button:hover,
|
451
|
-
QDateTimeEdit::down-button:hover
|
452
|
-
{
|
453
|
-
background-color: #585858;
|
454
|
-
|
455
|
-
}
|
456
|
-
|
457
|
-
|
458
|
-
QSpinBox::down-button:pressed,
|
459
|
-
QDateTimeEdit::down-button:pressed
|
460
|
-
{
|
461
|
-
background-color: #252525;
|
462
|
-
width: 16px;
|
463
|
-
border-width: 1px;
|
464
|
-
|
465
|
-
}
|
466
|
-
|
467
|
-
|
468
|
-
QSpinBox::down-arrow,
|
469
|
-
QDateTimeEdit::down-arrow
|
470
|
-
{
|
471
|
-
image: url(://arrow-down.png);
|
472
|
-
width: 7px;
|
473
|
-
height: 7px;
|
474
|
-
|
475
|
-
}
|
476
|
-
|
477
|
-
|
478
|
-
/*-----QGroupBox-----*/
|
479
|
-
QGroupBox
|
480
|
-
{
|
481
|
-
border: 1px solid;
|
482
|
-
border-color: #666666;
|
483
|
-
border-radius: 5px;
|
484
|
-
margin-top: 20px;
|
485
|
-
|
486
|
-
}
|
487
|
-
|
488
|
-
|
489
|
-
QGroupBox::title
|
490
|
-
{
|
491
|
-
background-color: transparent;
|
492
|
-
color: #eee;
|
493
|
-
subcontrol-origin: margin;
|
494
|
-
padding: 5px;
|
495
|
-
border-top-left-radius: 3px;
|
496
|
-
border-top-right-radius: 3px;
|
497
|
-
|
498
|
-
}
|
499
|
-
|
500
|
-
|
501
|
-
/*-----QHeaderView-----*/
|
502
|
-
QHeaderView::section
|
503
|
-
{
|
504
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(60, 60, 60, 255),stop:1 rgba(50, 50, 50, 255));
|
505
|
-
border: 1px solid #000;
|
506
|
-
color: #fff;
|
507
|
-
text-align: left;
|
508
|
-
padding: 4px;
|
509
|
-
|
510
|
-
}
|
511
|
-
|
512
|
-
|
513
|
-
QHeaderView::section:disabled
|
514
|
-
{
|
515
|
-
background-color: #525251;
|
516
|
-
color: #656565;
|
517
|
-
|
518
|
-
}
|
519
|
-
|
520
|
-
|
521
|
-
QHeaderView::section:checked
|
522
|
-
{
|
523
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(60, 60, 60, 255),stop:1 rgba(50, 50, 50, 255));
|
524
|
-
color: #fff;
|
525
|
-
|
526
|
-
}
|
527
|
-
|
528
|
-
|
529
|
-
QHeaderView::section::vertical::first,
|
530
|
-
QHeaderView::section::vertical::only-one
|
531
|
-
{
|
532
|
-
border-top: 1px solid #353635;
|
533
|
-
|
534
|
-
}
|
535
|
-
|
536
|
-
|
537
|
-
QHeaderView::section::vertical
|
538
|
-
{
|
539
|
-
border-top: 1px solid #353635;
|
540
|
-
|
541
|
-
}
|
542
|
-
|
543
|
-
|
544
|
-
QHeaderView::section::horizontal::first,
|
545
|
-
QHeaderView::section::horizontal::only-one
|
546
|
-
{
|
547
|
-
border-left: 1px solid #353635;
|
548
|
-
|
549
|
-
}
|
550
|
-
|
551
|
-
|
552
|
-
QHeaderView::section::horizontal
|
553
|
-
{
|
554
|
-
border-left: 1px solid #353635;
|
555
|
-
|
556
|
-
}
|
557
|
-
|
558
|
-
|
559
|
-
QTableCornerButton::section
|
560
|
-
{
|
561
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(60, 60, 60, 255),stop:1 rgba(50, 50, 50, 255));
|
562
|
-
border: 1px solid #000;
|
563
|
-
color: #fff;
|
564
|
-
|
565
|
-
}
|
566
|
-
|
567
|
-
|
568
|
-
/*-----QTreeWidget-----*/
|
569
|
-
QTreeView
|
570
|
-
{
|
571
|
-
show-decoration-selected: 1;
|
572
|
-
alternate-background-color: #3a3a3a;
|
573
|
-
selection-color: #fff;
|
574
|
-
background-color: #2d2d2d;
|
575
|
-
border: 1px solid gray;
|
576
|
-
padding-top : 5px;
|
577
|
-
color: #fff;
|
578
|
-
font: 8pt;
|
579
|
-
|
580
|
-
}
|
581
|
-
|
582
|
-
|
583
|
-
QTreeView::item:selected
|
584
|
-
{
|
585
|
-
color:#fff;
|
586
|
-
background-color: #b78620;
|
587
|
-
border-radius: 0px;
|
588
|
-
|
589
|
-
}
|
590
|
-
|
591
|
-
|
592
|
-
QTreeView::item:!selected:hover
|
593
|
-
{
|
594
|
-
background-color: #262626;
|
595
|
-
border: none;
|
596
|
-
color: white;
|
597
|
-
|
598
|
-
}
|
599
|
-
|
600
|
-
|
601
|
-
QTreeView::branch:has-children:!has-siblings:closed,
|
602
|
-
QTreeView::branch:closed:has-children:has-siblings
|
603
|
-
{
|
604
|
-
image: url(://tree-closed.png);
|
605
|
-
|
606
|
-
}
|
607
|
-
|
608
|
-
|
609
|
-
QTreeView::branch:open:has-children:!has-siblings,
|
610
|
-
QTreeView::branch:open:has-children:has-siblings
|
611
|
-
{
|
612
|
-
image: url(://tree-open.png);
|
613
|
-
|
614
|
-
}
|
615
|
-
|
616
|
-
|
617
|
-
/*-----QListView-----*/
|
618
|
-
QListView
|
619
|
-
{
|
620
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(83, 83, 83, 255),stop:0.293269 rgba(81, 81, 81, 255),stop:0.634615 rgba(79, 79, 79, 255),stop:1 rgba(83, 83, 83, 255));
|
621
|
-
border : none;
|
622
|
-
color: white;
|
623
|
-
show-decoration-selected: 1;
|
624
|
-
outline: 0;
|
625
|
-
border: 1px solid gray;
|
626
|
-
|
627
|
-
}
|
628
|
-
|
629
|
-
|
630
|
-
QListView::disabled
|
631
|
-
{
|
632
|
-
background-color: #656565;
|
633
|
-
color: #1b1b1b;
|
634
|
-
border: 1px solid #656565;
|
635
|
-
|
636
|
-
}
|
637
|
-
|
638
|
-
|
639
|
-
QListView::item
|
640
|
-
{
|
641
|
-
background-color: #2d2d2d;
|
642
|
-
padding: 1px;
|
643
|
-
|
644
|
-
}
|
645
|
-
|
646
|
-
|
647
|
-
QListView::item:alternate
|
648
|
-
{
|
649
|
-
background-color: #3a3a3a;
|
650
|
-
|
651
|
-
}
|
652
|
-
|
653
|
-
|
654
|
-
QListView::item:selected
|
655
|
-
{
|
656
|
-
background-color: #b78620;
|
657
|
-
border: 1px solid #b78620;
|
658
|
-
color: #fff;
|
659
|
-
|
660
|
-
}
|
661
|
-
|
662
|
-
|
663
|
-
QListView::item:selected:!active
|
664
|
-
{
|
665
|
-
background-color: #b78620;
|
666
|
-
border: 1px solid #b78620;
|
667
|
-
color: #fff;
|
668
|
-
|
669
|
-
}
|
670
|
-
|
671
|
-
|
672
|
-
QListView::item:selected:active
|
673
|
-
{
|
674
|
-
background-color: #b78620;
|
675
|
-
border: 1px solid #b78620;
|
676
|
-
color: #fff;
|
677
|
-
|
678
|
-
}
|
679
|
-
|
680
|
-
|
681
|
-
QListView::item:hover {
|
682
|
-
background-color: #262626;
|
683
|
-
border: none;
|
684
|
-
color: white;
|
685
|
-
|
686
|
-
}
|
687
|
-
|
688
|
-
|
689
|
-
/*-----QCheckBox-----*/
|
690
|
-
QCheckBox
|
691
|
-
{
|
692
|
-
background-color: transparent;
|
693
|
-
color: lightgray;
|
694
|
-
border: none;
|
695
|
-
|
696
|
-
}
|
697
|
-
|
698
|
-
|
699
|
-
QCheckBox::indicator
|
700
|
-
{
|
701
|
-
background-color: #323232;
|
702
|
-
border: 1px solid darkgray;
|
703
|
-
width: 12px;
|
704
|
-
height: 12px;
|
705
|
-
|
706
|
-
}
|
707
|
-
|
708
|
-
|
709
|
-
QCheckBox::indicator:checked
|
710
|
-
{
|
711
|
-
image:url("./ressources/check.png");
|
712
|
-
background-color: #b78620;
|
713
|
-
border: 1px solid #3a546e;
|
714
|
-
|
715
|
-
}
|
716
|
-
|
717
|
-
|
718
|
-
QCheckBox::indicator:unchecked:hover
|
719
|
-
{
|
720
|
-
border: 1px solid #b78620;
|
721
|
-
|
722
|
-
}
|
723
|
-
|
724
|
-
|
725
|
-
QCheckBox::disabled
|
726
|
-
{
|
727
|
-
color: #656565;
|
728
|
-
|
729
|
-
}
|
730
|
-
|
731
|
-
|
732
|
-
QCheckBox::indicator:disabled
|
733
|
-
{
|
734
|
-
background-color: #656565;
|
735
|
-
color: #656565;
|
736
|
-
border: 1px solid #656565;
|
737
|
-
|
738
|
-
}
|
739
|
-
|
740
|
-
|
741
|
-
/*-----QRadioButton-----*/
|
742
|
-
QRadioButton
|
743
|
-
{
|
744
|
-
color: lightgray;
|
745
|
-
background-color: transparent;
|
746
|
-
|
747
|
-
}
|
748
|
-
|
749
|
-
|
750
|
-
QRadioButton::indicator::unchecked
|
751
|
-
{
|
752
|
-
background-color: darkgray;
|
753
|
-
border: 2px solid #051a39;
|
754
|
-
border-radius: 6px;
|
755
|
-
}
|
756
|
-
|
757
|
-
|
758
|
-
QRadioButton::indicator::unchecked:hover
|
759
|
-
{
|
760
|
-
background-color: darkgray;
|
761
|
-
border: 2px solid #051a39;
|
762
|
-
border-radius: 6px;
|
763
|
-
}
|
764
|
-
|
765
|
-
|
766
|
-
QRadioButton::indicator::checked
|
767
|
-
{
|
768
|
-
border: 2px solid #051a39;
|
769
|
-
border-radius: 6px;
|
770
|
-
background-color: rgba(183,134,32,20%);
|
771
|
-
width: 10px;
|
772
|
-
height: 10px;
|
773
|
-
|
774
|
-
}
|
775
|
-
|
776
|
-
|
777
|
-
/*-----QSlider-----*/
|
778
|
-
QSlider::groove:horizontal
|
779
|
-
{
|
780
|
-
background-color: transparent;
|
781
|
-
height: 3px;
|
782
|
-
|
783
|
-
}
|
784
|
-
|
785
|
-
|
786
|
-
QSlider::sub-page:horizontal
|
787
|
-
{
|
788
|
-
background-color: #b78620;
|
789
|
-
|
790
|
-
}
|
791
|
-
|
792
|
-
|
793
|
-
QSlider::add-page:horizontal
|
794
|
-
{
|
795
|
-
background-color: #131313;
|
796
|
-
|
797
|
-
}
|
798
|
-
|
799
|
-
|
800
|
-
QSlider::handle:horizontal
|
801
|
-
{
|
802
|
-
background-color: #b78620;
|
803
|
-
width: 14px;
|
804
|
-
margin-top: -6px;
|
805
|
-
margin-bottom: -6px;
|
806
|
-
border-radius: 6px;
|
807
|
-
|
808
|
-
}
|
809
|
-
|
810
|
-
|
811
|
-
QSlider::handle:horizontal:hover
|
812
|
-
{
|
813
|
-
background-color: #d89e25;
|
814
|
-
border-radius: 6px;
|
815
|
-
|
816
|
-
}
|
817
|
-
|
818
|
-
|
819
|
-
QSlider::sub-page:horizontal:disabled
|
820
|
-
{
|
821
|
-
background-color: #bbb;
|
822
|
-
border-color: #999;
|
823
|
-
|
824
|
-
}
|
825
|
-
|
826
|
-
|
827
|
-
QSlider::add-page:horizontal:disabled
|
828
|
-
{
|
829
|
-
background-color: #eee;
|
830
|
-
border-color: #999;
|
831
|
-
|
832
|
-
}
|
833
|
-
|
834
|
-
|
835
|
-
QSlider::handle:horizontal:disabled
|
836
|
-
{
|
837
|
-
background-color: #eee;
|
838
|
-
border: 1px solid #aaa;
|
839
|
-
border-radius: 3px;
|
840
|
-
|
841
|
-
}
|
842
|
-
|
843
|
-
|
844
|
-
/*-----QScrollBar-----*/
|
845
|
-
QScrollBar:horizontal
|
846
|
-
{
|
847
|
-
border: 1px solid #222222;
|
848
|
-
background-color: #3d3d3d;
|
849
|
-
height: 15px;
|
850
|
-
margin: 0px 16px 0 16px;
|
851
|
-
|
852
|
-
}
|
853
|
-
|
854
|
-
|
855
|
-
QScrollBar::handle:horizontal
|
856
|
-
{
|
857
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
858
|
-
border: 1px solid #2d2d2d;
|
859
|
-
min-height: 20px;
|
860
|
-
|
861
|
-
}
|
862
|
-
|
863
|
-
|
864
|
-
QScrollBar::add-line:horizontal
|
865
|
-
{
|
866
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
867
|
-
border: 1px solid #2d2d2d;
|
868
|
-
width: 15px;
|
869
|
-
subcontrol-position: right;
|
870
|
-
subcontrol-origin: margin;
|
871
|
-
|
872
|
-
}
|
873
|
-
|
874
|
-
|
875
|
-
QScrollBar::sub-line:horizontal
|
876
|
-
{
|
877
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
878
|
-
border: 1px solid #2d2d2d;
|
879
|
-
width: 15px;
|
880
|
-
subcontrol-position: left;
|
881
|
-
subcontrol-origin: margin;
|
882
|
-
|
883
|
-
}
|
884
|
-
|
885
|
-
|
886
|
-
QScrollBar::right-arrow:horizontal
|
887
|
-
{
|
888
|
-
image: url(://arrow-right.png);
|
889
|
-
width: 6px;
|
890
|
-
height: 6px;
|
891
|
-
|
892
|
-
}
|
893
|
-
|
894
|
-
|
895
|
-
QScrollBar::left-arrow:horizontal
|
896
|
-
{
|
897
|
-
image: url(://arrow-left.png);
|
898
|
-
width: 6px;
|
899
|
-
height: 6px;
|
900
|
-
|
901
|
-
}
|
902
|
-
|
903
|
-
|
904
|
-
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
|
905
|
-
{
|
906
|
-
background: none;
|
907
|
-
|
908
|
-
}
|
909
|
-
|
910
|
-
|
911
|
-
QScrollBar:vertical
|
912
|
-
{
|
913
|
-
background-color: #3d3d3d;
|
914
|
-
width: 16px;
|
915
|
-
border: 1px solid #2d2d2d;
|
916
|
-
margin: 16px 0px 16px 0px;
|
917
|
-
|
918
|
-
}
|
919
|
-
|
920
|
-
|
921
|
-
QScrollBar::handle:vertical
|
922
|
-
{
|
923
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
924
|
-
border: 1px solid #2d2d2d;
|
925
|
-
min-height: 20px;
|
926
|
-
|
927
|
-
}
|
928
|
-
|
929
|
-
|
930
|
-
QScrollBar::add-line:vertical
|
931
|
-
{
|
932
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
933
|
-
border: 1px solid #2d2d2d;
|
934
|
-
height: 15px;
|
935
|
-
subcontrol-position: bottom;
|
936
|
-
subcontrol-origin: margin;
|
937
|
-
|
938
|
-
}
|
939
|
-
|
940
|
-
|
941
|
-
QScrollBar::sub-line:vertical
|
942
|
-
{
|
943
|
-
background-color: qlineargradient(spread:repeat, x1:1, y1:0, x2:1, y2:1, stop:0 rgba(97, 97, 97, 255),stop:1 rgba(90, 90, 90, 255));
|
944
|
-
border: 1px solid #2d2d2d;
|
945
|
-
height: 15px;
|
946
|
-
subcontrol-position: top;
|
947
|
-
subcontrol-origin: margin;
|
948
|
-
|
949
|
-
}
|
950
|
-
|
951
|
-
|
952
|
-
QScrollBar::up-arrow:vertical
|
953
|
-
{
|
954
|
-
image: url(://arrow-up.png);
|
955
|
-
width: 6px;
|
956
|
-
height: 6px;
|
957
|
-
|
958
|
-
}
|
959
|
-
|
960
|
-
|
961
|
-
QScrollBar::down-arrow:vertical
|
962
|
-
{
|
963
|
-
image: url(://arrow-down.png);
|
964
|
-
width: 6px;
|
965
|
-
height: 6px;
|
966
|
-
|
967
|
-
}
|
968
|
-
|
969
|
-
|
970
|
-
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
|
971
|
-
{
|
972
|
-
background: none;
|
973
|
-
|
974
|
-
}
|
975
|
-
|
976
|
-
|
977
|
-
/*-----QProgressBar-----*/
|
978
|
-
QProgressBar
|
979
|
-
{
|
980
|
-
border: 1px solid #666666;
|
981
|
-
text-align: center;
|
982
|
-
color: #000;
|
983
|
-
font-weight: bold;
|
984
|
-
|
985
|
-
}
|
986
|
-
|
987
|
-
|
988
|
-
QProgressBar::chunk
|
989
|
-
{
|
990
|
-
background-color: #b78620;
|
991
|
-
width: 30px;
|
992
|
-
margin: 0.5px;
|
993
|
-
|
994
|
-
}
|
995
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|