Ignore:
Timestamp:
05/17/06 04:14:15 (18 years ago)
Author:
rchin
Message:

Removing key-value browser button as per Philippe Mougin's request (key-value browser apparently now deprecated). I'm turning it into an associate with view button for now, that will automatically open up a browser with the selected object. The name function (as pointed out by Philippe) is no longer necessary, since it is part of the browser (there is a name button in the browser). However the select view button is not as powerful as FSA's associate (which lets you choose directly document, controller, etc.). This is not yet working, but I need to to the development on my intel mac so I'm checking it in now. It should be working in the next commit.

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  
    22    IBClasses = (
    33        {
    4             ACTIONS = {associateInterface = id; setFloating = id; };
     4            ACTIONS = {
     5                "FSA_associateAndOpenBrowser" = id;
     6                "FSA_associateWithInterface" = id;
     7                setFloating = id;
     8            };
    59            CLASS = FSAController;
    610            LANGUAGE = ObjC;
  • trunk/Cocoa/F-Script Anywhere/Source/English.lproj/FSAInterpreterPanel.nib/info.nib

    r217 r223  
    44<dict>
    55        <key>IBDocumentLocation</key>
    6         <string>74 99 356 240 0 0 1280 1002 </string>
     6        <string>266 87 356 240 0 0 1280 1002 </string>
    77        <key>IBFramework Version</key>
    88        <string>443.0</string>
     
    1212        </array>
    1313        <key>IBSystem Version</key>
    14         <string>8H14</string>
     14        <string>8I127</string>
    1515</dict>
    1616</plist>
  • trunk/Cocoa/F-Script Anywhere/Source/FSAController.h

    r153 r223  
    4040- (IBAction)setFloating:(id)sender;
    4141- (IBAction)FSA_associateWithInterface:(id)sender;
     42- (IBAction)FSA_associateAndOpenBrowser:(id)sender;
    4243
    4344- (FSInterpreterView *)interpreterView;
  • trunk/Cocoa/F-Script Anywhere/Source/FSAController.m

    r153 r223  
    104104            item = [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"New F-Script Workspace", @"FSA", bundle, @"Title of F-Script Workspace menu item") action:@selector(createInterpreterWindow:) keyEquivalent: @""];
    105105            [item setTarget: self];
    106             [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"Associate With Interface", @"FSA", bundle, @"Title of Associate with Interface menu item") action: @selector(FSA_associateWithInterface:) keyEquivalent: @""];
    107106            [fsaMenu addItem: [NSMenuItem separatorItem]];
    108107            item = [fsaMenu addItemWithTitle: NSLocalizedStringFromTableInBundle(@"About F-Script Anywhere...", @"FSA", bundle, @"Title of Info Panel menu item") action:@selector(showInfo:) keyEquivalent: @""];
     
    204203}
    205204
     205- (IBAction)FSA_associateAndOpenBrowser:(id)sender
     206{
     207}
     208
    206209- (IBAction)FSA_associateWithInterface:(id)sender;
    207210{
Note: See TracChangeset for help on using the changeset viewer.