summaryrefslogtreecommitdiff
path: root/src/osx/MultiField.m
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:06 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:06 +0000
commite1cf0babff63e670e0d550b4072c22649a117fa7 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/osx/MultiField.m
parent49393f6f445deb37e55a81798f88242e3e99d7a0 (diff)
Re-make trunk
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@364 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'src/osx/MultiField.m')
-rw-r--r--src/osx/MultiField.m53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/osx/MultiField.m b/src/osx/MultiField.m
deleted file mode 100644
index 7c5aac3..0000000
--- a/src/osx/MultiField.m
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// LabelField.m
-// TikZiT
-//
-// Created by Aleks Kissinger on 20/04/2011.
-// Copyright 2011 __MyCompanyName__. All rights reserved.
-//
-
-#import "MultiField.h"
-
-
-@implementation MultiField
-
-- (void)textDidChange:(NSNotification *)notification {
- [super textDidChange:notification];
- [self setMulti:NO];
-}
-
-- (void)setMulti:(BOOL)m {
- multi = m;
- if (multi) {
- [self setTextColor:[NSColor grayColor]];
- [self setStringValue:@"multiple values"];
- }
-}
-
-- (BOOL)multi { return multi; }
-
-- (BOOL)becomeFirstResponder {
- [super becomeFirstResponder];
- if ([self multi]) {
- [self setTextColor:[NSColor blackColor]];
- [self setStringValue:@""];
- }
- return YES;
-}
-
-//- (BOOL)textShouldBeginEditing:(NSText *)textObject {
-// [super textShouldBeginEditing:textObject];
-// NSLog(@"about to type");
-// return YES;
-//}
-
-//- (void)textDidEndEditing:(NSNotification *)obj {
-// [super textDidEndEditing:obj];
-//
-// NSLog(@"focus lost");
-// if ([self multi]) {
-// [self setMulti:YES];
-// }
-//}
-
-@end