/* RetroArch - A frontend for libretro. * Copyright (C) 2011-2016 - Daniel De Matteis * * RetroArch is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with RetroArch. * If not, see . */ #include #include #include #include #include #include #include #ifdef HAVE_CONFIG_H #include "../../config.h" #endif #ifdef HAVE_QT_WRAPPER #include "qt/wrapper/wrapper.h" #else #include "ui_qt.h" #endif #include "../ui_companion_driver.h" #include "../../core.h" #include "../../configuration.h" #include "../../runloop.h" #include "../../tasks/tasks_internal.h" #ifdef HAVE_QT_WRAPPER struct Wimp* wimp; char* args[] = {""}; #endif typedef struct ui_companion_qt { void *empty; #ifdef HAVE_QT_WRAPPER volatile bool quit; slock_t *lock; sthread_t *thread; #endif } ui_companion_qt_t; #ifdef HAVE_QT_WRAPPER static void qt_thread(void *data) { ui_companion_qt_t *handle = (ui_companion_qt_t*)data; wimp = ctrWimp(0, NULL); if(wimp) { settings_t *settings = config_get_ptr(); GetSettings(wimp, settings); CreateMainWindow(wimp); } } #endif static void ui_companion_qt_deinit(void *data) { ui_companion_qt_t *handle = (ui_companion_qt_t*)data; if (!handle) return; #ifdef HAVE_QT_WRAPPER slock_free(handle->lock); sthread_join(handle->thread); #endif free(handle); } static void *ui_companion_qt_init(void) { ui_companion_qt_t *handle = (ui_companion_qt_t*)calloc(1, sizeof(*handle)); if (!handle) return NULL; #ifdef HAVE_QT_WRAPPER settings_t *settings = config_get_ptr(); handle->lock = slock_new(); handle->thread = sthread_create(qt_thread, handle); if (!handle->thread) { slock_free(handle->lock); free(handle); return NULL; } #endif return handle; } static int ui_companion_qt_iterate(void *data, unsigned action) { (void)data; (void)action; return 0; } static void ui_companion_qt_notify_content_loaded(void *data) { (void)data; } static void ui_companion_qt_toggle(void *data) { ui_companion_qt_init(); } static void ui_companion_qt_event_command(void *data, enum event_command cmd) { ui_companion_qt_t *handle = (ui_companion_qt_t*)data; if (!handle) return; #ifdef HAVE_QT_WRAPPER slock_lock(handle->lock); command_event(cmd, NULL); slock_unlock(handle->lock); #endif } static void ui_companion_qt_notify_list_pushed(void *data, file_list_t *list, file_list_t *menu_list) { (void)data; (void)list; (void)menu_list; } const ui_companion_driver_t ui_companion_qt = { ui_companion_qt_init, ui_companion_qt_deinit, ui_companion_qt_iterate, ui_companion_qt_toggle, ui_companion_qt_event_command, ui_companion_qt_notify_content_loaded, ui_companion_qt_notify_list_pushed, NULL, NULL, NULL, NULL, #ifdef HAVE_QT_WRAPPER NULL, NULL, NULL, NULL, #else &ui_browser_window_qt, &ui_msg_window_qt, &ui_window_qt, &ui_application_qt, #endif "qt", };