/* main.m * * Copyright (C) 2003 Free Software Foundation, Inc. * * Author: Enrico Sersale * Date: October 2003 * * This file is part of the GNUstep ClipBook application * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ #include #include #include "Functions.h" #include "ClipBook.h" void createMenu(); int main(int argc, char **argv, char **env) { CREATE_AUTORELEASE_POOL (pool); ClipBook *clipbook = [ClipBook clipbook]; NSApplication *app = [NSApplication sharedApplication]; createMenu(); [app setDelegate: clipbook]; [app run]; RELEASE (pool); return 0; } void createMenu() { NSMenu *mainMenu; NSMenu *info; NSMenu *edit; NSMenu *windows; NSMenu *services; NSMenuItem *menuItem; // Main mainMenu = AUTORELEASE ([[NSMenu alloc] initWithTitle: @"ClipBook"]); // Info menuItem = addItemToMenu(mainMenu, @"Info", @"", nil, @""); info = AUTORELEASE ([NSMenu new]); [mainMenu setSubmenu: info forItem: menuItem]; addItemToMenu(info, @"Info Panel...", @"", @"showInfo:", @""); addItemToMenu(info, @"Help...", @"", nil, @"?"); // Edit menuItem = addItemToMenu(mainMenu, @"Edit", @"", nil, @""); edit = AUTORELEASE ([NSMenu new]); [mainMenu setSubmenu: edit forItem: menuItem]; addItemToMenu(edit, @"Cut", @"", @"cut:", @"x"); addItemToMenu(edit, @"Copy", @"", @"copy:", @"c"); addItemToMenu(edit, @"Paste", @"", @"paste:", @"v"); // Windows menuItem = addItemToMenu(mainMenu, @"Windows", @"", nil, @""); windows = AUTORELEASE ([NSMenu new]); [mainMenu setSubmenu: windows forItem: menuItem]; addItemToMenu(windows, @"Arrange in Front", @"", nil, @""); addItemToMenu(windows, @"Miniaturize Window", @"", nil, @""); // Services menuItem = addItemToMenu(mainMenu, @"Services", @"", nil, @""); services = AUTORELEASE ([NSMenu new]); [mainMenu setSubmenu: services forItem: menuItem]; // Hide addItemToMenu(mainMenu, @"Hide", @"", @"hide:", @"h"); // Quit addItemToMenu(mainMenu, @"Quit", @"", @"terminate:", @"q"); [mainMenu update]; [[NSApplication sharedApplication] setServicesMenu: services]; [[NSApplication sharedApplication] setWindowsMenu: windows]; [[NSApplication sharedApplication] setMainMenu: mainMenu]; }