Update Headers/AppKit/NSToolbarItem.h to support display mode and size mode related to the toolbar implementation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19087 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Quentin Mathe 2004-04-13 14:10:22 +00:00
parent 991ea5ed79
commit 111f3bea23
2 changed files with 8 additions and 6 deletions

View file

@ -1,6 +1,7 @@
2004-04-13 Quentin Mathe <qmathe@club-internet.fr>
* Source/NSToolbarItem.m:
* Source/NSToolbarItem.m:
* Source/NSToolbarItem.h:
* Source/NSToolbar.m:
* Headers/AppKit/NSToolbar.h:
* Source/GSToolbar.m:

View file

@ -6,7 +6,8 @@
Copyright (C) 2002 Free Software Foundation, Inc.
Author: Gregory John Casamento <greg_casamento@yahoo.com>,
Fabien Vallon <fabien.vallon@fr.alcove.com>
Fabien Vallon <fabien.vallon@fr.alcove.com>,
Quentin Mathe <qmathe@club-internet.fr>
Date: May 2002
This file is part of the GNUstep GUI Library.
@ -39,10 +40,10 @@
@class NSString;
@class NSDictionary;
@class NSMutableDictionary;
@class NSToolbar;
@class NSImage;
@class NSMenuItem;
@class NSView;
@class GSToolbar;
/*
* Constants
@ -66,11 +67,11 @@ APPKIT_EXPORT NSString *NSToolbarPrintItemIdentifier;
NSImage *_image;
// toolbar
NSToolbar *_toolbar;
GSToolbar *_toolbar;
NSString *_toolTip;
id _view;
NSView *_backView;
BOOL _updated;
BOOL _modified;
// size
NSSize _maxSize;
@ -116,7 +117,7 @@ APPKIT_EXPORT NSString *NSToolbarPrintItemIdentifier;
- (int) tag;
- (id) target;
- (NSString *) toolTip;
- (NSToolbar *) toolbar;
- (GSToolbar *) toolbar;
- (NSView *) view;
- (void) setAction: (SEL)action;
- (void) setEnabled: (BOOL)enabled;