GVExportViewController.h 1002 B

12345678910111213141516171819202122232425262728293031
  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. @interface GVExportViewController : NSViewController
  12. {
  13. NSSavePanel *_panel;
  14. NSURL *_url;
  15. NSDictionary *_formatRender;
  16. NSString *_render;
  17. }
  18. @property(readonly) NSArray *formatRenders;
  19. @property(readonly) NSString *device;
  20. @property(retain) NSURL *URL;
  21. @property(retain) NSDictionary *formatRender;
  22. @property(retain) NSString *render;
  23. - (id)init;
  24. - (void)beginSheetModalForWindow:(NSWindow *)window modalDelegate:(id)modalDelegate didEndSelector:(SEL)selector;
  25. @end