1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* Controller.m: An application to demonstrate the GNUstep toolbars
*
* Copyright (c) 2004 Free Software Foundation, Inc.
*
* Author: Quentin Mathe <qmathe@club-internet.fr>
* Date: August 2004
*
* This sample program is part of GNUstep.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "Controller.h"
@implementation Controller
- (void) awakeFromNib
{
[NSApp setDelegate: self];
}
- (BOOL) applicationShouldOpenUntitledFile: (NSApplication *)sender
{
return YES;
}
- (BOOL) applicationOpenUntitledFile: (NSApplication *)sender
{
NSDocumentController *specialController = [NSDocumentController sharedDocumentController];
NSDocument *document =
[specialController openUntitledDocumentOfType: @"txt" display: YES];
if (document != nil)
return YES;
return NO;
}
// Toolbar delegates
- (NSToolbarItem *)toolbar:(NSToolbar *)toolbar
itemForItemIdentifier:(NSString*)identifier
willBeInsertedIntoToolbar:(BOOL)willBeInserted
{
NSToolbarItem *toolbarItem = [[NSToolbarItem alloc]
initWithItemIdentifier: identifier];
AUTORELEASE(toolbarItem);
NSLog(@"toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar: \
has been called");
if ([identifier isEqual: @"First"])
{
[toolbarItem setLabel: @"First item"];
[toolbarItem setImage: [NSImage imageNamed: @"FileIcon_Directory"]];
}
else if ([identifier isEqual:@"Second"])
{
[toolbarItem setLabel: @"Second item"];
[toolbarItem setImage: [NSImage imageNamed: @"SecondImage"]];
[toolbarItem setTarget: nil];
[toolbarItem setAction: @selector(toggleToolbarShown:)];
}
else if ([identifier isEqual:@"Popup"])
{
NSPopUpButton *popup = [[NSPopUpButton alloc] initWithFrame:
NSMakeRect(0, 0, 150, 22)];
id item;
NSMenuItem *menuItem;
NSMenu *submenu;
[popup setAutoenablesItems: NO];
[popup addItemWithTitle: @"Marguerite"];
[[popup itemWithTitle: @"Marguerite"] setEnabled: YES];
[popup addItemWithTitle: @"Julie"];
[[popup itemWithTitle: @"Julie"] setEnabled: YES];
[popup addItemWithTitle: @"Liv"];
[[popup itemWithTitle: @"Liv"] setEnabled: YES];
[popup addItemWithTitle: @"Juliette"];
[[popup itemWithTitle: @"Juliette"] setEnabled: YES];
item = [popup itemWithTitle: @"Julies"];
[popup selectItem: item];
[toolbarItem setLabel: @"Just... popup"];
[toolbarItem setView: popup];
menuItem = [[NSMenuItem alloc] initWithTitle: @"More..."
action: NULL
keyEquivalent: @""];
submenu = [[NSMenu alloc] initWithTitle: @""];
[submenu addItemWithTitle: @"Marguerite"
action: @selector(reflectMenuSelection:)
keyEquivalent: @""];
[submenu addItemWithTitle: @"Julie"
action: @selector(reflectMenuSelection:)
keyEquivalent: @""];
[submenu addItemWithTitle: @"Liv"
action: @selector(reflectMenuSelection:)
keyEquivalent: @""];
[submenu addItemWithTitle: @"Juliette"
action: @selector(reflectMenuSelection:)
keyEquivalent: @""];
[menuItem setSubmenu: AUTORELEASE(submenu)];
[toolbarItem setMenuFormRepresentation: AUTORELEASE(menuItem)];
}
else if ([identifier isEqual:@"Slider"])
{
[toolbarItem setLabel: @"Loulou"];
[toolbarItem setView: [[NSSlider alloc] initWithFrame:
NSMakeRect(0, 0, 70, 18)]];
}
return toolbarItem;
}
- (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar {
NSLog(@"toolbarDefaultItemIdentifiers: has been called");
return [NSArray arrayWithObjects: @"First",
NSToolbarFlexibleSpaceItemIdentifier,
@"Second",
@"Popup",
NSToolbarFlexibleSpaceItemIdentifier,
NSToolbarCustomizeToolbarItemIdentifier, nil];
}
- (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar {
NSLog(@"toolbarAllowedItemIdentifiers: has been called");
return [NSArray arrayWithObjects: @"First",
@"Second",
@"Popup",
@"Slider",
NSToolbarCustomizeToolbarItemIdentifier,
NSToolbarFlexibleSpaceItemIdentifier, nil];
}
// ---
@end
|