mirror of https://github.com/bsnes-emu/bsnes.git
64 lines
1.3 KiB
C++
Executable File
64 lines
1.3 KiB
C++
Executable File
#include "reference.hpp"
|
|
|
|
#include "font.cpp"
|
|
#include "message-window.cpp"
|
|
#include "window.cpp"
|
|
|
|
#include "action/action.cpp"
|
|
#include "action/menu.cpp"
|
|
#include "action/separator.cpp"
|
|
#include "action/item.cpp"
|
|
#include "action/check-item.cpp"
|
|
#include "action/radio-item.cpp"
|
|
|
|
#include "widget/widget.cpp"
|
|
#include "widget/button.cpp"
|
|
#include "widget/check-box.cpp"
|
|
#include "widget/combo-box.cpp"
|
|
#include "widget/hex-edit.cpp"
|
|
#include "widget/horizontal-slider.cpp"
|
|
#include "widget/label.cpp"
|
|
#include "widget/line-edit.cpp"
|
|
#include "widget/list-view.cpp"
|
|
#include "widget/progress-bar.cpp"
|
|
#include "widget/radio-box.cpp"
|
|
#include "widget/text-edit.cpp"
|
|
#include "widget/vertical-slider.cpp"
|
|
#include "widget/viewport.cpp"
|
|
|
|
Geometry pOS::availableGeometry() {
|
|
return { 0, 0, 0, 0 };
|
|
}
|
|
|
|
Geometry pOS::desktopGeometry() {
|
|
return { 0, 0, 0, 0 };
|
|
}
|
|
|
|
string pOS::fileLoad(Window &parent, const string &path, const lstring &filter) {
|
|
return "";
|
|
}
|
|
|
|
string pOS::fileSave(Window &parent, const string &path, const lstring &filter) {
|
|
return "";
|
|
}
|
|
|
|
string pOS::folderSelect(Window &parent, const string &path) {
|
|
return "";
|
|
}
|
|
|
|
void pOS::main() {
|
|
}
|
|
|
|
bool pOS::pendingEvents() {
|
|
return false;
|
|
}
|
|
|
|
void pOS::processEvents() {
|
|
}
|
|
|
|
void pOS::quit() {
|
|
}
|
|
|
|
void pOS::initialize() {
|
|
}
|