atom_application_delegate.h 496 B

123456789101112131415161718
  1. // Copyright (c) 2013 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #import <Cocoa/Cocoa.h>
  5. #import "atom/browser/ui/cocoa/atom_menu_controller.h"
  6. @interface AtomApplicationDelegate : NSObject <NSApplicationDelegate> {
  7. @private
  8. base::scoped_nsobject<AtomMenuController> menu_controller_;
  9. }
  10. // Sets the menu that will be returned in "applicationDockMenu:".
  11. - (void)setApplicationDockMenu:(atom::AtomMenuModel*)model;
  12. @end