mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 23:22:25 +01:00
byuu says: Changelog: - fixed major nall/vector/prepend bug - renamed hiro/ListView to hiro/TableView - added new hiro/ListView control which is a simplified abstraction of hiro/TableView - updated higan's cheat database window and icarus' scan dialog to use the new ListView control - compilation works once again on all platforms (Windows, Cocoa, GTK, Qt) - the loki skeleton compiles once again (removed nall/DSP references; updated port/device ID names) Small catch: need to capture layout resize events internally in Windows to call resizeColumns. For now, just resize the icarus window to get it to use the full window width for list view items.
91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
namespace hiro {
|
|
|
|
struct pFont;
|
|
struct pObject;
|
|
struct pWindow;
|
|
struct pMenu;
|
|
struct pLayout;
|
|
struct pWidget;
|
|
|
|
struct AppMessage {
|
|
enum : unsigned {
|
|
None = WM_APP,
|
|
TableView_doPaint,
|
|
TableView_onActivate,
|
|
TableView_onChange,
|
|
};
|
|
};
|
|
|
|
using WindowProc = auto CALLBACK (*)(HWND, UINT, WPARAM, LPARAM) -> LRESULT;
|
|
|
|
static vector<wObject> windows;
|
|
|
|
}
|
|
|
|
#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; \
|
|
auto reconstruct() -> void override { destruct(), construct(); } \
|
|
|
|
#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 "layout.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"
|
|
#include "widget/horizontal-scroll-bar.hpp"
|
|
#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"
|
|
#include "widget/table-view.hpp"
|
|
#include "widget/table-view-header.hpp"
|
|
#include "widget/table-view-column.hpp"
|
|
#include "widget/table-view-item.hpp"
|
|
#include "widget/table-view-cell.hpp"
|
|
#include "widget/text-edit.hpp"
|
|
#include "widget/vertical-scroll-bar.hpp"
|
|
#include "widget/vertical-slider.hpp"
|
|
#include "widget/viewport.hpp"
|
|
|
|
#include "application.hpp"
|
|
|
|
#undef Declare
|