~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/examples/hello-objc-gnustep/AppController.h

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Example for use of GNU gettext.
 
2
   Copyright (C) 2003 Free Software Foundation, Inc.
 
3
   This file is in the public domain.
 
4
 
 
5
   Interface of the AppController class.  */
 
6
 
 
7
#include <AppKit/AppKit.h>
 
8
 
 
9
@class Hello;
 
10
 
 
11
@interface AppController : NSObject
 
12
{
 
13
  Hello *hello;
 
14
}
 
15
 
 
16
+ (void)initialize;
 
17
 
 
18
- (id)init;
 
19
- (void)dealloc;
 
20
 
 
21
- (void)awakeFromNib;
 
22
 
 
23
- (void)applicationDidFinishLaunching
 
24
    :(NSNotification *)notif;
 
25
 
 
26
- (BOOL)applicationShouldTerminate:(id)sender;
 
27
- (void)applicationWillTerminate:(NSNotification *)notification;
 
28
 
 
29
- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
 
30
 
 
31
- (void)showPrefPanel:(id)sender;
 
32
- (void)showInfoPanel:(id)sender;
 
33
 
 
34
- (void)showHelloWindow:(id)sender;
 
35
 
 
36
@end