2011-09-05 03:48:23 +00:00
|
|
|
#include "platform.hpp"
|
2012-01-15 08:29:57 +00:00
|
|
|
#include "utility.cpp"
|
|
|
|
|
|
|
|
#include "desktop.cpp"
|
2014-01-05 09:59:17 +00:00
|
|
|
#include "monitor.cpp"
|
2012-01-15 08:29:57 +00:00
|
|
|
#include "keyboard.cpp"
|
|
|
|
#include "mouse.cpp"
|
2013-03-19 08:48:50 +00:00
|
|
|
#include "browser-window.cpp"
|
2012-01-15 08:29:57 +00:00
|
|
|
#include "message-window.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "object.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "group.cpp"
|
|
|
|
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "font.cpp"
|
2011-06-05 03:45:04 +00:00
|
|
|
#include "timer.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "window.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "status-bar.cpp"
|
|
|
|
#include "menu-bar.cpp"
|
|
|
|
#include "popup-menu.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
|
|
|
|
#include "action/action.cpp"
|
|
|
|
#include "action/menu.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "action/menu-separator.cpp"
|
|
|
|
#include "action/menu-item.cpp"
|
|
|
|
#include "action/menu-check-item.cpp"
|
|
|
|
#include "action/menu-radio-item.cpp"
|
|
|
|
|
|
|
|
#include "sizable.cpp"
|
|
|
|
#include "layout.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
|
|
|
|
#include "widget/widget.cpp"
|
|
|
|
#include "widget/button.cpp"
|
2011-03-26 11:31:07 +00:00
|
|
|
#include "widget/canvas.cpp"
|
2013-03-15 13:11:33 +00:00
|
|
|
#include "widget/check-button.cpp"
|
2013-11-28 10:29:01 +00:00
|
|
|
#include "widget/check-label.cpp"
|
2013-03-15 13:11:33 +00:00
|
|
|
#include "widget/combo-button.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "widget/combo-button-item.cpp"
|
2013-11-28 10:29:01 +00:00
|
|
|
#include "widget/frame.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "widget/hex-edit.cpp"
|
2015-08-21 10:56:39 +00:00
|
|
|
#include "widget/horizontal-scroll-bar.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "widget/horizontal-slider.cpp"
|
|
|
|
#include "widget/label.cpp"
|
|
|
|
#include "widget/line-edit.cpp"
|
|
|
|
#include "widget/list-view.cpp"
|
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/list-view-header.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "widget/list-view-column.cpp"
|
|
|
|
#include "widget/list-view-item.cpp"
|
|
|
|
#include "widget/list-view-cell.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "widget/progress-bar.cpp"
|
2013-03-15 13:11:33 +00:00
|
|
|
#include "widget/radio-button.cpp"
|
2013-11-28 10:29:01 +00:00
|
|
|
#include "widget/radio-label.cpp"
|
|
|
|
#include "widget/tab-frame.cpp"
|
2015-06-12 13:14:38 +00:00
|
|
|
#include "widget/tab-frame-item.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "widget/text-edit.cpp"
|
2015-08-21 10:56:39 +00:00
|
|
|
#include "widget/vertical-scroll-bar.cpp"
|
2011-02-24 09:25:20 +00:00
|
|
|
#include "widget/vertical-slider.cpp"
|
|
|
|
#include "widget/viewport.cpp"
|
|
|
|
|
2013-03-15 13:11:33 +00:00
|
|
|
#include "application.cpp"
|