Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //
  2. // AboutPanelController.h
  3. // Gesprek
  4. //
  5. // Created by Kaatje Paige Galway on 11/23/09.
  6. // Copyright 2009 TGIL.NL. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10.  
  11.  
  12. @interface AboutPanelController : NSObject {
  13. IBOutlet NSTextField *appNameField;
  14. IBOutlet NSTextField *copyrightField;
  15. IBOutlet NSTextField *creditsField;
  16. IBOutlet NSTextField *versionField;
  17.  
  18. NSTimer *scrollTimer;
  19. float currentPosition;
  20. float maxScrollHeight;
  21. NSTimeInterval startTime;
  22. BOOL restartAtTop;
  23. }
  24.  
  25. @end
  26.  
  27. + (AboutPanelController *)sharedInstance;
  28. - (IBAction)showPanel:(id)sender;
  29.  
  30. @end
Add Comment
Please, Sign In to add comment