Browse Subversion Repository
Contents of /trunk/Classes/NSMenuAdditions.h
Parent Directory
| Revision Log
Revision 198 -
( show annotations)
( download)
( as text)
Wed Aug 11 06:02:56 2021 UTC
(2 years, 7 months ago)
by toshinagata1964
File MIME type: text/x-chdr
File size: 842 byte(s)
In the strip chart view, the popup of the control number was not working correctly. Fixed.
| 1 |
// |
| 2 |
// NSMenuAdditions.h |
| 3 |
// |
| 4 |
// Created by Toshi Nagata on 2017/10/12. |
| 5 |
// |
| 6 |
/* |
| 7 |
Copyright (c) 2004-2017 Toshi Nagata. All rights reserved. |
| 8 |
|
| 9 |
This program is free software; you can redistribute it and/or modify |
| 10 |
it under the terms of the GNU General Public License as published by |
| 11 |
the Free Software Foundation version 2 of the License. |
| 12 |
|
| 13 |
This program is distributed in the hope that it will be useful, |
| 14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 |
GNU General Public License for more details. |
| 17 |
*/ |
| 18 |
|
| 19 |
#import <Cocoa/Cocoa.h> |
| 20 |
|
| 21 |
@interface NSMenu (MyMenuAddition) |
| 22 |
- (void)changeMenuTitleAttributes:(NSDictionary *)attributes; |
| 23 |
- (NSMenuItem *)searchMenuItemWithTag:(int)tag; |
| 24 |
- (NSMenu *)findSubmenuContainingItem:(NSMenuItem *)anItem outIndex:(int *)outIndex; |
| 25 |
@end |
|