mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
byuu says: Everything *should* be working again, but of course that won't actually be the case. Here's where things stand: - bsnes, higan, icarus, and genius compile and run fine on FreeBSD with GTK - ruby video and audio drivers are untested on Windows, macOS, and Linux - hiro is untested on macOS - bsnes' status bar is not showing up properly with hiro/qt - bsnes and higan's about screen is not showing up properly with hiro/qt (1x1 window size) - bsnes on Windows crashes often when saving states, and I'm not sure why ... it happens inside Encode::RLE - bsnes on Windows crashes with ruby.input.windows (unsure why) - bsnes on Windows fails to show the verified emblem on the status bar properly - hiro on Windows flickers when changing tabs To build the Windows bsnes and higan ports, use ruby="video.gdi audio.directsound" Compilation error logs for Linux will help me fix the inevitable list of typos there. I can fix the typos on other platforms, I just haven't gotten to it yet.
29 lines
843 B
C++
29 lines
843 B
C++
#if defined(Hiro_TableView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTableViewColumn : pObject {
|
|
Declare(TableViewColumn, Object)
|
|
|
|
auto setActive() -> void;
|
|
auto setAlignment(Alignment alignment) -> void;
|
|
auto setBackgroundColor(Color color) -> void;
|
|
auto setEditable(bool editable) -> void;
|
|
auto setExpandable(bool expandable) -> void;
|
|
auto setFont(const Font& font) -> void override;
|
|
auto setForegroundColor(Color color) -> void;
|
|
auto setHorizontalAlignment(double) -> void;
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setResizable(bool resizable) -> void;
|
|
auto setSorting(Sort sorting) -> void;
|
|
auto setText(const string& text) -> void;
|
|
auto setVerticalAlignment(double) -> void;
|
|
auto setVisible(bool visible) -> void override;
|
|
auto setWidth(signed width) -> void;
|
|
|
|
auto _parent() -> maybe<pTableView&>;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|