]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
212ef3a0 | 2 | // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net> |
3 | // | |
a553f267 | 4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // GUI functions | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
6658905f | 11 | #include "proxgui.h" |
12 | #include "proxguiqt.h" | |
5acd195d | 13 | #include "proxmark3.h" |
6658905f | 14 | |
15 | static ProxGuiQT *gui = NULL; | |
5acd195d | 16 | static WorkerThread *main_loop_thread = NULL; |
17 | ||
18 | WorkerThread::WorkerThread(char *script_cmds_file, bool usb_present) : script_cmds_file(script_cmds_file), usb_present(usb_present) | |
19 | { | |
20 | } | |
21 | ||
22 | WorkerThread::~WorkerThread() | |
23 | { | |
24 | } | |
25 | ||
26 | void WorkerThread::run() { | |
27 | main_loop(script_cmds_file, usb_present); | |
28 | } | |
6658905f | 29 | |
30 | extern "C" void ShowGraphWindow(void) | |
31 | { | |
7fe9b0b7 | 32 | if (!gui) |
33 | return; | |
34 | ||
35 | gui->ShowGraphWindow(); | |
6658905f | 36 | } |
37 | ||
38 | extern "C" void HideGraphWindow(void) | |
39 | { | |
7fe9b0b7 | 40 | if (!gui) |
41 | return; | |
42 | ||
43 | gui->HideGraphWindow(); | |
6658905f | 44 | } |
45 | ||
46 | extern "C" void RepaintGraphWindow(void) | |
47 | { | |
7fe9b0b7 | 48 | if (!gui) |
49 | return; | |
6658905f | 50 | |
7fe9b0b7 | 51 | gui->RepaintGraphWindow(); |
6658905f | 52 | } |
53 | ||
54 | extern "C" void MainGraphics(void) | |
55 | { | |
5acd195d | 56 | if (!gui) |
57 | return; | |
6658905f | 58 | |
5acd195d | 59 | main_loop_thread->start(); |
60 | gui->MainLoop(); | |
6658905f | 61 | } |
62 | ||
5acd195d | 63 | extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, bool usb_present) |
6658905f | 64 | { |
65 | #ifdef Q_WS_X11 | |
5acd195d | 66 | bool useGUI = getenv("DISPLAY") != 0; |
6658905f | 67 | #else |
5acd195d | 68 | bool useGUI = true; |
6658905f | 69 | #endif |
5acd195d | 70 | if (!useGUI) |
71 | return; | |
6658905f | 72 | |
5acd195d | 73 | gui = new ProxGuiQT(argc, argv); |
74 | main_loop_thread = new WorkerThread(script_cmds_file, usb_present); | |
75 | QObject::connect(main_loop_thread, SIGNAL(finished()), main_loop_thread, SLOT(deleteLater())); | |
76 | QObject::connect(main_loop_thread, SIGNAL(finished()), gui, SLOT(_Exit())); | |
6658905f | 77 | } |
78 | ||
5acd195d | 79 | |
6658905f | 80 | extern "C" void ExitGraphics(void) |
81 | { | |
7fe9b0b7 | 82 | if (!gui) |
83 | return; | |
84 | ||
1a3c0064 | 85 | gui->Exit(); |
7fe9b0b7 | 86 | gui = NULL; |
6658905f | 87 | } |