ViewController.h 600 B

123456789101112131415161718192021
  1. // Copyright 2019 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #import <Cocoa/Cocoa.h>
  4. @interface ViewController : NSViewController
  5. @property(assign) IBOutlet NSProgressIndicator* progressCurrent;
  6. @property(assign) IBOutlet NSProgressIndicator* progressTotal;
  7. @property(assign) IBOutlet NSTextField* labelProgress;
  8. - (void)SetDescription:(NSString*)string;
  9. - (void)SetTotalMarquee:(bool)marquee;
  10. - (void)SetCurrentMarquee:(bool)marquee;
  11. - (void)SetTotalProgress:(double)current total:(double)total;
  12. - (void)SetCurrentProgress:(double)current total:(double)total;
  13. @end