2015-04-13 00:29:46 -04:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2011-2015 - Andres Suarez
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-04-12 15:20:57 -04:00
|
|
|
#ifndef WIMP_H
|
|
|
|
#define WIMP_H
|
|
|
|
|
|
|
|
#include "wimp_global.h"
|
|
|
|
#include <QtWidgets/qwidget.h>
|
|
|
|
#include <QtWidgets/qapplication.h>
|
|
|
|
#include <QtQml/qqmlapplicationengine.h>
|
|
|
|
|
|
|
|
class WIMPSHARED_EXPORT Wimp : public QGuiApplication
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Wimp(int argc, char *argv[]): QGuiApplication(argc, argv) {}
|
|
|
|
int CreateMainWindow();
|
2015-04-13 00:29:46 -04:00
|
|
|
void SetTitle(char* title);
|
2015-04-12 15:20:57 -04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WIMP_H
|