77 lines
1.5 KiB
C++
Executable File
77 lines
1.5 KiB
C++
Executable File
#define UNICODE
|
|
#define QT_NO_DEBUG
|
|
#define QT_CORE_LIB
|
|
#define QT_GUI_LIB
|
|
#define QT_THREAD_SUPPORT
|
|
|
|
#include <QApplication>
|
|
#include <QtGui>
|
|
//Q_IMPORT_PLUGIN(QJpegPlugin)
|
|
//Q_IMPORT_PLUGIN(QMngPlugin)
|
|
|
|
#include <../base.hpp>
|
|
|
|
#include <nall/config.hpp>
|
|
#include <nall/input.hpp>
|
|
using namespace nall;
|
|
|
|
#include <ruby/ruby.hpp>
|
|
using namespace ruby;
|
|
|
|
#include <libreader/libreader.hpp>
|
|
#include <libreader/filereader.hpp>
|
|
|
|
#if defined(GZIP_SUPPORT)
|
|
#include <libreader/gzreader.hpp>
|
|
#include <libreader/zipreader.hpp>
|
|
#endif
|
|
|
|
#if defined(JMA_SUPPORT)
|
|
#include <libreader/jmareader.hpp>
|
|
#endif
|
|
|
|
#include <libfilter/libfilter.hpp>
|
|
|
|
#include "input/input.hpp"
|
|
#include "utility/utility.hpp"
|
|
|
|
class Application {
|
|
public:
|
|
class App : public QApplication {
|
|
public:
|
|
#ifdef _WIN32
|
|
bool winEventFilter(MSG *msg, long *result);
|
|
#endif
|
|
App(int argc, char **argv) : QApplication(argc, argv) {}
|
|
} *app;
|
|
|
|
bool terminate; //set to true to terminate main() loop and exit emulator
|
|
bool power;
|
|
bool pause;
|
|
bool autopause;
|
|
|
|
clock_t clockTime;
|
|
clock_t autosaveTime;
|
|
clock_t screensaverTime;
|
|
|
|
string configFilename;
|
|
string styleSheetFilename;
|
|
|
|
int main(int argc, char **argv);
|
|
void processEvents();
|
|
void locateFile(string &filename, bool createDataDirectory = false);
|
|
void initPaths(const char *basename);
|
|
void init();
|
|
|
|
Application();
|
|
~Application();
|
|
} application;
|
|
|
|
struct Style {
|
|
enum {
|
|
WindowMargin = 5,
|
|
WidgetSpacing = 5,
|
|
SeparatorSpacing = 5,
|
|
};
|
|
};
|