2006-12-26 11:00:33 +00:00
|
|
|
/*
|
|
|
|
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
|
|
|
|
2015-11-05 01:19:53 +00:00
|
|
|
Copyright (C) 2001-2015 Free Software Foundation
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
Author: Serg Stoyan <stoyan@on.com.ua>
|
2015-11-05 01:19:53 +00:00
|
|
|
Riccardo Mottola <rm@gnu.org>
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
This file is part of GNUstep.
|
|
|
|
|
|
|
|
This application 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 application 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCAppProject_Inspector_h_
|
|
|
|
#define _PCAppProject_Inspector_h_
|
|
|
|
|
2008-12-30 13:47:27 +00:00
|
|
|
#import "PCAppProject.h"
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
@interface PCAppProject (Inspector)
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// --- User Interface
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
- (NSView *)projectAttributesView;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// --- Actions
|
|
|
|
// ----------------------------------------------------------------------------
|
2015-11-05 01:19:53 +00:00
|
|
|
- (IBAction)setAppType:(id)sender;
|
|
|
|
- (IBAction)setAppClass:(id)sender;
|
|
|
|
- (IBAction)setBundleIdentifier:(id)sender;
|
2009-02-05 23:59:32 +00:00
|
|
|
|
2006-12-26 11:00:33 +00:00
|
|
|
- (void)clearAppIcon:(id)sender;
|
2009-02-05 23:59:32 +00:00
|
|
|
- (BOOL)setAppIconWithFileAtPath:(NSString *)path;
|
|
|
|
|
2008-12-17 07:04:14 +00:00
|
|
|
- (void)clearHelpFile:(id)sender;
|
2009-02-05 23:59:32 +00:00
|
|
|
|
2006-12-26 11:00:33 +00:00
|
|
|
- (void)clearMainNib:(id)sender;
|
2009-02-05 23:59:32 +00:00
|
|
|
- (BOOL)setMainNibWithFileAtPath:(NSString *)path;
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
- (void)setDocBasedApp:(id)sender;
|
|
|
|
|
2013-02-10 18:34:12 +00:00
|
|
|
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
|
2009-02-05 23:59:32 +00:00
|
|
|
- (id) tableView:(NSTableView *)aTableView
|
|
|
|
objectValueForTableColumn:(NSTableColumn *)aTableColumn
|
2013-02-10 18:34:12 +00:00
|
|
|
row:(NSInteger)rowIndex;
|
2006-12-26 11:00:33 +00:00
|
|
|
- (void) tableView:(NSTableView *)aTableView
|
|
|
|
setObjectValue:anObject
|
|
|
|
forTableColumn:(NSTableColumn *)aTableColumn
|
2013-02-10 18:34:12 +00:00
|
|
|
row:(NSInteger)rowIndex;
|
2006-12-26 11:00:33 +00:00
|
|
|
|
2013-02-10 18:34:12 +00:00
|
|
|
- (void)fillFieldsForRow:(NSInteger)rowIndex;
|
2006-12-26 11:00:33 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// --- Notifications
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
- (void)updateInspectorValues:(NSNotification *)aNotif;
|
|
|
|
- (void)tfGetFocus:(NSNotification *)aNotif;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2009-02-05 23:59:32 +00:00
|
|
|
@interface PCAppProject (FileNameIconDelegate)
|
|
|
|
|
|
|
|
- (BOOL)canPerformDraggingOf:(NSArray *)paths;
|
|
|
|
- (BOOL)prepareForDraggingOf:(NSArray *)paths;
|
|
|
|
- (BOOL)performDraggingOf:(NSArray *)paths;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2006-12-26 11:00:33 +00:00
|
|
|
#endif
|