libs-gui/Source/NSDatePicker.m

221 lines
3.7 KiB
Mathematica
Raw Permalink Normal View History

/** <title>NSDatePicker</title>
<abstract>The date picker class</abstract>
Copyright (C) 2020 Free Software Foundation, Inc.
Author: Nikolaus Schaller <hns@computer.org>
Date: April 2006
Author: Fred Kiefer <fredkiefer@gmx.de>
Date: January 2020
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 Lesser 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; see the file COPYING.LIB.
If not, see <http://www.gnu.org/licenses/> or write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#import <Foundation/NSString.h>
#import "AppKit/NSDatePickerCell.h"
#import "AppKit/NSDatePicker.h"
static id usedCellClass = nil;
@implementation NSDatePicker
+ (void) initialize
{
if (self == [NSDatePicker class])
{
[self setVersion: 1];
[self setCellClass: [NSDatePickerCell class]];
}
}
+ (Class) cellClass
{
return usedCellClass;
}
+ (void) setCellClass: (Class)cellClass
{
usedCellClass = cellClass;
}
- (NSColor *) backgroundColor
{
return [_cell backgroundColor];
}
- (NSCalendar *) calendar
{
return [_cell calendar];
}
- (NSDatePickerElementFlags) datePickerElements
{
return [_cell datePickerElements];
}
- (NSDatePickerMode) datePickerMode
{
return [_cell datePickerMode];
}
- (NSDatePickerStyle) datePickerStyle
{
return [_cell datePickerStyle];
}
- (NSDate *) dateValue
{
return [_cell dateValue];
}
- (id) delegate
{
return [_cell delegate];
}
- (BOOL) drawsBackground
{
return [_cell drawsBackground];
}
- (BOOL) isBezeled
{
return [_cell isBezeled];
}
- (BOOL) isBordered
{
return [_cell isBordered];
}
- (NSLocale *) locale
{
return [_cell locale];
}
- (NSDate *) maxDate
{
return [_cell maxDate];
}
- (NSDate *) minDate
{
return [_cell minDate];
}
- (void) setBackgroundColor: (NSColor *)color
{
[_cell setBackgroundColor: color];
}
- (void) setBezeled: (BOOL)flag
{
[_cell setBezeled: flag];
}
- (void) setBordered: (BOOL)flag
{
[_cell setBordered: flag];
}
- (void) setCalendar: (NSCalendar *)calendar
{
[_cell setCalendar: calendar];
}
- (void) setDatePickerElements: (NSDatePickerElementFlags)flags
{
[_cell setDatePickerElements: flags];
}
- (void) setDatePickerMode: (NSDatePickerMode)mode
{
[_cell setDatePickerMode: mode];
}
- (void) setDatePickerStyle: (NSDatePickerStyle)style
{
[_cell setDatePickerStyle: style];
}
- (void) setDateValue: (NSDate *)date
{
[_cell setDateValue: date];
}
- (void) setDelegate: (id)obj
{
[_cell setDelegate: obj];
}
- (void) setDrawsBackground: (BOOL)flag
{
[_cell setDrawsBackground: flag];
}
- (void) setLocale: (NSLocale *)locale
{
[_cell setLocale: locale];
}
- (void) setMaxDate: (NSDate *)date
{
[_cell setMaxDate: date];
}
- (void) setMinDate: (NSDate *)date
{
[_cell setMinDate: date];
}
- (void) setTextColor: (NSColor *)color
{
[_cell setTextColor: color];
}
- (void) setTimeInterval: (NSTimeInterval)interval
{
[_cell setTimeInterval: interval];
}
- (void) setTimeZone: (NSTimeZone *)zone
{
[_cell setTimeZone: zone];
}
- (NSColor *) textColor
{
return [_cell textColor];
}
- (NSTimeInterval) timeInterval
{
return [_cell timeInterval];
}
- (NSTimeZone *) timeZone
{
return [_cell timeZone];
}
@end