mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/UNSTABLE_0_4@18027 72102866-910b-0410-8b05-ffd578937521
29 lines
477 B
Objective-C
29 lines
477 B
Objective-C
/*
|
|
* Project ProjectCenter
|
|
*/
|
|
|
|
#ifndef _PCProject_ComponentHandling_h_
|
|
#define _PCProject_ComponentHandling_h_
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
// HACK!
|
|
#include "PCProject.h"
|
|
|
|
@interface PCProject (ComponentHandling)
|
|
|
|
//- (void)showBuildView:(id)sender;
|
|
//- (void)showRunView:(id)sender;
|
|
- (void)showEditorView:(id)sender;
|
|
- (void)showInspector:(id)sender;
|
|
|
|
- (void)runSelectedTarget:(id)sender;
|
|
|
|
- (NSDictionary *)buildOptions;
|
|
|
|
- (BOOL)isEditorActive;
|
|
|
|
@end
|
|
|
|
#endif
|
|
|