Update to v094r40 release.
byuu says:
Changelog:
- updated to newest hiro API
- SFC performance profile builds once again
- hiro: Qt port completed
Errata 1: the hiro/Qt target won't run tomoko just yet. Starts by
crashing inside InputSettings because hiro/Qt isn't forcefully selecting
the first item added to a ComboButton just yet. Even with a monkey patch
to get around that, the UI is incredibly unstable. Lots of geometry
calculation bugs, and a crash when you try and access certain folders in
the browser dialog. Lots of work left to be done there, sadly.
Errata 2: the hiro/Windows port has black backgrounds on all ListView
items. It's because I need to test for unassigned colors and grab the
default Windows brush colors in those cases.
Note: alternating row colors on multi-column ListView widgets is gone
now. Not a bug. May add it back later, but I'm not sure. It doesn't
interact nicely with per-cell background colors.
Things left to do:
First, I have to fix the Windows and Qt target bugs.
Next, I need to go through and revise the hiro API even more (nothing
too major.)
Next, I need to update icarus to use the new hiro API, and add support
for the SFC games database.
Next, I have to rewrite my TSV->BML cheat code tool.
Next, I need to post a final WIP of higan+icarus publicly and wait a few
days.
Next, I need to fix any bugs reported from the final WIP that I can.
Finally, I should be able to release v095.
2015-08-18 10:18:00 +00:00
|
|
|
#define Declare(Name, Base) \
|
|
|
|
p##Name(m##Name& reference) : p##Base(reference) {} \
|
|
|
|
auto self() const -> m##Name& { return (m##Name&)reference; } \
|
|
|
|
auto state() const -> m##Name::State& { return self().state; } \
|
|
|
|
auto construct() -> void override; \
|
|
|
|
auto destruct() -> void override; \
|
|
|
|
|
|
|
|
#include "application.hpp"
|
2018-07-16 06:16:26 +00:00
|
|
|
#include "settings.hpp"
|
Update to v094r40 release.
byuu says:
Changelog:
- updated to newest hiro API
- SFC performance profile builds once again
- hiro: Qt port completed
Errata 1: the hiro/Qt target won't run tomoko just yet. Starts by
crashing inside InputSettings because hiro/Qt isn't forcefully selecting
the first item added to a ComboButton just yet. Even with a monkey patch
to get around that, the UI is incredibly unstable. Lots of geometry
calculation bugs, and a crash when you try and access certain folders in
the browser dialog. Lots of work left to be done there, sadly.
Errata 2: the hiro/Windows port has black backgrounds on all ListView
items. It's because I need to test for unassigned colors and grab the
default Windows brush colors in those cases.
Note: alternating row colors on multi-column ListView widgets is gone
now. Not a bug. May add it back later, but I'm not sure. It doesn't
interact nicely with per-cell background colors.
Things left to do:
First, I have to fix the Windows and Qt target bugs.
Next, I need to go through and revise the hiro API even more (nothing
too major.)
Next, I need to update icarus to use the new hiro API, and add support
for the SFC games database.
Next, I have to rewrite my TSV->BML cheat code tool.
Next, I need to post a final WIP of higan+icarus publicly and wait a few
days.
Next, I need to fix any bugs reported from the final WIP that I can.
Finally, I should be able to release v095.
2015-08-18 10:18:00 +00:00
|
|
|
#include "font.hpp"
|
|
|
|
#include "desktop.hpp"
|
|
|
|
#include "monitor.hpp"
|
|
|
|
#include "keyboard.hpp"
|
|
|
|
#include "mouse.hpp"
|
|
|
|
#include "browser-window.hpp"
|
|
|
|
#include "message-window.hpp"
|
|
|
|
|
|
|
|
#include "object.hpp"
|
|
|
|
#include "group.hpp"
|
|
|
|
|
|
|
|
#include "timer.hpp"
|
|
|
|
#include "window.hpp"
|
|
|
|
#include "status-bar.hpp"
|
|
|
|
#include "menu-bar.hpp"
|
|
|
|
#include "popup-menu.hpp"
|
|
|
|
|
|
|
|
#include "action/action.hpp"
|
|
|
|
#include "action/menu.hpp"
|
|
|
|
#include "action/menu-separator.hpp"
|
|
|
|
#include "action/menu-item.hpp"
|
|
|
|
#include "action/menu-check-item.hpp"
|
|
|
|
#include "action/menu-radio-item.hpp"
|
|
|
|
|
|
|
|
#include "sizable.hpp"
|
|
|
|
|
|
|
|
#include "widget/widget.hpp"
|
|
|
|
#include "widget/button.hpp"
|
|
|
|
#include "widget/canvas.hpp"
|
|
|
|
#include "widget/check-button.hpp"
|
|
|
|
#include "widget/check-label.hpp"
|
|
|
|
#include "widget/combo-button.hpp"
|
|
|
|
#include "widget/combo-button-item.hpp"
|
|
|
|
#include "widget/frame.hpp"
|
|
|
|
#include "widget/hex-edit.hpp"
|
2015-08-21 10:56:39 +00:00
|
|
|
#include "widget/horizontal-scroll-bar.hpp"
|
Update to v094r40 release.
byuu says:
Changelog:
- updated to newest hiro API
- SFC performance profile builds once again
- hiro: Qt port completed
Errata 1: the hiro/Qt target won't run tomoko just yet. Starts by
crashing inside InputSettings because hiro/Qt isn't forcefully selecting
the first item added to a ComboButton just yet. Even with a monkey patch
to get around that, the UI is incredibly unstable. Lots of geometry
calculation bugs, and a crash when you try and access certain folders in
the browser dialog. Lots of work left to be done there, sadly.
Errata 2: the hiro/Windows port has black backgrounds on all ListView
items. It's because I need to test for unassigned colors and grab the
default Windows brush colors in those cases.
Note: alternating row colors on multi-column ListView widgets is gone
now. Not a bug. May add it back later, but I'm not sure. It doesn't
interact nicely with per-cell background colors.
Things left to do:
First, I have to fix the Windows and Qt target bugs.
Next, I need to go through and revise the hiro API even more (nothing
too major.)
Next, I need to update icarus to use the new hiro API, and add support
for the SFC games database.
Next, I have to rewrite my TSV->BML cheat code tool.
Next, I need to post a final WIP of higan+icarus publicly and wait a few
days.
Next, I need to fix any bugs reported from the final WIP that I can.
Finally, I should be able to release v095.
2015-08-18 10:18:00 +00:00
|
|
|
#include "widget/horizontal-slider.hpp"
|
|
|
|
#include "widget/label.hpp"
|
|
|
|
#include "widget/line-edit.hpp"
|
|
|
|
#include "widget/progress-bar.hpp"
|
|
|
|
#include "widget/radio-button.hpp"
|
|
|
|
#include "widget/radio-label.hpp"
|
|
|
|
#include "widget/tab-frame.hpp"
|
|
|
|
#include "widget/tab-frame-item.hpp"
|
2016-05-04 10:07:13 +00:00
|
|
|
#include "widget/table-view.hpp"
|
|
|
|
#include "widget/table-view-column.hpp"
|
|
|
|
#include "widget/table-view-item.hpp"
|
|
|
|
#include "widget/table-view-cell.hpp"
|
Update to v094r40 release.
byuu says:
Changelog:
- updated to newest hiro API
- SFC performance profile builds once again
- hiro: Qt port completed
Errata 1: the hiro/Qt target won't run tomoko just yet. Starts by
crashing inside InputSettings because hiro/Qt isn't forcefully selecting
the first item added to a ComboButton just yet. Even with a monkey patch
to get around that, the UI is incredibly unstable. Lots of geometry
calculation bugs, and a crash when you try and access certain folders in
the browser dialog. Lots of work left to be done there, sadly.
Errata 2: the hiro/Windows port has black backgrounds on all ListView
items. It's because I need to test for unassigned colors and grab the
default Windows brush colors in those cases.
Note: alternating row colors on multi-column ListView widgets is gone
now. Not a bug. May add it back later, but I'm not sure. It doesn't
interact nicely with per-cell background colors.
Things left to do:
First, I have to fix the Windows and Qt target bugs.
Next, I need to go through and revise the hiro API even more (nothing
too major.)
Next, I need to update icarus to use the new hiro API, and add support
for the SFC games database.
Next, I have to rewrite my TSV->BML cheat code tool.
Next, I need to post a final WIP of higan+icarus publicly and wait a few
days.
Next, I need to fix any bugs reported from the final WIP that I can.
Finally, I should be able to release v095.
2015-08-18 10:18:00 +00:00
|
|
|
#include "widget/text-edit.hpp"
|
2015-08-21 10:56:39 +00:00
|
|
|
#include "widget/vertical-scroll-bar.hpp"
|
Update to v094r40 release.
byuu says:
Changelog:
- updated to newest hiro API
- SFC performance profile builds once again
- hiro: Qt port completed
Errata 1: the hiro/Qt target won't run tomoko just yet. Starts by
crashing inside InputSettings because hiro/Qt isn't forcefully selecting
the first item added to a ComboButton just yet. Even with a monkey patch
to get around that, the UI is incredibly unstable. Lots of geometry
calculation bugs, and a crash when you try and access certain folders in
the browser dialog. Lots of work left to be done there, sadly.
Errata 2: the hiro/Windows port has black backgrounds on all ListView
items. It's because I need to test for unassigned colors and grab the
default Windows brush colors in those cases.
Note: alternating row colors on multi-column ListView widgets is gone
now. Not a bug. May add it back later, but I'm not sure. It doesn't
interact nicely with per-cell background colors.
Things left to do:
First, I have to fix the Windows and Qt target bugs.
Next, I need to go through and revise the hiro API even more (nothing
too major.)
Next, I need to update icarus to use the new hiro API, and add support
for the SFC games database.
Next, I have to rewrite my TSV->BML cheat code tool.
Next, I need to post a final WIP of higan+icarus publicly and wait a few
days.
Next, I need to fix any bugs reported from the final WIP that I can.
Finally, I should be able to release v095.
2015-08-18 10:18:00 +00:00
|
|
|
#include "widget/vertical-slider.hpp"
|
|
|
|
#include "widget/viewport.hpp"
|
|
|
|
|
|
|
|
namespace hiro {
|
|
|
|
|
|
|
|
#if defined(Hiro_Console)
|
|
|
|
struct pConsole : public QObject, public pWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Console& console;
|
|
|
|
struct QtConsole : public QTextEdit {
|
|
|
|
pConsole& self;
|
|
|
|
void keyPressEvent(QKeyEvent*);
|
|
|
|
void keyPressEventAcknowledge(QKeyEvent*);
|
|
|
|
QtConsole(pConsole& self) : self(self) {}
|
|
|
|
};
|
|
|
|
QtConsole* qtConsole;
|
|
|
|
|
|
|
|
void print(string text);
|
|
|
|
void reset();
|
|
|
|
void setBackgroundColor(Color color);
|
|
|
|
void setForegroundColor(Color color);
|
|
|
|
void setPrompt(string prompt);
|
|
|
|
|
|
|
|
pConsole(Console& console) : pWidget(console), console(console) {}
|
|
|
|
void constructor();
|
|
|
|
void destructor();
|
|
|
|
void orphan();
|
|
|
|
void keyPressEvent(QKeyEvent*);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(Hiro_IconView)
|
|
|
|
struct pIconView : public QObject, public pWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
IconView& iconView;
|
|
|
|
struct QtListWidget : public QListWidget {
|
|
|
|
void resizeEvent(QResizeEvent*);
|
|
|
|
};
|
|
|
|
QtListWidget* qtIconView;
|
|
|
|
|
|
|
|
void append();
|
|
|
|
void remove(unsigned selection);
|
|
|
|
void reset();
|
|
|
|
void setBackgroundColor(Color color);
|
|
|
|
void setFlow(Orientation flow);
|
|
|
|
void setForegroundColor(Color color);
|
|
|
|
void setImage(unsigned selection, const image& image);
|
|
|
|
void setOrientation(Orientation orientation);
|
|
|
|
void setSelected(unsigned selection, bool selected);
|
|
|
|
void setSelected(const vector<unsigned>& selections);
|
|
|
|
void setSelectedAll();
|
|
|
|
void setSelectedNone();
|
|
|
|
void setSingleSelection(bool singleSelection);
|
|
|
|
void setText(unsigned selection, const string& text);
|
|
|
|
|
|
|
|
pIconView(IconView& iconView) : pWidget(iconView), iconView(iconView) {}
|
|
|
|
void constructor();
|
|
|
|
void destructor();
|
|
|
|
void orphan();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void onActivate();
|
|
|
|
void onChange();
|
|
|
|
void onContext();
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef Declare
|
|
|
|
|
|
|
|
}
|