]>
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 | ||
3851172d | 18 | WorkerThread::WorkerThread(char *script_cmds_file, char *script_cmd, bool usb_present) : script_cmds_file(script_cmds_file), script_cmd(script_cmd), usb_present(usb_present) |
5acd195d | 19 | { |
20 | } | |
21 | ||
22 | WorkerThread::~WorkerThread() | |
23 | { | |
24 | } | |
25 | ||
26 | void WorkerThread::run() { | |
3851172d | 27 | main_loop(script_cmds_file, script_cmd, usb_present); |
5acd195d | 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 | gui->MainLoop(); |
6658905f | 60 | } |
61 | ||
3851172d | 62 | extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool usb_present) |
6658905f | 63 | { |
64 | #ifdef Q_WS_X11 | |
44964fd1 | 65 | if (getenv("DISPLAY") == NULL) |
5acd195d | 66 | return; |
44964fd1 | 67 | #endif |
6658905f | 68 | |
3851172d | 69 | main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, usb_present); |
aa757f71 | 70 | gui = new ProxGuiQT(argc, argv, main_loop_thread); |
6658905f | 71 | } |
72 | ||
73 | extern "C" void ExitGraphics(void) | |
74 | { | |
aa757f71 OM |
75 | if (!gui) |
76 | return; | |
7fe9b0b7 | 77 | |
aa757f71 OM |
78 | gui->Exit(); |
79 | gui = NULL; | |
6658905f | 80 | } |