2003-07-31 23:52:10 +00:00
|
|
|
/*
|
|
|
|
NSTableColumn.h
|
|
|
|
|
|
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Author: Michael Hanni <mhanni@sprintmail.com>
|
|
|
|
Date: 1999
|
|
|
|
|
|
|
|
Author: Nicola Pero <n.pero@mi.flashnet.it>
|
|
|
|
Date: December 1999
|
|
|
|
|
|
|
|
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_NSTableColumn
|
|
|
|
#define _GNUstep_H_NSTableColumn
|
|
|
|
|
2004-02-11 16:34:17 +00:00
|
|
|
#include <Foundation/NSObject.h>
|
2003-07-31 23:52:10 +00:00
|
|
|
#include <AppKit/AppKitDefines.h>
|
|
|
|
|
|
|
|
@class NSCell;
|
|
|
|
@class NSTableView;
|
|
|
|
|
|
|
|
@interface NSTableColumn : NSObject <NSCoding>
|
|
|
|
{
|
|
|
|
id _identifier;
|
|
|
|
NSTableView *_tableView;
|
|
|
|
float _width;
|
|
|
|
float _min_width;
|
|
|
|
float _max_width;
|
|
|
|
BOOL _is_resizable;
|
|
|
|
BOOL _is_editable;
|
|
|
|
NSCell *_headerCell;
|
|
|
|
NSCell *_dataCell;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Initializing an NSTableColumn instance
|
|
|
|
*/
|
|
|
|
- (id) initWithIdentifier: (id)anObject;
|
|
|
|
/*
|
|
|
|
* Managing the Identifier
|
|
|
|
*/
|
|
|
|
- (void) setIdentifier: (id)anObject;
|
|
|
|
- (id) identifier;
|
|
|
|
/*
|
|
|
|
* Setting the NSTableView
|
|
|
|
*/
|
|
|
|
- (void) setTableView: (NSTableView *)aTableView;
|
|
|
|
- (NSTableView *) tableView;
|
|
|
|
/*
|
|
|
|
* Controlling size
|
|
|
|
*/
|
|
|
|
- (void) setWidth: (float)newWidth;
|
|
|
|
- (float) width;
|
|
|
|
- (void) setMinWidth: (float)minWidth;
|
|
|
|
- (float) minWidth;
|
|
|
|
- (void) setMaxWidth: (float)maxWidth;
|
|
|
|
- (float) maxWidth;
|
|
|
|
- (void) setResizable: (BOOL)flag;
|
|
|
|
- (BOOL) isResizable;
|
|
|
|
- (void) sizeToFit;
|
|
|
|
/*
|
|
|
|
* Controlling editability
|
|
|
|
*/
|
|
|
|
- (void) setEditable: (BOOL)flag;
|
|
|
|
- (BOOL) isEditable;
|
|
|
|
/*
|
|
|
|
* Setting component cells
|
|
|
|
*/
|
|
|
|
- (void) setHeaderCell: (NSCell *)aCell;
|
|
|
|
- (NSCell *) headerCell;
|
|
|
|
- (void) setDataCell: (NSCell *)aCell;
|
|
|
|
- (NSCell *) dataCell;
|
|
|
|
- (NSCell *) dataCellForRow: (int)row;
|
|
|
|
@end
|
|
|
|
|
|
|
|
/* Notifications */
|
|
|
|
APPKIT_EXPORT NSString *NSTableViewColumnDidResizeNotification;
|
|
|
|
#endif
|