#include "proxgui.h"
#include "proxguiqt.h"
#include "proxmark3.h"
-#include "uart.h"
static ProxGuiQT *gui = NULL;
static WorkerThread *main_loop_thread = NULL;
-WorkerThread::WorkerThread(char *script_cmds_file, char *script_cmd,
- bool usb_present, serial_port* sp)
- : script_cmds_file(script_cmds_file), script_cmd(script_cmd),
- usb_present(usb_present), sp(sp)
+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)
{
}
}
void WorkerThread::run() {
- main_loop(script_cmds_file, script_cmd, usb_present, sp);
+ main_loop(script_cmds_file, script_cmd, usb_present);
}
extern "C" void ShowGraphWindow(void)
gui->MainLoop();
}
-extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file,
- char *script_cmd, bool usb_present,
- serial_port* sp)
+extern "C" void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool usb_present)
{
#ifdef Q_WS_X11
- bool useGUI = getenv("DISPLAY") != 0;
-#else
- bool useGUI = true;
-#endif
- if (!useGUI)
+ if (getenv("DISPLAY") == NULL)
return;
+#endif
- main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, usb_present, sp);
+ main_loop_thread = new WorkerThread(script_cmds_file, script_cmd, usb_present);
gui = new ProxGuiQT(argc, argv, main_loop_thread);
}