mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
23 lines
416 B
C++
23 lines
416 B
C++
#if defined(Hiro_ProgressBar)
|
|
|
|
@interface CocoaProgressBar : NSProgressIndicator {
|
|
@public
|
|
hiro::mProgressBar* progressBar;
|
|
}
|
|
-(id) initWith:(hiro::mProgressBar&)progressBar;
|
|
@end
|
|
|
|
namespace hiro {
|
|
|
|
struct pProgressBar : pWidget {
|
|
Declare(ProgressBar, Widget)
|
|
|
|
auto minimumSize() const -> Size override;
|
|
auto setPosition(uint position) -> void;
|
|
|
|
CocoaProgressBar* cocoaProgressBar = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|