API  0.9.6
 All Classes Files Functions Variables Macros Groups Pages
CPCibHelpConnector.j
Go to the documentation of this file.
1 /*
2  * CPCibHelpConnector.j
3  * AppKit
4  *
5  * Created by Antoine Mercadal.
6  * Copyright 2012, The Cappuccino Project.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 
24 @implementation CPCibHelpConnector : CPCibConnector
25 {
26  id _destination;
27  id _file;
28  id _marker;
29 }
30 
31 - (id)initWithCoder:(CPCoder)aCoder
32 {
33  if (self = [super initWithCoder:aCoder])
34  {
35  _destination = [aCoder decodeObjectForKey:@"_destination"];
36  _file = [aCoder decodeObjectForKey:@"_file"];
37  _marker = [aCoder decodeObjectForKey:@"_marker"];
38  }
39 
40  return self;
41 }
42 
43 - (void)encodeWithCoder:(CPCoder)aCoder
44 {
45  [super encodeWithCoder:aCoder];
46 
47  [aCoder encodeObject:_destination forKey:@"_destination"];
48  [aCoder encodeObject:_file forKey:@"_file"];
49  [aCoder encodeObject:_marker forKey:@"_marker"];
50 }
51 
52 - (void)establishConnection
53 {
54  [_destination setToolTip:_marker];
55 }
56 
57 @end
58