2007-11-30 20:59:03 +00:00
|
|
|
/* IBPlugin.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
* Date: 2007
|
|
|
|
*
|
|
|
|
* This file is part of GNUstep.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2011-05-17 21:21:40 +00:00
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
2011-05-17 21:23:13 +00:00
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
2007-11-30 20:59:03 +00:00
|
|
|
* (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
|
2011-05-17 21:21:40 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2007-11-30 20:59:03 +00:00
|
|
|
*
|
2011-05-17 21:21:40 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2007-11-30 20:59:03 +00:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_IBPLUGIN_H
|
|
|
|
#define INCLUDED_IBPLUGIN_H
|
|
|
|
|
|
|
|
#include <Foundation/NSObject.h>
|
|
|
|
#include <InterfaceBuilder/IBDocuments.h>
|
|
|
|
|
|
|
|
// forward references
|
|
|
|
@class NSString;
|
|
|
|
@class NSArray;
|
|
|
|
@class NSView;
|
|
|
|
|
|
|
|
@interface IBPlugin : NSObject
|
|
|
|
|
|
|
|
// Getting the shared plugin...
|
|
|
|
/**
|
|
|
|
* Returns the shared instance of the plugin.
|
|
|
|
*/
|
|
|
|
+ (id)sharedInstance;
|
|
|
|
|
|
|
|
// Loading and unloading plugin resources.
|
|
|
|
/**
|
|
|
|
* Notifies the receiver that the plugin will be loaded.
|
|
|
|
*/
|
|
|
|
- (void) didLoad;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies the receiver that the plugin will be unloaded.
|
|
|
|
*/
|
|
|
|
- (void) willUnload;
|
|
|
|
|
|
|
|
// Getting the plugins nib files.
|
|
|
|
/**
|
|
|
|
* Return the array of custom nib filenames. You are required to override
|
|
|
|
* this method when creating a plugin.
|
|
|
|
*/
|
|
|
|
- (NSArray *) libraryNibNames;
|
|
|
|
|
|
|
|
// Configuring the plugin
|
|
|
|
/**
|
|
|
|
* Returns the name of the plugin to be displayed.
|
|
|
|
*/
|
|
|
|
- (NSString *) label;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The preferences panel/view that should be added to the preferences drop
|
|
|
|
* down and preferences window.
|
|
|
|
*/
|
|
|
|
- (NSView *) preferencesView;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the list of frameworks needed to support the plugin.
|
|
|
|
*/
|
|
|
|
- (NSArray *) requiredFrameworks;
|
|
|
|
|
|
|
|
// Pasteboard notifications...
|
|
|
|
/**
|
|
|
|
* Notifies the receiver that one of it's components will be added to the
|
|
|
|
* document.
|
|
|
|
*/
|
|
|
|
- (NSArray *) pasteboardObjectsForDraggedLibraryView: (NSView *)view;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies the receiver that objects were added to the document.
|
|
|
|
*/
|
|
|
|
- (void) document: (id<IBDocuments>)document
|
|
|
|
didAddDraggedObjects: (NSArray *)roots
|
|
|
|
fromDraggedLibraryView: (NSView *)view;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|