1*946379e7Schristos /* Example for use of GNU gettext. 2*946379e7Schristos Copyright (C) 2003 Free Software Foundation, Inc. 3*946379e7Schristos This file is in the public domain. 4*946379e7Schristos 5*946379e7Schristos Interface of the Hello class. */ 6*946379e7Schristos 7*946379e7Schristos #include <AppKit/AppKit.h> 8*946379e7Schristos 9*946379e7Schristos @interface Hello : NSObject 10*946379e7Schristos { 11*946379e7Schristos NSWindow *window; 12*946379e7Schristos 13*946379e7Schristos NSTextField *label1; 14*946379e7Schristos NSTextField *label2; 15*946379e7Schristos 16*946379e7Schristos id okButton; 17*946379e7Schristos } 18*946379e7Schristos 19*946379e7Schristos - (id)init; 20*946379e7Schristos - (void)dealloc; 21*946379e7Schristos 22*946379e7Schristos - (void)makeKeyAndOrderFront; 23*946379e7Schristos 24*946379e7Schristos - (void)done; 25*946379e7Schristos 26*946379e7Schristos @end 27*946379e7Schristos 28*946379e7Schristos @interface Hello (UIBuilder) 29*946379e7Schristos 30*946379e7Schristos - (void)createUI; 31*946379e7Schristos 32*946379e7Schristos @end 33