GitHubProgressWindowController Reference

File
GitHubUpdates/GitHubProgressWindowController.h
Copyright
© (c) 2017, Jean-David Gadina - www.xs-labs.com
Date
Sunday, June 18, 2017
Includes
  • <Cocoa/Cocoa.h>

Class GitHubProgressWindowController

Attributes

Superclass
NSWindowController

cancel

A block invoked when the user presses the cancel button.

@property( atomic, readwrite, strong, nullable ) void ( ^ cancel )( void );

Discussion

If nil, the cancel button will not be shown.

indeterminate

Whether the progress is indeterminate. @disucssion This is used for the progress bar.

@property( atomic, readwrite, assign ) BOOL indeterminate;

message

The progress message.

@property( atomic, readwrite, strong, nullable ) NSString * message;

progress

The current progress. @disucssion This is used for the progress bar.

@property( atomic, readwrite, assign ) double progress;

progressMax

The progress maximum value @disucssion This is used for the progress bar.

@property( atomic, readwrite, assign ) double progressMax;

progressMin

The progress minimum value @disucssion This is used for the progress bar.

@property( atomic, readwrite, assign ) double progressMin;

title

The progress title message.

@property( atomic, readwrite, strong, nullable ) NSString * title;