2010-02-11 19:54:06 +00:00
|
|
|
/*
|
2015-01-03 21:30:57 +00:00
|
|
|
Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2010-02-11 19:54:06 +00:00
|
|
|
|
2015-01-03 21:33:16 +00:00
|
|
|
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2010-02-11 19:54:06 +00:00
|
|
|
which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
2010-02-11 19:54:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import "StatsLabel.h"
|
2012-01-12 15:23:31 +00:00
|
|
|
#import "Utils.h"
|
2010-02-11 19:54:06 +00:00
|
|
|
|
|
|
|
@implementation StatsLabel
|
2012-01-13 20:25:34 +00:00
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef view:(NSTextField *)aLabelView
|
2010-02-11 19:54:06 +00:00
|
|
|
{
|
2012-01-15 23:07:32 +00:00
|
|
|
return [super initWithPyRef:aPyRef wrapperClass:[PyStatsLabel class]
|
|
|
|
callbackClassName:@"StatsLabelView" view:aLabelView];
|
2010-02-11 19:54:06 +00:00
|
|
|
}
|
|
|
|
|
2012-01-13 20:25:34 +00:00
|
|
|
- (PyStatsLabel *)model
|
2010-02-11 19:54:06 +00:00
|
|
|
{
|
2012-01-13 20:25:34 +00:00
|
|
|
return (PyStatsLabel *)model;
|
2010-02-11 19:54:06 +00:00
|
|
|
}
|
|
|
|
|
2012-01-09 16:15:20 +00:00
|
|
|
- (NSTextField *)labelView
|
|
|
|
{
|
2012-01-11 20:14:59 +00:00
|
|
|
return (NSTextField *)view;
|
2012-01-09 16:15:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-11 19:54:06 +00:00
|
|
|
/* Python --> Cocoa */
|
|
|
|
- (void)refresh
|
|
|
|
{
|
2012-01-13 20:25:34 +00:00
|
|
|
[[self labelView] setStringValue:[[self model] display]];
|
2010-02-11 19:54:06 +00:00
|
|
|
}
|
|
|
|
@end
|