Chromium Updater
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
726 B

13 years ago
  1. //
  2. // MGMPreferencesPane.h
  3. // MGMUsers
  4. //
  5. // Created by Mr. Gecko on 7/27/10.
  6. // Copyright (c) 2011 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class MGMPreferences;
  10. @interface MGMPreferencesPane : NSObject {
  11. MGMPreferences *preferences;
  12. @private
  13. NSTextField *textField;
  14. }
  15. + (id)paneWithPreferences:(MGMPreferences *)thePreferences;
  16. - (id)initWithPreferences:(MGMPreferences *)thePreferences;
  17. + (void)setUpToolbarItem:(NSToolbarItem *)theItem;
  18. + (NSString *)title;
  19. - (NSView *)preferencesView;
  20. - (void)preferencesDisplayed;
  21. - (BOOL)isResizable;
  22. - (NSSize)viewSize;
  23. - (NSSize)maxSize;
  24. - (NSSize)minSize;
  25. - (BOOL)preferencesWindowShouldClose;
  26. @end