mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 19:11:09 +00:00
75 lines
2.2 KiB
C
75 lines
2.2 KiB
C
|
/*
|
||
|
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
|