mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@15083 72102866-910b-0410-8b05-ffd578937521
45 lines
880 B
Objective-C
45 lines
880 B
Objective-C
/*
|
|
* PCProject+ComponentHandling.h created by probert on 2002-02-10 09:51:00 +0000
|
|
*
|
|
* Project ProjectCenter
|
|
*
|
|
* Created with ProjectCenter - http://www.gnustep.org
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _PCPROJECT_COMPONENTHANDLING_H_
|
|
#define _PCPROJECT_COMPONENTHANDLING_H_
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
// HACK!
|
|
#import "PCProject.h"
|
|
|
|
@interface PCProject (ComponentHandling)
|
|
|
|
- (void)topButtonsPressed:(id)sender;
|
|
- (void)showBuildView:(id)sender;
|
|
- (void)showRunView:(id)sender;
|
|
- (void)showEditorView:(id)sender;
|
|
|
|
- (void)runSelectedTarget:(id)sender;
|
|
|
|
- (void)showInspector:(id)sender;
|
|
|
|
- (id)updatedAttributeView;
|
|
- (id)updatedProjectView;
|
|
- (id)updatedFilesView;
|
|
|
|
- (void)showBuildTargetPanel:(id)sender;
|
|
- (void)setHost:(id)sender;
|
|
- (void)setArguments:(id)sender;
|
|
|
|
- (NSDictionary *)buildOptions;
|
|
|
|
- (BOOL)isEditorActive;
|
|
|
|
@end
|
|
|
|
#endif // _PCPROJECT_COMPONENTHANDLING_H_
|
|
|