GVApplicationDelegate.h 902 B

12345678910111213141516171819202122232425
  1. /*************************************************************************
  2. * Copyright (c) 2011 AT&T Intellectual Property
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: Details at http://www.graphviz.org/
  9. *************************************************************************/
  10. #import <Cocoa/Cocoa.h>
  11. @class GVAttributeInspectorController;
  12. @interface GVApplicationDelegate : NSObject {
  13. GVAttributeInspectorController *_attributeInspectorController;
  14. BOOL _applicationStarted;
  15. }
  16. - (IBAction)showAttributeInspector:(id)sender;
  17. - (BOOL)applicationOpenUntitledFile:(NSApplication*)theApplication;
  18. - (void)applicationDidFinishLaunching:(NSNotification*)aNotification;
  19. @end