/* Copyright (C) 2002-2003, Jeffrey D. Argast. The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy. Permission is hereby granted to use, copy, modify, and distribute this software or portions thereof for any purpose, without fee, subject to these conditions: (1) If any part of the source code is distributed, then this statement must be included, with this copyright and no-warranty notice unaltered. (2) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind. */ #import <AppKit/AppKit.h> @class PerforceConfigurationsList; @interface EditConfigurationsController : NSWindowController { IBOutlet NSPopUpButton* fConfigPopup; IBOutlet NSTextField* fPortField; IBOutlet NSTextField* fHostField; IBOutlet NSTextField* fUserField; IBOutlet NSTextField* fClientField; IBOutlet NSTextField* fPasswordField; IBOutlet NSTextField* fNewConfigField; IBOutlet NSPanel* fEditConfigs; IBOutlet NSPanel* fNewConfig; IBOutlet NSButton* fRevert; IBOutlet NSButton* fApply; IBOutlet NSButton* fNewOK; IBOutlet NSButton* fNewCancel; IBOutlet NSButton* fEditCancel; IBOutlet NSButton* fEditDone; IBOutlet NSButton* fEditRename; IBOutlet NSButton* fEditDelete; IBOutlet NSButton* fEditDuplicate; IBOutlet NSTableView* fEditTable; PerforceConfigurationsList* fConfigs; PerforceConfigurationsList* fConfigsForEdit; BOOL fModified; } - (void) aboutToShowWindow; - (IBAction) chooseRevert:(id)sender; - (IBAction) chooseApply:(id)sender; - (IBAction) newConfiguration:(id)sender; - (IBAction) editConfigurations:(id) sender; - (IBAction) newOkay:(id)sender; - (IBAction) newCancel:(id)sender; - (IBAction) editDuplicateConfig:(id)sender; - (IBAction) editRenameConfig:(id)sender; - (IBAction) editDeleteConfig:(id)sender; - (IBAction) editDone:(id)sender; - (IBAction) editCancel:(id)sender; @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 4160 | Jeff Argast |
Checking in version 0.20 but awaiting confirmation from unicode server user that it actually works before posting. This change modifies the defaults and old versions crash on launch once you run 0.20. |
||
#1 | 2732 | Jeff Argast | Initial submission of P4Cocoa |