Add string.h
[legacy-proxmark3.git] / client / proxgui.cpp
blob18749158c1110f7e0bc6031f558b6d5baff6f61f
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 //
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 //-----------------------------------------------------------------------------
11 #include "proxgui.h"
12 #include "proxguiqt.h"
13 #include "proxmark3.h"
15 static ProxGuiQT *gui = NULL;
16 static WorkerThread *main_loop_thread = NULL;
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)
22 WorkerThread::~WorkerThread()
26 void WorkerThread::run() {
27 main_loop(script_cmds_file, script_cmd, usb_present);
30 extern "C" void ShowGraphWindow(void)
32 if (!gui)
33 return;
35 gui->ShowGraphWindow();
38 extern "C" void HideGraphWindow(void)
40 if (!gui)
41 return;
43 gui->HideGraphWindow();
46 extern "C" void RepaintGraphWindow(void)
48 if (!gui)
49 return;
51 gui->RepaintGraphWindow();
54 extern "C" void MainGraphics(void)
56 if (!gui)
57 return;
59 gui->MainLoop();
62 extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool usb_present)
64 #ifdef Q_WS_X11
65 if (getenv("DISPLAY") == NULL)
66 return;
67 #endif
69 main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, usb_present);
70 gui = new ProxGuiQT(argc, argv, main_loop_thread);
73 extern "C" void ExitGraphics(void)
75 if (!gui)
76 return;
78 gui->Exit();
79 gui = NULL;