mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:30:38 +00:00
Header reorganization - Please refer to ChangeLog
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17408 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
766b747938
commit
9732999fd8
280 changed files with 25303 additions and 257 deletions
74
Headers/AppKit/NSFormCell.h
Normal file
74
Headers/AppKit/NSFormCell.h
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
NSFormCell.h
|
||||
|
||||
The cell class for the NSForm control
|
||||
|
||||
Copyright (C) 1996 Free Software Foundation, Inc.
|
||||
|
||||
Author: Ovidiu Predescu <ovidiu@net-community.com>
|
||||
Date: March 1997
|
||||
|
||||
This file is part of the GNUstep GUI Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Library General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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 Library General Public
|
||||
License along with this library; see the file COPYING.LIB.
|
||||
If not, write to the Free Software Foundation,
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _GNUstep_H_NSFormCell
|
||||
#define _GNUstep_H_NSFormCell
|
||||
|
||||
#include <AppKit/NSActionCell.h>
|
||||
|
||||
@interface NSFormCell : NSActionCell <NSCoding>
|
||||
{
|
||||
// NB: this is the titleWidth which is effectively used -- takes in
|
||||
// account all the other cells' titleWidths.
|
||||
// If its value is -1, it means it must be recomputed.
|
||||
float _displayedTitleWidth;
|
||||
|
||||
// Think the following as a BOOL ivar
|
||||
// YES if the titleWidth is automatically computed
|
||||
#define _formcell_auto_title_width _cell.subclass_bool_one
|
||||
NSCell* _titleCell;
|
||||
}
|
||||
|
||||
//
|
||||
// Modifying the Title
|
||||
//
|
||||
- (void)setTitle:(NSString*)aString;
|
||||
- (void)setTitleAlignment:(NSTextAlignment)mode;
|
||||
- (void)setTitleFont:(NSFont*)fontObject;
|
||||
- (void)setTitleWidth:(float)width;
|
||||
- (NSString*)title;
|
||||
- (NSTextAlignment)titleAlignment;
|
||||
- (NSFont*)titleFont;
|
||||
- (float)titleWidth;
|
||||
- (float)titleWidth:(NSSize)aSize;
|
||||
|
||||
#ifndef STRICT_OPENSTEP
|
||||
//
|
||||
// Attributed title
|
||||
//
|
||||
- (NSAttributedString *)attributedTitle;
|
||||
- (void)setAttributedTitle:(NSAttributedString *)anAttributedString;
|
||||
- (void)setTitleWithMnemonic:(NSString *)titleWithAmpersand;
|
||||
#endif
|
||||
|
||||
@end
|
||||
|
||||
|
||||
APPKIT_EXPORT NSString *_NSFormCellDidChangeTitleWidthNotification;
|
||||
|
||||
#endif // _GNUstep_H_NSFormCell
|
Loading…
Add table
Add a link
Reference in a new issue