2008-01-07 14:33:58 +00:00
|
|
|
/* NSSegmentedControl.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
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GNUstep_H_NSSegmentedControl
|
|
|
|
#define _GNUstep_H_NSSegmentedControl
|
|
|
|
|
|
|
|
#include <AppKit/NSControl.h>
|
|
|
|
#include <AppKit/NSSegmentedCell.h>
|
|
|
|
|
|
|
|
@interface NSSegmentedControl : NSControl
|
|
|
|
|
|
|
|
// Specifying number of segments...
|
|
|
|
- (void) setSegmentCount: (int) count;
|
|
|
|
- (int) segmentCount;
|
|
|
|
|
|
|
|
// Specifying selected segment...
|
|
|
|
- (void) setSelectedSegment: (int) segment;
|
|
|
|
- (int) selectedSegment;
|
|
|
|
- (void) selectSegmentWithTag: (int) tag;
|
|
|
|
|
|
|
|
// Working with individual segments...
|
|
|
|
- (void) setWidth: (float)width forSegment: (int)segment;
|
|
|
|
- (float) widthForSegment: (int)segment;
|
|
|
|
- (void) setImage: (NSImage *)image forSegment: (int)segment;
|
|
|
|
- (NSImage *) imageForSegment: (int)segment;
|
|
|
|
- (void) setLabel: (NSString *)label forSegment: (int)segment;
|
|
|
|
- (NSString *) labelForSegment: (int)segment;
|
|
|
|
- (void) setMenu: (NSMenu *)menu forSegment: (int)segment;
|
|
|
|
- (NSMenu *) menuForSegment: (int)segment;
|
|
|
|
- (void) setSelected: (BOOL)flag forSegment: (int)segment;
|
|
|
|
- (BOOL) isSelectedForSegment: (int)segment;
|
|
|
|
- (void) setEnabled: (BOOL)flag forSegment: (int)segment;
|
|
|
|
- (BOOL) isEnabledForSegment: (int)segment;
|
2008-01-14 14:19:21 +00:00
|
|
|
|
2008-01-07 14:33:58 +00:00
|
|
|
@end
|
|
|
|
#endif
|