forked from gnustep/libs-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.1
6119 lines (4836 loc) · 254 KB
/
ChangeLog.1
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sat Dec 11 06:55:59 1999 Nicola Pero <[email protected]>
* Source/NSPopUpButton.m ([-mouseDown:]): Send NSPopUpButton
action to target.
Sat Dec 11 03:15:12 1999 Nicola Pero <[email protected]>
* Source/NSMenu.m ([NSMenu -performActionForItemAtIndex:]): Fix:
don't send action if there is no action.
* Source/NSMenuView.m ([-setWindowFrameForAttachingToRect:
onScreen:preferredEdge:popUpSelectedItem:]): Implemented (but
preferredEdge implementation still missing). ([-trackWithEvent:]):
If the menu is a popup menu, don't unhighlight item when closing
(used internally by the popup button code to know which item was
selected without interfering with the normal target-action operation).
* Source/NSPopUpButton.m ([-initWithFrame:pullsDown:]): Removed
notification center code; set the pullsDown flag. ([-_popup:]):
Removed. ([-mouseDown:]): Rewritten. ([-selectItem:]): Fixed
bug/typo. ([-removeItemWithTitle:]): Fixed bug/typo.
([-addItemsWithTitles:]): Fixed bug/typo.
([-insertItemWithTitle:atIndex:]): Fixed bug/typo.
* Source/NSPopUpButtonCell.m ([-attachPopUpWithFrame:inView:]):
Rewritten. ([-performClickWithFrame:inView:]): Method still todo.
([-_popUpItemAction:]): Removed. ([-addItemWithTitle:]),
([-insertItemWithTitle:atIndex:]): Changed setting of item's
target and action.
* core/gui/Headers/AppKit/NSMenu.h: Removed declaration of
unimplemented -initWithPopUpButton:
* Headers/AppKit/NSPopUpButton.h: Updated.
* Headers/AppKit/NSPopUpButtonCell.h: Added copyright, protected
from multiple inclusions.
Thu Dec 9 05:47:09 1999 Nicola Pero <[email protected]>
* Source/NSSavePanel.m ([-runModalForDirectory:path:filename]),
([-ok:]), ([-cancel:]): There was a nice bug here: when the panel
was aborted, NSOKButton was returned! The reason is that by
chance NSRunAbortedResponse == NSOKButton (they are defined in two
different enums). I changed the way we handle return codes; now
the panel returns NSCancelButton on abort.
* Headers/AppKit/NSSavePanel.h: Added ivar _OKButtonPressed.
Thu Dec 9 03:12:16 1999 Nicola Pero <[email protected]>
* Source/NSMatrix.m ([-keyDown:]): Trivial implementation to allow
ESC to abort the save panel, method still to implement.
Wed Dec 8 14:59:00 1999 Richard Frith-Macdonald <[email protected]>
* Headers/AppKit/NSWindow.m: Added new ivar for window view and a
boolean to say whether the window has been opened (ordered in) since
it was created or closed.
* Source/NSWindow.m: Use ivar for window view so that the
([NSView -removeFromSuperview]) method will work for a window
content view. Add code so that windows are not added to the app
window menu until they are first ordered in. Also ensure that
windows are removed from that menu (and run loop performers are
cancelled) when a window is closed.
Tue Dec 7 21:30:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSColor.m: Implemented ([-isEqual:])
* Source/NSImage.m: Fix so any cache is ok if the image rep is opaque.
1999-12-07 Adam Fedor <[email protected]>
* Source/NSColorWell.m: Added ([+cellClass]) to set cell class to
NSActionCell so that setTarget: and setAction: methods at least
don't raise an exception. Modified ([-drawRect:]) to conform to
OpenStep 4.2 behavior. (Patch from Jonathan Gapen
* Source/NSColor.m (-set): Set the alpha coverage.
Tue Dec 7 10:50:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSButtonCell.m: ([-drawInteriorWithFrame:inView:]) fix code
for drawing images above and below text, and add support for
drawing in a flipped view.
Tue Dec 7 7:00:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSBrowser.m: ([-setPath:]) applied fix suggested by
Tue Dec 7 06:23:07 1999 Nicola Pero <[email protected]>
Major improvements of the save panel and the open panel.
* Headers/AppKit/NSWindow.h: Prefixed ivar delegate with
underscore.
* Source/NSWindow.m: Prefixed ivar delegate with underscore.
* Headers/AppKit/NSSavePanel.h: Changed ivars.
* Source/NSSavePanel.m:
([NSFileManager -_directoryContentsAtPath:showHidden:]): Removed.
([NSFileManager -hiddenFilesAtPath:]): Removed.
([-_initWithoutGModel]): Removed setMinSize in excess; set
title of window to @"".
([-setTitle:]): Dont set window title to @"".
([-_setDirectory:updateBrowser:]): Removed method.
([-_resetDefaults]): New method.
([+initialize]): New method.
([+savePanel]): Moved all reset defaults code to _resetDefaults.
([-dealloc]): New method.
([-init]): Some changings.
([-setAccessoryView:]): Access content view directly.
([-setDirectory:]): Updated.
([-runModalForDirectory:path:filename]): Updated, fixed.
([-directory]): New better implementation.
([-cancel:]): set directory to nil.
([-cancel:]), ([-ok:]): Changed from orderOut: to close:.
([-setDelegate:]): Cleaned, fixed.
([-browser:createRowsForColumn:inMatrix:]): Rewritten, much better.
([-browser:selectCellWithString:inColumn:]): Rewritten, much better.
([-controlTextDidEndEditing:]): Improved, still to finish.
* Source/NSOpenPanel.m: Updated for changing in NSSavePanel.
([-_resetDefaults]): New method.
([-_shouldShowExtension:]): New method.
([+openPanel]): Updated.
([-runModalForDirectory:file:types:]): Updated.
([-browser:createRowsForColumn:inMatrix:]): Removed method; not needed
any longer after rewriting of NSSavePanel.
([-browser:selectCellWithString:inColumn:]): Rewritten, updated.
* Documentation/gnustep-gui.tmpl.texi (NSSavePanel): Added
documentation for the new experimental feature
GSSavePanelShowProgress.
Tue Dec 7 5:40:00 1999 Richard Frith-Macdonald <[email protected]>
Fixes by Jonathon Gapen -
* Source/NSButton.m: Use ([+cellClass]) to obtain cell class.
* Source/NSPopUpButton.m: Implement ([+setCellClass:]) and
([+cellClass])
Mon Dec 6 13:32:00 1999 Richard Frith-Macdonald <[email protected]>
Additional DPS operator for telling backend to mark a document
window as being edited/up-to-date.
* Source/NSGraphicsContext.m: Added DPSdocedited()
* Headers/AppKit/NSGraphicsContext.h: ditto
* Headers/AppKit/DPSOperators.h: ditto
* Headers/AppKit/GSMethodTable.h: ditto
Sat Dec 4 19:41:00 1999 Richard Frith-Macdonald <[email protected]>
Additional DPS operator in preparation for fixing window code to
handle window-manager decoration of windows correctly.
* Source/NSGraphicsContext.m: Added method for getting style info.
* Headers/AppKit/NSGraphicsContext.h: ditto
* Headers/AppKit/DPSOperators.h: ditto
* Headers/AppKit/GSMethodTable.h: ditto
Fri Dec 3 14:53:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSPopUpButtonCell.m: arbitrary hacks to get window positioning
correct - NSWindow still needs some fixing.
Fri Dec 3 14:41:00 1999 Michael Hanni <[email protected]>
* Source/NSPopUpButtonCell.m: more fixes, issues remain.
* Source/NSPopUpButton.m: additions to deal with above.
* Source/NSMenuView.m: ditto.
Fri Dec 3 14:53:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSOpenPanel.m: ([-browser:selectCellWithString:inColumn:])
fixed to set the _fullFileName ivar so that the panel can return
the selected filename.
* Source/NSWindow.m: Encode/decode top-left point of window for
positioning.
Fri Dec 3 11:34:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-updateWindowsItem:]) modified to show
document state image with new menus.
([-changeWindowsitem:title:filename:]) updated to understand filename
format and discard path info.
* Source/NSMenuView.m: Implement ([-setNeedsDisplayForItemAtIndex:])
and fixed ([-itemRemoved:]) to update the highlighted item properly
and avoid a crash.
* Source/NSMenuItemCell.m: Fix so that images are drawn.
* Source/NSWindow.m: ([-setTitle:]), ([-setRepresentedFilename:]),
([-setTitleWithRepresentedFilename:]), ([-setMiniwindowTitle:])
rewritten to conform to documented behavior.
Fri Dec 3 05:21:40 1999 Nicola Pero <[email protected]>
* Source/NSTableColumn.m ([-setWidth:]): Tiny changing.
* Documentation/gnustep-gui.tmpl.texi: Added some reference
documentation for GSHbox, GSVBox, GSTable.
Thu Dec 2 17:02:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSView.m: ([-displayRectIgnoringOpacity:]) and
([-displayIfNeededInRectIgnoringOpacity:]) - very tricksy fix so that
views are still marked as needing display if any of their subviews
need displaying (though the invalid rectangle may be zeroed if all
the stuff at this level has been drawn).
Thu Dec 2 11:00:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMenuView.m: ([-trackWithEvent:]) Removed spurious code
that caused the bug of submenus being closed when you click on them!
Sumbenus should only be closed at the end of a drag operation or if
you click on their corresponding item in the parent menu.
Thu Dec 2 8:23:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSImage.m: Use opacity values from image reps to cache more
intelligently, and set the opacity of caches correctly. Removed an ivar
* Headers/AppKit/NSImage.h: removed _repList ivar - not needed
* Source/NSView.m: Re-instate needs-display stuff for actual rectangles.
Thu Dec 2 01:28:34 1999 Nicola Pero <[email protected]>
* Headers/AppKit/NSTableHeaderView.h: Added copyright.
* Source/NSTableHeaderView.m: Untested first attempt at drawing
code; it should work enough to make developing of NSTableView
possible. Mouse events to be implemented after NSTableView works.
* Headers/AppKit/NSTableColumn.h: Added copyright, updates.
* Source/NSTableColumn.m: Rewritten nearly everything, class now
finished, but not tested.
Wed Dec 1 14:55:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSColor.m: Fixed a few transparency bugs in system colors.
* Source/NSImage.m: Caching rewrite - using NSCachedImageRep - works
with xgps, but probably not xdps. There are two global variables to
control this -
1. NSImageDoesCaching
To turn caching on - when an image is drawn it is cached, if it is
redrawn with the same background color set (excluding transparent)
then the cached version is used.
2. NSImageForceCaching
To force the cache to be used irrespective of the background color.
Wed Dec 1 11:55:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSWindow.m: Removed spurious setNeedsDisplay when changing
the contentView of a window - it's up to the programmer to do that.
* Source/NSView.m: Removed many spurious setNeedsDisplay calls when
altering the view hierarchy - it's up to the programmer to do a
single call at the end of the work.
Wed Dec 1 8:27:00 1999 Richard Frith-Macdonald <[email protected]>
Applied and modified/rewrote patch by Jonathan Gapen
* Headers/gnustep/gui/NSImage.h: Moved excess BOOL ivar to _flags.
* Headers/NSView.h: Added -enclosingScrollView method and NSScrollView
class reference.
* Source/NSImage.m ([NSImage -setFlipped:]): Implemented.
([NSImage -isFlipped]): Implemented.
NOTE: NSImage not updated to respect flipped setting.
* Source/NSView.m ([NSView -enclosingScrollView]): Implemented.
1999-11-30 Adam Fedor <[email protected]>
* Headers/gnustep/gui/NSBrowser.m: Add some ivars, removed others.
* Source/NSBrowser.m: Rewrite for better functionality.
* Source/NSBrowserCell.m (-drawInteriorWithFrame:inView): Check
to make sure we have a controlView.
* Source/NSCell.m: Likewise.
* Source/NSView.m (-lockFocusInRect:): Check to make sure
we have a window.
(patches from F. Wolff <[email protected]>).
Tue Nov 30 19:44:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSWindow.m: Rewrote ([-encodeWithCoder:]) and
([-initWithCoder:]) so they actually work (more or less).
Fixed ([-setExcludedFromWindowsMenu:]) to update windows menu.
Tue Nov 30 11:52:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSCachecImageRep.m: Improve initialisation and added
partial implementations (no scaling) for ([-drawAtPoint:]) and
([-drawInRect:]) - the superclass versions didn't work due to
current state of gstate management.
Mon Nov 29 17:23:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMatrix.m: Memory bounds error fixed.
* Source/NSOpenPanel.m: use any supplied filetype as denoting a file
package for the purposes of differentiating between packages and
directories. Also - better fix for selecting directories when
multiple selection is allowed.
Mon Nov 29 11:43:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSBundle.m: rewrite with new nib loading method.
* Source/GNUmakefile: Added NSNibConnector.h
* Headers/AppKit/NSNibConnector.h: new file
* Headers/AppKit/NSNibLoading.h: Update
Mon Nov 29 6:05:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-iconWindow]) new (non-standard) method.
* Source/NSWindow.m: ([-orderWindow:relativeTo:]) added code to
resign key/main window status on ordering out. Also, set up a new
key/main window - if no suitable candidates are available, use the
app icon window or the main menu window.
Sun Nov 28 19:37:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSOpenPanel.m: ([-filenames]) fix to handle multiple
selection correctly - was duplicating name of selected item.
Sun Nov 28 04:44:43 1999 Nicola Pero <[email protected]>
First implementation of editing in NSForm, NSMatrix.
* Source/NSFormCell.m ([-initTextCell:]): Set editable by default.
* Source/NSForm.m ([-selectTextAtIndex:]): Implemented.
* Source/NSMatrix.m: Started work of prefixing ivars with underscore;
([-selectText:]): Implemented.
([-selectTextAtRow:column:]): Implemented.
([-textDidBeginEditing:]): Implemented.
([-textDidChange:]): Implemented.
([-textDidEndEditing:]): Implemented.
([-textShouldBeginEditing:]): Implemented.
([-textShouldEndEditing:]): Implemented.
([-tabKeyTraversesCells]): Implemented.
([-setTabKeyTraversesCells:]): Implemented.
([-mouseDown:]): Added code to start editing if needed.
([-setDelegate:]): Implemented.
([-keyDown:]): Removed old implementation -- still to do the new one.
([-acceptsFirstResponder]): Fixed.
([-abortEditing]): Implemented.
([-currentEditor]): Implemented.
([-validateEditing]): Implemented.
([-_selectNextSelectableCellAfterRow:column:]): : New method.
([-_selectPreviousSelectableCellBeforeRow:column:]): New method.
* Headers/AppKit/NSMatrix.h: Updated in sync.
* Source/NSSavePanel.m: Use a NSForm for the text field; cleanup.
* Headers/AppKit/NSSavePanel.h: Updated.
* Source/NSOpenPanel.m: Updated.
Sat Nov 27 04:30:15 1999 Nicola Pero <[email protected]>
* Source/NSSavePanel.m ([-directory]): Maintenance, clean up.
* Source/NSSavePanel.m: Moved code between
([-_setDirectory:updateBrowser:]) and ([-setDirectory:]) so that
we check existence of directories etc only if strictly needed.
* Source/NSSavePanel.m ([-browser:createRowsForColumn:inMatrix:]):
Maintenance, clean up.
Thu Nov 26 20:16:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSAttributedString.m: Added and rewrote RTFD additions
contributed by Daniel Bðhringer.
Thu Nov 25 18:59:34 1999 Nicola Pero <[email protected]>
* Source/NSControl.m ([-setIntValue:]), ([-setFloatValue:]),
([-setDoubleValue:]): Abort editing before setting the value.
Thu Nov 25 11:44:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMenu.m: Tidying, performnce tweaks, memory leak fixes.
* Source/NSPopUpButton.m: Tidied.
* Headers/AppKit/NSPopUpButtonCell.h: Use _selectedItem ivar rather
than _selectedIndex.
* Source/NSPopUpButtonCell.m: Use _selectedItem ivar rather than
_selectedIndex, fix memory leaks, and various hacks to stop things
crashing.
Thu Nov 25 1999 Nicola Pero <[email protected]>
* Source/NSMenuView.m ([-trackWithEvent:]): Fixed bug which was
crashing save panel when run from a menu. We should stop the
periodic events before performing the user-selected action,
otherwise any legitimate attempt of starting the periodic events
during performance of the action crashes the app.
1999-11-24 Adam Fedor <[email protected]>
* Source/GNUmakefile: Alphabatize headers.
* Source/NSPasteboard.m: Fix typo in format string.
Wed Nov 24 16:58:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMenuView.m: ([-sizeTofit]) oops - fixed error in last mod.
Wed Nov 24 1999 Nicola Pero <[email protected]>
The three new autolayout classes; code extremely stable, API
experimental. Documentation/example code forthcoming.
* Source/GSHbox.m: New file.
* Source/GSTable.m: New file.
* Source/GSVbox.m: New file.
* Headers/AppKit/GSHbox.h: New file.
* Headers/AppKit/GSTable.h: New File.
* Headers/AppKit/GSVbox.h: New file.
* Source/GNUmakefile: Updated for new files.
Tue Nov 23 14:08:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: Rewrite focus handling, preliminary attempt
to cope with window close etc.
* Source/NSWindow.m: Some focus fixes etc.
* Source/NSMenuView.m: ([-sizeTofit]) hacked out reference to
_isBeholdenToPopUpButton to get this to compile again.
1999-11-22 Michael Hanni <[email protected]>
* Source/NSPopUpButton.m: rewrite.
* Source/NSPopUpButtonCell.m: ditto.
* Source/?.m: a few other misc fixes. will document.
Mon Nov 22 17:33:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: Start listening for window notifications
whenm the app becomes active, and check to see which windows are key
and main.
([-unhide:]) fixed to activate app even if it wasn't hidden.
1999-11-21 Tim McIntosh <[email protected]>
* Model/GMAppKit.m ([NSMenuItem -initWithModelUnarchiver:]),
([NSMenuItem -encodeWithModelArchiver:]): "menu" should not be a
persistent field. [NSMenu addItem:] will reject menu items for which
[NSMenuItem menu] returns non-nil.
Mon Nov 22 14:51:33:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSWindow.m: Tidied activation/deactivation code.
* Source/NSApplication.m: Fixed Windows menu for new menu API.
Changed to use arrays to store deactivated/hidden windows and to
keep track of key window when hidden. Watch window notifications
to keep track of which window is key/main. Handle making window
key and ordering front in modal sessions.
Sat Nov 20 6:56:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMenu.m: Implemented ([-initDefaults]) to set window level
in pre-initialisation so the information is available when backend
window is created.
1999-11-19 David Lazaro Saz <[email protected]>
* Source/NSMenuView.m ([NSMenuView -trackWithEvent:]): Added two
defines (MOVE_THRESHOLD_DELTA and DELAY_MULTIPLIER) to make nicer the
menu traversing.
1999-11-18 David Lazaro Saz <[email protected]>
* Source/NSPopUpButton.m ([NSPopUpButton +initialize]): Fixed core
dump on init. Remains core on select.
Thu Nov 18 1999 Nicola Pero <[email protected]>
* Source/NSCell.m ([-editWithFrame:inView:editor:delegate:event:]),
([-selectWithFrame:inView:editor:delegate:start:length:]):
Fixed bug.
* Source/NSWindow.m ([-keyViewSelectionDirection]): Implemented.
([-selectKeyViewFollowingView:]),([-selectKeyViewPrecedingView:]),
([-selectNextKeyView:]),([-selectPreviousKeyView:]): Improvement,
made ready to support TABbing with selection of text between views
which are not necessarily textfields, eg forms.
* Headers/AppKit/NSWindow.h: Added ivar _selection_direction.
1999-11-18 David Lazaro Saz <[email protected]>
* Source/NSMenuView.m ([NSMenuView
-performActionWithHighlightingForItemAtIndex:]): Added a short delay to
item unhiglighting (100ms).
([NSMenuView -trackWithEvent:]): When an attached menu is present other
items only highlight when the cursor stops at them.
1999-11-17 David Lazaro Saz <[email protected]>
* Source/NSWindow.m ([NSWindow -setLevel:]):
Removed orderWindow:RelativeTo: message that made impossible to setup
the window level before displaying the window.
* Source/NSApplication.m ([NSApplication -setMainMenu:]): The window
level for the main menu is set here to NSMainMenuWindowLevel. The old
main menu window level is reverted to NSSubmenuWindowLevel.
* Source/NSMenu.m ([NSMenu -initWithTitle:]): Changed init code to take
into account changes made in the NSMenuWindow class.
([NSMenuWindow -init]): This is the main init method for this class.
It is responsible of setting the window level to NSSubmenuWindowLevel.
* Model/GMAppKit.m (NSMenu, NSMenuItem): Added preliminary changes to
support new menuing code.
Wed Nov 17 1999 Nicola Pero <[email protected]>
* Source/NSBox.m ([-isOpaque]): Added method.
* Source/NSBrowser.m ([-isOpaque]): Added method.
* Source/NSBrowserCell.m ([-isOpaque]): Added method.
* Source/NSButtonCell.m ([-isOpaque]): Updated.
* Source/NSColorWell.m ([-isOpaque]): Added method.
* Source/NSControl.m ([-isOpaque]): Added method.
* Source/NSFormCell.m ([-isOpaque]): Improved.
* Source/NSMatrix.m ([-isOpaque]): Added method.
* Source/NSSliderCell.m ([-isOpaque]): Added method.
* Source/NSTabView.m ([-isOpaque]): Added method.
* Source/NSText.m ([-isOpaque]): Added method.
* Source/NSTextFieldCell.m ([-isOpaque]): Added method.
* Source/NSTextFieldCell.m: Tiny optimization by using _isOpaque.
* Headers/AppKit/NSTextFieldCell.h: Added ivar _isOpaque.
* Source/NSCell.m ([-drawInteriorWithFrame:inView:]): Removed
[unused] drawing of background. Now the drawing is minimal, but
easier to subclass. ([-setUpFieldEditorAttributes:]): Removed
setting of background.
* Source/NSBrowserCell.m ([-editWithFrame:inView:editor:delegate:
event:]), ([-endEditing:]), ([-_handleKeyEvent:]): Useless, removed.
* Headers/AppKit/NSButtonCell.h: Removed declaration of
-performClick: to pacify the compiler.
* Source/NSMatrix.m ([-nextText]), ([-previousText]),
([-setNextText:]), ([-setPreviousText:]): Implemented.
1999-11-16 David Lazaro Saz <[email protected]>
* Source/NSMenu.m: Almost total rewrite of some of the parts. Added
all useful MacOS X Server changes.
* Source/NSMenuView.m: ditto.
* Source/NSMenuItem.m: Reimplemented to be compatible with MacOS X
Server. The online docs are wrong in respect to this class so the
changes were infered from a lot of different places.
* Source/NSMenuItemCell.m: Reimplemented to be just like another form
of NSButtonCell and comply with MacOS X Server specs changes.
* Source/NSApplication.m ([NSApplication -setMainMenu:]): Changes to
support changes in the menuing code.
* Source/GSServicesManager.m ([GSServicesManager -updateServicesMenu]):
Update for using new NSMenuItem code. This means that it does send a
submenu message instead of a target message to get the submenu.
* Headers/gnustep/gui/NSView.h: Added declaration for the
removeFromSuperviewWithoutNeedingDisplay method.
Tue Nov 16 10:49:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSView.m: Removed opaque-view optimisation in favour of
retaining MacOS-X compatibility.
* Source/GMAppKit.m: ditto.
Tue Nov 16 7:05:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-run]) make sure user defaults are
up to date on exit.
* Source/NSWindow.m: various changes to sving window frame info.
Use top-left as window origin, and save in OPENSTEP format.
Include code to save NSMenuWindow locations exactly as in
MacOS-X also.
Mon Nov 15 21:29:00 1999 Richard Frith-Macdonald <[email protected]>
* Headers/gnustep/gui/NSMenu.h: Make menu window inherit from NSPanel
* Headers/gnustep/gui/NSResponder.h: New flag for window and view.
* Headers/gnustep/gui/NSWindow.h: Condense flags into a bitfield.
* Source/GSHelpManagerPanel.m: Tidy and fix error in ([-release]).
* Source/NSApplication.m: Fixup references into NSWindow ivars.
* Source/NSCachedImageRep.m: ditto.
* Source/NSMenu.m: Fixup references into NSWindow ivars, and remove
unnecessary code for hide/unhide on app deactivation/activation.
* Source/NSPanel.m: Fixup references to NSWindow ivars and make
panels hide on app deactivation by default.
* Source/NSView.m: Fixup references to NSWindow ivars and move one
ivar into flags field defined in NSResponder.h
* Source/NSWindow.m: Change flags to be in bitfield and implement
code to handle hide/unhide on app deactivation/reactivation.
Mon Nov 15 16:57:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSFontPanel.m: Removed a couple of bogus methods that were
preventing display of a font panel.
Mon Nov 15 16:09:00 1999 Richard Frith-Macdonald <[email protected]>
* Headers/gnustep/gui/GSTrackingRect.h: Tidied to more compact layout.
* Headers/gnustep/gui/NSCursor.h: Closer to MacOS-X spec.
* Headers/gnustep/gui/NSResponder.h: New flag for cursor rect validity
* Headers/gnustep/gui/NSTextField.h: Removed unused ivar.
* Source/GSTrackingRect.m: Alter for more compact ivars.
* Source/NSCell.m: Implement method for cursor tracking.
* Source/NSControl.m: Implement default -resetCursorRects.
* Source/NSCursor.m: Tidied up and added undocumented behavior to make
cursor handling on entry/exit work nicely - push new cursor onto stack
on entry to rectangle, pop it off again on exit.
* Source/NSTextField.m: Remove cursor handling stuff - it's done in
NSCell and NSControl.
* Source/NSView.m: Many little changes for correct cursor rectangle
handling.
* Source/NSWindow.m: Changes for cursor rectangle handling.
Mon Nov 15 1999 Nicola Pero <[email protected]>
* Headers/AppKit/NSFormCell.h: Prefixed ivars with underscore;
added ivar _autoTitleWidth.
* Source/NSFormCell.m: Revised/rewritten most code. Rethinked
drawing code to be fully compliant with OS spec and to support
editing. Also, minor optimization: cache titleWidth.
Sun Nov 14 1999 Nicola Pero <[email protected]>
Modified code so that text is highlighted only when moving between
fields with TAB, not on mouse events:
* Source/NSTextField.m ([-becomeFirstResponder]), ([-mouseDown:]):
Modified. ([-acceptsFirstMouse:]): New method.
* Source/NSWindow.m: ([-selectKeyViewPrecedingView:]),
([-selectPreviousKeyView:]), ([-selectNextKeyView:]),
([-selectKeyViewFollowingView:]): Select text if the newly selected
view is kind of text field.
Sun Nov 14 1999 Nicola Pero <[email protected]>
Huge improvements of NSTextField and related code.
Fix for nil target:
* Source/NSApplication.m ([-sendAction:to:from:]): Deal with nil
targets as per spec.
Corrected NSControl's delegate stuff:
* Headers/AppKit/NSControl.h: Moved methods 'implemented by the
delegate' from the class interface to an informal protocol
definition.
* Source/NSControl.m: Removed implementation, which was nearly
void anyway, of 'methods implemented by delegate'. They should be
implemented by the delegate, not by the control.
Fix in NSControl:
* Source/NSControl.m ([-setStringValue:]): Abort editing, if any,
before setting the value.
Little fix in NSCell to allow abort/checking of entered text:
* Source/NSCell.m ([-endEditing:]): Do not set the cell's string
value to the text. This should be done by the delegate specified
in editWithFrame:inView:editor:delegate:event: upon receiving
the -textDidEndEditing: message.
Fix to make setSelectable/setEditable work:
* Source/NSCell.m ([-setUpFieldEditorAttributes:]): set
editability/selectability of text object.
Fixed and simplified treating of border during editing; also,
do not invoke setUpFieldEditorAttributes: in the cell; this
has to be done by the control:
* Source/NSCell.m ([-editWithFrame:inView:editor:delegate:event:]),
([-selectWithFrame:inView:editor:delegate:start:length:]): Invoke
cell's drawingRectForBounds: and other minor fixes.
Added full NSTextField's delegate support; added real RETURN, TAB,
Shift+TAB support; tons of fixes; major rewriting of much of
NSTextField:
* Headers/AppKit/NSTextField.h: Prefixed ivars with underscore,
added ivar _text_object.
* Source/NSTextField.m ([-abortEditing]), ([-currentEditor]),
([-validateEditing]): Implemented.
([-keyDown:]): Removed.
([-acceptsFirstResponder]), ([-becomeFirstResponder]),
([-mouseDown:]), ([-selectText:]), ([-setDelegate:]),
([-textShouldEndEditing:]), ([-textShouldBeginEditing:]),
([-textDidEndEditing:]), ([-textDidChange:]),
([-textDidBeginEditing:]): Completely rewritten, often from scratch.
* Source/NSTextField.m, Source/NSSecureTextField.m: Standardized
initialization.
Cleaned up NSText delegate stuff and fixed some nasty bugs during
the work:
* Source/NSText.m: Removed implementation of methods 'implemented
by the delegate'. Moved the code around where needed.
Implemented method missing in NSWindow.
* Source/NSWindow.m ([NSWindow -endEditingFor:]): Implemented.
Added in NSSavePanel support for editing the file name in the
textfield:
* Source/NSSavePanel.m ([NSSavePanel -_initWithoutGModel]):
Set self as delegate to _form;
([NSSavePanel -controlTextDidEndEditing:]): New method.
Fri Nov 12 1999 Nicola Pero <[email protected]>
* NSBrowser.m: [GSBrowserTitleCell] updated ivar draw_background
to the new name _draws_background.
Fri Nov 12 12:02:00 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMatrix.m: ([-setCellClass:]) was calling methodForSelector
when it should have been instanceMethodForSelector.
Fri Nov 12 11:53:52 1999 Lyndon Tremblay <[email protected]>
* NSBrowser.m: Removed access to unused variable `draw_background',
which prevented successful compile.
Fri Nov 12 1999 Nicola Pero <[email protected]>
NSTextFieldCell made OpenStep compliant; this class is finished.
* Headers/AppKit/NSTextFieldCell.h Clean up. Removed some useless
ivars, prefixed names of remaining ones with underscores; removed
useless methods.
* Source/NSTextFieldCell.m: Cleaned up completely, fixed,
simplified, removed lot of useless stuff, checked for compliance.
* Source/NSTextField.m, Source/NSTableHeaderCell.m: microscopic
trivial updates to keep in sync with NSTextFieldCell.
Thu Nov 11 1999 Nicola Pero <[email protected]>
* Source/NSText.m Manually reformatted the whole code.
Wed Nov 10 1999 Nicola Pero <[email protected]>
Debugged/rewritten handling of special key events, such as Return
or TAB, of text field editors:
* Source/NSText.m ([-keyDown:]): Debugged, rewritten.
* Source/NSText.m ([-acceptsFirstResponder]),
([-resignFirstResponder]), ([-becomeFirstResponder]): Rewritten to
deal correctly with delegate.
* Headers/AppKit/NSText.h: Added enumeration of important unicodes.
Improved interaction of cells with text field editors, better
support for fonts, colors when editing:
* Source/NSCell.m
([-editWithFrame:inView:editor:delegate:event:]): Fixes (eg
vertical position of rect used for drawing, display text editor,
call setUpFieldEditorAttributes:).
([-selectWithFrame:inView:editor: delegate:start:length:]): Fixes
(eg don't make the text object first responder before having put
it in the view tree; added selection of the range) [untested].
* NSCell.m ([-setUpFieldEditorAttributes:]): First implementation.
* Source/NSTextFieldCell.m ([-setUpFieldEditorAttributes:]):
First implementation.
Tue Nov 9 1999 Nicola Pero <[email protected]>
* Source/NSBrowser.m ([NSBrowser -setPath:]): Tidied, and fixed
code which had been broken by the recent fix to [NSMatrix -cells].
Sun Nov 7 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSView.m: Change debug logging for negative width and
height values to use NSWarn... macros instead.
Fri Nov 5 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-hide:]) and ([-unhideWithoutActivation])
Changed to hide/unhide all windows (excluding a couple of special
cases - menu windown and app icon windows) as per the spec, not just
menus that appear in the windows menu.
Thu Nov 4 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-runModalforWindow:]) make the window key
and order to front as specified in MacOS-X docs.
* Source/NSPanel.m: Remove redundant code from alert panels -
now done in NSApplication.
Tue Nov 2 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSMatrix.m: Complete rewrite of code for handling cells
within a matrix - use plain C arrays for holding the objects and
cache method implementations for creating new cells. Also make GC
aware for some future date when we can use GC.
* Headers/AppKit/NSMatrix.h: ivar changes for rewrite.
* Source/NSCell.m: Updated to notice changes in system colors,
also optimised a little by caching some classes.
Sat Oct 30 1999 Nicola Pero <[email protected]>
Still work in progress, but this is a first preview
of the new NSSavePanel, NSOpenPanel. I am aiming at
making these classes fully compliant soon.
* Source/NSOpenPanel.m: Completely rewritten. A lot of
functionalities which were missing have now been implemented.
* Source/NSSavePanel.m: Rewritten a lot of parts, mainly:
allocation/initialization (but could not test the gmodel loading),
browser delegate methods, appearance (the gmodel has not been
updated -- when we have IM it will be very easy), and with the specs
in hand I checked all the code and did a lot of improvements.
* Headers/AppKit/NSOpenPanel.h: Changed ivars.
* Headers/AppKit/NSSavePanel.h: Changed ivars.
* Model/GMAppKit.m: Added NSOpenPanel.
1999-10-29 Adam Fedor <[email protected]>
* Remove backend application, cursor, and screen classes and use
new window ops.
* Headers/gnustep/gui/DPSOperators.h: New window ops.
* Headers/gnustep/gui/GSMethodTable.h: Likewise.
* Headers/gnustep/gui/NSGraphicsContext.h: Likewise.
* NSGraphicsContext.m: Likewise.
* Headers/gnustep/gui/NSCursor.h: Add enum for standard cursors.
* Source/NSCursor.m: Implement methods using new cursor ops.
* Source/NSApplication.m: Move icon window classes
from backend here and use new window ops.
* Source/NSScreen.m: Implement methods using new window ops.
* Source/NSView.m (-registerForDragTypes:): Fix typo? wrong list
being removed.
* Source/NSWindow.m (+_windowList): New method.
Wed Oct 27 1999 Nicola Pero <[email protected]>
Changings suggested by Andrew Lindesay:
* Source/NSBrowser.m: draw a border around its horizontal scroller.
Updated code to compute the border during calculation of sizes;
([NSBrowser -drawRect:]): draw horizontal scroller border.
* Source/NSSavePanel.m ([NSSavePanel -_initWithoutGModel]):
Changed Ok button from 'Ok' to 'OK'.
* Panels/SavePanel.gmodel: idem.
Wed Oct 27 1999 Nicola Pero <[email protected]>
Minor improvements on last days' changings.
* Source/NSBrowserCell.m: Use simple bold and no color
when fontifying.
* Documentation/gnustep-gui.tmpl.texi (NSBrowserCell): Updated
description.
* Source/NSSavePanel.m: More cleanup in size dealing.
1999-10-26 Adam Fedor <[email protected]>
* Source/NSWindow.m (-dealloc): Remove check for context.
Wed Oct 27 1999 Nicola Pero <[email protected]>
Patches by [email protected] fixing bug (horizontal
scroller non resized) in NSBrowser upon resize:
* Source/NSBrowser.h: Added forgotten ivar _scrollerRect;
* Source/NSBrowser.m: ([-initWithFrame:]), ([-tile]): Use ivar
_scrollerRect appropriately; ([-resizeSubviewsWithOldSize:]):
Update horizontal scroller frame using _scrollerRect.
Tue Oct 26 1999 Nicola Pero <[email protected]>
SavePanel tidyups, simplifications and fixes for better
accessoryView support.
* Headers/gnustep/gui/NSSavePanel.h: Removed ivars _oldContentFrame,
_oldTopViewFrame.
* Source/NSSavePanel.m ([NSSavePanel -setAccessoryView:]):
Cleaned, improved and tested size calculations.
* Source/NSSavePanel.m ([NSSavePanel -_initWithoutGModel]):
Set properly all the autoresizingMasks.
Added experimental feature (*disabled* by default) to Browser Cells.
Setting the user preference "GSBrowserCellFontify" to 'YES' draws the
leaf and non-leaf cells with different fonts and colors. The API
is stricltly unchanged in all cases.
* Documentation/gnustep-gui.tmpl.texi (NSBrowserCell): Written
short description of how to turn the experimental feature on/off.
* Source/NSBrowserCell.m ([+initialize]): Initialize fonts and
colors if fontify is on.
* Source/NSBrowserCell.m ([-initTextCell:]): use setLeaf: instead
of setting the ivar directly.
* Source/NSBrowserCell.m ([-setLeaf:]): If fontification is on,
change appropriately the text cell font and color.
Tue Oct 26 1999 Nicola Pero <[email protected]>
Fixes for Controls and Cells:
* Source/NSButton.m ([-selectedCell]): Removed (duplicate of
NSControl's method).
* Source/NSCell.m ([-setImage:]): Accept nil argument.
* Source/NSCell.m ([-setStringValue:]): Make the cell a text cell.
* Source/NSControl.m ([-selectedCell]): Always return the
control's cell.
* Source/NSTextField.m ([-selectedCell]): Removed (duplicate of
NSControl method).
Class Rewritten:
* Source/NSTableHeaderCell.m: Rewritten from scratch, tested.
This class is now complete and fully compliant.
Headers Fix:
* Headers/gnustep/gui/AppKit.h: Include NSTableColumn.h.
* Headers/gnustep/gui/NSTableHeaderCell.h: Added copyright notice.
Mon Oct 25 1999 Nicola Pero <[email protected]>
The merit should all go to David Lee Ludwig <[email protected]>, for
reporting the bug in border drawing, and suggesting the fix.
* Source/NSBrowser.m: ([GSBrowserTitleCell]): new class.
* Source/NSBrowser.m ([-initWithFrame:]): use GSBrowserTitleCell
to draw the titles.
Mon Oct 25 1999 Nicola Pero <[email protected]>
* Source/NSBrowser.m ([-initWithFrame:]): fixed bug in drawing
title background.
Sun Oct 24 1999 Nicola Pero <[email protected]>
* Source/NSWindow.m ([GSWindowView -setFrame:]): Send to the
content view a resizeWithOldSuperviewSize: instead of a setFrame:.
Sat Oct 23 1999 Nicola Pero <[email protected]>
Fixed critical bug. Now setting a flipped view as a window's
contentView should work.
* Source/NSView.m ([-convertPoint:fromView:]): Use window's
contentView's superview and not contentView when argument is nil.
* Source/NSView.m ([-convertPoint:toView:]): idem.
* Source/NSView.m ([-convertRect:toView:]): idem.
* Source/NSView.m ([-convertRect:fromView:]): idem.
* Source/NSView.m ([-convertSize:fromView:]): idem.
* Source/NSView.m ([-convertSize:toView:]): idem.
1999-10-22 Adam Fedor <[email protected]>
* Source/NSWindow.m (-initWithContentRect:...): Remove window
from windows menu if window_level is > dock window.
* Source/NSMenu.m (NSMenuWindow): Implement class (from backend)
so backend class can be removed.
Sat Oct 23 1999 Nicola Pero <[email protected]>
* Source/NSSavePanel.m Moved FileManager at the beginning of file,
to avoid compiler warnings. ([-_initWithoutGModel]): Made the
prompt non selectable.
* Source/NSScroller.m ([-trackScrollButtons:]): Removed useless
lockFocus:.
* Source/NSSlider.m ([-mouseDown:]): idem.
1999-10-22 Adam Fedor <[email protected]>
* Source/NSColor.m ([NSColor -set]): Implement (from backend).
Fri Oct 22 1999 Nicola Pero <[email protected]>
* Documentation/gnustep-gui.tmpl.texi (Keyboard Modifiers):
Added short documentation on how to configure the xgps/xdps
backend keyboard modifiers.
1999-10-21 Adam Fedor <[email protected]>
* Remove backend window class and use new window ops.
* Headers/gnustep/gui/DPSOperators.h: New window ops.
* Headers/gnustep/gui/GSMethodTable.h: Likewise.
* Headers/gnustep/gui/NSGraphicsContext.h: Likewise.
* NSGraphicsContext.m: Likewise.
* Headers/gnustep/gui/NSEvent.h: Add GSAppKitWindowClose event type.
* Headers/gnustep/gui/NSWindow.h: Move some backend methods here.
* Source/NSEvent.m (-window): Use new NSWindow method.
* Source/NSWindow.m (-dealloc): Use window ops.
(-init:...): Likewise. (-flushWindow): Implement using window ops.
(-processResizeEvent): New method. (-sendEvent:) Tidy.
Thu Oct 21 1999 Nicola Pero <[email protected]>
* Source/NSPopUpButton.m ([-selectItemAtIndex:]): Mark the button
as needing redisplay when the selected item is changed. This is
effective, but temporary. Replace it by a call to
synchronizeTitleAndSelectedItem as soon as the latter works.
Tue Oct 19 11:33:46 1999 Lyndon Tremblay <[email protected]>
* Source/NSMenuView.m: ([-sizeToFit]) added handling for title width.
([-setTitleWidth:]) new private function called by NSMenu to
make the menu not get smaller than menu title.
* Source/NSMenu.m: (-[sizeToFit]) added handling for title width.
* Headers/AppKit/NSMenuView.h: added declaration for -setTitleWidth.
Tue Oct 19 1999 Richard Frith-Macdonald <[email protected]>
* Source/NSApplication.m: ([-terminate:]) modification based on
patch by [email protected] to send notification.
* Source/NSWorkspace.m: Fix to prevent duplicate notifications.
Tue Oct 19 1999 Nicola Pero <[email protected]>
Changing suggested by Richard:
* Source/NSApplication.m Removed ([-isRunningModalForWindow:]) in
favour of ([-modalWindow]). This method returns the window
currently running a modal loop, if any; otherwise, nil.
* Source/NSWindow.m ([-keyDown:]): changed accordingly.
* Headers/AppKit/NSApplication.h: changed accordingly.
Minor changings/fixes:
* Source/NSCell.m ([-performClick:]): Rewritten the case when the
cell has no control view. Also, made click faster.
* Source/NSControl.m ([-performClick:]): Added missing method.
* Headers/AppKit/NSControl.h: Added corresponding declaration.
* Source/NSMatrix.m ([-initWithFrame:mode:prototype:numberOfRows:
numberOfColumns:]): if numberOfRows or numberOfColumns is zero,
use default size for cells.
* Source/NSMenuView.m ([-performKeyEquivalent:]): implemented method.
* Source/NSSavePanel.m ([-_initWithoutGModel]): Make the panel non
resizable.
1999-10-18 Lyndon Tremblay <[email protected]>
* Headers/gnustep/gui/NSSecureTextField.h: Added.
* Headers/gnustep/gui/NSTextField.h: Added method to share initialization
data with NSSecureTextField.