File: KeyboardInput-test.m

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 (358 lines) | stat: -rw-r--r-- 9,299 bytes parent folder | download | duplicates (9)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/* KeyboardInput-test.m: Keyboard Input demo/test

   Copyright (C) 1999, 2000 Free Software Foundation, Inc.

   Author:  Nicola Pero <n.pero@mi.flashnet.it>
   Date: 1999, 2000
   
   This file is part of GNUstep.
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
#include <GNUstepGUI/GSTable.h>
#include <GNUstepGUI/GSVbox.h>
#include "../GSTestProtocol.h"
#include "ConvertKeys.h"

static unsigned int modifiers[8] = 
{
  NSAlphaShiftKeyMask,
  NSShiftKeyMask, 
  NSControlKeyMask,
  NSCommandKeyMask,
  NSAlternateKeyMask,
  NSHelpKeyMask,
  NSFunctionKeyMask,
  NSNumericPadKeyMask
};

static NSString *modifierTitle[8] = 
{
  @"NSAlphaShiftKeyMask",
  @"NSShiftKeyMask", 
  @"NSControlKeyMask",
  @"NSCommandKeyMask",
  @"NSAlternateKeyMask",
  @"NSHelpKeyMask",
  @"NSFunctionKeyMask",
  @"NSNumericPadKeyMask"
};

static void
set_standard_properties (NSTextField *tf, NSTextAlignment align)
{
  [tf setEditable: NO];
  [tf setSelectable: NO];
  [tf setBezeled: NO];
  [tf setDrawsBackground: NO];
  [tf setAlignment: align];
  [tf setAutoresizingMask: NSViewWidthSizable | NSViewMinYMargin];
}

/* An NSTextField which can become invisible on request */
@interface ModifierEntry: NSTextField
{
  BOOL is_visible;
}
-(void)setVisible: (BOOL) flag;
@end

@implementation ModifierEntry
-(void)setVisible: (BOOL) flag
{
  if (is_visible != flag)
    [self setNeedsDisplay];
  is_visible = flag;
}
-(void) drawRect: (NSRect)aRect
{
  if (is_visible == NO)
    return;

  [super drawRect: aRect];
}
@end

/* The object displaying the list of modifiers */
@interface ModifiersList: GSVbox
{
  ModifierEntry *mod[8];
}
-(void)setModifiers: (unsigned int)flags;
@end

@implementation ModifiersList: GSVbox
{
}
-(id) init
{
  int i;

  [super init];

  [self setDefaultMinYMargin: 2];

  /* Start from 7 so that mod[0] is the uppest entry */
  for (i = 7; i > -1; i--)
    {
      mod[i] = AUTORELEASE ([ModifierEntry new]);
      set_standard_properties (mod[i], NSLeftTextAlignment);
      /* setStringValue just to compute dimension */
      [mod[i] setStringValue: modifierTitle[i]];
      [mod[i] sizeToFit];
      [mod[i] setVisible: NO];
      [self addView: mod[i]];
    }
  return self;
}
-(void)setModifiers: (unsigned int)flags
{
  int i, entries = 0;

  for (i = 0; i < 8; i++)
    {
      if (flags & modifiers[i])
	{
	  [mod[entries] setStringValue: modifierTitle[i]];
	  [mod[entries] setVisible: YES];
	  entries++;
	}
    }

  for (i = entries; i < 8; i++)
    {
      [mod[i] setVisible: NO];
    }
}
@end

/* The main view in our test window */
@interface InputTestView: NSView
{
  /* If NO, we behave as a common NSView */
  /* If YES, we catch all key events     */
  BOOL enabled;
  
  ModifiersList *modifiersList;
  NSTextField *keyCodeField;
  NSTextField *charactersField;
  NSTextField *charactersIgnoringModifiersField;
}
-(void) setEnabled: (BOOL)flag;
@end

@implementation InputTestView
{
}
-(id) init
{
  NSBox *box;
  NSBox *borderBox;
  GSTable *table;
  NSTextField *entry;

  [super init];
  
  // The little results table
  table = AUTORELEASE ([[GSTable alloc] initWithNumberOfRows: 4
					numberOfColumns: 2]);
  // Set resizing properties
  [table setXResizingEnabled: NO  forColumn: 0];
  [table setXResizingEnabled: YES forColumn: 1];
  
  [table setYResizingEnabled: NO forRow: 0];
  [table setYResizingEnabled: NO forRow: 1];
  [table setYResizingEnabled: NO forRow: 2];
  [table setYResizingEnabled: NO forRow: 3];

  [table setAutoresizingMask: NSViewWidthSizable | NSViewMinYMargin];

  //Add entries in the table
  entry = AUTORELEASE ([NSTextField new]);
  set_standard_properties (entry, NSRightTextAlignment);
  [entry setStringValue: @"keyCode:"];
  [entry sizeToFit];
  [table putView: entry atRow: 3 column: 0 withMargins: 2];

  entry = AUTORELEASE ([NSTextField new]);
  set_standard_properties (entry, NSRightTextAlignment);
  [entry setStringValue: @"characters:"];
  [entry sizeToFit];
  [table putView: entry atRow: 2 column: 0 withMargins: 2];

  entry = AUTORELEASE ([NSTextField new]);
  set_standard_properties (entry, NSRightTextAlignment);
  [entry setStringValue: @"charactersIgnoringModifiers:"];
  [entry sizeToFit];
  [table putView: entry atRow: 1 column: 0 withMargins: 2];

  entry = AUTORELEASE ([NSTextField new]);
  set_standard_properties (entry, NSRightTextAlignment);
  [entry setStringValue: @"modifiers:"];
  [entry sizeToFit];
  [table putView: entry atRow: 0 column: 0 withMargins: 2];

  keyCodeField = AUTORELEASE ([NSTextField new]);
  set_standard_properties (keyCodeField, NSLeftTextAlignment);
  [keyCodeField setStringValue: @" "];
  [keyCodeField sizeToFit];
  [table putView: keyCodeField atRow: 3 column: 1 withMargins: 2];

  charactersField = AUTORELEASE ([NSTextField new]);
  set_standard_properties (charactersField, NSLeftTextAlignment);
  [charactersField setStringValue: @" "];
  [charactersField sizeToFit];
  [table putView: charactersField atRow: 2 column: 1 withMargins: 2];

  charactersIgnoringModifiersField = AUTORELEASE ([NSTextField new]);
  set_standard_properties (charactersIgnoringModifiersField, 
			   NSLeftTextAlignment);
  [charactersIgnoringModifiersField setStringValue: @" "];
  [charactersIgnoringModifiersField sizeToFit];
  [table putView: charactersIgnoringModifiersField 
	 atRow: 1 column: 1 withMargins: 2];

  modifiersList = AUTORELEASE ([ModifiersList new]);
  [table putView: modifiersList atRow: 0 column: 1 withMargins: 2];

  box = AUTORELEASE ([NSBox new]);
  [box setTitle: @"Information On Latest Key Event"];
  [box setTitlePosition: NSAtTop];
  [box setBorderType: NSGrooveBorder];
  [box addSubview: table];
  [box sizeToFit];
  [box setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];

  borderBox = AUTORELEASE ([NSBox new]);
  [borderBox setTitlePosition: NSNoTitle];
  [borderBox setBorderType: NSNoBorder];
  [borderBox addSubview: box];
  [borderBox sizeToFit];
  [borderBox setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];

  [self setFrameSize: [borderBox frame].size];
  [borderBox setFrameOrigin: NSMakePoint (0, 0)];
  [self addSubview: borderBox];
  enabled = NO;
  return self;
}

/* NB: We do not need any dealloc method.  We are not retaining anything. */

-(void) setEnabled: (BOOL)flag;
{
  enabled = flag;
  [[self window] makeFirstResponder: self];
}
- (BOOL) acceptsFirstResponder
{
  return enabled;
}
- (BOOL) resignFirstResponder
{
  return (!enabled);
}
-(BOOL) performKeyEquivalent: (NSEvent *)theEvent
{
  if (enabled)
    {
      [self keyDown: theEvent];
      return YES;
    }
  else
    return [super performKeyEquivalent: theEvent];
}
-(void) keyDown: (NSEvent *)theEvent
{
  if (enabled)
    {
      NSString *s;

      [modifiersList setModifiers: [theEvent modifierFlags]];
      [keyCodeField setIntValue: [theEvent keyCode]];

      s = convertCharactersToDisplayable ([theEvent characters]);
      [charactersField setStringValue: s];

      s = convertCharactersToDisplayable ([theEvent 
					    charactersIgnoringModifiers]);
      [charactersIgnoringModifiersField setStringValue: s];
    }
  else
    [super keyDown: theEvent];
}
@end 

@interface KeyboardInputTest: NSObject <GSTest>
{
  InputTestView *v;
  NSWindow *win;
}
-(void) restart;
- (void)windowDidBecomeKey: (NSNotification *)aNotification;
- (void)windowDidResignKey: (NSNotification *)aNotification;
@end

@implementation KeyboardInputTest: NSObject
{
  // for instance variables see above
}
-(id) init 
{
  NSRect winFrame;

  v = AUTORELEASE ([InputTestView new]);
  winFrame.size = [v frame].size;
  winFrame.origin = NSMakePoint (100, 100);
  win = [[NSWindow alloc] initWithContentRect: winFrame
			  styleMask: (NSTitledWindowMask 
				      | NSClosableWindowMask 
				      | NSMiniaturizableWindowMask
				      | NSResizableWindowMask)
			  backing: NSBackingStoreBuffered
			  defer: YES];
  [win setTitle:@"Keyboard Input Test"];
  [win setReleasedWhenClosed: NO];
  [win setContentView: v];
  [win setMinSize: [NSWindow frameRectForContentRect: winFrame
			     styleMask: [win styleMask]].size];
  [win setDelegate: self];
  [self restart];
  return self;
}
- (void) dealloc
{
  [win setDelegate: nil];
  RELEASE(win);
  [super dealloc];
}
- (void) restart
{
  [win orderFront: nil]; 
  [[NSApplication sharedApplication] addWindowsItem: win
				     title: @"Keyboard Input Test"
				     filename: NO];
}
- (void)windowDidBecomeKey: (NSNotification *)aNotification
{
  [v setEnabled: YES];
}
- (void)windowDidResignKey: (NSNotification *)aNotification
{
  [v setEnabled: NO];
}
@end