-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
731 lines (589 loc) · 27 KB
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTime>
#include <QFileDialog>
#include <QSettings>
#include <QTimer>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
//Setze Standardpfad zu Spotify.exe in Textfeld
pfadSetzen();
//Gespeicherte Einstellungen wiederherstellen
loadSettings();
//Hotkey setzen
setHotkey();
// Initialisiere das Systemtray-Icon
trayIcon = new QSystemTrayIcon(QIcon(":/new/bilder/sqicon.bmp"), this);
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
trayIcon->setToolTip("Click to open SpotiQuit.");
//Minimieren bei Programmstart?
if (ui->checkBoxStartMinimised->isChecked()){
qDebug() << "Show minimised";
showMinimized();
}
//Programm beim Start im Systray verstecken
if (ui->checkBoxMinimizeToTray->isChecked()){
trayIcon->show();
//Wir brauchen den Timer, weil sonst fühlt sich der Konstruktor gehetzt.
QTimer trayTimer;
trayTimer.singleShot(1000, this, SLOT(hide()));
}
//Standardtext setzen
ui->label->setText("Ready");
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
//Variable für die Pausenzeit erhält ihren Wert von der spinBox.
int pauseTime = ui->spinBox->value();
//Spotify-Pfad einlesen
QString spotifyExePath = ui->lineEdit->text();
//Wenn Spotify geöffnet ist, Spotify schließen
if (IsSpotifyOpen()) {
// Spotify.exe beenden
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Closing Spotify";
ui->label->setText("Closing Spotify");
if (ui->checkBoxGentleClosing->isChecked()){
system("taskkill /im Spotify.exe");
ui->label->setText("Waiting for quit...");
repaint();
//Erfolgsprüfung von taskkill
while (IsSpotifyOpen()){
Sleep(20);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Waiting for Spotify to quit gently";
}
} else {
system("taskkill /t /f /im Spotify.exe");
ui->label->setText("Waiting for quit...");
repaint();
//Erfolgsprüfung von taskkill
while (IsSpotifyOpen()){
Sleep(20);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Waiting for Spotify to quit forcefully";
}
}
}
//Wenn Spotify geschlossen ist, Spotify öffnen
if (!IsSpotifyOpen()){
qDebug() << "Spotify is not started";
qDebug() << "Trying to start Spotify";
ui->label->setText("Starting Spotify");
std::string spotifyExePathStdString = spotifyExePath.toStdString();
std::string startCommand = "start " + spotifyExePathStdString;
system(startCommand.c_str()); // startCommand als Befehl
ui->label->setText("Waiting for start...");
repaint();
//Erfolgskontrolle Öffnen
while (!IsSpotifyOpen()){
Sleep(20);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Waiting for Spotify to start";
}
}
//Nun mal schauen, ob wir das Fenster erhaschen können...
for (int startversuch = 1; startversuch <=400; startversuch++){
HWND spotifyWindow = FindWindow(NULL, L"Spotify");
SetForegroundWindow(spotifyWindow);
if (GetForegroundWindow() == spotifyWindow){
qDebug() << "Spotify in den Vordergrund geholt.";
ui->label->setText("Spotify active");
//Pause verhindert vorzeitige Tastenaktion
Sleep(pauseTime);
if (ui->resumePlaybackCheckBox->isChecked()){
if (ui->radioButton->isChecked()){
//Medientaste play/pause
keybd_event(VK_MEDIA_PLAY_PAUSE, 0, 0, 0); // Keydown
keybd_event(VK_MEDIA_PLAY_PAUSE, 0, KEYEVENTF_KEYUP, 0); // Keyup
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Media play/pause pressed";
ui->label->setText("Play/Pause pressed");
} else if (ui->radioButton_2->isChecked()){
//Leertaste
keybd_event(VK_SPACE, 0, 0, 0); // Keydown
keybd_event(VK_SPACE, 0, KEYEVENTF_KEYUP, 0); // Keyup
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Spacebar pressed";
ui->label->setText("Spacebar pressed");
}
}
Sleep(pauseTime);
//Wenn die Herrschaften es wünschen, Spotify minimieren
if (ui->checkBox->isChecked()){
ShowWindow(spotifyWindow, SW_SHOWMINIMIZED); //aktivieren, minimieren
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Spotify minimised";
ui->label->setText("Spotify minimised");
}
ui->label->setText("Ready");
break;
} else {
ui->label->setText("Getting Spotify...");
repaint();
qDebug() << "Spotify-Fenster nicht im Vordergrund. " << startversuch;
Sleep(50);
if (startversuch == 400 && GetForegroundWindow() != spotifyWindow){
ui->label->setText("Spotify not found");
}
}
}
}
//Die Medientasten
//Vorwärts-Taste
void MainWindow::on_pushButton_3_clicked()
{
//Prüfung ob Spotify geöffnet und disponiert ist
if (IsSpotifyOpen() && IsSpotifyActiveWindow()){
keybd_event(VK_MEDIA_NEXT_TRACK, 0, 0, 0); // Keydown
keybd_event(VK_MEDIA_NEXT_TRACK, 0, KEYEVENTF_KEYUP, 0); // Keyup
}
}
//Rückwärts-Taste
void MainWindow::on_pushButton_2_clicked()
{
keybd_event(VK_MEDIA_PREV_TRACK, 0, 0, 0); // Keydown
keybd_event(VK_MEDIA_PREV_TRACK, 0, KEYEVENTF_KEYUP, 0); // Keyup
}
//Play-Pause-Taste
void MainWindow::on_playPauseButton_clicked()
{
keybd_event(VK_MEDIA_PLAY_PAUSE, 0, 0, 0); // Keydown
keybd_event(VK_MEDIA_PLAY_PAUSE, 0, KEYEVENTF_KEYUP, 0); // Keyup
}
//Knöpfe zur Auswahl der Abspieltaste aktivieren / deaktivieren
void MainWindow::on_resumePlaybackCheckBox_clicked()
{
if (!ui->resumePlaybackCheckBox->isChecked()) {
// Die Checkbox wurde abgewählt, Radio-Buttons deaktivieren
ui->radioButton->setEnabled(false);
ui->radioButton_2->setEnabled(false);
} else {
//Checkbox aktiv, Radio-Buttons aktivieren
ui->radioButton->setEnabled(true);
ui->radioButton_2->setEnabled(true);
}
}
//Pfadauswahl
void MainWindow::on_pushButton_4_clicked()
{
// Benutzer nach dem Pfad zur Spotify.exe-Datei fragen
QString spotifyExePath = QFileDialog::getOpenFileName(this, "Spotify.exe auswählen", QDir::homePath(), "Ausführbare Dateien (*.exe)");
if (!spotifyExePath.isEmpty()) {
//Schrägstriche umdrehen
spotifyExePath.replace("/", "\\");
// Pfad bei Bedarf in 8.3-Kurznamen umwandeln
WCHAR shortPath[MAX_PATH];
if (GetShortPathName((LPCWSTR)spotifyExePath.utf16(), shortPath, MAX_PATH)) {
spotifyExePath = QString::fromUtf16(reinterpret_cast<const char16_t*>(shortPath));
}
// Den Pfad in das lineEdit-Widget setzen
ui->lineEdit->setText(spotifyExePath);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Path set: " << spotifyExePath;
} else {
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Path error";
}
}
//Prüfung ob die Taskliste Spotify.exe enthält
bool MainWindow::IsSpotifyOpen() {
QProcess process;
process.start("tasklist");
process.waitForFinished();
QString taskListOutput = process.readAllStandardOutput();
return taskListOutput.contains("Spotify.exe");
}
//Setze Standardpfad zu Spotify.exe in Textfeld
void MainWindow::pfadSetzen(){
// Den Pfad zur Spotify.exe setzen
QString appDataPath = QProcessEnvironment::systemEnvironment().value("APPDATA");
QString localAppDataPath = QProcessEnvironment::systemEnvironment().value("LOCALAPPDATA");
QString spotifyExePath = appDataPath + "\\Spotify\\Spotify.exe";
// Überprüfen, ob Spotify.exe im LocalAppData-Verzeichnis vorhanden ist (falls nicht, %appdata% verwenden)
if (!QFile::exists(spotifyExePath)) {
spotifyExePath = localAppDataPath + "\\Spotify\\Spotify.exe";
}
// Pfad bei Bedarf in 8.3-Kurznamen umwandeln
WCHAR shortPath[MAX_PATH];
if (GetShortPathName((LPCWSTR)spotifyExePath.utf16(), shortPath, MAX_PATH)) {
spotifyExePath = QString::fromUtf16(reinterpret_cast<const char16_t*>(shortPath));
}
// Den Pfad in das lineEdit-Widget setzen
ui->lineEdit->setText(spotifyExePath);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Path set: " << spotifyExePath;
}
//Pfad zurücksetzen
void MainWindow::on_pushButton_5_clicked()
{
pfadSetzen();
}
//Überschriebenes showEvent (war: Tastenkürzel bauen)
void MainWindow::showEvent(QShowEvent* event)
{
QMainWindow::showEvent(event);
// setHotkey(); //Brauchen wir das hier?
}
void MainWindow::closeEvent(QCloseEvent* event)
{
//Kürzel wieder entfernen.
//Bitte verlassen Sie diesen Raum so, wie Sie ihn vorzufinden wünschen.
UnregisterHotKey(reinterpret_cast<HWND>(this->winId()), 1);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel entfernt.";
QMainWindow::closeEvent(event);
}
bool MainWindow::nativeEvent(const QByteArray& eventType, void* message, long long* result)
{
//qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - nativeEvent aufgerufen";
Q_UNUSED(eventType);
// Reaktion auf Kürzel
MSG* msg = static_cast<MSG*>(message);
if (msg->message == WM_HOTKEY && msg->wParam == 1)
{
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel gedrückt.";
// Kürzel wurde gedrückt, rufe Funktion auf
on_pushButton_clicked();
}
return false;
}
//Die Funktion zum Speichern der Einstellungen
void MainWindow::saveSettings() {
//Pfad zur neuen .ini-Datei festlegen
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
//Checkbox-Einstellungen speichern
settings.setValue("checkBoxGentleClosing", ui->checkBoxGentleClosing->isChecked());
settings.setValue("resumePlaybackCheckBox", ui->resumePlaybackCheckBox->isChecked());
settings.setValue("checkBox", ui->checkBox->isChecked());
//Radio-Button-Einstellungen speichern
settings.setValue("radioButton", ui->radioButton->isChecked());
settings.setValue("radioButton_2", ui->radioButton_2->isChecked());
//Eingabefeld-Einstellungen speichern
settings.setValue("lineEdit", ui->lineEdit->text());
//Wert der spinBox speichern
settings.setValue("spinBoxValue", ui->spinBox->value());
//Autostart speichern
settings.setValue("checkBoxAutostart", ui->checkBoxAutostart->isChecked());
//Minimieren speichern
settings.setValue("checkBoxStartMinimised", ui->checkBoxStartMinimised->isChecked());
//Systray speichern
settings.setValue("checkBoxMinimizeToTray", ui->checkBoxMinimizeToTray->isChecked());
//Hotkey speichern
settings.setValue("comboBoxModifier_1", ui->comboBoxModifier_1->currentText());
settings.setValue("comboBoxModifier_2", ui->comboBoxModifier_2->currentText());
settings.setValue("lineEditHotkey", ui->lineEditHotkey->text());
//Hotkey-Checkbox
settings.setValue("checkBoxHotkey", ui->checkBoxHotkey->isChecked());
}
// Einstellungen laden
void MainWindow::loadSettings() {
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
//Checkbox zum sanften Schließen wiederherstellen
ui->checkBoxGentleClosing->setChecked(settings.value("checkBoxGentleClosing", false).toBool());
//Überprüfen, ob die Einstellung für resumePlaybackCheckBox existiert
if (settings.contains("resumePlaybackCheckBox")) {
ui->resumePlaybackCheckBox->setChecked(settings.value("resumePlaybackCheckBox").toBool());
//Radioknöpfe entsprechend der Checkbox regulieren
if (ui->resumePlaybackCheckBox->isChecked()){
ui->radioButton->setEnabled(true);
ui->radioButton_2->setEnabled(true);
} else {
ui->radioButton->setEnabled(false);
ui->radioButton_2->setEnabled(false);
}
} else {
//Wenn die Einstellung für resumePlaybackCheckBox nicht existiert, Checkbox auf checked setzen
ui->resumePlaybackCheckBox->setChecked(true);
ui->radioButton->setEnabled(true);
ui->radioButton_2->setEnabled(true);
ui->radioButton_2->setChecked(true);
}
//Überprüfung der checkBox zum Minimieren
if (settings.contains("checkBox")){
ui->checkBox->setChecked(settings.value("checkBox").toBool());
} else{
//Wenn checkBox nicht in den Einstellungen ist, Standardwert setzen
ui->checkBox->setChecked(true);
}
//Radio-Button-Einstellungen wiederherstellen
ui->radioButton->setChecked(settings.value("radioButton", false).toBool());
ui->radioButton_2->setChecked(settings.value("radioButton_2", false).toBool());
//Spotify-Pfad wiederherstellen
QString lineEditText = settings.value("lineEdit", "").toString();
if (!lineEditText.isEmpty()) {
ui->lineEdit->setText(lineEditText);
} else {
// Wenn der Text in den Einstellungen nicht gefunden wurde, Standardpfad setzen
pfadSetzen();
}
// Wert der spinBox wiederherstellen
int spinBoxValue = settings.value("spinBoxValue", -1).toInt();
if (spinBoxValue != -1) {
ui->spinBox->setValue(spinBoxValue);
} else {
// Wenn der Wert nicht in den Einstellungen gespeichert ist, Standardwert setzen
ui->spinBox->setValue(100);
}
//Autostart laden
if (settings.contains("checkBoxAutostart")){
ui->checkBoxAutostart->setChecked(settings.value("checkBoxAutostart").toBool());
} else{
//Wenn checkBoxAutostart nicht in den Einstellungen ist, Standardwert setzen
ui->checkBoxAutostart->setChecked(false);
}
//Minimieren laden
if (settings.contains("checkBoxStartMinimised")){
ui->checkBoxStartMinimised->setChecked(settings.value("checkBoxStartMinimised").toBool());
} else{
ui->checkBoxStartMinimised->setChecked(false);
}
//Systray laden
if (settings.contains("checkBoxMinimizeToTray")){
ui->checkBoxMinimizeToTray->setChecked(settings.value("checkBoxMinimizeToTray").toBool());
} else{
ui->checkBoxMinimizeToTray->setChecked(false);
}
//Hotkey laden
//Wenn Hotkey gespeichert ist, Werte laden
if (settings.contains("comboBoxModifier_1") && settings.contains("comboBoxModifier_2") && settings.contains("lineEditHotkey")){
ui->comboBoxModifier_1->setCurrentText(settings.value("comboBoxModifier_1").toString());
ui->comboBoxModifier_2->setCurrentText(settings.value("comboBoxModifier_2").toString());
ui->lineEditHotkey->setText(settings.value("lineEditHotkey").toString());
//Wenn kein Hotkey gespeichert ist, Standardwerte setzen
} else{
ui->comboBoxModifier_1->setCurrentText("Ctrl");
ui->comboBoxModifier_2->setCurrentText("Alt");
ui->lineEditHotkey->setText("S");
}
//Hotkey-Checkbox laden
if(settings.contains("checkBoxHotkey")){
ui->checkBoxHotkey->setChecked(settings.value("checkBoxHotkey").toBool());
} else{
ui->checkBoxHotkey->setChecked(true);
}
}
void MainWindow::on_pushButtonSaveSettings_clicked()
{
saveSettings();
ui->label->setText("Settings saved");
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Settings saved";
// Pfad zur INI-Datei abrufen
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
QString iniFilePath = settings.fileName(); // Dies gibt den vollständigen Pfad zur INI-Datei zurück
//Aufspringfenster zeigt ehrenhaft den Pfad zur Einstellungsdatei an.
QMessageBox msgBox;
msgBox.setWindowTitle("Settings location");
msgBox.setText("The settings file is located at:\n" + iniFilePath);
msgBox.setStyleSheet("QLabel { color: rgb(216, 184, 49); font: 700 9pt Arial; }"
"QMessageBox {setStandardButtons(QMessageBox::Ok); }"
"QMessageBox {setDefaultButton(QMessageBox::Ok); }"
);
//Kopierbaren Pfad als Text beifügen
msgBox.setDetailedText(iniFilePath);
msgBox.exec();
}
//Das bleibt alles so, wies hier ist und da wird sich hier nichts dran rütteln,
//egal ob du hier bist und nich!
void MainWindow::on_pushButtonReset_clicked()
{
ui->resumePlaybackCheckBox->setChecked(true);
ui->radioButton->setEnabled(true);
ui->radioButton_2->setEnabled(true);
ui->radioButton_2->setChecked(true);
ui->radioButton->setChecked(false);
ui->checkBoxGentleClosing->setChecked(false);
ui->checkBox->setChecked(true);
ui->spinBox->setValue(100);
pfadSetzen();
ui->label->setText("Settings reset");
ui->checkBoxAutostart->setChecked(false);
ui->checkBoxStartMinimised->setChecked(false);
ui->comboBoxModifier_1->setCurrentText("Ctrl");
ui->comboBoxModifier_2->setCurrentText("Alt");
ui->lineEditHotkey->setText("S");
ui->checkBoxHotkey->setChecked(true);
}
//Der Autostart-Schalter
void MainWindow::on_checkBoxAutostart_stateChanged(int arg1)
{
//Wir speichern den Autostart-Wert automatisch in den Einstellungen, weil: wer denkt da schon dran?
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
settings.setValue("checkBoxAutostart", ui->checkBoxAutostart->isChecked());
//Je nach Wert der Checkbox wird der Autostart-Pfad in die Registry gesetzt / entfernt
if (ui->checkBoxAutostart->isChecked()){
addToAutostart();
} else {
removeFromAutostart();
}
}
//Funktion zum Hinzufügen des Programms zum Autostart
void MainWindow::addToAutostart() {
QString programPath = QCoreApplication::applicationFilePath();
QString appName = QCoreApplication::applicationName();
//Den Pfad mit korrekten Schrägstrichen formatieren
programPath = QDir::toNativeSeparators(programPath);
//Autostart-Pfad festlegen
QString regPath = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run";
//Autostart-Eintrag setzen
QSettings settings(regPath, QSettings::NativeFormat);
settings.setValue(appName, programPath);
}
//Funktion zum Entfernen des Programms aus dem Autostart
void MainWindow::removeFromAutostart() {
QString appName = QCoreApplication::applicationName();
//Autostart-Pfad in der Registry festlegen
QString regPath = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run";
//Autostart-Eintrag aus der Registry entfernen
QSettings settings(regPath, QSettings::NativeFormat);
settings.remove(appName);
}
void MainWindow::on_checkBoxStartMinimised_stateChanged(int arg1)
{
//Wir speichern den Wert automatisch in den Einstellungen, weil: wer denkt da schon dran?
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
settings.setValue("checkBoxStartMinimised", ui->checkBoxStartMinimised->isChecked());
}
//Holen wir uns den Kurzbefehl zum Spotify-Neustart
void MainWindow::setHotkey(){
//Nur wenn das Kästchen angekreuzt ist
if (ui->checkBoxHotkey->isChecked()){
//ersten Modifier auslesen
if (ui->comboBoxModifier_1->currentText() == "Ctrl"){
modifier1 = MOD_CONTROL;
} else if (ui->comboBoxModifier_1->currentText() == "Alt"){
modifier1 = MOD_ALT;
} else {
modifier1 = 0;
}
//zwoten Modifier auslesen
if (ui->comboBoxModifier_2->currentText() == "Ctrl"){
modifier2 = MOD_CONTROL;
} else if (ui->comboBoxModifier_2->currentText() == "Alt"){
modifier2 = MOD_ALT;
} else {
modifier2 = 0;
}
//Hotkey-Feld auslesen
//Den ersten Buchstaben der Hotkey-Eingabezeile als Charakter speichern
QString text = ui->lineEditHotkey->text();
if (!text.isEmpty()) {
QChar firstChar = text.at(0).toUpper(); //Konvertiert den Buchstaben in Char-Großbuchstaben
hotkey = firstChar.toLatin1(); //QChar zu Integer zwecks Hotkeyregistrierung
qDebug() << "Hotkey erfolgreich extrahiert: " << hotkey;
} else {
hotkey = 0;
qDebug() << "Das QLineEdit ist leer. Kein Buchstabe zum Extrahieren.";
}
//Hotkey basteln
//Kürzel für den Spotify-Neustart global in Windows registrieren
//Wenn beide Modifier und der Hotkey vorhanden sind
if (modifier1 != 0 && modifier2 != 0 && hotkey != 0 ){
RegisterHotKey(reinterpret_cast<HWND>(this->winId()), 1, modifier1 | modifier2, hotkey);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel registriert: " << modifier1 << " + " << modifier2 << " + " << hotkey;
}
//Wenn nur der erste Modifier und der Hotkey vorhanden sind
if (modifier1 != 0 && modifier2 == 0 && hotkey != 0){
RegisterHotKey(reinterpret_cast<HWND>(this->winId()), 1, modifier1 , hotkey);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel registriert: " << modifier1 << " + " << hotkey;
}
//Wenn nur der zwote Modifier und der Hotkey vorhanden sind
if (modifier1 == 0 && modifier2 != 0 && hotkey != 0){
RegisterHotKey(reinterpret_cast<HWND>(this->winId()), 1, modifier2 , hotkey);
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel registriert: " << modifier1 << " + " << hotkey;
}
//Wenn nichts da ist
if (modifier1 == 0 && modifier2 == 0 && hotkey == 0 ){
ui->label->setText("Missing key");
repaint();
}
}
}
void MainWindow::on_lineEditHotkey_textChanged(const QString &text)
{
//Überprüfen, ob der Text länger als ein Zeichen ist
if (text.length() > 1) {
//Falls ja, begrenzen auf den ersten Buchstaben
ui->lineEditHotkey->setText(text.at(0));
}
//Hotkey zusammenstückeln
setHotkey();
ui->label->setText("Hotkey set");
}
void MainWindow::on_comboBoxModifier_1_currentTextChanged(const QString &arg1)
{
setHotkey();
ui->label->setText("Hotkey set");
}
void MainWindow::on_comboBoxModifier_2_currentTextChanged(const QString &arg1)
{
setHotkey();
ui->label->setText("Hotkey set");
}
void MainWindow::on_checkBoxHotkey_stateChanged(int arg1)
{
if (ui->checkBoxHotkey->isChecked()){
setHotkey();
ui->label->setText("Hotkey set");
ui->comboBoxModifier_1->setEnabled(true);
ui->comboBoxModifier_2->setEnabled(true);
ui->lineEditHotkey->setEnabled(true);
} else {
UnregisterHotKey(reinterpret_cast<HWND>(this->winId()), 1);
ui->label->setText("Hotkey removed");
qDebug() << QTime::currentTime().toString("hh:mm:ss:zzz") + " - Kürzel entfernt.";
ui->comboBoxModifier_1->setEnabled(false);
ui->comboBoxModifier_2->setEnabled(false);
ui->lineEditHotkey->setEnabled(false);
}
}
//Prüfen ob Spotify das aktive Fenster ist
bool MainWindow::IsSpotifyActiveWindow() {
QProcess process;
process.start("powershell", QStringList() << "-Command" << "(Get-Process | Where-Object { $_.MainWindowTitle -eq 'Spotify' }).MainWindowTitle");
process.waitForFinished();
QString activeWindowTitle = process.readAllStandardOutput().trimmed();
return activeWindowTitle == "Spotify";
}
//Spotify als aktives Fenster setzen
void ActivateSpotifyWindow() {
HWND spotifyWindow = FindWindow(NULL, L"Spotify"); // Den Fenstertitel entsprechend anpassen
if (spotifyWindow != NULL) {
ShowWindow(spotifyWindow, SW_RESTORE); // Stellt das Fenster wieder her (falls minimiert)
SetActiveWindow(spotifyWindow); // Aktiviert das Fenster, ohne es in den Vordergrund zu holen
}
}
void MainWindow::on_checkBoxMinimizeToTray_stateChanged(int arg1)
{
//Systray-Präferenzen automatisch in Einstellungen speichern
QSettings settings(QSettings::IniFormat, QSettings::UserScope, "Alsweider", "SpotiQuit");
settings.setValue("checkBoxMinimizeToTray", ui->checkBoxMinimizeToTray->isChecked());
}
//Systray-Aktion bei Klick auf Icon
void MainWindow::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
{
if (reason == QSystemTrayIcon::Trigger) {
activateMainWindow();
}
}
void MainWindow::activateMainWindow()
{
this->showNormal(); //Zeige das Hauptfenster wieder im normalen Zustand
this->activateWindow(); //Aktiviere das Hauptfenster und bringe es in den Vordergrund
}
//Ungenutzt
void MainWindow::hideMainWindow()
{
trayIcon->show();
this->hide();
}
//Minimieren wird überschrieben mit Systray-Verstecken
void MainWindow::changeEvent(QEvent *event){
if (event->type() == QEvent::WindowStateChange) {
// Prüft, ob das Fenster minimiert wird
if (this->windowState() & Qt::WindowMinimized) {
if (ui->checkBoxMinimizeToTray->isChecked()){
trayIcon->show();
hide();
}
}
}
//Ruft die Basisimplementierung auf
QMainWindow::changeEvent(event);
}