File: Resolver.h

package info (click to toggle)
gnustep-examples 1%3A1.2.0-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,952 kB
  • ctags: 270
  • sloc: objc: 14,381; makefile: 65
file content (38 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* 
 * Resolver.h created by phr on 2000-10-10 18:38:00 +0000
 *
 * Project HostAddress
 *
 * Created with ProjectCenter - http://www.projectcenter.ch
 *
 * $Id: Resolver.h 8822 2001-01-27 00:32:02Z nico $
 */

#import <AppKit/AppKit.h>

@interface Resolver : NSObject
{
  NSWindow *window;

  NSTextField *addressField;
  NSTextField *hostField;

  id hostButton;
  id addressButton;
}

- (id)init;
- (void)dealloc;

- (void)resolveHost;
- (void)resolveAddress;

- (void)makeKeyAndOrderFront;

@end

@interface Resolver (UIBuilder)

- (void)createUI;

@end