Changeset 223 for trunk/Cocoa/F-Script Anywhere/Source
- Timestamp:
- 05/17/06 04:14:15 (18 years ago)
- Location:
- trunk/Cocoa/F-Script Anywhere/Source
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cocoa/F-Script Anywhere/Source/English.lproj/FSAInterpreterPanel.nib/classes.nib
r7 r223 2 2 IBClasses = ( 3 3 { 4 ACTIONS = {associateInterface = id; setFloating = id; }; 4 ACTIONS = { 5 "FSA_associateAndOpenBrowser" = id; 6 "FSA_associateWithInterface" = id; 7 setFloating = id; 8 }; 5 9 CLASS = FSAController; 6 10 LANGUAGE = ObjC; -
trunk/Cocoa/F-Script Anywhere/Source/English.lproj/FSAInterpreterPanel.nib/info.nib
r217 r223 4 4 <dict> 5 5 <key>IBDocumentLocation</key> 6 <string> 74 99356 240 0 0 1280 1002 </string>6 <string>266 87 356 240 0 0 1280 1002 </string> 7 7 <key>IBFramework Version</key> 8 8 <string>443.0</string> … … 12 12 </array> 13 13 <key>IBSystem Version</key> 14 <string>8 H14</string>14 <string>8I127</string> 15 15 </dict> 16 16 </plist> -
trunk/Cocoa/F-Script Anywhere/Source/FSAController.h
r153 r223 40 40 - (IBAction)setFloating:(id)sender; 41 41 - (IBAction)FSA_associateWithInterface:(id)sender; 42 - (IBAction)FSA_associateAndOpenBrowser:(id)sender; 42 43 43 44 - (FSInterpreterView *)interpreterView; -
trunk/Cocoa/F-Script Anywhere/Source/FSAController.m
r153 r223 104 104 item = [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"New F-Script Workspace", @"FSA", bundle, @"Title of F-Script Workspace menu item") action:@selector(createInterpreterWindow:) keyEquivalent: @""]; 105 105 [item setTarget: self]; 106 [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"Associate With Interface", @"FSA", bundle, @"Title of Associate with Interface menu item") action: @selector(FSA_associateWithInterface:) keyEquivalent: @""];107 106 [fsaMenu addItem: [NSMenuItem separatorItem]]; 108 107 item = [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"About F-Script Anywhere...", @"FSA", bundle, @"Title of Info Panel menu item") action:@selector(showInfo:) keyEquivalent: @""]; … … 204 203 } 205 204 205 - (IBAction)FSA_associateAndOpenBrowser:(id)sender 206 { 207 } 208 206 209 - (IBAction)FSA_associateWithInterface:(id)sender; 207 210 {
Note:
See TracChangeset
for help on using the changeset viewer.