]> err.no Git - sope/blob - sope-appserver/samples/WOxExtTest/DnD.m
include config.make in makefiles
[sope] / sope-appserver / samples / WOxExtTest / DnD.m
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #import <NGObjWeb/WOComponent.h>
24
25 @interface DnD : WOComponent
26 @end
27
28 #include "common.h"
29
30 @implementation DnD
31
32 - (void)awake {
33   [super awake];
34   [self setObject:nil forKey:@"lastDropOn"];
35 }
36
37 - (NSArray *)oneList {
38   return [NSArray arrayWithObject:@"one"];
39 }
40 - (NSArray *)twoList {
41   return [NSArray arrayWithObject:@"two"];
42 }
43 - (NSArray *)listOneTwo {
44   return [NSArray arrayWithObjects:@"one", @"two", nil];
45 }
46
47 - (BOOL)droppedOnOne {
48   return [[self objectForKey:@"lastDropOn"] isEqualToString:@"one"];
49 }
50 - (BOOL)droppedOnTwo {
51   return [[self objectForKey:@"lastDropOn"] isEqualToString:@"two"];
52 }
53 - (BOOL)droppedOnOneTwo {
54   return [[self objectForKey:@"lastDropOn"] isEqualToString:@"oneTwo"];
55 }
56
57 - (id)one {
58   NSLog(@"one: dropped %@", [self objectForKey:@"droppedObject"]);
59   [self setObject:@"one" forKey:@"lastDropOn"];
60   return nil;
61 }
62 - (id)two {
63   NSLog(@"two: dropped %@", [self objectForKey:@"droppedObject"]);
64   [self setObject:@"two" forKey:@"lastDropOn"];
65   return nil;
66 }
67 - (id)oneTwo {
68   NSLog(@"oneTwo: dropped %@", [self objectForKey:@"droppedObject"]);
69   [self setObject:@"oneTwo" forKey:@"lastDropOn"];
70   return nil;
71 }
72
73 @end /* DnD */