mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
byuu says: Added AWJ's fixes for alt/cpu (Tetris Attack framelines issue) and alt/dsp (Thread::clock reset) Added fix so that the taskbar entry appears when the application first starts on Windows. Fixed checkbox toggling inside of list views on Windows. Updated nall/image to properly protect variables that should not be written externally. New Object syntax for hiro is in. Fixed the backwards-typing on Windows with the state manager. NOTE: the list view isn't redrawing when you change the description text. It does so on the cheat editor because of the resizeColumns call; but that shouldn't be necessary. I'll try and fix this for the next WIP.
25 lines
540 B
C++
25 lines
540 B
C++
/* hiro
|
|
* author: byuu
|
|
* license: ISC
|
|
*
|
|
* hiro is a cross-platform GUI toolkit
|
|
* it provides a consistent, minimal API wrapper to: Windows, Cocoa, GTK+ and Qt
|
|
* it also provides a reference wrapper for terminal applications with optional UIs
|
|
*/
|
|
|
|
#ifndef HIRO_HPP
|
|
#define HIRO_HPP
|
|
|
|
#include "components.hpp"
|
|
#include "core/core.hpp"
|
|
#include "extension/extension.hpp"
|
|
|
|
#undef DeclareShared
|
|
#undef DeclareSharedObject
|
|
#undef DeclareSharedAction
|
|
#undef DeclareSharedSizable
|
|
#undef DeclareSharedLayout
|
|
#undef DeclareSharedWidget
|
|
|
|
#endif
|