7cc63e9a50bb1468e01267fabdd86c52dc4b7cd6
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2
3         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
4
5 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
6
7         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
8         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
9         
10         * Hwnd.cs: 
11         - border_static field added, it will used to define when a control 
12         theres 3D border but it must be static (thin).
13         - In GetWindowRectangle use Theme.BorderSize to calculate area 
14         instead of static value 1, by the way use new BorderStaticSize instead
15         Border3DSize when border_static is true.
16
17         * XplatUIX11.cs, XplatUIOSX.cs: 
18         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
19         
20         * Theme.cs: BorderStaticSize field added.
21
22 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
23
24         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
25
26 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
27
28         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
29         mimic same behavior than win32 that set border only in CreateParams,
30         it fix problems under CreateParams overrides. Fix #79442 and partial
31         fix #79537.
32         
33         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
34         of thi control you must call recreate handle. 
35         
36         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
37         need to do anything as RecreateHangle will take care about borders.
38
39 2007-01-05  Mike Kestner  <mkestner@novell.com>
40
41         * ListView.cs: hack to eliminate Lost/Got focus notifications on
42         cycles between the ItemControl and parent.  Fixes #80388.
43
44 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
45
46         * Control.cs: Lazy init layout engine. Do not directly use 
47         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
48
49 2007-01-05  Chris Toshok  <toshok@ximian.com>
50
51         * DataGrid.cs: don't forceably rebind columns in SetDataSource
52         unless our list manager has changed (i.e. unless we have reason to
53         believe our columns have changed).  Fixes #80422.
54         
55         also, disable the call do BindColumns in
56         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
57         1.1 the event isn't raised in response to a column addition on a
58         table.)
59
60 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
61
62         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
63         that inheritors can not call it if they choose.  Fixes bug #80456.
64
65 2007-01-05  Andreia Gaita  <avidigal@novell.com>
66
67         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
68         doesn't blow up with a null exception on marshalling.
69         
70 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
71
72         * Control.cs: Implement several 2.0 protected properties and methods.
73         Ensure that all necessary events are being called when properties
74         are set.
75
76 2007-01-05  Mike Kestner  <mkestner@novell.com>
77
78         * ListView.cs: implement PgUp/PgDn for Details view.  Also
79         fixes First/LastVisibleIndex to use the item_control.ClientRect 
80         instead of the parent control.  Fixes #80378.
81
82 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
83
84         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
85           determine whether to use yard-pound or not (bug #78399).
86
87 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
88
89         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
90         problems. So it is time to bring back the old popupbutton colors.
91
92 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
93
94         * ColumnHeader.cs:
95         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
96         property by using the internal information of the
97         columns order in ListView.
98
99 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
100
101         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
102         Add 2.0 Tag properties.
103
104         * LinkArea.cs: Add 2.0 ToString method.
105
106 2007-01-03  Chris Toshok  <toshok@ximian.com>
107
108         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
109         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
110         when we're editing, which fixes #80047.
111
112 2007-01-03  Chris Toshok  <toshok@ximian.com>
113
114         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
115         #80404.
116
117 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
118
119         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
120         property and implementation.
121
122         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
123         for MdiWindowListItem property.
124
125         * ToolStripDropDown.cs: Don't consider hidden menu items while
126         laying out the menu.
127
128 2007-01-03  Andreia Gaita  <avidigal@novell.com>
129
130         * SendKeys.cs: window handle is not needed in win32, so just
131         get the active window for X after parsing keys and don't use
132         it when building the message; it is passed by parameter to the 
133         Xplat method and used there to build the message instead. Also,
134         wait for events to be processed on SendWait, as opposed to Send,
135         which doesn't wait :) Playing with threads and Send() completely 
136         hangs on ms.net, only SendWait() works.
137         
138         XplatUIX11.cs
139         X11Display.cs: Check for valid window handle.
140
141 2007-01-03  Jackson Harper  <jackson@ximian.com>
142
143         * TextControl.cs: Need to prevent wrap calculations when replacing
144         text (this was there before i removed it accidently).
145         - Don't update the cursor during the positioning, just set it to
146         selection_start at the end of the operaion.
147
148 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
149
150         * Control.cs:
151         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
152         
153 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
154
155         * MonthCalendar.cs: Added Click and DoubleClick events again,
156         but this time they only hide Control's Click and DoubleClick.
157         
158 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
159
160         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
161         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
162
163 2007-01-02  Jackson Harper  <jackson@ximian.com>
164
165         * TextBoxBase.cs: We move the caret with the split now, so we
166         don't need to explicitly move the caret after splitting.  This
167         fixes the caret bumping down an extra line on Enter.
168
169 2007-01-02  Miguel de Icaza  <miguel@novell.com>
170
171         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
172         2.72). 
173
174         * ScrollableControl.cs: Add Scroll event.
175
176 2007-01-02  Mike Kestner  <mkestner@novell.com>
177
178         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
179         to fix all hdr height padding codepaths.  Fixes #80207.
180
181 2007-01-02  Chris Toshok  <toshok@ximian.com>
182
183         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
184         setting it to the Control defaults anyway, and it being after the
185         Dock set was screwing up layout.
186         (set_Dock): don't short circuit out of setting base.Dock.  Also,
187         no need to call UpdateStatusBar here, as it'll be re-layed out if
188         it needs to be.
189
190 2007-01-02  Mike Kestner  <mkestner@novell.com>
191
192         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
193         to header height for width == -1. Fixes the rest of #80207.
194
195 2007-01-02  Mike Kestner  <mkestner@novell.com>
196
197         * ListView.cs: rework the mouse event forwarding everaldo added
198         to translate the coordinates to the parent control not
199         raise the parent events until after we've done our work. Hover
200         needs more work, in the case where HoverSelection is on, because
201         the item control receives more than one MouseHover per Enter
202         event, so we need to ensure only the "first" hover gets forwarded.
203         Opening a minor bug for that.
204
205 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
206
207         * CheckedListBox.cs: Fixed SelectionMode to match MS.
208         * ListControl.cs: Implemented AllowSelection property. Removed extra
209         tabs.
210         * ListBox.cs: Implemented AllowSelection property.
211
212 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
213
214         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
215         SelectedItem, it prevent for errors when you must disable item
216         before perform click. Fixes #80409.
217
218 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
219
220         * MenuAPI.cs: Prevent second level and beyond submenus to close
221         until first level when move out side of popup.
222         
223 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
224
225         * MenuAPI.cs:
226         - Down submenu positin in three pixels.
227         - Closes sub menu when mouse leaves from menu. Fixes #80402.
228
229 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
230
231         * ThemeWin32Classic.cs:
232         - Fix popup menu size adding one pixel on the top.
233         - Down menu item border from two to one to mimic Win32.
234         - Some source identation fixes. 
235
236 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
237
238         * ThemeWin32Classic.cs: Use float numbers to calculate size and
239         position of menu arrows, it fix wrong arrow size.
240
241 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
242
243         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
244         instead of line, it simplify draw operation and fix it using 3D
245         borders to mimic Win32.
246
247 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
248
249         * StatusStrip.cs: Add implementation of the sizing grip.
250
251         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
252         StatusStrip rendering.
253
254 2006-12-31  Chris Toshok  <toshok@ximian.com>
255
256         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
257         override the layout style (anchor/dock) of the control.  assign to
258         Dock instead.  Fixes bug #80416.
259
260         * ToolStrip.cs: same.
261
262 2006-12-31  Andreia Gaita  <avidigal@novell.com>
263
264         * ContainerControl.cs: Use ContainerSelected flag to check if 
265         a Container is directly selected, or if Select is called on a 
266         non-container. If a container is directly selected, focus events 
267         should not be raised.
268         Apply #80411 patch to throw exception on set_ActiveControl if 
269         control is the same as the current one.
270         
271         * Control.cs: Use ContainerSelected flag (see above).
272         Add invalidation check to raise event but not invalidate if 
273         dimensions are 0.       
274         Apply #80411 patch.
275         
276
277 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
278
279         * MenuAPI.cs: After click, dont close popup menu when menu is
280         ContextMenu. Fixes #80399.
281
282 2006-12-30  Chris Toshok  <toshok@ximian.com>
283
284         * ContainerControl.cs: make sure we throw the exception if the
285         container control doesn't contain the control we're setting
286         ActiveControl to.
287
288 2006-12-30  Chris Toshok  <toshok@ximian.com>
289
290         * Control.cs (SetTopLevel): fix the exception raised by
291         SetTopLevel for child controls.
292         (set_Anchor): call UpdateDistances when setting the anchor type.
293         This fixes bug #80336.
294
295 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
296
297         * Theme.cs: For now, revert back to 8pt font.
298
299 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
300
301         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
302         Fixes #80395.
303
304 2006-12-29  Chris Toshok  <toshok@ximian.com>
305
306         * Control.cs: reorder the code in OnResize to give the same event
307         ordering as MS.
308
309 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
310
311         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
312         TileHorizontally and TileVertically.
313         
314 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
315
316         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
317         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
318         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
319         Corrected copyright and email adress.
320
321 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
322
323         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
324         of Exception in FullPath property if no TreeView is associated with
325         the TreeNode.
326
327 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
328
329         * Theme.cs: Marked default_font as private, and initialize it in ctor
330         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
331         on 2.0 profile.
332         * ThemeGtk.cs: Removed default_font intialization.
333         * ThemeWin32Classic.cs: Removed default_font initialization.
334
335 2006-12-28  Chris Toshok  <toshok@ximian.com>
336
337         * Control.cs: fix a couple of place where we were creating handles
338         more aggressively than we should be.  Fixes ControlRefresh unit
339         tests.
340
341 2006-12-28  Chris Toshok  <toshok@ximian.com>
342
343         * Control.cs: contrary to what the comment said, Control.Dock does
344         not supercede Control.Anchor - the last one you assign to decides
345         the layout behavior.  so we need to keep track of which was the
346         last set.  Also, fix some of the affected property arguments in
347         PerformLayout calls, and remove an redundant parent.PerformLayout
348         call in OnResized.
349
350         Add a VisibleInternal property, which returns is_visible.  We
351         can/should get rid of all the usage of this field elsewhere.
352
353 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
354         
355         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
356         control style, not DoubleBuffer. Added UseDoubleBuffering property
357         that indicates whether doublebuffering is enabled and supported.
358         (comment from and code based on Gert Driesen's patch in #80324).
359         Fixes #80324.
360
361 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
362         
363         * Control.cs: Fixed a NRE.
364
365 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
366
367         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
368         for 2.0.
369
370 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
371
372         * Control.cs: Rewrote double buffering, now a seperate
373         class handles all the buffering, no Graphics is disposed of
374         until the painting is finished (earlier implementation 
375         would crash if the control was resized in the OnPaint, 
376         since it would cause the double buffer to be recreated
377         and the old one disposed), a separate Graphics is 
378         created for every paint (MS behaviour and anyways the state
379         of the Graphics would have to be saved and restored otherwise)
380         
381         * XplatUIDriver.cs: 
382         * XplatUIX11.cs:
383         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
384         so that we can get the graphics for the back buffer without
385         having to create a new one and remove the offscreen_dc parameter
386         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
387         
388 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
389
390         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
391         Also make virtual all the key-related methods.
392
393         * ListViewItem.cs: Make virtual the key related methods for
394         ListViewSubItemCollection.
395
396 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
397
398         * ListView.cs:
399         * ListViewItem.cs:
400         * ThemeWin32Classic.cs:
401         * Theme.cs: Initial support for Tile view in ListView,
402         as well as the implementation of the required bits for it (Item
403         and Subitem).
404
405 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
406
407         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
408         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
409         Provide useful exception messages.
410
411 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
412
413         * TrackBar.cs: Remove a warning.
414         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
415         when used by DateTimePicker, fixes #80287. This also requires that 
416         MonthCalendar implements it's own drawing for the yearly updown control,
417         otherwise the Capture tracking would be too complicated. Removed the Click 
418         and DoubleClick events (according to comments they were hiding the base class
419         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
420         raise these events, not that they cannot be raised. It is possible to raise 
421         them by calling OnClick and OnDoubleClick). Added two internal fields in 
422         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
423         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
424         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
425         event, no longer needed.
426         
427 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
428
429         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
430         true if new value differs from current value.
431
432 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
433
434         * Control.cs: ControlCollection.Count must be public. Fixed build of
435         unit tests.
436
437 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
438
439         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
440
441 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
442
443         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
444
445 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
446
447         * Control.cs: Invalidates control including when Width and Height is 
448         equal zero or is not visible, only Paint event must be care about 
449         this. Fixes #79913.
450
451 2006-12-26  Chris Toshok  <toshok@ximian.com>
452
453         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
454         more corcompare work.
455
456         * DataGridView.cs: fix compiler warning.
457
458         * ColumnHeader.cs: some corcompare work, and also take the
459         opportunity to make the internal fields private.
460
461         * ListView.cs: fix the fallout from the above field change.
462
463 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
464
465         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
466         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
467         ToolStripTextBox.cs: Fixes to events and corcompare.
468
469 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
470
471         * ListView.cs: Call owner.OnMousexx event to propagate events from
472         item to ListView. Fixes #80367.
473
474 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
475
476         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
477         if value is less than one. ItemHeight should not be set to a value
478         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
479         Removed extra tabs.
480
481 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
482
483         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
484         * ToolStripStatusLabel.cs: Add Spring for Moma.
485
486 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
487
488         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
489         Fixed code formatting. Removed debug code.
490         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
491
492 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
493
494         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
495         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
496         ArgumentOutOfRangeException if ColumnCount is negative. In 
497         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
498         less than 4 or higher than 32768.
499         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
500         Fixed FormatProvider to return CurrentCulture unless explicitly set.
501         Fixed IsFormatProviderDefault to return true if FormatProvider has
502         not been explicitly set.
503
504 2006-12-25  Chris Toshok  <toshok@ximian.com>
505
506         * Application.cs: add a couple of 2.0 events.
507
508 2006-12-25  Chris Toshok  <toshok@ximian.com>
509
510         * Control.cs: fix compiler warning.
511
512         * AxHost.cs: corcompare fixes.
513
514         * ApplicationContext.cs: corcompare fixes.
515
516 2006-12-25  Chris Toshok  <toshok@ximian.com>
517
518         * Control.cs: only update dist_right/dist_bottom if the
519         width/height is > 0.  this fixes anchored controls being resized
520         smaller until they disappear and then resized larger again.
521
522 2006-12-25  Chris Toshok  <toshok@ximian.com>
523
524         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
525         since they're nothing more than X/Left and Y/Top, respectively.
526
527         Also, move back to a per-control Bitmap/Graphics for
528         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
529         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
530         Height.
531
532 2006-12-25  Miguel de Icaza  <miguel@novell.com>
533
534         * MessageBox.cs: Implemented overload that takes a new "bool
535         displayHelpButton" by adding a new internal field "show_help".
536         When clicked this will raise the HelpRequested on the owner or the
537         main form. 
538
539         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
540         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
541
542         * ListView.cs: Add support ColumnWidthChanged and
543         ColumnWidthChanging. 
544
545         Add support for ColumnReordered event.
546         (ReorderColumn): Add NET_2_0 specific support for cancelling the
547         reorder.
548
549         Very nice codebase!
550
551         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
552
553         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
554
555 2006-12-24  Chris Toshok  <toshok@ximian.com>
556
557         * GridTablesFactory.cs: 2.0 corcompare work.
558
559         * ToolStripContainer.cs: add "override" to
560         ContextMenuStripChanged, and remove the local event object.
561
562         * ToolStripDropDown.cs: same with a couple properties.
563
564         * ToolStripPanel.cs: same with AutoSizeChanged event.
565
566         * TextBoxBase.cs: add "override" to AutoSizeChanged.
567
568         * Form.cs: add the remaining 2.0 events, and do some corcompare
569         attribute work.
570
571         * DateTimePicker.cs: add "new" to padding.
572
573         * ButtonBase.cs: use Control's use_compatible_text_rendering.
574
575         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
576
577         * DataGridView.cs: PaddingChanged is overridden.
578
579 2006-12-24  Chris Toshok  <toshok@ximian.com>
580
581         * Control.cs: corecompare work here too.
582
583         * DataGridViewElement.cs, DataGridView.cs,
584         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
585         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
586         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
587         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
588         work.
589
590 2006-12-24  Miguel de Icaza  <miguel@novell.com>
591
592         * Control.cs: Switched the error message on the console for a
593         todo.  A review of the code will have to cope with this anyways
594         (since its a large feature, it is in our radar) and it was
595         producing too much output when running PDN.
596
597         * ToolStripComboBox.cs: Set the text when the SelectedIndex
598         changes.  Applications depend on this (PDN 2.72)
599
600 2006-12-23  Chris Toshok  <toshok@ximian.com>
601
602         * TableLayoutSettings.cs: finish up the corcompare work for this
603         class.
604
605 2006-12-23  Chris Toshok  <toshok@ximian.com>
606
607         * Control.cs: make SetImplicitBounds internal, do some futzing
608         with LayoutEngine so that it's available in 1.1, and remove the
609         entire duplicated code mess from PerformLayout.  Use
610         System.Windows.Forms.Layout.DefaultLayout instead.
611
612         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
613
614 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
615
616         * Form.cs: Add MainMenuStrip property.
617
618 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
619
620         * Control.cs: Add ContextMenuStrip property and implementation.
621         Fix ContextMenu implementation to show menu centered on control when
622         activated using the keyboard instead of showing at screen (0,0).
623
624         * ToolStripDropDown.cs: Fix needed overload of Show ().
625
626 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
627
628         * Menu.cs: Name property added for 2.0 profile.
629         
630 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
631
632         * Menu.cs: Update information about FindMenuItem, method to be
633         implemented soon.
634
635 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
636
637         * MenuAPI.cs: When deselect items deselect also selected subitems.
638         
639 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
640
641         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
642         FindSubItemByCoord to found itens that is not active, also an
643         cheking added to FindSubItemByCoord to search for items only 
644         in visible popup windows. Fixes #80274.
645
646 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
647
648         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
649         internal property, it be care about change ExStyle. 
650
651 2006-12-22  Andreia Gaita  <avidigal@novell.com>
652
653         * ContainerControl.cs: set activeControl for parent forms up the 
654         tree when the new activecontrol is a container.
655         When validating the active control, if it is a container, also
656         raise up the validation for it's active control. Fixes #80280
657         
658         * Control.cs: Add internal property flag and check to prevent
659         Focus events from getting raised when Select() is called for
660         a ContainerControl. There are still too many focus events being
661         raised at the moment though.
662         Cleaned up the code a bit.
663
664 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
665
666         * Control.cs: Added all missing 2.0 events.and
667         fixed a couple of corcompare issues.
668         * TrackBar.cs: Implemented missing 2.0 bits.
669         * MonthCalendar.cs, 
670         * DateTimePicker.cs, 
671         * MdiClient.cs: Fixed some corcompare issues.
672
673 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
674
675         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
676         SplitterPanel.cs: corecompare work.
677
678 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
679
680         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
681         Clean up warnings for BackgroundImageChanged and PaddingChanged
682         events now that they are implemented in Control.cs.
683
684 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
685
686         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
687         
688         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
689         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
690         of TableLayoutPanel and supporting cast.
691
692 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
693
694         * XplatUIWin32.cs: 
695         - GrabWindow now confines the mouse pointer to the confine window.
696         - Added Win32ClipCursor and Win32GetClipCursor.
697
698         * Control.cs: 
699         - Added CaptureWithConfine to be able to capture and confine 
700         mouse pointer.
701         
702         * InternalWindowManager.cs: 
703         - Call CaptureWithConfine instead of Capture if we're an
704         MdiChild (fixes #79982).
705
706 2006-12-21  Chris Toshok  <toshok@ximian.com>
707
708         * DataGrid.cs: guard against the initial state of selection, where
709         selection_start == -1.  make sure we only select from index >= 0.
710         Fixes bug #80291.
711
712 2006-12-21  Chris Toshok  <toshok@ximian.com>
713
714         * Control.cs: we don't need to be so draconian with
715         UpdateDistances, and we thusly don't need to call it before
716         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
717
718 2006-12-21  Daniel Nauck  <dna@mono-project.de>
719
720         * ComboBox.cs,
721         TextBox.cs: Implemented AutoComplete properties.
722
723 2006-12-20  Chris Toshok  <toshok@ximian.com>
724
725         * DataGridView*.cs: some corecompare work.
726
727 2006-12-20  Jackson Harper  <jackson@ximian.com>
728
729         * XplatUIX11.cs: We need to hide the caret when deleting it,
730         otherwise you get carets left lying around everywhere.
731         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
732         prevents getting some weird half drawn caret tracers when
733         scrolling.
734         * TextControl.cs: Attempt to reduce the number of times we need to
735         recreate the caret.
736
737 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
738
739         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
740
741 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
742
743         * DateTimePicker.cs:
744         - Implemented missing 2.0 bits.
745         - Changed some default values to match MS.
746         
747 2006-12-20  Jackson Harper  <jackson@ximian.com>
748
749         * TextBoxBase.cs: When changing the font across the document we
750         can't recalculate after changing each line, since that will cahnge
751         the line count.
752         - PreferredHeight is a little different than i thought.
753         - When backspacing, move the caret before we do the actual char
754         delete, because when that delete crosses a wrap boundary the
755         positional information will change.
756
757 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
758
759         * Control.cs: Added some missing 2.0 bits: 
760         BackgroundImageLayout, BackgroundImageLayoutChanged, 
761         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
762         add IBindableComponent and IDropTarget implementation.
763         
764         * MonthCalendar.cs: 
765         - Added all missing 2.0 features:
766         BackgroundImageLayout, RightToLeftLayout, 
767         OnHandleDestroyed, RightToLeftLayoutChanged, 
768         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
769         PaddingChanged.
770         - Rewrote all the BoldDate code, it was completely broken.
771         - Fixed all the tests (the tests can now be re-enabled, the
772         problems were not with the tests, but with the control, it was
773         mostly broken).
774         
775         * DateTimePicker.cs: Changed the location where the 
776         MonthCalendar is shown.
777         
778 2006-12-19  Chris Toshok  <toshok@ximian.com>
779
780         * DataGridView.cs: add IDropTarget implementation.
781
782         * ToolStripPanel.cs: add IDropTarget implementation.
783
784 2006-12-19  Jackson Harper  <jackson@ximian.com>
785
786         * TextControl.cs: soft now means something different than what it
787         used to mean, we want to move the caret regardless of whether or
788         not this break was soft (would we really have wanted the caret
789         to not move with the break in the old context?)
790         * TreeView.cs: Make sure we factor in the vert scrollbar when
791         calculating the horizontal scrollbar's maximum.
792
793 2006-12-19  Andreia Gaita  <avidigal@novell.org>
794
795         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
796         check for keywords in alternate casing, close bug #80049.
797
798 2006-12-19  Chris Toshok  <toshok@ximian.com>
799
800         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
801         methods (which all do nothing).
802
803         * IDropTarget.cs: add the 4 missing methods.
804
805 2006-12-19  Chris Toshok  <toshok@ximian.com>
806
807         * TableLayoutRowStyleCollection.cs: corcompare work.
808         
809         * TableLayoutSettings.cs: same.
810
811         * TableLayoutStyle.cs: same.
812
813         * TableLayoutColumnStyleCollection.cs: same.
814
815 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
816
817         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
818         TableLayoutPanel I've had in my local tree for way too long.
819
820 2006-12-19  Miguel de Icaza  <miguel@novell.com>
821
822         * TableLayoutSettings.cs: Finish the public API (still needs all
823         the logic to update on changes). 
824
825         * TableLayoutPanelCellPosition.cs: new file.
826         
827         * TableLayoutRowStyleCollection.cs,
828         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
829         TableLayoutSettings.cs: Track the final 2.0 table api.
830
831 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
832
833         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
834         and Image List 2.0 members for ColummnHeader.
835         * ListView.cs: Add key-related 2.0 methods for
836         ColumnHeaderCollection.
837
838 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
839
840         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
841         ArgumentNullException if items argument is null. Ignore null item in
842         arrays. Removed extra tabs.
843
844 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
845
846         * MonthCalendar.cs: Fixed InvalidCastException.
847
848 2006-12-19  Jackson Harper  <jackson@ximian.com>
849
850         * TextControl.cs: Don't increment the position here.
851         - When calculating char positions only add in the line break size
852         for hard line breaks.
853
854 2006-12-19  Andreia Gaita  <avidigal@novell.org>
855
856         * SendKeys.cs: Changed some things to match ms.net behaviour
857         when parsing shifted capital letters.
858         
859         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
860         Add window handle as parameter to SendInput. X11 needs the 
861         window handle, and the handle being passed      to it in the keys 
862         queue is the active control handle (which windows needs), not 
863         the window handle.
864         
865         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
866         to support SendKeys on X.       
867         
868         * X11Keyboard: Implement helper method to lookup a linux keycode
869         given the virtual keycode. Added table of keycode-2-virtualkey
870         values to support this.
871
872 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
873
874         * ListView.cs: Add support for SelectedIndexCollection
875         and SelectedItemCollection 2.0 methods. Implement support
876         for ImageKey too.
877         * ListViewItem.cs: Add support for ListViewSubItemCollection
878         2.0 methods. Also, fix an incorrect behavior of AddRange method
879         (it shouldn't call Clear).
880         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
881
882 2006-12-19  Jackson Harper  <jackson@ximian.com>
883
884         * RichTextBox.cs: 
885         * TextBoxBase.cs: New args for FormatText
886         * TextControl.cs: Rewrote the main drawing method, this version
887         feels a little easier to understand and debug to me.  Hopefully it
888         does to others also
889         - Fix FormatText to OR in the new formating values.  Added
890         FormatSpecified param, basically this works in the same way as
891         BoundsSpecified in Control.
892         - Set the caret properties when the caret is positioned.
893         - When wrapping text make sure that we calculate the width of the
894         last character
895         - when calculating alignments we might have wrapped down to the
896         next line, so don't search for an individual tag, search for the
897         end of the line
898         - We need to invalidate the selection area when we replace the
899         selection.
900         
901 2006-12-19  Daniel Nauck  <dna@mono-project.de>
902
903         * Application.cs: add Restart () 2.0 support
904
905 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
906
907         * MenuItem.cs: Invalidate menu item rectangle after change Enable
908         property. Fixes #80268.
909         
910 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
911
912         * MenuAPI.cs: Dont trigger select event when closes top menu
913         item. Fixes #80270.
914
915 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
916
917         * MenuAPI.cs: When you click on menuitem only trigger onselect
918         event for top menu itens. Fixes #80271.
919         
920 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
921
922         * MdiWindowManager.cs: Make IconicBounds depend on
923         the bottom of MdiClient, not the top (fixes #80267)
924         
925 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
926
927         * MdiClient.cs: Added missing 2.0 attribute
928
929 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
930
931         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
932         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
933
934 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
935
936         * MenuAPI.cs: Fix click when menuitem is not popup,
937         this regression was caused by last commit (#80272).
938
939 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
940
941         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
942         fire click event or close menu. Fixes #80272.
943
944 2006-12-17  Daniel Nauck  <dna@mono-project.de>
945
946         * ListViewHitTestInfo.cs: add
947
948 2006-12-17  Daniel Nauck  <dna@mono-project.de>
949
950         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
951         * FlatButtonAppearance.cs: add
952         * DockingAttribute.cs: add
953
954 2006-12-17  Chris Toshok  <toshok@ximian.com>
955
956         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
957         and rebind our columns when it does - this way, if you make
958         changes to the DataTable (or set the Table attribute on a DataView
959         after setting it as the DataGrid's DataSource, the changes are
960         made visible.)  Fixes bug #80107.
961
962 2006-12-17  Daniel Nauck  <dna@mono-project.de>
963
964         * ListViewGroup.cs: add internal Location property for layouting.
965         * Theme.cs: add abstract ListViewGroupHeight function.
966         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
967
968 2006-12-16  Andreia Gaita  <avidigal@novell.com>
969
970         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
971         Added reset of selected index to 0 when adding first tab page.
972         Fixes #80264
973         
974         * NumericUpDown.cs: Fix NET_2_0 check
975
976 2006-12-16  Daniel Nauck  <dna@mono-project.de>
977
978         * ListViewGroup.cs: fixed DefaultValueAttribute value
979
980 2006-12-16  Daniel Nauck  <dna@mono-project.de>
981
982         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
983
984 2006-12-15  Miguel de Icaza  <miguel@novell.com>
985
986         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
987         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
988         ScrollableControl.cs: Add a handful of methods that are
989         overwritten in 2.0 
990
991 2006-12-15  Chris Toshok  <toshok@ximian.com>
992
993         * XplatUIWin32.cs: initial implementation of the Reversible
994         drawing functions.  there are some problems.  DrawReversibleFrame
995         doesn't seem to work at all for Dashed FrameStyle, and in the
996         Thick case there are drawing errors at the corners (we probably
997         need to bind Rectangle instead of doing moveto/lineto's.)
998
999 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1000         
1001         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1002         to send blocks of key messages. Send accumulates keys to send with Flush, 
1003         while SendWait sends all keys immediately.
1004                 
1005         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1006         XplatUIX11.cs,  XplatUIX11-new.cs:
1007         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1008         to Win32 SendInput.
1009         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1010         
1011         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1012         testing for ms.net on this class is very tricky, as the tests run too fast 
1013         to allow the hook to release, essentially freezing the keyboard and the 
1014         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1015         category :p
1016
1017 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1018
1019         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1020                         added missing attributes.
1021  
1022 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1023
1024         * ListViewGroup.cs: Added missing attributes.
1025         * ListViewGroupCollection.cs: Added missing attributes.
1026
1027 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1028
1029         * ListViewItem.cs: fixed ListViewSubItem text property.
1030
1031 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1032         
1033         * Control.cs: Added missing 2.0 attributes
1034         
1035 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1036         
1037         * MdiClient.cs: Added missing 2.0 attribute.
1038         * MonthCalendar.cs: Added some missing 2.0 attributes 
1039         and properties.
1040         
1041 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1042
1043         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1044
1045 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1046
1047         * MainMenu.cs: Add the new 2.0 constructor to help out people
1048         using the MainMenu in VS2005.
1049
1050 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1051         
1052         * MdiChildContext.cs: Removed it, no longer used.
1053         * MdiClient.cs: Added missing 2.0 attributes.
1054         
1055 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1056         
1057         * InternalWindowManager.cs: Fix a NullRef with previous 
1058         changes for toolwindows.
1059         
1060 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1061
1062         * Control.cs: 
1063         - Added AfterTopMostControl to allow for certain controls 
1064         to always stay on top when normal controls are brought to 
1065         front.
1066         
1067         * XplatUIWin32.cs: 
1068         - (DrawInversibleRectangle): Get window rectangle from Win32 
1069         in stead of from control, since Win32 doesn't calculate
1070         screen coords correctly from control's Location if it 
1071         have docked siblings.
1072         
1073         * MdiWindowManager.cs:
1074         - Correct the control menu popup location when clicked on
1075         the maximized form icon. (fixes #80223.1)
1076         - Don't show moving rectangle if mouse hasn't moved from
1077         the original clicked point.
1078         - Removed FormGotFocus handler (not used).
1079         - Calculate the control buttons location from the main
1080         window's size and not client size (fixes #79770).
1081         - Form is now closed when the form icon is double-clicked
1082         (fixes #79775). 
1083         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1084         
1085         * InternalWindowManager.cs:
1086         - Moved some MDI-only methods to MdiWindowManager.
1087         - Removed unused properties and methods.
1088         - Unified method naming for methods handling wm messages.
1089         - Moved all message handling to seperate methods for
1090         each message.
1091         
1092         * ThemeWin32Classic.cs:
1093         - DrawManagedWindowDecorations now draws the title bar 
1094         with a gradient brush.
1095         - Add a CPDrawButtonInternal that allows us to specify
1096         light, normal and dark colors for the buttons (control 
1097         buttons for MDI children were drawn with the same light
1098         color as the background, therefore loosing the 3D effect).
1099         
1100         * SizeGrip.cs:
1101         - Add a CapturedControl property that is used to 
1102         determine the control to resize (defaults to parent). 
1103         Needed for MdiClient, since its SizeGrip's parent is
1104         MdiClient, but the control to resize is the main form.
1105         
1106         * MdiClient.cs:
1107         - Set SizeGrip's CapturedControl to the main form in order
1108         to resize the main form and not the MdiClient.
1109         - Override AfterTopMostControl to leave the scrollbars 
1110         always on top.
1111
1112 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1113
1114         * ListView.cs: fixed ListViewItemCollection AddRange and
1115                         implemented ListViewItemCollection AddRange 2.0 support.
1116
1117 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1118
1119         * ListViewGroup.cs: Add.
1120         * ListViewGroupCollection.cs: Add
1121         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1122         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1123                                 stub for ImageKey 2.0 support.
1124
1125 2006-12-14  Mike Kestner  <mkestner@novell.com>
1126
1127         * ListView.cs: add text padding to the autocalculation for columns
1128         of width -2.  Fixes #80207.
1129  
1130 2006-12-14  Mike Kestner  <mkestner@novell.com>
1131
1132         * ListView.cs: add some index guarding for partial row navigation 
1133         logic.  Fixes #80250.
1134
1135 2006-12-14  Mike Kestner  <mkestner@novell.com>
1136
1137         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1138         are added or inserted to the collection.  Fixes #81099.
1139
1140 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1141
1142         * MenuAPI.cs: Closes menu when right click out side of popup
1143         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1144
1145 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1146
1147         * ListViewItem.cs: Fix dumb error.
1148
1149         * ListView.cs: Add Find and ContainsKey methods in 
1150         ListViewItemCollection, and also return true for IsReadOnly
1151         and IsFixedSize (changes for 2.0). 
1152
1153 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1154
1155         * Control.cs: Allow Region to be set to null.
1156
1157 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1158
1159         * MdiWindowManager.cs: Remove unused (commented out) code.
1160         * Form.cs: When the MdiChild is maximized, the form needs 
1161         WM_NCMOUSELEAVE, so request it.
1162         * InternalWindowManager.cs: 
1163         - Added tooltips to control buttons.
1164         - Removed duplicated control button handling code.
1165         - Removed unused (commented out) code.
1166         
1167 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1168
1169         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1170         was used because we must set cursor without trigger ChangeCursor event
1171         and without change Cursor control property. Fixes #79963.
1172
1173 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1174         
1175         * Control.cs: Check if Region setter value is null, and ignore
1176
1177 2006-12-12  Jackson Harper  <jackson@ximian.com>
1178
1179         * TextControl.cs: We were almost always drawing one more line then
1180         needed, since the GetLineByPixel will return the last line found
1181         at that pixel. In most cases though, we were invalidating up to
1182         the junction between two lines.
1183         - Improve debug code.
1184
1185 2006-12-12  Chris Toshok  <toshok@ximian.com>
1186
1187         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1188         and FillReversibleRectangle.
1189
1190         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1191         and FillReversibleRectangle.
1192
1193         * XplatUIWin32.cs: add stubs which do nothing for
1194         DrawReversibleFrame, DrawReversibleLine, and
1195         FillReversibleRectangle.
1196
1197         * XplatUIOSX.cs: add stubs which raise NIE for
1198         DrawReversibleFrame, DrawReversibleLine, and
1199         FillReversibleRectangle.
1200
1201         * XplatUIX11.cs: add working implementation for
1202         DrawReversibleFrame, DrawReversibleLine, and
1203         FillReversibleRectangle.
1204         
1205         * ControlPaint.cs: implement DrawReversibleFrame,
1206         DrawReversibleLine, and FillReversibleRectangle, by calling into
1207         the appropriate XplatUI method.
1208
1209 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1210
1211         * Form.cs: Make MdiClient have the focus even if it's
1212         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1213         messages. Fixes #79907.
1214         
1215 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1216
1217         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1218         queried after the window is created.
1219         
1220         * XplatUIX11.cs: Added SendParentNotify to implement 
1221         WM_PARENTNOTIFY logic. Fixes #79965.
1222         
1223         * Control.cs: Added MakeParam.
1224         
1225 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1226
1227         * MdiClient.cs: Resume Layout before setting window
1228         states (fixes #80201).
1229
1230 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1231
1232         * MenuAPI.cs: Deselect a menu item after performing
1233         the click (fixes #80197).
1234
1235 2006-12-11  Jackson Harper  <jackson@ximian.com>
1236
1237         * TextBoxBase.cs: We need to cap this value, since Maximum -
1238         ViewPortHeight can be less than zero.
1239         - Only do selection with the left mouse button.
1240         * TextBox.cs: Don't tell the world that we have a context menu.
1241         * Control.cs: New method so that we can control whether or not the
1242         context menu is visible outside MWF.
1243
1244 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1245
1246         * ToolBarButton.cs: Fix text positon. 
1247
1248 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1249
1250         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1251
1252         * Control.cs (DoubleBuffered): Add implementation.
1253
1254         * Application.cs (OpenForms): Add.
1255
1256 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1257
1258         * Form.cs: Use opacity instead of Opactiy to determine if we need
1259         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1260
1261 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1262
1263         * Control.cs: Fix NRE if Control.Site was set to null.
1264
1265 2006-12-11  Chris Toshok  <toshok@ximian.com>
1266
1267         * Control.cs: ControlCollection.Remove should return if the arg is
1268         null, and ControlCollection.SetChildIndex should raise a ANE.
1269
1270 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
1271
1272         * Control.cs: Verify value set for Dock property. Code formatting
1273         updates.
1274
1275 2006-12-11  Jackson Harper  <jackson@ximian.com>
1276
1277         * TextControl.cs: Draw the caret and the selection when a flag is
1278         set on the owner.
1279         * TextBoxBase.cs: We want to draw the caret and the selection for
1280         TextBox but not for TextBoxBase.
1281         - If the window is resized and scrolling is no longer needed (the
1282         whole doc is visible) set the scroll position to zero.
1283         - The default SelectWord (the one TextBox uses) should move the
1284         caret to the end of the word.
1285         - SelectAll moves the caret to the end of the selection.
1286         * TextBox.cs: We don't selectall on focus, we just do it when the
1287         control is created.
1288         
1289 2006-12-11  Mike Kestner  <mkestner@novell.com>
1290
1291         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1292
1293 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1294
1295         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1296         2.0 support.
1297         * ListViewItem.cs: Add Name 2.0 property.
1298
1299 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1300
1301         * TabControl.cs: Set visibility on selected or default tab 
1302         when tabcontrol handle is created, so that it's contents
1303         actually show up (duh). Fixes #80193
1304         Don't redraw the control if there is no handle created, as
1305         the selected index might be completely invalid. Added some tests
1306         to check for this.
1307
1308 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1309
1310         * ToolBar.cs: Uses maximun width and height of all buttons as 
1311         button rectangle when ButtonSize specified, it looks strange but
1312         is what happens in Win32. Fixes #80189.
1313
1314 2006-12-11  Jackson Harper  <jackson@ximian.com>
1315
1316         * TextControl.cs: Need to track undo levels ourself, since
1317         compound actions will mess them up.
1318
1319 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1320
1321         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1322         SelectedIndex value is changed (even if it's not valid).
1323         Reset SelectedIndex to 0 when the handle is created and if
1324         the current index is invalid.
1325         Fixes SelectdeIndex unit tests and #80128
1326
1327 2006-12-08  Chris Toshok  <toshok@ximian.com>
1328
1329         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1330         calls EndEdit, it needs to be called before we set current_cell to
1331         its new value.  Otherwise, we end up committing the value in the
1332         textbox to the new cell as well.  Fixes bug #80160.
1333
1334 2006-12-08  Chris Toshok  <toshok@ximian.com>
1335
1336         * Form.cs (set_CancelButton): if the button's DialogResult is
1337         None, set it to Cancel.  Fixes bug 80180.
1338
1339 2006-12-08  Jackson Harper  <jackson@ximian.com>
1340
1341         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1342         to watch ourselves when setting the canvas size and setting the
1343         scrollbar values.
1344
1345 2006-12-08  Chris Toshok  <toshok@ximian.com>
1346
1347         * DataGrid.cs: comment out the two MakeTransparent calls for the
1348         time being so people using trunk (and not 1.2.2) on windows can
1349         actually use the datagrid.  This deals with bug #80151.
1350
1351 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1352
1353         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1354         Graphics.DrawImage (image, int, int, int, int) overload instead
1355         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1356         the dpi difference and was blurring images it drew.
1357         [Fixes bug #79960]
1358
1359 2006-12-08  Chris Toshok  <toshok@ximian.com>
1360
1361         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1362         rowcnt is 0 (such as with an empty datasource), and make sure we
1363         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1364         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1365
1366 2006-12-08  Chris Toshok  <toshok@ximian.com>
1367
1368         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1369         grid.
1370
1371 2006-12-08  Chris Toshok  <toshok@ximian.com>
1372
1373         [ Fixes bug #80167 ]
1374         
1375         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1376         style is FlatStyle.System.
1377
1378         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1379         ButtonBase.flat_style private, and switch uses of it to the public
1380         property.
1381         
1382 2006-12-08  Chris Toshok  <toshok@ximian.com>
1383
1384         [ Fixes bug #80121 ]
1385         
1386         * ThemeWin32Classic.cs: center the caption text in the datagrid
1387         when we draw it.
1388
1389         * DataGrid.cs: lessen the amount we add to the caption height from
1390         6 to 2.  6 was making it huge.
1391
1392 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1393
1394         * UpDownBase: Handle MouseWheel call directly instead of capturing
1395         the inner textbox's OnMouseWheel. Fixes #80166
1396
1397 2006-12-08  Jackson Harper  <jackson@ximian.com>
1398
1399         * TextControl.cs: We need to invalidate the textbox when we empty
1400         it (how had this not been discovered before?)
1401
1402 2006-12-08  Jackson Harper  <jackson@ximian.com>
1403
1404         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1405         to behave like MS, we now ignore the eventargs.Click and just
1406         track state ourself, which we were already doing anyways.
1407         - Constrain the double click handler to the double click size.
1408         
1409 2006-12-08  Chris Toshok  <toshok@ximian.com>
1410
1411         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1412         direction if that scrollbar isn't shown.  fixes bug #80158.
1413
1414 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1415
1416         * NumericUpDown.cs: Update value on getter. Fixes #79950
1417
1418 2006-12-08  Chris Toshok  <toshok@ximian.com>
1419
1420         * MenuItem.cs: add back in the event cloning code.  I didn't know
1421         how to do it in the face of the EventHandlerList work i'd done
1422         last week.  Fixes bug #80183.
1423
1424 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1425
1426         * Control.cs: Add an invalidate to the BackgroundImage setter.
1427         [Fixes 80184]
1428
1429 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1430
1431         * ToolStrip*: Add some small properties reported by MoMA, fix event
1432         firing and default properties based off of unit tests, and add some
1433         attributes based off of the class status page.
1434
1435 2006-12-07  Jackson Harper  <jackson@ximian.com>
1436
1437         * TextBoxBase.cs: Take HideSelection into account when determining
1438         whether or not to show the selection.
1439         * RichTextBox.cs: After inserting the RTF into the document move
1440         the cursor to the beginning of the document.
1441
1442 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1443
1444         * Control.cs: Remove static ArrayList "controls" which maintained
1445         a reference to every control created.
1446         * Application.cs: Create a static FormCollection to maintain a reference
1447         to every form created.  Use it in places that formerly enumerated through
1448         the controls one looking for forms.
1449         * Form.cs: Add and remove self from above FormCollection.
1450
1451 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1452
1453         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1454           not libgdk (though it makes me wonder why I didn't have any
1455           problems)
1456
1457 2006-12-07  Chris Toshok  <toshok@ximian.com>
1458
1459         [ you had to know this was coming after that last commit...]
1460         
1461         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1462         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1463         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1464         XCopyArea).
1465
1466 2006-12-07  Chris Toshok  <toshok@ximian.com>
1467
1468         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1469         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1470         all the behavior we need for double buffering.
1471
1472         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1473         client side Bitmap, just like the old Control-based double buffer
1474         code did.  The methods are virtual, so each XplatUI driver
1475         subclass can replace the implementation to use a faster, platform
1476         specific approach.
1477
1478         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1479         double buffer code, and clean things up a bit in the process.
1480
1481 2006-12-06  Chris Toshok  <toshok@ximian.com>
1482
1483         * Control.cs: reindent WndProc.
1484
1485 2006-12-06  Chris Toshok  <toshok@ximian.com>
1486
1487         [ I wanna be like BenM when I grow up ]
1488         
1489         * Hwnd.cs: create a single static Graphics object on the static
1490         Bitmap we create.  use this for our text measurements.
1491
1492         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1493         This was causing us to allocate a backbuffer for every control,
1494         even when it wasn't flagged as double buffered.  Instead use the
1495         single graphics instance.  This might have implications for
1496         multithreaded applications.  If we run into problems we can switch
1497         to creating 1 Graphics per control, on the static Hwnd bitmap.
1498
1499         this change nets us a 7M savings in private dirty mappings when
1500         running FormsTest.exe.
1501
1502 2006-12-06  Chris Toshok  <toshok@ximian.com>
1503
1504         * ListView.cs: the BackgroundImage override is just to set
1505         attributes.  chain up to base.BackgroundImage.
1506
1507         * RichTextBox.cs: same.
1508
1509         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1510         changes, so instead a handler for BackgroundImageChanged.
1511         
1512         * Control.cs: make background_image private.
1513
1514 2006-12-06  Chris Toshok  <toshok@ximian.com>
1515
1516         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1517         sure we even need this assignment, but roll with it for now.
1518
1519         * Control.cs: make the cursor field private.
1520
1521 2006-12-06  Chris Toshok  <toshok@ximian.com>
1522
1523         * Form.cs: we don't need to explicitly set ImeMode to
1524         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1525         behavior in the face of ImeMode.Inherit.
1526
1527         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1528         change the ctor's assignment to use ImeMode instead of ime_mode.
1529
1530         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1531         ImeModeInherit.  Only check for the parent's imemode (and return
1532         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1533         This fixes the button unit test, which sets both ImeMode and
1534         DefaultImeMode to ImeMode.Disable.
1535
1536         also make the ime_mode field private.
1537
1538 2006-12-06  Chris Toshok  <toshok@ximian.com>
1539
1540         * Control.cs: make control_style private.
1541
1542         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1543         setting the styles to true, then setting them to false instead of
1544         reverting to their previous values.
1545
1546         also, call SetStyle on the scrollbars instead of using
1547         control_style directly.
1548
1549 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * FormCollection.cs: Implement. [2.0]
1552
1553 2006-12-06  Chris Toshok  <toshok@ximian.com>
1554
1555         * Control.cs: make tab_stop private.
1556
1557         * Label.cs: set TabStop, not tab_stop.  reformat some event
1558         add/remove methods to make them more compact.
1559
1560 2006-12-06  Chris Toshok  <toshok@ximian.com>
1561
1562         * RadioButton.cs: fix TabStop handling.
1563
1564 2006-12-06  Chris Toshok  <toshok@ximian.com>
1565
1566         * TextBox.cs: remove the explicit assignments to has_focus.
1567         Control does that.
1568
1569         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1570         manage that.
1571         
1572 2006-12-06  Chris Toshok  <toshok@ximian.com>
1573
1574         * ButtonBase.cs: remove all uses of is_enabled from this code.
1575         it's always true when any of the code containing the checks is
1576         executed.
1577
1578 2006-12-06  Chris Toshok  <toshok@ximian.com>
1579
1580         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1581         with different semantics (some are present in both 1.1 and 2.0
1582         profiles) so that we match MS's behavior in our unit tests.
1583
1584 2006-12-06  Jackson Harper  <jackson@ximian.com>
1585
1586         * TextControl.cs: Make this operation undoable.
1587         * TextBoxBase.cs: Factor the border width into the preferred
1588         height.
1589         - implement Modified as per the spec.
1590
1591 2006-12-06  Chris Toshok  <toshok@ximian.com>
1592
1593         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1594
1595 2006-12-06  Chris Toshok  <toshok@ximian.com>
1596
1597         * Control.cs: make right_to_left and context_menu fields private.
1598
1599 2006-12-06  Chris Toshok  <toshok@ximian.com>
1600
1601         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1602         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1603         Control.child_controls private.  switch all uses over to
1604         Control.Controls.
1605
1606 2006-12-06  Chris Toshok  <toshok@ximian.com>
1607
1608         * System.Windows.Forms/GroupBox.cs,
1609         System.Windows.Forms/AccessibleObject.cs,
1610         System.Windows.Forms/ErrorProvider.cs,
1611         System.Windows.Forms/Control.cs,
1612         System.Windows.Forms/UpDownBase.cs,
1613         System.Windows.Forms/ScrollBar.cs,
1614         System.Windows.Forms/DateTimePicker.cs,
1615         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1616         System.Windows.Forms/ToolTip.cs,
1617         System.Windows.Forms/RadioButton.cs,
1618         System.Windows.Forms/LinkLabel.cs,
1619         System.Windows.Forms/Splitter.cs,
1620         System.Windows.Forms/TextBoxBase.cs,
1621         System.Windows.Forms/ToolStripTextBox.cs,
1622         System.Windows.Forms/ContainerControl.cs,
1623         System.Windows.Forms/ThemeWin32Classic.cs,
1624         System.Windows.Forms/SizeGrip.cs,
1625         System.Windows.Forms/ToolStripDropDown.cs,
1626         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1627         private.  switch all uses over to Control.Parent.
1628
1629 2006-12-06  Chris Toshok  <toshok@ximian.com>
1630
1631         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1632         Control does this before calling emitting these events.
1633
1634         * TabControl.cs: same.
1635
1636         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1637         Control.client_rect.
1638
1639         * ButtonBase.cs: use the ClientSize property instead of the
1640         client_size field.
1641
1642         * ScrollableControl.cs: same.
1643
1644         * Control.cs: another pass at making properties private.  also,
1645         move the initialization of tab_stop to the ctor.
1646
1647 2006-12-05  Andreia Gaita <avidigal@novell.com>
1648
1649         * TabControl.cs: Let the selected index be set freely if the 
1650         control handle is not yet created.
1651
1652 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1653
1654         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1655         internal until I can rewrite DefaultLayout.
1656         * ToolStrip.cs: Fix build error and some general cleaning.
1657         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1658         Fix build errors caused by making some of Control's fields private.
1659
1660 2006-12-05  Jackson Harper  <jackson@ximian.com>
1661
1662         * TextControl.cs: Redo Insert a little so that it use IndexOf
1663         instead of Split, this prevents it from messing up on things like
1664         \n\n\n. Also more effecient since the split array doesn't need to
1665         be created.
1666         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1667         multiline text differently, this is the first of many fixes that
1668         will make multiline/non-multiline the same thing as far as the
1669         TextBoxBase is concerned.
1670         - Don't split the text and insert lines, this can lose some line
1671         endings (like is the last line a soft or hard break). Instead use
1672         the new Insert.
1673         - Fix an off by one when combining all the lines in the Text
1674         getter.
1675         - Remove separate multiline handling from the Text getter/setter.
1676
1677 2006-12-05  Chris Toshok  <toshok@ximian.com>
1678
1679         * ButtonBase.cs: a few changes:
1680
1681         - don't reinitialize internal Control fields in the ctor when they
1682         have the same values as Control sets them.
1683
1684         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1685         this before calling those methods.
1686
1687         - we don't need to call Refresh for anything.  use Invalidate
1688         instead.
1689
1690         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1691         calls Refresh in its OnEnabledChanged.
1692         
1693         - several of the events we were registered for in the ctor to
1694         redraw ourselves already include calls to Invalidate in the
1695         property setters that raise the events.  remove the extra
1696         invalidation.
1697
1698         - reformat a switch statement that was 83274658 columns wide.
1699         
1700 2006-12-05  Mike Kestner  <mkestner@novell.com>
1701
1702         * ComboBox.cs: fix a unit test regression from a TextBox
1703         SelectionLength return of -1 when there's no selection.  
1704
1705 2006-12-05  Chris Toshok  <toshok@ximian.com>
1706
1707         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1708         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1709         cleaning up some of the internal Control fields being used by
1710         subclasses.
1711
1712 2006-12-05  Mike Kestner  <mkestner@novell.com>
1713
1714         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1715         listbox after AddImplicit calls since it defaults to hidden. Add a 
1716         hack to preserve requested heights across DropDownStyle changes.
1717
1718 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1719
1720         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1721
1722 2006-12-05  Chris Toshok  <toshok@ximian.com>
1723
1724         * DataGridView.cs: fix compiler warnings.
1725
1726         * PrintControllerWithStatusDialog.cs: same.
1727
1728         * ToolBar.cs: same.
1729
1730         * FolderBrowserDialog.cs: same.
1731
1732         * Splitter.cs: same.
1733
1734         * DataGridViewComboBoxCell.cs: same.
1735
1736         * XplatUIWin32.cs: same.
1737
1738         * PictureBox.cs: same.
1739
1740         * Win32DnD.cs: same.
1741
1742         * PageSetupDialog.cs: same.
1743
1744         * FileDialog.cs: same.
1745
1746         * PrintDialog.cs: same.
1747
1748         * DataGridTextBoxColumn.cs: same.
1749
1750         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1751
1752 2006-12-05  Chris Toshok  <toshok@ximian.com>
1753
1754         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1755         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1756         System.ComponentModel.EventHandlerList work.
1757
1758 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1759
1760         * DrawTreeNodeEventArgs.cs: Added.
1761
1762 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1763         
1764         * InternalWindowManager.cs: Remove an unused field.
1765         
1766 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1767
1768         * InternalWindowManager.cs:
1769         - Save the point where the title bar is clicked.
1770         
1771         * MdiWindowManager.cs:
1772         - Only allow moving of the window as long as the 
1773         clicked point on the title bar does not get out of
1774         MdiClient's rectangle. Fixes #79982.
1775         
1776         * MdiClient.cs:
1777         - Added Horizontal/VerticalScrollbarVisible.
1778         - Simplified the scrollbar sizing algorithm.
1779         - Cache the difference in scrolled value in
1780         H/VBarValueChanged and move the calculation out
1781         of the for loop.
1782
1783 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1784
1785         * Control.cs: Make the Console.WriteLine in WndProc 
1786         write more info.
1787
1788 2006-12-05  Chris Toshok  <toshok@ximian.com>
1789
1790         * ToolStripManager.cs, ToolStripButton.cs,
1791         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1792         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1793         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1794         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1795         ToolStripProgressBar.cs, ToolStripContainer.cs,
1796         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1797         to using System.ComponentModel.EventHandlerList.
1798
1799 2006-12-04  Chris Toshok  <toshok@ximian.com>
1800
1801         * LinkLabel.cs: fix up compiler warnings.
1802
1803         * TableLayoutSettings.cs: same.
1804
1805         * TreeView.cs: same.
1806
1807         * ToolBar.cs: same.
1808
1809         * TabControl.cs: same.
1810
1811         * RichTextBox.cs: same.
1812
1813         * ListViewItem.cs: same.
1814
1815         * PropertyGrid.cs: same.
1816
1817         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1818
1819         * ToolTip.cs same.
1820
1821         * TextRenderer.cs: fix up compiler warnings.
1822
1823         * Label.cs: same.
1824
1825         * Form.cs: corcompare fixes.
1826
1827         * PictureBox.cs: fix up compiler warnings.
1828
1829         * ImageListStreamer.cs: same.
1830
1831         * TrackBar.cs: corcompare fix.
1832
1833         * Control.cs: fix up compiler warnings.
1834
1835         * SplitterPanel.cs: same.
1836
1837         * NumericTextBox.cs: same.
1838
1839         * ImageList.cs: same.
1840
1841         * StatusStrip.cs: same.
1842
1843         * ProgressBar.cs: corcompare fix.
1844
1845         * ToolStripButton.cs: fix up compiler warnings.
1846
1847         * ToolStripStatusLabel.cs: same.
1848
1849         * ToolStripSplitButton.cs: same.
1850
1851         * ToolStripSeparator.cs: same.
1852
1853         * ToolStripProgressBar.cs: same.
1854
1855         * ToolStripDropDownMenu.cs: same
1856
1857         * ToolStripDropDown.cs: same.
1858
1859         * ToolStripDropDownButton.cs: same.
1860
1861         * ToolStrip.cs: same.
1862
1863         * ToolStripControlHost.cs: same.
1864
1865         * ToolStripContentPanel.cs: same.
1866
1867         * ToolStripDropDown.cs: same.
1868
1869         * ToolStripContainer.cs: same.
1870
1871         * ToolStripPanel.cs: same, and add "new" where we need it to work
1872         with the new ArrangedElementCollection.
1873
1874         * ToolStripItemCollection.cs: add "new" where we need it to work
1875         with the new ArrangedElementCollection.
1876
1877 2006-12-04  Andreia Gaita <avidigal@novell.com>
1878
1879         * TabControl.cs: Fix default tab selection to after TabControl
1880         gets focus and not before. Fixes #80128
1881
1882 2006-12-04  Chris Toshok  <toshok@ximian.com>
1883
1884         * DataGridTableStyle.cs: remove the gross calling of
1885         datagrid.Refresh from here.  It's a broken idea and it doesn't
1886         work anyway.
1887
1888         * DataGrid.cs: instead, just register/unregister from the
1889         DataGridTableStyle events in CurrentTableStyle.  we play it
1890         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1891         even though some would most likely not require it.  Fixes bug
1892         #80115 (and one portion of #80117 as a side effect).
1893
1894 2006-12-04  Chris Toshok  <toshok@ximian.com>
1895
1896         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1897         so the textbox (if any) goes away.  Fixes bug #80117.
1898
1899 2006-12-04  Chris Toshok  <toshok@ximian.com>
1900
1901         * DataGridColumnStyle.cs: set the column's readonly property
1902         initially based on the property descriptor's IsReadOnly.  Fixes
1903         bug #80044.
1904
1905 2006-12-04  Chris Toshok  <toshok@ximian.com>
1906
1907         * ComboBox.cs: wrap the dropdown style changing work in
1908         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1909
1910 2006-12-04  Jackson Harper  <jackson@ximian.com>
1911
1912         * TextBoxBase.cs: Fix off by one, since these are one-based.
1913         * TextBox.cs: Select all the text when we get focus.  The TextBox
1914         does this but the RTB does not.
1915
1916 2006-12-04  Chris Toshok  <toshok@ximian.com>
1917
1918         * DataGridTextBoxColumn.cs: remove some spew.
1919
1920         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1921         but some part of me is saying "it shouldn't be here.."  At any
1922         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1923         setting the value.
1924
1925 2006-12-04  Chris Toshok  <toshok@ximian.com>
1926
1927         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1928         to reassign the propertydescriptor.
1929
1930 2006-12-04  Jackson Harper  <jackson@ximian.com>
1931
1932         * TextBoxBase.cs:
1933         * TextControl.cs: Remove some unused variables.  Maybe this will
1934         patch things up between mike and I.
1935         - don't split lines less then one char wide, if the viewport is
1936         that small text won't be visible anyways.
1937         
1938 2006-12-04  Jackson Harper  <jackson@ximian.com>
1939
1940         * TextBoxBase.cs: Default selection length is -1, need to do some
1941         more testing on windows to see when this is used for the property.
1942         - Redid the Lines [] property to that we properly remove soft line
1943         breaks
1944         - added support for preserving carriage returns
1945         -  CanUndo is not a variable like 'is undo enabled' it just returns
1946         true if there is undo operations available.
1947         - AppendText doesn't need to grab the last tag itself anymore,
1948         this happens automatically when we move the cursor.
1949         * TextControl.cs: Add CompoundActions to the undo class. This
1950         allows combining the other operations into one big option.  ie a
1951         paste will combine { delete old, insert new, move cursor }
1952         - Add InsertString undo operation
1953         - New method for deleting multiline text
1954         - Add carriage returns to lines. So we can preserve carriage
1955         returns when text is 'roundtripped'
1956
1957 2006-12-04  Chris Toshok  <toshok@ximian.com>
1958
1959         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1960         minimum 0.  Fixes the scrollbar exception in bug #80136.
1961
1962 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1963
1964         * MdiClient.cs: 
1965         * MdiWindowManager: Removed unused fields and methods.
1966         
1967 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1968         
1969         * StatusBar.cs: Update all panels when a AutoSize=Contents
1970         panel needs updating.
1971         
1972         * StatusBarPanel.cs: Remove twidth and only use initialize.
1973         Fixes #80031.
1974                 
1975 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1976
1977         * Form.cs: When a form's MdiParent is set add it directly
1978         on top of the z-order in stead of relying on MdiClient's
1979         ActivateChild to do it. Fixes #80135.
1980         
1981         * MdiClient.cs: 
1982         - Remove original_order, mdi_child_list is already doing
1983         the same thing.
1984         - Create mdi_child_list on construction in
1985         stead of first use (avoids a few null checks).
1986
1987         * MenuItem.cs: Use an already existing list of mdi children
1988         to get the correct order of children and remove the other
1989         redundant list.
1990
1991 2006-12-04  Chris Toshok  <toshok@ximian.com>
1992
1993         * PropertyGridView.cs: cached_splitter_location is only used in
1994         !DOUBLEBUFFER code.
1995
1996         * PropertyGrid.cs: implement the ComComponentNameChanged event
1997         using Events, hoping that would fix the warning.  Looks like a
1998         compiler bug instead (#80144).
1999
2000         * PropertyManager.cs: remove unused method.
2001
2002 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2003
2004         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2005         include parentesis to fix expression evaluation. Fixes #79634.
2006
2007 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2008         
2009         * MenuAPI.cs:
2010         - Changes to fix behavior in Menu control, some reported in #80097
2011         and other detected during behavior refactory like a select event
2012         problems.
2013         - Remove unneded "if's" conditions.
2014         - Created an internal to flag when popup is active in control, we need 
2015         it because in .NET you can have menu active but without popup active
2016         when you active menu using popup without visible items.
2017         - Mimic win32 behavior for Select and Popup events.  
2018         - Dont open popup menu when you dont have visible subitems.
2019         - Do nothing when click on disabled menu item.
2020         - Some small changes to follow the coding style guidelines.
2021         - Unselect menu only when another control gives focus. Fixes #80097.
2022         - Remove unused code.
2023         
2024         * MenuItem.cs: internal VisibleItems method to check if menu
2025         theres visible subitems, it will be usefull to fix some 
2026         behavior in Menu control.
2027         
2028 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2029         
2030         * Timer.cs: Tag property for 2.0 profile.
2031         
2032 2006-12-01  Chris Toshok  <toshok@ximian.com>
2033
2034         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2035         
2036         * Win32DnD.cs: comment out some unused fields.
2037
2038         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2039         some unused properties/methods.
2040
2041         * XplatUIX11.cs: fix MousePosition so we override the base class's
2042         property instead of conflicting with it.
2043
2044         * PictureBox.cs: comment out some unused fields
2045
2046         * OSXStructs.cs: make some struct fields public.
2047
2048         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2049         MousePosition so we override the base class's property instead of
2050         conflicting with it.
2051
2052         * X11Dnd.cs: comment out some unused fields
2053
2054         * X11DesktopColors.cs: fix some struct field visibility to quiet
2055         the compiler.
2056
2057         * X11Dnd.cs: remove some debug code.
2058
2059         * ThemeClearlooks.cs: comment out unused field.
2060
2061         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2062
2063         * ThemeGtk.cs: comment out some unused pinvokes.
2064
2065         * Timer.cs: remove some unused fields.
2066
2067         * ThemeClearlooks.cs: comment out unused field.
2068
2069         * UpDownBase.cs: comment out unused field.
2070
2071         * DataObject.cs: comment out unused field.
2072
2073         * DataGridBoolColumn.cs: reomve unused field.
2074
2075         * DataGrid.cs: remove unused field.
2076
2077         * Cursor.cs: remove old ToBitmap code.
2078
2079         * ControlPaint.cs: remove unused method.
2080
2081         * ScrollBar.cs: remove unused fields.
2082
2083         * ComboBox.cs: remove unused field, and chain up to
2084         AccessibleObject ctor.
2085
2086         * ListBox.cs: remove unused field.
2087
2088         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2089
2090         * GridEntry.cs: remove unused fields.
2091
2092         * Binding.cs: remove unused fields.
2093
2094         * AxHost.cs: remove unused method.
2095
2096         * ContainerControl.cs: remove unused field.
2097
2098         * ScrollableControl.cs: remove unused fields.
2099
2100 2006-12-01  Chris Toshok  <toshok@ximian.com>
2101
2102         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2103         the Where/WhereString stuff.  it's easy enough to CWL
2104         Environment.StackTrace.
2105
2106         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2107         unused private fields.
2108
2109 2006-12-01  Jackson Harper  <jackson@ximian.com>
2110
2111         * TextControl.cs: Do not update the view while inserting multiline
2112         text. If we update the view we might wrap lines, before entering
2113         the new lines, which causes the new line insertion calculations to
2114         be totally fubared.
2115         - Remove an old TODO
2116         - Make debug output a little nicer
2117         
2118 2006-12-01  Chris Toshok  <toshok@ximian.com>
2119
2120         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2121
2122 2006-12-01  Chris Toshok  <toshok@ximian.com>
2123
2124         [ fix the majority of the CS0108 warnings we've been suppressing ]
2125         
2126         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2127
2128         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2129         to "LayoutToolBar" to quiet mcs.
2130         
2131         * TabControl.cs: mark our ControlCollection class as 'new'.
2132
2133         * TextBoxBase.cs: mark some events as 'new'.
2134
2135         * Splitter.cs: TabStop is 'new'.
2136
2137         * ControlBindingsCollection.cs: mark a few methods as new since
2138         they change the visibility from protected to public.
2139
2140         * RadioButton.cs: DoubleClick -> base class, and remove unused
2141         HaveDoubleClick.
2142
2143         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2144         events as new.
2145
2146         * NumericUpDown.cs: TextChanged -> base class.
2147
2148         * CheckedListBox.cs: mark our ObjectCollection class as new to
2149         quiet mcs.
2150
2151         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2152         muck with the base class.
2153
2154         * StatusBar.cs: fix some mcs warnings about Update being the same
2155         name as a base class method.
2156
2157         * RichTextBox.cs: mark some events as new, and make them do things
2158         to the base class impl.
2159
2160         * UserControl.cs: mark TextChanged as new, and have it manipulate
2161         base.TextChanged.
2162
2163         * UpDownBase.cs: mark some things new.
2164
2165         * CheckBox.cs: mark DoubleClick "new", and add some text about
2166         what we need to look at.
2167
2168         * Panel.cs: make the events "new", and manipulate the base
2169         version.  these are just here for attributes.
2170
2171         * AccessibleObject.cs: make owner private.
2172
2173         * Control.cs: deal with AccessibleObject.owner being private.
2174         cache our own copy if we need it.
2175
2176         * Button.cs: add "new" to the DoubleClickEvent.
2177
2178         * ListBox.cs: no need to track our own has_focus here.  let
2179         Control.has_focus do it for us.  Also some other work to clear up
2180         warnings about not overriding base class methods of the same name.
2181         
2182         * ComboBox.cs: clear up some warnings about not override base
2183         class methods of the same name.
2184
2185 2006-12-01  Chris Toshok  <toshok@ximian.com>
2186
2187         * Form.cs: flag a few things as "new" to quiet some of the mcs
2188         warnings.
2189
2190         * AxHost.cs: same.
2191
2192         * PrintPreviewDialog.cs: same.
2193
2194         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2195         now DGV isn't so horrible on the class status page.  also, move
2196         all events to using System.ComponentModel.EventHandlerList.  my
2197         wrists hurt.
2198
2199 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2200
2201         * MdiWindowManager.cs:
2202         - Set form to active mdi child if shown,
2203         and update the active mdi child to the next 
2204         remaining child in the z-order if the form is hidden.
2205
2206         * Form.cs: 
2207         - Track if the form has been visible and if its 
2208         visibility is beeing changed, so that the MdiClient
2209         can properly decide the ActiveMdiChild. The MdiClient 
2210         cannot track this since the form can change visibility 
2211         before MdiClient is created.
2212
2213         * MdiClient.cs:
2214         - Don't activate anything of the parent form is changing
2215         its visibility.
2216         - Rework ActiveMdiChild to only return visible mdi 
2217         children and take into account several other corner 
2218         cases.
2219
2220 2006-12-01  Chris Toshok  <toshok@ximian.com>
2221
2222         * IBindableComponent.cs: new 2.0 interface.
2223
2224 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2225
2226         * DataGrid.cs: Font for caption area is bold by default.
2227
2228 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2229
2230         * Menu.cs: Tag property for 2.0.
2231         
2232 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2233
2234         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2235         
2236 2006-12-01  Chris Toshok  <toshok@ximian.com>
2237
2238         * TreeView.cs: doh, the Begin* events should be
2239         TreeViewCancelEventHandler.
2240
2241 2006-12-01  Chris Toshok  <toshok@ximian.com>
2242
2243         * Form.cs: Form.ControlCollection already stores off the
2244         form_owner field.  don't access the base class's internal "owner"
2245         field.
2246
2247         * Control.cs: make all the fields in Control.ControlCollection
2248         private.  there's no need for any internal fields here.
2249
2250 2006-12-01  Chris Toshok  <toshok@ximian.com>
2251
2252         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2253         OnHandleCreated.  Fixes bug #80109.
2254
2255 2006-12-01  Chris Toshok  <toshok@ximian.com>
2256
2257         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2258         SplitContainer.cs, Control.cs, StatusStrip.cs,
2259         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2260         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2261         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2262         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2263         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2264         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
2265         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
2266         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
2267         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
2268         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
2269
2270         do most of the work to convert our code over to use
2271         System.ComponentModel.Component.Events for
2272         adding/removing/dispatching events.
2273
2274
2275 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2276
2277         * DataGridView.cs: Fix an ArgumentNullException reported 
2278         twice today in IRC.
2279
2280 2006-11-30  Mike Kestner  <mkestner@novell.com>
2281
2282         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
2283         grabbed listbox.  Fixes #80036 and #80101.
2284
2285 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2286
2287         * Message.cs: Changed ToString() to match MS.
2288         
2289 2006-11-30  Jackson Harper  <jackson@ximian.com>
2290
2291         * TextBoxBase.cs: You can still change the selected text on a read
2292         only textbox.
2293         * TextControl.cs: Lower magic number for wrap calculations. This
2294         lets text get closer to the right (far) edge.
2295
2296 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2297
2298         * Control.cs: Tweak 2.0 layout properties.
2299         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2300         * TextRenderer.cs: Add a new overload.
2301         * ToolStrip*: Huge amount of changes and new features.
2302
2303 2006-11-30  Mike Kestner  <mkestner@novell.com>
2304
2305         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2306         scroll range correct.  Fixes #79994.
2307
2308 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2309
2310         * MdiWindowManager.cs: Update main form's text when
2311         a form is closed. (fixes #80038)
2312         
2313 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2314
2315         * ToolBar.cs:
2316         - Fix an regression in ButtonSize.
2317         - Get ImeMode default value change to "Disable".
2318         - Get ShowTooltips default value change to true, default value is 
2319         "false" but after make a test in .NET we get "true" result as default.
2320         
2321 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2322
2323         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2324
2325 2006-11-29  Chris Toshok  <toshok@ximian.com>
2326
2327         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2328         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2329         SetWindowTransparency hasn't been called.
2330
2331 2006-11-29  Chris Toshok  <toshok@ximian.com>
2332
2333         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2334         if it's supported.
2335         (set_AllowTransparency): reorder things a little so that the
2336         WS_EX_LAYERED style is removed properly.
2337
2338 2006-11-29  Chris Toshok  <toshok@ximian.com>
2339
2340         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2341         
2342         * Form.cs: only call the XplatUI transparency method (get/set) if
2343         SupportsTransparency says it's supported. Otherwise fallback to
2344         doing nothing (in the set case) or returning the instance field we
2345         cache (in the get case).
2346
2347         * XplatUIStructs.cs: add TransparencySupport flag enum.
2348         
2349         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2350         change to SupportsTransparency.
2351
2352         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2353         TransparencySupport.None from SupportsTransparency.
2354
2355         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2356         TransparencySupport.Set from SupportsTransparency.
2357
2358         * XplatUIWin32.cs: implement GetWindowTransparency calling
2359         GetLayeredWindowAttributes, and implement SupportsTransparency by
2360         checking whether or not both
2361         GetWindowTransparency/SetWindowTransparency are available
2362         entrypoints.  We need to do this since SetWindowTransparency is
2363         available as of win2k, but GetWindowTransparency requires winxp.
2364         yay win32 api.
2365
2366         * XplatUI.cs: Add GetWindowTransparency, and change
2367         SupportsTransparency to allow for either/both Get/Set.
2368
2369 2006-11-29  Chris Toshok  <toshok@ximian.com>
2370
2371         * DataGrid.cs: keep from going into an infinite loop redrawing a
2372         datagrid that has no datasource.  Fixes bug #80033.
2373
2374 2006-11-29  Chris Toshok  <toshok@ximian.com>
2375
2376         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2377         Invalidate) before the mainmenu has been assigned to a control.
2378
2379 2006-11-29  Chris Toshok  <toshok@ximian.com>
2380
2381         * DataGrid.cs: detect when we should be double the double click
2382         row/column autosize stuff, although that codepath has yet to be
2383         written.  part of the work for bug #79891.
2384
2385 2006-11-29  Chris Toshok  <toshok@ximian.com>
2386
2387         * Binding.cs (SetControl): fix unit test.
2388
2389 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2390
2391         * PageSetupDialog.cs: Validate the margins and set them in
2392         PageSettings. 
2393         * NumericTextBox.cs: New class to mimic the behavior of the
2394         textboxes used in the printing dialogs.
2395
2396 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2397         
2398         * Form.cs: Revert previous change (remove call UpdateBounds
2399         from form constructor), because it messes with the handle creation
2400         order, and that one needs lots and lots of love.
2401         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2402         for valid printer and throw InvalidPrinterException if document
2403         is set but printer not valid), adding a MonoTODO. Once 
2404         handle creation is done properly, we can put this back in.
2405
2406 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2407
2408         * MenuItem.cs: Create a invalidate method for menu item, to be
2409         calling from set text, it make text changes to imadiate update
2410         on screen. Fixes #80013. 
2411         
2412 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2413
2414         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2415         fixes bug #80070 and some other problem on toolbar buttons
2416         layout.
2417
2418 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2419
2420         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2421         with dotted brush.      Fixes #79564
2422         
2423 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2424
2425         * Form.cs: Removed call to UpdateBounds on Form
2426         constructor, it was causing a call to CreateHandle
2427         before it was supposed to.
2428         * PrintControllerWithStatusDialog: Applied patch
2429         by Chris Toshok to hide controller when there are
2430         no printers available.
2431         PrintDialog.cs: initialize printer settings to 
2432         null - correct DefaultValues test #5
2433         * PrintPreviewControl.cs: Move PrintController
2434         initialization to GeneratePreview
2435         * PrintPreviewDialog.cs: 
2436         - Remove Preview generation     from Document_set(). It is 
2437         called on OnPaint
2438         - Throw InvalidPrinterException on CreateHandle if
2439         a Document is set but there are no printers or 
2440         printer is not valid.
2441         * ThemeWin32Classic: don't paint PrintPreviewControl
2442         if there is nothing to paint    
2443
2444 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2445
2446         * Form.cs: Add another popular method.
2447
2448         * TabPage.cs: ditto.
2449
2450 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2451
2452         * MenuItem.cs: Fixed a warning.
2453         * InternalWindowManager: Fixed a warning.
2454
2455 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2456
2457         * MenuItem.cs:
2458         - When cloning a menu also clone MdiList and clone the 
2459           window menu items properly (as the forms and menuitems
2460           are kept in an internal hashtable, these need updating 
2461           as well)
2462         - Rewrote the window menu code, menu items are added in the
2463           order the forms were added to their parent, and they are
2464           updated every time the window menu is shown (before the
2465           list was only generated once, in the current order of the
2466           forms, and would never be updated). A checkmark is shown
2467           next to the item corresponding to the active mdi child.
2468
2469 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2470
2471         * XplatUIStructs.cs: 
2472         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2473         
2474         * XplatUIWin32.cs: 
2475         - Added TME_NONCLIENT to TMEFlags.
2476         - Handles WM_NCMOUSEMOVE in GetMessage to 
2477           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2478
2479         * MdiWindowManager:
2480         - Now merges mdi child menu to parent menu when maximized.
2481         - Recalculate NC areas of both mdi child and mdi parent. 
2482           Fixes #79757 (4).
2483           on window state and size changes.Fixes #79844 (3).
2484         - Handle WM_NCCALCSIZE to properly calculate borders.
2485
2486         * Form.cs:
2487         - Add/remove to the mdi containers list of mdi children 
2488           in the order they are added.
2489         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2490           to the maximized mdi child.
2491         
2492         * InternalWindowManager.cs:
2493         - Only execute a click on the control buttons on the mouse up,
2494           not on the mouse down. Show the state of the button 
2495           (was only showing Normal state, never Pressed state). The
2496           pressed button now follows the mouse (if you click the Close 
2497           button and move the mouse over the Maximize button, the 
2498           Maximize button will be shown as pressed). Since Win32 does
2499           not generate WM_NCLBUTTONUP if you release the button outside
2500           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2501           it as a mouse up.
2502         
2503         * ThemeWin32Classic.cs:
2504         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2505
2506         * MdiClient.cs:
2507         - Added a list of forms which contains the order the forms are
2508           added to the mdi parent.
2509         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2510         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2511         - If the active form changes set the scrollbars to the top
2512           of the Z order, otherwise the form could hide them.
2513         - Scrollbars are now sized according to ClientSize, not 
2514           to Size, and they take into account the other scrollbar
2515           to determine maximum.
2516         
2517 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2518         
2519         * XplatUI.cs:
2520         * XplatUIDriver.cs:
2521         * XplatUIX11.cs:
2522         * XplatUIWin32.cs:
2523         * XplatUIOSX.cs:
2524         - Added RequestAdditionalWM_NCMessages for windows to 
2525           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2526           Currently only implemented in XplatUIWin32.
2527
2528 2006-11-27  Chris Toshok  <toshok@ximian.com>
2529
2530         * Hwnd.cs: only add the hwnd to the windows hash in
2531         set_WholeWindow and set_ClientWindow if whole_window/client_window
2532         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2533
2534 2006-11-27  Mike Kestner  <mkestner@novell.com>
2535
2536         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2537         from the ComboListBox.ShowWindow code. Fixes #79969.
2538
2539 2006-11-27  Chris Toshok  <toshok@ximian.com>
2540
2541         * Hwnd.cs: remove the setters for ExposePending and
2542         NCExposePending - noone uses them.
2543
2544 2006-11-27  Jackson Harper  <jackson@ximian.com>
2545
2546         * TextControl.cs: new param for ReplaceSelection which determines
2547         whether we select the new selection, or set the cursor to the end
2548         of the new selection.
2549         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2550         pasting, select the new text.
2551         * RichTextBox.cs: Use new param for ReplaceSelection.
2552
2553 2006-11-27  Jackson Harper  <jackson@ximian.com>
2554
2555         * TextBoxBase.cs: Set the selection to the caret after the caret
2556         is moved, otherwise they get out of sync.
2557
2558 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2559
2560         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2561         it fixes #80015
2562
2563 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2564
2565         * ThemeWin32Classic.cs: 
2566         - Fix toolbar drop down arrow position.
2567         - Fix drop down appearance when ToolBar.Appearance is normal,
2568         it fixes #80018.
2569         
2570 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2571
2572         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2573         * Control.cs: Same.
2574         * UpDownBase.cs: Same.
2575         * ButtonBase.cs: Same.
2576         * ScrollBar.cs: Same.
2577         * TrackBar.cs: Same.
2578         * PictureBox.cs: Same.
2579         * UserControl.cs: Same.
2580         * Label.cs: Same.
2581         * ListControl.cs: Same.
2582         * TextBoxBase.cs: Same.
2583         * ListView.cs: Same.
2584         * RichTextBox.cs: Same.
2585         * TreeView.cs: Same.
2586
2587 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2588
2589         * PrintDialog.cs:
2590         - Text label for where 
2591         - Text label comment was not shown
2592
2593 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2594
2595         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2596
2597 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2598
2599         * InternalWindowManager.cs: 
2600         - Handle WM_PARENTNOTIFY to activate the form
2601         if any child control is clicked.
2602         - The form is only sizable if not minimized.
2603
2604         * MdiWindowManager.cs:
2605         - Save the IconicBounds if the form is moved.
2606         - Rework SetWindowState, now the window bounds 
2607         are stored only if the old window state is Normal.
2608         
2609         * MdiClient.cs:
2610         - In SetWindowStates store the old window state if 
2611         the window is maximized and restore window state if
2612         the window looses focus.
2613         - Don't handle any scrollbar value changes if 
2614         initializing the scroll bars. Fixes #79771.
2615         - Reworked ArrangeIconicWindows. Current algorithm
2616         tests bounds agains all other minimized windows, if
2617         any intersections create new bounds (going left to 
2618         right, bottom to top) and then test again. When 
2619         successful the bounds are saved and never computed
2620         again. Fixes #79774.
2621
2622 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2623
2624         * InternalWindowManager.cs: Added HandleTitleBarUp.
2625
2626 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2627
2628         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2629         hexadecimal in ParseUserEdit.
2630
2631         
2632 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2633
2634         * MdiWindowManager.cs: 
2635         - Handle a click on the form's icon to show the 
2636         system menu (when maximized). Fixes #79775.
2637         - Change the existing click handler for the form's
2638         icon when not maximized to show on MouseUp.
2639         Fixes #79776.
2640
2641         * Form.cs: In OnResize only layout the mdi child's
2642         parent if it actually has a parent. Might not if
2643         the window is closing.
2644
2645
2646 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2647
2648         * MdiClient.cs: Ignore active MDI client for text of parent, if
2649         child has no text set.
2650
2651 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2652
2653         * ToolBar.cs: Fixed ToString to match MS.
2654
2655 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2656
2657         * NumericUpDown: 
2658         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2659         update inner values on set. Fixes #79966.
2660         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2661         - Fix hexadecimal parsing.
2662         
2663         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2664         parent. Fixes #79957
2665
2666 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2667
2668         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2669         the actual size has to be queried, since if height /
2670         width is negative Win32 changes it to 0. 
2671         Fixes #79999 on Windows.
2672         
2673         * XplatUIX11.cs: Set height / width to 0 if negative
2674         in SetWindowPos. Fixes #79999 on Linux.
2675         
2676 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2677
2678         * ThemeWin32Classic.cs: Fix text redenring when button is
2679         pressed.
2680
2681 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2682
2683         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2684         and later navigate by mouse. Fixes #79528.
2685
2686 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2687
2688         * ToolBar.cs: Set default value for TabStop to false in
2689         constructor, it fixes remaining behavior of bug #79863.
2690
2691 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2692
2693         * MdiWindowManager.cs:
2694         * InternalWindowManager.cs:
2695         - Moved a few methods specific to Mdi from 
2696         InternalWindowManager to MdiWindowManager.
2697         Fixes #79996.
2698         
2699 2006-11-21  Chris Toshok  <toshok@ximian.com>
2700
2701         * XplatUIOSX.cs: stub out InvalidateNC.
2702
2703         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2704         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2705
2706         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2707
2708         * XplatUIDriver.cs: add InvalidateNC abstract method.
2709
2710         * XplatUI.cs: add InvalidateNC.
2711
2712 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2713
2714         * ToolBar.cs: Invalidate complete button area when pressed status 
2715         was changed.
2716         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2717         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2718         by 1 when button is pressed.
2719
2720 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2721
2722         * ToolButton.cs: Invalidate middle of DropDown button when
2723         ToolBar theres DropDownArrows.
2724         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2725         fix DropDown drawing operations.
2726
2727 2006-11-20  Chris Toshok  <toshok@ximian.com>
2728
2729         * NativeWindow.cs: fix the formatting of functions ('{' on the
2730         following line), and enable the thread exception dialog.
2731
2732         * Application.cs: remove the duplicate exception catching from
2733         here.
2734
2735 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2736
2737         * Toolbar.cs: Triggers button click event when click on icon
2738         of dropdown ToolBarButton. Fixes #79912.
2739         
2740 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2741
2742         * Theme.cs:
2743         * ThemeWin32Classic.cs:
2744         - Added a property WindowBorderFont to enable themeing
2745           of mdi child windows' Text.
2746           
2747 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2748
2749         * InternalWindowManager.cs:
2750         * Form.cs:
2751         * MdiClient.cs:
2752         * MdiWindowManager.cs: 
2753         - If mdi child is maximized, set mdi parent's
2754           text to "Parent - [Child]". Fixes #79770.
2755         - If there is any maximized mdi child windows, only the active 
2756           window (and any new windows) is maximized, the rest are normal.
2757         - On a WindowState change only save mdi child's window bounds 
2758           if the old window state was normal. Fixes #79774.
2759         - The scroll bars are now calculated on hopefully all
2760           necessary events. Fixed #79771 / #79844->6 / #79906.
2761         - MdiClient.SizeScrollBars() now takes into account docked 
2762           controls in the parent when calculating available space.
2763         - InternalWindowManager now always repaints the entire title
2764           area. Fixes #79844->1/4/5.
2765         - Added RequestNCRecalc on mdi child windowstate changes.
2766           Fixes #79772.
2767
2768 2006-11-20  Mike Kestner  <mkestner@novell.com>
2769
2770         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2771         in the MouseUp handler of the listbox and move the return handling
2772         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2773
2774 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2775
2776         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2777
2778 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2779
2780         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2781           working in 1.2.x anymore. So, updated.
2782
2783 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2784
2785         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2786         NumberGroupSeparator of current culture instead of assuming en-US.
2787         Fixed bug #79967.
2788
2789 2006-11-17  Mike Kestner  <mkestner@novell.com>
2790
2791         * Control.cs: Add the concept of implicit bounds setting so that
2792         dock/undock round trips preserve explicitly set size/locations.
2793         Fixes #79313.
2794
2795 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2796
2797         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2798           can't handle those filters. (Fixes bug #79961)
2799
2800 2006-11-17  Chris Toshok  <toshok@ximian.com>
2801
2802         [ fixes the exit/crashes associated with #79835.  it's clearly
2803         suboptimal though, we need to figure out a better way to solve
2804         this. ]
2805         
2806         * PrintPreviewControl.cs: deal with the new invalid printer
2807         exceptions.
2808
2809         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2810         and return false (so CommonDialog.ShowDialog doesn't actually show
2811         the form.)
2812
2813         * PrintDialog.cs: enable/disable the Ok button depending on
2814         whether or not the printer is valid.
2815
2816         * CommonDialog.cs (ShowDialog): only actually show the form if
2817         RunDialog returns true.
2818
2819 2006-11-17  Jackson Harper  <jackson@ximian.com>
2820
2821         * TextControl.cs: When soft splitting a line, mark it as a soft
2822         split line. Also carry over the current line break to the next
2823         line.
2824
2825 2006-11-17  Chris Toshok  <toshok@ximian.com>
2826
2827         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2828         only want to shift the part of the invalid area that overlaps the
2829         area we're scrolling.  we also don't want to clear the invalid
2830         area unless the invalid area was entirely contained within the
2831         scrolling area.
2832
2833 2006-11-16  Chris Toshok  <toshok@ximian.com>
2834
2835         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2836         also make sure to free the memory returned by XGetWindowProperty
2837         in GetText().
2838
2839         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2840
2841 2006-11-16  Chris Toshok  <toshok@ximian.com>
2842
2843         * XplatUI.cs: add a new super secret way to get at the totally
2844         unsupported X11 backend.
2845
2846 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2847
2848         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2849
2850 2006-11-16  Jackson Harper  <jackson@ximian.com>
2851
2852         * TreeView.cs: Allow more explicit setting of top node position
2853         for scrollbars. Slower algo, but more accurate.
2854         - CollapseAll should maintain the current top node.
2855         * TextBoxBase.cs: When positioning the caret, use the line, pos
2856         method, since the x, y method does not grab the correct tag, and
2857         the caret height never gets set correctly. (Maybe I should just do
2858         away with the caret having its own height, and always use the
2859         carets current tag for height).
2860
2861 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2862
2863         [Fixes 79778, 79923]
2864
2865         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2866         Parent to the FosterParent instead.
2867
2868 2006-11-16  Jackson Harper  <jackson@ximian.com>
2869
2870         * TreeView.cs: Need to recalc the topnode when we expand or
2871         collapse. The scrolling methods can't handle this on their own,
2872         since they use differences between the last scroll position, and
2873         those difference get completely messed up since we are expanding
2874         nodes.  This problem should probably be fixed in the scrolling
2875         methods, so they can figure out exactly where they are, but this
2876         will slow things down a little.
2877         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2878         strings, makes nunit-gui look a lot nicer.
2879
2880 2006-11-16  Chris Toshok  <toshok@ximian.com>
2881
2882         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2883         the broken multithreaded event handling we have in here.  File
2884         this entry under "Why we should move to the new X11 backend".
2885
2886         Any thread can make it into UpdateMessageQueue, which gets events
2887         from the X socket - some of which could belong to hwnds being
2888         managed by a different thread.  We can also have multiple threads
2889         in UpdateMessageQueue at the same time, with each one reading from
2890         the X socket.  This leads to many problems, with the following
2891         solutions:
2892
2893         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2894         EnqueueLocked.
2895
2896         The MotionNotify compression we do can't work across threads
2897         (without locking the entire queue, perhaps) since we call
2898         hwnd.Queue.Peek, so we just punt and don't compress motion events
2899         unless the owning thread is the one which got the X event.
2900
2901         ConfigureNotify is another fun one, since it modifies the hwnd's
2902         bounds and then enqueues the event.  We add a lock to Hwnd which
2903         is held when setting configure_pending to true (and enqueuing the
2904         event).
2905
2906         There is a race wrt the wake socket.  we need to make sure that
2907         only 1 thread is waiting on that socket, or else a thread could
2908         sleep waiting for data that never comes.  It's difficult (but not
2909         impossible) to make happen, because it seems to require something
2910         like the following:
2911
2912             1. Thread 1 polls on wake_receive
2913         
2914             2. poll returns saying there's data to be read on
2915                wake_receive.
2916         
2917             3. Thread 2 polls on wake_receive and immediately returns
2918                saying there's data to be read.
2919
2920             4. Thread 2 reads the wakeup byte from wake_receive
2921
2922             5. Thread 1 attempts to read the wakeup byte from
2923                wake_receive.
2924
2925             6. Thread 2 exits (due to a form closing, perhaps).
2926
2927             7. Thread 1 blocks forever.
2928         
2929         Fun, eh?
2930
2931         Fixing the Expose handling isn't done yet, and the races inherent
2932         in that piece of code are responsible for the drawing mistakes you
2933         see when generating expose events in a MT app (like NPlot).  This
2934         one is the likely to be the hardest to bandaid, and it doesn't
2935         appear to cause anything but drawing problems.  The other issues
2936         caused apps to exit or hang.
2937
2938         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2939         called from a different thread than the one that should be calling
2940         these functions.
2941
2942         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2943
2944 2006-11-15  Chris Toshok  <toshok@ximian.com>
2945
2946         * Application.cs: null out the context's MainForm when we exit
2947         RunLoop.  Fixes a newly checked in unit test as well as the last
2948         ODE from bug #79933.
2949
2950 2006-11-15  Chris Toshok  <toshok@ximian.com>
2951
2952         * Form.cs (set_Owner): allow a null value so we can clear the
2953         form's owner.
2954         (Dispose): set all our owned_form's Owner properties to null, and
2955         clear the owned_forms collection.
2956         (WM_CLOSE): clean up this a little bit.. still not right though.
2957
2958         * ApplicationContext.cs: OnMainFormClosed should only call
2959         ExitThreadCore if the main form isn't recreating.  Fixes unit
2960         test.
2961
2962 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2963
2964         [Fixes 78346]
2965
2966         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2967
2968 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2969
2970         [Fixes 79433]
2971
2972         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2973         keep popup window types from stealing focus from the main form
2974         on Windows.
2975
2976         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2977
2978         * MenuAPI.cs: Set above flag to true.
2979
2980 2006-11-15  Chris Toshok  <toshok@ximian.com>
2981
2982         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2983         the button being released is not in wParam.
2984
2985 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2986
2987         * Form.cs: Add the released button to MouseEventArgs.Button
2988         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2989         on Win32.
2990
2991 2006-11-15  Chris Toshok  <toshok@ximian.com>
2992
2993         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2994         GetText().  untested because it's unused in our implementation.
2995         Control.Text always caches the text, even if
2996         ControlStyles.CacheText is not set.
2997
2998         fixes bug #79939.
2999
3000 2006-11-15  Chris Toshok  <toshok@ximian.com>
3001
3002         [ fixes #79933 ]
3003         
3004         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3005         message.  no hiding, no disposing.
3006
3007         in the WM_CLOSE handler, hide the form if it's modal.
3008
3009 2006-11-15  Chris Toshok  <toshok@ximian.com>
3010
3011         * XplatUIX11.cs: use AddExpose instead of sending a message.
3012         fixes textbox border drawing.
3013
3014 2006-11-15  Chris Toshok  <toshok@ximian.com>
3015
3016         * PropertyGridView.cs: keep from crashing on mouse move/down when
3017         the property grid is empty.
3018
3019 2006-11-14  Jackson Harper  <jackson@ximian.com>
3020
3021         * TextControl.cs: Make PageUp and PageDown more like the MS
3022         versions.
3023         * TextBoxBase.cs: When we set the text property position the
3024         cursor at the beginning of the document.
3025
3026 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3027
3028         * Form.cs: if a mdi child's WindowState has changed
3029         before it's creation, it would display wrong control
3030         buttons.
3031         
3032 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3033
3034         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3035           (Fixes bug #79927)
3036
3037 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3038
3039         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3040         the window gets to paint its borders even if the window is
3041         getting smaller.
3042         
3043         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3044         otherwise the old control buttons would still be painted 
3045         if the window gets bigger.
3046         
3047         * PaintEventArgs.cs: add an internal method so that the clip 
3048         rectangle can be changed.
3049         
3050 2006-11-13  Chris Toshok  <toshok@ximian.com>
3051
3052         [ fixes bug #79745 ]
3053         
3054         * NotifyIcon.cs: lots of cleanup.
3055
3056         * X11Structs.cs: add an enum for XEMBED messages.
3057
3058         * XplatUIX11.cs: reindent one of the giant switch statements, it
3059         was taking up an additional tab stop, and this file is already way
3060         too wide for my laptop's screen.
3061
3062         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3063         we get it, resize the hwnd to the WMNormalHints max_width/height.
3064
3065 2006-11-13  Jackson Harper  <jackson@ximian.com>
3066
3067         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3068         teh simple way.
3069
3070 2006-11-13  Chris Toshok  <toshok@ximian.com>
3071
3072         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3073         #79898.  force a reference to the Region to stick around so the
3074         unmanaged object isn't collected (rendering our handle in the MSG
3075         stale).
3076
3077 2006-11-13  Chris Toshok  <toshok@ximian.com>
3078
3079         * XplatUIX11.cs: fix #79917 for window managers which support
3080
3081         using XStoreName on the raw utf8, and we need to convert to
3082         COMPOUND_TEXT if it's non-latin1.
3083
3084 2006-11-13  Chris Toshok  <toshok@ximian.com>
3085
3086         * Form.cs (set_DialogResult): we need to set closing to false if
3087         we're setting our result to None.  fixes bug #79908.
3088
3089 2006-11-13  Jackson Harper  <jackson@ximian.com>
3090
3091         * TextControl.cs: When formatting text, compute the adjusted tag
3092         lengths correctly, using FindTag for the end tag instead of trying
3093         to figure it out outselves.
3094         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3095         the item, ItemHeight doesn't work, because trees with large
3096         imagelists use those for their height
3097         * TreeView.cs: ActualItemHeight factors in the image height
3098         - compute left edge of checkboxes correctly
3099         - when expanding/collapsing move the bottom down one pixel, so we
3100         aren't moving part of the node
3101
3102 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3103
3104         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3105         stack in PaintEventStart so that it won't get disposed by the gc
3106         before reaching PaintEventEnd.
3107
3108 2006-11-13  Jackson Harper  <jackson@ximian.com>
3109
3110         * TextBoxBase.cs: Don't select the word if we are on a line with
3111         no text.
3112         - We don't need to position the caret on mouse up, since the mouse
3113         move handler should be doing this
3114         - When double clicking a blank line, the caret is advanced to the
3115         next line.
3116
3117 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3118
3119         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3120
3121 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3122
3123         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3124         Fixes part of bug #79910.
3125
3126 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3127
3128         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3129           (bug #79903). Some minor string updates to match ms.
3130
3131 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3132
3133         * FileDialog.cs: Don't add an extension if the filename
3134           already ends with that extension.
3135
3136 2006-11-10  Jackson Harper  <jackson@ximian.com>
3137
3138         * TreeView.cs: Use the currently highlighted node for the
3139         BeforeSelect event.
3140         * TextBoxBase.cs: There is no need to expand selection on
3141         MouseMove.
3142         - CanUndo means 'is there any undo operations', not 'is undo
3143         allowed on this textcontrol. Fixed ClearUndo unit test.
3144
3145 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3146
3147         * Button.cs: only perform click when button is Selectable (so as 
3148         not to activate default buttons when they're disabled)
3149         
3150         * Control.cs: Rewrite of the SelectNextControl and related 
3151         methods. HandleClick now selects next control if the current one
3152         is being disabled.
3153         
3154         * Form.cs: OnActivated selects next active control only if Load 
3155         has already occurred. If Load hasn't run, there's no point in 
3156         selecting here, Load might change the state of controls.
3157         
3158         * FocusTest.cs: Tests marked as working again for these fixes
3159
3160 2006-11-10  Chris Toshok  <toshok@ximian.com>
3161
3162         * XplatUIX11.cs: a couple of fixes.
3163
3164         - use XInternAtoms with almost all the atoms we need to register,
3165         instead of many, many calls to XInternAtom.  should help a bit on
3166         startup time, at the expense of making the code look a little
3167         worse.
3168
3169         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3170         isn't reparented (which seems to be a clue that we're running fon
3171         compiz) and they have an Owner form.  This fixes the tool windows
3172         in paint.net when running under compiz.
3173
3174         - when setting the opacity of a window, support both the case
3175         where the window has been reparented and also when it hasn't been.
3176         Since compiz/beryl doesn't seem to reparent windows, and these are
3177         the only window managers which support translucency, I'm not sure
3178         why we need the hwnd.reparented case at all.. but leave it in.
3179         now we get translucent windows in paint.net under compiz/beryl.
3180
3181 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3182
3183         * FileDialog.cs: Always return the value for FilterIndex that
3184           was set. Internally convert it to values that make sense.
3185
3186 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3187         
3188         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3189
3190 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3191
3192         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3193         signature still using false to make it compatible with MS but the 
3194         initial value is true. Fixes #79855.
3195
3196 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3197
3198         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3199           only available on Linux.
3200
3201 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3202
3203         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3204         reduce number of calls to redraw method during toolbar creation.
3205
3206 2006-11-09  Mike Kestner  <mkestner@novell.com>
3207
3208         * ListView.cs : raise SelectedIndexChanged when an item is selected
3209         programmatically via the Item.Selected property.  Gert's nice 
3210         ListViewSelectedIndexChanged test fixture now runs clean.
3211
3212 2006-11-09  Mike Kestner  <mkestner@novell.com>
3213
3214         * ListView.cs : raise SelectedIndexChanged when a selected item is
3215         removed from the item collection using Remove or RemoveAt.
3216
3217 2006-11-09  Mike Kestner  <mkestner@novell.com>
3218
3219         * ListView.cs : raise SelectedIndexChanged once per selected item
3220         for compat with MS.  Fixes #79849+.
3221
3222 2006-11-09  Chris Toshok  <toshok@ximian.com>
3223
3224         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3225         we need to (if we have any tab pages).  Fixes unit test.
3226
3227 2006-11-09  Chris Toshok  <toshok@ximian.com>
3228
3229         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3230         width is 0, not 3.  Fixes a unit test.
3231
3232 2006-11-09  Mike Kestner  <mkestner@novell.com>
3233
3234         * ListView.cs : use Implicit scrollbars so that focus isn't 
3235         stolen from the listview when they are clicked. Fixes #79850.
3236
3237 2006-11-09  Chris Toshok  <toshok@ximian.com>
3238
3239         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3240         have a root item.  Fixes #79879.
3241
3242 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3243
3244         * FileDialog.cs:
3245           - Fix ToString ()
3246           - An ArgumentException is now thrown if a wrong filter
3247             is applied (matches ms). The previous filter doesn't change
3248             anymore if an exception is thrown.
3249           - Changing the FileName property also affects FileNames
3250         * ColorDialog.cs: The length of the CustomColors array is always
3251           16. It doesn't matter if we use a smaller array or null to update
3252           or change the custom colors property.
3253         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3254           for RootFolder if we get a undefined value.
3255
3256 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3257
3258         * StatusBarPanel.cs: 
3259         - Width is set to MinWidth if Width is smaller than
3260         MinWidth. Fixes #79842.
3261         - MinWidth now always overrides Width (MSDN says MinWidth
3262         is set to Width when AutoSize = None, but they do not 
3263         behave like that).
3264         - Style has now the the correct default value.
3265         
3266 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3267  
3268         * TrackBar.cs: 
3269         - The control is completely invalidated on 
3270         Got/LostFocus to draw the focus rectangle correctly.
3271         - When AutoSize then height is always 45 (width for 
3272         vertical controls).
3273         
3274         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
3275         on the mouse when moved and it doesn't move when grabbed
3276         until the mouse moves as well. Also fixed some wrong 
3277         calculations when clicking on the thumb (control thought
3278         click was outside of thumb and didn't grab it).
3279         Fixes some of the issues in #79718.
3280
3281 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
3282
3283         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
3284
3285 2006-11-08  Chris Toshok  <toshok@ximian.com>
3286
3287         * PropertyGridView.cs: only call ToggleValue if the item is not
3288         readonly.
3289
3290 2006-11-08  Jackson Harper  <jackson@ximian.com>
3291
3292         * TextBoxBase.cs: The RichTextBox and textbox have very different
3293         word selection methods.  Implement the textbox's simple word
3294         selection here, and let the RichTextBox override and provide it's
3295         own.
3296         - Don't do extra selection on mouseup
3297         * RichTextBox.cs: Use the documents word selection algorithm, I
3298         think ideally, this function will be pulled into the
3299         RichTextBox.cs code someday.
3300
3301 2006-11-08  Chris Toshok  <toshok@ximian.com>
3302
3303         * RootGridEntry.cs: new class to represent GridItemType.Root.
3304
3305         * CategoryGridEntry.cs: reformat, and add boilerplate.
3306         
3307         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3308         returns the UI parent anyway, and we need special handling to
3309         implement the GetTarget method in the face of it.  Also, implement
3310         Select().
3311
3312         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3313         a root grid item, and use that instead of PropertyGrid.grid_items.
3314         Also, make use of TypeConverters (and add limitted support for
3315         ICustomTypeDescriptors) when initially populating the grid.
3316         Arrays now show up more or less properly.
3317
3318 2006-11-08  Chris Toshok  <toshok@ximian.com>
3319
3320         * Application.cs: set the modal dialog to non modal after we close
3321         it.  Fixes bug #79866.
3322
3323 2006-11-08  Jackson Harper  <jackson@ximian.com>
3324
3325         * TextControl.cs: When combining lines carry over the line end
3326         style from the end line.
3327         - Invalidate the selected area when setting it, if it is visible.
3328         * TextBoxBase.cs: Only rich text box can do full line selects.
3329         - Make sure to set the cursor position when there is a click,
3330         otherwise two clicks in separate areas could cause a large chunk
3331         to be selected.
3332
3333 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3334
3335         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3336         Fixes #79863.
3337
3338 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3339
3340         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3341         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3342
3343 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3344
3345         * MenuAPI.cs: Ignore right click for menu actions and fixes
3346         menu border when clicked.  Fixes #79846.
3347
3348 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3349
3350         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3351         MouseState after create wParam for message, this fixes mouse button 
3352         equal none in mouse up events.
3353         
3354 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3355
3356         * Control.cs : Focus() now calls Select to set the Container's
3357         Active Control and to give it focus. To avoid infinite recursion
3358         (because ActiveControl also calls Focus at one point), a check 
3359         is made in Focus with the help of a new internal variable
3360         is_focusing.
3361
3362 2006-11-07  Mike Kestner  <mkestner@novell.com>
3363
3364         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3365         if there's a selection.  Fixes #79849.
3366
3367 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3368
3369         * PropertyGrid.cs: Avoid fixed height of help description label.
3370         Fixes part of bug #79829.
3371
3372 2006-11-07  Chris Toshok  <toshok@ximian.com>
3373
3374         * XplatUIX11.cs: fix #79790 again, by using the
3375         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3376
3377 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3378
3379         * ToolBar.cs: Fix left click checking.
3380
3381 2006-11-07  Chris Toshok  <toshok@ximian.com>
3382
3383         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3384
3385 2006-11-07  Chris Toshok  <toshok@ximian.com>
3386
3387         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3388         PropertyManager unit tests.
3389
3390         * PropertyManager.cs: make property_name internal.
3391
3392 2006-11-07  Chris Toshok  <toshok@ximian.com>
3393
3394         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3395         pass a unit test.  Also, don't set image_index to anything in
3396         response to setting the ImageList property.
3397
3398 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3399
3400         * ToolBar.cs: Ignore click events when mouse button is not a
3401         left button, only accepts other button for dropdown menus.  
3402         Fixes #79854.
3403
3404 2006-11-07  Chris Toshok  <toshok@ximian.com>
3405
3406         * DataGrid.cs: make the back and parent row buttons a little less
3407         ugly.
3408
3409 2006-11-07  Jackson Harper  <jackson@ximian.com>
3410
3411         * TextBoxBase.cs: When converting to Text don't put line breaks in
3412         for soft line breaks.
3413         * TextControl.cs: There is an initial "fake" line in the document,
3414         this is now a soft break line, so that an extra line feed doesn't
3415         get added to the end of documents.
3416
3417 2006-11-07  Chris Toshok  <toshok@ximian.com>
3418
3419         [ fix bug #79778 ]
3420         
3421         * CurrencyManager.cs: if the list is readonly, don't bother
3422         checking if IBindingList.AllowNew is true.
3423
3424         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3425         for non-DataRowView datasources..  or rather, make it not crash.
3426         (DataGridPaintRelationRow): make sure we limit the row painting to
3427         the area not covered by the row header, and make our cell width at
3428         least large enough to cover the relation area.  This allows grids
3429         that have relations but no rows to render correctly.
3430         (DataGridPaintRowContents): same type of changes here.
3431         (SetDataSource): move back to always calling
3432         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3433         navigating back through relations.
3434         (HitTest): handle the case where we have no cells but have
3435         relations.  Right now we generate a hit in cell 0 of whatever the
3436         row is, not sure if this is strictly correct, but it works for our
3437         purposes.
3438         
3439         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3440         bother doing anything.
3441
3442 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3443
3444         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3445         early version of StatusStrip.  Not responsible for eaten
3446         application or firstborn children.
3447
3448 2006-11-06  Chris Toshok  <toshok@ximian.com>
3449
3450         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3451         call GetTabRect with a -1 index.  Fixes #79847.
3452
3453 2006-11-06  Jackson Harper  <jackson@ximian.com>
3454
3455         * TreeNodeCollection.cs: Update scrollbars after clearing.
3456
3457 2006-11-06  Chris Toshok  <toshok@ximian.com>
3458
3459         * NumericUpDown.cs: fix the ToString method for some unit test
3460         love.
3461
3462 2006-11-06  Chris Toshok  <toshok@ximian.com>
3463
3464         * PropertyGrid.cs:
3465         - set the initial SelectedGridItem if we can.
3466
3467         - Exclude non-mergable properties only if we're merging > 1
3468         object.  Merging 1 object isn't really merging, obviously.
3469
3470         - Handle PropertySort.NoSort just like Alphabetical, which is
3471         wrong of course, but at least gets things on the screen.
3472         
3473         * PropertyGridView.cs:
3474         - Add method "FindFirstItem" which finds the first property grid
3475         item, so we can select it by default.
3476
3477         - make use of GridEntry.CanResetValue.
3478
3479         - Don't call RedrawBelowItemOnExpansion here anymore, the
3480         individual GridEntry's will do that.
3481
3482         - Remove the ITypeDescriptorContextImpl internal class.
3483         
3484         * GridEntry.cs:
3485         - this class needs to implement ITypeDescriptorContext, as it's
3486         what MS's PropertyDescriptorGridEntry does, which means we can
3487         remove the ITypeDescriptorContextImpl internal class from
3488         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3489
3490         - keep a reference to our PropertyGridView, and move the call to
3491         RedrawBelowItemOnExpansion here from PGV.  This means
3492         programmaticly setting Expanded actually does something visible.
3493
3494         - add a CanResetValue() function which takes into account our
3495         possibly multiple "selected_objects" in the merged case.  Shifting
3496         PropertyGridView to use this method fixes another unreported
3497         crasher found running the test for #79829.
3498
3499         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3500         is updated to reflect this.
3501
3502         * CategoryGridEntry.cs: the ctor takes the PGV now.
3503         
3504 2006-11-06  Jackson Harper  <jackson@ximian.com>
3505
3506         * TextControl.cs: These are 1 based.
3507         * TextBoxBase.cs: When setting the selected text, don't change the
3508         selected text tags, this is done by ReplaceText, just position the
3509         cursor at the end of the new text.
3510
3511 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3512
3513         * ListView.cs: Allow label edit only when, when LabelEdit is
3514           set to true.
3515
3516 2006-11-06  Jackson Harper  <jackson@ximian.com>
3517
3518         * TextControl.cs: If a suitable wrapping position isn't found,
3519         just wrap right in the middle of a word.
3520
3521 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3522
3523         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3524           bug #79820.
3525
3526 2006-11-06  Jackson Harper  <jackson@ximian.com>
3527
3528         * TreeView.cs: Can't use the VisibleCount property when setting
3529         scrollbar heights, because this doesn't take into account whether
3530         or not the horz scrollbar just came visible.
3531
3532 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3533
3534         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3535         activated.  Fixes #79369, #79832.
3536
3537 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3538
3539         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3540           had to remove support for links that point to a directory. FileInfo
3541           returns no usefull information (means, the directory they point to)
3542           for such links. Replaced some empty string ("") with String.Empty.
3543
3544 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3545
3546         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3547         NullReferenceException when attempting to remove node that is not in
3548         collection. Throw NullReferenceException when null is passed to 
3549         Remove. Allow first element of the collection to be removed. Fixes
3550         bug #79831.  In GetEnumerator ().Current return null if positioned 
3551         before the first element of the collection. In GetEnumerator ().Reset,
3552         position before first element of the collection.
3553
3554 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3555
3556         * PropertyGrid.cs: To match MS, remove default title and description
3557         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3558         buttons.
3559
3560 2006-11-04  Chris Toshok  <toshok@ximian.com>
3561
3562         * Theme.cs: add a Clamp method, just for kicks.
3563
3564         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3565
3566 2006-11-04  Chris Toshok  <toshok@ximian.com>
3567
3568         * Form.cs: if the form isn't visible, Close() does nothing.
3569
3570 2006-11-03  Chris Toshok  <toshok@ximian.com>
3571
3572         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3573         Hide it.
3574         (WndProc): don't Dispose after handling the WM_CLOSE message.
3575
3576         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3577         them as such, instead of using casts from Control to Form.  Also,
3578         don't Dispose of the modal dialog when we fall out of the loop -
3579         Close() it instead.
3580
3581         fixes bug #79813.
3582
3583 2006-11-03  Chris Toshok  <toshok@ximian.com>
3584
3585         * Control.cs (Dispose): only go through the dispose thing if we're
3586         @disposing, and we haven't already been disposed.  Fixes bug
3587         #79814.
3588
3589         * Form.cs: no reason to call "base.Dispose()" here instead of
3590         "Dispose()".
3591
3592 2006-11-03  Mike Kestner  <mkestner@novell.com>
3593
3594         * ComboBox.cs : use ToString instead of casts in AddItem for
3595         sorting functionality.  Fixes #79812.
3596
3597 2006-11-03  Chris Toshok  <toshok@ximian.com>
3598
3599         * Application.cs: pave the way for actually using the thread
3600         exception dialog.  it's ifdefed out at the moment.
3601
3602 2006-11-03  Chris Toshok  <toshok@ximian.com>
3603
3604         * ThreadExceptionDialog.cs: until we get a better layout, actually
3605         hide the details textbox and label when we shouldn't see them.
3606
3607 2006-11-03  Jackson Harper  <jackson@ximian.com>
3608
3609         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3610         multiline textboxes anymore.  This method also determines the
3611         width/height of a textboxes canvas area.
3612         - Sorta a revert of the last patch.  For multiline just position
3613         the controls, then bail.  This way the scrollbar width won't be
3614         altered.
3615
3616 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3617
3618         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3619         it dont need.  Fixes #79537.
3620
3621 2006-11-02  Jackson Harper  <jackson@ximian.com>
3622
3623         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3624         send the status after firing the DndOver event.
3625
3626 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3627
3628         * TrackBar.cs: Now orientation only switches height / width if
3629         the control's handle is created (Win32 does it like this). Also 
3630         fixed a typo in ToString() for a test to pass, changed the 
3631         exception thrown in set_LargeChange and set_SmallChange to 
3632         match Win32 behaviour, and added TrackBar tests to the unit 
3633         tests.
3634
3635 2006-11-02  Chris Toshok  <toshok@ximian.com>
3636
3637         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3638         not _NET_WM_STATE_NO_TASKBAR.
3639
3640 2006-11-02  Jackson Harper  <jackson@ximian.com>
3641
3642         * TextControl.cs: Increment count by one, since in the update view
3643         count - 1 is used.
3644
3645 2006-11-02  Jackson Harper  <jackson@ximian.com>
3646
3647         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3648         the mouse is in the client rectangle (duh).
3649
3650 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3651         
3652         * TrackBar.cs: Fixed trackbar jumping around when clicking
3653         on it - the trackbar was not detecting correctly at which
3654         side of the thumb the click was done. (fixes #79718)
3655
3656 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3657
3658         * ListBox.cs: scroll visible area when change SelectedIndex to
3659         a non visible area.  Fixes #79481.
3660
3661 2006-11-01  Jackson Harper  <jackson@ximian.com>
3662
3663         * TextControl.cs: When replacing the selection move the selection
3664         start/end/anchor to the end of the new text.
3665
3666 2006-11-01  Jackson Harper  <jackson@ximian.com>
3667
3668         * XplatUIWin32.cs: When setting the parent change the controls
3669         visibility to it's visibility flag, not to it's old parents
3670         visibility (.Visible walks the parent chain).
3671
3672 2006-11-01  Chris Toshok  <toshok@ximian.com>
3673
3674         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3675         XSetTransientForHint fix breaks paint .net's tool windows.  more
3676         work needed for that one.
3677
3678 2006-11-01  Chris Toshok  <toshok@ximian.com>
3679
3680         * ScrollBar.cs: throw ArgumentException instead of Exception in
3681         LargeChange/SmallChange setters.  fixes unit tests.
3682
3683 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3684
3685         * ContainerControl.cs: reverted rev.67183 (which was itself
3686         a reversion of rev.66853... eh).
3687         
3688         * Control.cs: Fixes Reflector hang by changing Focus() call
3689         to what it was before rev.66643 (calling Select() here sets 
3690         ActiveControl, which in some situations calls back Focus and 
3691         eventually does a stack overflow). Temp fix.    
3692         Changes to GetNextControl() to not look for children to select when
3693         parent cannot be selectable (so it looks for siblings instead)  
3694         
3695 2006-10-31  Mike Kestner  <mkestner@novell.com>
3696
3697         * CheckedListBox.cs : off by one error in returned index from
3698         ObjectCollection.Add.  Fixes #79758.
3699
3700 2006-10-31  Chris Toshok  <toshok@ximian.com>
3701
3702         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3703         calls for the textbox/spinner, to keep from recursing to the point
3704         where we crash.  Fixes #79760.
3705
3706 2006-10-31  Chris Toshok  <toshok@ximian.com>
3707
3708         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3709         null/"" value, just return.  matches ms's behavior and fixes some
3710         failing tests.
3711
3712 2006-10-31  Chris Toshok  <toshok@ximian.com>
3713
3714         * Control.cs (set_Capture): make a logic a little easier to
3715         follow.
3716
3717         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3718         if it's being destroyed.  A necessary fix surely, but a bandaid
3719         also, to fix the stuck capture problem in bug #78413.
3720
3721 2006-10-31  Chris Toshok  <toshok@ximian.com>
3722
3723         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3724         convention of clearing hwnd.ClientRect when we set the
3725         width/height (so it'll be recalculated by Hwnd).
3726
3727 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3728
3729         * ContainerControl.cs: reversed Contains check from
3730         ActiveControl due to hanging problems. This fix
3731         partly regresses #79667 (button does not have
3732         initial focus), so this might be a symptom for 
3733         a larger parenting problem (set_ActiveControl
3734         is being called but the child control does
3735         not have the parent set yet?)   
3736         
3737 2006-10-31  Mike Kestner  <mkestner@novell.com>
3738
3739         * MenuAPI.cs : fix keynav when menu is click activated.
3740
3741 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3742
3743         * ToolStrip*: Version 0.2.
3744
3745         * MenuStrip.cs: Version 0.1.
3746
3747         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3748
3749 2006-10-30  Chris Toshok  <toshok@ximian.com>
3750
3751         [ fixes the oversized notify icon issue in bug #79745 ]
3752         
3753         * NotifyIcon.cs: scale the icon down to the size we're given by
3754         the XplatUI layer (this would be faster if we did it once instead
3755         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3756         since it's never invoked.
3757
3758         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3759         pixels high by default, so let's hardcode our systray icon to that
3760         size.  The SYSTEM_TRAY protocol should really have a way for
3761         client apps to query for the correct icon size.. but oh well.  A
3762         couple of patches to deal with the screwy client_window ==
3763         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3764         instance, and also make sure we don't XSelectInput twice).
3765
3766 2006-10-30  Chris Toshok  <toshok@ximian.com>
3767
3768         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3769         recreating forms.  Control recreation is the bane of my existence.
3770         Fix it in a way that keeps everyone happy.
3771
3772 2006-10-30  Chris Toshok  <toshok@ximian.com>
3773
3774         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3775         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3776         client_windows not being resized to the proper size (ReportBuilder
3777         shows this extremely well).
3778
3779 2006-10-30  Chris Toshok  <toshok@ximian.com>
3780
3781         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3782         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3783         showing up in the gnome taskbar.  Fixes bug #79790.
3784
3785 2006-10-30  Chris Toshok  <toshok@ximian.com>
3786
3787         * ApplicationContext.cs: guard against a NRE.
3788
3789         * Application.cs: null out the old MainForm for the context, so we
3790         don't try to use it again once it's disposed.  Fixes bug #79783.
3791
3792 2006-10-30  Chris Toshok  <toshok@ximian.com>
3793
3794         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3795         BindingContext, set the data source directly, otherwise do the
3796         lazy approach - the actual ListManager will be created when we get
3797         a BindingContext. Fixes bug #79700.
3798
3799 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3800
3801         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3802           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3803
3804         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3805
3806 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3807
3808         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3809         of SetVisible that allows a window to be shown, but not activated.
3810         This is needed on Windows for MenuStrip, and can probably be used
3811         with MainMenu and ComboBox to fix the focus stealing issues on
3812         Windows.
3813
3814         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3815
3816 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3817
3818         * PictureBox.cs: Fix the output of the ToString method.
3819
3820 2006-10-29  Chris Toshok  <toshok@ximian.com>
3821
3822         * Control.cs (get_TopLevelControl): fix bug #79781.
3823
3824 2006-10-29  Chris Toshok  <toshok@ximian.com>
3825
3826         * ListControl.cs (set_DataSource): throw Exception here, not
3827         ArgumentException, to match MS behavior.
3828
3829 2006-10-29  Chris Toshok  <toshok@ximian.com>
3830
3831         * Form.cs: remove the try-catch's around calls to GetWindowState.
3832         We can just check the return value.
3833
3834         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3835         Instead return -1.
3836
3837         * XplatUI.cs: Add note about additional return value for
3838         GetWindowState.
3839
3840 2006-10-29  Chris Toshok  <toshok@ximian.com>
3841
3842         * Control.cs (CreateHandle): when we create our handle, we also
3843         create the handles of our child controls.  Fixes one of the
3844         Control unit tests (CH11).
3845
3846 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3847
3848         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3849
3850 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3851
3852         * ThemeClearlooks.cs: A little speedup.
3853
3854 2006-10-27  Chris Toshok  <toshok@ximian.com>
3855
3856         * Control.cs: implement Control.FromChildHandle in a way that
3857         matches the docs (and fixes the failed test.)
3858
3859 2006-10-27  Chris Toshok  <toshok@ximian.com>
3860
3861         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3862         comments).
3863
3864         * DataGrid.cs: implement ResetForeColor such that the tests
3865         succeed.
3866         
3867 2006-10-27  Chris Toshok  <toshok@ximian.com>
3868
3869         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3870         being set to "".  Fixes bug #79759.
3871
3872 2006-10-27  Jackson Harper  <jackson@ximian.com>
3873
3874         * TextControl.cs: We need to clear the entire selection area when
3875         setting the start, otherwise multiline selections are still
3876         visible.
3877
3878 2006-10-26  Chris Toshok  <toshok@ximian.com>
3879
3880         * PropertyGridView.cs: 
3881
3882         - ifdef all the code specific to the double
3883         buffer case, and provide some alternatives in the non-doublebuffer
3884         code, which makes heavy use of XplatUI.ScrollWindow to move things
3885         around without having to invalidate (and cause flicker).  There
3886         are still some drawing problems in the non-doublebuffered case, so
3887         DOUBLEBUFFER is defined by default.
3888
3889         - Fix the way dropdowns are handled.  now we explicitly watch for
3890         the events which might cause the dropdown to close, and break out
3891         of the nested event loop there.  This gets rid of all Capture
3892         code, at the expense of the Msg special casing.  Seems to work,
3893         though, and fixes bug #79743.
3894
3895 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3896         * Control.cs: SetIsRecreating now recreates implicitly added
3897         child controls as well. Finally fixes #79629. The flag passed to 
3898         SetIsRecreating has also been removed since it wasn't used.
3899         
3900 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3901
3902         * PageSetupDialog.cs: Clean some code, fix some bits, 
3903         add some checks, and add a printer sub-dialog.
3904
3905 2006-10-26  Chris Toshok  <toshok@ximian.com>
3906
3907         * PropertyGrid.cs: make set_SelectedObject call
3908         set_SelectedObjects, and move the duplicate logic to the
3909         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3910
3911         * PropertyGridView.cs: hide the textbox when we get a
3912         SelectedObjectsChanged event.
3913
3914         Fixes bug #79748.
3915
3916 2006-10-26  Chris Toshok  <toshok@ximian.com>
3917
3918         * PropertyGridView.cs: deal with the type converter not supporting
3919         GetStandardValues() or GetStandardValues() returning null, which
3920         is does in the default case.  Fixes #79742.
3921
3922 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3923
3924         * CheckedListBox.cs: nunit no longer crashes when selecting 
3925         Project/Edit menu option
3926         
3927 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3928
3929         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3930         is no menu selected. fixes #79739
3931
3932 2006-10-25  Chris Toshok  <toshok@ximian.com>
3933
3934         * PropertyGridView.cs: factor out the splitter invalidation code
3935         into the SplitterPercent setter, and for kicks implement the
3936         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3937         amount in either direction.
3938
3939 2006-10-25  Chris Toshok  <toshok@ximian.com>
3940
3941         * PropertyGridView.cs: do some cleanup of the brush used to draw
3942         text - read only fields should be grayed out.  not sure how to do
3943         this with the textbox, though.  but the textbox's should also be
3944         readonly now at least.  Also, hide/show the textbox when resizing
3945         the control.
3946         
3947         * CursorConverter.cs: use System.Reflection when getting the
3948         properties of Cursors, as TypeDescriptor.GetProperties isn't
3949         returning static properties.
3950
3951 2006-10-25  Chris Toshok  <toshok@ximian.com>
3952
3953         * PropertyGridView.cs: factor out the up/down handling, and reuse
3954         it for page up/down.  also add End/Home support.
3955
3956 2006-10-25  Chris Toshok  <toshok@ximian.com>
3957
3958         * PropertyGridView.cs:
3959
3960         - ensure the selected grid item is visible in the scrolled area,
3961         fixes bug #79572.
3962
3963         - fix Keys.Down handling when you're on the last item in the
3964         propertygrid.
3965
3966 2006-10-25  Mike Kestner  <mkestner@novell.com>
3967
3968         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3969         clicks too.  Fixes #79725.
3970
3971 2006-10-24  Chris Toshok  <toshok@ximian.com>
3972
3973         * PropertyGrid.cs: use property.Converter instead of
3974         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3975         TypeConverters declared on the property as well as on the
3976         PropertyType.  Fixes bug #79678.
3977
3978 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3979
3980         * MimeIcon.cs, Mime.cs:
3981           Fallback to the default platform handler if no shared mime info
3982           stuff exists (fixes #79693).
3983
3984 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3985         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3986         from previous fix (duh).
3987
3988 2006-10-20  Chris Toshok  <toshok@ximian.com>
3989
3990         * PropertyGridView.cs: the dropdown should be MIN(number of items
3991         in list, 15).  Fixes #79551.
3992
3993 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3994         Fixes #79384, #79394, #79652, #79667
3995         * Application.cs: 
3996         
3997         - Modal windows are now destroyed in the proper order for windows
3998         
3999         * ContainerControl.cs:
4000         
4001         - ActiveControl setter has more conditions on when to return:
4002                 - if we're reselecting the active control, but it actually
4003                 didn't have focus (window hidden or some such), it runs
4004                 - if the active control being selected doesn't actually 
4005                 exist in the container, it returns
4006         
4007         * Form.cs
4008         
4009         - The ShowDialog now gets the current form as the owner when
4010         invoking without parameters, and correctly activates the owner 
4011         when returning
4012         
4013         * MessageBox.cs
4014         
4015         - MessageBox now catches the Escape key to exit
4016
4017 2006-10-20  Chris Toshok  <toshok@ximian.com>
4018
4019         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4020         most of bug #79676):
4021
4022         - you can navigate around the property grid with the arrow keys.
4023
4024         - the dropdown is sized properly when the pg has a vertical
4025         scrollbar.
4026
4027         - fix the indentation for subentries, and properly select the
4028         entire label rect.
4029
4030         - fix the gray bar's drawing (only draw it to the last element,
4031         not for the height of the control.  Also make sure we draw that
4032         last horizontal grid line.
4033
4034         - use the same mechanism the datagrid uses wrt the editing textbox
4035         when scrolling/resizing/etc.  Namely, we hide it first, do the
4036         operation, then show it again (if it's still visible).
4037         
4038         - aggressively remove a lot of unnecessary refreshes (and also
4039         calls to Invalidate(). call more limited variants, and only redraw
4040         what we need.)
4041         
4042         * PropertyGrid.cs:
4043
4044         - when we're populating the merged collection, fill in the UI
4045         parent with either the passed in item, or the category item we
4046         create.
4047
4048         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4049
4050         * GridItem.cs: drop some fully qualified names.
4051         
4052         * GridEntry.cs: add a "UIParent", which is basically the parent
4053         treenode.
4054
4055         * GridItemCollection.cs: add an IndexOf method.
4056
4057 2006-10-20  Mike Kestner  <mkestner@novell.com>
4058
4059         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4060         a working win32 NC invalidation mechanism, we can't invalidate
4061         menus.  [Fixes #79705]
4062
4063 2006-10-20  Mike Kestner  <mkestner@novell.com>
4064
4065         * ListBox.cs : don't update the VScrollbar if the list is empty,
4066         just hide it.  [Fixes #79692]
4067
4068 2006-10-20  Jackson Harper  <jackson@ximian.com>
4069
4070         * RichTextBox.cs: Handle some special chars better, and don't skip
4071         the entire group when we encounter a special char that we don't
4072         handle correctly.
4073
4074 2006-10-18  Chris Toshok  <toshok@ximian.com>
4075
4076         * PropertyGridView.cs: address a number of issues from bug #79676,
4077         mostly of the cosmetic variety.
4078
4079         - The highlight rectangle for indented items not extends all the
4080         way to the left.
4081
4082         - Indented items aren't indented so much.
4083
4084         - the dropdown is properly sized width-wise if the pg has a
4085         vertical scrollbar.
4086
4087 2006-10-18  Chris Toshok  <toshok@ximian.com>
4088
4089         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4090         systray stuff is rather convoluted to begin with.
4091
4092         systray icons are a single window for some reason (that I haven't
4093         figured out yet), and for them, client_window == whole_window.
4094         Given the way the tests are structured elsewhere to determine
4095         which paints are pending (client vs. nc), that situation will
4096         always yield PAINT, not NCPAINT.  So, if we have a pending
4097         nc_expose and no pending expose, remove the hwnd from the paint
4098         queue, and also set nc_expose_pending to false, to keep us from
4099         blocking further expose's adding the hwnd to the paint queue.
4100
4101         phew.  like i said, a rather convoluted change.  Fixes the
4102         notifyicon repaint issues in bug #79645.
4103
4104 2006-10-18  Chris Toshok  <toshok@ximian.com>
4105
4106         * Form.cs: when getting the backcolor of the form, don't get
4107         base.BackColor, as this allows parents to influence the background
4108         color.  This breaks mdi forms.  Instead, if the background_color
4109         is empty, return the default.
4110
4111 2006-10-18  Chris Toshok  <toshok@ximian.com>
4112
4113         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4114         to being private instead of internal static.
4115
4116         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4117         crap, it wasn't working for more deeply nested controls anyway,
4118         and we already have the is_recreating flag - use that instead.
4119         Before calling DestroyHandle in RecreateHandle, recurse through
4120         the control tree setting it to true.  this returns the recreate
4121         code to much of its original simplicity, while now guaranteeing we
4122         actually recreate everything we're supposed to.  This change gets
4123         fyireporting actually showing mdi children.
4124
4125 2006-10-17  Chris Toshok  <toshok@ximian.com>
4126
4127         * Form.cs: remove some debug spew, and collapse some duplicate
4128         code at the end of SetClientSizeCore.
4129
4130         * XplatUIX11.cs: 
4131         - add some more debug spew here too wrt Destroy handling.
4132         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4133         in Control's handling of WM_DESTROY.
4134         - Remove the handling of zombie window DestroyNotifies from the
4135         event loop - we don't need it.  Now the only DestroyNotifies we
4136         actually handle are ones generated by X.
4137         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4138         match gtk's (functioning) handling of this. This keep metacity
4139         from leaving droppings in the form of wm borders with no window
4140         contents all over the place.
4141
4142         * Control.cs:
4143         - add a bunch of debug spew wrt control recreation.
4144         - fix a bug where we weren't tracking Visible properly on
4145         recreated hwnds.
4146         - fixed the WM_PAINT double buffer handling to support re-entrant
4147         calls (yes, i know it's gross, but it's happening to us).
4148
4149 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4150         * ThemeWin32Classic.cs: changed drawing of selected days
4151         to make them look better.
4152
4153 2006-10-16  Chris Toshok  <toshok@ximian.com>
4154
4155         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4156         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4157
4158         * XplatUIX11.cs: move away from using hwnd.client_dc and
4159         hwnd.non_client_dc and on to a stack of dc's (and in window's
4160         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4161         without puking or not disposing of Graphics objects.
4162
4163         * XplatUIOSX.cs: same.
4164
4165         * XplatUIWin32.cs: same.
4166
4167 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4168
4169         * FileDialog.cs: Don't call on_directory_changed inside
4170           OnSelectedIndexChanged (it changes the SelectedIndex too).
4171           Instead move it to OnSelectionChangeCommitted.
4172
4173 2006-10-13  Chris Toshok  <toshok@ximian.com>
4174
4175         * XplatUIX11.cs: more Destroy work.  the current code does the
4176         following things, in order:
4177
4178         1. Enumerates all handles of all controls at or below the one
4179         being destroyed, in pre-order.  As it is doing this, it marks the
4180         handles as zombie and clears all references to them.
4181         
4182         2. calls XDestroyWindow on the window passed in.
4183
4184         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4185         list.
4186
4187 2006-10-13  Chris Toshok  <toshok@ximian.com>
4188
4189         * XplatUIX11.cs: set hwnd.zombie to true before calling
4190         SendMessage (WM_DESTROY).  this keeps us from marking the new
4191         window a zombie, and also keeps us from calling sendmessage at
4192         all.
4193
4194 2006-10-13  Jackson Harper  <jackson@ximian.com>
4195
4196         * TextControl.cs: Do not show the caret and selection at the same
4197         time.  Reduces ugliness by 35%.
4198
4199 2006-10-13  Chris Toshok  <toshok@ximian.com>
4200
4201         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4202         zombie after we do the recursive call, so we actually do call
4203         SendMessage on the children controls.
4204         (GetMessage): if we find a pending paint event for a zombie hwnd,
4205         remove the hwnd from the paint queue, or else it will always be
4206         there (and we'll effectively loop infinitely)
4207
4208 2006-10-13  Mike Kestner  <mkestner@novell.com>
4209
4210         * MenuItem.cs : add Selected format under keynav too.
4211         Fixes #79528.
4212
4213 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4214
4215         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4216         implementation and that of MS.
4217
4218 2006-10-13  Chris Toshok  <toshok@ximian.com>
4219
4220         * Control.cs (OnInvalidated) only futz with the invalid_region if
4221         the control is double buffered.  this fixes the apparent hang in
4222         the ListView unit tests.  Someone needs to make the
4223         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4224
4225 2006-10-13  Chris Toshok  <toshok@ximian.com>
4226
4227         * PropertyGridView.cs:
4228
4229         - do a little refactoring so that only one place calls
4230         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4231         else call that.  Also make it Refresh, since there are redraw bugs
4232         otherwise (we should take a look at that...)
4233
4234         - do a little more refactoring work to share the body of code
4235         involved with the drop down.  it was duplicated in the code
4236         dealing with the listbox handling and in the code dealing with the
4237         UITypeEditors.
4238
4239         - add a Capture to the dropdown form's control once it's
4240         displayed, and add a MouseDown handler that checks to make sure
4241         the position is inside the control.  If it's not, close the
4242         dropdown.  This fixes #78190.
4243
4244         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4245         if the value is different than the initial value.
4246         
4247 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4248
4249         * Control.cs: see #78650
4250         - Fixed GetNextControl for several cases:
4251                 - Changed FindFlatForward to return 
4252                 correct sibling control when more than one
4253                 control has same TabIndex as the currently 
4254                 focused one.
4255                 - Changed FindFlatBackward to loop children
4256                 from last to first and apply same logic as in
4257                 FindFlatForward
4258                 - Changed FindControlForward to search for
4259                 children when control is not a container
4260                 but has children, or search for siblings if
4261                 control is a container...
4262                 - Changed FindControlBackward   to continue
4263                 searching for child controls when hitting 
4264                 Panel-like parents
4265                 
4266         - Fixed Focus method to update ActiveControl
4267         (FocusTest.FocusSetsActive failure)
4268         
4269         * TabControl.cs:
4270         - Focus rectangle now refreshes when gaining
4271         or losing focus
4272         - Removed grab for Tab key on IsInputKey that 
4273         was keeping tab navigation from working (#78650)
4274
4275 2006-10-13  Chris Toshok  <toshok@ximian.com>
4276
4277         * PropertyGridView.cs:
4278         - Rewrite SetPropertyValue to loop over SelectedGridItem's
4279         SelectedObjects.
4280
4281         - Deal with GridItem.Value == null a few places.
4282
4283         * PropertyGrid.cs: 
4284         - replace the PopulateGridItemCollection with a pair of methods
4285         which compute the intersection of all the properties in the
4286         SelectedObjects array.  Fixes #79615.
4287
4288         - Throw ArgumentException from set_SelectedObjects if there's a
4289         null in the array.
4290
4291         - Add GetTarget method which can be used to traverse up the
4292         GridItem.Parent chain.  It depends on the assumption that
4293         selected_objects for different GridEntries are always in the same
4294         order (a safe assumption).  Use this method and loop over all the
4295         selected objects in the entry when calling RemoveValueChanged and
4296         AddValueChanged.
4297         
4298         * GridEntry.cs: Make this handle multiple selected objects.
4299         .Value returns null if not all the selected objects share the same
4300         value.
4301
4302 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4303         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4304           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4305           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4306           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4307           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4308         add additional functionality.
4309
4310 2006-10-12  Mike Kestner  <mkestner@novell.com>
4311
4312         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4313         * HelpProvider.cs : new ToolTipWindow ctor sig.
4314         * ToolTip.cs : remove ToolTip param from Window sig since it is
4315         not used.
4316         * ToolBar.cs : add tooltip support.  Fixes #79565.
4317
4318 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4319
4320         * ComboBox.cs: move the events in set_SelectedIndex to 
4321         after the call to HighlightIndex in order to avoid 
4322         possible recursion and subsequent problems with the call
4323         to HighlightIndex and include a range check in 
4324         set_HighlightIndex. Fixes #79588
4325         
4326 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4327
4328         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4329         to ui thread's settings instead of sunday. 
4330         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4331
4332 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4333
4334         * DateTimePicker.cs
4335         * MonthCalendar.cs
4336         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4337         and implement missing functionality (selecting different parts 
4338         of the date and edit them individually with the keyboard).
4339         
4340 2006-10-11  Chris Toshok  <toshok@ximian.com>
4341
4342         * Control.cs (OnInvalidated): fix NRE relating to last change.
4343
4344 2006-10-11  Chris Toshok  <toshok@ximian.com>
4345
4346         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4347         atoms in _NET_WM_STATE here if the window is maximized.  We need
4348         to do this because we're *replacing* the existing _NET_WM_STATE
4349         property, so those atoms will be lost otherwise, and any further
4350         call to GetWindowState will return Normal for a window which is
4351         actually maximized.  Fixes #79338.
4352
4353 2006-10-11  Jackson Harper  <jackson@ximian.com>
4354
4355         * TextControl.cs: Special case for setting selection end to
4356         selection start, we basically kill the anchor.
4357         - some todo comments.
4358
4359 2006-10-11  Chris Toshok  <toshok@ximian.com>
4360
4361         * Control.cs: switch to using an "invalid_region" to track which
4362         parts of the image buffer need updating.  This is more code than
4363         the simple fix from r66532.  That version just attempted to always
4364         fill the entire buffer on redraw, which turns out to be
4365         inefficient when invalidating small rectangles.  This version
4366         simply adds the invalid rectangle to the invalid region.  When we
4367         get any WM_PAINT message we see if it can be filled using the
4368         image buffer, and if it can't (if the paint event's clip rectangle
4369         is visible in the invalid region) we first fill the image buffer.
4370         So, the image buffer is still a cache, we just fill it lazily.
4371
4372         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4373         need it any longer.
4374
4375 2006-10-11  Chris Toshok  <toshok@ximian.com>
4376
4377         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4378         well as size after calling XMoveResizeWindow.  This keeps us from
4379         ignoring future SetWindowPos calls.  Fixes the disappearing
4380         DateTimePicker in the ToolBarDockExample from bug #72499.
4381
4382 2006-10-11  Chris Toshok  <toshok@ximian.com>
4383
4384         * TextBoxBase.cs: reorder things a bit when it comes to
4385         resizing-causing-recalculation.  we were recalculating the
4386         document when our position was changed, which shouldn't happen.
4387         We only care about size changes.  Clear up some more redundant
4388         recalculation calls while I'm at it.  This makes the toolbar dock
4389         example snappy when you're just dragging toolbars around (since it
4390         causes a relayout whenever you move one.)
4391
4392 2006-10-11  Chris Toshok  <toshok@ximian.com>
4393
4394         * ToolBarButton.cs (get_Rectangle): this only returns
4395         Rectangle.Empty if Visible == false, or Parent == null.
4396         Parent.Visible doesn't matter.
4397
4398 2006-10-10  Chris Toshok  <toshok@ximian.com>
4399
4400         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4401         by .net 1.1, so switch to an internal method instead.
4402
4403 2006-10-10  Chris Toshok  <toshok@ximian.com>
4404
4405         * Control.cs (WM_PAINT): when a control is double buffered we draw
4406         initially to the ImageBuffer and then copy from there.  But when a
4407         parent control which has child controls is double buffered, the
4408         initial drawing doesn't encompass the entire ClientRectangle of
4409         the parent control, so we end up with uninitialized bits (this is
4410         easily seen by dragging the top toolbar in
4411         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4412         manually set the ClipRectangle of the paint_event (only the one we
4413         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4414         of the nastiness in bug #72499.
4415
4416         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4417         which we use in Control.cs's WM_PAINT handling.
4418
4419 2006-10-10  Jackson Harper  <jackson@ximian.com>
4420
4421         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4422
4423 2006-10-10  Chris Toshok  <toshok@ximian.com>
4424
4425         * Cursor.cs: Apply a slightly different patch to the one suggested
4426         in #79609.
4427
4428 2006-10-10  Jackson Harper  <jackson@ximian.com>
4429
4430         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4431         not the parent form.
4432         * TextControl.cs: use difference in old line count vs new count to
4433         calculate how many lines were added, this takes into account soft
4434         line breaks properly.
4435
4436 2006-10-10  Chris Toshok  <toshok@ximian.com>
4437
4438         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4439         rectangle located at 0,0 and the size of the text.  Use
4440         ClientRectangle instead.  This fixes rendering of non-left aligned
4441         link labels.
4442
4443 2006-10-10  Jackson Harper  <jackson@ximian.com>
4444
4445         * TextBoxBase.cs: When we set the selection start position the
4446         caret.
4447         * TextControl.cs: Need to update the caret when we decrement it to
4448         zero.
4449         - Make sure that the selection_visible flag gets reset to false if
4450         the selection isn't visible.  Before this you could get it set to
4451         visible by changing the selection start, then changing the end to
4452         equal the start.
4453
4454 2006-10-09  Jackson Harper  <jackson@ximian.com>
4455
4456         * TreeView.cs: Don't update scrollbars when we aren't visible.
4457         * TreeNodeCollection.cs: Only need to update scrollbars if being
4458         added to an expanded visible node or the root node.
4459
4460 2006-10-09  Chris Toshok  <toshok@ximian.com>
4461
4462         * XplatUIX11.cs (SendMessage): fix NRE.
4463
4464 2006-10-09  Jackson Harper  <jackson@ximian.com>
4465
4466         * TextBoxBase.cs: Implement horizontal autoscrolling.
4467         * TextControl.cs: Add a movement types that allows moving forward
4468         and backwards without wrapping.
4469
4470 2006-10-09  Mike Kestner  <mkestner@novell.com>
4471
4472         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4473         with focus "expansion" of labels.  Fixes #79532 and then some.
4474         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4475         when wrapping.
4476
4477 2006-10-09  Jackson Harper  <jackson@ximian.com>
4478
4479         * TextBoxBase.cs: Set the default max values to MaxValue since
4480         we use the scrollbar for autoscrolling and the default value is
4481         100.  If we don't do this the caret won't keep up with typing
4482         after about 18 characters.
4483         * TextControl.cs: Make sure the selection is offset by the
4484         viewport x.  This fixes selection when using auto scrolling.
4485
4486 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4487         
4488         * Form.cs: The active control should be selected after the 
4489         OnLoad so that any child control initialization that affects
4490         the selection is done. Fixes #79406
4491
4492 2006-10-06  Chris Toshok  <toshok@ximian.com>
4493
4494         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4495         to have no evil effects.
4496
4497         - Stop selecting StructureNotifyMask on non-toplevel windows.
4498
4499           The only way children should be resized is by using the SWF api,
4500           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4501           Toplevel windows can be interacted with via the window manager,
4502           and so we keep the input mask there.
4503
4504           The other event StructureNotifyMask gives us (that we care
4505           about) is DestroyNotify.  The code is already structured such
4506           that it assumes we won't be getting a DestroyNotify event for
4507           the window we pass to XDestroyWindow (which is what
4508           StructureNotifyMask is supposed to guarantee.)  So, that code
4509           shouldn't be affected by this either.
4510
4511         - Stop selecting VisibilityChangeMask altogether.
4512
4513           We weren't doing anything with the resulting events anyway.
4514         
4515         This vastly reduces the number of X requests and events we see
4516         when resizing/laying out a large ui.
4517
4518 2006-10-06  Chris Toshok  <toshok@ximian.com>
4519
4520         * ScrollableControl.cs (DisplayRectangle): we need to take into
4521         account the DockPadding regardless of whether or not auto_scroll
4522         == true.  rework this slightly to this effect, and fix bug #79606,
4523         and part of #72499 (you can now see the drag handles and drag
4524         toolbars around).
4525
4526 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4527
4528         * ListViewItem.cs: Collections of selected and checked items are now
4529         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4530         we mark the collection "dirty".
4531         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4532         to only clear SelectedItems when a new item is selected and MultiSelect
4533         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4534         event of ListViewItemCollection, and mark its list dirty whenever
4535         that event is fire. This allows us to return selected/checked items 
4536         in the same order as they are in the Items collection. This matches
4537         the MS behavior.
4538
4539 2006-10-06  Chris Toshok  <toshok@ximian.com>
4540
4541         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4542         right mouse clicks.  Fixes bug #79593.
4543
4544 2006-10-06  Chris Toshok  <toshok@ximian.com>
4545
4546         * Splitter.cs: doh, fix splitters that don't want to cancel the
4547         movement when you drag them.  Also, impose the limits on the
4548         values we send to the SplitterMovingEvent.  Fixes #79598.
4549
4550 2006-10-06  Jackson Harper  <jackson@ximian.com>
4551
4552         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4553         since we use this for auto scrolling also.
4554
4555 2006-10-05  Chris Toshok  <toshok@ximian.com>
4556
4557         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4558         beginning to think that most datagrid column types don't need this
4559         method.  Fixes bug #79392.
4560
4561 2006-10-05  Chris Toshok  <toshok@ximian.com>
4562
4563         * DataGrid.cs: move back to a more lazy scheme for creating the
4564         CurrencyManager, so we aren't updating it every time you set
4565         either DataSource or DataMember.  Also, don't call
4566         RecreateDataGridRows if the currency manager hasn't changed.
4567
4568 2006-10-05  Chris Toshok  <toshok@ximian.com>
4569
4570         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4571         emitted, SelectedIndex should already be updated.  Fixes bug
4572         #78929.
4573
4574 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4575
4576         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4577           ToolStripTextBox.cs: Initial commit.
4578         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4579
4580 2006-10-05  Jackson Harper  <jackson@ximian.com>
4581
4582         * TabControl.cs: We need to invalidate the tab control area when
4583         new ones are added (duh).
4584
4585 2006-10-03  Chris Toshok  <toshok@ximian.com>
4586
4587         * Form.cs (ProcessDialogKey): if the focused control is in this
4588         form and is a button, call its PerformClick method here.  Fixes
4589         #79534.
4590
4591 2006-10-04  Jackson Harper  <jackson@ximian.com>
4592
4593         * TabPage.cs: Ignore setting of Visible, and add an internal
4594         method for setting the controls visibility.  TabPage's Visible
4595         property is a little strange on MS, this seems to make us
4596         compatible, and fixes cases where people set all the tab pages to
4597         visible.
4598         * TabControl.cs: Use the new internal setting on tab pages
4599         visibility.
4600
4601 2006-10-03  Mike Kestner  <mkestner@novell.com>
4602
4603         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4604
4605 2006-10-03  Mike Kestner  <mkestner@novell.com>
4606
4607         * ListView.cs : use is_visible instead of Visible to check if 
4608         scrollbars should be placed/sized.  Also some max_wrap_width
4609         love for LargeIcon view.  [Fixes #79533]
4610
4611 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4612
4613         * TextControl.cs :
4614           Make set_TextAlign() do actually update the align. Fixed #78403.
4615
4616 2006-10-03  Chris Toshok  <toshok@ximian.com>
4617
4618         * DataGrid.cs: fix a crash when switching datasources if the
4619         vertical scrollbar is at someplace other than Value = 0.  Also,
4620         reduce the number of recalculation passes we do in SetDataSource
4621         from 2 to 1.
4622
4623 2006-10-03  Jackson Harper  <jackson@ximian.com>
4624
4625         * TextBoxBase.cs: Move the if value the same bail check up, we
4626         don't want to empty the document if it is already empty, this
4627         seems to severly mess up the caret.  TODO: I should probably fix
4628         the empty statement to update teh caret somehow.
4629
4630 2006-10-03  Chris Toshok  <toshok@ximian.com>
4631
4632         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4633         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4634         reflection, an internal row type, properties on said type, etc.)
4635         will work with our datagrid.  Fixes #79531.
4636
4637 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4638
4639         * FileDialog.cs: Don't crash if a path is not accessible
4640           (System.UnauthorizedAccessException). Fixes #79569.
4641         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4642           a ':' too. Return unknown icon for those paths/files.
4643
4644 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4645
4646         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4647         GetContainerControl returns null.
4648
4649 2006-10-02  Chris Toshok  <toshok@ximian.com>
4650
4651         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4652         call to XGetWindowAttributes instead of "handle".  fixes an X
4653         error using notifyicon after the NotifyIconWindow to Form base
4654         class switch.
4655
4656 2006-10-02  Chris Toshok  <toshok@ximian.com>
4657
4658         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4659         server grab and looping we need to do to get down to the most
4660         deeply nested child window.
4661         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4662         QueryPointer again after the WarpPointer so we can generate a
4663         proper (fake) MotionNotify event to be enqueued in the destination
4664         window's queue.
4665         (GetCursorPos): call QueryPointer.
4666
4667         Fixes #79556.
4668
4669 2006-10-02  Jackson Harper  <jackson@ximian.com>
4670
4671         * NotifyIcon.cs: Derive the notify icon from a form, so things
4672         like FindForm work on it.
4673         - Swallow the WM_CONTEXTMENU message, since that is generated on
4674         mouse down, and context menu is a mouse up kinda guy.  I believe
4675         the correct fix here is probably to make the notify icon entirely
4676         NC area, but this seems to work fine for anyone not manipulating
4677         WndProc.
4678
4679 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4680
4681         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4682           ToolStripItemCollection.cs, ToolStripLabel.cs,
4683           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4684           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4685           Initial implementation.
4686         * TextRenderer.cs: Provide padding to MeasureText.
4687
4688 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4689
4690         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4691         of ButtonBaseAccessibleObject. Fix bug #79552.
4692
4693 2006-10-02  Jackson Harper  <jackson@ximian.com>
4694
4695         * MdiWindowManager.cs: When maximizing use the containers client
4696         rect, not it's bounds, so nc area is accounted correctly.
4697         - Use the parent form's size for the menu position, since the
4698         client isn't always the full form size.
4699
4700 2006-10-01  Chris Toshok  <toshok@ximian.com>
4701
4702         * ScrollableControl.cs: make sure neither right_edge or
4703         bottom_edge are < 0, since they're used as LargeChange for the
4704         horiz/vert scrollbars respectively.  Fixes #79539.
4705
4706 2006-10-01  Chris Toshok  <toshok@ximian.com>
4707
4708         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4709         the xplatuix11 code can cause us to destroy/recreate our handle.
4710
4711         * XplatUIX11.cs
4712         (SystrayAdd):
4713         - this code can be invoked many times for the same Hwnd.  Make
4714           sure we only destroy the client window once (the first time this
4715           method is called).  This fixes bug #79544.
4716         - Remove the call to the improperly bound XSync.  why we had two
4717           bindings to this, I will never know, but this call resulted in
4718           events being discarded from the queue(!).
4719         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4720           not our current state but the state we wish to be in.  So, 0 if
4721           we don't want to be mapped.  Change it to 1.
4722         (SystrayRemove): The XEMBED spec makes mention of the fact that
4723         gtk doesn't support the reparent of client windows away from the
4724         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4725         The only avenue we have for removing systray icons is to destroy
4726         them.  We don't want the handle to go away for good, though, so
4727         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4728         #79545.
4729         
4730 2006-10-01  Chris Toshok  <toshok@ximian.com>
4731
4732         * Form.cs (WndProc): inline the native_enabled variable usage into
4733         the cases in which it's used.  Fixes #79536.
4734
4735 2006-09-29  Mike Kestner  <mkestner@novell.com>
4736
4737         * ListView.cs : toggle the selection state for ctrl clicks in 
4738         multiselect mode. [Fixes #79417]
4739
4740 2006-09-29  Mike Kestner  <mkestner@novell.com>
4741
4742         * ListView.cs : kill CanMultiSelect and refactor the selection
4743         code to support multiselection in the absence of mod keys. Steal
4744         arrow/home/end keys by overriding InternalPreProcessMessage to
4745         restore regressed keynav behavior.
4746         [Fixes #79416]
4747
4748 2006-09-29  Jackson Harper  <jackson@ximian.com>
4749
4750         * MdiClient.cs: Repaint the titlebars when the active window is
4751         changed.
4752
4753 2006-09-29  Chris Toshok  <toshok@ximian.com>
4754
4755         * Application.cs: when entering a runloop with a modal, make sure
4756         the hwnd is enabled.  Fixes #79480.
4757
4758 2006-09-29  Chris Toshok  <toshok@ximian.com>
4759
4760         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4761         when ListManager.CanAddRows == false, bump us back one.
4762
4763         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4764         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4765         using a datagrid, which is not right.
4766         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4767         is an IEditable, but call property_descriptor.SetValue regardless.
4768         fixes #79435.
4769
4770 2006-09-29  Chris Toshok  <toshok@ximian.com>
4771
4772         * DataGridBoolColumn.cs: we need to test equality in the face of
4773         possible null values (as is the case with the default NullValue).
4774         This patch keeps us from crashing in that case.
4775
4776 2006-09-29  Jackson Harper  <jackson@ximian.com>
4777
4778         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4779         here, since it will get called for every node collection in the
4780         tree. This is now done in the treeview once the sorting is
4781         finished.
4782         * TreeView.cs: Recalculate the visible order, and update the
4783         scrollbars after sorting, set the top nope to the root so that the
4784         recalc actually works.
4785
4786 2006-09-29  Chris Toshok  <toshok@ximian.com>
4787
4788         * LinkLabel.cs: more handling of the default link collection in
4789         the face of LinkArea manipulation.  The default link collection
4790         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4791         to anything and the links collection is the default, clear it.
4792         Then only add the link if its nonempty.  Fixes #79518.
4793
4794 2006-09-29  Chris Toshok  <toshok@ximian.com>
4795
4796         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4797         piece correctly when we hit a '\n'.  Fixes #79517.
4798
4799 2006-09-29  Chris Toshok  <toshok@ximian.com>
4800
4801         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4802         change the binding of gdk_init_check to take two IntPtr's, and
4803         pass IntPtr.Zero for both of them.  Fixes #79520.
4804
4805 2006-09-29  Mike Kestner  <mkestner@novell.com>
4806
4807         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4808         [Fixes #78779]
4809
4810 2006-09-28  Jackson Harper  <jackson@ximian.com>
4811
4812         * XplatUIX11.cs: When translating NC messages make sure we go from
4813         whole window to screen, not client window to screen.
4814         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4815         method doesn't exist
4816         - Skip over controls that aren't forms when arranging.
4817
4818 2006-09-28  Jackson Harper  <jackson@ximian.com>
4819
4820         * XplatUIWin32.cs: Clip the rect to the parent window.
4821         * XplatUIStructs.cs: Add clipping modes struct.
4822         * InternalWindowManager.cs: New private method that factors title
4823         bar heights in when calculating the pos of an NC mouse message.
4824         - Use SendMessage to force a paint when the form's size is changed
4825         instead of painting the decorations immediately.
4826         - Don't let the NC button click messages get to DefWndProc,
4827         because they will attempt to handle windowing themself, and this
4828         messes up z-order (it will put them in front of the scrollbars).
4829         * XplatUIX11.cs: Make sure that we don't reset window managers if
4830         we already have one (ie the window is an MDI window).
4831
4832 2006-09-28  Chris Toshok  <toshok@ximian.com>
4833
4834         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4835         menu code really needs going over.
4836
4837 2006-09-27  Chris Toshok  <toshok@ximian.com>
4838
4839         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4840         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4841         window is maximizable.  So, we need to make sure that even if we
4842         clear the border/wm frame of those functions, they're still
4843         available (basically, we remove the decoration without removing
4844         the function).  Half the fix for #79338.
4845
4846 2006-09-27  Chris Toshok  <toshok@ximian.com>
4847
4848         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4849         Fixes bug #79515.
4850
4851 2006-09-27  Chris Toshok  <toshok@ximian.com>
4852
4853         * Splitter.cs: reorder things a bit so that we don't actually
4854         draw/move the splitter until after calling OnSplitterMoving.  This
4855         lets users cancel/disallow the movement by explicitly setting
4856         event.SplitX/SplitY.  Fixes #79372.
4857
4858 2006-09-27  Jackson Harper  <jackson@ximian.com>
4859
4860         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4861         because it is most likely on a window being destroyed, and that
4862         will give us an X11 error.
4863
4864 2006-09-27  Chris Toshok  <toshok@ximian.com>
4865
4866         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4867         the dropdown button now toggles between showing and hiding the
4868         dropdown.  Also, get rid of dropdown_form_showing and just use
4869         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4870         that part to someone who has handled Capture-fu before.
4871
4872 2006-09-27  Chris Toshok  <toshok@ximian.com>
4873
4874         * DataGrid.cs: return false if alt isn't pressed when '0' is
4875         pressed.  this keeps the '0' key from being swallowed, and fixes
4876         bug #79350.
4877
4878 2006-09-27  Chris Toshok  <toshok@ximian.com>
4879
4880         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4881         Calling Refresh (in response to a scrollbar event) screws up the
4882         scrollbar painting.  Fixes bug #78923.
4883
4884 2006-09-27  Chris Toshok  <toshok@ximian.com>
4885
4886         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4887         then insert into hashtable" blocks threadsafe.
4888
4889 2006-09-27  Chris Toshok  <toshok@ximian.com>
4890
4891         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4892         baseclass's, since otherwise the
4893         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4894         effect.  This gets the close button back in messageboxes.
4895
4896 2006-09-27  Chris Toshok  <toshok@ximian.com>
4897
4898         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4899         flag, not just != 0.  this makes flags that are actually multiple
4900         bits (like WS_CAPTION) work.  fixes bug #79508.
4901
4902 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4903
4904         * PageSetupDialog.cs: add support for getting and settings the 
4905         paper size, source and orientation.
4906
4907 2006-09-26  Chris Toshok  <toshok@ximian.com>
4908
4909         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4910         and caption == "", we need to remove the resize handles as well as
4911         the title bar.
4912
4913         * Control.cs (set_Text): turns out that setting Text on a form
4914         should change the WM styles on the window, since if ControlBox ==
4915         false, the only way to get a window border is to have a non-""
4916         Text property.  check winforms/forms/text.cs for an example.  so,
4917         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4918         update both window styles and title.  This fixes a lot of dialogs
4919         (including the preferences dialog in MonoCalendar.)
4920
4921 2006-09-26  Chris Toshok  <toshok@ximian.com>
4922
4923         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4924         control isn't a Form), call Win32ShowWindow to hide the window,
4925         but don't update the control Visible property.  When we reparent
4926         back to a parent control, call SetVisible in order for the
4927         window's visibility to be reinstated.
4928
4929         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4930         the FosterParent.
4931
4932         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4933         call for good, since it breaks MonoCalendar (and other things I'm
4934         sure.) Also, set all_controls to null *after* the owner calls,
4935         which end up regenerating it.
4936         (ChangeParent): allow new_parent to be == null, passing
4937         IntPtr.Zero down to XplatUI.
4938
4939         this fixes #79294 the right way.
4940
4941 2006-09-26  Mike Kestner  <mkestner@novell.com>
4942
4943         * GridEntry.cs : internal SetParent method.
4944         * PropertyGrid.cs : attach to property changed on the proper
4945         target if we have a hierarchical grid with subobjects. Setup
4946         GridItem.Parent for hierarchical items.
4947         * PropertyGridView.cs : Set value on the correct target for
4948         hierarchical grids. [Fixes #78903]
4949
4950 2006-09-26  Chris Toshok  <toshok@ximian.com>
4951
4952         * Control.cs (ChildNeedsRecreating): this should return true if
4953         either we're being recreated and the child is in our list, or our
4954         parent is waiting for our recreation.
4955
4956 2006-09-26  Chris Toshok  <toshok@ximian.com>
4957
4958         * Control.cs (ControlCollection.Remove): reinstate the
4959         value.Hide() call as suggested in bug #79294.
4960
4961 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4962
4963         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4964         coordinates (versus a relative move).
4965
4966 2006-09-26  Chris Toshok  <toshok@ximian.com>
4967
4968         * Control.cs: rework child recreation a little bit.  It turns out
4969         that we race between the DestroyNotify the WM_DESTROY message.  If
4970         the parent gets its DestroyNotify before the child gets the
4971         WM_DESTROY message, the child ends up not recreating (since the
4972         parent finishes its recreation on DestroyNotify, and the child
4973         checks ParentIsRecreating.)
4974
4975         So, instead we store off a list of all the child controls which
4976         need to be recreated when the parent control starts to recreate
4977         itself.  Then, when child controls get their WM_DESTROY message we
4978         check to see if they're in the parent's pending recreation list,
4979         and if so, we recreate.  This removes all dependency on ordering
4980         from the code and fixes the initial MonoCalendar upgrade dialog.
4981         
4982 2006-09-26  Jackson Harper  <jackson@ximian.com>
4983
4984         * TextControl.cs: Use the Line to get the length of the line,
4985         since soft line breaks can change the end line.
4986
4987 2006-09-26  Chris Toshok  <toshok@ximian.com>
4988
4989         * Control.cs (ControlCollection.AddImplicit): don't add the
4990         control again if it's already in one of our lists.  This keeps us
4991         from adding controls over and over again for comboboxes when their
4992         handle gets recreated (as the combobox adds implicit controls in
4993         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4994
4995 2006-09-26  Jackson Harper  <jackson@ximian.com>
4996
4997         * TextControl.cs: When deleting characters make sure that any
4998         orphaned zero lengthed tags get deleted.
4999         - Fix ToString for zero lengthed tags.
5000
5001 2006-09-25  Jackson Harper  <jackson@ximian.com>
5002
5003         * TextControl.cs: When getting a tag at the location there can be
5004         multiple tags at the same spot, these are 0-lengthed tags that
5005         appear when extra formatting has been stuck in a location.  We
5006         need to pull out the last of these 0 lengthed tags.
5007
5008 2006-09-25  Jackson Harper  <jackson@ximian.com>
5009
5010         * TextControl.cs: Fix print out in debug method.
5011         * TextBoxBase.cs: When text is set bail if we are setting to the
5012         previous value.
5013         
5014 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5015
5016         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5017           It is now possible to change the selected index in a FontXXXListBox
5018           with the up and down arrow keys from the FontXXXTextBoxes.
5019           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5020           FontXXXListBoxes to match ms.
5021
5022 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5023
5024         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5025         anyone can dispose it, anytime. All other properties returns enums, 
5026         structs or basic types so they don't need such tricks.
5027
5028 2006-09-22  Jackson Harper  <jackson@ximian.com>
5029
5030         * XplatUI.cs:
5031         * XplatUIWin32.cs:
5032         * Clipboard.cs:
5033         * DataFormats.cs:
5034         * XplatUIOSX.cs:
5035         * XplatUIDriver.cs: Update interface to add a primary selection
5036         flag, so the driver can use the primary selection buffer if
5037         needed.
5038         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5039
5040         * RichTextBox.cs: We need to supply the data object to paste now
5041         (so we can choose to supply CLIPBOARD or PRIMARY).
5042         * TextBoxBase.cs: Supply data object to paste (see above).
5043         - Middle click uses the primary selection data object.
5044         
5045 2006-09-21  Chris Toshok  <toshok@ximian.com>
5046
5047         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5048         of SetWMStyles.  It's still a rat's nest and is largely
5049         order-dependent which I dislike immensely.  This also fixes the X
5050         button disappearing from toplevel forms.
5051
5052 2006-09-21  Mike Kestner <mkestner@novell.com>
5053
5054         * ListBox.cs: move Jordi's click/dblclick raising code to the
5055         mouse up handler.
5056
5057 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5058
5059         * ListBox.cs: Fixes 79450
5060
5061 2006-09-21  Mike Kestner <mkestner@novell.com>
5062
5063         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5064         to deal with people updating the TreeNodeCollection after the tree
5065         is disposed.  "Fixes" 79330.
5066
5067 2006-09-20  Jackson Harper <jackson@ximian.com>
5068
5069         * TextControl.cs: Push the cursor record onto the undo stack
5070         before the delete action. This fixes 78651.
5071
5072 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5073
5074         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5075         CreateParams. Fixes 79329.
5076
5077 2006-09-19  Chris Toshok  <toshok@ximian.com>
5078
5079         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5080         things up a bit.  First, get rid of the NetAtoms array (and the NA
5081         enum), and just embed the atoms as static fields.  Also, add a
5082         couple of functions (StyleSet and ExStyleSet) to clean up all the
5083         bitmask testing of styles.
5084
5085         * X11Structs.cs: remove the NA enum, not needed anymore.
5086         
5087 2006-09-19  Chris Toshok  <toshok@ximian.com>
5088
5089         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5090         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5091         added cleanup to get MessageBox titles appearing again, which were
5092         broken by my earlier fix for caption-less/ControlBox-less windows.
5093
5094 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5095
5096         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5097           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5098           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5099           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5100           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5101           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5102           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5103           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5104           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5105           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5106           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5107             Inital import.
5108         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5109           ToolStripButton.cs: Stubs needed for above.
5110         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5111
5112 2006-09-15  Chris Toshok  <toshok@ximian.com>
5113
5114         * XplatUIX11.cs:
5115         - make the MessageQueues hashtable Synchronized.
5116         
5117         - SendMessage: if the Hwnd is owned by a different thread, use the
5118         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5119         thread.  Fixes bug #79201.
5120
5121 2006-09-15  Chris Toshok  <toshok@ximian.com>
5122
5123         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5124         ControlBox == false, we disallow maximize/minimize/close.  If the
5125         form Caption is "" we also disallow move (and get rid of the Title
5126         decoration).  Unfortunately, regardless of how things are set,
5127         we're stuck with the Title and WM menu.
5128
5129 2006-09-15  Chris Toshok  <toshok@ximian.com>
5130
5131         * Application.cs: add locking around the static message_filters
5132         ArrayList, part of #79196.
5133
5134 2006-09-15  Chris Toshok  <toshok@ximian.com>
5135
5136         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5137         Form.ControlBox == false, the window has no titlebar nor resize
5138         handles.  fixes bug #79368.
5139
5140 2006-09-15  Chris Toshok  <toshok@ximian.com>
5141
5142         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5143         >= 0.  Fixes bug #79370.
5144
5145 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5146         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5147         * Control.cs:
5148             Add properties: LayoutEngine, Margin, DefaultMargin.
5149             Add method: GetPreferredSize.
5150             Move layout logic from PerformLayout to layout engines. 
5151
5152 2006-09-13  Chris Toshok  <toshok@ximian.com>
5153
5154         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5155         fix for #79326 broke #78718, so this change addresses that.
5156
5157         - in SendWMDestroyMessages remove the call to
5158         CleanupCachedWindows, since we might be recreating the control and
5159         need to maintain the references to right Hwnd handles.  Also, set
5160         the zombie flag to true for each of the children in the hierarchy
5161         instead of calling hwnd.Dispose.  This will cause GetMessage to
5162         ignore all events for the window except for DestroyNotify.
5163
5164         - In GetMessage, ignore messages except for DestroyNotify for
5165         zombie hwnds.
5166         
5167         * Control.cs: revert the is_recreating fix from the last
5168         ChangeLog.  It's definitely "right", but it breaks switching from
5169         an MDI form to a non-MDI form.  Will need to revisit that.
5170
5171         * Hwnd.cs: add a zombie flag, which means "the
5172         client_window/whole_window handles are invalid, but we're waiting
5173         for the DestroyNotify event to come in for them".  Set the flag to
5174         false explicitly if setting WholeWindow/ClientWindow, and also
5175         when Disposing.
5176         
5177 2006-09-13  Chris Toshok  <toshok@ximian.com>
5178
5179         * XplatUIX11.cs: rework window destruction slightly.
5180
5181         - when destroying the windows associated with a control, we don't
5182         need 2 separate XDestroyWindow calls.  Just the one for the
5183         whole_window (or for client_window if whole_window is somehow
5184         IntPtr.Zero -- can this happen?) is enough.
5185
5186         - reworked SendWMDestroyMessages slightly, so we always dispose
5187         the child control hwnd's after sending the messages.
5188         
5189         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5190         the two places it was used (one was even using hwnd.Handle and the
5191         other hwnd.client_window.  ugh), adding another call in
5192         SendWMDestroyMessages.  We need this new call because now the
5193         DestroyNotify events in the queue will be ignored for the child
5194         controls (as their hwnd's were disposed, and the window id's
5195         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5196
5197         - this fixes bug #79326.
5198
5199 2006-09-13  Chris Toshok  <toshok@ximian.com>
5200
5201         * Control.cs: don't always set is_recreating to false at the end
5202         of RecreateHandle, since sometimes we're not done (and won't be
5203         until WndProc handles the WM_DESTROY message).  Also, set
5204         is_recreating to false in the WM_DESTROY handling code.  Part of
5205         the fix for bug #79326.
5206
5207 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5208
5209         * X11DesktopColors.cs: Start the droppage of debugging messages.
5210
5211         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5212
5213 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5214
5215         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5216
5217 2006-09-12  Chris Toshok  <toshok@ximian.com>
5218
5219         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5220         to create it using SetDataSource.  Fixes bug #79151.
5221
5222 2006-09-11  Chris Toshok  <toshok@ximian.com>
5223
5224         * XEventQueue.cs: add a DispatchIdle property.
5225
5226         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5227         either the queue is null, or the queue has DispatchIdle set to
5228         true.
5229         (DoEvents): set queue.DispatchIdle to false around the
5230         peek/translate/dispatch message loop in this method.  This keeps
5231         Application.Doevents from emitting idle events.  Part of the fix
5232         for #78823.
5233
5234 2006-09-11  Chris Toshok  <toshok@ximian.com>
5235
5236         * DataGrid.cs (set_DataSource): make this work for both the
5237         winforms/datagrid test and ReportBuilder.  It seems as though when
5238         we've created a ListManager (or maybe it's if we have a
5239         BindingContext?), when we set the DataSource it clears the
5240         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5241         #79333.
5242
5243 2006-09-11  Chris Toshok  <toshok@ximian.com>
5244
5245         * XplatUIX11.cs: deal with queue being null, which happens in all
5246         the Clipboard functions.  Fixes one of the two problems mentioned
5247         in #78612.
5248
5249 2006-09-11  Chris Toshok  <toshok@ximian.com>
5250
5251         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5252         button on various spots (including outside the menu) works closer
5253         to MS, and doesn't crash.  Fixes #79343.
5254
5255 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5256
5257         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5258         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5259         and the internal comparer is set. When a new ListViewItemSorter is set,
5260         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5261         was specified. No further processing is necessary if SortOrder is set
5262         to it's current value. If Sorting is modified to None, and View is
5263         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5264         (either custom or our internal ItemComparer) to null, on 1.0 profile
5265         only set item_sorter to null if its our internal IComparer. If Sorting
5266         is modified to Ascending or Descending, then use our internal IComparer
5267         if none is set, and if the current IComparer is our internal one then:
5268         on 2.0 profile always replace it with one for new Sorting, and on 1.0
5269         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
5270         Enum.IsDefined to verify whether a valid View value is specified in
5271         its setter. Automatically sort listview items when listview is
5272         created. In Sort, do nothing if ListView is not yet created, or if
5273         no item_sorter is set (no Sorting was set, Sorting was explicitly set
5274         to None or ListViewItemSorter was set to null). Added Sort overload
5275         taking a bool to indicate whether the ListView should be redrawn when
5276         items are sorted (we use this in ListViewItemCollection to avoid double
5277         redraws). Modified our internal IComparer to take the sort order into
5278         account. In Add and AddRange methods of ListViewItemCollection, also
5279         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
5280         view), but use overload with noredraw option to avoid double redraw.
5281         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
5282         true when View is Tile, and do the same when attempting to set View to
5283         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
5284         for selected/checked indices, as it involves overhead when sorting is
5285         done while these collections are not used all that often. Instead
5286         we'll build the indices on demand. Modified IList implementation of
5287         CheckedIndexCollection to use public methods if object is int.
5288         Modified CheckedListViewItemCollection to hide checked items if
5289         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5290         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5291         IList implementation in SelectedIndexCollection to use public methods
5292         if object is int. Modified SelectedListViewItemCollection to hide
5293         selected items if listview is not yet created.
5294         * ListViewItem.cs: CheckedIndices list no longer needs to be
5295         maintained separately (see ListView changes). Also clone font, fixes
5296         test failure.
5297
5298 2006-09-11  Mike Kestner  <mkestner@novell.com>
5299
5300         * ComboBox.cs: if we are updating the contents of the currently
5301         selected index, refresh the control or the textbox selection.
5302         [Fixes #79066]
5303
5304 2006-09-11  Mike Kestner  <mkestner@novell.com>
5305
5306         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5307         the 'specified' logic has been moved there.  This seems like a bug 
5308         in Control.cs, since our current SetBoundsCore completely ignores 
5309         the specified parameter.  Peter's commit seems to indicate that is 
5310         the way the MS control implementation works.  [Fixes #79325]
5311
5312 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5313
5314         * XplatUI.cs: Set default_class_name to be composed
5315         of current domain id. This allows MWF to be loaded in multiple
5316         domains on Win32.
5317
5318 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5319
5320         * X11Keyboard.cs: If we are unable to obtain the input method, do
5321         not call CreateXic to create the input context.   Should fix
5322         #78944/79276.
5323
5324 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5325
5326         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5327           Simplified gnome support by adding more pinvokes to get the
5328           icon for a file or mime type.
5329
5330 2006-09-08  Jackson Harper  <jackson@ximian.com>
5331
5332         * MenuAPI.cs: Deslect popup context menu items before closing the
5333         window, so that you don't see the previously selected item
5334         selected when you reopen the menu.
5335         * TextControl.cs: Update the cursor position even if we don't have
5336         focus.  This fixes typing in things like the ComboBox.  I'm not
5337         totally sure we should always set the visibility if we don't have
5338         focus, but couldn't find any corner cases where the cursor showed
5339         up when it shouldn't.
5340
5341 2006-09-08  Chris Toshok  <toshok@ximian.com>
5342
5343         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5344         our arrays are length 256.  & 0xff before indexing.  Fixes the
5345         crash in bug #78077.
5346         
5347 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5348
5349         * ThemeWin32Classic.cs: 
5350         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5351         is true. Handle that check box too.
5352
5353 2006-09-07  Chris Toshok  <toshok@ximian.com>
5354
5355         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5356         79244.
5357
5358 2006-09-07  Chris Toshok  <toshok@ximian.com>
5359
5360         * Control.cs: in set_BackColor only do the work if
5361         background_color != value.
5362
5363         * XplatUIX11.cs: move the clearing of invalid areas (both client
5364         and nc) to the same block of code where we set (nc_)expose_pending
5365         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5366         so things that cause invalidates from within OnPaint will trigger
5367         another call to OnPaint.  Fixes bug #79262.
5368
5369 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5370
5371         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5372         * FileDialog.cs: Fix typo
5373
5374 2006-09-07  Jackson Harper  <jackson@ximian.com>
5375
5376         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5377         for tab pages if they have any.
5378
5379 2006-09-06  Mike Kestner  <mkestner@novell.com>
5380
5381         * Splitter.cs: use the "current" rect when finishing drag handle
5382         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5383
5384 2006-09-06  Mike Kestner  <mkestner@novell.com>
5385
5386         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5387         support offset splitters. [Fixes #79298]
5388
5389 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5390
5391         * Mime.cs: Fixed a bug that could override the global mime type
5392           result.
5393
5394 2006-09-05  Jackson Harper  <jackson@ximian.com>
5395
5396         * TabControl.cs: Better calculation method for setting the slider
5397         pos. Prevents crashes on really wide tabs.
5398         - Draw Image on tab pages if an image list is used.
5399
5400 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5401
5402         * MonthCalendar.cs: When Font changes, the Size should be
5403         updated to fit the new font's space requirements.
5404
5405 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5406
5407         * ListBox.cs: If the items are cleared with Items.Clear set
5408           top_index to 0.
5409
5410 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5411
5412         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5413         fire DateChanged event instead of DateSelected event when
5414         the date was changed by keyboard interaction.
5415
5416 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5417
5418         * DateTimePicker.cs: Handle DateChanged for the associated
5419         month_calendar control, and set month_calendar.Font from 
5420         OnFontChanged method, as well as resize the height of the
5421         control when needed. Make PreferredHeight proportional.
5422
5423 2006-09-01  Chris Toshok  <toshok@ximian.com>
5424
5425         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5426         properties.
5427
5428         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5429
5430 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5431
5432         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5433           for decorations (Fixes #79219)
5434
5435 2006-09-01  Mike Kestner  <mkestner@novell.com>
5436
5437         * ComboBox.cs: first stab at sorting plus some selection handling
5438         fixes to bring us more in line with MS behavior.  Also switches back
5439         to index based selection.  Alternative patches for index-based 
5440         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5441         and latency@gmx.de on bug 78848.  I assume they were similar to this
5442         code I've had simmering in my tree forever.
5443         [Fixes #78848]
5444
5445 2006-09-01  Chris Toshok  <toshok@ximian.com>
5446
5447         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5448         when setting list position guard against ending up with a -1 index
5449         (the other part of the fix for #78812).  Should probably make sure
5450         we don't need the analogous fix in the ItemDeleted case.
5451
5452         * DataGrid.cs:
5453         - in SetDataSource, work around the fact that the way
5454         OnBindingContextChanged is invoked will cause us to re-enter this
5455         method.  I'll remove the hack once I investigate
5456         OnBindingContextChanged.
5457
5458         - fix the logic in set_DataSource and set_DataMember (basically
5459         what to do if the other of the two is null.)
5460         
5461         - in OnListManagerItemChanged, we need to take into account the
5462         edit row when deciding whether or not to call RecreateDataGridRows
5463         (part of the fix for #78812).
5464
5465 2006-09-01  Jackson Harper  <jackson@ximian.com>
5466
5467         * Splitter.cs: Don't do anything if there is no control to affect
5468         (prevents us from crashing in weird tet cases).
5469         * TreeView.cs: Bounding box for the mouse movement reverting
5470         focus/selection back to previously selected node.  This matches
5471         MS, and makes the tree a lot more useable.
5472         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5473         use clipping so they are not drawn.  This fixes when the control
5474         is set to have a transparent background, or if it was over an
5475         image.
5476
5477 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5478
5479         * MimeIcon.cs: Improved handling for reading default icons when
5480           using gnome (2.16 made it necessary). Check and read svg icons
5481           first, then 48x48 and then 32x32 icons.
5482
5483 2006-08-31  Chris Toshok  <toshok@ximian.com>
5484
5485         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5486         visible.
5487
5488         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5489         ProcessKeyPreview.  Fixes part of #77806.
5490
5491         * DataGrid.cs: big patch.
5492
5493         - revert the queueing up of DataSource/DataMember if inside
5494         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5495         its delayed databinding.  Instead, call SetDataSource in
5496         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5497         #78811.
5498
5499         - Also, it wasn't mentioned in #78811, but the test case exhibits
5500         behavior that was lacking in our datagrid implementation - Columns
5501         that have mapping names that don't exist in the datasource's
5502         properties aren't shown.  Yuck.  To fix this I added the bound
5503         field to the column style, and basically any calculation to figure
5504         out anything about columns uses a loop to find the bound columns.
5505         still need to investigate if I can cache an array of the bound
5506         columns or if the indices must be the same.
5507
5508         - When setting CurrentCell, we no longer abort if the cell being
5509         edited was in the add row.  This fixes the other part of #77806.
5510
5511         - The new code also fixes #78807.
5512         
5513         * ThemeWin32Classic.cs: perpetrate the same disgusting
5514         column.bound field hack, and only render bound fields.
5515
5516 2006-08-31  Chris Toshok  <toshok@ximian.com>
5517
5518         * DataGridColumnStyle.cs: add bound field.  this field is true if
5519         the datasource has a property corresponding to the mapping name.
5520
5521         * DataGridTableStyle.cs: set the bound field on the column styles
5522         depending on whether or not we have a column for that property.
5523
5524 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5525
5526         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5527           splitter control (fixes #79228)
5528
5529 2006-08-31  Chris Toshok  <toshok@ximian.com>
5530
5531         * DataGridColumnStyle.cs: we need to delay the assignment of
5532         property descriptor until the last possible moment due to the lazy
5533         databinding stuff in the datagrid.  Also, fix the exceptions
5534         thrown by CheckValidDataSource to match MS.
5535
5536 2006-08-31  Jackson Harper  <jackson@ximian.com>
5537
5538         * Form.cs: When activated select the active control, if there is
5539         no active control, we select the first control.
5540         * XplatUIX11.cs: If there is no focus control when we get a
5541         FocusIn event, find the toplevel form and activate it.  This
5542         occurs when you popup a window, it becomes the focus window, then
5543         you close that window, giving focus back to the main window.
5544
5545 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5546
5547         * MonthCalendar.cs: 
5548         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5549         as StringFormat with Center alignments in MonthCalendar,
5550         instead of creating new ones when drawing the control. 
5551         Also, draw the month name in bold style.
5552
5553 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5554
5555         * Control.cs:
5556           - PerformLayout(): It would seem MS performs the fill even if the 
5557             control is not visible (part of #79218 fix)
5558           - ResetBackColor(): Use the setter to reset the color, to allow
5559             overriders to catch the change.
5560         * Form.cs:
5561           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5562           - CreateHandle(): dito (part of $79218 fix)
5563           - Don't set an icon if we have a dialog
5564         * ScrollableControl.cs:
5565           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5566           - ScrollIntoView(): No need to scroll if control is already visible
5567             (resolves fixme and fixes #79218)
5568
5569 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5570
5571         * MonthCalendar.cs: Change proportions in SingleMonthSize
5572         to match the aspect of the original control.
5573
5574 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5575
5576         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5577           get updated when they get maximized.
5578
5579 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5580
5581         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5582
5583 2006-08-29  Chris Toshok  <toshok@ximian.com>
5584
5585         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5586
5587 2006-08-29  Jackson Harper  <jackson@ximian.com>
5588
5589         * TreeView.cs: Need to track selected node and highlighted node,
5590         they aren't always the same thing, when the mouse is down on a
5591         node it is hilighted, but not selected yet.
5592         - Do the HideSelection stuff right
5593         - Need to focus on rbutton mouse down. And redraw selection when
5594         right click is mouse upped.
5595
5596 2006-08-29  Mike Kestner  <mkestner@novell.com>
5597
5598         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5599         when SubItems.Count < Columns.Count.  [Fixes #79167]
5600
5601 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5602
5603         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5604
5605 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5606
5607         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5608           from X. Only send based on ConfigureNotify if we don't have the
5609           correct location in hwnd (if the window manager moved us)
5610
5611 2006-08-28  Mike Kestner  <mkestner@novell.com>
5612
5613         * ListView.cs: remove a TODO. 
5614         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5615         [Fixes ListView part of #79166]
5616
5617 2006-08-28  Mike Kestner  <mkestner@novell.com>
5618
5619         * ListView.cs: move wheel handler to parent since it is focused
5620         instead of the item_control now.  [Fixes #79177]
5621
5622 2006-08-28  Mike Kestner  <mkestner@novell.com>
5623
5624         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5625         when the control is focused. [Fixes #79171]
5626
5627 2006-08-28  Mike Kestner  <mkestner@novell.com>
5628
5629         * ListView.cs: size the item and header controls for empty and
5630         unscrollable views.
5631         * ThemeWin32Classic.cs: draw disabled backgrounds.
5632         [Fixes #79187]
5633
5634 2006-08-28  Chris Toshok  <toshok@ximian.com>
5635
5636         * Form.cs: remove unused "active_form" static field.
5637
5638         * Hwnd.cs: lock around accesses to static windows collection.
5639
5640         * Application.cs: lock threads in Exit ().
5641
5642 2006-08-28  Chris Toshok  <toshok@ximian.com>
5643
5644         * NativeWindow.cs: lock around accesses to window_collection.
5645         
5646 2006-08-28  Chris Toshok  <toshok@ximian.com>
5647
5648         * Control.cs: err, fix this the right way, by locking on controls
5649         when using it.  not by making it synchronized.
5650
5651 2006-08-28  Chris Toshok  <toshok@ximian.com>
5652
5653         * Control.cs: make the static "controls" field synchronized, as it
5654         gets updated from multiple threads.
5655
5656 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5657
5658         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5659           Prevent other threads from exiting when calling thread sets quit state.
5660         * XEventQueue.cs: Added PostQuitState property
5661
5662 2006-08-27  Chris Toshok  <toshok@ximian.com>
5663
5664         * AsyncMethodData.cs: add a slot for the window handle.
5665
5666         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5667         window (the destination control's window, not the foster window).
5668
5669         * Control.cs (BeginInvokeInternal): store the window's handle in
5670         the AsyncMethodData.
5671         
5672
5673 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5674
5675         * XplatUIX11.cs:
5676           - PostQuitMessage: Removed resetting S.D display handle, we might have
5677             another loop started after calling PostQuitMessage (Fixes #79119)
5678           - Created destructor to reset S.D handle
5679
5680 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5681
5682         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5683
5684 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5685
5686         * TextControl.cs (Insert): Update the caret position even if we don't
5687           have a handle yet, just don't call the driver in that case.
5688         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5689           to the end of the new selection text (Fixes #79184)
5690
5691 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5692
5693         * Form.cs (Activate): Only activate if the handle is created)
5694         * Control.c:
5695           - Mark window as invisible when it's disposed
5696           - Check if window handle is created when setting window visible, 
5697             instead of relying just on the is_created variable
5698           - Check if object is disposed when creating the control (Fixes #79155)
5699
5700 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5701
5702         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5703           when allowing layout again. Otherwise we re-generate the anchoring 
5704           distance to the border again and actually alter what the user wanted
5705           This is ugly, it'd be better if we used DisplayRectangle instead of
5706           ClientRectangle for Control.UpdateDistances, but that causes us to
5707           have other problems (initial anchoring positons would be wrong)
5708           (Fixes #78835)
5709
5710 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5711
5712         * Control.cs:
5713           - The size and location setters shouldn't go directly to 
5714             SetBoundsCore, but to SetBounds, which triggers layout on the
5715             parent, then calls SetBoundsCore. (Related to fix for #78835)
5716           - SetBounds: Moved actual location update code into this function
5717             from SetBoundsCore, to match MS. Added call to PerformLayout if
5718             we have a parent (to trigger resizing of anchored parents if the 
5719             child size has changed (see testcase for #78835) 
5720         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5721           new control code
5722         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5723
5724 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5725
5726         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5727           System.Drawing when a toplevel window gets closed; there might
5728           be other toplevel windows belonging to the same app (Fixes #78052)
5729
5730 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5731
5732         * FileDialog.cs: After reading FileDialog settings from mwf_config
5733           use Desktop prefix only if a real folder doesn't exist anymore.
5734         * FontDialog.cs: Added char sets.
5735           It is now possible to select the font, size or style with the
5736           textboxes.
5737
5738 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5739
5740         * PrintPreviewDialog.cs: Use assembly name constants.
5741
5742 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5743
5744         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5745           scrollbar from whacking it's buttons)
5746
5747 2006-08-24  Chris Toshok  <toshok@ximian.com>
5748
5749         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5750         in this patch (aggregating setting Left/Top/Width/Height to
5751         setting Bounds on the scrollbars), but the crux of the fix is in
5752         Recalculate, where we scroll by the remaining scroll_position if
5753         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5754         serious.
5755
5756 2006-08-24  Jackson Harper  <jackson@ximian.com>
5757
5758         * MdiClient.cs:
5759         * MdiWindowManager.cs: If the form is made a non-mdi window we
5760         need to remove the form closed event so that closing forms works
5761         correctly.
5762
5763 2006-08-24  Jackson Harper  <jackson@ximian.com>
5764
5765         * Control.cs: Make IsRecreating internal so that the driver can
5766         check it
5767         - Temporarily remove the Hide when controls are removed, its
5768         making a whole bunch of things not work because visibility isn't
5769         getting reset elsewhere correctly
5770         * Form.cs: Need to do a full handle recreation when the mdi parent
5771         is set.
5772         * XplatUIX11.cs: If we are recreating handles don't dispose the
5773         HWNDs.  What was happening is the handles were being recreated in
5774         SendWMDestroyMessages, but then flow continued on in that method
5775         and destroyed the new handles.
5776
5777 2006-08-23  Jackson Harper  <jackson@ximian.com>
5778
5779         * Form.cs: MdiClient is always at the back of the bus
5780         * Control.cs: When the order of items in the collection is changed
5781         we need to reset the all_controls array
5782         - do the same sorta setup thats done when adding a control when a
5783         control is set on the collection.
5784
5785 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5786
5787         * TextBoxBase.cs (get_Text): Return an empty array if our document
5788           is empty (fixes #79052)
5789
5790 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5791
5792         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5793           on WM_SYSCHAR messages (fixes #79053)
5794
5795 2006-08-23  Chris Toshok  <toshok@ximian.com>
5796
5797         * DataGrid.cs: fix flickering when scrolling vertically.
5798
5799 2006-08-23  Chris Toshok  <toshok@ximian.com>
5800
5801         * DataGrid.cs (EndEdit): only invalidate the row header when we
5802         need to.
5803
5804 2006-08-23  Chris Toshok  <toshok@ximian.com>
5805
5806         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5807         methods.  fixes the flicker when scrolling around.
5808
5809 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5810
5811         * FileDialog.cs: Making sure the control is created before we get a 
5812           chance to use it with BeginInvoke (Fixes #79096)
5813
5814 2006-08-23  Chris Toshok  <toshok@ximian.com>
5815
5816         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5817         width to use when painting the rows.
5818
5819 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5820
5821         * TextBoxBase.cs:
5822           - Throw ArgumentException if a negative value is passed to SelectionLength
5823           - Update the selection end if start is moved. end needs to be always
5824             after start. (Fixes #79095)
5825           - Track selection length; MS keeps the selection length even if start
5826             is changed; reset on all other operations affection selection
5827
5828 2006-08-22  Jackson Harper  <jackson@ximian.com>
5829
5830         * TreeView.cs: Make sure both scrollbars get displayed and sized
5831         correctly when the other bar is visible.
5832         - Use the original clip rectangle for checking if the area between
5833         the two scrollbars is visible, not the viewport adjusted clipping
5834         rectangle.
5835
5836 2006-08-22  Jackson Harper  <jackson@ximian.com>
5837
5838         * Binding.cs: We don't use IsBinding because it requires the
5839         control to be created, which really shouldn't be necessary just to
5840         set a property on the control.
5841
5842 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5843
5844         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5845         ArgumentNullReferenceException when the argument is null.
5846
5847 2006-08-21  Jackson Harper  <jackson@ximian.com>
5848
5849         * Timer.cs: Track the thread that the timer is started in (NOT
5850         CREATED), this way messages for it will only be triggered on its
5851         queue.
5852         * XEventQueue.cs: Track the timers here, this makes timers per
5853         thread, like MS.
5854         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5855
5856 2006-08-19  Chris Toshok  <toshok@ximian.com>
5857
5858         * XplatUIX11.cs: after further communication with pdb, we get the
5859         best of both worlds.  SetZOrder working for un-Mapped windows, and
5860         no X errors for un-mapped windows.
5861
5862 2006-08-19  Chris Toshok  <toshok@ximian.com>
5863
5864         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5865         as it was causing pdn toolbars to not have the correct stacking.
5866
5867 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5868
5869         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5870         calculation.  Not sure why control should ever be setting a negative
5871         width though.  Fixes #78931.
5872
5873 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5874
5875         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5876         null items in ObjectCollection class.
5877         * ListBox.cs.: Likewise.
5878
5879 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5880
5881         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5882           as the base method in ThemeWin32Classic should work fine.
5883           Fixed bug #78607.
5884
5885 2006-08-18  Jackson Harper  <jackson@ximian.com>
5886
5887         * Binding.cs: When validating if the value entered doesn't convert
5888         properly reset to the old value.
5889         * RadioButton.cs: Don't fire click when we get focus.
5890
5891 2006-08-18  Jackson Harper  <jackson@ximian.com>
5892
5893         * FileDialog.cs: Paint the selection on the directory combobox the
5894         same way as on MS. 
5895
5896 2006-08-17  Jackson Harper  <jackson@ximian.com>
5897
5898         * ErrorProvider.cs: Don't allow the error control to be selected.
5899         * Control.cs: Don't send the SetFocus messages, the control
5900         activation will do this, and if we do it blindly here validation
5901         does not work.
5902
5903 2006-08-17  Jackson Harper  <jackson@ximian.com>
5904
5905         * Control.cs:
5906         * ContainerControl.cs: Make validation events fire in the correct
5907         order.  TODO: For some reason the first validation event is not
5908         getting fired.
5909
5910 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5911
5912         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5913
5914 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5915
5916         * ComboBox.cs : implement scroll wheel support for popped-down
5917         state. Fixes #78945. 
5918
5919 2006-08-17  Jackson Harper  <jackson@ximian.com>
5920
5921         * TreeView.cs: Specify treeview actions (old patch that didn't get
5922         committed for some reason).
5923         - Don't let the mouse wheel scroll us too far.  Just want to make
5924         the bottom node visible, not scroll it all the ways to the top.
5925
5926 2006-08-17  Jackson Harper  <jackson@ximian.com>
5927
5928         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5929
5930 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5931
5932         * ComboBox.cs : don't do mouseover selection in simple mode.
5933
5934 2006-08-16  Jackson Harper  <jackson@ximian.com>
5935
5936         * Form.cs: Fire the closing events for all the mdi child windows
5937         when a window is closed.  If the cancel args are set to true, the
5938         main window still gets the event fired, but it doesn't not close.
5939         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5940         handler, instead of when the button is clicked, so cancelling the
5941         close works correctly.
5942         * ComboBox.cs: Send the mouse down to the scrollbar.
5943
5944 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5945
5946         * ListBox.cs: When passing 'null' to SelectedItem,
5947         set SelectedIndex to -1, to unselect items. This is the
5948         observed behaviour in .Net.
5949
5950 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5951
5952         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5953           MS flags saying there won't be any. (fixes #78800)
5954         * Control.cs (HandleClick): Made virtual
5955
5956 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5957
5958         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5959           cultures. Fixed bug #78399.
5960
5961 2006-08-16  Jackson Harper  <jackson@ximian.com>
5962
5963         * Form.cs: Use the MdiClients MdiChildren property to access
5964         MdiChildren instead of creating the array from the child controls.
5965         * MdiClient.cs: Maintain a separate array of the mdi children, so
5966         that insertion order is maintained when the Z-order is changed.
5967
5968 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5969
5970         * ListView.cs : add an ItemComparer and default to it for sorting.
5971         Fixes #79076, but sorting needs a complete overhaul to be compat with
5972         MS.
5973
5974 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5975
5976         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5977
5978 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5979
5980         * Hwnd.cs (Mapped): Properly traverse the tree
5981
5982 2006-08-15  Chris Toshok  <toshok@ximian.com>
5983
5984         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5985         pass manager.Current.GetType() to ParseData.  It has to be the
5986         property type.  So, hold off doing the ParseData until we're in
5987         SetPropertyValue where we know the type.  This fixes the crash in
5988         #78821 but the textbox is still empty.
5989
5990 2006-08-15  Chris Toshok  <toshok@ximian.com>
5991
5992         * DataGrid.cs:
5993         - when we're scrolling, only call Edit() again if the
5994         current cell is still unobscured. Fixes bug #78927.
5995         - when handling mousedown on a cell, ensure the cell is visible
5996         before calling Edit.
5997         - remove the properties from DataGridRow, and remove the
5998         DataGridParentRow class altogether.
5999         
6000
6001 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6002
6003         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6004           fire OnTextChanged by ourselves. There's no point calling base,
6005           we don't set the base value anywhere else. Fixes #78773.
6006
6007 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6008
6009         * ListBox.cs: Call CollectionChanged when modifying
6010         an item from Items indexer, to update the actual items
6011         in the list box.
6012
6013 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6014
6015         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6016         to match .Net behaviour.
6017
6018 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6019
6020         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6021
6022 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6023
6024         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6025
6026 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6027
6028         * MessageBox.cs: Prevent potential NRE exception.
6029         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6030
6031 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6032
6033         * MessageBox.cs: Calculate the owner of a messagebox, also make
6034           it topmost. Fixes #78753
6035
6036 2006-08-14  Chris Toshok  <toshok@ximian.com>
6037
6038         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6039         programmatically move windows.  first, set the PPosition hint as
6040         well as the USPosition hint.  Second include some code from pdb
6041         that sets the window type to NORMAL when we set the transient for
6042         hint.  This is because, in the absence of a window type, metacity
6043         thinks any window with TransientFor set is a dialog, and refuses
6044         to let us move it programmatically.  fascists.
6045
6046 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6047
6048         * XplatUIX11.cs: When setting normal hints, take into consideration
6049           an different hints previously set so we don't delete them (fixes #78866)
6050
6051 2006-08-12  Chris Toshok  <toshok@ximian.com>
6052
6053         * ToolBarButton.cs: make Layout return a boolean, if something to
6054         do with the button's layout changed.
6055
6056         * ToolBar.cs:
6057         - add another parameter to Redraw, @force, which all existing
6058           calls set to true.
6059         - make the Layout function return a boolean which is true if the
6060           layout has actually changed.  Redraw now uses this (and @force)
6061           to determine when to invalidate.  At present the only place
6062           where @force can be false is the call from OnResize, when
6063           background_image == null.  So, resizing a toolbar when the
6064           layout doesn't change results in no drawing.
6065
6066 2006-08-12  Chris Toshok  <toshok@ximian.com>
6067
6068         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6069         the VScrollBar and HScrollbar reversed.  oops.
6070
6071         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6072         scrollbars.  we were assigning them twice (once in
6073         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6074         therefore causing two scrollbar resizes (and redraws?) to happen
6075         per grid resize.
6076
6077 2006-08-12  Chris Toshok  <toshok@ximian.com>
6078
6079         * ToolBarButton.cs: redraw the entire button if the theme tells us
6080         to.
6081
6082         * Theme.cs: add ToolBarInvalidateEntireButton.
6083
6084         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6085         buttons, just the border.
6086
6087         * ThemeNice.cs: redraw the entire toolbar button since we need to
6088         draw the highlight image.
6089
6090         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6091         we need to redraw the entire button (not just the border).
6092
6093 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6094
6095         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6096           for vertical bars. Fixes the mismatches shown by #78513
6097
6098 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6099
6100         * FileDialog.cs: If a saved/remembered path doesn't exist
6101           anymore, fall back to "Desktop".
6102
6103 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6104
6105         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6106           parent. It's apparently legal to not have one
6107         * XplatUIX11.cs:
6108           - SetZOrder: Don't try to set Z-Order on an unmapped window
6109           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6110             it unless the coordinates are negative
6111
6112 2006-08-10  Mike Kestner  <mkestner@novell.com>
6113
6114         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6115         when setting to null per msdn docs.  Fixes #78854.
6116
6117 2006-08-10  Chris Toshok  <toshok@ximian.com>
6118
6119         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6120         flickering by setting a clip rectangle on the Graphics when we
6121         need to redraw just a particular menuitem.  Also, rename "OnClick"
6122         to "OnMouseDown" to reflect what it actually is.
6123         
6124         * Form.cs: track the OnMouseDown change.
6125
6126 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6127
6128         * CommonDialog.cs: Properly inherit the CreateParams from the form
6129           and only change what we need. Fixes #78865
6130
6131 2006-08-10  Chris Toshok  <toshok@ximian.com>
6132
6133         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6134         flickering in flat mode (and most of the flickering in general) by
6135         only invalidating the button border (and not the entire rectangle)
6136         when the state changes.  A couple of cases still flicker:
6137         ToggleButtons, and the dropdown arrow case when the user mouse
6138         ups.
6139
6140 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6141
6142         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6143           for german keyboards. Numlock state shouldn't affect the behaviour
6144           of the Del key. Fixes bug #78291.
6145
6146 2006-08-10  Chris Toshok  <toshok@ximian.com>
6147
6148         * ListControl.cs: remove the items.Clear line from BindDataItems,
6149         as this is the first thing done by both subclasses in their
6150         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6151         passed -1, refresh the list.  This gets databinding working when
6152         the datasource is set on the list before the datasource is
6153         populated (as in wf-apps/ReportBuilder.)
6154
6155         * ComboBox.cs: remove the argument to BindDataItems.  This call
6156         should really go away, and be initiated by the ListControl code.
6157
6158         * ListBox.cs: same.
6159
6160 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6161
6162         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6163           if no data is in the document when the control is displayed
6164
6165 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6166
6167         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6168           yes (fixes #78806)
6169         * TextControl.cs: 
6170           - PositionCaret: Allow positioning of caret but don't call methods 
6171             requiring a handle if the window isn't created yet
6172           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6173           - owner_HandleCreated: Don't position the caret, just update it's 
6174             location. User might have already set a different position
6175
6176 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6177
6178         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6179           windows. Screws up the returned coordinates for child windows. 
6180           Fixes #78825. I'm hoping this doesn't break something, since the
6181           code was explicitly put in 8 months ago, but no bug was attached.
6182           Menus still seem to work properly.
6183
6184 2006-08-08  Chris Toshok  <toshok@ximian.com>
6185
6186         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6187         supposed to do - delay data binding until the EndInit call.  Also,
6188         make the table style collection's CollectionChangeAction.Refresh
6189         work properly.
6190
6191         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6192         (with action = Refresh) when a consituent table's MappingName is
6193         changed.
6194
6195 2006-08-08  Chris Toshok  <toshok@ximian.com>
6196
6197         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6198         Invalidate, since changing the text can change the size of the all
6199         toolbar buttons.
6200
6201 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6202
6203         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6204           we don't have it yet
6205
6206 2006-08-08  Chris Toshok  <toshok@ximian.com>
6207
6208         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6209         dialog, as this causes X errors later on, since we actually
6210         destroy the window.  Instead, .Hide() it.
6211
6212 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6213
6214         * ComboBox.cs: Added focus reflection for popup window
6215         * XplatUIX11.cs: 
6216           - Removed transient setting for non-app windows for now, not sure it
6217             was needed
6218           - Fixed logic checking if we have captions when deciding 
6219             override_redirect, WS_CAPTION is two bits and a 0 check was not
6220             sufficient
6221           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6222             complicated
6223         * Form.cs: 
6224           - AddOwnedForm: Don't just add the form to the list, call the property
6225             to ensure the driver is informed about the ownership as well
6226           - CreateHandle: Set the TopMost status in the driver if we have an owner
6227         * XplatUI.cs: Fixed debug statement
6228
6229 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6230         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6231           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6232           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6233           TrackBarRenderer.cs: Make constructor private.
6234         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6235         * ProfessionalColorTable.cs: Make properties virtual.
6236
6237 2006-08-06  Duncan Mak  <duncan@novell.com>
6238
6239         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6240         is not changing.
6241
6242 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6243         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6244           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6245           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6246           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6247           Initial import of new 2.0 classes.
6248
6249 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6250         * Application.cs: Add 2.0 VisualStyles properties.
6251
6252 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6253         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6254           XplatUIX11.cs: Create property to allow access to existing private
6255           variable "themes_enabled"
6256
6257 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258
6259         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6260         file size, as otherwise our class libraries fail using windows. Fixes
6261         bug #78759.
6262
6263 2006-08-04  Jackson Harper  <jackson@ximian.com>
6264
6265         * Form.cs:
6266         * XplatUIX11.cs: Move the toolwindow window manager creation into
6267         the X11 driver, this way on win32 we can let windows create/handle
6268         the toolwindows.
6269
6270 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6271
6272         * PrintDialog.cs: Remove some redundant checks, add some others,
6273         clean some code, and move the focus to the text boxes when the
6274         values are incorrect.
6275
6276 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
6277
6278         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
6279
6280 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6281
6282         * NumericUpDown.cs: Setting the Minimum and Maximum is now
6283           handled correctly. Fixes bug #79001.
6284
6285 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6286
6287         * PrintDialog.cs: The "Copies" numeric up down must have
6288         set the Minimum property to 1; only if the value is bigger
6289         than 1, activate "Collate" check box. This is the behaviour of .Net.
6290         Also modify the Document elements only if it is not null.
6291
6292 2006-08-03  Jackson Harper  <jackson@ximian.com>
6293
6294         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6295         length. (We have a larger array then actual node count).
6296                 
6297 2006-08-03  Jackson Harper  <jackson@ximian.com>
6298
6299         * ComboBox.cs: Don't show selection by default.
6300         - The SelectAll isn't needed here, since the focus code should do
6301         that
6302         - DDL style lists to manual selection drawing, so when they
6303         get/lose focus they have to invalidate.
6304
6305 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6306
6307         * TextBoxBase.cs: Don't always show all selections by default.
6308
6309 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6310         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6311           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6312           Fixed various typos.
6313
6314 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6315
6316         * Control.cs: Removing the controls in a ControlCollection with
6317           Clear now hides the controls as expected. Fixes bug #78804. 
6318
6319 2006-08-03  Jackson Harper  <jackson@ximian.com>
6320
6321         * Control.cs: Revert previous focus patch, it breaks reflector.
6322
6323 2006-08-03  Jackson Harper  <jackson@ximian.com>
6324
6325         * ComboBox.cs: Cleanup selection and focus with the combobox.
6326         This also eliminates some duplicated keyboard code, since now
6327         everything is handled by the main class.
6328         - Make list selection work on mouse up instead of down, to match
6329         MS.
6330
6331 2006-08-02  Jackson Harper  <jackson@ximian.com>
6332
6333         * Control.cs: Setting focus needs to go through the whole
6334         selection mechanism.
6335
6336 2006-08-02  Chris Toshok  <toshok@ximian.com>
6337
6338         * PrintPreviewDialog.cs: change MinimumSize to use
6339         base.MinimumSize so it works.
6340
6341 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6342
6343         * TextControl.cs:
6344           - UpdateCaret: Added sanity check in case caret isn't defined yet
6345           - Line.Delete: Now updating selection and caret markers if we're
6346             transfering a node (Properly fixes #78323)
6347           - SetSelectionEnd: Added sanity check
6348         * TextBoxBase.cs: Removed broken attempt to fix #78323
6349
6350 2006-08-01  Chris Toshok  <toshok@ximian.com>
6351
6352         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6353         Close() call is handled in Form, not here.
6354
6355 2006-08-01  Chris Toshok  <toshok@ximian.com>
6356
6357         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6358         layout/rendering.
6359
6360         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6361         for sizes < 100% zoom.  The code now aggressively attempts to keep
6362         from calling document.Print (), and tries not to use the scaling
6363         g.DrawImage whenever possible (it still does if you scale to >
6364         100%, since usually that involves huge images).
6365
6366         * PrintPreviewControl.cs: hook up the close button.
6367
6368 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6369         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6370           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6371           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6372           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6373           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6374           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6375           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6376           Removed [Serializable] for 2.0 Event Handlers.
6377
6378 2006-07-31  Jackson Harper  <jackson@ximian.com>
6379
6380         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6381         * TextControl.cs: Uncomment out the body of this method.
6382
6383 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6384
6385         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6386           standard cursors.
6387
6388 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6389
6390         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6391           that embed TextBox and need selections visible even if textbox is not
6392           focused to enforce that behaviour.
6393         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6394           selection drawing
6395
6396 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6397
6398         * TextControl.cs:
6399           - Added new SetSelectionStart/SetSelectionEnd overloads
6400           - Fixed viewport width assignment to be accurate
6401           - Adjusted alignment line shift calculations to allow cursor on right
6402             aligned lines to be always visible at the right border (like MS)
6403         * TextBoxBase.cs:
6404           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6405           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6406           - CalculateScrollBars: Use ViewPort size instead of window size, to
6407             properly consider space occupied by the border and scrollbars 
6408             (Fixes #78661)
6409           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6410             calculations; no longer leaves artifacts
6411           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6412             calculation bugs (Still missing right/center align calculations)
6413
6414 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6415
6416         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6417           use of both scroll rect and clip rect, as they do the same.
6418
6419 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6420
6421         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6422           in the event handler (fixes #78912)
6423
6424 2006-07-31  Chris Toshok  <toshok@ximian.com>
6425
6426         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6427         grid.ListManager.Count, since grid.ListManager might be null.
6428         This of course begs the question "why are we drawing rows for a
6429         grid with no list manager (and therefor no rows)?"  Fixes the
6430         crash in bug #78929.
6431
6432 2006-07-31  Chris Toshok  <toshok@ximian.com>
6433
6434         * RelatedPropertyManager.cs: Don't always chain up to the parent
6435         ctor.  instead, call SetDataSource if the parent's position is !=
6436         -1.  Fixes the crash in #78822.
6437
6438 2006-07-31  Chris Toshok  <toshok@ximian.com>
6439
6440         * DataGrid.cs (get_ListManager): use field instead of property
6441         accessors for datasource and datamember.
6442         (RowsCount): make internal again.
6443         (OnMouseDown): end edits before resizing columns/rows.
6444         (OnMouseUp): restart edits after resizing columns/rows.
6445
6446 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6447
6448         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6449           This fixes the situation where the last set cursor is displayed
6450           whenever the mouse is over scrollbars.
6451
6452 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6453
6454         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6455         Document properties, as well as initial values.
6456
6457 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6458
6459         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6460           and ClientEdge results in a 3-pixel border, which is
6461           wrong.
6462
6463 2006-07-28  Jackson Harper  <jackson@ximian.com>
6464
6465         * TreeNodeCollection.cs: Fix the clear method.
6466         - Fix the Shrink also
6467
6468 2006-07-27  Jackson Harper  <jackson@ximian.com>
6469
6470         * TreeView.cs: Make sure the visible order is computed when we
6471         attempt to size the scrollbars (for trees that mess with the
6472         scrolling when they shouldn't.
6473         - Make sure to give the scrollbars valid values.
6474
6475 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6476
6477         * XplatUIX11.cs: Move motion compression code to where it
6478           has less performance impact
6479
6480 2006-07-26  Jackson Harper  <jackson@ximian.com>
6481
6482         * UpDownBase.cs: When the control is selected make the child
6483         controls non selectable, so that a click on them won't do a
6484         focus/unfocus cycle.
6485         - Don't give focus to the text box when the spinner is selected.
6486         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6487
6488 2006-07-26  Chris Toshok  <toshok@ximian.com>
6489
6490         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6491         satisfied with this solution.  If the bitmaps are small, we should
6492         just cache them in the PrintPreviewDialog and draw them here.
6493         Also, the layout is broken for the 2-up and 3-up cases.
6494
6495         * Theme.cs: add PrintPReviewControlPaint.
6496
6497         * PrintPreviewDialog.cs: first pass implementation.
6498
6499         * PrintPreviewControl.cs: first pass implementation.  No
6500         scrollbars yet.
6501
6502         * PrintDialog.cs: only validate fields if that particular portion
6503         of the UI is enabled.  Also, set the document's controller to a
6504         PrintControllerWithStatusDialog wrapping the document's print
6505         controller.
6506
6507         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6508         bring up a SaveFileDialog (i hope we don't want to match the
6509         behavior of the crappy windows file entry) and set the
6510         PrinterSettings.PrintFileName accordingly.
6511
6512 2006-07-26  Jackson Harper  <jackson@ximian.com>
6513
6514         * ContainerControl.cs: Add a field that disables auto selecting
6515         the next control in a container when the container is activated.
6516         * UpDownBase.cs: Don't select the text box when the up down is
6517         selected.
6518
6519 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6520
6521         * XEventQueue.cs: Added methods for peeking (used for compression
6522           of successive events)
6523         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6524           mouse move events (fixes #78732)
6525
6526 2006-07-25  Jackson Harper  <jackson@ximian.com>
6527
6528         * UpDownBase.cs: Use an internal class for the textbox so that we
6529         can control focus.  the updown control should always have focus,
6530         if either the text area or the buttons are clicked.
6531         - Send the key messages to the textbox, since it never actually
6532         has focus
6533         - Activate and decativate the textbox caret.
6534
6535 2006-07-24  Jackson Harper  <jackson@ximian.com>
6536
6537         * Control.cs: Use the directed select when selecting a control,
6538         this way the container controls override will get called and the
6539         whole ActiveControl chain will get triggered.  TODO: probably need
6540         to make sure this gets done everywhere instead of the old
6541         Select(Control).
6542         * ContainerControl.cs: Implement the directed Select method to
6543         find and activate the correct child control.    
6544         
6545 2006-07-22  Mike Kestner  <mkestner@novell.com>
6546
6547         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6548         menu handling code so that clicks without a grab work too.
6549         [Fixes #78914]
6550
6551 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6552
6553         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6554           Added some small optimizations.
6555
6556 2006-07-21  Matt Hargett  <matt@use.net>
6557
6558         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6559
6560 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6561
6562         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6563           tests pass and match MS in some strange border cases.
6564
6565 2006-07-21  Chris Toshok  <toshok@ximian.com>
6566
6567         * ThemeWin32Classic.cs: handle drawing of the relation links and
6568         parent row buttons.
6569
6570         * Theme.cs: change args to DataGridPaintParentRow.
6571
6572         * DataGrid.cs: Don't use controls for the relation links and
6573         parent buttons, so we have to handle all their interactions in
6574         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6575         when we're navigating through child tables, so we can reinstate
6576         selection, expanded state, current cell, etc.
6577
6578 2006-07-20  Chris Toshok  <toshok@ximian.com>
6579
6580         * ToolBar.cs: When we redraw a button, for whatever reason,
6581         there's no reason to redraw the entire toolbar.  Also, don't call
6582         Control.Refresh from within Redraw, as it's much heavier than
6583         Invalidate (which is really what we want).
6584
6585 2006-07-20  Chris Toshok  <toshok@ximian.com>
6586
6587         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6588         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6589         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6590         traces from within a debug IBindingList datasource
6591         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6592         to work in a similar fashion.
6593
6594 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6595
6596         * ListBox.cs: Don't call Sort () when setting 
6597         the Sorted property to false (avoid an unnecessary sort).
6598
6599 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6600
6601         * ListControl.cs: DataSource should throw an ArgumentException
6602         instead of a normal exception when the argument is not of the 
6603         correct type.
6604
6605 2006-07-20  Mike Kestner  <mkestner@novell.com>
6606
6607         * Control.cs: add InternalPreProcessMessage to allow us to steal
6608         key events before MWF gets its paws on them.  Adapted from a
6609         suggestion by eno.
6610         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6611         up/down/left/right navigation. Override the new internal control
6612         method to steal the events since they never make it to WndProc.
6613         * ToolBarButton.cs: don't worry about pushed when setting hilight
6614         since the drawing code prefers pushed to hilight. Invalidate on 
6615         Hilight changes. Fixes #78547 and #78525.
6616
6617 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6618
6619         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6620           the canvas size. Fixes #78868
6621
6622 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6623
6624         * Splitter.cs: Track requested split position until first layout
6625           is performed. Fixes #78871
6626
6627 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6628
6629         * Application.cs: Removed code that forces 1.x for the version
6630           number if the version started with 0. Not sure why that code was
6631           there and I couldn't find any bugs that indicated we needed it.
6632           Fixes #78869
6633
6634 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6635
6636         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6637           ResetDefaults(), just write some output to the console until it's
6638           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6639
6640 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6641
6642         * PropertyGridView.cs: set StartPosition of drop down forms
6643         so they appear in correct initial spot.  Fixes #78190.
6644
6645 2006-07-19  Mike Kestner  <mkestner@novell.com>
6646
6647         * ThemeWin32Classic.cs: use parent background color when drawing
6648         flat toolbars.  Restructure the conditionals to make sure non-flat
6649         non-Divider toolbars are filled too.  Fixes #78837.
6650
6651 2006-07-19  Mike Kestner  <mkestner@novell.com>
6652
6653         * ListBox.cs: Sort on collection changes even if the handle
6654         isn't created yet.  Fixes #78813.
6655
6656 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6657
6658         * ListControl.cs: DisplayMember should never be null,
6659         and now we assign String.Empty when null is passed to it (this
6660         is the .Net way).
6661
6662 2006-07-17  Mike Kestner  <mkestner@novell.com>
6663
6664         * ListViewItem.cs: restructure Font and subitem Font handling 
6665         to hold a specific font and refer back to owner on null.
6666         Fixes #78761.
6667
6668 2006-07-17  Mike Kestner  <mkestner@novell.com>
6669
6670         * ToolBar.cs: bandaid for side-effect of previous patch which was
6671         discarding explicit heights for non-AutoSize toolbars.  Need to
6672         extend my format tester to deal with AutoSize=false. Fixes #78864.
6673
6674 2006-07-15  Jackson Harper  <jackson@ximian.com>
6675
6676         * LabelEditTextBox.cs:
6677         * TreeView.cs: Use a new LabelEdit class for node editing, this
6678         class automatically 'closes' itself when it gets the enter key or
6679         loses focus.
6680         - Use the client rectangle when setting the trees scrollbars, so
6681         border style is taken into account.
6682         
6683 2006-07-14  Jackson Harper  <jackson@ximian.com>
6684
6685         * TreeNode.cs:
6686         * TreeView.cs: Make the editing work similar to MSs, firing the
6687         events correctly and ending edits correctly.
6688
6689 2006-07-14  Mike Kestner  <mkestner@novell.com>
6690
6691         * ToolBarButton.cs:
6692         * ToolBar.cs: layout restructuring and redraw enhancements to support
6693         formatting changes gracefully, like setting TextAlign, ImageList, 
6694         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6695         of the MS controls.  Things like flat toolbars ignoring button size
6696         but becoming constant sized at the largest button's size.  Normal
6697         toolbars with an image set cannot be shrunk smaller than the image,
6698         but text can be clipped/ignored.
6699         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6700         is zero.  Seems like DrawString should be smart enough to not put
6701         anything on screen though. Also trim labels and ellipsize at the char
6702         boundary, not word.
6703         Fixes #78711 and #78483.
6704
6705 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6706
6707         * FolderBrowserDialog.cs: Disable "New Folder" button and
6708           "New Folder" contextmenu menuitem if a folder like "My Computer"
6709           is selected.
6710
6711 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6712
6713         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6714         * FolderBrowserDialog.cs:
6715           - Use MWFConfig to store and read size and position settings
6716           - Added code to create a new folder (button or context menu).
6717             Use TreeView labeledit to change the name of the new folder.
6718
6719 2006-07-14  Jackson Harper  <jackson@ximian.com>
6720
6721         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6722         when the tree is scrolled we end editing.
6723
6724 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6725
6726         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6727           Down arrows
6728
6729 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6730
6731         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6732         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6733         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6734         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6735         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6736         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6737         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6738         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6739         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6740         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6741         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6742         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6743         ListViewItemSelectionChangedEventHandler.cs,
6744         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6745         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6746         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6747         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6748         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6749         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6750         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6751         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6752         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6753         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6754         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6755         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6756         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6757         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6758         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6759         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6760         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6761         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6762         WebBrowserNavigatingEventHandler.cs, 
6763         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6764
6765 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6766
6767         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6768         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6769         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6770         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6771         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6772         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6773         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6774         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6775         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6776         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6777         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6778         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6779         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6780         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6781         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6782         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6783         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6784         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6785         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6786         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6787         ListViewItemStates.cs, MaskFormat.cs: Added
6788
6789 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6790
6791         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6792         Patch from eno for bug 78558.
6793         
6794 2006-07-13  Jackson Harper  <jackson@ximian.com>
6795
6796         * TreeView.cs: When an edit is finished make sure that the
6797         selected node is visible.
6798         - When setting the top/bottom use the scrollbars is_visible, so
6799         everything will be set correctly even if the tree isn't visible
6800         yet.
6801
6802 2006-07-13  Jackson Harper  <jackson@ximian.com>
6803
6804         * ComboBox.cs: Revert the item->index part of my previous patch.
6805         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6806         the edit box has lost focus (duh).
6807         - Just make the edit box not visible when we get return, that will
6808         take the focus, which will call EndEdit
6809         * TreeNode.cs When we start editing, notify the treeview.
6810
6811 2006-07-12  Jackson Harper  <jackson@ximian.com>
6812
6813         * ComboBox.cs: Clear out old items before setting the item list.
6814         This prevents databound controls from having their items added
6815         twice.
6816         - Switch the combobox to use indices whereever possible instead of
6817         using Item's.  This allows usto navigate through lists that have
6818         more then one item with the same string value (ie a, b, b, a).
6819         - Scroll the listboxes scrollbar when a non visible item is
6820         highlighted
6821         - Allow keypress to cycle through all the possible values. For
6822         example if you have b1, b2, b3 and hold down the B key all the
6823         values will be cycled through.
6824         
6825 2006-07-12  Jackson Harper  <jackson@ximian.com>
6826
6827         * TextBoxBase.cs:
6828         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6829         this using the internal methods.
6830         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6831         controls to "override" OnGotFocus and change focus behavior if
6832         needed.
6833         - Same thing for LostFocus
6834         * ComboBox.cs: Pass off focus to the text control properly.
6835
6836 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6837
6838         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6839         * FolderBrowserDialog.cs: Almost a complete rewrite.
6840           - Better support for Environment.Specialfolders
6841           - Added support for MWFVFS
6842           - Made setting SelectedPath work
6843
6844 2006-07-12  Jackson Harper  <jackson@ximian.com>
6845
6846         * Control.cs: Optimze getting all the controls.
6847
6848 2006-07-11  Jackson Harper  <jackson@ximian.com>
6849
6850         * ContainerControl.cs: Override SETFOCUS in the container control,
6851         so that it is not selected on mouse click.
6852
6853 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6854
6855         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6856           Hopefully we will have a better way once all of focus is complete.
6857
6858 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6859
6860         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6861           a compile error with csc.
6862
6863 2006-07-11  Jackson Harper  <jackson@ximian.com>
6864
6865         * Control.cs: When hiding a control only select the next control
6866         if the current control was focused.
6867         - Don't handle enter/leave when setting/killing focus, this is
6868         done by the container control.
6869         - Remove is_selected, it's not needed anymore.
6870         - Add utility methods for selecting a child control, and for
6871         firing the Enter/Leave events.
6872         * ContainerControl.cs: When a control is activated fire the
6873         enter/leave events.
6874         - Don't wrap when processing the tab key, so that focus can be
6875         moved outside of the container.
6876         - Use the correct active control
6877
6878 2006-07-11  Jackson Harper  <jackson@ximian.com>
6879
6880         * ComboBox.cs: Remove some debug code that was blinding me.
6881         * UpDownBase.cs: These controls actually aren't implicit, they are
6882         visible to the user.
6883
6884 2006-07-10  Chris Toshok  <toshok@ximian.com>
6885
6886         * DataGrid.cs: move back to the is_adding boolean field.  god i
6887         hate this is_editing/is_adding/is_changing stuff.
6888
6889 2006-07-10  Chris Toshok  <toshok@ximian.com>
6890
6891         * DataGridTableStyle.cs: just check if the property type is bool.
6892         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6893         Don't use CanRenderType.
6894
6895         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6896         if our text == NullText.  Remove CanRenderType.
6897
6898         * DataGridBoolColumn.cs: nuke CanRenderType.
6899
6900         * DataGrid.cs: reenable some code to end the current edit inside
6901         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6902         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6903         Also, remove the visible_row_count arg from CalcRowHeaders, since
6904         we don't need to worry about the actual height of the area.
6905
6906 2006-07-10  Chris Toshok  <toshok@ximian.com>
6907
6908         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6909         mode, just return.
6910
6911         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6912         the real sense of the IsInEditOrNavigateMode property (true =
6913         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6914
6915         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6916         column style exists, we still need to set its property descriptor
6917         to match up with our list manager.
6918
6919 2006-07-10  Chris Toshok  <toshok@ximian.com>
6920
6921         * ThemeWin32Classic.cs: implement the new row/header painting
6922         approach.  The parent row painting will likely go away and
6923         replaced with label controls, but the rest seems to work ok (and
6924         efficiently).
6925
6926         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6927         the row headers as a block now.  Instead we draw them in the
6928         normal draw-row loop.  Add some calls for drawing parent rows and
6929         relation rows.
6930
6931         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6932         a default table style.  Set the defaults from ThemeEngine.Current,
6933         not SystemColors.  Fix lots of misc issues with property setters.
6934
6935         * DataGrid.cs: move loads of style information out of this class
6936         as it's being duplicated with DataGridTableStyle.  keep track of a
6937         special DataGridTableStyle for the properties we used to mirror
6938         here.  Switch all the style properties to access this table style
6939         instead of instance fields of this class.  Also add a internal
6940         class to represent parent rows (more needs to be stored here, like
6941         the selection state from the parent table, as well as the
6942         expansion state.)  Also, for datasources with relations, do the
6943         right thing for collapse/expand, and add support for the
6944         navigation/parent row buttons.
6945
6946         Lastly, fix the crash in the 1.1.16 build.
6947
6948         * GridTableStylesCollection.cs: make the explicit interface
6949         implementations call the class's methods as opposed to duplicating
6950         them.
6951
6952         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6953         0 so the text doesn't jump around when we move the cursor.
6954
6955 2006-07-10  Jackson Harper  <jackson@ximian.com>
6956
6957         * TextBoxBase.cs:
6958         * ListBox.cs: Match MS's ToString (this makes debugging focus
6959         stuff infinitely easier).
6960
6961 2006-07-10  Jackson Harper  <jackson@ximian.com>
6962
6963         * Control.cs (SelectNextControl): When checking the control's
6964         parent use this instead of ctrl.parent so that null can be passed
6965         to SelectNextControl. (I have unit tests for this).
6966         - Remove unused var.
6967
6968 2006-07-10  Chris Toshok  <toshok@ximian.com>
6969
6970         * CurrencyManager.cs: correct one regression, the removal of the
6971         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6972         Refresh() correctly, and fix some event emission in
6973         ListChangedHandler.
6974
6975 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6976
6977         * FileDialog.cs: Don't use brackets for new folders if they exist
6978           under *nix. Instead use -(number of existing folders +1).
6979
6980 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6981
6982         * FileDialog.cs:
6983           - Fixed really nasty bug #78771
6984           - Don't block the whole GUI when reading directories with a lot of
6985             entries. Use an other thread instead and call BeginInvoke to
6986             update the ListView in MWFFileView
6987
6988 2006-07-07  Chris Toshok  <toshok@ximian.com>
6989
6990         * Control.cs (Dispose): release any Capture when disposing.
6991
6992 2006-07-07  Chris Toshok  <toshok@ximian.com>
6993
6994         * LinkLabel.cs (Select): if we chain up to the parent, set
6995         focused_index to -1 so we'll search for the first available link
6996         the next time the user tabs into us.  Also, if the direction is
6997         backward and focused_index == -1, start the search from the last
6998         element.
6999
7000 2006-07-07  Chris Toshok  <toshok@ximian.com>
7001
7002         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7003         is beyond the end of the text, don't do anything.
7004         (CreateLinkPieces): set our ControlStyles.Selectable based on
7005         whether or not we have any links.
7006         (Link.Invalidate): use a loop instead of foreach.
7007         (Link.set_Start): null out owner.sorted_links so it'll be
7008         recreated by CreateLinkPieces.
7009
7010 2006-07-06  Chris Toshok  <toshok@ximian.com>
7011
7012         * LinkLabel.cs: revert the SetStyle change.
7013
7014 2006-07-06  Chris Toshok  <toshok@ximian.com>
7015
7016         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7017         (OnEnableChanged): s/Refresh/Invalidate
7018         (OnGotFocus): if we have a focused index already, refocus it (so
7019         if we mouse out/in to the window it'll focus the right link).
7020         (OnKeyDown): move the tab handling out of here.
7021         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7022         when we lose focus.
7023         (OnMouseDown): don't Capture here - Control handles it.  Also,
7024         focus the active link.
7025         (OnMouseUp): don't deal with Capture.
7026         (OnPaintBackgroundInternal): remove.
7027         (OnTextAlignChanged): CreateLinkPieces before calling the
7028         superclass's method.
7029         (OnTextChanged): call CreateLinkPieces before calling superclass's
7030         method.
7031         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7032         move around.
7033         (Select): implement this, moving the selection between different
7034         links, and call parent.SelectNextControl if we don't have another
7035         link to focus in the given direction.
7036         (CreateLinkPieces): call Invalidate instead of Refresh.
7037         
7038 2006-07-06  Chris Toshok  <toshok@ximian.com>
7039
7040         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7041         new LinkLabel internals.
7042
7043         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7044         over pieces looking for active/focused/etc links.  also, deal with
7045         runs of text (and links) with embedded \n's in them, and use
7046         MeasureCharacterRanges instead of MeasureString to figure out the
7047         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7048         two-step.
7049
7050 2006-07-04  Jackson Harper  <jackson@ximian.com>
7051
7052         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7053         XKB or key auto repeat, do it manually.  Without key auto repeat,
7054         when a key is held down we get key press, key release, key press,
7055         key release, ... with auto repeat we get key press, key press, key
7056         press ..., and then a release when the key is actually released.
7057
7058 2006-07-03  Jackson Harper  <jackson@ximian.com>
7059
7060         * TabControl.cs:
7061         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7062         rules, they are always control color regardless of the background
7063         color.
7064
7065 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7066
7067         * FileDialog.cs: Added internal class MWFConfig.
7068           Removed Registry support and replaced it with support for the new
7069           MWFConfig class. See MWFConfig comments for more information.
7070
7071 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7072
7073         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7074           rectangle. Added some patches from eno from bug #78490 and fixed
7075           the arrow position for small up and down CPDrawScrollButtons.
7076
7077 2006-06-30  Jackson Harper  <jackson@ximian.com>
7078
7079         * InternalWindowManager.cs: Remove some debug code.
7080         * Form.cs: When an MdiParent is set to null, the window is
7081         "detatched" and becomes a normal window.
7082         * MdiClient.cs: Don't bring the new child form to the front until
7083         it is activated (setting it as active does this), this makes the
7084         previously active forms titlebar get redrawn as inactive.
7085
7086 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7087
7088         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7089           with later controls
7090
7091 2006-06-29  Mike Kestner  <mkestner@novell.com>
7092
7093         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7094         arrow in keynav state.  Fixes #78682.
7095
7096 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7097
7098         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7099           order (fixes #78393)
7100
7101 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7102
7103         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7104           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7105           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7106           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7107           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7108           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7109           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7110           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7111           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7112           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7113           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7114           values)
7115
7116 2006-06-28  Mike Kestner  <mkestner@novell.com>
7117
7118         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7119
7120 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7121
7122         * PropertyGrid.cs,
7123           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7124           item lines from other area (It also makes BackColor consistent and
7125           compatible with .NET). Fixed bug #78564.
7126
7127 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7128
7129         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7130         Patch from Eno for #78555.
7131
7132 2006-06-27  Chris Toshok  <toshok@ximian.com>
7133
7134         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7135
7136         * DataGridColumnStyle.cs: same.
7137
7138         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7139         
7140         * DataGridDrawingLogic.cs: nuke.
7141
7142 2006-06-27  Chris Toshok  <toshok@ximian.com>
7143
7144         * DataGridTableStyle.cs: clean up the constructors, and build the
7145         list of child relations for this table.  I have no idea if this is
7146         where we should be doing it (it probably isn't), but since we're
7147         already iterating over the properties..
7148
7149         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7150         struct and array for keeping track of row information, similar to
7151         what's shown in a hack on
7152         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7153
7154         * Theme.cs: be consistent about the naming of DataGrid methods,
7155         prefering ColumnWidths and RowHeights over columnsWidths and
7156         RowsHeights.
7157
7158         * ThemeWin32Classic.cs: same, and also add support for variable
7159         sized rows (and the +/- expansion icons for related rows).
7160
7161 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7162
7163         * TextBoxBase.cs: Applied Eno's patch from #78660
7164
7165 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7166
7167         * Form.cs (ScaleCore): We don't want to scale our form if it's
7168           state is minimized or maximized, but we still need to scale our
7169           child windows. Also, added try/finally block to ensure layout
7170           gets reset (Fixes #78697)
7171
7172 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7173
7174         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7175
7176 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7177
7178         * Form.cs: Fixed c+p error and added check to resize form if minimum
7179           size is bigger than current size (Fixes #78709)
7180
7181 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7182
7183         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7184
7185 2006-06-26  Mike Kestner  <mkestner@novell.com>
7186
7187         * ComboBox.cs: only do Keypress handling in the combo when there  
7188         are items in the collection. Fixes #78710.
7189
7190 2006-06-26  Chris Toshok  <toshok@ximian.com>
7191
7192         * Binding.cs: make this work bi-directionally.  also, clear up
7193         other mixups between Push/Pull Data (e.g. we're supposed to pull
7194         data when validating).
7195
7196         * BindingManagerBase.cs: trim some fully qualified collection
7197         types.
7198
7199         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7200
7201 2006-06-23  Chris Toshok  <toshok@ximian.com>
7202
7203         * PropertyManager.cs: It appears (according to the unit tests)
7204         that PropertyManager doesn't use
7205         PropertyDescriptor.AddValueChanged to track propery value changes
7206         in its datasource, but uses the same scheme as Binding, where it
7207         looks for a <Property>Changed event and binds to it.
7208
7209         Also, according to the docs, IsSuspended always returns false for
7210         a property manager with a non-null datasource.
7211
7212 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7213
7214         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7215           need to update the actual DialogResult. (Fixes #78613)
7216
7217 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7218
7219         * Form.cs (ShowDialog): Release any captures before running the
7220           new message pump (fixes #78680)
7221
7222 2006-06-22  Mike Kestner  <mkestner@novell.com>
7223
7224         * ListView.cs: Layout column widths properly in details mode even 
7225         if HeaderStyle.None is set.  Fixes #78691.
7226
7227 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7228
7229         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7230
7231 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7232
7233         * Control.cs (ContainsFocus): Using new driver method to get focused
7234           window, instead of trying to use internal tracking var, which can
7235           recursion issues (Fixes #78685)
7236         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7237           XplatUIWin32.cs: Added GetFocus method to return focused window
7238
7239 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7240
7241         * ColorDialog.cs: when the mouse button is pressed inside the color
7242         matrix, don't let the cursor move out of it until the button is
7243         released, which is the behavior on windows. Changed 'colours' by
7244         'colors' to use the same word consistently.
7245
7246 2006-06-21  Chris Toshok  <toshok@ximian.com>
7247
7248         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7249         child relation and back, using a stack).  Also, remove
7250         GetDataSource and the code that calls it - it's not needed.  Also,
7251         track CurrencyManager.ListName's removal.
7252
7253 2006-06-21  Chris Toshok  <toshok@ximian.com>
7254
7255         * CurrencyManager.cs: push some of the original type checking from
7256         BindingContext.CreateBindingManager to here, and remove some of
7257         the finalType stuff.  Need more tests to make sure I've got the
7258         ListName part right, and we might need more in SetDataSource.
7259
7260         * PropertyManager.cs: add a ctor that takes just the datasource,
7261         and no property name.  Make SetDataSource work with a null
7262         property_name, and make Current return the data_source if the
7263         property descriptor is null.  this makes 'string foo = "hi";
7264         BindingContext[foo].Current' return "hi" as it should.
7265
7266         * RelatedCurrencyManager.cs: make this code more generic - there's
7267         no reason the parent manager has to be CurrencyManager, and
7268         there's no reason to pass the DataRelation.  It suffices to use a
7269         BindingManagerBase and PropetyDescriptor.
7270
7271         * RelatedPropertyManager.cs: make a similar change here.
7272         
7273         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
7274         flower I knew it could be.
7275
7276 2006-06-20  Chris Toshok  <toshok@ximian.com>
7277
7278         * PropertyManager.cs: the PropertyChangedHandler is invoked when
7279         data in the source has changed and we need to update the control,
7280         so s/PullData/PushData.
7281
7282         * CurrencyManager.cs: Refresh is meant to update the control from
7283         data in the datasource.  So, s/PullData/PushData.
7284
7285         * BindingContext.cs: add more ugliness (we weren't handling the
7286         case where data_source = DataTable and data_member = column_name).
7287
7288         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7289         from the perspective of the datasource.  PullData pulls from the
7290         control, PushData pushes to the control.
7291
7292 2006-06-20  Chris Toshok  <toshok@ximian.com>
7293
7294         * BindingContext.cs: rewrite the CreateBindingManager code to
7295         handle navigation paths more or less properly.  This could
7296         definitely stand some more work, in particular to push the
7297         recursion up to the toplevel.  But that relies on fixes in other
7298         places (System.Data comes to mind).
7299
7300         Also, move to a flat hashtable (and encode the twolevel nature of
7301         the dictionary into the hash key).  This lets us implement the
7302         IEnumerable.GetEnumerator method.
7303
7304         * RelatedCurrencyManager.cs: new class.  Update our view based on
7305         our relation and our parent CurrencyManager's position.
7306
7307         * CurrencyManager.cs: split out some logic from the ctor into
7308         SetView, so it can be called from the new RelatedCurrencyManager
7309         subclass.
7310
7311         * RelatedPropertyManager.cs: new class.  Update our datasource
7312         based on the position of our parent CurrencyManager.
7313
7314         * PropertyManager.cs: split out some logic from the ctor into
7315         SetDataSource, so it can be called from the new RelatedDataSource
7316         subclass.  Also, make the Current getter return the value
7317         of the PropertyDescriptor, not the data_source.
7318
7319         * Binding.cs: no need to duplicate the string splitting code here.
7320
7321 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7322
7323         * Control.cs:
7324           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7325             of the control is not altered, even though  we might be changing the
7326             internal state of the control (#78458)
7327           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7328             OnEnabledChanged, to allow easy altering of any child window state
7329           - OnEnabledChanged: Added code to enable/disable driver window state
7330           - OnParentEnabledChanged: Instead of firing the event, call 
7331             OnEnabledChanged, which will fire the event and also a) set driver
7332             window state and pass the enabled state to any grandchildren (#78458)
7333
7334 2006-06-19  Jackson Harper  <jackson@ximian.com>
7335
7336         * InternalWindowManager.cs: We don't set the cursor explicitly
7337         thats done via the response to NCHITTESTs.
7338         - Don't need to adjust for titlebar heights anymore, the
7339         coordinates are coming in the correct coordinates now (see peters
7340         last patch).
7341
7342
7343 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7344
7345         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7346           being translated relative to whole window, instead of client window.
7347           That caused broken offsets on mouseclick (and caused gas for our
7348           InternalWindowManager)
7349
7350 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7351
7352         * TextControl.cs:
7353           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7354           - Undo(): Added replay of cursor move on DeleteChars action; added
7355             calling Undo() again if a recorded cursor move is invalid (to
7356             ensure that some action is performed on Undo)
7357         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7358
7359 2006-06-16  Jackson Harper  <jackson@ximian.com>
7360
7361         * MdiClient.cs: Instead of just sizing maximized windows when
7362         there is a resize we also have to adjust the Y of minimized
7363         windows, so they stay pinned to the bottom of the mdi container.
7364         - Eliminate separate tracking of the active control, we can just
7365         get this from the controls collection.
7366         - Paint the decorations for the newly activated titlebar so we get
7367         a pretty blue bar.
7368         * InternalWindowManager.cs:
7369         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7370         even if they are a tool window.
7371         
7372 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7373
7374         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7375           undo buffer, these can happen when text was deleted and the cursor
7376           was recorded first. Since we will also have a recorded cursor
7377           after the delete this is not an issue. (Fixes #78651)
7378
7379 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7380
7381         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7382           instead properly track control states internally (allows us to
7383           remove is_selected from Control)
7384
7385 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7386
7387         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7388         whose width is not a multiple of 8.
7389
7390 2006-06-13  Jackson Harper  <jackson@ximian.com>
7391
7392         * MdiClient.cs:  Only maximize the next child if the current one
7393         is maximized.
7394
7395 2006-06-13  Chris Toshok  <toshok@ximian.com>
7396
7397         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7398         modified.  Also, guard against grid or grid_drawing being null in
7399         Invalidate.
7400
7401         * DataGrid.cs: Reformat tons of getters/setters.  In the
7402         DataMember setter, just call SetNewDataSource instead of
7403         duplicating some of its functionality.  In SetNewDataSource, don't
7404         check ListManager for null, since the property getter creates the
7405         object if needed.
7406
7407         * DataGridTableStyle.cs: don't set TableStyle or call
7408         SetDataGridInternal on the column here, it's done in
7409         GridColumnStylesCollection.Add.
7410
7411         * GridColumnStylesCollection.cs: fix all the explicit interface
7412         implementations to just call our methods.  Nuke AddInternal() and
7413         move the body of it to Add().  Also, add a call to
7414         column.SetDataGridInternal to Add().
7415
7416         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7417         base()+duplicate code.  Also, use the Format property instead of
7418         format to generate an Invalidate ala MS.  Lastly, create the
7419         textbox here, unconditionally.
7420         (set_Format): call Invalidate.
7421         (get_TextBox): no need to call EnsureTextBox.
7422         (Commit): remove the message box.
7423         (Edit) remove the call to EnsureTextBox.
7424         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7425         (EnterNullValue): no need to check textbox for null.
7426         (HideEditBox): no need to check textbox for null.
7427         (SetDataGridInColumn): add the textbox to the grid's controls.
7428         (EnsureTextBox): nuke.
7429         
7430 2006-06-13  Jackson Harper  <jackson@ximian.com>
7431
7432         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7433         and redraw the buttons when needed. Unhook when the window is
7434         unmaximized.
7435         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7436         needs this so that it can redraw its buttons when the menu is
7437         repainted.
7438         * InternalWindowManager.cs:
7439         * Form.cs: The method order has changed for DrawMaximizedButtons,
7440         so that it can be a PaintEventHandler.
7441         
7442 2006-06-13  Jackson Harper  <jackson@ximian.com>
7443
7444         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7445         window is activated and maximized, even if it wasn't before.
7446         - When  a new window is activated repaint the decorations of the
7447         old one, so that it no longer has the Active "look" (the blue
7448         titlebar).
7449         * InternalWindowManager.cs: Open up CreateButtons to base classes
7450         so they can recreate the buttons on state changes.
7451         - If a window is maximized give it all three buttons
7452         * MdiWindowManager.cs: Create the titlebar buttons when the state
7453         is changed, this is needed because a toolwindow will not have all
7454         three buttons until it is maximized.
7455
7456 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7457
7458         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7459           Fixed bug #78609.
7460
7461 2006-06-12  Jackson Harper  <jackson@ximian.com>
7462
7463         * KeysConverter.cs: Make sure we handle the Ctrl special case
7464         if its the only key.
7465         
7466 2006-06-12  Jackson Harper  <jackson@ximian.com>
7467
7468         * Theme.cs: Add a method to get the size of a managed window
7469         toolbar button.
7470         * InternalWindowManager.cs: Remove the ButtonSize property, this
7471         should be retrieved from the theme.
7472         * MdiWindowManager.cs: Get the button size from the theme
7473         * ThemeWin32Classic.cs: Make the method to get the managed window
7474         titlebar button size public.
7475         - Handle the different button sizes of maximized toolwindows
7476         (should match any maximized window).
7477         - Get the titlebar height from the theme, not the WM (which gets
7478         it from the theme).
7479
7480 2006-06-12  Jackson Harper  <jackson@ximian.com>
7481
7482         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7483         event down to the mdi window manager.
7484         - Expose some extra stuff to base classes
7485         - Make sure to end the Capture on an NC Mouse up, so that we can
7486         get double clicks properly, and the sizing doens't stick.
7487         - When doing PointToClient contain it in the workable desktop
7488         area, this prevents windows from changing size when the cursor is
7489         pulled outside of the working area while sizing.
7490         * MdiWindowManager.cs: When we get a double click maximize the
7491         window.
7492         - Reset the cursor after handling mode changes.
7493
7494 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7495
7496         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7497           current desktop, instead of just assuming a 0, 0 origin. This
7498           is needed for our internal window manager, to know the top
7499           margin of the desktop
7500
7501 2006-06-12  Chris Toshok  <toshok@ximian.com>
7502
7503         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7504         we need this to get rid of the selected background in the bool
7505         column.
7506         (CancelEditing): move the ConcedeFocus call to above the Abort
7507         call.  Also, set is_changing to false and invalidate the row
7508         header if we were changing before.
7509         (ProcessKeyPreviewInternal): remove, since noone outside this
7510         class calls it anymore.  Roll the code into ProcessKeyPreview.
7511         (EndEdit): remove the internal version.
7512         (InvalidateCurrentRowHeader): make private.
7513
7514         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7515         Keys.Escape handling (and with it the last call to
7516         DataGrid.EndEdit from outside the class.)
7517
7518
7519 2006-06-12  Chris Toshok  <toshok@ximian.com>
7520
7521         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7522         (OnKeyPress): set isedit to true.
7523         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7524         already handled by the grid.
7525
7526         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7527         right.  ugh.
7528         (set_DataSource): SetDataSource always returns true, so stop
7529         putting it in an if statement.
7530         (EndEdit): get rid of some {}'s
7531         (ProcessGridKey): return true in case Keys.Escape.
7532         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7533         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7534         PositionChanged, stopped connecting to CurrentChanged.
7535         (GetDataSource): simplify this a bunch.
7536         (SetDataSource): change return type from bool to void.
7537         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7538         to this, and make sure we don't set ListManager.Position inside
7539         set_CurrentCell.
7540         (OnListManagerItemChanged): if we're passed an actual index,
7541         redraw that row.
7542
7543         * CurrencyManager.cs (set_Position): don't call PullData here.
7544
7545 2006-06-09  Jackson Harper  <jackson@ximian.com>
7546
7547         * TreeNode.cs:  Recalculate the visible order before doing the
7548         Expand/Collapse Below calls, because those calls generate an
7549         expose.
7550         - Reduce calls to the TreeView property, which is mildly expensive
7551         by using a local var.
7552         * Form.cs: Layout the MDI child windows when creating the parent
7553         form.
7554         - Don't use the internal constructor anymore
7555         * MdiClient.cs: use the parent form width/height (if available)
7556         when laying out the child windows, we do this because the
7557         mdiclient isn't docked yet when the initial layout is done.
7558         - Don't need an internal constructor anymore.
7559
7560 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7561
7562         * FileDialog.cs: handle access errors when trying to create a folder
7563         or changing to a directory. No need to initialize out parameters.
7564
7565 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7566
7567         * FileDialog.cs: Append a number when creating a new folder if the
7568           folder already exists (use parenthesis instead of square brackets)
7569
7570 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7571
7572         * FileDialog.cs:
7573           - Disabled registry support for windows and added better registry
7574             error checking for other systems (need to investigate why it
7575             works perfectly on my system)
7576           - If a folder already exist show an error MessageBox instead of
7577             trying to create an indexed name.
7578           - Fixed a non intentional typo.
7579
7580 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7581
7582         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7583
7584 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7585
7586         * FileDialog.cs: When creating a new folder don't crash if the
7587           folder already exists.
7588
7589 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7590
7591         * FileDialog.cs: Allmost a complete rewrite.
7592           - added a "virtual" file system that handles the differences
7593             between unix and windows file systems (especially the directory
7594             structure). Moved most of the directory and file handling code
7595             into the vfs.
7596             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7597             UnixFileSystem and FSEntry.
7598           - Recently used folder/directory, size, location and used file names
7599             (file name ComboBox) are now stored in the registry and get read
7600             before the dialog shows up (fixes part 6 of bug #78446).
7601           - Creation of new folders/directories is now possible (context menu
7602             or ToolBar). Added TextEntryDialog for this that fills in the gap
7603             until ListView.LabelEdit works.
7604           - Fixed cursor handling (bug #78527) and focus handling for
7605             PopupButtonPanel
7606           - Various "Search in" ComboBox enhancements. The content of the
7607             dropdown listbox now almost matches ms.
7608           - Changed the behaviour when the user switches to SpecialFolder
7609             Recent to show the ListView in View.Details.
7610           - Beside using the ToolBar to change the View property of the
7611             file ListView it is now possible to use the context menu too.
7612
7613 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7614
7615         * ComboBox.cs: Don't create a new ObjectCollection when an item
7616           gets inserted. Just insert the item in the existing object_items
7617           ArrayList.
7618
7619 2006-06-08  Jackson Harper  <jackson@ximian.com>
7620
7621         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7622         that the treeview and root node checks are done also, this fixes a
7623         regression i caused in the unit tests.
7624
7625 2006-06-07  Wade Berrier <wberrier@novell.com> 
7626
7627         * RichTextBox.cs: More ISO8859-1 -> unicode
7628
7629 2006-06-07  Mike Kestner  <mkestner@novell.com>
7630
7631         * ComboBox.cs : use items to hold highlight/selection so that
7632         collection insertions don't require synchronization.
7633
7634 2006-06-07  Jackson Harper  <jackson@ximian.com>
7635
7636         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7637         routine.  We now always keep the sized edge at the cursor instead
7638         of computing movement and adjusting rects.  There is one buglet
7639         with this method though when the cursor is moved over area that
7640         the window can not expand too (such as the toolbars on the desktop).
7641
7642 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7643
7644         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7645         here. Fixes crash on startup in AlbumSurfer.
7646
7647 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7648
7649         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7650           values
7651
7652 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7653
7654         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7655         statement to avoid calling XNextEvent which will block if another thread
7656         took the event that we were expecting. Fixes bug #78605.
7657
7658 2006-06-07  Mike Kestner  <mkestner@novell.com>
7659
7660         * ListView.cs : isolated checkbox clicking from the selection logic.
7661         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7662
7663 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7664
7665         * Form.cs: Check that the value passed to Form.DialogResult
7666         is a valid enum value.
7667
7668 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7669
7670         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7671         Computer'. Clicking it in the network view goes to 'My Computer'.
7672         Added CIFS filesystem type. Display the mount point of filesystems.
7673         Avoid duplicate mount points (happens for me with CIFS);
7674
7675 2006-06-06  Jackson Harper  <jackson@ximian.com>
7676
7677         * InternalWindowManager.cs: Draw the maximized windows buttons
7678         when resizing.
7679
7680 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7681
7682         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7683         all other dialogs. Fixes bug #78585.
7684
7685 2006-06-06  Mike Kestner  <mkestner@novell.com>
7686
7687         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7688         Only invalidate checkbox on checkstate changes to avoid flicker.
7689         * ListBox.cs : avoid unselect/select when clicking selected item.
7690         avoid reselection flicker for already multiselected items.
7691         Fixes #78382.
7692
7693 2006-06-06  Jackson Harper  <jackson@ximian.com>
7694
7695         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7696         the parent form so that the menu is removed if needed.
7697
7698 2006-06-06  Mike Kestner  <mkestner@novell.com>
7699
7700         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7701         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7702
7703 2006-06-06  Mike Kestner  <mkestner@novell.com>
7704
7705         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7706
7707
7708 2006-06-06  Jackson Harper  <jackson@ximian.com>
7709
7710         * Control.cs: Use the property (instead of the field) to get the
7711         default cursor so it is instantiated correctly.
7712         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7713         resizes so we need to manually repaint the window decorations here.
7714         - Set the titlebar button locations as soon as they are created,
7715         otherwise they are not set correctly on win32.
7716         
7717 2006-06-06  Chris Toshok  <toshok@ximian.com>
7718
7719         * CurrencyManager.cs (set_Position): call PullData before
7720         OnCurrentChanged.
7721         (AddNew): after calling IBindingList.AddNew, update our
7722         listposition, and call OnCurrentChanged/OnPositionChanged (without
7723         calling PullData).
7724         (OnCurrentChanged): remove the call to PullData from here.
7725         (OnItemChanged): remove the call to PushData from here.
7726         (OnPositionChanged): change the test from == null to != null to
7727         match the other methods.
7728         (ListChangedHandler): the grossest part of the patch.  Implement
7729         this such that it passes the unit tests in CurrencyManagerTest and
7730         the output more or less matches that of MS's implementation.
7731  
7732 2006-06-06  Mike Kestner  <mkestner@novell.com>
7733
7734         * ListView.cs : only update check state on single click.
7735         * ThemeWin32Classic.cs : fix focus drawing for details view without
7736         fullrowselect.  Fixes #78454.
7737         * XplatUIX11.cs : fix for double click emission.
7738
7739 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7740
7741         * PropertyGridView.cs : Applied Atsushi's patch to fix
7742         font dialog bug  (#78197).
7743
7744 2006-06-05  Jackson Harper  <jackson@ximian.com>
7745
7746         * TreeNode.cs: Compute the next node for expanding/collapsing
7747         correctly. We now factor in nodes without a NextNode
7748         correctly. (Fixes somes cases in nunit-gui).
7749         * InternalWindowManager.cs: Set the bounds when updating the
7750         virtual position of a tool window.
7751         
7752 2006-06-05  Chris Toshok  <toshok@ximian.com>
7753
7754         * DataGrid.cs: rename cached_currencymgr to list_manager.
7755         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7756         some.
7757         (CurrentRow, CurrentColumn): single accessors so we can make the
7758         cursor movement code a lot easier to understand.
7759         (CurrentRowIndex): implement this in terms of CurrentRow.
7760         (BeginEdit): clean this up a bit.
7761         (CancelEditing): sort out the is_editing/is_changing/is_adding
7762         stuff a little.
7763         (EndEdit): minor changes.
7764         (OnKeyDown): add a comment about a (most likely) unnecessary
7765         check.
7766         (OnMouseDown): cancel editing when we click on a row header.  And
7767         use the CurrentRow setter, not CurrentCell.
7768         (ProcessDialogKey): directly call ProcessGridKey.
7769         (UpdateSelectionAfterCursorMove): factor out this common block of
7770         code (it's used everywhere that we move the cursor by updating row
7771         or column).
7772         (ProcessGridKey): pretty substantial overhaul.  Use the
7773         CurrentRow/CurrentColumn properties to make the code a lot more
7774         readable.  Only use the CurrentCell property when we have to
7775         modify both row and column at once.  Tab behavior is still broken,
7776         and Delete is untested.
7777         (Select): if we have no selected rows, set selection_start to
7778         @row.
7779         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7780         with CurrentCell as the arg, so drop the arg and rename it.
7781
7782         * DataGridColumnStyle.cs: clean up the constructors a little, and
7783         drop CommonConstructor().
7784
7785         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7786         actually get notified when the user hits it.
7787         (ProcessKeyMessage): *substantially* simplify this method.
7788         There's no reason (that I can see) for the textbox to be making
7789         calls into the datagrid at all.  Remove all of them but the ones
7790         for Enter handling.  those will take some more work.
7791
7792         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7793         calling HideEditBox.
7794         (HideEditBox): if we have an active textbox, render it invisible
7795         without causing a re-layout of the datagrid.
7796
7797 2006-06-05  Mike Kestner  <mkestner@novell.com>
7798
7799         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7800         collection changes by resetting it to Items[0].  Fixes #78587.
7801
7802 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7803
7804         * MessageBox.cs: if the height of the text is larger than the icon_size,
7805         use that. Fixes bug #78575.
7806
7807 2006-06-05  Jackson Harper  <jackson@ximian.com>
7808
7809         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7810         node is basically responsible for drawing its entire horizontal
7811         area.  When drawing a node it draws its parent node lines if
7812         needed.
7813         - Adjust the clip area to the viewport rectangle
7814         - Fix Left/Right key handling to match MS. (It expand/collapses
7815         and moves to parents/first child but does not move selection to
7816         sibling nodes).
7817         - Fix SetTop to work with new bound calculation code
7818         - When scrollbars are no longer needed we need to reset scrolling
7819         vars and recalculate the visible order so the redraw is correct
7820         * TreeNode.cs: We can't expand/collapse nodes with no children.
7821
7822 2006-06-03  John Luke  <john.luke@gmail.com> 
7823
7824         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7825         so the colors work without dev packages
7826         
7827 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7828
7829         * Control.cs 
7830           - Select: Implemented to just use activate. Seems to match MS 
7831             behaviour closest. Documented to only do actual control walking 
7832             based on it's parameters if in a container control so I moved 
7833             the code there.
7834           - Removed selection check logic from our internal Select() method
7835         * ContainerControl.cs:
7836           - Select: Moved selection logic from Control here, since MS documents
7837             that containers obey the bool arguments. No longer calling base
7838
7839 2006-06-02  Jackson Harper  <jackson@ximian.com>
7840
7841         * TreeView.cs: If the selected node isn't changed when we get
7842         focus update the previously selected node so that we see the
7843         selection box.
7844
7845 2006-06-02  Mike Kestner  <mkestner@novell.com>
7846
7847         * ComboBox.cs: restructure grab and general mouse event handling.
7848         Make the composite control raise mouse events like it was a single
7849         control for leaves/enters/motion/up/down events.  fix dropdown list
7850         coordinate mangling and refactor it into the scrollbar subclass to
7851         reduce code duplication.  Fixes #78282 #78361 and #78457.
7852
7853 2006-06-02  Mike Kestner  <mkestner@novell.com>
7854
7855         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7856         automatically in the Control.WndProc.
7857
7858 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7859
7860         * FileDialog.cs: fix crash when running SharpChess, which sets the
7861         FilterIndex to 2 with only one Filter.
7862
7863 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7864
7865         * ToolBar.cs: add SizeSpecified property.
7866         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7867         try to figure out our real size, otherwise fallback to what the
7868         container says.
7869
7870 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7871
7872         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7873         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7874           up the event
7875
7876 2006-06-01  Mike Kestner  <mkestner@novell.com>
7877
7878         * ListView.cs: revamp the focus management in ListView.  It still
7879         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7880         better than not handling focus at all.  Will revisit when pdb feels
7881         the general focus handling is solid.  Fixes #78526.
7882
7883 2006-06-01  Jackson Harper  <jackson@ximian.com>
7884
7885         * TreeView.cs: Set the default border style in the constructor.
7886         - Move painting to use OnPaintInternal instead of capturing
7887         WM_PAINT, this is the correct way of doing things
7888         - UpdateBelow shouldn't invalidate the scrollbar area
7889         - Cap the top on update below in case the node was above the top
7890         of the viewport rectangle.
7891         - ExpandBelow and Collapse below need to obey Begin/End Update.
7892         * TreeNode.cs: Make is_expanded internal so the treenode
7893         collection can change it without firing the whole event chain.
7894         * TreeNodeCollection.cs: When clearing all the child nodes make
7895         sure to recalc the visible order.
7896         - Improve algo for remove the top node
7897
7898 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7899
7900         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7901           SendMessage directly calling window procedures, which in turn might
7902           call SetFocus()
7903
7904 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7905
7906         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7907           has focus (works around X11 sending a FocusIn after our SetFocus)
7908         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7909
7910 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7911
7912         * Mime.cs: Fix for the NET_2_0 build.
7913           NameValueCollection needs StringComparer now.
7914
7915 2006-05-31  Chris Toshok  <toshok@ximian.com>
7916
7917         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7918         return (via an out parameter) the starting X of the column.
7919         (UpdateVisibleColumn): track change to FromPixelToColumn.
7920         (HitTest): add a ColumnResize case here.
7921         (DrawResizeLine): new function, probably poorly named.
7922
7923         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7924         only need to keep one reference.
7925         (set_ListManager): same.
7926         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7927         Also, add support for HitTestType.ColumnResize.
7928         (OnMouseMove): add column resize behavior here, and change the
7929         cursor to the correct one as we move around the datagrid.
7930         (OnMouseUp): terminate the column resize if we're resizing.
7931         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7932         for the current cell.
7933         (ConnectListManagerEvents): use cached_currencymgr.
7934         (DisconnectListManagerEvents): fill this in, using
7935         cached_currencymgr.
7936         (SetCurrentCell): remove cached_currencymgr_events handling.
7937         (SetDataMember): only call DisconnectListManagerEvents if
7938         cached_currencymgr is != null.
7939         (SetDataSource): same.
7940         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7941         cached_currencymgr.
7942
7943 2006-05-31  Jackson Harper  <jackson@ximian.com>
7944
7945         * BindingManagerBase.cs: Remove somedebug code that creeped into
7946         SVN.
7947         * TreeNode.cs: We get the indent level dynamically right now, so
7948         don't track it as a member.
7949         * TreeNodeCollection.cs: Make sure all nodes added to the list
7950         have parents, treeviews/topnodes setup properly.
7951         - Don't attempt to track indent level.
7952
7953 2006-05-30  Jackson Harper  <jackson@ximian.com>
7954
7955         * BindingContext.cs: Create the currency manager tables here.
7956         This allows us to more easily create null tables (when bad data
7957         members are used), and more easily create related currency
7958         managers.
7959         * CurrencyManager.cs: All the table creation stuff is done by the
7960         binding context now.
7961         - Current should throw an exception if listposition is -1.
7962         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7963         been bound yet.
7964
7965 2006-05-30  Mike Kestner  <mkestner@novell.com>
7966
7967         * ListView.cs: allow reexpansion of zero-width column headers.
7968         Fixes #78528.
7969
7970 2006-05-28  Chris Toshok  <toshok@ximian.com>
7971
7972         * CurrencyManager.cs (get_Current): after the late binding
7973         listposition = -1 fix, we need to guard against it here and return
7974         null, otherwise we raise an exception (which is swallowed
7975         elsewhere, and breaks datagrid databinding.)
7976
7977 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7978
7979         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7980           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7981
7982 2006-05-26  Jackson Harper  <jackson@ximian.com>
7983
7984         * ControlPaint.cs:
7985         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7986         values, it's faster and it's all we care about (we don't care if
7987         the names aren't equal).
7988         * KeyboardLayouts.cs: Eliminate some dead code.
7989         - Lazy init things
7990         * X11Keyboard.cs: Lazy init keyboard detection.
7991         - Cleanup access modifiers a little.
7992
7993 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7994
7995         * XplatUIX11.cs: Once again, attempting to get layout just right.
7996
7997 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7998
7999         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8000           the sizes of each link section, that will result in sizes that
8001           match DrawString's layout (Fixes #78391)
8002
8003 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8004
8005         * FileDialog.cs: If AddExtension property is true autocomplete the
8006           extensions in SaveFileDialog correctly. Fixes bug #78453.
8007           Set MyNetwork and MyComputer to "C:\" for windows. This should
8008           fix part 8 of bug #78446 for now.
8009
8010 2006-05-26  Chris Toshok  <toshok@ximian.com>
8011
8012         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8013         invalidate the current row header if we need to, but presumably
8014         we'll invalidate the row corrsponding to the bounds or
8015         editingControl.
8016         (GridHScrolled): switch back to this method, as it's part of the
8017         public api.  *sigh*.
8018         (GridVScrolled): same.
8019         (OnMouseWheel): hack up something that more or less works.  Call
8020         GridHScrolled/GridVScrolled directly, instead of duplicating much
8021         of their code here.
8022         (EnsureCellVisibility): reinstate a bunch of this code, since we
8023         can't just set the scrollbar Value and expect to do all the work
8024         in the ValueChanged handler.  Also, Call Update() after scrolling
8025         in one direction so the other XplatX11.ScrollWindow call has the
8026         proper stuff in the proper places.
8027         (EditCell): set is_editing to true before calling .Edit.
8028
8029         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8030         don't bother comparing first.
8031         (OnKeyPress): call grid.ColumnStartedEditing before calling
8032         base.OnKeyPress.  this will set is_changing and invalidate the row
8033         header if necessary.
8034         (ProcessKeyMessage): for WM_CHAR messages, call
8035         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8036         and WM_KEYDOWN.
8037         
8038         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8039         it's done in the DataGrid.
8040         (NextState): call grid.ColumnStartedEditing, which takes care of
8041         invalidating the row header (and setting is_changing).
8042
8043         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8044         here.  it's done in the DataGrid.
8045
8046 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8047
8048         * Control.cs: allow changing the cursor when the mouse position is
8049         out of bounds but Capture is set.
8050         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8051         linklabel but released somewhere else.
8052
8053 2006-05-25  Jackson Harper  <jackson@ximian.com>
8054
8055         * TreeView.cs: When we get focus if there is no selected node make
8056         it the top node
8057         - Remove some uneeded setup code from Draw.
8058         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8059         a new node is inserted make the new node the top.
8060         * XplatUIX11.cs:
8061         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8062         be used (should be faster).
8063         
8064 2006-05-25  Chris Toshok  <toshok@ximian.com>
8065
8066         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8067         problem with the last commit.
8068
8069 2006-05-25  Chris Toshok  <toshok@ximian.com>
8070
8071         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8072         need the invalidate call here, while scrolling right-to-left via
8073         the left arrow key (i.e. moving the editing cell while scrolling).
8074
8075         * DataGrid.cs (.ctor): remove the initialization of
8076         ctrl_pressed/shift_pressed.  We no longer track them using key
8077         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8078         to using ValueChanged handlers on the scrollbars instead of
8079         Scrolled event handlers.  This simplifies a bunch of the scrolling
8080         code.
8081         (GridHValueChanged): rename from GridHScrolled, and change it to
8082         work with the new event args.
8083         (GridVValueChanged): same.
8084         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8085         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8086         selected cell.
8087         (ProcessGridKey): correct all the keyboard navigation stuff I
8088         could find.  Ctrl up/down/left/right/home/end work now.
8089         (EnsureCellVisibility): correct method name spelling.  Also,
8090         simplify this a touch by not explicitly calling the
8091         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8092         scrollbar value.
8093         (OnKeyUpDG): no need for this method now.
8094         
8095 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8096
8097         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8098         Fixes bug #78392.
8099
8100 2006-05-25  Chris Toshok  <toshok@ximian.com>
8101
8102         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8103         r61019.
8104
8105 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8106
8107         * Application.cs: Moved setting of is_modal and closing to before
8108           we create the control, to allow the event handlers called as a
8109           result of creation affect closing. Also removed Gonzalo's previous
8110           change to setting DialogResult, the behaviour has been moved to 
8111           Form.ShowDialog()
8112         * Form.cs: 
8113           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8114             handle it instead
8115           - ShowDialog(): If no dialog result is set, we need to return Cancel
8116           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8117             the close is cancelled
8118
8119 2006-05-25  Jackson Harper  <jackson@ximian.com>
8120
8121         * StatusBar.cs: We only need to update the sizes of the other
8122         panels when we have auto size contents.  Also we are only updating
8123         the contents of the panel, not the borders, so compensate for the
8124         border width (TODO: get this width from the theme somehow).
8125         * TreeView.cs: Scrollable is true by default
8126         - Use invalidate instead of refresh where needed
8127         - Factor the scrollable value into scrollbar updating
8128         - Update the scrollbars if the Scrollable property is altered
8129         - Update the selected node if its ImageIndex is changed
8130         - Handle null nodes in UpdateNode (mainly so we don't have to
8131         check if selected is null when updating it
8132         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8133         are factored into the visible count
8134         - Use VisibleCount for clarity in the code
8135         - When the font is changed we need to recurse through all the
8136         nodes and invalidate their sizes
8137         
8138 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8139
8140         * Application.cs: set the DialogResult to fixed when the main form is
8141         hidden or destroyed while being modal.
8142
8143 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8144
8145         * Theme.cs: Use Tangoified messagebox icons. 
8146
8147         (GetSizedResourceImage): Also cope with width = 0 and do not
8148         trigger a warning in that case (0 means "give me your icon from
8149         the resouce, no special size needed).
8150
8151 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8152
8153         * Application.cs: Leave runloop if the the main modal form is 
8154           hidden (fixes #78484)
8155
8156 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8157
8158         * BindingContext.cs : reject null datasource in Contains() and
8159           Item[].
8160         * CurrencyManager.cs : check data_member validity when data_source
8161           is dataset. When it is late binding, the initial position is -1.
8162
8163 2006-05-24  Jackson Harper  <jackson@ximian.com>
8164
8165         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8166         inserted nodes that aren't visible.  This changes the
8167         max_visible_order which confuses scrollbar settings.
8168         - Use the enumerator to get the prev node instead of duplicating
8169         code.
8170         * TreeView.cs: Use new method for setting scrollbar values
8171         - Don't set the bounds every time the scrollbar is updated
8172         - When updating below the root node use an invalidate instead of a
8173         refresh to prevent the child controls (scrollbars) from being
8174         refreshed. (UpdateBelow still needs to be reworked anyways).
8175         - Reenable SetBottom now that visible orders are set correctly,
8176         added some debug code incase we ever get bad values there again.
8177         - Set the scrollbar max to 2 less then the max value, this
8178         compensates for the max value being one above the node count, and
8179         for scrollbars adding one extra "notch".
8180         - When drawing image nodes if there is an imagelist we draw the
8181         first image in the list if the supplied image index is out of the
8182         image list's bounds.
8183         
8184 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8185
8186         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8187           we receive a size change from the WM (Fixes #78503)
8188
8189 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8190
8191         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8192           rectangle (Fixes #78501)
8193
8194 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8195
8196         * ButtonBase.cs: 
8197           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8198             as a bitfield.
8199           - Fixed MouseMove to no longer switch pressed state unless the left
8200             mouse button is pressed. Atsushi provided the original patch (#78485)
8201           
8202 2006-05-24  Jackson Harper  <jackson@ximian.com>
8203
8204         * ScrollBar.cs: New internal methods that allow us to change a
8205         couple values on the scrollbar (the most common case is maximum
8206         and large change) without getting multiple invalidates.
8207
8208 2006-05-24  Chris Toshok  <toshok@ximian.com>
8209
8210         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8211         (Edit): save off the original state in oldState, and set
8212         grid.is_editing to true.
8213         (OnKeyDown): abort editing if escape is pressed.  also, call
8214         NextState if space is pressed.
8215         (OnMouseDown): call NextState.
8216         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8217         here.  Also, only invalidate the row header once (on the initial
8218         is_changing switch) to save on redraws.
8219
8220 2006-05-24  Chris Toshok  <toshok@ximian.com>
8221
8222         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8223         if the value in the cell is different than it was before.  This
8224         keeps us from triggering a layout when we move around a datarid
8225         with a highlighted cell.
8226         (Edit): suspend layout when creating/positining the text box, and
8227         resume passing false so we don't ever actually re-layout.
8228         (ReleaseHostedControl): same.
8229         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8230
8231         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8232         control-key sequences should go to the datagrid - remove that
8233         lock.  Also, modify the conditions under which we move between
8234         cells when moving the cursor within a cell, and remove the "this"
8235         and "base" from field accesses.  We weren't even consistent, given
8236         they all were in the base class.
8237
8238 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8239
8240         * Binding.cs : (.ctor)
8241           An obvious NRE fix for BindingTest.CtorNullTest().
8242
8243 2006-05-23  Chris Toshok  <toshok@ximian.com>
8244
8245         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8246         them between lines.  This fixes some quirks editing cells in the
8247         datagrid.
8248
8249 2006-05-23  Jackson Harper  <jackson@ximian.com>
8250
8251         * TreeView.cs: Use begin/end update when doing expand/collapse all
8252         so that we don't get flicker on the scrollbar.
8253
8254 2006-05-23  Jackson Harper  <jackson@ximian.com>
8255
8256         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8257         treenode calculations to be independant of the painting code. To
8258         do this nodes track a visible order which is calculated by the
8259         treeview.
8260         - Call new methods for expanding/collapsing nodes.  These methods
8261         use scrollwindow so we don't have to update everything below the
8262         node.
8263         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8264         need to update nodes when drawing anymore or calculate scrollbar
8265         stuff.
8266         - Added new methods for expanding/collapsing nodes. These methods
8267         use ScrollWindow so as to not have to redraw all the nodes below.
8268         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
8269         we add/remove nodes or sort.
8270         - Handle removing the selected and the top node properly.
8271
8272 2006-05-23  Chris Toshok  <toshok@ximian.com>
8273
8274         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
8275         maybe this should actually happen in the datagrid code?
8276         (EndEdit): no need to invalidate anything, given that
8277         ReleaseHostedControl causes the datagrid to relayout, which
8278         invalidates everything anyway.
8279
8280         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
8281         in SetCurrentCell).
8282         (set_SelectionBackColor): call InvalidateSelection instead of
8283         Refresh.
8284         (set_SelectionForeColor): same.
8285         (BeginEdit): Flesh this out a bit.
8286         (CancelEditing): only do any of this if we're editing/adding.
8287         (EndEdit): same.
8288         (OnMouseDown): there's no need to cancel editing here, it's done
8289         in SetCurrentCell.
8290         (SetCurrentCell): only invalidate the current row header if it's a
8291         different row than the new one.
8292         (ShiftSelection): fix this to work like MS does.
8293         (ResetSelection): factor out the invalidation of selected_rows to
8294         InvalidateSelection.
8295         (SetDataSource): cancel any editing that's going on.
8296
8297         * DataGridColumnStyle.cs
8298         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8299         call the non-interface version.
8300
8301         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8302         header rectangle with the clip rectangle so we don't redraw the
8303         entire header for just a small area.  Gets rid of the last flicker
8304         when horizontally scrolling.
8305         (DataGridPaintRow): same.
8306
8307 2006-05-23  Mike Kestner  <mkestner@novell.com>
8308
8309         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8310         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8311         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8312         Critical bug report.
8313
8314 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8315
8316         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8317           and this fixes #78493
8318
8319 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8320
8321         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8322         size is not found.  
8323         
8324         * FileDialog.cs: Do not change the background for the side bar as
8325         it wont work nicely with the theme, and also reduces the artifacts
8326         in rendering the icons (which I want to fix too).
8327
8328         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8329         resources, not resgen resources. 
8330
8331         (PlatformDefaultHandler): Pull images using the new API.
8332
8333 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8334
8335         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8336           a reference to the hwnd and will not remove it unless there are
8337           no pending exposures (fixes #78341)
8338         * XplatUI.cs: Improved debug
8339
8340 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8341
8342         * MenuAPI.cs : don't handle OnClick event when it was not the left
8343           button. Fixed bug #78487.
8344
8345 2006-05-23  Mike Kestner  <mkestner@novell.com>
8346
8347         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8348         prefer submenus to the top menu for item lookup, to avoid popping down
8349         top-row items.
8350
8351 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8352
8353         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8354           Graphics.FillRectangle as the visual results are really bad (even
8355           on win). We now draw perfect arrows (and perfect shadows when the
8356           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8357           Pen.DashPattern to draw the dots of each line.
8358
8359 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8360
8361         * FileDialog.cs: Update the filename combobox when navigating through
8362           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8363
8364 2006-05-22  Mike Kestner  <mkestner@novell.com>
8365
8366         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8367         Fixes #78463.
8368
8369 2006-05-22  Mike Kestner  <mkestner@novell.com>
8370
8371         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8372         requests. Fix a misspelled parameter and a copy paste exception error
8373         in Select.
8374
8375 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8376
8377         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8378           to get the same width/height (5/13) on X11 as the default font has on
8379           win32. This means that our DefaultFont emSize is smaller than the 
8380           the MS SWF equivalent (even thought the width/height stays the same)
8381
8382 2006-05-20  Jackson Harper  <jackson@ximian.com>
8383
8384         * MdiClient.cs:
8385         * MdiWindowManager.cs:
8386         * InternalWindowManager.cs: Make sure to use the border width from
8387         the theme.
8388
8389 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8390
8391         * PrintDialog.cs: Implements printer details
8392
8393 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8394
8395         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8396           Fixes part 1 and 2 of bug #78446
8397
8398 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8399
8400         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8401           instead of sticking to the first ever calculated value
8402
8403 2006-05-19  Mike Kestner  <mkestner@novell.com>
8404
8405         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8406         PointToClient, since Capture is set. Fixes #78344.
8407
8408 2006-05-19  Mike Kestner  <mkestner@novell.com>
8409
8410         * ListView.cs: match MS behavior in Details view where items are not
8411         drawn if Columns.Count == 0. 
8412         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8413         Use a separate pen to draw the check, since changing the width affects
8414         the box as well.  Fixes #78454.
8415
8416 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8417
8418         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8419         exception should throw the name of the invalid argument.
8420
8421         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8422         there are no files listed. 
8423
8424 2006-05-18  Jackson Harper  <jackson@ximian.com>
8425
8426         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8427         up.
8428
8429 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8430
8431         * Control.cs: Brought back our old UpdateZOrder method as a private
8432           function and switched our calls from UpdateZOrder to the new one.
8433           This fixes the Paint.Net canvas disappearing bug.
8434
8435 2006-05-18  Jackson Harper  <jackson@ximian.com>
8436
8437         * Theme.cs:
8438         * ThemeWin32Classic.cs:
8439         * InternalWindowManager.cs: Move the drawing into the theme,
8440         expose everything the theme should need from the window manager.
8441
8442 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8443
8444         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8445           from the call to NativeWindow to avoid walking up the parent chain
8446           further than needed (speeds up setting cursors and avoids setting
8447           the wrong cursor if a parent has another cursor defined)
8448         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8449           the icon as hotspot, not what's contained as hotspot in the icon
8450           file. This fixes the perceived drawing offset seen with Paint.Net
8451         
8452 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8453
8454         * XplatUIX11.cs: 
8455           - Store the calculated rectangle in Hwnd object and use it when 
8456             setting the client size
8457           - Force Toolwindows to always be type Dock, to ensure they're on top
8458
8459 2006-05-18  Mike Kestner  <mkestner@novell.com>
8460
8461         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8462         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8463         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8464         Substantial refactoring to remove confusing nested classes. Coding
8465         standard and Get+Set->property refactorings.  Shift to index based
8466         highlighting in ComboListBox instead of constantly using IndexOf and
8467         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8468         in FileDialog growth.  Draw borders manually since Simple mode needs
8469         to look like two independent controls.  Make listbox border
8470         conditional to DropDownStyle.  Improved OwnerDraw support.
8471
8472 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8473
8474         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8475         Don't set the disposed graphics to null, so we can throw the "right"
8476         exception if the graphics is reused later (added a flag to avoid 
8477         double disposing). Some behaviours are different under 2.0 and are
8478         filled under bug #78448.
8479
8480 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8481
8482         * Control.cs: When double-buffering is enabled, we need to reset
8483           our graphics context between paint calls. Otherwise, any 
8484           transformations and other alterations on the context will 
8485           become cumulative (#77734)
8486
8487 2006-05-18  Mike Kestner  <mkestner@novell.com>
8488
8489         * ListView.cs: do focused item selection like MS on clicks. 
8490         Rework focus handling for ItemControl so LostFocus invalidates as
8491         well.
8492         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8493         the ListView ItemControl has focus.
8494
8495 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8496
8497         * XplatUIX11.cs: If client_window ends up being width or height zero
8498           due to border settings, move it off window inside whole_window (#78433)
8499
8500 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8501
8502         * Mime.cs: Shrink the mime file cache correctly.
8503
8504 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8505
8506         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8507
8508 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8509
8510         * XplatUIX11.cs (AddExpose): More sanity checks
8511
8512 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8513
8514         * XplatUIX11.cs:
8515           - AddExpose: Don't add expose ranges outside the size of our
8516             window
8517           - Cast opacity values to Int32 to avoid crashes with certain
8518             values
8519           - Added disabled code paths that protect against illegal cross-
8520             thread painting (Developers.exe)
8521
8522 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8523
8524         * ProgressBar.cs: Invalidate the control when it's resized
8525           since block size is based on control size. (#78388)
8526
8527 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8528
8529         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8530         of setting the incoming argument to the "reset" value, we set the
8531         this.datamember to string.empty (before we were invalidating the
8532         incoming data).   
8533
8534         Fixes 78420
8535
8536 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8537
8538         * Form.cs: Only apply transparency settings after the form
8539           is created. (Fixes #77800)
8540
8541 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8542
8543         * ApplicationContext.cs: Grab the HandleDestroyed event so
8544           we know when to fire OnMainFormClosed 
8545
8546 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8547
8548         * Application.cs: Introduced sub-class to allow tracking of
8549           threads and centralized triggering of the event mess for
8550           ThreadExit, AppExit, etc..  (#76156)
8551
8552 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8553
8554         * MimeIcon.cs:
8555           - Do not return a null icon index value for a mime subclass.
8556             Instead try the main mime type class too.
8557           - Seems that some newer distributions don't have a link to some
8558             gnome default icons anymore. So check the default gnome dir too.
8559           
8560
8561 2006-05-16  Jackson Harper  <jackson@ximian.com>
8562
8563         * MdiClient.cs: Don't paint the parent background image if we have
8564         our own background image.
8565
8566 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8567
8568         * Control.cs:
8569           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8570             controls, all filled controls are supposed to overlap (#78080)
8571           - UpdateZOrder is supposed to update the control's z-order in the
8572             parent's z-order chain. Fixed to behave like that
8573           - BringToFront: Removed obsolete code
8574           - SendToBack: Simplyfied
8575           - SetChildIndex: Trigger layout calculations when Z-order changes
8576             since layout is done by z-order
8577
8578 2006-05-16  Chris Toshok  <toshok@ximian.com>
8579
8580         [ fixes bug #78410 ]
8581         * DataGrid.cs (set_AlternatingBackColor): use
8582         grid_drawing.InvalidateCells instead of Refresh().
8583         (set_BackColor): call grid_drawing.InvalidateCells.
8584         (set_BackgroundColor): use Invalidate instead of Refresh.
8585
8586         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8587         invalidate the cell area.
8588
8589 2006-05-15  Chris Toshok  <toshok@ximian.com>
8590
8591         [ fixes bug #78011 ]
8592         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8593         on to DataGridPaintRow.
8594         (DataGridPaintRow): take a clip argument, and only draw the cells
8595         which intersect it.  same with the not_usedarea.
8596
8597         * Theme.cs (DataGridPaintRow) add @clip parameter.
8598
8599         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8600         XplatUI.ScrollWindow.
8601         (ScrollToRow): same.
8602
8603         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8604         with last column which was causing a gray swath to appear with the
8605         XplatUI.ScrollWindow code.
8606
8607 2006-05-15  Chris Toshok  <toshok@ximian.com>
8608
8609         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8610         use XplatUI.ScrollWindow.
8611         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8612
8613 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8614
8615         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8616
8617 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8618
8619         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8620           file since there are no equivalent X11 cursors
8621
8622 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8623
8624         * MonthCalendar.cs : DateTimePicker should reflect selected date
8625           on mouse*up*, not mouse*down*. Fixed originally reported part of
8626           bug #76474.
8627
8628 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8629
8630         * TabControl.cs : When argument index is equal or more than tab
8631           count, just ignore. Fixed bug #78395.
8632
8633 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8634
8635         * Control.cs: Dispose all child controls when control is diposed (#78394)
8636
8637 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8638
8639         * ColorDialog.cs: Finally it is possible to select the color with
8640           the text boxes
8641
8642 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8643
8644         * PrintDialog.cs: Fix typo
8645
8646 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8647
8648         * PrintDialog.cs: PrintDialog is not resizable
8649         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8650           color. Made some ToolBar drawing methods protected virtual.
8651
8652 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8653
8654         * PrintDialog.cs: Implementation of the PrintDialog
8655
8656 2006-05-12  Chris Toshok  <toshok@ximian.com>
8657
8658         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8659         thumb, instead use MoveThumb.  This has the side effect of making
8660         most of the other thumb moving machinery use MoveThumb as well.
8661         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8662         need to actually invalidate the rectangle where the new thumb will
8663         go.
8664         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8665         We force an Update() after, so it's not as fast as it could be,
8666         but at least there's zero flicker and no droppings.
8667         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8668         (UpdateThumbPos): add another argument (dirty), which says whether
8669         or not to calculate/add dirty regions which we later invalidate.
8670         For cases where we know we're going to use MoveThumb, we pass
8671         false for this.  Otherwise, pass true.
8672
8673 2006-05-12  Jackson Harper  <jackson@ximian.com>
8674
8675         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8676         the status bar.
8677         
8678 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8679
8680         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8681           and GetClipRegion methods and UserClipWontExposeParent property.
8682         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8683           overriding UserClipWontExposeParent property, setting to false, since
8684           Win32 handles the required expose messages to draw our clipped parent
8685           areas internally
8686         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8687           PaintEventStart to set the user clip region if set.
8688         * Control.cs: 
8689           - Now internally tracking the Region for the control since we need to
8690             store it if the handle is not yet created and only set it when it
8691             becomes created. Before setting the region forced handle creation
8692           - Added code to draw the parents underneath a user-clipped region
8693         * Hwnd.cs: Added UserClip property
8694
8695 2006-05-12  Chris Toshok  <toshok@ximian.com>
8696
8697         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8698         (set_Maximum): same.
8699         (set_Minimum): same.
8700         (set_SmallChange): same.
8701         (OnMouseUpSB): remove the call to refresh when releasing the
8702         thumb.  We shouldn't need it.
8703         
8704 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8705
8706         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8707         AutoSize set to None, we do not need to relayout everything, we
8708         just need to invalidate the current region.
8709
8710         (Draw): Do not draw the entire ClientArea, just redraw the
8711         clip area being passed.
8712
8713         * MdiClient.cs: Make MdiClient constructor with the Form argument
8714         internal. 
8715
8716 2006-05-12  Jackson Harper  <jackson@ximian.com>
8717
8718         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8719         parents background image,  but strangely not their own.
8720         - (DrawStatusBarPanel): Take into account horizontal alignment
8721         when drawing the strings and icons.
8722
8723 2006-05-12  Mike Kestner  <mkestner@novell.com>
8724
8725         * ListBox.cs: avoid invalidations for focus when the collection is
8726         empty. 
8727
8728 2006-05-12  Chris Toshok  <toshok@ximian.com>
8729
8730         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8731         invalidate the entire thumb area.  Call InvalidateDirty which
8732         limits the redraw to the thumb itself and surrounding pixels.
8733
8734         * XplatUIX11.cs (ScrollWindow): optimize copying.
8735         
8736 2006-05-12  Chris Toshok  <toshok@ximian.com>
8737
8738         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8739         Figure out the positioning/layout in a single pass instead of
8740         multiple recursive invocations.  Speeds up the initial display of
8741         the data grid.  Also, make many things private that were
8742         originally public but unused outside this class.
8743
8744 2006-05-11  Jackson Harper  <jackson@ximian.com>
8745
8746         * MdiClient.cs: Improved layout code.
8747
8748 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8749
8750         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8751           not SelectedObject.
8752
8753 2006-05-11  Chris Toshok  <toshok@ximian.com>
8754
8755         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8756         union of that will always be {0,0,width,height}.
8757
8758 2006-05-11  Jackson Harper  <jackson@ximian.com>
8759
8760         * Form.cs: Match MS's DefaultSize for forms (they must have
8761         changed the size in sp2).
8762
8763 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8764
8765         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8766
8767 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8768
8769         * TextControl.cs : Fixed bug #78109. This incorrect position
8770           comparison caused crash on automatic line split.
8771         * TextBoxBase.cs : reduce duplicate code.
8772
8773 2006-05-10  Jackson Harper  <jackson@ximian.com>
8774
8775         * MdiClient.cs: Active form is only sent to the back when using
8776         the Next form functionality, when a form is clicked the current
8777         active shouldn't be sent to the back.
8778         - Layout the mdi windows when the container is first made visible.
8779         * Form.cs: Give the MdiClient a ref to the containing form when we
8780         create it.
8781         
8782 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8783
8784         * LinkLabel.cs : link_font could be uninitialized, so populate one
8785           before actual use. Fixed bug #78340.
8786
8787 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8788
8789         * XplatUIX11.cs : clipboard format native value is IntPtr.
8790           Fixed bug #78283.
8791
8792 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8793
8794         * Control.cs: 
8795           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8796             which is passed up the parent chain by DefWndProc
8797           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8798             to DefWndProc (#77956)
8799         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8800
8801 2006-05-10  Jackson Harper  <jackson@ximian.com>
8802
8803         * MdiClient.cs: We need to remove the controls from the mdi
8804         collection, when we close the window.
8805         * MdiWindowManager.cs: Special handling of closing mdi windows.
8806         * InternalWindowManager.cs: Make the close method virtual so the
8807         mdi window manager can handle it specially.
8808
8809 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8810
8811         * DataGrid.cs:
8812           - Recalculate grid when the data source has changed
8813           - Matches styles provided by user from all data sources types
8814         * DataGridTableStyle.cs: For columns that provided by the user set the
8815         with the preferred value is there was unassigned.
8816         * CurrencyManager.cs: throw OnItemChanged event
8817
8818 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8819
8820         * PictureBox.cs: Don't animate until handle is created. Start animation
8821           when handle is created.
8822
8823 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8824
8825         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8826           current codebase.
8827         * XEventQueue.cs: We don't need to provide the extra info
8828
8829 2006-05-10  Jackson Harper  <jackson@ximian.com>
8830
8831         * MdiClient.cs: If the mdi clients parent form has a background
8832         image set, we draw that background image for the mdi area's
8833         background.
8834
8835 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8836
8837         * TextBoxBase.cs: Set IBeam cursor (#78347)
8838
8839 2006-05-10  Mike Kestner  <mkestner@novell.com>
8840
8841         * ToolBar.cs: fix some text padding issues with ButtonSize
8842         calculation. Update the default size to match MS documentation.
8843         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8844         button size. Fixes #78296.
8845
8846 2006-05-10  Mike Kestner  <mkestner@novell.com>
8847
8848         * ListBox.cs: use is_visible for scrollbar positioning in case the
8849         control isn't on screen yet.  Fix off by one with Right vs Width
8850         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8851         
8852 2006-05-10  Jackson Harper  <jackson@ximian.com>
8853
8854         * X11Dnd.cs: Drop to a control with another control on top of it.
8855         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8856         be modified in click handlers. TODO: Look for similar problems in
8857         other controls.
8858
8859 2006-05-09  Jackson Harper  <jackson@ximian.com>
8860
8861         * Form.cs: Window managers need the old window state when setting
8862         window state now.
8863         * InternalWindowManager.cs: Allow the base mdi window manager to
8864         handle more of the MDI only stuff (like maximize buttons).
8865         * MdiWindowManager.cs: Fix some snafus in changing the window
8866         state.  Add all the menu functionality, for both popup and
8867         maximized menus.
8868         * MdiClient.cs: When a new form is selected the currently
8869         activated form is sent to the back, this matches MS.
8870         - Implement a new method to activate the next mdi child window.
8871
8872 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8873
8874         * Control.cs: 
8875           - Added new InternalCapture method to allow controls to prevent
8876             the capture behaviour on the click handlers
8877           - Switched to use InternalCapture
8878         * ComboBox.cs:
8879           - Using InternalCapture to prevent mouse captures from being released
8880             on mouse button release (Fixes #78100)
8881         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8882           returns Form borders if a caption is present. (Fixes #78310)
8883
8884 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8885
8886         * TreeNode.cs: Changed serialization .ctor to not require every field
8887           to be present. (#78265)
8888         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8889
8890 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8891
8892         * MimeIcon.cs: for is faster than foreach for strings.
8893
8894 2006-05-05  Mike Kestner  <mkestner@novell.com>
8895
8896         * CheckedListBox.cs: update check handling code to not use selected.
8897         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8898         behavior for visual feedback, motion response, shift/ctrl handling,
8899         and properly deal with all 4 selection modes. Updates to bounds
8900         handling logic.  Add scroll wheel support. [Fixes #77842]
8901
8902 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8903
8904         * ListView.cs:
8905           - Moved adding of Implicit controls into .ctor. That way, subsequent
8906             creation of the controls will not cause them to think they are 
8907             toplevel windows (fixes #78200 header problem)
8908           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8909           - Switched visibility setting of header control to use internal field
8910             to avoid triggering handle creation
8911           - Now checking if handle is created before causing a refresh when items
8912             are added (This makes us now match handle creation time with MS)
8913         * Splitter.cs: Removed loading of private splitter cursor, switched to
8914           Cursors version now that that is loading the right ones
8915         * Cursors.cs: Load proper splitter cursors from resources
8916         * Cursor.cs: Added second method of loading resource cursors for the 
8917           VS.Net users amongst us
8918
8919 2006-05-05  Mike Kestner  <mkestner@novell.com>
8920
8921         * ListView.cs: give header_control a minimum size based on the
8922         ListView size.
8923
8924 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8925
8926         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8927           window seems to do that with metacity, so set that type. (#78120)
8928
8929 2006-05-05  Mike Kestner  <mkestner@novell.com>
8930
8931         * ListViewItem.cs: fix Details mode checkbox layout bug.
8932         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8933         at the end of the header, if it exists. [Fixes for #78200]
8934
8935 2006-05-04  Jackson Harper  <jackson@ximian.com>
8936
8937         * MdiClient.cs: Add a helper property to get the container form.
8938         * MdiWindowManager.cs: We have to make sure to use the menu origin
8939         when drawing the icons and buttons, this fixes maximized window
8940         icons/buttons on win32.
8941         * InternalWindowManager.cs: Reset the restore captions when a
8942         window goes from Maximized to Minimized and vice versa. Move the
8943         DrawMaximizedButtons into the MdiWindowManager source, tool
8944         windows can't be maximized. NOTE: This could use a little
8945         refactoring if time ever permits.
8946         
8947 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8948
8949         * TextBox.cs: Add MWFCategoryAttributes
8950         * TextBoxBase.cs: Add MWFCategoryAttributes
8951         * Form.cs: Add MWFCategoryAttributes
8952
8953 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8954
8955         * Control.cs: Add MWFCategoryAttributes
8956         * ScrollableControl.cs: Add MWFCategoryAttributes
8957
8958 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8959
8960         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8961           Divider is true. Fix a little glitch in PropertyToolBar
8962           drawing code
8963
8964 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8965
8966         * Control.cs:
8967           - Dispose: Call base.Dispose, this causes the disposed event
8968             to be fired (and probably other, more important stuff)
8969           - SetVisibleCore: Set is_visible to true after creating the
8970             window so that the window still gets created invisible (if
8971             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8972             to generate a WM_ACTIVE message
8973         * Form.cs: Call Dispose when we want to destroy the window, instead of
8974           just destroying the handle (Dispose will do that for us)
8975         * XplatUIX11.cs:
8976           - RootWindow also needs a queue, so we can properly process the
8977             property change events from RootWindow (like Activate)
8978           - Generatic synthetic WM_ACTIVE message when the active window is
8979             being destroyed
8980
8981 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8982
8983         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8984           bounds are changed
8985
8986 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8987
8988         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8989           for determining width and height (image might not be assigned if
8990           we're drawing an imagelist)
8991
8992 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8993
8994         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8995         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8996           height from system
8997         * Theme.cs: No longer returns hardcoded menu height, instead calls
8998           new driver method
8999         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9000           on MS (# 78257)
9001
9002 2006-05-01  Mike Kestner  <mkestner@novell.com>
9003
9004         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9005
9006 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9007
9008         * TextBoxBase.cs: Removed Fixme
9009         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9010
9011 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9012
9013         * XplatUIX11.cs:
9014           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9015             the rectangle relative to the parent, considering borders. We
9016             don't really want that.
9017           - ScrollWindow: Fixed warning to be more understandable
9018         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9019           scrollbars and scroll only the visible area
9020         * RichTextBox.cs: Removed debug output
9021
9022 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9023
9024         * NumericUpDown.cs (Text): Just use base
9025         * UpDownBase.cs: Ensure txtView is created before using it
9026
9027 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9028
9029         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9030           casting to IntPtr to avoid 64bit overflow errors
9031
9032 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9033
9034         * Control.cs:
9035           - AllowDrop: Don't force handle creation.
9036           - CreateHandle: Added call to tell driver if we're allowed to drop
9037
9038 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9039
9040         * FileDialog.cs: Remember the last directory not only for the
9041           current instance but also for new FileDialog instances.
9042
9043 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9044         
9045         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9046           broke sending async messages
9047
9048 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9049
9050         * XplatUIX11.cs:
9051           - ScrollWindow: Fixed method. We finally generate expose events again
9052             for scrolled areas. This was causing 'garbage' when scrolling
9053             textbox and other controls that used ScrollWindow
9054           - Switched from using the regular queue for paint events to the MS 
9055             model of 'generating' paint events when the queue is empty.
9056             We use the new XQueueEvent.Paint subclass to store which windows
9057             need painting.
9058           - AddExpose now takes the x/y/width/height of the exposed area
9059             and inserts the window into the paint queue if not already there
9060           - InvalidateWholeWindow: Switched to use new AddExpose method
9061           - UpdateMessageQueue: Added which queue to monitor for paint events
9062           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9063             the unlikely case nothing above handles it. We reset the expose
9064             pending states to get them off the queue.
9065           - GetMessage: Now pulls a paint event if no other events are in the
9066             queue
9067           - Invalidate: Switched to new AddExpose method
9068           - PeekMessage: Updated to understand pending paint events
9069           - UpdateWindow: Fixed logic bug. We were only updating if the window
9070             didn't need updating. Also switched to sending WM_PAINT directly,
9071             like MS does.
9072         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9073           and random access Remove(). The random access is needed to handle
9074           UpdateWindow() where a WM_PAINT is sent directly without accessing
9075           the queue.
9076         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9077           allow for better feedback when scrolling. Scrollbars are small and
9078           the immediate update should make it 'feel' more responsive without
9079           slowing things down. ScrollBar still needs it's invaliate logic
9080           updated to not always invalidate the whole bar on certain changes.
9081
9082 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9083
9084         * Control.cs:
9085         (BackColor): if the control does not support a transparent background,
9086         return the default backcolor when the parent backcolor is transparent.
9087
9088 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9089
9090         * Application.cs: Updated to new StartLoop/GetMessage API
9091         * RichTextBox.cs: Provide some output on RTF parsing errors
9092         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9093           new queue_id argument to GetMessage and PeekMessage to allow faster
9094           handling of per-thread queues in drivers.
9095         * Hwnd.cs: Added Queue tracking and property
9096         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9097         * XEventQueue.cs: Added thread trackingA
9098         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9099         * XplatUIX11.cs:
9100           - Implemented new per-thread queue
9101           - GetMessage: Fixed return/break behaviour on several cases. We were
9102             returning stale messages in some cases, instead of just processing
9103             the next message
9104
9105 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9106
9107         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9108
9109 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9110
9111         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9112           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9113
9114 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9115
9116         * PropertyGridView.cs: Fix drop down width.
9117
9118 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9119
9120         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9121           a mess in DrawToolBar, so I removed one of them.
9122
9123 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9124
9125         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9126           needed (clip). Otherwise we get artifacts.
9127
9128 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9129
9130         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9131           dimension is fixed
9132         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9133           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9134         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9135           if it matches the scale base font (avoids unneeded scaling)
9136
9137 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9138
9139         * X11DesktopColors.cs: One gtk_init_check should be enough
9140
9141 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9142
9143         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9144           match MS behaviour
9145
9146 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9147
9148         * TextBoxBase.cs: 
9149           - Generate OnTextChanged for Backspace even if we're only deleting
9150             the current selection
9151           - When setting the Text property, only select all text if the
9152             control does not have focus when it is being set. Otherwise
9153             just place the cursor at the beginning of the control
9154
9155 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9156
9157         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9158           Added a little helper to draw PropertyGrid ToolBar with a different
9159           border and a different BackColor.
9160         * PropertyGrid.cs: Some background parts didn't get painted with the
9161           correct background color. Added a class that helps us to draw the
9162           correct border for PropertyGridView and a class that helps us to
9163           draw ToolBars with a different backcolor
9164         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9165
9166 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9167
9168         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9169         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9170
9171 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9172
9173         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9174           into the palette entries. Also, since we're working on a copy
9175           we needed to copy the palette back onto the bitmap.
9176         * Cursor.cs: Same fix as XplatUIWin32.cs.
9177
9178 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9179
9180         * ImageListStreamer.cs: Need to read the var (or we're off)
9181
9182 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9183
9184         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9185           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9186           TextBoxBase.cs: Unused var fixes
9187         * AxHost.cs: Small 2.0 fix
9188         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9189           as it seems that is what at least Metacity expects. This will make
9190           icons show up on 64bit platforms. We still have some 64bit size
9191           issues, though, since the startup app window size still won't match.
9192
9193 2006-04-25  Mike Kestner  <mkestner@novell.com>
9194
9195         * *.cs: cleanup newly reported exception var unused warnings.
9196
9197 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9198
9199         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9200           ms
9201
9202 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9203
9204         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9205           image. The image position is always the same, no matter if the
9206           button is pressed or not.
9207
9208 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9209
9210         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9211           selection and set the correct filename for SaveFileDialog.
9212           Patch by Emery Conrad.
9213
9214 2006-04-24  Mike Kestner  <mkestner@novell.com>
9215
9216         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9217         check for item.X outside the ClientRect instead of item.Y. Fixes
9218         #78151.
9219
9220 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9221
9222         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9223         trust that value blindly and do some sanity check. Fixes bug #77814.
9224
9225 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9226
9227         * ImageListStreamer.cs: save the mask as a 1bpp image.
9228
9229 2006-04-21  Mike Kestner  <mkestner@novell.com>
9230
9231         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9232         pass Checked and Indeterminate to the Theme Engine. Improve
9233         encapsulation with ListBox.
9234         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9235         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9236         nested types.  Move all CheckState functionality to CheckedListBox.
9237         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9238         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9239         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9240         single base list. Fix scrollbar sizing and placement to mirror MS.
9241         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9242         used.
9243         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9244         for CheckedListBox by using new DrawItemState info.  Center the
9245         checkboxes on the items. Use new StringFormat property.
9246
9247 2006-04-18  Jackson Harper  <jackson@ximian.com>
9248
9249         * Form.cs: MdiChildren don't do default locations the same way as
9250         regular forms.  This prevents a crash when trying to position the
9251         mdi windows.
9252
9253 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9254
9255         * PropertyGridTextBox.cs: Formatting, copyright
9256         * PropertiesTab.cs: Formatting
9257         * PropertyGrid.cs: Formatting
9258         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9259           click toggling of values
9260           
9261 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9262
9263         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9264         * Control.cs (.ctor): verify_thread_handle is static, don't reset
9265           every time a control is created
9266         * Application.cs: Removed obsolete EnableRTLMirroring method
9267
9268 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
9269
9270         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
9271         SelectedIndex to -1. Fixes bug #78121.
9272
9273 2006-04-17  Jackson Harper  <jackson@ximian.com>
9274
9275         * Binding.cs: Handle null values for Current and BindingContext.
9276         This occurs when binding is a little delayed.
9277         * CurrencyManager.cs: return null for Current when there are no
9278         items in the list.
9279         - Hookup to the listchanged event on the DataView and update
9280         bindings when the list is changed.  This fixes late binding of
9281         controls.
9282
9283 2006-04-17  Jackson Harper  <jackson@ximian.com>
9284
9285         * X11Dnd.cs:
9286         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9287         Ringenbach.
9288
9289 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9290
9291         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9292           place
9293         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9294           with the correct ButtonState
9295
9296 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9297
9298         * XplatUIX11.cs: Improved distinguishing between window types to
9299           tell the WM a type closer to what the app wants (Fixes #78107)
9300
9301 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9302
9303         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9304           GrabHandle
9305
9306 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9307
9308         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9309           drawing code to reflect the size grip changes
9310
9311 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9312
9313         * ImageListStreamer.cs: fix handling of the mask that follows the main
9314         bitmap when deserializing and serialize it properly. The generated mask
9315         should better be a 1bpp image, but I'll do that later.
9316
9317 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9318
9319         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9320           path doesn't fit into some of our Current.Places
9321
9322 2006-04-13  Jackson Harper  <jackson@ximian.com>
9323
9324         * ComboBox.cs: Use borders instead of drawing our own decorations,
9325         try to obey correct rules for heights.
9326         * Theme.cs:
9327         * ThemeNice.cs:
9328         * ThemeClearLooks.cs:
9329         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9330         this is now handled by borders.
9331         - Remove unused DrawListBoxDecorationSize method.
9332         
9333 2006-04-13  Mike Kestner  <mkestner@novell.com>
9334
9335         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9336         reported by Alex.
9337
9338 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9339
9340         * ThemeWin32Classic.cs: 
9341           - Fixed CPDrawStringDisabled
9342           - Corrected drawing of disabled menu items
9343           - Fixed drawing of disabled radio buttons (bug #78095)
9344           - Draw check in a disabled CheckBox with color ControlDark 
9345
9346 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9347
9348         * Form.cs: Use the provided width when calculating the menu size;
9349           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9350           and ClientSize.Width won't be updated yet
9351         * Application.cs: Use Visible instead of Show() to make form visible,
9352           this way we create the handle later and menusize is considered
9353
9354 2006-04-12  Mike Kestner  <mkestner@novell.com>
9355
9356         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9357         reporting.
9358
9359 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9360
9361         * TextBox.cs: Implemented context menu
9362
9363 2006-04-12  Mike Kestner  <mkestner@novell.com>
9364
9365         * ListView.cs: implement box selection. fixes #77838.
9366         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9367
9368 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9369
9370         * XplatUIX11.cs: Added setting of window type when transient window
9371           is created (metacity would move it otherwise)
9372         * X11Structs.cs: Added WINDOW_TYPE atoms
9373         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9374           background (the control is Opaque but still wants transparent
9375           backgrounds)
9376
9377 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9378
9379         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9380           that set Opaque but don't mean it (like all ButtonBase-derived
9381           controls) to still draw their background
9382         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9383           the background
9384
9385 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9386
9387         * Control.cs (PaintControlBackground): Set the graphics object
9388           on our PaintEvent to null to prevent it from being disposed
9389           when the PaintEvent gets disposed
9390
9391 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9392
9393         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9394         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9395
9396 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9397
9398         * Control.cs: 
9399           - Added transparency check to BackColor property. Transparent
9400             backgrounds are only allowed if the control styles permit it
9401           - Added recursive painting of parent control background and
9402             foreground if a control with a transparent backcolor is drawn
9403             (Thanks to Tim Ringenback for providing his 'hack' as a base
9404              for this patch) Fixes #77985 and #78026.
9405           - Added Opaque style check before calling OnPaintBackground, no
9406             need to draw the background if the control is opaque
9407           - Removed ControlAccessibleObject owner variable (inherited from
9408             base, no need to define again)
9409           - Added some documentation links explaining the drawing events
9410             and styles
9411
9412 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9413
9414         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9415           that the affected control is the located at the left border of our
9416           parent (Fixes #77936)
9417
9418 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9419
9420         * TextBoxBase.cs: When rendering disabled or readonly controls,
9421           draw the background with 'Control' instead of 'Window' color as
9422           long as the user hasn't specifically set a color
9423
9424 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9425
9426         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9427           since that won't be updated if the user types text (only if it's
9428           programatically set)
9429
9430 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9431
9432         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9433           layout changes do to app-triggered resizes will have the proper
9434           display rectangle for layout
9435
9436 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9437
9438         * ThemeWin32Classic.cs:
9439           - Make use of the SystemBrushes and SystemPens wherever possible
9440           - Corrected some highlight colors
9441           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9442             drawing
9443         * Theme.cs: Added Empty field to CPColor struct
9444
9445 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9446
9447         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9448           is displayed when calculating the display rectangle. Thanks to Mike
9449           for teaching me the err of my ways.
9450
9451 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9452
9453         * ScrollableControl.cs:
9454           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9455             (instead of 0,0) and we now return the real width/height instead of
9456             just the clientrectangle, adjusted for padding. The rectangle is
9457             now cached and created by the new CalculateDisplayRectangle method.
9458           - Created new CalculateDisplayRectange method, which basically does
9459             what get_DisplayRectangle() did originally, but now using the 
9460             right edge instead of DisplayRectangle to determine the size of
9461             our scrollbars
9462           - get_Canvas(): Fixed it to properly calculate canvas for 
9463             right/bottom controls which seem to be placed to the right/bottom
9464             of any controls that have a fixed location
9465           - Removed TODO that's taken care of
9466           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9467             and SetDisplayRectLocation according to new MSDN2 docs
9468           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9469             event when that is called, this is added for compatibility
9470           - ScrollControlIntoView(): Implemented.
9471           - Switched scrollbars to be implicit, they shouldn't be selectable
9472         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9473           call it when the active control is set/changed
9474         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9475         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9476           implicit_control variable (used for native Win32 message generation)
9477         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9478           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9479         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9480         * XplatUIStructs.cs: Added ScrollBarCommands enum
9481
9482 2006-04-10  Jackson Harper  <jackson@ximian.com>
9483
9484         * ButtonBase.cs:
9485         * CheckedListBox.cs:
9486         * ComboBox.cs:
9487         * DataGrid.cs:
9488         * DataGridView.cs:
9489         * Form.cs:
9490         * GroupBox.cs:
9491         * ListBox.cs:
9492         * PrintPreviewControl.cs:
9493         * ProgressBar.cs:
9494         * PropertyGrid.cs:
9495         * Splitter.cs:
9496         * StatusBar.cs:
9497         * TrackBar.cs:
9498         * UpDownBase.cs: Fixup base event overrides.
9499         
9500 2006-04-06  Mike Kestner  <mkestner@novell.com>
9501
9502         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9503         all user-initiated value changes to min <= value <= max-thumbsz+1.
9504         (set_Value): check for vert/horiz when calculating new thumb position.
9505         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9506         like MS does.
9507         (OnMouseMoveSB): refactor the thumb dragging code and refine
9508         invalidation logic to reduce flicker.
9509         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9510         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9511         (UpdateThumbPosition): small code readability cleanup
9512
9513 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9514
9515         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9516           different
9517
9518 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9519
9520         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9521
9522 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9523
9524         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9525         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9526           This dramatically reduces the number of Pen.Dispose calls. 
9527           Where possible call ResPool methods only once instead of calling it
9528           over and over again (for example for the same color).
9529
9530 2006-04-06  Mike Kestner  <mkestner@novell.com>
9531
9532         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9533         Also remove an unused private field on the collection. Fixes #77972.
9534
9535 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9536
9537         * ThemeNice.cs: Added ToolBar drawing code
9538
9539 2006-04-06  Mike Kestner  <mkestner@novell.com>
9540
9541         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9542         I'm assuming that means we need to look up the toplevel for the
9543         provided control. Fixes the crash trace in #77911 but exposes another
9544         crash in some strange reflection usage in NDocGui.
9545
9546 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9547
9548         * ThemeNice.cs: Gave it a little silver touch and added Images
9549           method
9550         * FontDialog.cs: FontDialog is not resizable
9551         * FileDialg.cs: Added SizeGripStyle.Show
9552
9553 2006-04-05  Jackson Harper  <jackson@ximian.com>
9554
9555         * KeyboardLayouts.cs: Remove warning.
9556
9557 2006-04-05  Jackson Harper  <jackson@ximian.com>
9558
9559         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9560         all of our controls instead of Paint +=.
9561         * ListBox.cs:
9562         * ListView.cs:
9563         * MenuAPI.cs:
9564         * MessageBox.cs:
9565         * NotifyIcon.cs:
9566         * ProgressBar.cs:
9567         * ScrollBar.cs:
9568         * Splitter.cs:
9569         * StatusBar.cs:
9570         * TabControl.cs:
9571         * TextBoxBase.cs:
9572         * ToolBar.cs:
9573         * TrackBar.cs:
9574         * UpDownBase.cs:
9575         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9576         use OnPaintInternal. Remove Width/Height and Visible checks in
9577         paint handler, this is done at a higher level now.
9578         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9579         * PaintEventArgs.cs: Add a handled flag so controls that don't
9580         want anymore painting after OnPaintInternal can make sure OnPaint
9581         isn't called.
9582
9583 2006-04-05  Mike Kestner  <mkestner@novell.com>
9584
9585         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9586         state of the form, so that we don't process events when Modal dialogs
9587         are up. Fixes #77922.
9588
9589 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9590
9591         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9592           checking is done.
9593
9594 2006-04-05  Mike Kestner  <mkestner@novell.com>
9595
9596         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9597
9598 2006-04-05  Mike Kestner  <mkestner@novell.com>
9599
9600         * ListView.cs (HeaderMouseMove): null guarding for the over column
9601         when setting up the drag_to_index.  Fixes #78015.
9602
9603 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9604
9605         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9606           in the taskbar. Transient windows seem to accomplish that.
9607
9608 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9609
9610         * Form.cs:
9611           - Re-enabled CreateParams.X/Y code for FormStartPosition
9612           - Added code for manual placement when creating the Control
9613           - Incomplete patch to treat MDI forms differently when
9614             setting the ClientSizeCore. (Still need to figure out handling
9615             x/y coords there)
9616         * XplatUIX11.cs:
9617           - When we're explicitly setting the X/Y position of a non-Child
9618             window, let the WM know. Metacity really wants this.
9619
9620 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9621
9622         * ThemeNice.cs: Added CPDrawButton
9623
9624 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9625
9626         * ThemeNice.cs: Changed the color for focused buttons and activated
9627           the arrows for small scroll buttons.
9628
9629 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9630
9631         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9632           anymore. Changed some method modifiers to protected (virtual)
9633         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9634           changes
9635         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9636           Updated drawing of menus, buttons and progressbars; added
9637           CPDrawBorder3D 
9638
9639 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9640
9641         * ImageListStreamer.cs: implemented serialization/deserialization
9642         of the images.
9643
9644 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9645
9646         * ThemeWin32Classic.cs:
9647           - Removed all the DrawFrameControl stuff; CPDrawButton,
9648             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9649             inside the methods
9650           - Updated and corrected the drawing code of CPDrawButton,
9651             CPDrawCheckBox and CPDrawRadioButton to better match ms
9652           - Updated theme checkbox and radiobutton code to use the CP*
9653             methods
9654
9655 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9656
9657         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9658           bug is fixed
9659
9660 2006-03-31  Jackson Harper  <jackson@ximian.com>
9661
9662         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9663         sometimes.
9664         * UpDownBase.cs: Don't CreateGraphics manually, use a
9665         Refresh. Ideally we would invalidate the correct areas here.
9666
9667 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9668
9669         * XplatUIX11.cs: 
9670           - We now track the mapping state of windows. If a window (or 
9671             one of it's parents) is not mapped we no longer permit
9672             WM_PAINT messages to be generated since we'd otherwise get 
9673             lots of BadMatch X errors. Jackson did all the work figuring
9674             out the problem.
9675           - Destroying the caret if the window it's contained in is 
9676             destroyed. Can't use regular DestroyCaret method since it
9677             might fall into a drawing function (trying to remove the
9678             caret) and with that generate new BadMatch errors. Again,
9679             Jackson tracked this down.
9680           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9681             make sure we send the messages to all windows. (The old code
9682             would send the WM_DESTROY to the window, and then all child
9683             windows would be 'gone' because the WM_DESTROY handle lookup
9684             would no longer find the destroyed window)
9685         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9686         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9687
9688 2006-03-31  Jackson Harper  <jackson@ximian.com>
9689
9690         * ScrollableControl.cs: Dont recalc if we are not visible.
9691
9692 2006-03-31  Mike Kestner  <mkestner@novell.com>
9693
9694         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9695         the visibility branch.
9696
9697 2006-03-31  Jackson Harper  <jackson@ximian.com>
9698
9699         * ScrollBar.cs: Cap values when incrementing/decrementing.
9700
9701 2006-03-31  Mike Kestner  <mkestner@novell.com>
9702
9703         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9704         * ToolTip.cs: guard against timer expirations with no active control.
9705         Not sure why it happened.
9706
9707 2006-03-31  Mike Kestner  <mkestner@novell.com>
9708
9709         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9710         text.
9711         * ToolTip.cs: Position the tooltip based on where the cursor is at
9712         popup time, not at MouseEnter time.  Add a Down state so that we don't
9713         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9714         positioning offset. Lookup DisplaySize at positioning time, since it
9715         can theoretically change during invocation.
9716         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9717         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9718
9719 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9720
9721         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9722           Fixes behaviour when the Text property of the box is String.Empty
9723
9724 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9725
9726         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9727           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9728           a window)
9729
9730 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9731
9732         * FileDialog.cs: Visual enhancement for the popup buttons in 
9733           PopupButtonPanel
9734
9735 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9736
9737         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9738           code
9739
9740 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9741
9742         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9743           highlighted menu items to match ms
9744
9745 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9746
9747         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9748
9749 2006-03-30  Mike Kestner  <mkestner@novell.com>
9750
9751         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9752         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9753         go active to account for HotLight to Selected transition.
9754         * MenuItem.cs: add internal Selected prop. Fill out the Status
9755         property by calculating it from item info. Add HotLight,
9756         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9757
9758 2006-03-30  Mike Kestner  <mkestner@novell.com>
9759
9760         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9761
9762 2006-03-29  Jackson Harper  <jackson@ximian.com>
9763
9764         * Form.cs: Implement TODO.
9765
9766 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9767
9768         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9769           missing proper dialog setup in the constructor
9770
9771 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9772
9773         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9774         * Control.cs:
9775           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9776           - Fixed ResetBindings and removed TODO
9777           - Added check for cross-thread calls to get_Handle()
9778           - Added Marshaller attribute for set_Font to satisfy class status
9779         * FontDialog.cs: Removed TODOs that seemed implemented
9780         * UpDownBase.cs: Removed unneeded TODO and Fixme
9781         * MessageBox.cs: Implemented support for Default button and removed TODO
9782         * FileDialog.cs: Removed obsolete TODO
9783         * DomainUpDown.cs: Removed obsolete TODO
9784         * ButtonBase.cs: Removed obsolete TODO
9785         * XplatUIWin32.cs: Removed obsolete TODO
9786         * Form.cs:
9787           - Removed obsolete TODO
9788           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9789             internal status updates
9790           - Making sure the active control is selected when the control is created
9791         * CurrencyManager.cs: Removed obsolete TODO
9792
9793 2006-03-29  Mike Kestner  <mkestner@novell.com>
9794
9795         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9796         of PrintPreviewDialog and RichTextBox.
9797
9798 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9799
9800         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9801           DarkDark, Light and LightLight colors for a specific color
9802         * ThemeWin32Classic.cs:
9803           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9804             Appearance = Button 
9805           - Make use of the new ResPool helper CPColor
9806           - Draw ProgressBar and StatusBar with correct 3D borders
9807
9808 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9809
9810         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9811
9812 2006-03-28  Mike Kestner  <mkestner@novell.com>
9813
9814         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9815         calculating col/row counts.
9816
9817 2006-03-28  Mike Kestner  <mkestner@novell.com>
9818
9819         * ColumnHeader.cs:
9820         * ListView.cs:
9821         * ListViewItem.cs:
9822         * Menu.cs: 
9823         switch to explicit interface method implementation for some methods
9824         corcompare identifies as inconsistent with MS.
9825
9826 2006-03-28  Mike Kestner  <mkestner@novell.com>
9827
9828         * MainMenu.cs: 
9829         * Menu.cs:
9830         add a few missing methods from the class status output.
9831
9832 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9833
9834         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9835           correct.
9836
9837 2006-03-28  Mike Kestner  <mkestner@novell.com>
9838
9839         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9840
9841 2006-03-27  Mike Kestner  <mkestner@novell.com>
9842
9843         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9844         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9845
9846 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9847
9848         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9849
9850 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9851
9852         * ThemeWin32Classic.cs:
9853           - GroupBox: Inserted a little gap between the text and the lines
9854             on the right side
9855           - Made the code in CPDrawBorder3D more readable
9856           - Corrected the drawing location of the up and down arrows in 
9857             CPDrawScrollButton
9858
9859 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9860
9861         * ControlPaint.cs: Corrected line widths in DrawBorder for
9862           ButtonBorderStyle Inset and Outset
9863
9864 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9865
9866         * ThemeWin32Classic.cs:
9867           - Rewrote the totally broken CPDrawBorder3D method. That was
9868             one of the main problems for the terrific ThemeWin32Classic
9869             look
9870           - Updated and corrected Button drawing
9871           - Correct the dimensions of the SizeGrip to match ms ones
9872           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9873         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9874           Border3DStyle.Sunken to match ms.
9875
9876 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9877
9878         * ThemeWin32Classic.cs: First small part of the "de-uglify
9879           ThemeWin32Classic" effort, SizeGrip
9880
9881 2006-03-24  Jackson Harper  <jackson@ximian.com>
9882
9883         * XplatUIX11.cs: Give a max idle time of one second, this matches
9884         MS and forces an Idle event every second when there are no other
9885         events in the queue.
9886
9887 2006-03-24  Mike Kestner  <mkestner@novell.com>
9888
9889         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9890         * ListView.Item.cs: fix layout issues with null image lists and images
9891         smaller than checkbox size.
9892         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9893         mode like MS does.  It's weird, but consistent.  ;-)
9894         Fixes #77890.
9895
9896 2006-03-24  Mike Kestner  <mkestner@novell.com>
9897
9898         * ListView.cs: Scroll wheel support for the item control.  Fixes
9899         #77839.
9900
9901 2006-03-23  Jackson Harper  <jackson@ximian.com>
9902
9903         * ScrollableControl.cs: Special case negative sized areas, not
9904         zero.
9905         * MonthCalendar.cs: Save the rect of the clicked date so we can
9906         use it for invalidation.
9907         - Try to cut down on the number of invalidates
9908         - Invalidate the rect the mouse is over and was over when moving
9909         the mouse, so we get the focus box following the cursor.
9910
9911 2006-03-23  Mike Kestner  <mkestner@novell.com>
9912
9913         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9914         focus rectangle drawing. Fixes #77835.
9915
9916 2006-03-23  Mike Kestner  <mkestner@novell.com>
9917
9918         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9919         the if and else if and reverting back to the original == check on the
9920         None conditional.
9921
9922 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9923
9924         * FontDialog.cs: Update the example panel if the selected index of
9925           the fontListBox changes.
9926
9927 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9928
9929         * FileDialog.cs: Make FileDialog remember which directory it was in
9930           last in the same execution.
9931
9932 2006-03-22  Mike Kestner  <mkestner@novell.com>
9933
9934         * FileDialog.cs: make the DropDownMenu on the toolbar display
9935         RadioChecks since they are mutually exclusive and that's what MS does.
9936
9937 2006-03-22  Mike Kestner  <mkestner@novell.com>
9938
9939         * Theme.cs: add Color param to CPDrawMenuGlyph.
9940         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9941         checks and radio marks and arrows are visible on highlighted items.
9942         * ControlPaint.cs: update to use new Theme signature.
9943
9944 2006-03-22  Mike Kestner  <mkestner@novell.com>
9945
9946         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9947         is active. Fixes #77870.
9948
9949 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9950
9951         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9952           to be focused/selected after startup
9953
9954 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9955
9956         * ColorDialog.cs: 
9957           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9958             CustomColors and ShowHelp properties
9959           - Some internal rewrites to get better results when using the
9960             ColorMatrix
9961
9962 2006-03-22  Mike Kestner  <mkestner@novell.com>
9963
9964         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9965         HoverSelection.  Fixes #77836.
9966
9967 2006-03-22  Mike Kestner  <mkestner@novell.com>
9968
9969         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9970         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9971         1, not 0.  Update ButtonSize based on a pixel count of the win32
9972         control.  Adjust the toolbar size/location for new button size.
9973
9974 2006-03-22  Jackson Harper  <jackson@ximian.com>
9975
9976         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9977         true.
9978         * ScrollBar.cs: When doing increments and decrements we need to
9979         set the Value property so that ValueChanged gets raised. A
9980         possible optimization here would be to make an internal SetValue
9981         that doesn't invalidate immediately.
9982         * ToolTip.cs: Tooltips get added to their container (when
9983         supplied) so they get disposed when the container is disposed.
9984         - Don't create tooltips for String.Empty. This prevents all these
9985         little 2-3 pixel windows from showing up when running nunit-gui
9986         and driving me mad.
9987         * Form.cs: Don't set topmost when setting the owner if the handles
9988         haven't been created yet.  The topmost set will happen when the
9989         handles are created.
9990
9991 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9992
9993         * XplatUIX11.cs:
9994           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9995           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9996             visible (to allow them to recalculate their sizes)
9997
9998 2006-03-21  Mike Kestner  <mkestner@novell.com>
9999
10000         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10001         methods. Removed a ton of redundant code.  Still not really happy with
10002         the border rendering, but I think that's mainly because of the
10003         ControlDarkDark being black instead of a dark grey. Depending on how 
10004         close we want to be, we might want to revisit those color choices.
10005         Among the new features added during the refactor were DropDownArrow
10006         pressed rendering, Disabled image rendering.  Proper flat appearance
10007         boundary rendering.  Removed the Divider and Wrapping dividers since I
10008         can't figure out any combination of themes and conditions to make the
10009         MS control draw a horizontal line on a toolbar despite what the
10010         Divider property docs indicate.
10011         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10012         conditions and incorrect layout.  Updated to coding standard.
10013         * ToolBarButton.cs: refactored layout and positioning code from
10014         ToolBar to here.  Invalidate wherever possible instead of forcing
10015         redraws of the whole toolbar. 
10016         (Known remaining issues: explicit ButtonSize smaller than provided
10017         images.)
10018
10019 2006-03-21  Mike Kestner  <mkestner@novell.com>
10020
10021         * ContextMenu.cs (Show): use the position parameter instead of just
10022         showing at the MousePosition.
10023
10024 2006-03-21  Jackson Harper  <jackson@ximian.com>
10025
10026         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10027         control handle this.
10028         * TreeNodeCollection.cs: If we are clearing the root node we need
10029         to reset top_node so calcs can still happen.
10030         * ThemeWin32Classic.cs: This is a Flags so we need to check
10031         properly.
10032         
10033 2006-03-21  Jackson Harper  <jackson@ximian.com>
10034
10035         * DataGrid.cs: Create columns when the binding context has been
10036         changed.
10037         * X11Structs.cs: Keysyms are uints.
10038         - Add size to fix build.
10039
10040 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10041
10042         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10043           XplatUIOSX.cs: 
10044           - Added ResetMouseHover method to allow controls to retrigger
10045             hovering if they need it more than once
10046           - Implemented MouseHoverTime and MouseHoverSize properties
10047         * Timer.cs: Start() must reset the interval
10048         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10049           properties
10050
10051 2006-03-21  Jackson Harper  <jackson@ximian.com>
10052
10053         * X11Keyboard.cs: improved layout detection. Move the nonchar
10054         tables into this file.
10055         * KeyboardLayouts.cs: Move the tables into resource files.
10056
10057 2006-03-21  Mike Kestner  <mkestner@novell.com>
10058
10059         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10060
10061 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10062
10063         * Mime.cs: Various speed optimizations. Looking up mime types
10064           is now 2 times faster than before
10065
10066 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10067
10068         * CreateParams.cs: Added internal menu field
10069         * Control.cs: 
10070           - Switched call order for UpdateBounds; now we always call
10071             the one that also takes ClientSize, and we're calculating the 
10072             client size via driver method in the others. The previous
10073             method of tracking client size by difference wasn't working
10074             for forms where even the starting client size wouldn't match
10075             the overall form size (due to borders) (Part of fix for #77729)
10076           - CreateParams(): Do not use parent.Handle unless the handle is
10077             already created. Causes havoc with Nexxia and throws off our
10078             creation of controls
10079         * XplatUIX11.cs:
10080           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10081           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10082             method (consolidates code)
10083           - Changed RequestNCRecalc to use new PerformNCCalc method
10084           - Added calls to RequestNCRecalc when menus and borders are changed
10085             to allow app to set NC size. (Part of fix for #77729) This matches
10086             when MS send a WM_NCRECALC on Win32 windows.
10087           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10088             (Part of fix for #77729). This matches what MS does, they also
10089             send that message when the form is made visible.
10090           - XException.GetMessage: Improved usability of X errors by including
10091             a translation of the window into Hwnd and Control class
10092           - Improved debug info for window creation, reparenting and destruction
10093           - Created helper method WindowIsMapped() [Currently not used]
10094         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10095         * Form.cs:
10096           - CreateParams: Now setting our menu on the new internal menu field
10097           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10098             avoid calculating the same property twice
10099         * Hwnd.cs:
10100           - Improved usability of ToString() for debugging purposes
10101           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10102             determine the height of the menu, instead of just the font. This
10103             required to also create a graphics context and to keep a bmp 
10104             around (for performance reasons)
10105
10106 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10107
10108         * MenuAPI.cs: Added OnMouseUp method
10109         * Form.cs:
10110           - Now remembering the requested client size, avoids size errors
10111           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10112             instead of base if the menu is active. This is required due to
10113             control now capturing and releasing on down/up and it would
10114             prematurely release our menu capture
10115
10116 2006-03-17  Jackson Harper  <jackson@ximian.com>
10117
10118         * KeyboardLayouts.cs: Add the czech layouts.
10119
10120 2006-03-16  Jackson Harper  <jackson@ximian.com>
10121
10122         * Control.cs: Use the viewport space when sizing not the controls
10123         client size, so things like ScrollableControl that effect the
10124         viewport size (when scrollbars are added) are computed correctly.
10125         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10126         of ManagerEntrys.
10127         - Handle creating BindingManagers for null data sources.
10128         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10129         source, otherwise when rows are added they are added to the 'fake'
10130         datasource and we will crash when trying to set the position in
10131         those rows.
10132         - Use Implicit scrollbars on the datagrid so they arent
10133         selectable.
10134         
10135 2006-03-16  Jackson Harper  <jackson@ximian.com>
10136
10137         * Binding.cs:
10138         * InternalWindowManager.cs:
10139         * MdiWindowManager.cs:
10140         * X11Keyboard.cs: I really want Mike to love me again (fix
10141         compiler warnings).
10142
10143 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10144
10145         * DataGrid.cs:
10146           - OnMouseDown: Switch to editing mode when clicking on the cell
10147                          even if we're clicking on the cell that's currently 
10148                          selected
10149           - ProcessGridKey: Left/Right now wrap like MS.Net does
10150           - ProcessGridKey: Tab now knows to add a new row when tab is
10151                             pressed in the cell of the last column of the 
10152                             last row
10153           - ProcessGridKey: Enter now adds another row  if pressed in the last
10154                             row and selectes the new row, same column cell
10155           - ProcessGridKey: Home/End navigate columns, not rows, like 
10156                             originally implemented
10157           - Broke ProcessKeyPreview code out into an extra Internal method
10158             so it can be called from the edit code
10159         * DataGridTextBox.cs (ProcessKeyMessage):
10160           - Switched to accept Tab keypresses
10161           - Added F2 handling to allow jumping to the end of the edited cell
10162           - Added logic to allow moving caret left/right inside edited cell
10163             and making the edited cell jump when the caret hits cell borders
10164           - Tab and Enter are now passed to the datagrid after being handled
10165         * TextBoxBase.cs:
10166           - Removed capture code now that Control handles it
10167           - set_SelectionStart now ensures caret is visible
10168
10169 2006-03-16  Jackson Harper  <jackson@ximian.com>
10170
10171         * TrackBar.cs: Debackwards the increment/decrement for handling
10172         mouse clicks on the bar with vertical trackbars.
10173         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10174         bottom to match MS.
10175
10176 2006-03-16  Mike Kestner  <mkestner@novell.com>
10177
10178         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10179         consistent with the MS control. Fix a bug in
10180         SelectedListViewItemCollection.Clear that was pissing me off for the
10181         better part of a day because the collection was being altered
10182         underneath us as we walked the list.
10183
10184 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10185
10186         * Control.cs: Not sure how we could miss this so long, but it seems
10187           that MS.Net has Capture set all the way from before calling 
10188           OnMouseDown through sending the mouse events until after
10189           OnMouseUp. This will fix DataGrid's selection being set to end
10190           at the location of the MouseUp.
10191
10192 2006-03-15  Jackson Harper  <jackson@ximian.com>
10193
10194         * BindingContext.cs: Check the binding after its added so that it
10195           can initialize the binding managers and hookup to events.
10196         * Binding.cs: Data members seem to sometimes include rows/cols in
10197           the format Row.Column we now take this into account.
10198           - Hookup to the position changed event so we can update the
10199           control when the position has changed in the data set.
10200         * CurrencyManager.cs: Take into account the row/col naming
10201           convention when creating dataset tables.
10202         * BindingContext.cs: Using a newer better way of storing
10203           datasource/datamember pairs.  Hopefully this better matches MS for
10204           looking up binding managers.
10205
10206
10207 2006-03-15  Jackson Harper  <jackson@ximian.com>
10208
10209         * BindingContext.cs: The currency manager needs the data member
10210         name, if the member is a data set we use the name to find the
10211         correct table.
10212         * CurrencyManager.cs: When creating the list prefer an IList over
10213         an IListSource.
10214         - Attempt to create a DataTable from a DataSet (TODO: might need
10215         some better error checking here, although MS doesn't seem to have much)
10216         - If we have a DataTable create a view and use it as our list.
10217
10218 2006-03-15  Mike Kestner  <mkestner@novell.com>
10219
10220         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10221         keyboard navigation. Support Up/Down/Left/Right selection correctly
10222         for all 4 View modes.
10223         * ListViewItem.cs: add internal row/col fields for icon layouts.
10224
10225 2006-03-15  Jackson Harper  <jackson@ximian.com>
10226
10227         * TabControl.cs: Redraw the tabs when we resize so their newly
10228         calculated sizes are drawn on screen.
10229         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10230         composite characters.
10231         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10232         - filter events so that composite characters can be created
10233         patches by peter
10234         * X11Structs.cs: Add XIMProperties enum.
10235
10236 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10237
10238         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10239           unless it's created
10240
10241 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10242
10243         * Control.cs (PerformLayout): We don't need to consider visiblity
10244           for anchoring, only for docking. This fixes 'whacky' alignment
10245           in listbox and other controls that use implicit scrollbars after
10246           the previous PerformLayout patch
10247         * ListBox.cs: Switched to use implicit scrollbars
10248           
10249 2006-03-14  Mike Kestner  <mkestner@novell.com>
10250
10251         * ToolBar.cs: 
10252         * VScrollBar.cs:
10253         - chain up the "new event" overrides to base and use
10254         OnEvent to raise them.  Part of fix for bug #76509.
10255
10256 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10257
10258         * FileDialog.cs: Do not select an item in the parent directory
10259           on backspace
10260
10261 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10262
10263         * Control.cs (PerformLayout): It would seem that we considered
10264           invisible windows for our layout. Not quite the right thing
10265           to do. Now we don't any longer, thereby fixing bug #76889.
10266
10267 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10268
10269         * Control.cs (CanFocus): I goofed. A control can have focus 
10270           even though it's not selectable. Made it match MS docs.
10271
10272 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10273
10274         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
10275           center by default (fixes #76895)
10276         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
10277           all uses of Border3DSides.All with the explicit ORd together
10278           Left|Right|Top|Bottom because I assume that nobody was aware 
10279           that All also implies a center fill. Most places I checked had
10280           a fill right above.
10281         * ProgressBarStyle.cs: Added
10282
10283 2006-03-13  Mike Kestner  <mkestner@novell.com>
10284
10285         * ListView.cs: fix breakage in drag shadow header positioning 
10286         from Peter's csc compilation fix.
10287
10288 2006-03-13  Mike Kestner  <mkestner@novell.com>
10289
10290         * ListView.cs: fix NRE produced by backspacing twice in a focused
10291         FileDialog.
10292
10293 2006-03-13  Mike Kestner  <mkestner@novell.com>
10294
10295         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10296
10297 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10298
10299         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10300           be changed
10301         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10302           the allowed size before making programmatic size changes
10303
10304 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10305
10306         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10307           set, metacity is broken and will still use the emty sizes in 
10308           the struct. (Fix for #77089)
10309
10310 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10311
10312         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10313           WindowExStyles and marked both enums as Flags
10314         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10315           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10316           to match WindowStyles split
10317         * XplatUIX11.cs:
10318           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10319           - Updated to match WindowStyles split
10320         * XplatUIWin32.cs:
10321           - Fixed FosterParent creation, was using ExStyle on the Style field
10322             (This should help with Popup focus issues)
10323           - Updated to match WindowStyles split
10324
10325 2006-03-13  Jackson Harper  <jackson@ximian.com>
10326
10327         * MdiWindowManager.cs: Use the system menu height. Fixes some
10328         strange sizing issues.
10329
10330 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10331
10332         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10333         * TextBoxBase.cs:
10334           - Scroll to caret after inserting text (#77672)
10335           - Make scroll range one pixel higher, fixes off-by-one error (and
10336             makes underlines visible on the last line)
10337
10338 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10339
10340         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10341           the keyboard state from being stuck with keys in 'pressed' state when
10342           focus is switched away via keyboard
10343         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10344           reset the keyboard if no X11 KeyUp events are expected to come
10345         * X11Structs.cs: Switched type of Visible to bool to match driver
10346
10347 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10348
10349         * TextControl.cs:
10350           - Switched caret to be just 1 pixel wide, matches MS and looks less
10351             clunky
10352           - Moved caret display 1 pixel down from the top of the control
10353             to improve view
10354           - InsertCharAtCharet: Update the selection start if moving the caret
10355             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10356           - No longer always creating the caret when the caret methods are
10357             called. Only the actual ShowCaret/HideCaret will do that now
10358           - Only setting caret visible if the owner control has focus
10359           - UpdateView: Added invalidation-shortcut logic for center and right 
10360             aligned text. Previously we'd update all according to the left
10361             logic which caused drawing errors. Also fixed height of invalidated
10362             areas, now properly invalidating the whole area (was off-by-one)
10363           - owner_HandleCreated: Always generate the document when the
10364             handle is created; this ensures that 
10365         * TextBoxBase.cs:
10366           - Fixed situation where caret would disappear under the right
10367             window border, also improved scrolling behaviour on left-
10368             aligned textboxes
10369           - Fixed right-aligned textboxes to have a border to the
10370             right instead of the caret being under the right border
10371         * XplatUIX11.cs:
10372           - Switched from 'nested' to simple visible/not visible tracking 
10373             for caret (part of fix for #77671)
10374           - No longer passing through translated FocusIn/FocusOut messages
10375             since we were notifying too often and the wrong windows. Instead
10376             we just notify our focussed window of receiving or loosing focus
10377         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10378           counting for caret to simple visible yes/no behaviour (part of 
10379           fix for #77671)
10380
10381 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10382
10383         * Mime.cs: Remove debug code...
10384
10385 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10386
10387         * MimeGenerated.cs: Removed
10388         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10389           and subclasses) from /usr/(local/)share/mime and
10390           $HOME/.local/share/mime.
10391
10392 2006-03-10  Jackson Harper  <jackson@ximian.com>
10393
10394         * MdiWindowManager.cs: Recalc the NC area when a window is
10395         maximized/restored so that the menu area is drawn on forms that
10396         don't have a menu.
10397
10398 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10399
10400         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10401           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10402           us to force a WM_NCCALCRESIZE message being sent. This is needed
10403           for MDI maximizing.
10404
10405 2006-03-10  Jackson Harper  <jackson@ximian.com>
10406
10407         * Form.cs: We need to use the ActiveMenu when calculating menu
10408         height.
10409         - Fix nullref when the window manager hasn't been created yet.
10410         * Control.cs: Fix nullref when we try to bring a control to the
10411         front that has no parent.
10412         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10413         height.
10414         - Add a dummy item to the maximized menu so it always has the
10415         correct height. Otherwise when there are no menus we don't get our
10416         icon and buttons.
10417         
10418
10419 2006-03-10  Jackson Harper  <jackson@ximian.com>
10420
10421         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10422         stuff.
10423         * Form.cs: Make the window_state internal so the window managers
10424         can track it.
10425         - When an MDI child is maximized let its window manager create the
10426         main menu (so it can add its icon).
10427         - Notify the window managers of state changes
10428         - Let the window manager paint its buttons and handle button
10429         clicks on the menu when it is maximized.
10430         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10431         window manager, since tool windows don't use it, only mdi windows.
10432         - Tell the main form that we don't want it to handle NCPAINT
10433         itself to avoid extra painting.
10434         - Handle clicks on a maximized windows menu.
10435         - Handle window state changes
10436         - Handle minimize/maximize clicks correctly by setting the window state.
10437         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10438         when clicking on the forms icon).
10439         - New method to create a forms maximized menu. This is its normal
10440         menu + an icon.
10441         - Handle window state changes.
10442         - Handle sizing of maximized windows.  Maximized windows are just
10443         drawn bigger then the parent visible area. All controls are still
10444         there, they are just outside the visible area (this matches windows).
10445         * MdiClient.cs: No scrollbars when a child window is maximized.
10446         - Let the children windows figure out how big they should be when
10447         sizing maximized windows.
10448         - Implement a version of ArrangeIconicWindows somewhat similar to
10449         Windows version.  There are some little differences, but I don't
10450         think any app will rely on the layout of minimized mdi windows.
10451
10452 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10453
10454         * Padding.cs: Several fixes to allow compiling with csc 2.0
10455
10456 2006-03-09  Jackson Harper  <jackson@ximian.com>
10457
10458         * Menu.cs:
10459         * MenuItem.cs: Cheap hack so we can add items to the list without
10460         the events being raised.  This allows adding mdi items during
10461         drawing. TODO: Should probably find a better time to add the items.
10462
10463 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10464
10465         * ThemeWin32Classic.cs:
10466           - CheckBox_DrawText: Added logic to not wrap if not enough space
10467             is available (Fix for bug #77727)
10468           - RadioButton_DrawText: Added logic not to wrap if not enough
10469             space is available (Fix for bug #77727). Also removed some
10470             duplicate code, DrawString always drawing the regular text
10471             before hitting the if statement.
10472
10473 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10474
10475         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10476
10477 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10478
10479         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10480         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10481           methods. Moved the new 2.0 properties into alphabetical order with
10482           other properties and added MonoTODO tags
10483
10484 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10485
10486         * AutoScaleMode.cs: Added. Fix build.
10487
10488 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10489
10490         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10491           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10492           and was requiring premature handle creation for calls from above
10493         * Form.cs, Control.cs: Removed handle arguments from calls to
10494           CalculateClientRect()
10495
10496 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10497
10498         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10499           drag_column.column_rect is MarshalByRef and can't be used that way
10500
10501 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10502
10503         * AxHost.cs: Added deserialization constructor for 
10504           AxHost+State (fixes 77743)
10505
10506 2006-03-09  Mike Kestner  <mkestner@novell.com>
10507
10508         * ListView.cs: 
10509         - Added column drag reordering for details view.
10510         - fixed behavior when mouse is dragged off column and
10511         AllowColumnReorder is false.
10512         * ColumnHeader.cs: clone the format too in Clone.
10513         * Theme.cs: add DrawListViewHeaderDragDetails method.
10514         * ThemeWin32Classic.cs:
10515         - impl new method for drawing drag column shadows and targets.
10516         - support column offset for details mode in DrawListViewItem.
10517
10518 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10519
10520         * TextControl.cs: Reset the char_count when the document is cleared
10521           (Fixes bug reported on mono-winforms mailing list)
10522
10523 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10524
10525         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10526           of calling base we simply process the key ourselves, since both
10527           DefWindowProc and the handled method would set m.Result. 
10528           (Fixes #77732)
10529
10530 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10531
10532         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10533           method also moves the window; instead implemented a copy of
10534           Control.ScaleCore (Part of fix for #77456)
10535         * TextBoxBase.cs: 
10536           - Created new CreateGraphicsInternal method to allow providing
10537             a graphics context when no handle is created without triggering
10538             handle creation. (Part of fix for #77456)
10539           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10540         * TextControl.cs: 
10541           - Switched Constructor to require TextBoxBase instead of Control (to
10542             allow uncast access to CreateGraphicsInternal)
10543           - Safeguarded use of owner.Handle property. No longer accessing it
10544             unless the handle is already created.
10545           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10546           - Now triggering a recalc when owning control becomes visible
10547         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10548           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10549           premature handle creation (Part of fix for #77456)
10550         * Control.cs:
10551           - We now only destroy our double-buffering buffers when the
10552             control is resized or disposed, but not when visibility
10553             changes. (The code even re-created them twice every time)
10554           - Now requiring a redraw of the buffer on visibility changes
10555             (fixes bug 77654 part 2)
10556           - Not passing OnParentVisibleChanged up unless the control
10557             is visible
10558           - CanFocus: Fixed to match MS documentation
10559           - Focus: Fixed to return actual focus state and to check if
10560             setting focus is legal before setting it
10561
10562 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10563
10564         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10565           when to draw focus rectangle by looking at parent focus and
10566           selected state instead. This fixes TabPages on Linux sometimes
10567           having none or multiple focus rectangles.
10568         * XplatUIX11.cs (SetFocus): 
10569           - Don't set the focus if the same window already has focus
10570           - Use SendMessage instead of PostMessage (like it's Win32
10571             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10572             to match MS behaviour
10573         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10574           are not selectable.
10575
10576 2006-03-07  Jackson Harper  <jackson@ximian.com>
10577
10578         * PictureBox.cs: Revert line I accidently committed last week.
10579
10580 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10581
10582         * Control.cs: 
10583           - Added new IsRecreating and ParentIsRecreating properties to
10584             allow testing if RecreateHandle has been called on ourselves
10585             or one of our parents
10586           - WndProc(WM_DESTROY): If our control handle is being recreated
10587             we immediately need to create the handle when receiving the
10588             destroy, that way our child windows find a valid parent handle
10589             when they themselves are being recreated upon WM_DESTROY receipt
10590             (fix for bug #77654 part 1)
10591         * XplatUIX11.cs:
10592           - DestroyWindow: WM_DESTROY must be sent to our own window before
10593             notifying any child windows. MS documents that child windows
10594             are still valid when WM_DESTROY is received. (Control now relies on
10595             this behaviour)
10596           - Added some fine-grain debug options
10597
10598 2006-03-06  Jackson Harper  <jackson@ximian.com>
10599
10600         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10601         box and base calculations off this.
10602         * MdiChildContext.cs:
10603         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10604         anymore.
10605         
10606 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10607
10608         * Splitter.cs: In situations where the affected control is added
10609           to the parent's control list after the splitter, we would not
10610           populate affected. Now we try populating it on mousedown, if
10611           it's not already set, and force it to be re-set whenever our
10612           parent changes.
10613
10614 2006-03-03  Matt Hargett  <matt@use.net>
10615
10616         * Control.cs: implement Control.Padding
10617         * Padding.cs: -Padding.All returns -1 when constructing with the
10618         implicit default ctor
10619         -Padding.ToString() matches MS.NET
10620         * ContainerControl.cs: implement
10621         ContainerControl.AutoScaleDimensions
10622         * ListControl.cs: implement ListControl.FormattingEnabled
10623         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10624         * ButtonBase.cs:
10625         * TabPage.cs: Implement UseVisualStyleBackColor.
10626         * PictureBox.cs: Implement PictureBox.InitialImage.
10627
10628 2006-03-03  Mike Kestner  <mkestner@novell.com>
10629
10630         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10631         event declarations to proxy to base event.
10632         * ListViewItem.cs: update to use ItemControl.
10633         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10634         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10635         column header label rendering for 0 width columns.
10636
10637 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10638
10639         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10640           that causes the control to be created. Fixes #77476.
10641
10642 2006-03-02  Jackson Harper  <jackson@ximian.com>
10643
10644         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10645         expose_pending.
10646
10647 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10648
10649         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10650           passed in for the EventArgs (fixes #77690)
10651
10652 2006-03-01  Jackson Harper  <jackson@ximian.com>
10653
10654         * ScrollBar.cs: Refresh afterbeing resized.
10655
10656 2006-02-28  Mike Kestner  <mkestner@novell.com>
10657
10658         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10659         Clean up a tracker compile warning.
10660         * MenuItem.cs: add internal PerformPopup method.
10661         [Fixes #77457]
10662
10663 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10664
10665         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10666           implicit expose) when the text is set to null
10667
10668 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10669
10670         * RichTextBox.cs (FlushText): When newline is true, we always
10671           need to split the line, even if no text is on it and we may
10672           never eat newlines. (Fixes #77669)
10673
10674 2006-02-28  Mike Kestner  <mkestner@novell.com>
10675
10676         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10677         and set Selected instead.
10678         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10679         collections.
10680
10681 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10682
10683         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10684
10685 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10686
10687         * FontDialog.cs:
10688           - Got rid of the panel. All controls are now directly added to
10689             the dialog form
10690           - It is now possible to set a font with the Font property
10691           - MinSize and MaxSize property do now what they should
10692           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10693           - Searching and selecting a font with the font textbox works now,
10694             the same applies to the style and size textbox
10695           - Draw the correct 3D border in the example panel
10696           - Fixed a little mem leak (unused fonts didn't get disposed)
10697           - Many other internal updates/rewrites...
10698           - Fix typo
10699
10700 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10701
10702         * TextControl.cs: 
10703           - InsertRTFFromStream: Added 'number of characters inserted' argument
10704           - set_SelectedRTF: Now using the number of characters to calculate
10705             the new location for the selection and cursor (x/y cannot be used
10706             due to potentially already wrapped text)
10707
10708 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10709
10710         * TextControl.cs: Added property and implemented means to allow 
10711           disabling recalculation of a document (can be used to speed up
10712           multiple inserts and is needed to make RTF inserts predictable, see
10713           bug #77659)
10714         * RichTextBox.cs: Using the new NoRecalc property of Document to
10715           keep x/y insert locations predictable. Also makes it faster inserting
10716           large chunks of RTF
10717
10718 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10719
10720         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10721           it's easier for a child control to handle the other messages without
10722           having to duplicate the special functionality
10723         * TextBoxBase.cs
10724           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10725             code to handle processing the key ourselves, in order to get 
10726             access to the result of KeyEventArgs.Handled. We now only call 
10727             ProcessKey if they key hasn't been handled already. Fixes #77526.
10728           - set_Text: If null or empty string is given, just clear the 
10729             document. Fixes part of #77526
10730
10731 2006-02-27  Jackson Harper  <jackson@ximian.com>
10732
10733         * SizeGrip.cs: Paint the background color before painting the grip
10734         so things look right.
10735         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10736
10737 2006-02-27  Mike Kestner  <mkestner@novell.com>
10738
10739         * ListView.cs:
10740           - Restructure layout and invalidation model to remove a ton of
10741           flicker from the control and speed up performance in general.
10742           - Add manual column resize, flickers like crazy, but I already have
10743           some ideas on how I'll fix that. (#76822)
10744           - Merge the three Icon-based views into a single layout method.
10745           - Move item selection interaction logic from the item since 
10746           interaction with the collections is more appropriate to the view.
10747           - Deselection on non-item clicks.
10748         * ListViewItem.cs:
10749           - Encapsulate most of the layout. Add some internal props to trigger
10750           layout.  Move to a model where Items invalidate themselves instead
10751           of just invalidating the whole control every time something changes.
10752           - Invalidate on Text/Caption changes.
10753           - switch to an offset based layout model to avoid having to absolute
10754           position every element on item moves.
10755           - correct checkbox layout to conform to MS layout.
10756         * ThemeWin32Classic.cs:
10757           - refactor some column header drawing code.
10758           - fix string justification for column headers (#76821)
10759           - make SmallIcon labels top justified for compat with MS impl.
10760         * ThemeClearlooks.cs:
10761           - adjust to new ListViewItem internal checkbox bounds api.
10762
10763 2006-02-27  Jackson Harper  <jackson@ximian.com>
10764
10765         * Control.cs:  Change where implicit controls fall in the zorder.
10766         They are now on top of all children.
10767         - Synced AddImplicit code with Add
10768         - Removed unused enumerator.
10769         * SizeGrip.cs: Remove the TODO as its been TODONE.
10770
10771 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10772
10773         * TextControl.cs(Insert): Combine the last lines unless the insertion
10774           string ends with \n\n, otherwise we leave one line too many (Fixes
10775           something I noticed with the testapp for #77526; the bug itself was
10776           already fixed in the previous checkin)
10777
10778 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10779
10780         * RichTextBox.cs:
10781           - SelectionColor and SelectionFont methods no longer set absolute
10782             styles. Instead, the keep font or color respectively (This 
10783             resolves a long-standing FIXME in the code)
10784           - When flushing RTF text, the insert code now considers text trailing
10785             behind the insertion point (Fixes the bug where when replacing
10786             the selected text via SelectedRTF the remainder of the line behind 
10787             the selection would stay on the first insertion line)
10788         * TextBoxBase.cs:
10789           - AppendText now updates the selection points after inserting text
10790           - AppendText now ensures that the last tag (sometimes 0-length) of
10791             the document is used for the style information (Fixes part of 
10792             bug #77220)
10793         * TextControl.cs:
10794           - Created new FontDefiniton class to allow describing partial style
10795             changes
10796           - StreamLine() now takes a lines argument, to allow it to decide
10797             whether an encountered zero-length tag is the last in the document
10798             (which must be kept to not loose the font/color contained in it,
10799             for later appends)
10800           - Created Combine() and Split() methods for Marker structs, to 
10801             support marker updates due to reformatted documents (soft line
10802             wraps)
10803           - Implemented Document.CaretTag setter
10804           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10805             of the last line (Not the cause, but also exposed by bug #77220)
10806           - Added LineTag argument to InsertString method, to allow callers
10807             to force a certain tag to be used (required to force use of the
10808             trailing zero-length tag of a document)
10809           - Now updating markers in Combine(), to avoid stale tag markers
10810           - Added some method descriptions to aid maintenance
10811           - Implemented new FormatText concept, allowing additive/subtractive
10812             formatting by only specifying the components that are to be 
10813             changed. This was needed for resolving the RTB.SelectedColor/
10814             RTB.SelectedFont fixmes
10815           - Added Break() support method to allow breaking up linetags (used
10816             for partial formatting)
10817           - Added GenerateTextFormat() method. It is used for partial 
10818             formatting and allows to generate a full font/color from given
10819             attributes and an existing tag.
10820
10821 2006-02-26  Jackson Harper  <jackson@ximian.com>
10822
10823         * XplatUIX11.cs:  Use the correct caption height.
10824         - Translate hittest coordinates to screen coords to match MS.
10825         * XplatUIWin32.cs: When we create MDI windows we need to reset
10826         some of the style flags, so we get a nice blank window, and can
10827         draw all the decorations ourselves.
10828         - Set a clipping rectangle on the non client paint event, the
10829         window manager drawing code needs one.
10830         * Form.cs: The window manager needs to know when the window state
10831         has been updated.
10832         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10833         don't need to factor in border and title sizes in these
10834         methods. TODO: Remove the args and fix the call points.
10835         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10836         properly.
10837         - Let the driver set the cursors.
10838         - Improve active window handling
10839         - Correct sizes for title bars and buttons.
10840         - Match MS drawing better
10841         * MdiWindowManager.cs: We don't need to handle border style
10842         updates specially anymore.
10843         - Check for scrollbars when windows are done moving
10844         - Handle Active properly.
10845         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10846         correctly. I am spewing the exception though, so we don't hide the
10847         bugs.
10848         
10849 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10850
10851         * DataGridViewRowPostPaintEventArgs.cs,
10852           DataGridViewCellPaintingEventArgs.cs,
10853           DataGridViewRowCollection.cs,
10854           DataGridViewRowPrePaintEventArgs.cs,
10855           DataGridViewCell.cs: Clear a few warnings and implement a few
10856           exceptions that should be thrown.
10857
10858 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10859
10860         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10861           'inheriting' our parent's (non-default) cursor. (Part of
10862            the fix for #77479)
10863
10864 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10865
10866         * XplatUIX11.cs: Fixed cast to make csc happy
10867
10868 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10869
10870         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10871           it's for the client area (part of fix for #77479 and needed
10872           for MDI window cursor handling)
10873         * XplatUIX11.cs
10874           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10875             the appropriate default cursors and also passing the message
10876             up the parent chain 
10877           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10878             for non-client areas
10879
10880 2006-02-15  Jackson Harper  <jackson@ximian.com>
10881
10882         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10883         is a real MDI window
10884
10885 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10886
10887         * X11DesktopColors.cs: Instead of checking the desktop session
10888           string for "KDE" check if it starts with "KDE"
10889
10890 2006-02-10  Jackson Harper  <jackson@ximian.com>
10891
10892         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10893         systems).
10894
10895 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10896
10897         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10898           errors
10899         * ColorDialog.cs:
10900           - Got rid of the panel. All controls are now directly added to
10901             the dialog form
10902           - Changed to mono coding style
10903
10904 2006-02-10  Jackson Harper  <jackson@ximian.com>
10905
10906         * InternalWindowManager.cs: We don't need the set visibility to
10907         false hack anymore now that peter has written beautiful shutdown
10908         code.
10909
10910 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10911
10912         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10913           where already explicitly destroyed
10914
10915 2006-02-10  Jackson Harper  <jackson@ximian.com>
10916
10917         * MdiClient.cs: Handle the case where windows are too high or to
10918         the left and we need scrollbars.
10919
10920 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10921
10922         * MimeIcon.cs: Added some icons
10923         * FileDialog.cs:
10924           - Fixed bug #77477
10925           - Got rid of the panel. All controls are now directly added to
10926             the dialog form
10927           - Changed to mono coding style
10928           - On Linux "My Computer" and "My Network" will now show some
10929             more usefull information. A new class, MasterMount, gathers
10930             this information from /proc/mount. Updated MWFFileView to make
10931             use of this information
10932           - Fixed a bug that caused FileDialog to crash when
10933             ".recently_used" file had a zero size
10934           - FilterIndex does now what it should
10935           - Some Refactoring
10936         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10937             FileDialog changes
10938
10939 2006-02-09  Jackson Harper  <jackson@ximian.com>
10940
10941         * ComboBox.cs: Don't touch if null.
10942
10943 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10944
10945         * Cursor.cs: 64bit safeness fix
10946         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10947
10948 2006-02-09  Jackson Harper  <jackson@ximian.com>
10949
10950         * Form.cs: If a form is made into an MDI form update the styles so
10951         all the props can get set correctly.
10952         - Kill the mdi_container when we dont need it anymore.
10953         * InternalWindowManager.cs: Add missing NOT
10954
10955 2006-02-08  Jackson Harper  <jackson@ximian.com>
10956
10957         * InternalWindowManager.cs: Respek clipping when drawing MDi
10958         decorations.
10959
10960 2006-02-08  Jackson Harper  <jackson@ximian.com>
10961
10962         * Hwnd.cs: Add bits to track non client expose events.
10963         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10964         gives us a proper invalid rect and will allow for some nice
10965         optimizations with NC client drawing
10966         - MDI windows are children windows, so move their style handling
10967         into the child window block.
10968         * InternalWindowManager.cs: Remove a state reset that was
10969         getting invoked at the wrong time. Fixes managed windows getting
10970         into a 'stuck' captured state.
10971
10972 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10973
10974         * TextControl.cs (Document.ctor): Now initializing 
10975           selection_anchor. Fixes #77493
10976
10977 2006-02-07  Jackson Harper  <jackson@ximian.com>
10978
10979         * TrackBar.cs: The increment/decrements were backwards.
10980
10981 2006-02-07  Mike Kestner  <mkestner@novell.com>
10982
10983         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10984         to the instance itself.
10985
10986 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10987
10988         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10989           on ulongs and pointers, the size differs between 32bit and 64bit
10990           systems. 
10991
10992 2006-02-07  Mike Kestner  <mkestner@novell.com>
10993
10994         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10995         for 64 bit platforms to work around a metacity bug. 
10996
10997 2006-02-07  Jackson Harper  <jackson@ximian.com>
10998
10999         * TrackBar.cs: Process the input keys we need, and hookup to
11000         KeyDown instead of using WndProc, so we get key messages.
11001
11002 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11003
11004         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11005           machine we're on. 
11006         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11007           we need to translate the XdndVersion atoms array before sending it
11008
11009 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11010
11011         * XplatUIX11.cs: 
11012           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11013             number of bits for the property, not the number of bytes. The
11014             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11015             but would not crash since it specified 8 bits instead of 4 bits)
11016           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11017             defined as XID -> long in the C headers)
11018           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11019             references since those are now IntPtr to begin with
11020           - Switched all Atom.XXX 'int' casts to IntPtr casts
11021           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11022           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11023           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11024         * X11Structs.cs:
11025           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11026           - Changed atom in HoverStruct to be IntPtr
11027         * X11DnD.cs:
11028           - Removed local DllImports, switched code to use those from XplatUIX11
11029           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11030
11031 2006-02-06  Mike Kestner  <mkestner@novell.com>
11032
11033         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11034         method signatures in the import region.  There may still be some
11035         lingering struct marshaling issues, as I didn't drill down into those.
11036         Yet.
11037
11038 2006-02-06  Jackson Harper  <jackson@ximian.com>
11039
11040         * ComboBox.cs: Dont manually set the top_item, this is computed
11041         when the scrollbar position is set.
11042
11043 2006-02-06  Mike Kestner  <mkestner@novell.com>
11044
11045         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11046         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11047         usage of Atom needs to be mapped to IntPtr for example.  And there are
11048         likely other int/long issues to be addressed.
11049
11050 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11051
11052         * FileDialog.cs: One more...
11053
11054 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11055
11056         * FileDialog.cs: Next try
11057
11058 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11059
11060         * FileDialog.cs: First part of fix for #77464
11061
11062 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11063
11064         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11065           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11066           AcceptButton border drawing.
11067
11068 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11069
11070         * Form.cs: Moved positioning of form after auto scaling is applied,
11071           otherwise it would possibly use wrong form size.
11072
11073 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11074
11075         * Control.cs (RecreateHandle): No need to re-create any child
11076           controls, the child windows will get destroyed automatically by
11077           the windowing system or driver, and re-created when the handle
11078           is being accessed the first time. Fixes #77456
11079         * Form.cs: No longer setting the form to closing if the handle is 
11080           being recreated. This seems like the right thing to do, don't
11081           have a bug or testcase for this, though.
11082
11083 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11084
11085         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11086           controls to avoid unwanted side effects
11087
11088 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11089
11090         * Control.cs: 
11091           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11092             control. Fixes #77416.
11093           - DefaultSize is 0,0 for control
11094         * TextBoxBase.cs: 
11095           - DefaultSize is 100, 20
11096           - SetBoundsCore: Now enforcing the height, no matter if the provided
11097             height is more or less than the preferred one, as long as AutoSize
11098             is on
11099         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11100
11101 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11102
11103         * Control.cs:
11104           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11105             call unless both performLayout is true *and* we have a pending
11106             layout change
11107           - ResumeLayout: MS does not completely nest Suspend and Resume,
11108             they bottom out at 0, fixed our code to match that.
11109           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11110             SetBoundsCore, we were updating even when we shouldn't. This fixes
11111             swf-anchors mis-anchoring when resizing the app fast and lots.
11112           - UpdateDistances: Now only setting the left and top distance if 
11113             we have a parent and are not suspended, this is based on
11114             a suggestion by Don Edvaldson in bug #77355.
11115           - OnVisibleChanged: Fixed logic when to create the control. We may
11116             not create the control if we have no parent or if it's not visible;
11117             switched to using Visible property instead of is_visible field 
11118             since the property also considers parent states. This fixes a bug
11119             when starting Paint.Net
11120
11121 2006-02-02  Jackson Harper  <jackson@ximian.com>
11122
11123         * Form.cs: If the forms handle hasn't been created yet don't call
11124         into xplatui to make it top most, just set the topmost flag on the
11125         form in CreateParams
11126         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11127
11128 2006-02-01  Jackson Harper  <jackson@ximian.com>
11129
11130         * ScrollableControl.cs: Refactored the Recalculate method a
11131         little, this wasn't handling all the variants of bottom and right
11132         bars needed to be added and added/removed based on their
11133         counterparts being added/removed (which changes the drawable
11134         size). Also we special case client widths and heights of 0 and
11135         don't add the scrollbar for those.
11136
11137 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11138
11139         * XplatUIX11.cs: 
11140           - Added method to get AbsoluteGeometry(); currently unused, but might
11141             be used in the future, if we try again to figure out toplevel
11142             coordinates with some more crappy window managers
11143           - Added FrameExtents() method to retrieve the WM set decoration size
11144           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11145             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11146         * Hwnd.cs: 
11147           - Added whacky_wm tracking var for metacity
11148           - Added logic to have default menu height if the actual menu height
11149             has not yet been calculated (part of fix for #77426)
11150         * Form.cs: Keep track whether client size has been set and re-set 
11151           it if a menu is added/removed afterwards (Fixes #77426)
11152
11153 2006-01-31  Jackson Harper  <jackson@ximian.com>
11154
11155         * Control.cs: When a new Site is set on the component attempt to
11156         pull the AmbientProperties from it.
11157
11158 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11159
11160         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11161           in the background of the owning form. Fixes #77332
11162
11163 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11164
11165         * MimeIcon.cs: Fix for #77409
11166
11167 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11168
11169         * XplatUIX11GTK.cs: Initial import
11170
11171 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11172
11173         * FixedSizeTextBox: fixes class signature
11174
11175 2006-01-30  Jackson Harper  <jackson@ximian.com>
11176
11177         * FixedSizeTextBox.cs: New internal class that represents a
11178         textBox that will not be scaled.
11179         * TreeView.cs:
11180         * ComboBox.cs:
11181         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11182         standard TextBox.
11183                 
11184 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11185
11186         * XplatUIX11.cs: Retrieve default screen number instead of
11187           assuming 0. Attempted fix for #77318
11188
11189 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11190
11191         * XplatUIWin32.cs: 
11192           - GetWindowPos: When a window is parented by FosterParent, use 
11193             the desktop instead of FosterParent as the base to get coordinates
11194           - CreateWindow: Don't make FosterParent the parent window for Popups
11195             if we don't want a taskbar entry, Popups automatically don't get one
11196         * Hwnd.cs: Need to call remove to actually remove the key from the
11197           hash table
11198
11199 2006-01-30  Mike Kestner  <mkestner@novell.com>
11200
11201         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11202
11203 2006-01-30  Jackson Harper  <jackson@ximian.com>
11204
11205         * TreeView.cs:
11206         * TreeNode.cs: Raise events no matter how the treenode is
11207         checked. Patch by Don Edvalson.
11208
11209 2006-01-30  Jackson Harper  <jackson@ximian.com>
11210
11211         * TreeNode.cs: Signature fix.
11212
11213 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11214
11215         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11216
11217 2006-01-20  Mike Kestner  <mkestner@novell.com>
11218
11219         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11220         event forwarding when menus are active.
11221         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11222         Most of the patch is pdb's with a little rework.
11223
11224 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11225
11226         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11227           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11228           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11229         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11230         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11231           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11232           the PaintWindowDecorations method
11233         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11234         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11235         * MenuAPI.cs: Made tracker window invisible
11236         * XplatUIWin32.cs:
11237           - Removed GetMenuDC and ReleaseMenuDC methods
11238           - Implemented the client=false path for PaintEventStart and
11239             PaintEventEnd
11240
11241 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11242
11243         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11244         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11245           styles
11246         * Form.cs: 
11247           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11248             the style
11249           - CreateParams: Reworked the styles to match MS look'n'feel,
11250             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11251             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11252
11253 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11254
11255         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11256           window is not mapped, since otherwise every form that's being 
11257           created is considered minimized, which is wrong.
11258         * Form.cs: Catching the exception and returning our internal value
11259           instead
11260
11261 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11262
11263         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11264           SetWindowMinMax() to have means to tell the driver about the minimum,
11265           maximum and maximized state window sizes. (Part of the fix for #76485)
11266         * Form.cs:
11267           - Implemented tracking of minimum and maximum window size, now calling
11268             new SetWindowMinMax() driver method to tell the driver (Part of the
11269             fix for #76485)
11270           - Finished handling of WM_GETMINMAXINFO method, now setting all values
11271             (Completes fix for #76485)
11272           - Calling new SetWindowMinMax driver method when the handle for a 
11273             form is created, to make sure the driver knows about it even if
11274             the values have been set before the window was created
11275           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
11276             to avoid messing up our anchoring calculations (partial fix
11277             for #77355)
11278         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
11279         * XplatUIX11.cs:
11280           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
11281           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
11282             (and presumably other freedesktop.org compliant WMs). Left the
11283             assumption unmapped=minimized, needed for SetVisible to work.
11284           - Now setting the window state when creating windows
11285           - Fixed SetVisible to consider/set the window state when mapping
11286             a Form. We cannot set the state before it's mapped, and we cannot
11287             use Form.WindowState once it's mapped (since it would ask the
11288             driver and get 'normal'. Therefore, we grab the state before
11289             mapping, map, and then set state.
11290           - Implmemented SetWindowMinMax method; Metacity does not seem to
11291             honor the ZoomHints, though.
11292         * XplatUIWin32.cs:
11293           - Removed MINMAXINFO (moved to XplatUIStructs)
11294           - Added SetWindowMinMax stub (on Win32 the only way to set that
11295             information is in response to the WM_GETMINMAXINFO message, which
11296             is handled in Form.cs)
11297           - Added logic to SetVisible to set the proper window state when a 
11298             form is made visible (fixes #75720)
11299
11300 2006-01-26  Jackson Harper  <jackson@ximian.com>
11301
11302         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11303         same way we handle them with Invoke.
11304
11305 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11306
11307         * Form.cs:
11308           - Added tracking of window state so CreateParams can return
11309             the appropriate style
11310           - Moved setting of WS_CAPTION style in CreateParams to allow
11311             styles without caption
11312         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11313           control if the TextBox property is accessed. Fixes #77345
11314         * Control.cs:
11315           - get_Created: now uses is_disposed and is_created to determine
11316             return value (suggested by Jackson)
11317           - CreateHandle: No longer exits if the handle is being recreated
11318           - RecreateHandle: If the handle is not yet created call the 
11319             appropriate method to create either control or handle. If the
11320             control is already created CreateHandle will simply exit instead
11321             of just creating the handle
11322         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11323           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11324           is called.
11325         * XplatUIX11.cs: 
11326           - When DestroyWindow is called, instead of waiting for the 
11327             DestroyNotification from X11, we directly post it to the WndProc
11328             and immediately dispose the hwnd object.
11329             Same applies to DestroyChildWindows, and this obsoletes the
11330             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11331             child windows before our own, to avoid X11 errors.
11332           - Removed the direct sending of WM_PAINT on UpdateWindow
11333         * XplatUIWin32.cs:
11334           - Reworked DoEvents and GetMessage to allow access to internal queue
11335             even when trying non-blocking access to the queue.  Fixes #77335. 
11336             Based on a patch suggestion by Don Edvalson. The new private
11337             GetMessage can now also be used as a backend for a PeekMessage
11338             frontend version.
11339         * XplatUI.cs: Improved debug output for CreateWindow
11340
11341 2006-01-25  Jackson Harper  <jackson@ximian.com>
11342
11343         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11344
11345 2006-01-24  Jackson Harper  <jackson@ximian.com>
11346
11347         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11348         when we have a MaxDropItems lower then the selected index.
11349
11350 2006-01-24  Jackson Harper  <jackson@ximian.com>
11351
11352         * Control.cs: Don't allow selection of non visible controls, allow
11353         selection of controls without parents.
11354
11355 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11356
11357         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11358         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11359
11360 2006-01-23  Jackson Harper  <jackson@ximian.com>
11361
11362         * UpDownBase.cs: Make the textbox handle all the selection and
11363         tabbing. This fixes tabing to updown controls.
11364
11365 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11366
11367         * TextBoxBase.cs: fixes exception thown the object was null
11368
11369 2006-01-23  Jackson Harper  <jackson@ximian.com>
11370
11371         * ButtonBase.cs: Just use the base CreateParams. They set
11372         visibility and enabled correctly.
11373         * ComboBox.cs:
11374         * TrackBar.cs:
11375         * MonthCalendar.cs: Lets let the base set as much of the
11376         createparams as possible so we don't have duplicate code all over
11377         the place.
11378
11379 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11380
11381         * ThemeGtk.cs: Added TrackBar and some experimental code to
11382           get double buffering back
11383
11384 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11385
11386         * DataGrid.cs: Allows row number set internally higher than the last
11387         when creating a new row. Restores the editing functionality.
11388
11389 2006-01-20  Mike Kestner  <mkestner@novell.com>
11390
11391         * MimeIcon.cs: delay Image creation until the icons are accessed
11392         instead of creating 190 scaled images on GnomeHandler startup.
11393
11394 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11395
11396         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11397           first call base before processing the event. Fixes #77279
11398
11399 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11400
11401         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11402           that the stride for the GDI bitmap would match the stride of
11403           a DIB or a Cursor.
11404
11405 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11406
11407         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11408
11409 2006-01-19  Jackson Harper  <jackson@ximian.com>
11410
11411         * ComboBox.cs: Hookup the text controls keydown event so we get
11412         those when the text control has the focus.
11413
11414 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11415
11416         * Label.cs: Now using the base events instead of defining new ones;
11417           this allows us to just call the base properties without having to
11418           duplicate all base property logic 
11419
11420 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11421
11422         * Label.cs: A label by default is not a tabstop (Fixes one of our
11423           failing nunit tests)
11424
11425 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11426
11427         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11428         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11429
11430 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11431
11432         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11433           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11434           This fixes #77218
11435         * XplatUIWin32.cs: 
11436           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11437             constructor creates images that can't be saved. Part of the fix
11438             for #76103
11439           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11440           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11441             bug fix for handling window state in forms properly)
11442
11443 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11444
11445         * ThemeGtk.cs: Simplify ScrollBar drawing
11446
11447 2006-01-18  Jackson Harper  <jackson@ximian.com>
11448
11449         * Splitter.cs: Set the default dock style for the splitter control
11450         in the constructor.
11451
11452 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11453
11454         * ThemeGtk.cs: Corrected StateType and ShadowType for
11455           gtk_paint_box
11456
11457 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11458
11459         * Control.cs: Make use of Theme.DoubleBufferingSupported
11460         * ThemeGtk.cs:
11461           - Added drawing for flat style buttons
11462           - Added ScrollBar drawing
11463
11464 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11465
11466         * ThemeClearlooks.cs: Removed some unneeded code.
11467         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11468
11469 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11470
11471         * LinkLabel.cs: We need to update the hover drawing when
11472           leaving the control as well.
11473
11474 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11475
11476         * DataGrid.cs: Clicking on non empty areas in the columns
11477            area was giving an exception
11478
11479 2006-01-17  Jackson Harper  <jackson@ximian.com>
11480
11481         * ThemeWin32Classic.cs:
11482         * ListView.cs: Do not draw/clip the headers when the header style
11483         is None.
11484
11485 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11486
11487         * DataGrid.cs: Fixes 77260
11488         
11489 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11490
11491         * DataGrid.cs: Clicking on a column on a empty grid was giving
11492           an exception
11493
11494 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11495
11496         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11497           or any keypress will crash the grid.
11498
11499 2006-01-17  Mike Kestner  <mkestner@novell.com>
11500
11501         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11502         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11503         invisible/previously-visible items.
11504         [Fixes #76909]
11505
11506 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11507
11508         * ThemeClearlooks.cs:
11509         - Added CL_Draw_Button method; now other theme controls that are 
11510           not derived from button or do not have a button can draw buttons
11511           too
11512         - Updated ComboBox drawing
11513         - Beautified RadioButton drawing
11514         - Corrected drawing of bottom and left tabs
11515         - Beautified DateTimePicker and MonthCalendar
11516         - Added CPDrawButton and CPDrawRadioButton
11517
11518 2006-01-16  Jackson Harper  <jackson@ximian.com>
11519
11520         * ComboBox.cs: Set the initial value of the scrollbar to the
11521         current index. Reduce the numbers of refreshs and IndexOfs called.
11522
11523 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11524
11525         * FileDialog.cs: When the file listview is focused hitting the
11526           backspace key moves the fileview to the parent directory
11527
11528 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11529
11530         * Form.cs: 
11531           - Added RecreateHandle call when changing taskbar visibility to 
11532             trigger reparenting in Win32 driver (Fixes #75719)
11533           - If a window has minimize or maximize buttons, it cannot have
11534             a help button
11535         * XplatUIWin32.cs:
11536           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11537             the toplevel form with FosterParent (A toolwindow not on the
11538             taskbar) (Fixes #75719)
11539           - Made FosterParent a toolwindow
11540
11541 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11542
11543         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11544
11545 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11546
11547         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11548           is currently over that control, make sure that tooltip_window.Text
11549           gets updated
11550
11551 2006-01-13  Mike Kestner  <mkestner@novell.com>
11552
11553         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11554
11555 2006-01-13  Jackson Harper  <jackson@ximian.com>
11556
11557         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11558         value passed.  Also redraw the selected node when we recieve
11559         focus, so tabbing between trees works correctly.
11560
11561 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11562
11563         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11564           ~/.gconf/%gconf-tree.xml, so use
11565           .gconf/desktop/gnome/interface/%gconf.xml
11566
11567 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11568
11569         * TextControl.cs: Draw text in gray if control is disabled
11570
11571 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11572
11573         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11574           make sure it's always visible. Fixes #76680.
11575
11576 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11577
11578         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11579
11580 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11581
11582         * PageSetupDialog.cs: Added.
11583         * PrintDialog.cs: Attributes.
11584         * PrintPreviewControl.cs: Updates.
11585         * PrintPreviewDialog.cs: Updates.
11586         
11587 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11588
11589         * Control.cs: Undid my selection check fix, since it's not needed
11590         * TextBoxBase.cs:
11591           - Now considering the presence of hscroll/vscroll when sizing
11592             vscroll/hscroll respectively. Fixed bug #77077
11593           - Added Left/Up/Down/Right to IsInputKey list to prevent
11594             ContainerControl from stealing them. This fixes what I broke
11595             with my last checkin.
11596
11597 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11598
11599         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11600           I finally understand how the property can be set without a setter :-)
11601
11602 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11603
11604         * Application.cs:
11605           - Switched RunLoop to use static Message.Create to create a 
11606             Message object
11607           - Added PreProcessMessage call in runloop for keyboard events; this
11608             is part of the fix for #77219, I overlooked this originally in the
11609             MSDN doc for PreProcessMessage
11610         * Control.cs:
11611           - Removed call to PreProcessMessage from handling of keyboard 
11612             messages; it's supposed to be done in the message pump
11613           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11614             per MSDN documentation.
11615           - IsInputChar: All chars are input chars by default; removed the 
11616             parent calling chain, MS does not document that
11617           - PreProcessMessage: If IsInputChar is true, we want to return false
11618             to allow dispatching of the message
11619           - When selecting the next control, now also check that we're not
11620             selecting ourselves again and therefore return a false positive.
11621         * TextBoxBase.cs:
11622           - Tried to match return values for IsInputKey and ProcessDialogKey
11623             to what MS returns; moved processing of our special keys outside
11624             ProcessDialogKey since MS does not seem to return true on those.
11625           - Moved code that previously was in ProcessDialogKey into new private
11626             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11627           - Reworked handling of WM_CHAR to not have to duplicate code from
11628             Control.cs anymore, instead we simply call down to base.
11629            
11630 2006-01-12  Jackson Harper  <jackson@ximian.com>
11631
11632         * ComboBox.cs: We always need to refresh the text area when
11633         EndUpdate is called. Fixes the combobox in the file dialog.
11634         * Control.cs: Don't create the creator_thread until the controls
11635         handle is created.  Also in InvokeRequired we check if the
11636         creator_thread is null. This gives the effect of InvokeRequired
11637         returning true if the controls handle is not created yet, and
11638         matches MS.
11639
11640 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11641
11642         * XplatUI.cs:
11643           - Added StartLoop() driver method. This is used to allow drivers to
11644             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11645             loop for a particular thread
11646           - Added EndLoop() driver method. This is called once the message
11647             pump for the thread is shut down
11648           - Added SupportsTransparency method to allow the driver to indicate
11649             opacity support for windows
11650         * Form.cs:
11651           - Removed TODO attribute, completed AllowTransparency property
11652           - Added documented logic to Opacity
11653         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11654           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11655           versions of CompatibleTextRendering
11656         * X11Structs.cs: Added opacity atom to our atom enumeration
11657         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11658           of a form might be set before it's reparented by the WM, and we need
11659           the opacity value without calling up to Form)
11660         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11661           SupportsTransparency() driver methods
11662         * Application.cs: Now calling StartLoop and EndLoop driver methods
11663         * XplatUIX11.cs:
11664           - Added opacity atom registration
11665           - Added StartLoop()/EndLoop() methods. They're empty right now but
11666             will need to get implemented when we switch to a per-thread queue
11667           - Implemented SupportsTransparency() method
11668           - Implemented SetWindowTransparency() method
11669           - Added support for setting the opacity value when a window is
11670             reparented (since the opacity needs to be set on the WM frame)
11671         * XplatUIOSX.cs, XplatUIWin32.cs:
11672           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11673
11674 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11675
11676         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11677
11678 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11679
11680         * FileDialog.cs: Added ToolTip for MWFFileView
11681         * MimeIcon.cs: Rewrote GnomeHandler.
11682           - Get currently used gnome icon theme from
11683             ($HOME)/.gconf/%gconf-tree.xml
11684           - Make use of inherited icon themes
11685           - Support SVG icon themes like Tango via librsvg
11686
11687 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11688
11689         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11690         builds. 
11691         
11692         * Application.cs: Move the use_compatible_text_rendering outside
11693         the NET_2_0 define.  If we ever need to use the
11694         use_compatible_text_rendering on the individual controls they will
11695         access the variable from the common shared code paths.
11696
11697 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11698
11699         * XplatUI.cs:
11700           - Added more granular debug options
11701           - Added method to print both window text and id
11702           - Switched debug output to use new Window() debug method
11703           - Added IsEnabled() driver method
11704           - Added EnableWindow() driver method
11705         * Form.cs:
11706           - Removed end_modal; no longer needed, new loop handles termination
11707             via 'closing' variable
11708           - If form is modal, setting DialogResult will now initiate loop
11709             termination via 'closing' variable
11710           - Added support for is_enabled/WS_DISABLED to CreateParams
11711           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11712             does all the work
11713           - Removed code that's now in RunLoop from ShowDialog()
11714           - Added various documented sanity checks to ShowDialog()
11715           - Added handling of WM_DESTROY message; we set 'closing' on getting
11716             the message to indicate the message pump to terminate
11717           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11718             send by the Application.ExitThread method. (We send the message
11719             to destroy the window after all other events have been
11720             processed through the queue, instead of destroying the handle 
11721             directly)
11722           - Moved code from Close() method to WM_CLOSE handler; added logic
11723             to only send close-related events if the form is not displayed
11724             modal
11725         * Splitter.cs (..ctor): Fixed typo in resource name
11726         * Control.cs:
11727           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11728             brush now
11729           - set_Cursor: Now only setting calling into XplatUI if the handle for
11730             the control is already created; this avoids implict handle creation
11731             or crashes if it's not created
11732           - set_Enabled: Now setting the enabled state via the new driver method
11733             instead of just tracking it
11734           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11735           - CreateControl: Reordered event firing and method calls to more
11736             closely fire events in the order MS does. Now setting the
11737             enabled state in the driver when creating the control.
11738           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11739             match MS order
11740         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11741           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11742         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11743         * Hwnd.cs:
11744           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11745           - Added EnabledHwnd property to easily allow a driver to find the
11746             handle of the first enabled window in the parent chain (this is
11747             used by drivers to pass up input events of disabled windows)
11748         * XplatUIDriver.cs: Added IsEnabled() method
11749         * Application.cs:
11750           - Removed crude and obsolete exiting tracking variable
11751           - Removed internal ModalRun(); replaced by RunLoop()
11752           - Implemented private CloseForms() method to allow closing all 
11753             windows owned by a particular (or all) threads
11754           - Exit() now properly closes all windows without forcing the message
11755             pump to quit
11756           - Removed obsolete InternalExit() method
11757           - Changed Run() methods to use new RunLoop() message pump
11758           - Implemented new RunLoop() method for both modal and non-modal forms
11759         * CommonDialog.cs:
11760           - get_CreateParams: Added setting of WS_DISABLED
11761           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11762             invoked via Form.ShowDialog()
11763         * NativeWindow.cs: We don't remove the window from the collection when
11764           the handle is destroyed; there might still be messages for it in the
11765           queue (mainly the resulting WM_DESTROY); instead it will be removed
11766           when Control calls InvalidateHandle in the WM_DESTROY handler
11767         * XplatUIX11.cs:
11768           - CreateWindow: Added logic to handle the WS_DISABLED window style
11769           - EnableWindow: Implemented based on Hwnd.Enabled
11770           - GetMessage: Reset PostQuitState so the method can be called again
11771           - Implemented support for disabled windows (passing messages to the
11772             first enabled parent) in handling all input messages
11773           - Added optimizations for handling Expose events
11774           - Implemeted new driver method IsEnabled()
11775           - Now always resetting paint pending tracking vars when we start paint
11776           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11777         * XplatUIOSX.cs: Added IsEnabled method stub
11778         * XplatUIWin32.cs: Implemented new IsEnabled() method
11779
11780 2006-01-11  Jackson Harper  <jackson@ximian.com>
11781
11782         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11783         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11784         variables a little.
11785         * ColorDialog.cs: Clear out the old form before adding the new
11786         panel.  
11787
11788 2006-01-11  Jackson Harper  <jackson@ximian.com>
11789
11790         * X11Dnd.cs: Make sure to add all the text formats when adding
11791         strings to the data object.
11792         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11793         do some redrawing too.  Also change the UpdateNode to an
11794         UpdateBelow so the newly added node gets painted.
11795         
11796 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11797
11798         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11799         LinkLabel.cs, PropertyGrid.cs: Implement the
11800         UseCompatibleTextRendering property for 2.x
11801
11802         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11803
11804 2006-01-11  Jackson Harper  <jackson@ximian.com>
11805
11806         * TreeView.cs: Use the property for setting the selected node so
11807         the correct events get raised.
11808         * TreeNode.cs: Update the tree when the fore/back colours of a
11809         node are set.
11810
11811 2006-01-10  Jackson Harper  <jackson@ximian.com>
11812
11813         * TreeView.cs: Allow setting SelectedNode to null.
11814
11815 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11816
11817         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11818
11819 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11820
11821         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11822
11823 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11824
11825         * PrintDialog.cs: Added attributes and set default property values.
11826
11827 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11828
11829         * PrintControllerWithStatusDialog.cs: 
11830         Added PrintControllerWithStatusDialog.
11831
11832 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11833
11834         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11835         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11836
11837 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11838
11839         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11840
11841 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11842
11843         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11844         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11845
11846 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11847
11848         * MimeIcon.cs: Added internal class SVGUtil.
11849
11850 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11851
11852         * FileDialog.cs: Don't crash if there are two files with the
11853           same name but different locations.
11854
11855 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11856
11857         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11858         dates across multiple month grids. Used to not highlight entire 
11859         month, but does now.
11860         
11861 2006-01-06  Jackson Harper  <jackson@ximian.com>
11862
11863         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11864         message loop. Change timer intervals to numbers that seem more
11865         natural.
11866
11867 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11868
11869         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11870           object for location info since screen object is now implemented.
11871
11872 2006-01-05  Jackson Harper  <jackson@ximian.com>
11873
11874         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11875         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11876         AsyncMethodResult, this is because we ALWAYS want the
11877         ManualResetEvent to get set.
11878         * Control.cs: When disposing use an async invoke to call shutdown
11879         code, so that thigns don't block on the finalizer thread.  Also
11880         check if we even have a message loop before trying to send
11881         messages, if we don't then don't bother sending messages.
11882         - No more weak references for async methods
11883         * XplatUIDriver.cs: No more weak references for async methods.
11884
11885 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11886
11887         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11888           returns two FontFamily with the same name
11889
11890 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11891
11892         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11893           drawing disabled text. Instead using the ColorGrayText color
11894
11895 2006-01-04  Jackson Harper  <jackson@ximian.com>
11896
11897         * TreeNode.cs: redraw the node when its image index is changed.
11898
11899 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11900
11901         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11902           time I checked there are no others like it.
11903
11904 2006-01-04  Jackson Harper  <jackson@ximian.com>
11905
11906         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11907         this gives the behavoir I was looking for.
11908         * Control.cs: Special case Invoking EventHandlers, this matches MS
11909         and fixes part of bug #76326.
11910
11911 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11912
11913         * ThemeClearlooks.cs, FileDialog.cs:
11914           - Reflect the latest Theme class changes
11915           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11916             with DateTime
11917             
11918 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11919
11920         * Theme.cs: Cache UI resource images and resize them if needed
11921
11922 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11923
11924         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11925           is called. This fixes the crash in Nexxia when setting the font
11926           attributes in the chat. [However, RTF needs a look-over to make sure
11927           that all SelectionXXX methods handle the special case that selection
11928           is empty and therefore the change must be applied to all text starting
11929           at the cursor/selection start]
11930
11931 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11932
11933         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11934           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11935         * X11Keyboard.cs: Switched to new way of calling PostMessage
11936
11937 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11938
11939         * Theme.cs: Added theme interface for images to allow the theme to
11940           control what images are used for things like FileDialog, MessageBox
11941           icons, etc.
11942         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11943
11944 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11945
11946         * FileDialog.cs:
11947           - Removed some dead code
11948           - Opening a recently used file does work now
11949           - Small UI enhancements
11950           - Refactoring
11951
11952 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11953
11954         * FileDialog.cs: Forgot too add __MonoCS__
11955
11956 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11957
11958         * FileDialog.cs: We are able to read recently used files now let's
11959           go on and write them.
11960
11961 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11962
11963         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11964           button
11965         * MimeIcon.cs: Do a check for the top level media type also
11966
11967 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11968
11969         * ThemeClearlooks.cs:
11970           - Added CPDrawStringDisabled
11971           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11972             some chars if the text doesn't fit into text_rect
11973           - DrawListViewItem: If View = View.LargeIcon center the image;
11974             rewrote the drawing of ListViewItem.Text if View = 
11975             View.LargeIcon
11976
11977 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11978
11979         * MimeIcon.cs: Use default KDE icon theme if there is no
11980           "48x48" directory for the current icon theme, fixes #77114
11981         * Mime.cs: Disable not working and actually not used code. 
11982         * ThemeWin32Classic.cs:
11983           - Replace "new SolidBrush" in GetControlBackBrush and
11984             GetControlForeBrush with ResPool.GetSolidBrush
11985           - Changed DrawListViewItem from private to protected virtual
11986         * FileDialog.cs:
11987           - Added form.MaximizeBox = true
11988           - Don't throw an exception if there is a broken symbolic link
11989
11990 2005-12-23  Jackson Harper  <jackson@ximian.com>
11991
11992         * TabControl.cs: Give the panels focus, keyboard navigation is
11993         fixed so this works correctly now.
11994         - We need these key events also.
11995         * ToolBar.cs: Remove some of the poor mans double buffering.
11996         
11997 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11998
11999         * ComboBox.cs: The internal TextBox now returns the focus.
12000
12001 2005-12-23  Jackson Harper  <jackson@ximian.com>
12002
12003         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12004
12005 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12006
12007         * Control.cs: Removed debug code
12008         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12009           implicit children
12010
12011 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12012
12013         * Control.cs: When creating the control, update the Z-order after
12014           all it's children are created, too. (Fixes nexxia not showing
12015           picturebox bug)
12016
12017 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12018
12019         * Control.cs: Do not update the anchoring distances if layout is
12020           suspended, instead do it once layout is resumed
12021
12022 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12023
12024         * Control.cs: 
12025           - After many hours of debugging, for both Jackson and
12026             myself, it turns out that it helps to set the parent of a control
12027             if you want to actually see it onscreen. In the spirit of that
12028             discovery, we're now setting the parent of the control and
12029             it's children when the control's handle is created. This fix
12030             will make Lutz Roeder's Reflector run happily. 
12031           - now just creating the handle instead of the whole control when
12032             getting a graphics context for the control.
12033
12034 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12035
12036         * ScrollableControl.cs: When calculating the canvas, don't consider
12037           the scrollbar widths. Instead, predict if horizontal scrollbar
12038           will affect canvas when deciding on vertical display and vice versa.
12039
12040 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12041
12042         * RichTextBox.cs: Set default RTF font for documents that don't
12043           have a font table (Fixes #77076)
12044
12045 2005-12-22  Jackson Harper  <jackson@ximian.com>
12046
12047         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12048         clipboard. This prevents a NullRef in that case.
12049         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12050         clipboard. PRIMARY is for the currently selected text only. (We
12051         should implement PRIMARY at some point.
12052
12053 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12054
12055         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12056           a Unicode function with a structure that was defined in Ansi way.
12057           This fixes #76942.
12058
12059 2005-12-21  Jackson Harper  <jackson@ximian.com>
12060
12061         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12062         on. Because thats how it rolls. (and this avoids it using ambient
12063         colours).
12064         * ThemeWin32Classic.cs: Use the proper back color for filling.
12065         * Menu.cs: Use the system menu bar color for drawing menu
12066         bars. Using the window back color will bring ambient colours into
12067         the picture.
12068
12069 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12070
12071         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12072           Bitmaps were created and not disposed.
12073
12074 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12075
12076         * Control.cs (CreateControl): Don't do anything if the control is
12077           already created, otherwise we'd fire the OnCreated event more than
12078           once
12079
12080 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12081
12082         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12083           will always match. Instead return -1. Fixes #76464.
12084
12085 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12086
12087         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12088           neither the beginning nor the end of the line (Fixes bug #76479)
12089
12090 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12091
12092         * Control.cs:
12093           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12094             where handle is invalid
12095           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12096             instead of slower linear search
12097         * NativeWindow.cs: Don't remove the window from the hashtable until
12098           after the driver has destroyed it (since the driver might use
12099           Control.FromHandle to lookup the control object
12100         * Hwnd.cs: Added DestroyPending property to track if a window is 
12101           already destroyed as far as the driver is concerned and only hasn't
12102           yet notified the control
12103         * XplatUIX11.cs:
12104           - Activate(): Check if the window is still valid before using the 
12105             handle
12106           - Implemented DestroyChildWindow() method to mark child windows as
12107             destroyed when a window is destroyed. This prevents situations 
12108             where we might call an X method based on queued events for a
12109             window that already has been destroyed but we haven't yet pulled
12110             the destroy method from the queue.
12111           - Added a call to the new DestroyChildWindow() method to the drivers
12112             DestroyWindow code. Also now marking the destroyed window itself
12113             as pending
12114
12115 2005-12-20  Jackson Harper  <jackson@ximian.com>
12116
12117         * StatusBar.cs:
12118         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12119         anymore. Just do them when needed, also track the rects of panels
12120         so that we can optimize refreshing more in the future.
12121
12122 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12123
12124         * ColorDialog.cs: Fixed focus drawing in small color controls
12125
12126 2005-12-19  Jackson Harper  <jackson@ximian.com>
12127
12128         * InternalWindowManager.cs:
12129         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12130         moving windows works properly.
12131
12132 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12133
12134         * Control.cs: 
12135           - Removed call to InitLayout() from SetBoundsCore(); doc says
12136             it's only called when a control is added to a container
12137           - Split InitLayout logic, moved to separate UpdateDistances() method
12138             since we need to perform those calculations more often than just
12139             when adding the control to a container. (Needed to fix #77022)
12140           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12141           - Reduced the OnBindingContextChanged events count, don't send them
12142             unless the control is created, we still aren't totally matching
12143             MS, but I can't quite figure out some of their rules
12144
12145 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12146
12147         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12148           stripes
12149
12150 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12151
12152         * ThemeClearlooks.cs:
12153           - Updated ProgressBar drawing
12154           - Corrected drawing of ScrollBars and scroll buttons
12155           - Some temporary fixes for minor pixel artefacts
12156
12157 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12158
12159         * Control.cs:
12160           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12161             cause events to be sent in the same order as MS does.
12162           - Added ChangeParent() method to trigger various OnXXXChanged events
12163             that need to be fired when a parent changes (This is a reworking
12164             of the patch from r54254, with the X11 errors fixed)
12165           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12166             since on MS we get OnLayoutChanged events when calling Clear()
12167           - Changed Enabled property to consider parent state as well, if a
12168             parent is not enabled, the control will not be either
12169           - Changed Parent property to simply call Controls.Add() since that
12170             now does all the work required, this way we avoid code duplication
12171           - Threw in a few OnBindingsContextChanged calls to try and match
12172             when MS sends them. We seem to send a few too many, though.
12173           - Added call to CreateControl when adding the control to a parent.
12174             We were never calling CreateControl. Still needs some work, in
12175             some places we treat HandleCreated and ControlCreated as equal, 
12176             which is wrong
12177           - Removed obsolete commented out code from UpdateZOrder()
12178
12179 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12180
12181         * ThemeClearlooks.cs: Updated TrackBar drawing.
12182
12183 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12184
12185         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12186
12187 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12188
12189         * FileDialog.cs: Add the Help button and the open readonly
12190           checkbox only if needed
12191
12192 2005-12-16  Jackson Harper  <jackson@ximian.com>
12193
12194         * Control.cs: Make sure we have an active menu before trying to
12195         process commands on it. Prevents menu-less forms from crashing
12196         when Alt is pressed.
12197         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12198         Dieter Bremes.
12199         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12200         2.0 build.
12201
12202 2005-12-16  Jackson Harper  <jackson@ximian.com>
12203
12204         * InternalWindowManager.cs: Don't translate tool windows screen
12205         coordinates. This fixes windows 'bouncing' around when being moved.
12206
12207 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12208
12209         * TextBoxBase.cs:
12210           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12211             not quite MS compatible, MS uses that number only for single line
12212             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12213             the limit at 2GB)
12214           - Now enforcing the MaxLength limit when entering characters
12215           - Added argument to internal Paste() method to track if it's called
12216             from programatically or via keyboard, since keyboard driven pastes
12217             need to enforce max-length
12218           - Added logic to Paste to only paste as many chars as MaxLength 
12219             allows
12220         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12221         * TextControl.cs:
12222           - Added Length property to return number of characters in document
12223           - Added private CharCount property which only tracks actual chars
12224             in the document (no linefeeds) and fires event when CharCount
12225             changes
12226           - Added tracking of character count to all methods that alter it
12227           - Added LengthChanged event to allow applications to subscribe
12228             to any changes to the document
12229
12230 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12231
12232         * TextBox.cs: 
12233           - Removed local password_char field (moved to TextBoxBase)
12234           - Now setting the document's password var when password is
12235             set
12236         * TextBoxBase.cs:
12237           - Added password_char field (needed here so MultiLine can
12238             access it)
12239           - Added logic to MultiLine property setter to set the document's
12240             variable when password display is allowed
12241           - Removed debug code and made some debug code conditional
12242         * TextControl.cs:
12243           - Added RecalculatePasswordLine() method to handle special password
12244             char only lines
12245           - Added PasswordChar property, also added related tracking vars
12246           - Draw() method now uses local text var for grabbing text to draw,
12247             this var is set to line.text unless we're doing password display,
12248             then it is set to the pre-generated all-password-chars line
12249           - Added calling RecalculatePasswordLine() method for password lines
12250
12251 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12252
12253         * Hwnd.cs: 
12254           - Added Reparented property to allow tracking of Window Manager
12255             reparenting actions (which affect X/Y calculations of toplevel 
12256             windows)
12257           - Made ToString() print window handles in hex
12258         * XplatUIX11.cs:
12259           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12260             determine if X/Y needs offsetting
12261           - AddConfigureNotify(): Fixed offset calculations
12262           - Now adds ReparentNotify messages into the queue
12263           - Now processes ReparentNotify messages and causes a 
12264             WM_WINDOWPOSCHANGED message to be sent upstream if a window
12265             is reparented (as most likely it's X/Y coordinates are changed
12266             due to that)
12267
12268 2005-12-14  Jackson Harper  <jackson@ximian.com>
12269
12270         * XplatUIX11.cs: Tool windows still need to respek focus.
12271
12272 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12273
12274         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
12275           have a working release
12276
12277 2005-12-13  Jackson Harper  <jackson@ximian.com>
12278
12279         * Form.cs: Update styles after setting the border style regardless
12280         of whether or not the window is using a window manager.
12281
12282 2005-12-13  Jackson Harper  <jackson@ximian.com>
12283
12284         * Form.cs: We now hook into an internal window manager instead of just an
12285         MDI subsystem, this is so we can have properly behaving tool windows.
12286         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12287         * InternalWindowManager.cs: New internal class that acts as a
12288         window manager for tool windows and as a base for mdi windows.
12289         * MdiWindowManager.cs: New class that acts as a window manager for
12290         mdi windows.
12291
12292 2005-12-12  Jackson Harper  <jackson@ximian.com>
12293
12294         * Control.cs: Updates so we match behavoir for for implicit
12295         controls. Fixes explosions in MDI.
12296
12297 2005-12-12  Jackson Harper  <jackson@ximian.com>
12298
12299         * Control.cs: Implement Invalidate (Region).
12300
12301 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12302
12303         * Control.cs: 
12304           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12305             the same events as MS does. MS fires events for each property 
12306             except, for unknown reasons, Cursor, when the control is reparented. 
12307             I can't seem to totally match add/remove since MS also fires some 
12308             VisibleChanged events, which makes no sense. Consolidated the
12309             parenting code into a separate method so it can be called from
12310             both Add and Remove. set_Parent no longer needs any special logic
12311             as it calls the parent's add method which implicitly fires
12312             all events
12313           - Removed some obsolete code and debug output
12314           - Enabled state is inherited from parents, if this is enabled
12315
12316 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12317
12318         * Form.cs: Removed commented out code
12319
12320 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12321
12322         * Control.cs:
12323           - Added internal version of Invoke, with additional argument 
12324             indicating if we're calling it from a Dispose() handler. That
12325             way we can avoid BeginInvoke throwing an exception if we're
12326             calling for an already destroyed window.
12327           - Added a dispose argument to BeginInvokeInternal, and made the
12328             check if a valid window handle chain exists conditional on
12329             it not being a dispose call
12330           - Removed code in DestroyHandle to destroy our children. Since we
12331             now handle the WM_DESTROY message we will catch all our children
12332             being destroyed.
12333           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12334         * Form.cs:
12335           - Added a field to track the application context of the form.
12336           - No need to set closing variable as response to WM_CLOSE, instead
12337             we destroy the window. We also call PostQuitMessage if the form
12338             has an application context (which makes it the main app form,
12339             which, when closed terminates the app)
12340         * XplatUI.cs:
12341           - Dropped Exit() method, it's naming was confusing
12342           - Added PostQuitMessage() which causes GetMessage to return false
12343             once the message queue is empty
12344         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12345           PostQuitMessage()
12346         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12347           no longer a valid XplatUI method, but left it in since it's used
12348           internally. Added empty PostQuitMessage() method.
12349         * MenuAPI.cs: Replaced call to Exit() with call to
12350           PostQuitMessage, even though this is probably no longer needed.
12351         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12352         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12353         * Application.cs:
12354           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12355           - Removed old debug code that would call XplatUI for exception
12356             display, enabled standard exception handling (Still not enabled
12357             though, until NativeWindow's ExternalExceptionHandler define
12358             is removed
12359         * NativeWindow.cs:
12360           - Added internal method to allow control to update NativeWindow
12361             after a window has been destroyed
12362           - Added handling of already destroyed windows when calling i
12363             DestroyWindow
12364           - Added removal of handle from list on ReleaseHandle
12365         * XplatUIX11.cs:
12366           - Dropped GetMessageResult var and related code
12367           - Added PostQuitState to field to track if PostQuitMessage has been
12368             called
12369           - Dropped Exit() method
12370           - Added PostQuitMessage() method
12371           - GetMessage now will return false if PostQuitState is set and no
12372             more messages are in the queue.
12373           - Expose handler will no longer generate WM_PAINT messages if we are
12374             in PostQuitState since it's very likely any windows have already
12375             been destroyed, and since Hwnd won't get updated until we have
12376             processed the DestroyNotify we'd be causing X errors.
12377         
12378 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12379
12380         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12381           Thanks to Mike for pointing out the err of my ways.
12382
12383 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12384
12385         * Control.cs(PreProcessMessage): Moved menu handling back, but
12386           after all other key handling, to match MS (who handles Menu in
12387           DefWndProc)
12388         * Menu.cs (WndProc): Removed my brainfart
12389
12390 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12391
12392         * Control.cs(PreProcessMessage): Removed special menu handling 
12393         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12394
12395 2005-12-07  Mike Kestner  <mkestner@novell.com>
12396
12397         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12398         state according in tracker.
12399         * Menu.cs : promote tracker field to base class and provide a tracker
12400         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12401         has a tracker. Unparent items that are removed from the collection.
12402         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12403         * Theme*.cs: add always_show_hotkeys field to support configurability
12404         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12405         pressed.
12406
12407 2005-12-07  Jackson Harper  <jackson@ximian.com>
12408
12409         * MdiChildContext.cs: Use Control.ResetCursor.
12410         * Control.cs: ResetCursor needs to set the property so that the
12411         correct XplatUI call gets made.
12412
12413 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12414
12415         * Control.cs: More fixes to make our key events match MS. We
12416           were not setting the modifier state on KeyData, and we were
12417           not generating any events when Alt was pressed with a key
12418           since handling of WM_SYSxxx was missing for the OnKey methods.
12419
12420 2005-12-07  Jackson Harper  <jackson@ximian.com>
12421
12422         * MdiChildContext.cs: reenable the sizing code.
12423         - When the mouse leaves a window reset its cursor.
12424
12425 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12426
12427         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12428
12429 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12430
12431         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12432           widths of Fixed3D borders
12433
12434 2005-12-07  Jackson Harper  <jackson@ximian.com>
12435
12436         * MdiClient.cs: Fix warnings. Earn Mike's love.
12437
12438 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12439
12440         * ThemeClearlooks.cs:
12441           - Adjusted mouse over button color
12442           - Added first parts of CheckBox drawing
12443           - Added correct color for selected text background
12444           - Fixed ComboBox drawing
12445           - Added CPDrawBorder3D and CPDrawBorder
12446
12447 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12448
12449         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12450
12451 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12452
12453         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12454           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12455           alert users via sound. We could add an enum arg with different
12456           types of alerts in the future
12457
12458 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12459
12460         * Control.cs: Fix behaviour problems pointed out by Mike
12461
12462 2005-12-05  Mike Kestner  <mkestner@novell.com>
12463
12464         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12465         prop setters.  Calls parent.Refresh for now, but could be maybe be
12466         optimized with an internal method on StatusBar at some point.
12467         [Fixes #76513]
12468
12469 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12470
12471         * RichTextBox.cs: Implemented get_SelectionColor
12472
12473 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12474
12475         * ThemeClearlooks.cs:
12476           - Removed dead code
12477           - Draw black button border only if button is Form.AcceptButton
12478           - Draw correct button color for pressed RadioButton if the mouse 
12479             has entered the button
12480           - Updated ProgressBar drawing!
12481           - Updated CPDrawSizeGrip drawing
12482           - Updated StatusBarPanel drawing
12483
12484 2005-12-05  Mike Kestner  <mkestner@novell.com>
12485
12486         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12487         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12488
12489 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12490
12491         * ThemeClearlooks.cs: Initial check-in, activate with
12492           export MONO_THEME=clearlooks
12493         * ThemeEngine.cs: Added ThemeClearlooks
12494
12495 2005-12-03  Mike Kestner  <mkestner@novell.com>
12496
12497         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12498         [Fixes #76897]
12499
12500 2005-12-02  Jackson Harper  <jackson@ximian.com>
12501
12502         * Form.cs: If the child form has no menu the default main menu is
12503         used as the active menu.
12504
12505 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12506
12507         * ListBox.cs: Check if any items exist before trying to resolve 
12508           coordinates into items
12509
12510 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12511
12512         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12513           as the second color for the background hatch
12514
12515 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12516
12517         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12518         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12519           sure that what we pass to FormatText is always 1-based. Fixes #76885
12520
12521 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12522
12523         * NumericUpDown.cs (EndInit): When we are done initializing,
12524         reflect any updates on the UI.
12525
12526 2005-12-02  Jackson Harper  <jackson@ximian.com>
12527
12528         * ImplicitHScrollBar.cs:
12529         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12530         their container controls.
12531         * TreeView.cs: Use the new implicit scrollbars.
12532
12533 2005-12-02  Jackson Harper  <jackson@ximian.com>
12534
12535         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12536         can play with it.
12537         * TreeNodeCollection.cs: If we remove the topnode we need to
12538         update topnode to the next node in line.
12539         - When clearing nodes go through the same process as removing
12540         them, so they get depareneted and checked if they are top node.
12541
12542 2005-12-01  Jackson Harper  <jackson@ximian.com>
12543
12544         * TreeView.cs: When imagelists are used the image area is
12545         selectable as well as the text.
12546         - If there are no selected nodes select the first one.
12547         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12548         so don't do it more then we need to.
12549
12550 2005-12-01  Jackson Harper  <jackson@ximian.com>
12551
12552         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12553         that arrows can be scaled.
12554
12555 2005-12-01  Jackson Harper  <jackson@ximian.com>
12556
12557         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12558         fail. Patch by Dieter Bremes
12559
12560 2005-11-30  Jackson Harper  <jackson@ximian.com>
12561
12562         * Form.cs: Property is 2.0 only
12563         * PrintDialog.cs: Signature fix.
12564
12565 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12566
12567         * TextControl.cs: 
12568           - No longer artificially moves text 2 pixels down (now that we have
12569             borders this is no longer needed)
12570           - Added calcs for left, hanging and right indent
12571
12572 2005-11-23  Mike Kestner  <mkestner@novell.com>
12573
12574         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12575
12576 2005-11-30  Jackson Harper  <jackson@ximian.com>
12577
12578         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12579         get cloned as part of CloneMenu ().
12580         * Menu.cs: Make sure the parent of the items get set correctly
12581         when they are added.  And the owners are notified of the changes.
12582         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12583         we can change the menu being displayed/handled by the form without
12584         changing the menu assosciated with the form.
12585         - Don't let Mdi children draw/handle menus.
12586         
12587 2005-11-30  Jackson Harper  <jackson@ximian.com>
12588
12589         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12590         a MenuChanged event. Just to make the API a little more
12591         consistent.
12592         * MainMenu.cs:
12593         * MenuItem.cs: Use the new OnMenuChanged
12594         * MdiChildContext.cs: Handle menu merging.
12595         * Form.cs: Implement MergedMenu.
12596         
12597 2005-11-30  Jackson Harper  <jackson@ximian.com>
12598
12599         * Menu.cs: We were misusing Add. Add goes behind the specified
12600         index according to the docs, and does not replace the specified
12601         index. So I added an Insert method.
12602
12603 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12604
12605         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12606           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12607           is for Jackson
12608         * RichTextBox.cs: Added calls to base for DnD events
12609
12610 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12611
12612         * TextControl.cs:
12613           - Fixed drag-selection related crash; style fixes
12614           - Implemented undo class
12615             o Implemented method to capture document state for specified
12616               range in document tree
12617             o Implemented method to restore captured document state
12618             o Implemented cursor tracking
12619             o Implemented basic undo stack
12620           - Added undo cursor tracking to methods altering cursor location
12621           - Added undo tracking to selection deletion (still missing
12622             other text-altering hookups)
12623         * RichTextBox.cs:
12624           - Added SelectionLength property
12625           - Implemented CanPaste()
12626           - Implemented Paste()
12627           - Added missing protected methods
12628           - Fixed RTF->Document conversion; now uses font index 0 and color 
12629             index 0 as the default font for the parsed text
12630           - Fixed RTF<->Document font size translation
12631           - Fixed RTF generation, now properly handles cross-tag boundaries
12632             for single line selection
12633           - No longer always appends blank line to generated RTF
12634           - Removed TODOs
12635           - Added missing attributes
12636           - Hooked up undo-related methods
12637         * TextBoxBase.cs:
12638           - Implemented Copy()
12639           - Implemented Paste()
12640           - Implemented Cut()
12641           - Fixed caret mis-behaviour on backspace across line-boundaries
12642
12643 2005-11-29  Jackson Harper  <jackson@ximian.com>
12644
12645         * MdiClient.cs: Add a method for activating mdi children. Very
12646         basic right now. I imagine someday it might need more girth.
12647         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12648         children windows names are added to the menu item.
12649         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12650         mdilist. This happens regardless of whether or not there are any
12651         mdi windows to see in the list, and according to my tests happens
12652         before the items are even added. Also happens if there isn't even
12653         an mdi client to get windows from.
12654
12655 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12656
12657         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12658         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12659
12660 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12661
12662         * DataGridTableStyle.cs:
12663           - Create always the styles for the missing columns even if they are
12664             provided by the user (not default table style)
12665         * DataGrid.cs:
12666           - Fixes bug 76770
12667           - Fixes SetDataBinding (always re-attach source)
12668           - Fixes SetNewDataSource (only clear styles if they are not for 
12669             this source)
12670          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12671             and remove properly
12672
12673 2005-11-29  Jackson Harper  <jackson@ximian.com>
12674
12675         * FileDialog.cs: Implement missing bits, remove some dead
12676         code.
12677         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12678         creation of the panel so that the options set on the dialog are
12679         seen when the panel is created.
12680         * TreeView.cs: raise a click when items are clicked.
12681         
12682 2005-11-29  Jackson Harper  <jackson@ximian.com>
12683
12684         * MdiClient.cs: Pass some signature methods through to base.
12685
12686 2005-11-28  Jackson Harper  <jackson@ximian.com>
12687
12688         * ListView.cs: Raise the click event when items are clicked.
12689
12690 2005-11-28  Jackson Harper  <jackson@ximian.com>
12691
12692         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12693         a nullref.
12694
12695 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12696
12697         * ThemeNice.cs: - Removed 1 pixel bitmaps
12698           - Use SmoothingMode.AntiAlias where it makes sense
12699             (ScrollButton arrow for example)
12700           - Enhanced Button focus drawing
12701           - Fixed ComboBox drawing (no artefacts anymore, focus
12702             rectangle is back again, reduced size of ComboButton, etc.)
12703           - Fixed RadioButton focus drawing for Appearence.Button
12704           - Slight ScrollButton redesign
12705           - Some LinearGradientBrush size fixes
12706           - GroupBoxes have now rounded edges
12707           - Fixed StatusBar drawing
12708
12709 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12710
12711         * ThemeNice.cs: - Remove dead code
12712           - use correct background colors for menus, etc.
12713           - Fake pixel drawing with 1 pixel bitmaps
12714
12715 2005-11-24  Jackson Harper  <jackson@ximian.com>
12716
12717         * MdiClient.cs: Size the scrollbars when resizing the window.
12718         - Resize the maximized windows when the client is resized
12719         * Form.cs: Make the child context available
12720         
12721 2005-11-23  Jackson Harper  <jackson@ximian.com>
12722
12723         * MdiChildContext.cs: Don't size windows if they are maximized.
12724
12725 2005-11-23  Mike Kestner  <mkestner@novell.com>
12726
12727         * ContextMenu.cs: use MenuTracker.
12728         * Control.cs: remove menu handle usage.
12729         * Form.cs: remove menu handle usage.
12730         * Hwnd.cs: remove menu handle usage.
12731         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12732         motion and clicks to the new Tracker handlers.
12733         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12734         and handle usage.
12735         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12736         Killed the MENU and MENUITEM data types and associated collections
12737         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12738         MenuTracker class that exposes the leftovers from the old MenuAPI
12739         static methods. Restructured Capture handling so that only one grab is
12740         done for the entire menu hierarchy instead of handing off grabs to
12741         submenus. Tracker now has an invisible control to Capture when active.
12742         * MenuItem.cs: add sizing accessors, kill Create
12743         and handle usage.
12744         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12745         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12746         MENU(ITEM). remove menu handle usage, use Menu directly.
12747         * XplatUIDriver.cs: remove menu handle usage.
12748         * XplatUIOSX.cs: remove menu handle usage.
12749         * XplatUIWin32.cs: remove menu handle usage.
12750         * XplatUIX11.cs: remove menu handle usage.
12751
12752 2005-11-22  Jackson Harper  <jackson@ximian.com>
12753
12754         * Hwnd.cs: Don't compute the menu size for
12755         DefaultClientRectangle.
12756         - Reenable menu sizes being computed for GetClienRectangle.
12757         * Form.cs: Remove comment of trechery
12758         
12759 2005-11-22  Jackson Harper  <jackson@ximian.com>
12760
12761         * Hwnd.cs: The adjustments for the menu bar are made when it is
12762         attached to the form.
12763
12764 2005-11-19  Jackson Harper  <jackson@ximian.com>
12765
12766         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12767         (just like on windows).
12768
12769 2005-11-19  Jackson Harper  <jackson@ximian.com>
12770
12771         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12772         use real buttons anymore because they are in non client area. The
12773         one TODO here is that I need to somehow invalidate a section of
12774         the non client area.
12775
12776 2005-11-18  Jackson Harper  <jackson@ximian.com>
12777
12778         * Control.cs: Put the enum check back in now that MDI doesnt have
12779         to use this to set border styles.
12780         * Form.cs: Only set mdi child windows borders if the handle has
12781         been created.
12782         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12783         this directly on to the driver.
12784         - Get the move start position before adjusting for the titlebar
12785         height, this fixes the windows "skipping" when they are first
12786         moved.
12787
12788 2005-11-18  Jackson Harper  <jackson@ximian.com>
12789
12790         * XplatUIX11.cs: Just compute the mdi borders separately as they
12791         don't totally match up with normal form borders.
12792
12793 2005-11-18  Jackson Harper  <jackson@ximian.com>
12794
12795         * Control.cs: Set WS_ styles for borders, so that the driver does
12796         not have to retrieve the control instance to figure out what kind
12797         of borders it should have.
12798         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12799         driver can know its an mdi child easily.
12800         * XplatUIX11.cs: Get the border styles and whether the window is
12801         MDI from the Styles and ExStyles params instead of having to get a
12802         control. This prevents a chicken and egg problem.       
12803
12804 2005-11-18  Jackson Harper  <jackson@ximian.com>
12805
12806         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12807
12808 2005-11-18  Jackson Harper  <jackson@ximian.com>
12809
12810         * MdiClient.cs: Calculate when to add and remove scrollbars
12811         correctly.
12812         * MdiChildContext.cs: Adjust the y position to take the titlebar
12813         into account.
12814         - No height for FormBorderStyle.None
12815
12816 2005-11-18  Jackson Harper  <jackson@ximian.com>
12817
12818         * Control.cs: Allow non enum values to be used for
12819         InternalBorderStyle.  MDI does this to set a special border style.
12820         - New utility methods for converting points to/from client coords
12821         - Add the newly created control to the Controls collection before
12822         updating its style. This way UpdateStyle can walk the control
12823         heirarchy to find the control if needed.
12824         so I don't need to create a new Point object all the time.
12825         * Form.cs: Let MDI windows handle their border styles.
12826         - Set styles on MDI windows so the correct title style is derived.
12827         * MdiChildContext.cs: Move all the painting and window handling
12828         into the non client area.
12829         - Use correct sizing and put correct buttons on frames based on
12830         the FormBorderStyle.
12831         - Notify the mdi client about scrolling
12832         - Need to handle the buttons ourselves now, because they are all
12833         in non client areas and we can't add controls there.
12834         * MdiClient.cs: Halfway to scrolling, this implementation is
12835         somewhat broken though, we need to check to make sure other
12836         windows aren't causing scrolling before removing the bars. Also
12837         the bars need to be drawn on top, maybe I can switch implicit
12838         controls to be on top.
12839         * Hwnd.cs: caption_height and tool_caption_height are now
12840         properties of an hwnd, this way they can be set by the driver
12841         based on the type of window they are.  In X11 the window manager
12842         handles the decorations so caption_height is zero unless its an
12843         MDI window.
12844         - Add 3 pixel borders for MDI windows (0xFFFF).
12845         - Get rid of some code duplication, have DefaultClientRectanle
12846         just call GetClientRectangle.
12847         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12848         Hwnd now.
12849         - Set border styles differently for mdi windows.
12850         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12851         Hwnd now.
12852         
12853 2005-11-15  Mike Kestner  <mkestner@novell.com>
12854
12855         * Menu.cs: when adding an item to the collection, if item is already 
12856         parented, remove it from the parent.
12857
12858 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12859
12860         * X11DesktopColors.cs: Added KDE support
12861
12862 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12863
12864         * XplatUIWin32.cs: 
12865           - Clipboard methods now can translate Rtf format
12866           - No longer removes clipboard contents whenever a new format is added
12867             to allow placing multiple formats on the clipboard
12868         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12869           will place all formats contained in it onto the clipboard. Also
12870           now cleans the clipboard before placing a new object onto it
12871         * RichTextBox.cs:
12872           - Implemented set_Rtf
12873           - Implemented set_SelectedRtf
12874           - Created InsertRTFFromStream() method to allow single code base
12875             for all properties and methods that insert RTF into document
12876           - Removed debug output
12877         * TextControl.cs:
12878           - Fixed Delete(int) to fix up line numbers
12879           - Fixed ReplaceSelection to combine start and end line
12880           - Fixed serious DeleteChars bug that would leave the document tree
12881             broken
12882           - Improved DumpTree with several logic checks to detect broken
12883             document trees
12884           - Removed debug lines
12885           - Fixed Caret.WordForward/WordBack moving code, now always also 
12886             updates caret.tag (fixes crash when word-selecting across tag
12887             boundaries via keyboard)
12888           - Added Insert() method for inserting multiline text into documents
12889           - Fixed DeleteChars() calculation errors that would cause a broken
12890             tag chain with multiple tag lines
12891           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12892           - Split() no longer moves caret if split is at caret location
12893           - ReplaceSelection() now updates the cursor and re-displays it
12894           - ReplaceSelection() now uses new Insert() method to avoid code
12895             duplication
12896           - FormatText() can now handle formatting partial lines
12897         * TextBoxBase.cs:
12898           - Append now uses new TextControl.Insert() method (this avoids 
12899             duplicate code)
12900           - Implemented Ctrl-X (Cut) (
12901           - Implemented Ctrl-C (Copy)
12902           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12903             regeneration when pasting text; roundtripping Copy&Paste within
12904             edit control still fails due to some calculation bugs in GenerateRTF)
12905           - The Delete key will now remove the current selection if it is visible
12906         * TextBox.cs: Removed debug lines
12907         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12908           driver to be initialized and can't therefore be done via a static ctor)
12909
12910 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12911
12912         * TextControl.cs: Added backend code for finding char arrays and strings
12913         * TextBoxBase.cs:
12914           - Added mouse wheel scroll support
12915           - Added support for VScroll and HScroll events
12916         * RichTextBox.cs:
12917           - Implemented all seven Find() variants
12918           - Implemented GetCharFromPosition()
12919           - Implemented GetCharIndexFromPosition()
12920           - Implemented GetLineFromIndex()
12921           - Implemented GetPositionFromCharIndex();
12922           - Implemented SaveFile for PlainText and UnicodeText
12923           - Fixed set_Font, now setting a new font applies that font to
12924             the whole document
12925           - Implemented generic Document to RTF converter
12926           - Implemented SaveFile for RichText format (still missing unicode
12927             conversion for non-ansi chars)
12928           - Implemented get_Rtf
12929           - Implemented get_SelectedRtf
12930
12931 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12932
12933         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12934           to allow any captures to be released before triggering OnClick. This
12935           way a click handler may capture the mouse without interference.
12936         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12937           This way we send them even though X may not allow a grab (if the window
12938           isn't visible, for example)
12939
12940 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12941
12942         * DataGridViewRowEventArgs.cs: DataGridView implementation
12943         * DataGridViewElement.cs: DataGridView implementation
12944         * DataGridViewComboBoxCell.cs: DataGridView implementation
12945         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12946         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12947         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12948         * ImageLayout.cs: DataGridView implementation
12949         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12950         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12951         * DataGridViewSelectionMode.cs: DataGridView implementation
12952         * IDataGridViewEditingControl.cs: DataGridView implementation
12953         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12954         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12955         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12956         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12957         * DataGridViewColumnSortMode.cs: DataGridView implementation
12958         * DataGridView.cs: DataGridView implementation
12959         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12960         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12961         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12962         * Padding.cs: DataGridView implementation
12963         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12964         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12965         * DataGridViewRowEventHandler.cs: DataGridView implementation
12966         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12967         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12968         * DataGridViewButtonCell.cs: DataGridView implementation
12969         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12970         * DataGridViewEditMode.cs: DataGridView implementation
12971         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12972         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12973         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12974         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12975         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12976         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12977         * DataGridViewCellEventHandler.cs: DataGridView implementation
12978         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12979         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12980         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12981         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12982         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12983         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12984         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12985         * QuestionEventArgs.cs: DataGridView implementation
12986         * IDataGridViewEditingCell.cs: DataGridView implementation
12987         * DataGridViewTriState.cs: DataGridView implementation
12988         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12989         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12990         * DataGridViewColumnCollection.cs: DataGridView implementation
12991         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12992         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12993         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12994         * DataGridViewColumn.cs: DataGridView implementation
12995         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12996         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12997         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12998         * DataGridViewRow.cs: DataGridView implementation
12999         * DataGridViewImageCellLayout.cs: DataGridView implementation
13000         * DataGridViewImageCell.cs: DataGridView implementation
13001         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13002         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13003         * DataGridViewHeaderCell.cs: DataGridView implementation
13004         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13005         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13006         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13007         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13008         * QuestionEventHandler.cs: DataGridView implementation
13009         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13010         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13011         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13012         * DataGridViewCell.cs: DataGridView implementation
13013         * DataGridViewCellEventArgs.cs: DataGridView implementation
13014         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13015         * DataGridViewCellStyle.cs: DataGridView implementation
13016         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13017         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13018         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13019         * TextFormatFlags.cs: DataGridView implementation
13020         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13021         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13022         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13023         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13024         * DataGridViewButtonColumn.cs: DataGridView implementation
13025         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13026         * HandledMouseEventArgs.cs: DataGridView implementation
13027         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13028         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13029         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13030         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13031         * DataGridViewRowCollection.cs: DataGridView implementation
13032         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13033         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13034         * DataGridViewHitTestType.cs: DataGridView implementation
13035         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13036         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13037         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13038         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13039         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13040         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13041         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13042         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13043         * DataGridViewContentAlignment.cs: DataGridView implementation
13044         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13045         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13046         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13047         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13048         * DataGridViewPaintParts.cs: DataGridView implementation
13049         * DataGridViewCellCollection.cs: DataGridView implementation
13050         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13051         * DataGridViewImageColumn.cs: DataGridView implementation
13052         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13053         * DataGridViewElementStates.cs: DataGridView implementation
13054         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13055         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13056         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13057         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13058         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13059         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13060         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13061         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13062         * DataGridViewTextBoxCell.cs: DataGridView implementation
13063         * DataGridViewBand.cs: DataGridView implementation
13064         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13065         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13066         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13067         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13068         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13069         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13070         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13071         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13072         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13073         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13074         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13075
13076 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13077
13078         * ThemeWin32Classic.cs: 
13079           - Draw the outside focus rectangle around buttons
13080           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13081             doesn't use end caps for every dash of a line anymore. This
13082             workaround ignores the forecolor.
13083
13084 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13085
13086         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13087           endian safe.
13088
13089 2005-11-07  Jackson Harper  <jackson@ximian.com>
13090
13091         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13092
13093 2005-11-07  Jackson Harper  <jackson@ximian.com>
13094
13095         * ScrollableControl.cs: Calculate the maximum and change vars
13096         (more) correctly so that scrollbars appear as a sensible size.
13097
13098 2005-11-04  Jackson Harper  <jackson@ximian.com>
13099
13100         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13101         collection.
13102         * TreeView.cs: When the tree is sorted null out the top_node so
13103         that it is recalculated.
13104         - Use dotted lines instead of dashed lines to match MS better.
13105
13106 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13107
13108         * ListView.cs: 
13109           - Implements key search for items. Useful when browsing files with FileDialog
13110           - When changing view mode or when clear the items reset scrollbar positions
13111
13112 2005-11-04  Jackson Harper  <jackson@ximian.com>
13113
13114         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13115         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13116         as to what the method may do as there is no real way of creating a
13117         derived CurrencyManager and calling the method. 
13118
13119 2005-11-03  Jackson Harper  <jackson@ximian.com>
13120
13121         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13122         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13123         method which seems to just be used internally to refresh the tabs.
13124
13125 2005-11-03  Jackson Harper  <jackson@ximian.com>
13126
13127         * TabControl.cs: Implement the remove method. Fix some broken
13128         comments.
13129
13130 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13131
13132         * DateTimePicker.cs:
13133           - Added missing DateTimePickerAccessibleObject class
13134           - Added missing events
13135           - Added OnFontChanged method
13136         * Form.cs: Added missing attributes
13137         * TreeView.cs: Added missing attributes
13138
13139 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13140
13141         * GridItemCollection.cs: Fix signatures
13142
13143 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13144
13145         * XplatUI.cs: Updated build rev/date
13146         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13147           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13148         * Application.cs: Trigger context-specific ExitThread events
13149
13150 2005-11-03  Jackson Harper  <jackson@ximian.com>
13151
13152         * Menu.cs:
13153         * MainMenu.cs:
13154         * GridTableStylesCollection.cs:
13155         * Timer.cs:
13156         * TabPage.cs:
13157         * HelpProvider.cs:
13158         * StatusBar.cs:
13159         * MonthCalendar.cs: Signature fixes
13160
13161 2005-11-03  Jackson Harper  <jackson@ximian.com>
13162
13163         * TreeNodeCollection.cs: Remove should not be virtual.
13164         * TreeView.cs: Implement the last of the missing methods.
13165
13166 2005-11-03  Jackson Harper  <jackson@ximian.com>
13167
13168         * TreeNodeConverter.cs: Implement to get off my class-status back.
13169
13170 2005-11-03  Jackson Harper  <jackson@ximian.com>
13171
13172         * TreeView.cs: Hookup the bits for drag and drop.
13173         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13174         that nodes can be moved from tree to tree easily this just causes
13175         all sorts of problems.
13176         * TreeNodeCollection: Don't need to give treenodes an index and
13177         treeview anymore when they are added, these are computed on the
13178         fly. Also make sure to remove a node before its added.
13179
13180 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13181
13182         * TextControl.cs:
13183           - Added CaretSelection enum
13184           - Added comparison methods to Marker struct, makes selection code
13185             more readable
13186           - Added SelectionStart and SelectionEnd as 'moveable' location for
13187             the CaretDirection enum and handler
13188           - Added selection_prev variable to track optimized invalidation for
13189             word and line selection
13190           - Added SelectionVisible property (returns true if there is a valid 
13191             selection)
13192           - Switched CaretHasFocus to only display the caret if there is no
13193             visible selection
13194           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13195             using the direct character index; should be much faster
13196           - Added various conditional debug statements
13197           - Fixed invalidation calculation for selection ranges
13198           - Added ExpandSelection() method to support word and line selection
13199           - Switched SetSelectionToCaret to use new Marker compare overloads
13200           - Added central IsWordSeparator() method to determine word 
13201             separators/whitespace and FindWordSeparator() to streamline common
13202             usage of IsWordSeparator()
13203         * TextBoxBase.cs:
13204           - Removed unneeded grabbed variable, it was just mirroring
13205             Control.Capture
13206           - No longer firing OnTextChanged event when Text setter is called,
13207             since the base will fire the event for us
13208           - Added handling of Ctrl-Up/Down selection
13209           - Added handling of Shift-Cursorkey selection
13210           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13211             words
13212           - Added handling of Shift and Ctrl-Shift-Home/End selection
13213           - Removed some debug output
13214           - Added handling for single/double/tripple-click to place caret/
13215             select word/select line respectively (Fixes bug #76031)
13216           - Added support for drag expansion of word/line selection
13217         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13218           current selection
13219
13220 2005-11-02  Jackson Harper  <jackson@ximian.com>
13221
13222         * X11Dnd.cs: If the drag is going to and from a MWF window just
13223         copy the data instead of sending it out through the X Selection
13224         mechanism.
13225
13226 2005-11-02  Jackson Harper  <jackson@ximian.com>
13227
13228         * X11Dnd.cs:
13229         * XplatUIX11.cs: When in a drag we don't want motion notify
13230         messages to get passed on to the other controls. This prevents
13231         mouse move messages from showing up in the drag source.
13232
13233 2005-11-02  Jackson Harper  <jackson@ximian.com>
13234
13235         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13236         the correct button is release to end a drag.
13237         * XplatUIX11.cs: Make the button state internal so the drag system
13238         can access it.  Dragging needs to know about all button releases,
13239         not just left button.
13240
13241 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13242
13243         * Form.cs (Icon): If the icon is null, reset the icon to the
13244         default value. 
13245
13246         * Cursor.cs: When writing the AND-mask bitmap do not include the
13247         number of colors, but hardcode those to two (black and white),
13248         fixes the loading of color cursors (Paint Dot Net).
13249
13250         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13251         turn off autoscaling.
13252
13253         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13254
13255 2005-11-02  Jackson Harper  <jackson@ximian.com>
13256
13257         * X11Dnd.cs: Make sure to send a status message if the pointer
13258         enters a control that can not accept a drop, otherwise the cursor
13259         isn't updated correctly. Also tried to compress the lines of code
13260         a bit.
13261
13262 2005-11-02  Jackson Harper  <jackson@ximian.com>
13263
13264         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
13265         set actions correctly.  This isn't perfect as XDND and win32 have
13266         some differences on how you allow actions. I'll clear this up by
13267         adding a path for drag from MWF to MWF windows.
13268         * XplatUIX11.cs: Hook into the dnd system.
13269
13270 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
13271
13272         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
13273         previously shown but they are no longer need it. Very obvious when 
13274         browsing files with FileDialog.
13275
13276 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
13277
13278         * Control.cs: We always need to call OnPaintBackground. We pretty much
13279           ignore AllPaintingInWmPaint and always do the painting there, whether 
13280           it's set or not, since we always ignore the WM_ERASEBKGND message 
13281           (which we don't generate on X11). This fixes #76616.
13282         * Panel.cs: Removed unneeded background painting. This happens properly
13283           in Control.cs already
13284
13285 2005-10-31  Mike Kestner  <mkestner@novell.com>
13286
13287         * Menu.cs: Add items to collection before setting their index.
13288         * MenuItem.cs : add range checking with ArgumentException like MS.
13289         [Fixes #76510]
13290
13291 2005-10-31  Jackson Harper  <jackson@ximian.com>
13292
13293         * ListBox.cs: Invalidate if the area is visible at all not just
13294         contained in the visible rect. Fixes unselection of semi visible
13295         items.
13296
13297 2005-10-31  Jackson Harper  <jackson@ximian.com>
13298
13299         * Control.cs: Consistently name the dnd methods. Make them
13300         internal so we can override them to match some MS behavoir
13301         internally.
13302         * Win32DnD.cs: Use the new consistent names.
13303
13304 2005-10-31  Jackson Harper  <jackson@ximian.com>
13305
13306         * TreeView.cs: Don't draw the selected node when we lose focus.
13307
13308 2005-10-31  Jackson Harper  <jackson@ximian.com>
13309
13310         * X11Dnd.cs: We still need to reset the state even though a full
13311         reset isn't being done, otherwise status's still get sent all over
13312         the place.
13313
13314 2005-10-31  Jackson Harper  <jackson@ximian.com>
13315
13316         * Control.cs: Make the dnd_aware flag internal so the dnd
13317         subsystem can check it. Catch exceptions thrown in dnd handlers to
13318         match MS behavoir.
13319         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13320         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13321         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13322         flags to reduce the number of dnd enters/status's sent.
13323
13324 2005-10-31  Jackson Harper  <jackson@ximian.com>
13325
13326         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13327
13328 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13329
13330         * PictureBox.cs: Fixes 76512
13331
13332 2005-10-28  Jackson Harper  <jackson@ximian.com>
13333
13334         * X11Dnd.cs: Early implementation to support winforms being a drag
13335         source for data on X11. Also restructured the converters so they
13336         can go both ways now.
13337         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13338         
13339 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13340
13341         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13342           clipboard requests
13343
13344 2005-10-27  Jackson Harper  <jackson@ximian.com>
13345
13346         * TreeNode.cs: Implement serialization so my DnD examples will work.
13347
13348 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13349
13350         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13351           TreeView.cs: Don't dispose objects that are not owned.
13352           
13353 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13354
13355         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13356           should retrieve the current cursor and report that, but XplatUI
13357           doesn't (yet) have an interface for that (and I'm not sure I even
13358           can, on X11)
13359         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13360           until any message loop processing is done (and the WM_SETCURSOR
13361           replaces the cursor to the proper one)
13362         * XplatUIX11.cs: 
13363           - Fixed override behaviour, we can't set the cursor globally on X11, 
13364             just for our windows.
13365           - Invalidating the System.Drawing X11 display handle when we are
13366             shutting down
13367         * Control.cs: Fix to make csc happy
13368
13369 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13370
13371         * TextBoxBase.cs: 
13372           - get_Text: Add last line (without trailing newline) to returned
13373             value (Fixes 76212)
13374           - get_TextLength: Count last line in returned length
13375           - ToString: Call Text property instead of duplicating code
13376
13377 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13378
13379         * ImageList.cs: Dispose ImageAttributes objects.
13380
13381 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13382
13383         * ImageList.cs: Use attribute constructors with less arguments where
13384           possible.
13385
13386 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13387
13388         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13389           Use typeof instead of strings when assembly is referenced. Added
13390           some more comments.
13391
13392 2005-10-21  Jackson Harper  <jackson@ximian.com>
13393
13394         * ListView.cs: Raise a double click event. Also tried to somewhat
13395         fix when the selectedindexchanged event is raised. Its still
13396         broken though.
13397
13398 2005-10-21  Jackson Harper  <jackson@ximian.com>
13399
13400         * TreeView.cs: New method to invalidate the plus minus area of a
13401         node without invalidating the whole node (maybe this can be used
13402         in some more places).
13403         * TreeNodeCollection.cs: When adding to an empty node we need to
13404         invalidate its plus minus area so the little block shows up.
13405         
13406 2005-10-21  Jackson Harper  <jackson@ximian.com>
13407
13408         * TreeView.cs: Make sure that when we invalidate a node the bounds
13409         are big enough to cover the selected box and the focus
13410         rectangle. Use a different colour for the lines connecting nodes
13411         so they show up with all themes.
13412
13413 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13414
13415         * NativeWindow.cs: Don't call anything that could call into the driver,
13416           we might be on a different thread.
13417
13418 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13419
13420         * Control.cs(Dispose): Since Dispose might run on a different thread,
13421           make sure that we call methods that could call into the driver via
13422           invoke, to avoid thread issues
13423
13424 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13425
13426         * XplatUI.cs: Removed finalizer
13427         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13428           not allowing to be called on the finalizer thread.
13429
13430 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13431
13432         * ImageList.cs:
13433           - Reverted r51889 and r51891.
13434           - Added ImageListItem class that stores unmodified image items and image
13435             properties required to create list images until handle is created.
13436           - Added AddItem and moved image creation logic to AddItemInternal.
13437           - Added CreateHandle method that creates images based on unmodified items.
13438           - Added DestroyHandle that changes state to store unmodified items.
13439           - Add and AddStrip methods no more create handle.
13440           - ReduceColorDepth has no return value.
13441           - Dispose destroys handle.
13442           - Modified other methods to reflect the above changes.
13443           - Implemented key support.
13444           - Added profile 2.0 members and attributes.
13445           - Added private Reset and ShouldSerialize methods that provide the same
13446             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13447             them as they are private.
13448           - Added some more comments about implementation details.
13449
13450 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13451
13452         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13453
13454 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13455
13456         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13457
13458 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13459
13460         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13461         * DataGridColumnStyle.cs: Remove debug message
13462
13463 2005-10-20  Jackson Harper  <jackson@ximian.com>
13464
13465         * TreeView.cs: We can always get input keys regardless of whether
13466         or not editing is enabled. They are used for navigation.
13467
13468 2005-10-20  Jackson Harper  <jackson@ximian.com>
13469
13470         * TreeNode.cs: Use the viewport rect for determining if a node
13471         needs to be moved for visibility. Don't use Begin/End edit. This
13472         calls a full refresh when its done.
13473         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13474         rect property internal so the treenodes can see it. When clicking
13475         on a node we need to ensure that its visible because it might just
13476         be partly visible when clicked.
13477
13478 2005-10-20  Jackson Harper  <jackson@ximian.com>
13479
13480         * TreeNodeCollection.cs: Remove debug code.
13481
13482 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13483
13484         * Datagrid.cs: Implements column sorting in Datagrid
13485         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13486
13487 2005-10-20  Jackson Harper  <jackson@ximian.com>
13488
13489         * TreeNodeCollection.cs: Remove items properly. Update the correct
13490         area after removing them.
13491
13492 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13493
13494         * Datagrid.cs: Should not call base.OnPaintBackground
13495
13496 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13497
13498         * XplatUIX11.cs (GetMessage):
13499           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13500             window instead of client window
13501           - Now properly calculates NC_xBUTTONUP message coordinates
13502           - ScreenToMenu now properly calculates it's coordinates of whole 
13503             window, since menus are in the whole window, not in the client
13504             window
13505           - Added WholeToScreen coordinate translation method
13506
13507 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13508
13509         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13510           want to return a message, loop back to the beginning of the function
13511           and grab the next real message to process instead.
13512
13513 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13514
13515         * Splitter.cs: Properly set limits if no filler control is used
13516
13517 2005-10-19  Jackson Harper  <jackson@ximian.com>
13518
13519         * ColorDialog.cs: Don't show the help button if it is not enabled
13520         instead of disabling it (this is what MS does). Don't create the
13521         panel until the dialog is run, otherwise the vars (such as
13522         ShowHelp) are not set yet.
13523
13524 2005-10-19  Jackson Harper  <jackson@ximian.com>
13525
13526         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13527         are reduced when adding nodes.
13528         * TreeNode.cs:
13529         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13530         tree.
13531         
13532 2005-10-19  Jackson Harper  <jackson@ximian.com>
13533
13534         * FolderBrowserDialog.cs: End editing our treeview so the window
13535         actually gets refreshed.
13536
13537 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13538
13539         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13540           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13541           inside of WM_PAINT
13542
13543 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13544
13545         * MenuAPI.cs: Returns after Hidding window
13546         * XplatUIX11.cs: Added TODO found while debugging menu issues
13547
13548 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13549
13550         * XplatUIX11.cs: Do not re-map the whole window when it's size
13551           becomes non-zero unless it's supposed to be actually visible
13552
13553 2005-10-18  Jackson Harper  <jackson@ximian.com>
13554
13555         * TreeView.cs: We don't need to keep a count anymore.
13556         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13557         use the Grow method.
13558
13559 2005-10-18  Jackson Harper  <jackson@ximian.com>
13560
13561         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13562         implement it manually here.
13563
13564 2005-10-18  Jackson Harper  <jackson@ximian.com>
13565
13566         * ImageList.cs: Dont kill the list when the colour depth is
13567         changed, just change the colour depth of all the images.
13568         - Same goes for setting the image size. Just resize them all
13569         instead of killing the list softly.
13570
13571 2005-10-18  Jackson Harper  <jackson@ximian.com>
13572
13573         * Control.cs: Don't invalidate empty rectangles.
13574
13575 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13576
13577         * ListViewItem.cs:
13578           - Adds checked item to the Checked/Item lists (where empty before)
13579           - Do not add items to the Selected lists if they are already present
13580         * ListView.cs:
13581           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13582           - When deleting items make sure that we delete them for the Selected
13583           and Checked list also.
13584
13585 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13586
13587         * Label.cs: Dispose objects no longer used
13588         * ThemeWin32Classic.cs: Dispose objects no longer used
13589
13590 2005-10-18  Jackson Harper  <jackson@ximian.com>
13591
13592         * TabControl.cs: Don't refresh the whole control when the tabs are
13593         scrolled, we just need to refresh the tab area.
13594
13595 2005-10-17  Jackson Harper  <jackson@ximian.com>
13596
13597         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13598         after handle when we need it.
13599
13600 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13601
13602         * Control.cs: When the parent size changes, recalculate anchor 
13603           positions. Partial fix for #76462
13604
13605 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13606
13607         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13608           drawn. Fixes #76462
13609
13610 2005-10-17  Jackson Harper  <jackson@ximian.com>
13611
13612         * MonthCalendar.cs: Don't create the numeric up down until our
13613         handle is created. Otherwise our handle is created in the
13614         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13615         yet.
13616
13617 2005-10-17  Jackson Harper  <jackson@ximian.com>
13618
13619         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13620         correctly.
13621
13622 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13623         * TreeNode.cs : small logical fix (was using local var instead of field)
13624         
13625 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13626
13627         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13628
13629 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13630
13631         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13632
13633 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13634
13635         * Control.cs: 
13636           - Re-implemented anchoring code. My first version was really broken.
13637             This fixes bug #76033. Unlike the previous implementation we will
13638             no longer have round errors since all numbers are calculated from
13639             scratch every time. Removed various anchor-related obsolete vars.
13640           - InitLayout no longer causes layout event firing and layout to be 
13641             performed
13642
13643 2005-10-16  Jackson Harper  <jackson@ximian.com>
13644
13645         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13646         which was broken).
13647
13648 2005-10-16  Jackson Harper  <jackson@ximian.com>
13649
13650         * TabControl.cs: Remove debug code.
13651
13652 2005-10-16  Jackson Harper  <jackson@ximian.com>
13653
13654         * XEventQueue.cs: Increase the default queue size (very simple
13655         apps needed to grow the queue).
13656         * Hwnd.cs: No finalizer so we don't need to suppress
13657         finalization. Compute the invalid area manually so a new rectangle
13658         does not newto be created.
13659         * ScrollableControl.cs: Don't set any params (otherwise visibility
13660         isn't set correctly).
13661         * MdiChildContext.cs: New constructor takes the mdi parent so it
13662         doesn't have to be computed and avoids a crash on windows. Draw
13663         the window icon properly, and allow the text to be seen.
13664         * Form.cs: Use new MdiChildContext constructor. Make sure the
13665         child context isn't null in wndproc.
13666         * TabControl.cs: Don't set focus, this is muddling keyboard
13667         behavoir. Expand the tab rows when a window size increase will
13668         allow extra tabs to be seen. Don't allow tabs smaller than the
13669         width of a window to be scrolled out of view.
13670         * TreeNode.cs:
13671         * TreeView.cs: Use measure string to calculate a nodes width, the
13672         width is cached and only updated when the text or the font is
13673         changed. Don't check for expand/collapse clicks on the first level
13674         nodes if root lines are disabled.
13675         
13676 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13677
13678         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13679
13680 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13681
13682         * DataGridBoolColumn.cs: fixes warning
13683
13684 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13685
13686         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13687         to match more to match more precisely the MS Net behavior
13688
13689 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13690
13691         * Hwnd.cs: Added field to track if window is mapped
13692         * XplatUIX11.cs: 
13693           - Unmap windows if they become 0-size, re-map when 
13694             they are >0 again; fixes #76035
13695           - Re-set our error handler after initializing X11Desktop
13696             to override any error handlers Gtk or whatever was called
13697             may have set.
13698
13699 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13700
13701         * CheckedListBox.cs: Removed unused vars
13702         * ListView.cs: Fixed signatures
13703         * RichTextBox.cs: Removed unused vars
13704         * TextBoxBase.cs: Removed unused vars
13705         * XplatUIWin32.cs: Removed unused vars
13706         * XplatUIX11.cs: Removed unused vars
13707         * XplatUI.cs: Updated version and date to latest published
13708
13709 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13710
13711         * Cursor.cs: Added private .ctor to work around a bug in
13712           resourceset (Thanks to Geoff Norton for the help on this)
13713         * SplitterEventArgs.cs: Made fields accessible so we don't
13714           waste boatloads of objects and can reuse the same one
13715           in Splitter
13716         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13717           any captions and borders when generating screen coordinates
13718         * Splitter.cs: Reimplemented control, now fully complete, uses
13719           rubberband drawing, supports and obeys all properties, has
13720           proper cursors
13721
13722 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13723
13724         * Form.cs (Form): Setup default values for autoscale and
13725         autoscale_base_size;  Make these instance variables, not static
13726         variables. 
13727
13728         (OnLoad): on the first load, adjust the size of the form.
13729
13730 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13731
13732         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13733           width argument to DrawReversibleRectangle()
13734         * XplatUIWin32.cs, XplatUIX11.cs: 
13735           - Implemented width for DrawReversibleRectangle()
13736           - Added logic to DrawReversibleRectangle that recognizes a zero
13737             width or height and only draws a line in that situation
13738         
13739 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13740
13741         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13742         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13743         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13744           method (it uses our FosterParent window to get a graphics context)
13745
13746 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13747
13748         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13749           and SetWindowBackground methods
13750         * Control.cs:
13751           - Setting proper ControlStyles
13752           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13753             EraseWindowBackground, instead we draw the window background
13754             ourselves in PaintControlBackground. This behaviour is
13755             required to match MS, where, when OnPaintBackground is not
13756             called, the background is not drawn.
13757           - Removed unneeded Refresh() in set_Text
13758         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13759         * XplatUIX11.cs:
13760           - Created DeriveStyles method to translate from CreateParams to
13761             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13762             matches FormBorderStyle enum values)
13763           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13764             style calculations into single DeriveStyles method
13765           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13766             from redrawing the whole window on any resize or expose.
13767           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13768             all styles were applied to our whole/client window appropriately
13769           - Removed EraseWindowBackground() and SetWindowBackground() methods
13770           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13771             no longer clear/redraw the background through X
13772           - Removed handling of erase_pending bit, we have no use for it (or
13773             so it seems)
13774         * XplatUIOSX.cs:
13775           - Removed generation and handling of WM_ERASEBKGND message
13776           - Removed EraseWindowBackground() and SetWindowBackground() methods
13777           - Removed handling of hwnd.ErasePending flag
13778         * XplatUIWin32.cs:
13779           - Removed EraseWindowBackground() and SetWindowBackground() methods
13780           - We no longer call EraseWindowBackground on PaintEventStart, we 
13781             ignore the fErase flag, erasing is handled in Control in the
13782             background handler
13783         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13784           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13785           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13786           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13787           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13788           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13789           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13790
13791 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13792
13793         * PropertyGrids.cs: Get sub properties
13794         * PropertyGridView.cs: Fix drawing code
13795
13796 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13797
13798         * ListBox.cs: Fixes 76383
13799
13800 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13801
13802         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13803         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13804         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13805
13806
13807 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13808
13809         * ComboBox.cs: Fixes border drawing
13810
13811 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13812
13813         * MimeIcon.cs: Ignore errors if the file can not be read.
13814
13815 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13816
13817         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13818          - Fixed border calculations
13819          - Fixed horizontal scrolling in single column listboxes
13820          - Fixed drawing issues
13821
13822 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13823
13824         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13825           FormBorderStyle enum
13826         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13827           code to determine FormBorderStyles from CreateParams
13828         * Form.cs:
13829           - Fixed bug where we'd set the wrong window styles if we were
13830             not creating an MDI window
13831           - Added call to XplatUI.SetBorderStyle when form borders are set
13832         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13833         * Hwnd.cs:
13834           - Removed obsolete edge style
13835           - Switched from BorderStyle to FormBorderStyle
13836         
13837 2005-10-10  Jackson Harper  <jackson@ximian.com>
13838
13839         * Form.cs: Use the property to get the window handle instead of
13840         accessing it directly. Prevents a null reference exception.
13841
13842 2005-10-10  Jackson Harper  <jackson@ximian.com>
13843
13844         * TreeView.cs: Don't adjust the rect given to DrawString now that
13845         our libgdiplus draws correctly.
13846
13847 2005-10-08  Jackson Harper  <jackson@ximian.com>
13848
13849         * TreeView.cs: Don't try to find the clicked on node if there are
13850         no nodes in the tree.
13851
13852 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13853
13854         * RichTextBox.cs:
13855
13856           restore
13857
13858 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13859
13860         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13861           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13862           ErrorProvider.cs:
13863           Use ResPool for brushes and dispose System.Drawing objects that
13864           are not used anymore.
13865
13866 2005-10-07  Jackson Harper  <jackson@ximian.com>
13867
13868         * MdiChildContext.cs: Use the new borders instead of drawing them
13869         ourselves.
13870
13871 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13872
13873         * Calling UpdateBounds after changing the window's BorderStyle 
13874         since the style can change the ClientSize
13875
13876 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13877
13878         * Control.cs: Made PaintControlBackground virtual
13879         * Panel.cs: Overriding PaintControlBackground instead of using paint
13880           event; paint event method was interfering with 'real' users of the
13881           event.
13882
13883 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13884
13885         * ThemeWin32Classic.cs: remove border drawing since it is handled
13886         by the base control class now and was causing double border drawing.
13887
13888 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13889
13890         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13891           but it does seem to match MS behaviour. This fixes bug #75324
13892
13893 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13894
13895         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13896           somewhat hackish looking
13897
13898 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13899
13900         * TextBoxBase.cs:
13901           - We now accept Enter even if AcceptEnter is false, if the containing
13902             form does not have an AcceptButton configured (fixes bug #76355)
13903           - Calculations are now fixed to no longer use Width/Height, but
13904             ClientSize.Width/Height, since we now support borders (this was
13905             a result of fixing borders and therefore bug #76166)
13906           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13907             true (fixes bug #76354)
13908         
13909 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13910
13911         * Control.cs: 
13912           - Defaulting BorderStyle and setting it in XplatUI when our window 
13913             is created
13914           - Added enum check to InternalBorderStyle setter
13915         * XplatUIX11.cs: 
13916           - Added drawing of window borders
13917           - Now properly calculates WM decorations offset for toplevel 
13918             windows (fixes bug #74763)
13919         * XplatUIWin32.cs: 
13920           - Implemented BorderStyles for windows (we're letting win32 draw 
13921             the border for us)
13922           - Fixed the signature for SetWindowLong
13923         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13924           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13925           setting borders
13926         * UpDownBase.cs: Remove drawing of borders, this is handled by
13927           the driver, outside the client area
13928         * ListView.cs: Removed bogus border calculations. The control should
13929           be oblivious to borders, since those are not part of the client
13930           area. 
13931         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13932         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13933           drawing code
13934
13935 2005-10-06  Jackson Harper  <jackson@ximian.com>
13936
13937         * MdiChildContext.cs: Clear out the old virtual position remove
13938         all the unneeded calls to CreateGraphics.
13939
13940 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13941
13942         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13943
13944 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13945
13946         * Form.cs: 
13947           - Added loading and setting of our new default icon
13948           - Only set icon if window is already created
13949
13950 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13951
13952         * Label.cs:
13953           - Do not explicitly set the foreground and background colors, to
13954             allow inheriting from parents (fixes #76302)
13955           - Use Control's InternalBorderStyle property to deal with borders
13956
13957 2005-10-06  Jackson Harper  <jackson@ximian.com>
13958
13959         * MdiChildContext.cs: Use the new xplatui function to draw a
13960         reversible rect.
13961
13962 2005-10-06  Jackson Harper  <jackson@ximian.com>
13963
13964         * Form.cs: Add the parent before creating the child context cause
13965         we need the parent when setting up the child.
13966
13967 2005-10-06  Jackson Harper  <jackson@ximian.com>
13968
13969         * FolderBrowserDialog.cs: redo the tree population code so a
13970         second thread isn't used. Should be a lot faster and more stable
13971         now.
13972
13973 2005-10-05  Jackson Harper  <jackson@ximian.com>
13974
13975         * TreeView.cs: There are no expand/collapse boxes if the node has
13976         no children.
13977
13978 2005-10-05  Jackson Harper  <jackson@ximian.com>
13979
13980         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13981
13982 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13983
13984         * FileDialog.cs: Fix InitialDirectory
13985
13986 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13987
13988         * ComboBox.cs:
13989                 - Fixes changing between styles
13990                 - Fixes simple mode
13991                 - Fixes last item crashing when navigating with keyboard
13992
13993 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13994
13995         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13996
13997 2005-10-05  Jackson Harper  <jackson@ximian.com>
13998
13999         * TreeView.cs: If updating the root node do a full refresh.
14000         * TreeNode.cs: The root node should be expanded by default. Also
14001         added a utility prop to tell if we are the root node.
14002         * TreeNodeCollection.cs: Only refresh if the node we are being
14003         added to is expanded. Also added a comment on a potential
14004         optimization.
14005         
14006 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14007
14008         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14009           in dispose method. Fixes #76330
14010
14011 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14012
14013         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14014
14015                 - Implements vertical and horizontal scrolling using XplatUI
14016                 - Fixes keyboard navagation
14017                 - Fixes EnsureVisible
14018                 - Drawing fixes
14019                 - Handles and draws focus properly
14020
14021
14022 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14023
14024         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14025           Create handle. NET_2_0: Destroy handle when value is null.
14026
14027 2005-10-03  Jackson Harper  <jackson@ximian.com>
14028
14029         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14030         revert and a new patch to prevent the thumb from refreshing so
14031         much.
14032
14033 2005-10-02  Jackson Harper  <jackson@ximian.com>
14034
14035         * ScrollBar.cs: Don't update position if it hasn't actually
14036         changed. This occurs when you hold down the increment/decrement
14037         buttons and the thumb gets to the max/min.
14038
14039 2005-10-01  Jackson Harper  <jackson@ximian.com>
14040
14041         * Form.cs:
14042         * MdiChildContext.cs:
14043         * MdiClient.cs: Implement ActiveMdiChild in Form.
14044
14045 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14046
14047         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14048
14049 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14050
14051         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14052           be found
14053
14054 2005-09-30  Jackson Harper  <jackson@ximian.com>
14055
14056         * ListBox.cs: Don't do a full refresh unless some data has
14057         actually changed.
14058
14059 2005-09-30  Jackson Harper  <jackson@ximian.com>
14060
14061         * TreeView.cs: Make sure that the checkboxes size is factored in
14062         even when not visible.
14063
14064 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14065
14066         * FileDialog.cs: Fix Jordi's build break
14067
14068 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14069
14070         * FileDialog.cs: 
14071                 - Use standard the Windows colours for the combobox as espected
14072                 - Dispose objects that use resouces when no longer need them
14073
14074 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14075
14076         * X11DesktopColors.cs: Initial incomplete implementation
14077         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14078
14079 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14080
14081         * Theme.cs: 
14082           - Switched Theme color names to match the names defined in 
14083             System.Drawing.KnownColors. Life's hard enough, no need to make 
14084             it harder.
14085           - Added setters to all theme color properties so themes can set
14086             their color schemes. The setters also propagate the color changes
14087             to System.Drawing.KnownColors via reflection
14088         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14089           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14090           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14091           use the new, more logical theme color names
14092         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14093           post-NT colors
14094         * ThemeWin32Classic.cs:
14095           - Removed code to set the old classic Windows colors. Instead it
14096             now relies on the colors returned by System.Drawing.KnownColors
14097             which will be either modern static colors (Unix) or colors
14098             read from the user's configuration (Win32)
14099           - Updated to use the new, more logical theme color names
14100           - Switched DataGrid drawing code to use only Theme colors instead of
14101             a mix of System.Drawing.KnownColors and Theme colors
14102           - DrawFrameControl(): Removed code that fills the button area, the
14103             fill would overwrite any previous fill done by a control. This
14104             fixes bug #75338 
14105           - Added DrawReversibleRectangle() stub
14106         * ScrollableControl.cs: Set visible state to false when scrollbars
14107           are removed (pdn fix)
14108         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14109           DrawReversibleRectangle() method to allow drawing primitive 
14110           'rubber bands'
14111         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14112
14113 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14114
14115         * ImageList.cs: Add(Icon): Create handle.
14116
14117 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14118
14119         * ListView.cs:
14120         * ThemeWin32Classic.cs:
14121                 - Fixes detail mode
14122                 - Sets clippings
14123                 - Issues with drawing
14124
14125 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14126
14127         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14128           source has to be the ImageList.
14129
14130 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14131
14132         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14133
14134 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14135
14136         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14137
14138 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14139
14140         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14141
14142 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14143         * GridItem.cs: Fixed TODOs
14144         * GridItemCollection.cs: Added ICollection interface
14145
14146 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14147
14148         * ImageList.cs: Resize icons when needed.
14149
14150 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14151
14152         * ListViewItem.cs
14153                 - Fixes GetBounds and returns on screen rects
14154         * ListView.cs:
14155                 - Fixes vertical and horzintal scrolling of items
14156         * ThemeWin32Classic.cs:
14157                 - Fixes drawing
14158                 
14159 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14160
14161         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14162
14163 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14164
14165         * ImageList.cs: Added comments about handle creation. Moved Handle,
14166           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14167           Handle is created in Add methods.
14168
14169 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14170          
14171         * DataGridDrawingLogic.cs: 
14172                 - Takes rows into account on Colum calculations
14173                 - Returns the column when clickig
14174         * DataGrid.cs:
14175                 - Fixes default HitTestInfo values
14176                 - Fixes HitTestInfo.ToString
14177                 - Fixes ResetBackColor          
14178         
14179 2005-09-28  Jackson Harper  <jackson@ximian.com>
14180
14181         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14182         sizing or cursor changes). Also added some temp code to draw the
14183         titlebars text (Makes dev a little easier).
14184
14185 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14186
14187         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14188
14189 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14190          
14191         * ListBox.cs: Fixes bug 76253
14192
14193 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14194
14195         * ImageList.cs: Added comments about the current implementation. Added
14196           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14197           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14198           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14199           with Bitmap.LockBits for better performance. Revised the whole file to
14200           match MS.NET behaviour and provide better performance. Non-public
14201           interface members are calling public members even when they throw
14202           NotSupportedException for better maintainability. Moved ColorDepth,
14203           ImageSize, ImageStream and TransparentColor implementations to
14204           ImageCollection for better performance as these properties are not used
14205           by ImageList.
14206         * ImageListStreamer.cs: Added a new internal constructor that takes an
14207           ImageList.ImageCollection and serializes Images based on
14208           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14209           match ImageList property name.
14210
14211 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14212
14213         * ListBox.cs: Fixes IndexFromPoint for last item
14214
14215 2005-09-27  Jackson Harper  <jackson@ximian.com>
14216
14217         * Form.cs: Set the position of new mdi children correctly.
14218
14219 2005-09-27  Jackson Harper  <jackson@ximian.com>
14220
14221         * MdiClient.cs: New mdi children need to be added to the back of
14222         the controls collection so the zorder is set correctly. Also add a
14223         count of all the child windows that have been created.
14224
14225 2005-09-27  Jackson Harper  <jackson@ximian.com>
14226
14227         * Form.cs (CreateParams): Setup MDI forms correctly.
14228
14229 2005-09-27  Jackson Harper  <jackson@ximian.com>
14230
14231         * MdiChildContext.cs:
14232         * MonthCalendar.cs:
14233         * UpDownBase.cs:
14234         * ListBox.cs:
14235         * ListView.cs:
14236         * TextBoxBase.cs:
14237         * TreeView.cs:
14238         * ScrollableControl.cs:
14239         * ComboBox.cs: Add implicit controls using the new implict control
14240         functionality in ControlCollection. Also try to block multiple
14241         control add in a suspend/resume layout to save some cycles.
14242         
14243 2005-09-27  Jackson Harper  <jackson@ximian.com>
14244
14245         * Control.cs: Add functionality to the controls collection to add
14246         'implicit controls' these are controls that are created by the
14247         containing control but should not be exposed to the user. Such as
14248         scrollbars in the treeview.
14249         * Form.cs: The list var of the ControlsCollection is no longer
14250         available because of the potential of implicit controls getting
14251         ignored by someone accessing the list directly.
14252
14253 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14254
14255         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14256           loose it's parent. (Fixed bug introduced in r49103 when we added
14257           setting the child parent to null on Remove)
14258
14259 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14260
14261         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14262         * Splitter.cs: Added missing attributes for BorderStyle property.
14263         * TextBoxBase.cs: Marked Calculate* methods internal.
14264         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
14265         MS.NET.
14266
14267 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
14268          
14269         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
14270
14271 2005-09-25  Jackson Harper  <jackson@ximian.com>
14272
14273         * TreeView.cs: Update the node bounds correctly regardless of
14274         whether the node is visible.
14275
14276 2005-09-25  Jackson Harper  <jackson@ximian.com>
14277
14278         * ImageList.cs: Don't dispose the image after it is added to the
14279         image list. Only reformat images that need to be resized.
14280
14281 2005-09-25  Jackson Harper  <jackson@ximian.com>
14282
14283         * ImageList.cs: Don't set the format when changing the image.
14284
14285 2005-09-25  Jackson Harper  <jackson@ximian.com>
14286
14287         * TreeView.cs: We can't just assume the node has a font. Use the
14288         treeviews font if no node font is available.
14289
14290 2005-09-25  Jackson Harper  <jackson@ximian.com>
14291
14292         * TreeView.cs: Allow the scrollbars to be reset with negative
14293         values.
14294         - Don't add scrollbars to negative sized windows.
14295
14296 2005-09-23  Jackson Harper  <jackson@ximian.com>
14297
14298         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14299         old Mono.Posix. Also remove some stray code that shouldn't have
14300         been committed.
14301
14302 2005-09-23  Jackson Harper  <jackson@ximian.com>
14303
14304         * TreeView.cs: Attempt at proper sizing of the horizontal
14305         scrollbar. Also don't resize the scrollbars unless they are
14306         visible.
14307
14308 2005-09-23  Jackson Harper  <jackson@ximian.com>
14309
14310         * TreeView.cs: We don't need to expand the invalid area when the
14311         selection changes, as this is all drawn in the node's bounding
14312         box. The area needs to be expanded (previous typo was contracting
14313         it) when the focus rect moves.
14314
14315 2005-09-23  Jackson Harper  <jackson@ximian.com>
14316
14317         * TreeView.cs: Display the selection box under the correct
14318         circumstances. We were rendering white text with no selection box
14319         before.
14320
14321 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14322
14323         * TextControl.cs(Split): Now updates selection start/end if it points 
14324           into a line that's being split. Fixes a FIXME and bug #75258
14325
14326 2005-09-23  Jackson Harper  <jackson@ximian.com>
14327
14328         * Binding.cs:
14329         * ListControl.cs: Don't use the path when retrieving binding
14330         managers from the binding context. My bat sense tells me that the
14331         path is only used on insertion.
14332
14333 2005-09-22  Jackson Harper  <jackson@ximian.com>
14334
14335         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14336
14337 2005-09-22  Jackson Harper  <jackson@ximian.com>
14338
14339         * Splitter.cs: There are special cursors used for splitting.
14340         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14341
14342 2005-09-22  Jackson Harper  <jackson@ximian.com>
14343
14344         * Splitter.cs: Change the cursor appropriately when the splitter
14345         is moused over, so the user actually knows there is a splitter
14346         there.
14347
14348 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14349
14350        * Label.cs : Fix ToString method to give same output as MS.NET
14351
14352 2005-09-22  Jackson Harper  <jackson@ximian.com>
14353
14354         * TreeView.cs: Create the scrollbars when the handle is created
14355         and add them right away, just make them invisble. Also account for
14356         the window being shrunk vertically to the point that the vert
14357         scrollbar needs to be added.
14358         - Remove some 0.5 adjustments to get around anti aliasing issues.
14359         
14360 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14361          
14362         * MainMenu.cs: Fixes default value
14363         * MenuItem.cs: Fixes default value
14364
14365 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14366
14367         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14368
14369 2005-09-21  Jackson Harper  <jackson@ximian.com>
14370
14371         * Control.cs: Don't try to set the border style on the window if
14372         it hasn't been created. When the window is created the border
14373         style will be used.
14374
14375 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14376
14377         * Control.cs (Update): Don't call XplatUI if we don't have a
14378           window handle yet
14379
14380 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14381
14382         * ContainerControl.cs: Instead of throwing an exception, print
14383           a one-time warning about Validate not being implemented
14384         * XplatUIWin32.cs: Removed debug output
14385
14386 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14387
14388         * Control.cs: Only set XplatUI background if we expect the windowing
14389           system to handle the background. This stops controls that draw their
14390           own background from flickering
14391
14392         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14393           creation. This allows, amongst other things, using MWF X11 windows 
14394           with OpenGL.
14395
14396 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14397
14398         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14399           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14400           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14401           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14402           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14403           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14404           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14405           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14406           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14407           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14408           GridColumnStylesCollection.cs, 
14409           IDataGridColumnStyleEditingNotificationService.cs,
14410           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14411           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14412           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14413           TreeNodeCollection.cs, AmbientProperties.cs, 
14414           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14415           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14416           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14417           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14418           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14419           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14420           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14421           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14422           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14423           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14424           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14425           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14426           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14427           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14428           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14429           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14430           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14431           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14432           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14433           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14434           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14435           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14436           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14437           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14438           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14439           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14440           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14441           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14442           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14443           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14444           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14445           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14446           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14447           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14448           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14449           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14450           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14451
14452 2005-09-21  Jackson Harper  <jackson@ximian.com>
14453
14454         * TreeNode.cs: Call Before/After Expand not Collapse when
14455         expanding.
14456
14457 2005-09-20  Jackson Harper  <jackson@ximian.com>
14458         
14459         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14460
14461 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14462          
14463         * ListViewItem.cs:
14464                 - Fixes bug 76120
14465                 - Fixes proper storing of subitems
14466                 - Fixes not updated items
14467
14468 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14469
14470         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14471           things if our window handle isn't created yet. Also disabled 
14472           debug for TextBoxBase
14473
14474 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14475
14476         * MenuAPI.cs: Remove filtering of events to allow menu usage
14477
14478 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14479
14480         * Cursor.cs: Allow null to be passed to Cursor.Current.
14481
14482 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14483
14484         * ThemeWin32Classic.cs:
14485           - Change some private methods/fields to protected virtual so that 
14486             they can be accessed and overriden in derived classes
14487           - First refactoring of some methods. Derived themes now don't 
14488             need to duplicate the complete code from ThemeWin32Classic
14489         * ThemeNice.cs:
14490           - Added nice StatusBar
14491           - Derive from ThemeWin32Classic and not Theme
14492           - Removed duplicate ThemeWin32Classic code
14493
14494 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14495
14496         * Control.cs (ControlCollection.Add): If the value null is passed
14497         the control is ignored. 
14498
14499         Optimize this loop.
14500
14501 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14502
14503         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14504           PostQuitMessage state.
14505         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14506
14507 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14508
14509         * Application.cs: Our constructor will never get called, move 
14510           initialization to fields; fixes bug #75933
14511
14512 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14513
14514         * FileDialog.cs :
14515                 - Allow files to be selected properly using file name
14516                 combo box.
14517                 - Add ability to change diretory (absolute / relative)
14518                 using file name combo box.
14519
14520 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14521          
14522         * ListBox.cs: 
14523                 - Fixes Multicolumn listboxes item wrong calculations
14524                 - Allows to click when only one item is in the listbox
14525                 - Fixes crash when no items using keyboard navigation
14526
14527 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14528
14529         * ComboBox.cs: Reverted almost everything from the latest patch which
14530           broke ComboBox
14531
14532 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14533         
14534         * ToolTip.cs:
14535                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14536         * ComboBox.cs:
14537                 - When DropDownStyle is Simple, it does not show scrollbar 
14538                 to the last item of the list.
14539                 - When DropDownStyle is Simple, it crashed when the list was 
14540                 scrolled down with the down cursor key.
14541                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14542                 selected item was not shown.
14543                 - The position of the selected item was not preserved when 
14544                 the next dropdown happened.
14545         * ThemeWin32Classic.cs:
14546                 - Items were wrapped at the right end.
14547         * CheckedListBox.cs:
14548                 - Fixed Add method
14549         * ListBox.cs:
14550                 - Items should be fully shown.
14551                 - When resizing and vertical scrollbar disappeared, the item 
14552                 of index 0 should be on the top of the list.
14553                 - GetItemRectangle should consider the size of ver. scrollbar
14554         * StatusBar.cs:
14555                 - SizingGrip area should not be allocated when it is not 
14556                 displayed.
14557                 - Now it reflects MinWidth of the containing panel and 
14558                 fixed a crash that happens when its width becomes so small.
14559
14560 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14561
14562         * CheckedListBox.cs: Fixes bug 76028
14563         * ListBox.cs: Fixes bug 76028
14564
14565 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14566
14567         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14568         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14569
14570 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14571
14572         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14573
14574 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14575
14576         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14577
14578 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14579
14580         * IRootGridEntry.cs: Added
14581         * PropertyGridCommands.cs: Added
14582         * PropertiesTab.cs: Added missing methods and property
14583         * PropertyGridView.cs: Made class internal
14584         * PropertyGridTextBox.cs: Made class internal
14585
14586 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14587
14588         * MimeIcon.cs: Try to check some other environment variables
14589           if "DESKTOP_SESSION" returns "default"
14590
14591 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14592
14593         * ThemeNice.cs: Corrected background colors (e.g. menus)
14594         * ColorDialog.cs: Use correct background colors for controls
14595
14596 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14597
14598         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14599
14600 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14601
14602         * RichTextBox.cs: Added initial implementation
14603         * lang.cs: Removed. Was accidentally checked in long time ago
14604         * TODO: Removed. Contents were obsolete
14605
14606 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14607                                                                                 
14608         * PropertiesTab.cs : Added
14609
14610 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14611                                                                                 
14612         * PropertyGrid.cs : Update
14613         * PropertyGridView.cs : Update
14614         * System.Windows.Forms.resx : Added images and strings
14615
14616 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14617
14618         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14619  
14620 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14621
14622         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14623           a busy loop right after the Ungrab the X11 display is otherwise 
14624           blocked
14625
14626 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14627
14628         * ThemeWin32Classic.cs: Optimise the use of clipping
14629
14630 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14631
14632         * DataGrid.cs: fixes recursion bug
14633
14634 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14635
14636         * ThemeNice.cs: 
14637           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14638           - Cleanup
14639
14640 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14641
14642         * ThemeNice.cs: Draw nice ProgressBars
14643
14644 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14645
14646         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14647
14648         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14649         bug finder.
14650
14651 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14652
14653         * ThemeNice.cs:
14654           - Added nicer menu drawing
14655           - Updated DrawTab
14656           - some refactoring
14657
14658 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14659
14660         * CreateParams.cs (ToString): Made output match MS
14661         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14662             handle is already created (to avoid forcing window creation)
14663         * XplatUIX11.cs: Set window text to caption after creating window,
14664           in case Text was set before window was created
14665         * Form.cs: Use this.Text instead of a static string as caption
14666
14667 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14668
14669         * NotifyIcon.cs: Don't set the window to visible; this screws
14670           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14671           OnPaint without a bitmap)
14672         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14673           happen very often anyway; we could add the check to the WM_PAINT 
14674           event generation code
14675
14676 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14677
14678         * NotifyIcon.cs: Fill the icon area with a background color, to 
14679           avoid 'residue' when transparent icons are drawn
14680         * XplatUIX11.cs:
14681           - Handle whole_window == client_window when destroying windows
14682           - SystrayAdd(): Set client_window to whole_window value to
14683             get mouse and other events passed to NotifyIcon
14684
14685 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14686
14687         * Form.cs: Set proper default for Opacity property
14688         * NotifyIcon.cs:
14689           - ShowSystray(): Don't bother creating telling the OS
14690             about the systray item if no icon is provided
14691           - Now handles WM_NCPAINT message to deal with whole/client window
14692             split
14693           - Create window as visible to not get caught by Expose optimization
14694         * Hwnd.cs: Removed debug message
14695         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14696           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14697             PaintEventStart/End to use new client argument
14698         * TextBoxBase.cs:
14699           - Commented out debug messages
14700           - Switched PaintEventStart/End to use new client argument
14701         * XplatUI.cs: Added client window bool to PaintEventStart()/
14702           PaintEventEnd() calls, to support drawing in non-client areas
14703         * XplatUIDriver.cs: 
14704           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14705             calls, to support drawing in non-client areas
14706           - Added conditional compile to allow using MWF BeginInvoke 
14707             on MS runtime
14708         * XplatUIX11.cs:
14709           - Added some conditional debug output
14710           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14711             whole/client window split
14712           - Implemented handling of client argument to PaintEventStart()/End()
14713         * Control.cs:
14714           - Throw exception if BeginInvoke() is called and the window handle
14715             or one of the window's parent handles is not created
14716           - Added conditional compile to allow using MWF BeginInvoke on
14717             MS runtime
14718           - get_Parent(): Only sets parent if handle is created. This avoids
14719             forcing window handle creation when parent is set.
14720           - Now fires Layout and Parent changed events in proper order
14721           - Switched to use Handle instead of window.Handle for Z-Order setting,
14722             the get_Parent() patch above causes us to possibly get null for 'window'
14723           - Implemented handling of client argument to PaintEventStart()/End()
14724           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14725             default handling)
14726           - Now sends a Refresh() to all child windows when Refresh() is called
14727
14728 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14729
14730         * Form.cs: Added (non-functional) Opacity property
14731         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14732
14733 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14734         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14735           use export MONO_THEME=nice to activate it.
14736           Currently supported controls:
14737           - Button
14738           - ComboBox
14739           - ScrollBar
14740           - TabControl (TabAlignment.Top only, other will follow)
14741         * ThemeEngine.cs: Add theme nice
14742         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14743           if enabled
14744
14745 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14746
14747         * Splitter.cs: Resize docked control and its neighbor.
14748
14749 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14750         -- Making Windows with Menus layout correctly --
14751         * Form.cs : The first leg of the fix
14752                 Menu setter - adjust Client Size as needed to make space for the menu
14753                 SetClientSizeCore - doesn't call base version to be able to pass the 
14754                         menu handle to XplatUI.CalculateWindowRect
14755         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14756         * XplatUIX11.cs: The critical second leg of the fix
14757                 GetWindowPos needs to use a recalculated client_rect
14758                 so that resizing the window doesn't break layout of child controls. 
14759                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14760                 Lots of \t\n killed
14761
14762 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14763
14764         * Label.cs: Now properly recalculates width and height on Font and Text
14765           changes if AutoSize is set
14766
14767 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14768         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14769
14770 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14771
14772         * ImageList.cs: Makes ToString method compatible with MS
14773
14774 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14775
14776         * MenuAPI.cs: fixes bug 75716
14777
14778 2005-08-11 Umadevi S <sumadevi@novell.com>
14779         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14780
14781 2005-08-11 Umadevi S <sumadevi@novell.com>
14782         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14783
14784 2005-08-10  Umadevi S <sumadevi@novell.com>
14785         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14786
14787 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14788
14789         * Menu.cs: fixes bug 75700
14790         * MenuAPI.cs: fixes navigation issues
14791
14792 2005-08-09  Umadevi S <sumadevi@novell.com>
14793         * CheckedListBox.cs - simple fix for GetItemChecked.
14794
14795 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14796
14797         * ComboBox.cs: Serveral fixes
14798         * ListBox.cs: Serveral fixes
14799
14800 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14801
14802         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14803         * ListBox.cs: Fixes FindString methods
14804
14805 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14806
14807         * DataGrid.cs: fixes bugs exposed by new tests
14808
14809 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14810
14811         * Mime.cs: Compile Mono assembly references only if compiling
14812           with Mono (Allows to build with VS.Net again)
14813
14814 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14815
14816         * Control.cs (PaintControlBackground): Draw background image
14817         corrrectly.
14818         (CheckForIllegalCrossThreadCalls): Stubbed.
14819         
14820         * Form.cs (OnCreateControl): Center when should be centered.
14821         
14822         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14823
14824 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14825
14826         * Binding.cs: Binding to properties should be case unsensitive
14827
14828 2005-07-18 vlindos@nucleusys.com
14829
14830         * DataGrid.cs: fixes setmember order
14831
14832 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14833
14834         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14835         * FileDialog.cs: FileDialog is now resizable and uses the new
14836           MimeIconEngine
14837
14838 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14839
14840         * DataGridTextBoxColumn.cs: default value
14841         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14842         * GridTableStylesCollection.cs: fixes checking MappingName
14843         * DataGridDrawingLogic.cs: fixes drawing logic issues
14844         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14845         * DataGrid.cs: fixes    
14846
14847 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14848
14849         * MimeGenerated.cs: Use case sensitive comparer for
14850           NameValueCollections
14851
14852 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14853
14854         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14855         * ThemeWin32Classic.cs: bug fixes, code refactoring
14856         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14857         * DataGrid.cs: bug fixes, code refactoring
14858         * DataGridTextBox.cs: bug fixes, code refactoring
14859         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14860         * Theme.cs:  bug fixes, code refactoring
14861
14862 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14863
14864         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14865           and other text box usage
14866
14867 2005-07-01  Jackson Harper  <jackson@ximian.com>
14868
14869         * TabControl.cs: Make sure the bottom of the tab covers the pages
14870         border.
14871
14872 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14873
14874         * Form.cs (ShowDialog): Assign owner of the dialog
14875         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14876           might have been moved to a tag with different height
14877
14878 2005-06-30  Jackson Harper  <jackson@ximian.com>
14879
14880         * Form.cs: Don't create an infinite loop when setting focus
14881         * MenuItem.cs: Don't dirty the parents if we don't have any
14882
14883 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14884
14885         * LibSupport.cs: Rename
14886
14887 2005-06-29  Peter Bartok  <pbartok@novell.com>
14888
14889         * TextBoxBase.cs: Re-align caret after deleting a character
14890         * TextControl.cs:
14891           - DeleteChars(): Ensure that tag covers the provided position
14892           - StreamLine(): Drop reference for dropped tag
14893
14894 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14895
14896         * TextControl.cs: 
14897           - Selections now work properly, anchoring at the initial location
14898             and properly extending in either direction (SetSelectionToCaret(),
14899             SetSelectionStart() and SetSelectionEnd())
14900           - No longer redraws the whole control on selection change, now
14901             calculates delta between previous and new selection and only
14902             invalidates/redraws that area
14903           - Fixed FindPos() math off-by-one errors
14904           - Changed DeleteChars() to verify the provided tag covers the
14905             provided position, selections may have a tag that doesn't cover
14906             the position if the selection is at a tag border
14907           - Fixed off-by-one errors in DeleteChars()
14908           - Added missing streamlining check in DeleteChars() to remove
14909             zero-length tags
14910           - Implemented Invalidate() method, now properly calculates exposures
14911             between two given lines/positions
14912           - Implemented SetSelection()
14913           - Obsoleted and removed FixupSelection()
14914           - Improved RecalculateDocument() logic, removing code duplication
14915
14916 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14917
14918         * LibSupport.cs: changes to match different input/output arguments.
14919
14920 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14921
14922         * LibSupport.cs: added libsupport.so init routine.
14923
14924 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14925         
14926         * ControlBindingsCollection.cs
14927                 - Throws an exception on null datasource when adding
14928                 - Checks for duplicated bindings when adding
14929
14930 2005-06-28  Jackson Harper  <jackson@ximian.com>
14931
14932         * TreeView.cs (OnKeyDown): Support left and right properly
14933         (navigates as well as expanding and collapsing.
14934         - Add support for Multiply, this expands all the selected nodes
14935         children.
14936         - Fix some tabbing.
14937
14938 2005-06-28  Jackson Harper  <jackson@ximian.com>
14939
14940         * TreeView.cs: Implement keyboard navigation, currently supports,
14941         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14942         support for toggling checkboxes with the space bar.
14943
14944 2005-06-28  Jackson Harper  <jackson@ximian.com>
14945
14946         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14947         tree.
14948
14949 2005-06-28  Jackson Harper  <jackson@ximian.com>
14950
14951         * TreeView.cs: Add missing event.
14952
14953 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14954
14955         * TextControl.cs:
14956           - Made line ending size configurable (now allows for counting 
14957             lineendings as \n or \r\n)
14958           - Added margin to viewport to keep caret visible on right side
14959           - Fixed translation routines for line/pos to documentpos to consider
14960             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14961           - Fixed some line-endings to be unix style
14962           - Fixed Document.FormatText to perform it's calculations 1-based
14963           - Added descriptions for a few methods that might otherwise get 
14964             used wrong
14965           - Added NOTE section with some basic conventions to remember at 
14966             the top of the file
14967           - Major fixup for RichTextBox selection drawing:
14968             * Fixed crashes when multiple tags on a single line were selected
14969             * fixed selection box drawing not overlaying text
14970             * fixed bogus offset calculation for tags not starting at index 1
14971             * Switched behaviour from using multiple Substrings of a 
14972               StringBuilder.ToString() to using multiple 
14973               StringBuilder.ToString(start, length) statements, hoping this is
14974               faster (kept original version commented out in the code, in case
14975               original version was faster)
14976         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14977           alignment != Left
14978         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14979           call it as well
14980
14981 2005-06-27  Jackson Harper  <jackson@ximian.com>
14982
14983         * TabControl.cs: Move to the left and right with the arrow
14984         keys. These keys don't cycle beyond first and last like
14985         tab. Refresh all the tabs when scrolling them to the left or
14986         right.
14987
14988 2005-06-27  Jackson Harper  <jackson@ximian.com>
14989
14990         * TabControl.cs:
14991           - ToString: Added method
14992           - CreateParams: Remove TODO and comment
14993           - OnKeyDown: Cycle through bounds properly.
14994           - SelectedIndex: Scroll to the right or left if we need to
14995           display the newly selected tab.
14996
14997 2005-06-23  Jackson Harper  <jackson@ximian.com>
14998
14999         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15000         set.
15001
15002 2005-06-23  Jackson Harper  <jackson@ximian.com>
15003
15004         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15005         CTRL-SHIFT-TAB, and HOME, END are there any others?
15006
15007 2005-06-23  Jackson Harper  <jackson@ximian.com>
15008
15009         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15010
15011 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15012         
15013         * DataGridTextBoxColumn.cs: fixes and enhancements
15014         * ThemeWin32Classic.cs: fixes and enhancements
15015         * DataGridBoolColumn.cs:  fixes and enhancements
15016         * DataGridDrawingLogic.cs:  fixes and enhancements
15017         * CurrencyManager.cs: fixes and enhancements
15018         * DataGrid.cs: fixes and enhancements
15019         * DataGridColumnStyle.cs:  fixes and enhancements
15020
15021 2005-06-22  Jackson Harper  <jackson@ximian.com>
15022
15023         * TabControl.cs: Add some missing methods that just call into the
15024         base. Make the TabPageCollection's IList interface behave in the
15025         same manner as the MS implementation.
15026
15027 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15028
15029         * TextControl.cs: Added sanity check
15030         * TextBoxBase.cs: 
15031           - Fixed wrapping behaviour, don't set wrap on single line controls
15032             (this fixes the breakage of colordialog introduced in an earlier
15033              checkin)
15034           - Added rudimentary support for autoscrolling right-aligned controls
15035             (still needs fixing, also, center alignment scroll is missing)
15036
15037 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15038         
15039         * ScrollBar.cs: Fixes thumbpos on Maximum values
15040
15041 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15042         
15043         * PropertyGridView.cs: Pass context information to UITypeEditors 
15044
15045 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15046
15047         * TextBoxBase.cs:
15048           - Now calling PositionCaret with absolute space coordinates
15049           - Enabled vertical scrolling
15050           - Better tracking of scrollbar changes, tied into WidthChange
15051             event
15052           - Improved cursor tracking
15053           - Removed debug output
15054         * TextControl.cs:
15055           - PositionCaret coordinates are now works in absolute space, not 
15056             the canvas
15057           - Improved tracking of document size
15058           - Added events for width and height changes
15059
15060 2005-06-21  Peter Bartok  <pbartok@novell.com>
15061
15062         * Form.cs: Set focus to active control when form is activated
15063         * TextControl.cs: 
15064           - Added word-wrap functionality to RecalculateLine() 
15065           - Added some short function descriptions for VS.Net to aid in
15066             writing dependent controls
15067           - Added Caret property, returning the current coords of the caret
15068           - Added ViewPortWidth and ViewPortHeight properties
15069           - Added Wrap property
15070           - Added CaretMoved event
15071           - Removed some old debug code
15072           - Split() can now create soft splits
15073           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15074           - Added method to format existing text
15075           - Fixed size/alignment calculations to use viewport
15076           - RecalculateDocument now can handle changing line-numbers while
15077             calculating lines
15078
15079         * TextBox.cs:
15080           - Added some wrap logic, we don't wrap if alignment is not left
15081           - Added casts for scrollbar var, base class switched types to
15082             also support RichTextBoxA
15083           - Implemented handling of scrollbar visibility flags
15084
15085         * TextBoxBase.cs:
15086           - Switched scrollbars type to RichTextBoxScrollBars to support
15087             RichTextBox
15088           - Added tracking of canvas width/height
15089           - Switched scrollbars to be not selectable (to keep focus on text)
15090           - Added central CalculateDocument() method to handle all redraw
15091             requirements
15092           - Added ReadOnly support
15093           - Added WordWrap support
15094           - Fixed handling of Enter key (we now treat it as a DialogKey)
15095           - Fixed caret positioning when h or v scroll is not zero
15096           - Fixed placing/generation of vertical scrollbar
15097           - Added CalculateScrollBars() method to allow updating scrollbar
15098             limits and visibility
15099           - Fixed handling of horizontal scroll
15100           - Added handling of vertical scroll
15101           - Implemented auto-'jump' when caret moves to close to a left or
15102             right border and there is text to be scrolled into view (currently
15103             there's the potential for a stack overflow, until a bug in
15104             scrollbar is fixed)
15105
15106 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15107         
15108         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15109
15110 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15111
15112         * Mime.cs:
15113         - added inodes.
15114         - return application/x-zerosize for files with size zero
15115           (if no extension pattern matches).
15116         - check matches collection for strings too.
15117         - return only the first mime type if the name value
15118           collection has more than one mime type.
15119
15120 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15121         
15122         * PropertyGrid.cs: Cleaned up some TODOs
15123         * PropertyGridView.cs: Added support for UITypeEditors
15124
15125 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15126         
15127         * DataGrid.cs: clears cached value
15128
15129 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15130
15131         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15132         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15133         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15134         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15135         
15136 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15137
15138         * ThemeWin32Classic.cs: fixes colour
15139
15140 2005-06-15  Peter Bartok  <pbartok@novell.com>
15141
15142         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15143         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15144         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15145         * Control.cs: Added some MWFCategory and MWFDescription attributes
15146         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15147
15148 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15149
15150         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15151         usage
15152
15153 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15154
15155         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15156         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15157         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15158         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15159         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15160         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15161
15162 2005-06-13  Jackson Harper  <jackson@ximian.com>
15163
15164         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15165         isn't printed when the user enables dropping. (X11 does accept
15166         drops).
15167         
15168 2005-06-13  Jackson Harper  <jackson@ximian.com>
15169
15170         * TreeView.cs: Remove some TODOS.
15171
15172 2005-06-13  Jackson Harper  <jackson@ximian.com>
15173
15174         * Form.cs: Hook into the mdi framework.
15175         * MdiClient.cs: Use the base control collections add method so
15176         parents get setup correctly. Set the default back colour and dock
15177         style.
15178         * MdiChildContext.cs: New class, this bad actor handles an
15179         instance of an MDI window. Right now there is only basic
15180         support. You can drag, close, and resize windows. Minimize and
15181         Maximize are partially implemented.
15182
15183 2005-06-13  Jackson Harper  <jackson@ximian.com>
15184
15185         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15186         freaky when both vals are negative. NOTE: There are probably other
15187         places in XplatUIX11 that this needs to be done.
15188
15189 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15190
15191         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15192         * DataGridColumnStyle.cs: fixes signature
15193
15194 2005-06-12  Jackson Harper  <jackson@ximian.com>
15195
15196         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15197         windows.
15198
15199 2005-06-11  Jackson Harper  <jackson@ximian.com>
15200
15201         * StatusBarPanel.cs: Signature cleanups. Implement
15202         BeginInit/EndInit.
15203
15204 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15205
15206         * DataGridTextBoxColumn.cs: Honors aligment
15207         * GridColumnStylesCollection.cs: Contains is case unsensitive
15208         * GridTableStylesCollection.cs: several fixes
15209         * DataGridTableStyle.cs: default column creation
15210         * DataGridDrawingLogic.cs: fixes
15211         * CurrencyManager.cs: ListName property
15212         * DataGrid.cs: multiple styles support
15213         * DataGridColumnStyle.cs: fixes
15214         
15215
15216 2005-06-10  Peter Bartok  <pbartok@novell.com>
15217
15218         * Control.cs(Select): Moved SetFocus call to avoid potential
15219           loops if controls change the active control when getting focus
15220         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15221           the up/down buttons
15222
15223 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15224
15225         * ImageListConverter.cs: Implemented
15226
15227 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15228
15229         * MonthCalendar.cs: Wired in NumericUpDown control for year
15230
15231 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15232
15233         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15234           DoubleClick events, since they are not meant to be fired.
15235
15236 2005-06-09  Peter Bartok  <pbartok@novell.com>
15237
15238         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15239           Jonathan's standalone controls into MWF, implemented missing
15240           events, attributes and methods; added xxxAccessible classes
15241         * AccessibleObject.cs: Made fields internal so other classes
15242           can change them if needed
15243
15244 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15245
15246         * UpDownBase.cs: Complete implementation
15247         * NumericUpDown.cs: Complete implementation
15248         * DomainUpDown.cs: Complete implementation
15249
15250 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15251
15252         * DataGridTextBoxColumn.cs: drawing fixes
15253         * DataGridCell.cs: fixes ToString method to match MSNet
15254         * DataGridTableStyle.cs: fixes
15255         * DataGridBoolColumn.cs: fixes, drawing
15256         * DataGridDrawingLogic.cs: fixes, new methods
15257         * DataGridTextBox.cs: Keyboard and fixes
15258         * DataGrid.cs:
15259                 - Keyboard navigation
15260                 - Scrolling fixes
15261                 - Row selection (single, multiple, deletion, etc)
15262                 - Lots of fixes
15263         
15264 2005-06-07  Jackson Harper  <jackson@ximian.com>
15265
15266         * ThemeWin32Classic.cs: Clear the background area when drawing
15267         buttons.
15268
15269 2005-06-06  Peter Bartok  <pbartok@novell.com>
15270
15271         * ImageListStreamer.cs: Fixed signature for GetData
15272         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
15273         * ComboBox.cs:
15274           - Added missing ChildAccessibleObject class
15275           - Added missing OnXXXFocus overrides, switched to using those
15276             instead of the event handler
15277         * Control.cs:
15278           - Added Parent property for ControlAccessibleObject
15279           - Fixed signatures
15280           - Fixed attributes
15281           - Added ResetBindings()
15282         * ListBindingConverter.cs: Implemented some methods
15283         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
15284         * ImageList.cs: Implemented basic handle scheme, removed TODOs
15285         * ContainerControl.cs: Fixed signature, now subscribing to the
15286           ControlRemoved event instead of overriding the handler, LAMESPEC
15287         * CurrencyManager.cs: Added missing attribute
15288         * MonthCalendar.cs: Added missing properties
15289
15290 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15291
15292         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15293         
15294 2005-06-06  Gaurav Vaish and Ankit Jain
15295
15296         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15297         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15298         
15299 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15300
15301         * Control.cs: fixes CreateParams Width / Height.
15302
15303 2005-06-05  Peter Bartok  <pbartok@novell.com>
15304
15305         * Win32DnD.cs: Removed compilation warnings
15306
15307 2005-06-05  Peter Bartok  <pbartok@novell.com>
15308
15309         * Control.cs (CreateParams): Since we don't know if one of the
15310           properties we use is overridden, lets make sure if we fail accessing
15311           we continue with a backup plan
15312
15313 2005-06-05  Peter Bartok  <pbartok@novell.com>
15314
15315         * Win32DnD.cs:
15316           - Removed debug output
15317           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15318             struct
15319           - Plugged resource leak
15320         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15321           MS size
15322
15323 2005-06-05  Peter Bartok  <pbartok@novell.com>
15324
15325         * XplatUIWin32.cs: Removed DnD code
15326         * Win32DnD.cs: Implemented drop source and drop target functionality
15327
15328 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15329
15330         * UpDownBase.cs: remove duplicate addition of event, enable some code
15331         that was commented out.
15332         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15333         Validate input when a key is pressed. It works fine now for every
15334         combination of Hexadecimal. Only missing some drawing love when sharing
15335         space with other controls.
15336
15337 2005-06-04  Peter Bartok  <pbartok@novell.com>
15338
15339         * Control.cs:
15340           - We need to pass a window for DragDrop, so enable callback events
15341           - Added DnD callback events when being a DragSource
15342         * XplatUI.cs (StartDrag): Added window handle argument
15343         * XplatUIDriver.cs (StartDrag): Added window handle argument
15344         * QueryContinueDragEventArgs: Made fields internally accessible so
15345           drivers can set them
15346         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15347           can set them
15348
15349 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15350
15351         * DataGridTextBoxColumn.cs: column text editing
15352         * DataGridTableStyle.cs: Respect columns styles created by the user
15353         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15354         * DataGridBoolColumn.cs: bool column editing
15355         * DataGrid.cs: fixes to scrolling, properties, etc
15356         * DataGridTextBox.cs: handle keyboard
15357         * DataGridColumnStyle.cs: fixes
15358
15359 2005-06-02  Jackson Harper  <jackson@ximian.com>
15360
15361         * ImageListStreamer.cs: Somewhat broken implementation of
15362         GetObjectData. The RLE needs some work to match MS properly.
15363
15364 2005-06-02  Jackson Harper  <jackson@ximian.com>
15365
15366         * X11Dnd.cs: Attempting to keep at least one file in MWF
15367         monostyled.
15368
15369 2005-06-02  Peter Bartok  <pbartok@novell.com>
15370
15371         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15372           that way
15373
15374 2005-06-02  Peter Bartok  <pbartok@novell.com>
15375
15376         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15377         * XplatUI.cs: Added DoDragDrop() method
15378         * XplatUIDriver.cs: Added DoDragDrop() method
15379
15380 2005-06-02  Jackson Harper  <jackson@ximian.com>
15381
15382         * Splitter.cs: Implement BorderStyle.
15383
15384 2005-06-02  Jackson Harper  <jackson@ximian.com>
15385
15386         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15387         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15388         X11 using XDND.
15389
15390 2005-06-02  Peter Bartok  <pbartok@novell.com>
15391
15392         * DataObject.cs:
15393           - Added Data setter
15394           - Fixed broken insertion code for SetData, now also
15395             overwrites any existing entry of the same format name
15396         * Hwnd.cs: Added list of pointers that automatically gets
15397           freed when the window is disposed
15398         * XplatUI.cs: Call driver initialization method when loading
15399           a driver
15400         * Control.cs:
15401           - OnDragLeave takes EventArgs, not DragEventArgs
15402           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15403             supported
15404           - Forces style update when drop state changes
15405         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15406           not perfect since we cannot (yet) call the IDataObject.GetData()
15407           method, we keep getting 0x80004005 error, dunno why)
15408
15409 2005-06-02  Peter Bartok  <pbartok@novell.com>
15410
15411         * DragEventArgs.cs: Make fields internal so we can cache the
15412           object and re-set the fields from XplatUI
15413
15414 2005-06-02  Jackson Harper  <jackson@ximian.com>
15415
15416         * Control.cs: Add some internal methods so the DnD subsystem can
15417         raise DnD events. Also call into the driver when AllowDrop is set.
15418         * XplatUI.cs:
15419         * XplatUIDriver.cs: New method for setting whether or not a window
15420         is allowed to accept drag and drop messages.
15421                 
15422 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15423         
15424         * ScrollBar.cs: Make sure that values sent in Scroll events
15425         are always between Maximum and Minimum.
15426
15427 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15428
15429         * Menu.cs: Call MenuChanged when menuitem visibility has been
15430         changed.
15431         * MenuItem.cs: Rebuild menu when item is (not) visible.
15432         * MainMenu.cs: MainMenu has special MenuChanged.
15433         * Theme.cs: Caption and FrameBorderSize are not fixed.
15434         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15435         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15436         * XplatUIX11.cs,
15437         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15438         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15439
15440 2005-05-30  Jackson Harper  <jackson@ximian.com>
15441
15442         * DataFormat.cs: We can't statically initialize this stuff because
15443         it calls into the xplatui and could create a loop. So we lazy init
15444         it.
15445
15446 2005-05-28  Jackson Harper  <jackson@ximian.com>
15447
15448         * Control.cs: Proper implementation of Product(Name/Version).
15449
15450 2005-05-27  Jackson Harper  <jackson@ximian.com>
15451
15452         * DataObject.cs: Dont crash if no data is found.
15453
15454 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15455         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15456                 as per status page, guessing it should be set to true
15457
15458 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15459
15460         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15461         * DataGridTableStyle.cs: set proper formatting text, def header text
15462         * ThemeWin32Classic.cs: new themable paramaters
15463         * DataGridBoolColumn.cs: paint check box, get data, fixes
15464         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15465         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15466         * DataGridColumnStyle.cs: fixes
15467         * Theme.cs: new themable paramaters
15468                 
15469 2005-05-26  Peter Bartok  <pbartok@novell.com>
15470
15471         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15472
15473 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15474         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15475
15476 2005-05-24  Peter Bartok  <pbartok@novell.com>
15477
15478         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15479           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15480           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15481           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15482           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15483           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15484           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15485           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15486           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15487           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15488           missing attributes, etc
15489         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15490
15491 2005-05-24  Peter Bartok  <pbartok@novell.com>
15492
15493         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15494           when user tries to get help
15495         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15496           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15497           to suppress warnings
15498         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15499           avoid unreachable code warning
15500
15501 2005-05-20  Peter Bartok  <pbartok@novell.com>
15502
15503         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15504
15505 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15506
15507         * DataGridTextBoxColumn.cs: Basic painting methods
15508         * DataGridTableStyle.cs: Set table style in the column
15509         * ThemeWin32Classic.cs: Use Theme for colors
15510         * DataGridDrawingLogic.cs: Implement more drawing
15511         * DataGrid.cs: drawing, theming, enhacements, fixes
15512         * DataGridColumnStyle.cs: fixes, drawing
15513         * Theme.cs: theming for Datagrid
15514
15515 2005-05-20  Peter Bartok  <pbartok@novell.com>
15516
15517         * Cursor.cs: Implemented GetObjectData() method
15518
15519 2005-05-20  Peter Bartok  <pbartok@novell.com>
15520
15521         * Cursors.cs: Added setting of cursor name
15522         * Cursor.cs:
15523           - Implemented constructors
15524           - Implemented Draw and DrawStretched
15525           - Implemented Current property
15526           - Implemented == and != operators
15527           - Implemented Dispose()
15528           - Implemented ToString
15529           - Added missing attributes
15530         * XplatUIX11.cs:
15531           - Added missing reset for OverrideCursor when DoEvents is called
15532           - Fixed creation of cursor, logic was wrong
15533         * XplatUIWin32.cs:
15534           - Added missing reset for OverrideCursor when DoEvents is called
15535           - Fixed creation of cursor, bit arrays were swapped
15536         * Clipboard.cs: Removed obsolete MonoTODO attribute
15537
15538 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15539
15540         * ComboBox.cs: fixes OnSelectedItemChanged
15541         * ControlBindingsCollection.cs: fixes item range check
15542
15543 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15544
15545         * UpDownBase.cs:
15546                 - Calc preferred height properly
15547                 - Implement missing properties
15548                 
15549         * NumericUpDown.cs: Implement missing events
15550
15551 2005-05-19  Jackson Harper  <jackson@ximian.com>
15552
15553         * TabControl.cs: New method that resizes the tab pages before
15554         redrawing them. This as needed as the control is double buffered
15555         and sizing will not be recalculated unless ResizeTabPages is
15556         called.
15557         * TabPage.cs: Set base.Text instead of Text in the constructor so
15558         that UpdateOwner does not get called. Use the new Redraw method of
15559         TabControl instead of Refresh so the sizing is recalculated.
15560         * ThemeWin32Classic.cs: Draw the text for button tabs.
15561
15562 2005-05-19  Jackson Harper  <jackson@ximian.com>
15563
15564         * Control.cs: Paint control background images. Fix typo where
15565         PaintControlBackground was not getting called correctly.
15566
15567 2005-05-19  Peter Bartok  <pbartok@novell.com>
15568
15569         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15570           I can investigate, apparently I broke FileDialog
15571
15572 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15573
15574         * AxHost.cs: Some simple properties.
15575         * Control.cs: window must be accessible after ctor.
15576         * Form.cs: Added TransparencyKey property.
15577         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15578         * XplatUIWin32.cs: SetBorderStyle implemented.
15579
15580 2005-05-18  Peter Bartok  <pbartok@novell.com>
15581
15582         * DataObject.cs: Entries are not global but particular to the
15583           DataObject, now it behaves that way
15584         * XplatUIWin32.cs: Implemented Clipboard methods
15585         * Clipboard.cs: Implemented
15586         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15587         * XplatUIOSX.cs: Updated to final clipboard prototypes
15588         * XplatUIX11.cs: Implemented Clipboard methods
15589         * XplatUIDriver.cs: Updated to final clipboard prototypes
15590         * XplatUIStructs.cs:
15591           - Added BITMAPINFOHEADER struct
15592           - Added ClipboardFormats enum
15593         * X11Structs.cs:
15594           - Added ClipboardStruct
15595           - Added Atom enum items for clipboard types
15596           - Fixed atom types for Selection event structures
15597         * DataFormats.cs:
15598           - Added internal properties and methods for drivers to enumerate
15599             all known formats
15600           - Switched initialization method to allow drivers to assign their
15601             own IDs even for the MS predefined clipboard IDs
15602         * XplatUI.cs: Updated to final clipboard interface
15603
15604 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15605         * PropertyGridView.cs: Fixed compiler warnings.
15606
15607 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15608         * PropertyGrid.cs: Added some event calls
15609         * PropertyGridView.cs: Change drawing code to use double buffering
15610         * PropertyGridTextBox.cs: Changed Text property name
15611         * GridItem.cs: Added Bounds property.
15612         * GridEntry.cs: Added Bounds property.
15613
15614 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15615
15616         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15617         since GetType() may not return the correct type if the object is
15618         a remoting proxy.
15619
15620 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15621
15622         * TreeNodeCollection.cs: fixes get/set item ranges
15623         
15624 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15625
15626         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15627                 
15628 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15629
15630         * ComboBox.cs: Fix item range comparation
15631         * ListView.cs: Fix item range comparation
15632
15633 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15634
15635         * FontDialog.cs:
15636           - Clear example panel when OnPaint is called
15637           - Better solution for displaying the example panel text
15638           - Select default indexes in the ListBoxes
15639
15640 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15641
15642         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15643
15644 2005-05-11  Peter Bartok  <pbartok@novell.com>
15645
15646         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15647         * SelectionRangeConverter.cs: Implemented
15648         * PropertyGrid.cs: Fixed attribute value
15649         * Control.cs:
15650           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15651           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15652         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15653           that's common to all drivers. First methods to go there are
15654           Sebastien Pouliot's CAS Stack Propagation helper methods
15655         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15656           Sebastien Pouliot for CAS Stack Propagation
15657
15658 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15659
15660         * OSXStructs.cs:
15661           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15662
15663 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15664
15665         * DataGridTextBoxColumn.cs: fixed some members
15666         * GridColumnStylesCollection.cs: indexed column is case insensitive
15667         * DataGridTableStyle.cs: fixes
15668         * ThemeWin32Classic.cs: add new theme parameter
15669         * Theme.cs: add new theme parameter
15670         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15671         * DataGrid.cs: fixes, new internal properties, etc.
15672         * DataGridColumnStyle.cs: allows to set grid value
15673         *
15674
15675 2005-05-10  Peter Bartok  <pbartok@novell.com>
15676
15677         * AccessibleObject.cs:
15678           - Removed MonoTODO attribute on help, method is correct
15679           - Fixed Bounds property
15680         * AxHost.cs: Moved MonoTODO
15681         * ButtonBase.cs: Now setting AccessibleObject properties
15682         * RadioButton.cs: Setting proper AccessibleObject role
15683         * CheckBox.cs: Setting proper AccessibleObject role
15684         * ControlBindingsCollection.cs: Added properties, methods and attributes
15685         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15686           userdefined DataFormats.Format items as well
15687         * ListControl.cs: Removed data_member from the public eye
15688         * OpenFileDialog.cs:
15689           - Made class sealed
15690           - Added missing attributes
15691         * SaveFileDialog.cs: Added missing attributes
15692         * ImageListStreamer.cs: Fixed code that caused warnings
15693         * LinkLabel.cs: Removed unreachable code
15694         * TreeView.cs: Fixed code that caused warnings
15695         * PropertyGridView.cs: Fixed code that caused warnings
15696         * GridColumnStylesCollection.cs: Added missing attributes
15697         * GridTableStylesCollection: Added missing attribute
15698         * PropertyManager: Added .ctor
15699         * SecurityIDType: Added
15700         * DataObject.cs: Implemented class
15701         * LinkArea.cs: Added missing attribute
15702
15703 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15704
15705         * RadioButton.cs: call base method to allow to fire OnClick event
15706         * UpDownBase.cs: OnMouseUp call base method
15707         * CheckedListBox.cs: call base method before returning
15708         * TrackBar.cs: call base method before returning
15709         
15710
15711 2005-05-10  Peter Bartok  <pbartok@novell.com>
15712
15713         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15714           for messages
15715
15716 2005-05-10  Peter Bartok  <pbartok@novell.com>
15717
15718         * DataFormats.cs: Implemented
15719         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15720           XplatUIX11.cs: Added Clipboard APIs
15721         * XplatUIWin32.cs: Implemented Clipboard APIs
15722         * FolderBrowserDialog.cs: Added missing event, attributes
15723
15724 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15725
15726         * CheckBox.cs: call base method to allow to fire OnClick event
15727
15728 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15729
15730         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15731
15732 2005-05-06  Peter Bartok  <pbartok@novell.com>
15733
15734         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15735         * Screen.cs: Implemented
15736         * HelpNavigator.cs: Added
15737         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15738           property
15739         * HelpProvider.cs: Implemented all we can do until we have a CHM
15740           help library (which means that "What's This" does work now)
15741
15742 2005-05-06  Jackson Harper  <jackson@ximian.com>
15743
15744         * XplatUIX11.cs: Fix waking up the main loop.
15745                 
15746 2005-05-05  Peter Bartok  <pbartok@novell.com>
15747
15748         * XplatUI.cs: Updated revision
15749         * Form.cs: Removed enless loop
15750         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15751         * Label.cs (OnPaint): Added call to base.OnPaint()
15752         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15753         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15754         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15755         * AxHost.cs: Added
15756         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15757         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15758           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15759           reuse of ToolTipWindow by other controls
15760         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15761         * XplatUIX11.cs: Now clipping drawing area (experimental)
15762         * PictureBox.cs: Moved base.OnPaint() call to end of method
15763         * Theme.cs: Fixed ToolTip abstracts to match new format
15764         * ErrorProvider.cs: Implemented
15765
15766 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15767
15768         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15769         * LinkLabel.cs:
15770                 - Adds cursors
15771                 - Handles focus
15772                 - Implements LinkBehavior
15773                 - Fixes many issues
15774
15775 2005-05-03  Jackson Harper  <jackson@ximian.com>
15776
15777         * ListView.cs: Calculate the scrollbar positioning on resize and
15778         paint, so they get put in the correct place.
15779
15780 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15781
15782         * ColorDialogs.cs: The small color panels are now handled by
15783           SmallColorControl. This fixes drawing of the focus rectangle
15784           and adds a 3D border.
15785
15786 2005-05-03  Peter Bartok  <pbartok@novell.com>
15787
15788         * Control.cs: Modified version of Jonathan Chamber's fix for
15789           double-buffering
15790
15791 2005-05-03  Jackson Harper  <jackson@ximian.com>
15792
15793         * ListView.cs: Remove redraw variable. Control now handles whether
15794         or not a redraw needs to be done, and will only raise the paint
15795         event if redrawing is needed.
15796
15797 2005-05-03  Jackson Harper  <jackson@ximian.com>
15798
15799         * Splitter.cs: No decorations for the splitter form. Cache the
15800         hatch brush.
15801
15802 2005-05-03  Jackson Harper  <jackson@ximian.com>
15803
15804         * TreeView.cs: Use dashed lines to connect nodes. Use the
15805         ControlPaint method for drawing the focus rect instead of doing
15806         that in treeview.
15807
15808 2005-05-02  Peter Bartok  <pbartok@novell.com>
15809
15810         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15811
15812 2005-04-29  Jackson Harper  <jackson@ximian.com>
15813
15814         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15815         entire image buffer. Just clear the clipping rectangle.
15816
15817 2005-04-29  Jackson Harper  <jackson@ximian.com>
15818
15819         * ThemeWin32Classic.cs: Don't draw list view items that are
15820         outside the clipping rectangle.
15821
15822 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15823
15824         * ListBox.cs: added horizontal item scroll
15825
15826 2005-04-29  Jackson Harper  <jackson@ximian.com>
15827
15828         * ThemeWin32Classic.cs: Remove some old debug code that was
15829         causing flicker with the new double buffering code.
15830
15831 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15832
15833         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15834         behave like combobox and comboboxlist (still not sure if this is
15835         correct though).
15836
15837 2005-04-28  Jackson Harper  <jackson@ximian.com>
15838
15839         * ThemeWin32Classic.cs: Don't fill the middle of progress
15840         bars. This fills areas outside of the clip bounds that don't need
15841         to be filled.
15842
15843 2005-04-28  Jackson Harper  <jackson@ximian.com>
15844
15845         * Control.cs: Don't expose functionality to touch the image buffers.
15846         * ProgressBar.cs:
15847         * ListView.cs: We do not need to (and no longer can) manipulate
15848         the image buffers directly. All of this is handled by Control.
15849
15850 2005-04-28  Peter Bartok  <pbartok@novell.com>
15851
15852         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15853           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15854           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15855
15856 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15857
15858         * Combobox:
15859                 - Adjust control's height for non-simple comboboxes (bug fix)
15860                 - Remove dead code
15861         * MenuAPI.cs: remove unused var
15862         * ScrollBar.cs: remove unsed var
15863                  
15864         * ListBox.cs: unselect items when clearing
15865
15866 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15867
15868         * ListControl.cs: honors OnPositionChanged and default Selected Item
15869         * ListBox.cs: unselect items when clearing
15870
15871 2005-04-27  Jackson Harper  <jackson@ximian.com>
15872
15873         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15874         if a "correct" keyboard is not found. This will make us not crash,
15875         but might give some users bad keyboard layouts...seems to be the
15876         same thing rewind does.
15877
15878 2005-04-27  Jackson Harper  <jackson@ximian.com>
15879
15880         * BindingManagerBase.cs: Attach the current/position changed
15881         handlers to their respective events.
15882
15883 2005-04-27  Jackson Harper  <jackson@ximian.com>
15884
15885         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15886         not just a blit.
15887         * ThemeWin32Classic.cs: Don't fill the background for picture
15888         boxes. This could overright user drawing.
15889         * ComboBox.cs: Just fill the clipping rect not the entire client
15890         rect when drawing the background. This prevents pieces of the
15891         image buffer from getting overwritten and is theoretically faster.
15892
15893 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15894
15895         * ComboBox.cs: Databinding support fixes, fire missing events
15896         * ListControl.cs: implement missing methods and properties, fixes
15897         * ThemeWin32Classic.cs: Databiding support on Drawing
15898         * CheckedListBox.cs: Databinding support fixes, fire missing events
15899         * ListBox.cs: Databinding support fixes, fire missing events
15900         
15901 2005-04-25  Peter Bartok  <pbartok@novell.com>
15902
15903         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15904
15905 2005-04-25  Jackson Harper  <jackson@ximian.com>
15906
15907         * TreeView.cs: Use the horizontal scrollbars height not width when
15908         determining how much of the client area is available.
15909
15910 2005-04-25  Jackson Harper  <jackson@ximian.com>
15911
15912         * Control.cs: Double buffering is handled differently now. As per
15913         the spec, the extra buffer is created in the WM_PAINT message and
15914         passed down to the control's drawing code.
15915         * GroupBox.cs:
15916         * Label.cs:
15917         * CheckBox.cs:
15918         * ProgressBar.cs:
15919         * RadioButton.cs:
15920         * ColorDialog.cs:
15921         * ComboBox.cs:
15922         * PropertyGridView.cs:
15923         * UpDownBase.cs:
15924         * MessageBox.cs:
15925         * MenuAPI.cs:
15926         * ListView.cs:
15927         * ButtonBase.cs:
15928         * SizeGrip.cs:
15929         * ScrollBar.cs:
15930         * ListBox.cs:
15931         * TrackBar.cs:
15932         * ToolBar.cs:
15933         * PictureBox.cs:
15934         * DateTimePicker.cs:
15935         * StatusBar.cs:
15936         * TreeView.cs: Update to new double buffering system.
15937         * MonthCalendar.cs: Uncomment block, as Capture is now
15938         working. Update to new double buffering
15939         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15940         * PaintEventArgs.cs: New internal method allows us to set the
15941         graphics object. This is used for double buffering.
15942         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15943         rectangle. The internal paint_area var has been removed from
15944         StatusBar. The clipping rect should be used instead.
15945         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15946         * TabPage.cs: The RefreshTabs method was removed, so just call the
15947         tab controls Refresh method now.
15948         * TabControl.cs: Update to new double buffering. Make sure the
15949         handle is created before sizing the tab pages, otherwise we will
15950         get stuck in a loop.
15951
15952 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15953
15954         * LinkLabel.cs: Fix typo, bug #74719; patch
15955           from Borja Sanchez Zamorano
15956
15957 2005-04-22  Jackson Harper  <jackson@ximian.com>
15958
15959         * TreeNode.cs: Implement Handle stuff.
15960         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15961
15962 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15963
15964         * DataGridTextBoxColumn.cs: call base constructors, fixes
15965         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15966         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15967         * DataGridTableStyle.cs: implements create default column styles
15968         * DataGridBoolColumn.cs: which types can handle
15969         * DataGrid.cs: missing methods, fixes, new functionality
15970         * DataGridColumnStyle.cs: fixes
15971
15972 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15973         * FolderBrowserDialog.cs:
15974         - Use a thread to fill the TreeView
15975         - Adjusted some sizes
15976
15977 2005-04-19  Peter Bartok  <pbartok@novell.com>
15978
15979         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15980           property. Fixes #74360.
15981
15982 2005-04-19  Jackson Harper  <jackson@ximian.com>
15983
15984         * XEventQueue.cs: Lock when getting the lockqueue size.
15985         * PictureBox.cs: Call base OnPaint
15986         
15987 2005-04-19  Peter Bartok  <pbartok@novell.com>
15988
15989         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15990           messages were no longer being processed (this broke BeginInvoke)
15991
15992           
15993 2005-04-18  Jackson Harper  <jackson@ximian.com>
15994
15995         * TreeView.cs: buglet that caused node images to get drawn
15996         regardless of whether or not they were in the clipping rectangle.
15997
15998 2005-04-18  Jackson Harper  <jackson@ximian.com>
15999
16000         * CurrencyManager.cs: There are four rules for GetItemProperties:
16001         - If the type is an array use the element type of the array
16002         - If the type is a typed list, use the type
16003         - If the list contains an Item property that is not an object, use
16004         that property
16005         - use the first element of the list if there are any elements in
16006         the list.
16007         
16008 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16009
16010         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16011         click. This handles offsets for scrolling properly and reduces
16012         memory. Also fixed GetNode to not offset now that TopNode works
16013         properly.
16014         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16015         
16016 2005-04-17  Jackson Harper  <jackson@ximian.com>
16017
16018         * CursorConverter.cs: Initial implementation.
16019
16020 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16021
16022         * ListControl.cs: work towards complex data binding support on ListControl
16023         * CurrencyManager.cs: work towards complex data binding support on ListControl
16024         * ListBox.cs: work towards complex data binding support on ListControl
16025
16026
16027 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16028
16029         * GridTableStylesCollection.cs: fixes name and constructor
16030         * DataGridTableStyle.cs: fixes
16031         * DataGridBoolColumn.cs: fixes names and constructors
16032         * DataGrid.cs: define methods and properties. Some init implementations
16033         * DataGridCell.cs: define methods and properties. Some init implementations
16034         * GridTablesFactory.cs: Define methods and properties
16035
16036 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16037
16038         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16039         graphics port changes.  We still want the coordinates in global screen
16040         coordinates.
16041
16042 2005-04-14  Jackson Harper  <jackson@ximian.com>
16043
16044         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16045         check plus minus or checkbox clicks unless those features are enabled.
16046
16047 2005-04-14  Jackson Harper  <jackson@ximian.com>
16048
16049         * TreeView.cs: Add methods for setting the top and bottom visible
16050         nodes. TreeNode::EnsureVisible uses these methods.
16051         * TreeNode.cs: Implement EnsureVisible
16052
16053 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16054
16055         * Form.cs: Pospone menu assignation if the window has not been created yet
16056         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16057         size and position
16058
16059 2005-04-12  Jackson Harper  <jackson@ximian.com>
16060
16061         * TreeView.cs: Set the TopNode properly when scrolling
16062         occurs. This has the added benifit of reducing the amount of
16063         walking that needs to be done when drawing. Also removed an old
16064         misleading TODO.
16065         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16066         
16067 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16068
16069         * Timer.cs: fixes interval setting when the timer is already enabled
16070         
16071 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16072
16073         * FolderBrowserDialog.cs: First approach
16074
16075 2005-04-09  Peter Bartok  <pbartok@novell.com>
16076
16077         * FolderBrowserDialog: Added
16078
16079 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16080
16081         * LinkLabel.cs: move drawing code into the theme
16082         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16083         * Theme.cs: define DrawLinkLabel method
16084
16085 2005-04-05  Jackson Harper  <jackson@ximian.com>
16086
16087         * BindingContext.cs: Use weak references so these bad actors don't
16088         stay alive longer then they need to.
16089
16090 2005-04-05  Jackson Harper  <jackson@ximian.com>
16091
16092         * ListControl.cs: Basic implementation of complex databinding.
16093         * ComboBox.cs:
16094         * ListBox.cs: Add calls to ListControl databinding methods.
16095
16096 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16097
16098         * FileDialog.cs:
16099           - Don't change PopupButtonState to Normal when the
16100             PopupButton gets pressed several times.
16101           - Renamed ButtonPanel to PopupButtonPanel
16102
16103 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16104
16105         * ColorDialog.cs: Use cached objects instead of creating them
16106         * LinkLabel.cs: Use cached objects instead of creating them
16107         * Splitter.cs: Use cached objects instead of creating them
16108         * FontDialog.cs: Use cached objects instead of creating them
16109         * PropertyGridView.cs: Use cached objects instead of creating them
16110         * MessageBox.cs: Use cached objects instead of creating them
16111         * FileDialog.cs: Use cached objects instead of creating them
16112         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16113         * TreeView.cs: Use cached objects instead of creating them
16114         
16115 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16116
16117         * Control.cs: use Equals to compare the font since no == op
16118         * ScrollBar.cs: use Equals to compare the font since no == op
16119
16120 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16121
16122         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16123
16124 2005-04-01  Jackson Harper  <jackson@ximian.com>
16125
16126         * Binding.cs: Implement IsBinding.
16127         * BindingManagerBase.cs:
16128         * PropertyManager.cs:
16129         * CurrencyManager.cs: Add IsSuspended property.
16130
16131 2005-04-01  Jackson Harper  <jackson@ximian.com>
16132
16133         * Binding.cs: Had some IsAssignableFrom calls backwards.
16134
16135 2005-04-01  Jackson Harper  <jackson@ximian.com>
16136
16137         * Binding.cs: Handle null data members when pulling data.
16138         * PropertyManager.cs: Handle the data member being a property that
16139         does not exist.
16140
16141 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16142
16143         * DataGridTextBoxColumn.cs: fixes signature
16144         * DataGrid.cs: calls right constructor
16145
16146 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16147
16148         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16149         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16150         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16151         * DataGridTableStyle.cs: implements DataGridTableStyle
16152         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16153         * DataGridTextBox.cs: implements DataGridTextBox
16154         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16155
16156 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16157
16158         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16159
16160 2005-03-29  Peter Bartok  <pbartok@novell.com>
16161
16162         * Application.cs:
16163           - Properly implemented CompanyName property
16164           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16165             returns a path that includes CompanyName, ProductName and
16166             Version (fixes bug #70330)
16167
16168 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16169
16170         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16171           fixes bug #72588.
16172
16173 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16174
16175         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16176         
16177           - Added ReadOnly CheckBox
16178           - Further refactoring: moved some code from Open-/SaveFileDialog
16179             to FileDialog
16180
16181 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16182
16183         * OpenFileDialog.cs: Fixed CheckFileExists
16184         * FileDialog.cs:
16185           Moved FileView and DirComboBox outside FileDialog class.
16186           They can now be used outside FileDialog
16187
16188 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16189
16190         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16191         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16192
16193 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16194
16195         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16196           - Added missing CreatePrompt property in SaveDialog
16197           - Overall SaveDialog handling should be better now
16198           - Added non standard ShowHiddenFiles property
16199           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16200           - Added InitialDirectory and RestoreDirectory support
16201
16202 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16203
16204         * FileDialog.cs: Made dirComboBox usable
16205
16206 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16207
16208         * FileDialog.cs: Added Filter support (case sensitiv)
16209
16210 2005-03-24  Jackson Harper  <jackson@ximian.com>
16211
16212         * TabControl.cs: Need a couple more pixels for the lines.
16213
16214 2005-03-23  Jackson Harper  <jackson@ximian.com>
16215
16216         * TabControl.cs: Give the tab page focus when it is selected.
16217
16218 2005-03-23  Jackson Harper  <jackson@ximian.com>
16219
16220         * TabControl.cs: Account for the drawing of tabs borders when
16221         invalidating. If the slider was clicked dont do click detection on
16222         the tabs.
16223
16224 2005-03-23  Jackson Harper  <jackson@ximian.com>
16225
16226         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16227
16228 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16229
16230         * CategoryGridEntry.cs: Added
16231         * GridItem.cs: Added helper properties
16232         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16233         * GridEntry.cs: Updated code for collection
16234         * PropertyGrid.cs: Cleaned up some formatting
16235         * PropertyGridView.cs: Added drop down functionality for enums.
16236         * GridItemCollection.cs: Added enumerator logic
16237         * PropertyGridEntry.cs: Added
16238
16239 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16240
16241         * FileDialog.cs:
16242           - Removed unnecessary commented code
16243           - Fixed handling for entering the filename manually in the combobox
16244
16245 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16246
16247         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16248
16249 2005-03-18  Peter Bartok  <pbartok@novell.com>
16250
16251         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16252           them being touching the border
16253
16254 2005-03-18  Peter Bartok  <pbartok@novell.com>
16255
16256         * TextControl.cs: Quick hack to center text better
16257
16258 2005-03-18  Peter Bartok  <pbartok@novell.com>
16259
16260         * ControlPaint.cs:
16261           - Don't throw NotImplemented exceptions, just print a notice once
16262             instead (requested by Miguel). This makes running existing SWF
16263             apps a bit easier
16264         * Control.cs:
16265           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
16266           - Added context menu trigger on right click
16267         * Panel.cs: Trigger invalidate on resize
16268         * StatusBar.cs:
16269           - Removed old double-buffer drawing
16270           - Added ResizeRedraw style to force proper update of statusbar
16271         * ListView.cs:
16272           - Removed debug output
16273         * ThemeWin32Classic.cs:
16274           - Fixed drawing of status bar, now draws Text property if there
16275             are no defined panels
16276
16277 2005-03-18  Jackson Harper  <jackson@ximian.com>
16278
16279         * ImageList.cs: When the image stream is set pull all the images
16280         from it.
16281         * ImageListStreamer.cs: Implement reading image list streams.
16282
16283 2005-03-18  Peter Bartok  <pbartok@novell.com>
16284
16285         * ThemeWin32Classic.cs (DrawPictureBox):
16286           - Fixed calculations for centered drawing
16287           - Fixed drawing for normal mode, not scaling the image on normal
16288
16289 2005-03-18  Peter Bartok  <pbartok@novell.com>
16290
16291         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16292           textbox
16293         * FileDialog.cs:
16294           - Made Open/Save button the accept button for FileDialog
16295           - Tied the cancel button to the IButtonControl cancel button
16296           - Save/Open now properly builds the pathname
16297           - Now handles user-entered text
16298           - Preventing crash on right-click if no item is selected
16299           - Fixed Text property, now uses contents of textbox
16300           - Fixed SelectedText property, now just returns the text part that
16301             is selected in the text box
16302
16303 2005-03-18  Jackson Harper  <jackson@ximian.com>
16304
16305         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16306         rect, make sure to de-adjust the interior rect after drawing the
16307         tab text.
16308
16309 2005-03-18  Peter Bartok  <pbartok@novell.com>
16310
16311         * MenuAPI.cs: Remove menu *before* executing selected action to
16312           prevent the menu from 'hanging around'
16313           
16314 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16315
16316         * XplatUIOSX.cs: Implemented WorkingArea property
16317
16318 2005-03-17  Peter Bartok  <pbartok@novell.com>
16319
16320         * XplatUIX11.cs: Fixed menu coord calculations
16321         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16322           for calculating offsets
16323
16324 2005-03-17  Peter Bartok  <pbartok@novell.com>
16325
16326         * Hwnd.cs: Do not consider menu presence for default client
16327           rectangle location/size
16328         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16329           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16330           translation functions
16331         * FileDialog.cs: Fixed (what I presume is a) typo
16332
16333 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16334
16335         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16336           X access (avoids X-Async errors)
16337
16338 2005-03-16  Jackson Harper  <jackson@ximian.com>
16339
16340         * TabControl.cs: Raise the SelectedIndexChanged event.
16341
16342 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16343
16344         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16345           - Removed vertical ToolBar and replaced it with a custom panel
16346             (desktop and home button already work)
16347           - Added Help button (some controls get resized or relocated then)
16348           - Draw correct text depending on Open or Save.
16349           - Fixed some typos...
16350
16351 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16352
16353         * ScrollBar.cs:
16354           - Only change Maximum and Minimum when need it (bug fix)
16355
16356 2005-03-15  Peter Bartok  <pbartok@novell.com>
16357
16358         * Form.cs: Use Handle for icon, to trigger creation if
16359           the window does not yet exist
16360         * Control.cs:
16361           - CanSelect: Slight performance improvement
16362           - Focus(): Preventing possible recursion
16363           - Invalidate(): Removed ControlStyle based clear flag setting
16364           - WM_PAINT: fixed logic for calling OnPaintBackground
16365           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16366             EraseWindowBackground if the control doesn't paint background
16367         * XplatUIWin32.cs:
16368           - Moved EraseWindowBackground() method to internal methods
16369           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16370             is sent via SendMessage on BeginPaint call on Win32
16371         * XplatUIX11.cs:
16372           - Added EraseWindowBackground() method
16373           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16374             PaintEventStart, which more closely matches Win32 behaviour
16375           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16376           - Fixed SetFocus() to properly deal with client and whole windows
16377         * Hwnd.cs: Added ErasePending property
16378         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16379         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16380
16381 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16382
16383         * XplatUIOSX.cs:
16384           - Fix hard loop when timers exist.
16385           - Fix bugs with middle and right click for 3 button mice.
16386
16387 2005-03-11  Peter Bartok  <pbartok@novell.com>
16388
16389         * XplatUIX11.cs:
16390           - get_WorkingArea: Need to call X directly, GetWindowPos only
16391             returns cached data now
16392           - Added sanity check to GetWindowPos hwnd usage
16393
16394 2005-03-11  Jackson Harper  <jackson@ximian.com>
16395
16396         * BindingManagerBase.cs: This method isn't used anymore as
16397         PullData now updates the data in the control.
16398
16399 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16400
16401         * Form.cs: fixes menu drawing on X11
16402         * MenuAPI.cs:  fixes menu drawing on X11
16403
16404 2005-03-11  Peter Bartok  <pbartok@novell.com>
16405
16406         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16407           from Jonathan Gilbert; should fix bug #73606
16408         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16409           in Screen coordinates. Thanks, Jordi.
16410         * Form.cs: Added missing attribute
16411
16412 2005-03-11  Peter Bartok  <pbartok@novell.com>
16413
16414         * Form.cs:
16415           - Rudimentary Mdi support
16416           - Removed outdated FormParent code
16417           - Implemented lots of missing properties and methods, still missing
16418             transparency support
16419           - Added missing attributes
16420           - Implemented support for MaximumBounds
16421           - Added firing of various events
16422         * XplatUI.cs: Added SetIcon() method
16423         * XplatUIDriver.cs: Added SetIcon() abstract
16424         * XplatUIOSX.cs: Stubbed out SetIcon() method
16425         * XplatUIX11.cs:
16426           - Implemented SetIcon() support
16427           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16428           - Switched to unix line endings
16429         * XplatUIWin32.cs:
16430           - Made POINT internal so for can access it as part of MINMAX
16431           - Implemented SetIcon() support
16432           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16433             native Mdi support again, might have to go managed)
16434         * Control.cs: Now fires the StyleChanged event
16435         * MdiClient.cs: Added; still mostly empty
16436
16437 2005-03-10  Peter Bartok  <pbartok@novell.com>
16438
16439         * SaveFileDialog.cs: Added emtpy file
16440
16441 2005-03-08  Peter Bartok  <pbartok@novell.com>
16442
16443         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16444           in turn triggers OnCreateContro) when creating a handle for the
16445           first time.
16446         * TextControl.cs: Fixed endless loop in certain cases when
16447           replacing the current selection
16448
16449 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16450
16451         * ScrollBar.cs:
16452           - Honors NewValue changes in Scroll events allowing apps to change it
16453           - Adds First and Last Scroll events
16454           - Fixes Thumb events
16455
16456 2005-03-07  Peter Bartok  <pbartok@novell.com>
16457
16458         * Hwnd.cs: Added DefaultClientRectangle property
16459         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16460           more detailed debug information
16461         * XplatUIX11.cs:
16462           - Fixed size-change feedback loop, where we would pull an old size
16463             off the queue and mistakenly change our window's size to an
16464             earlier value
16465           - Now compressing ConfigureNotify events, to reduce looping and
16466             redraw issues
16467         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16468           is called
16469
16470 2005-03-07  Jackson Harper  <jackson@ximian.com>
16471
16472         * Binding.cs: Push data pushes from data -> property. Check if the
16473         property is readonly when attempting to set it.
16474
16475 2005-03-07  Jackson Harper  <jackson@ximian.com>
16476
16477         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16478         instead of IsSubclassOf. Pulling data now sets the value on the
16479         control.
16480         * PropertyManager.cs:
16481         * CurrencyManager.cs: Just need to pull data when updating now,
16482         because PullData will set the value on the control.
16483
16484 2005-03-04  Jackson Harper  <jackson@ximian.com>
16485
16486         * Binding.cs: Implement data type parsing and converting on pulled
16487         data. TODO: Are there more ways the data can be converted?
16488
16489 2005-03-04  Jackson Harper  <jackson@ximian.com>
16490
16491         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16492         controls Validating method so we can repull the data when the
16493         control loses focus.
16494
16495 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16496
16497         * ColumnHeader.cs:
16498           - Fixes null string format
16499           
16500         * ListView.cs:
16501           - Adds enum type checks
16502           - Fixes redrawing and recalc need after changing some properties
16503           - Fixes on focus_item set after the event
16504           - Fixes adding columns after the control has been created
16505           
16506         * ThemeWin32Classic.cs:
16507           - Fixes CheckBox focus rectangle
16508           - Fixes ColumnHeader drawing
16509
16510
16511 2005-03-03  Jackson Harper  <jackson@ximian.com>
16512
16513         * Binding.cs: Bind to <Property>Changed events so we can detect
16514         when properties are changed and update the data.
16515
16516 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16517
16518         * ImageList.cs:
16519           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16520           - Fixes ImageList constructor with ImageList container
16521           - Fixes image scaling (wrong parameters at DrawImage)
16522
16523 2005-02-02  Jackson Harper  <jackson@ximian.com>
16524
16525         * Binding.cs: Make property searches case-insensitive. Eliminate
16526         some duplicated code.
16527
16528 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16529
16530         * ComboBox.cs:
16531                 - Handle focus event
16532                 - Fix scrollbar events
16533                 - Discard highlighted item if remove it
16534                 - Fixes SelectedItem with strings
16535
16536 2005-03-01  Peter Bartok  <pbartok@novell.com>
16537
16538         * Control.cs:
16539           - Fixed Visible property, now follows (once again) parent chain
16540             to return false if any control in the chain is visible=false
16541           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16542           - Fixed several places where is_visible instead of Visible was used
16543           - Implemented FIXME related to focus selection when setting focused
16544             control to be invisible
16545
16546         * XplatUIWin32.cs: Now using proper method to find out if window is
16547           visible. Thanks to Jordi for pointing it out
16548
16549 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16550
16551         * ComboBox.cs: show/hide scrollbar instead of creating it
16552
16553 2005-02-27  Jackson Harper  <jackson@ximian.com>
16554
16555         * CurrencyManager.cs: Add PositionChanged stuff.
16556
16557 2005-02-27  Peter Bartok  <pbartok@novell.com>
16558
16559         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16560         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16561         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16562         * XplatUIX11.cs:
16563           - Implemented GetMenuDC()
16564           - Implemented GetMenuOrigin()
16565           - Implemented ReleaseMenuDC()
16566           - Implemented generation of WM_NCPAINT message
16567           - Implemented generation and handling of WM_NCCALCSIZE message
16568         * Form.cs: Added debug helper message for Jordi's menu work
16569         * Hwnd.cs:
16570           - Modified ClientRect property; added setter, fixed getter to handle
16571             setting of ClientRect
16572           - Added MenuOrigin property
16573
16574 2005-02-26  Peter Bartok  <pbartok@novell.com>
16575
16576         * XplatUIX11.cs:
16577           - Destroys the caret if a window that's being destroyed contains it
16578           - Ignores expose events coming from the X11 queue for windows that
16579             already are destroyed
16580           - Now uses the proper variable for handling DestroyNotify, before we
16581             marked the wrong window as destroyed
16582           - Improved/added some debug output
16583
16584 2005-02-26  Peter Bartok  <pbartok@novell.com>
16585
16586         * X11Keyboard.cs: Fixes to work on 64bit systems
16587
16588 2005-02-26  Peter Bartok  <pbartok@novell.com>
16589
16590         * Control.cs:
16591           - Now calling OnHandleDestroyed from DestroyHandle()
16592             instead of Dispose()
16593           - Removed bogus call to controls.Remove() from DestroyHandle()
16594
16595 2005-02-26  Peter Bartok  <pbartok@novell.com>
16596
16597         * Control.cs: Properly destroy child windows when our handle is
16598           destroyed
16599
16600 2005-02-25  Peter Bartok  <pbartok@novell.com>
16601
16602         * XplatUI.cs:
16603           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16604           - Alphabetized Static Methods and Subclasses
16605
16606         * XplatUIX11.cs:
16607           - Added XException class to allow custom handling of X11 exceptions
16608           - Created custom X11 error handler, tied into XException class
16609           - Added support for MONO_XEXCEPTIONS env var to allow the user
16610             to either throw an exception on X errors or continue running
16611             after displaying the error
16612           - Added handling of DestroyNotify message
16613           - Added handler for CreateNotify message (still disabled)
16614           - Improved (tried to at least) Where method to provide file and lineno
16615         * X11Structs.cs:
16616           - Added XErrorHandler delegate
16617           - Added XRequest enumeration (to suppor translation of errors)
16618
16619 2005-02-25  Jackson Harper  <jackson@ximian.com>
16620
16621         * PropertyManager.cs: Implement editing features
16622         * CurrencyManager.cs:
16623         * Binding.cs: First attempt at UpdateIsBinding
16624         * BindingManagerBase.cs: Call UpdateIsBinding before
16625         pushing/pulling data.
16626
16627 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16628
16629         * MenuAPI.cs: Respect disabled items
16630         * ThemeWin32Classic.cs
16631                 - Caches ImageAttributes creation for DrawImageDisabled
16632                 - Fixes vertical menu line drawing
16633                 - Draws disabled arrows in disable menu items
16634
16635 2005-02-24  Peter Bartok  <pbartok@novell.com>
16636
16637         * Hwnd.cs:
16638           - Added UserData property to allow associating arbitrary objects
16639             with the handle
16640           - Fixed leak; now removing Hwnd references from static windows array
16641         * XplatUIWin32.cs:
16642           - Fixed Graphics leak in PaintEventEnd
16643           - Removed usage of HandleData, switched over to Hwnd class
16644         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16645
16646 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16647
16648         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16649         * ScrollBar.cs: Fixes bug
16650         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16651          keyboard navigation enhancements
16652
16653 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16654
16655         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16656         * GroupBox.cs: Add control styles
16657         * Label.cs: Add control styles
16658         * UpDownBase.cs: Add control styles
16659         * ListBox.cs: Add control styles
16660         * XplatUIWin32.cs: Fixes wrong parameter order
16661
16662
16663 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16664
16665         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16666
16667 2005-02-23  Jackson Harper  <jackson@ximian.com>
16668
16669         * PropertyManager.cs: Implement property binding. This doesn't
16670         seem to work yet though as (I think) there are some bugs in
16671         System.ComponentModel.PropertyDescriptor.
16672         * BindingContext.cs: Use new PropertyManager constructor.
16673
16674 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16675
16676         * ProgressBar.cs: use clip region in ProgressBar
16677         * ThemeWin32Classic.cs: use clip region in ProgressBar
16678
16679 2004-02-22  Jackson Harper  <jackson@ximian.com>
16680
16681         * BindingsCollection.cs: Remove some debug code.
16682
16683 2005-02-22  Jackson Harper  <jackson@ximian.com>
16684
16685         * BindingContext.cs:
16686         * ControlBindingsCollection.cs:
16687         * CurrencyManager.cs:
16688         * Binding.cs:
16689         * BindingManagerBase.cs: Initial implementation
16690         * BindingsCollection.cs: Add an internal contains method that the
16691         BindingManagerBase uses to ensure bindings aren't added twice to
16692         the collection.
16693         * PropertyManager.cs: Stubbed out.
16694         * Control.cs:
16695         * ContainerControl.cs: Hook up databinding
16696         
16697 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16698
16699         * XplatUIOSX.cs:
16700           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16701           Fixed Invalidate/Update chain.
16702           Fixed tons of other minor bugs (this is almost a complete rewrite).
16703
16704 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16705
16706         * ComboBox.cs: do subcontrol creation when the control is created
16707
16708 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16709
16710         * Label.cs: fixes image drawing (image and imagelist)
16711         * ThemeWin32Classic.cs: cache brushes
16712         
16713 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16714
16715         * Form.cs: Move menu drawing code to Theme class
16716         * ComboBox.cs: Move ComboBox drawing code to Theme class
16717         * MenuItem.cs: Move menu drawing code to Theme class
16718         * MenuAPI.cs: Move menu drawing code to Theme class
16719         * ThemeWin32Classic.cs: New methods
16720         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16721         * ListBox.cs: Move Listbox drawing code to Theme class
16722         * Theme.cs: New methods
16723
16724 2005-02-20  Peter Bartok  <pbartok@novell.com>
16725
16726         * Control.cs:
16727           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16728             only process mnemonics on those)
16729           - Fixed event sequence for key handling; first calling
16730             ProcessKeyEventArgs now
16731         * TextBoxBase.cs:
16732           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16733             for processing non-character keys
16734           - Fixed WM_CHAR to generate proper event sequence before processing
16735         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16736           generation
16737
16738 2005-02-19  Peter Bartok  <pbartok@novell.com>
16739
16740         * UserControl.cs: Added TextChanged event; added attributes
16741         * SizeGrip.cs: Implemented resizing and optional display of grip
16742         * Form.cs: Fixed attribute
16743         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16744           Changed meaning of ScrollWindow bool argument; instead of the
16745           clear attribute (which will be true usually anyway), it gives the
16746           option of moving child controls as well.
16747         * XplatUIX11.cs:
16748           - Changed to match new ScrollWindow argument
16749           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16750             now handles the implicit parent window a WM puts around us
16751         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16752           to work)
16753         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16754         * TreeView.cs: Adjusted to new ScrollWindow arguments
16755
16756 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16757
16758         * Form.cs: Menu integration with non-client area
16759         * MenuItem.cs: Menu integration with non-client area
16760         * MenuAPI.cs: Menu integration with non-client area
16761
16762 2005-02-18  Peter Bartok  <pbartok@novell.com>
16763
16764         * MethodInvoker.cs: Added
16765         * MdiLayout.cs: Added
16766         * SendKeys.cs: Started implementation
16767         * ErrorIconAlignment.cs: Added
16768
16769 2005-02-18  Peter Bartok  <pbartok@novell.com>
16770
16771         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16772         * Form.cs: Added handling for Menu-related Non-client messages
16773
16774 2005-02-17  Peter Bartok  <pbartok@novell.com>
16775
16776         * UpDownBase.cs: Fixed typo, compilation errors
16777         * DomainUpDown.cs: Fixed attribute value
16778
16779 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16780
16781         * UpDownBase.cs: Attach entry events.
16782         Propagate events.
16783         Add ForeColor property, Focused, InterceptArrowKeys (interception
16784         does not work yet).
16785
16786 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16787
16788         * Form.cs:
16789                 - Redraw non client are on Setmenu
16790                 - Calc proper menu starting point
16791
16792 2005-02-17  Peter Bartok  <pbartok@novell.com>
16793
16794         * Application.cs: Fixed message_filter check
16795
16796 2005-02-17  Peter Bartok  <pbartok@novell.com>
16797
16798         * Application.cs: Now calls registered message filters
16799         * DockStyle.cs: Fixed attribute
16800         * Form.cs: Fixed attribute
16801         * Menu.cs: Fixed attribute
16802         * ToolTip.cs: Fixed attribute
16803         * TreeNode.cs: Added missing attributes and arranged in regions
16804         * PropertyGrid.cs: Fixed signatures
16805         * TreeNodeCollection.cs: Added attributes
16806         * Splitter.cs: Added missing attributes; arranged into regions
16807         * TabPage.cs: Added missing attributes; arranged into regions
16808         * TextBoxBase.cs: Added missing attributes
16809         * TextBox.cs: Added missing attributes
16810         * ArrangeDirection.cs: Added missing attributes
16811         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16812         * ToolBarButton.cs: Fixed attributes
16813         * AnchorStyles.cs: Fixed attribute
16814         * TrackBar.cs: Fixed attributes
16815         * TabControl.cs: Added missing attributes and arranged into regions
16816         * ToolBar.cs: Fixed attribute
16817         * StatusBar.cs: Fixed signature, organized into regions and added
16818           attributes
16819         * StatusBarPanel.cs: Fixed attributes
16820         * ContentsResizedEventArgs.cs: Implemented
16821         * ContentsResizedEventHandler.cs: Implemented
16822         * DateBoldEventArgs.cs: Implemented
16823         * DateBoldEventHandler.cs: Implemented
16824         * UpDownEventArgs.cs: Implemented
16825         * UpDownEventHandler.cs: Implemented
16826         
16827 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16828
16829         * Form.cs: first Menu NC refactoring
16830         * MenuAPI.cs: first Menu NC refactoring
16831         
16832 2005-02-16  Peter Bartok  <pbartok@novell.com>
16833
16834         * ImeMode.cs: Added missing attributes
16835         * Menu.cs: Fixed attribute
16836         * GroupBox.cs: Fixed attribute
16837         * Label.cs: Fixed attribute
16838         * ColorDialog.cs (RunDialog): Removed TODO attribute
16839         * ComboBox.cs: Fixed attributes
16840         * ListControl.cs: Added missing attributes
16841         * PropertyGrid.cs: Fixed attributes
16842         * Control.cs: Fixed attributes
16843         * ListViewItem.cs: Added TypeConverter attribute
16844         * NotifyIcon.cs: Fixed attributes
16845         * ListView.cs: Fixed attributes
16846         * ButtonBase.cs: Fixed attribute
16847         * ImageList.cs: Added missing attributes
16848         * ContainerControl.cs: Fixed signature
16849         * CheckedListBox.cs: Fixed attribute; added missing attributes
16850         * Panel.cs: Fixed attributes
16851         * PropertyTabChangedEventArgs.cs: Added missing attribute
16852         * PropertyValueChangedEventArgs.cs: Added missing attribute
16853         * Binding.cs: Fixed attribute
16854         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16855         * ListBox.cs: Fixed attribute; added missing attributes;
16856         * ScrollableControl.cs: Added missing attributes
16857         * PictureBox.cs: Added missing attributes; implemented missing property
16858         * DateTimePicker.cs: Added missing attributes
16859         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16860         * MonthCalendar.cs: Fixed attributes
16861         * StatusBarPanel.cs: Added missing attributes
16862         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16863
16864 2005-02-16  Peter Bartok  <pbartok@novell.com>
16865
16866         * TextBoxBase.cs: The previous method to enforce height yet remember
16867           the requested high was less than ideal, this is an attempt to do
16868           it better.
16869         * Control.cs: Added comment about possible problem
16870         * Copyright: Updated format
16871         * GridItemType.cs: Fixed swapped values
16872
16873 2005-02-15  Jackson Harper  <jackson@ximian.com>
16874
16875         * BaseCollection.cs: Use property so we never access an
16876         uninitialized list. Also initialize the list in the property.
16877
16878 2005-02-15  Peter Bartok  <pbartok@novell.com>
16879
16880         * GroupBox.cs (ProcessMnemonic): Implemented
16881         * Label.cs (ProcessMnemonic): Implemented
16882         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16883           hotkeys
16884
16885 2005-02-15  Peter Bartok  <pbartok@novell.com>
16886
16887         * RadioButton.cs (ProcessMnemonic): Implemented
16888         * CheckBox.cs (ProcessMnemonic): Implemented
16889         * Control.cs:
16890           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16891             handling
16892           - Added internal method to allow calling ProcessMnemonic from other
16893             controls
16894         * ContainerControl.cs:
16895           - Started support for handling validation chain handling
16896           - Implemented ProcessMnemonic support
16897           - Added Select() call to Active, to make sure the active control
16898             receives focus
16899         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16900           FormParent rewrite)
16901         * ThemeWin32Classic.cs:
16902           - DrawCheckBox(): Fixed stringformat to show hotkeys
16903           - DrawRadioButton(): Fixed stringformat to show hotkeys
16904         * CommonDialog.cs: Removed WndProc override, not needed
16905
16906 2005-02-14  Peter Bartok  <pbartok@novell.com>
16907
16908         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16909           missed those in the rewrite
16910
16911 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16912
16913         * NumericUpDown.cs (Increment, ToString): Add.
16914         (DecimalPlaces): implement.
16915         
16916         Add attributes.
16917         
16918         * UpDownBase.cs: Add the designer attributes.
16919
16920 2005-02-13  Peter Bartok  <pbartok@novell.com>
16921
16922         * Panel.cs: Removed border_style, now in Control
16923         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16924           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16925
16926 2005-02-13  Peter Bartok  <pbartok@novell.com>
16927
16928         * MouseButtons.cs: Added missing attributes
16929         * XplatUIStructs.cs: Added enumeration for title styles
16930         * LeftRightAlignment.cs: Added missing attributes
16931         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16932           it compatible with Graphics.FromHwnd()
16933         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16934         * Keys.cs: Added missing attributes
16935         * SelectionRange.cs: Added missing attributes
16936         * SelectionRangeConverter.cs: Added
16937         * XplatUI.cs:
16938           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16939             ReleaseMenuDC methods
16940           - Renamed ReleaseWindow to UngrabWindow
16941           - Added proper startup notice to allow version identification
16942         * Form.cs:
16943           - Added missing attributes
16944           - Removed FormParent concept
16945         * Label.cs: Removed border_style field, now in Control
16946         * RadioButton.cs: Now properly selects RadioButton when focus is
16947           received
16948         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16949         * Control.cs:
16950           - Added missing attributes
16951           - Added borderstyle handling
16952           - Removed FormParent concept support
16953           - Fixed calls to XplatUI to match changed APIs
16954           - Fixed bug that would case us to use disposed Graphics objects
16955           - Removed unneeded internal methods
16956           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16957           - SelectNextControl(): Fixed to properly check common parents
16958         * TextBoxBase.cs: Removed border_style field (now in Control)
16959         * MessageBox.cs:
16960           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16961             fixed calculations for form size
16962           - Added support for localized strings and icons
16963           - Improved form size calculations, added border
16964         * ListView.cs: Removed border_style field (now in Control)
16965         * X11Structs.cs: Moved several structs from X11 driver here
16966         * X11Keyboard.cs: Changed debug message
16967         * Application.cs: Removed FormParent concept support
16968         * CommonDialog.cs:
16969           - Resetting end_modal flag
16970           - Removed FormParent concept support
16971         * NativeWindow.cs: Removed FormParent concept support
16972         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16973           Client area and Non-Client whole window to allow support for WM_NC
16974           messages
16975         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16976           prevent using it until it supports Hwnd as per Geoff Norton's request
16977         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16978         * PictureBox.cs: Removed border_style field, now in Control
16979         * XplatUIWin32.cs: Added new driver methods
16980
16981 2005-02-12  Peter Bartok  <pbartok@novell.com>
16982
16983         * OpacityConverter.cs: Implemented
16984         * Hwnd.cs: Internal class to support drivers that need to emulate
16985           client area/non-client area window behaviour
16986
16987 2005-02-11  Peter Bartok  <pbartok@novell.com>
16988
16989         * KeysConverter.cs: Implemented
16990
16991 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16992
16993         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16994         * LinkLabel: Added missing attributes
16995         * MainMenu.cs: fixes ToString
16996         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16997         * ListBox.cs: fixes event position
16998         * TrackBar.cs: adds missing attributes and events
16999         
17000 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17001
17002         * MenuItem.cs: Use SystemInformation and bug fixes
17003         * MenuAPI.cs: Use SystemInformation and bug fixes
17004
17005 2005-02-09  Jackson Harper  <jackson@ximian.com>
17006
17007         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17008         their keystate otherwise things like VK_MENU get stuck "on".
17009
17010 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17011
17012         * ListBox.cs: Fixes AddRange bug
17013         
17014 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17015
17016         * ProgressBar.cs
17017                 - Add missing attributes
17018                 - Add missing method
17019                 
17020         * CheckedListBox.cs: Added missing attributes
17021                 - Add missing attributes
17022                 - Remove extra method
17023         
17024         * ComboBox.cs: Added missing attributes
17025         * VScrollBar.cs: Added missing attributes
17026         * ScrollBar.cs:  Added missing attributes
17027         * ListBox.cs: Fixes signature, add missing consts
17028         * LinkArea.cs:   Added missing attributes
17029         
17030
17031 2005-02-08  Peter Bartok  <pbartok@novell.com>
17032
17033         * Menu.cs: Added missing attributes
17034         * MainMenu.cs: Added missing attributes
17035         * GroupBox.cs: Added missing attributes
17036         * Label.cs: Added missing attributes
17037         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17038         * ColorDialog.cs:
17039           - Added Instance and Options properties
17040           - Added missing attributes
17041         * Cursor.cs: Made Serializable
17042         * NotifyIcon: Added missing attributes
17043         * MenuItem.cs: Added missing attributes
17044         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17045         * Panel.cs: Added Missing attributes
17046         * MonthCalendar.cs: Fixed CreateParams
17047
17048 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17049         
17050         * LinkLabel.cs:
17051                 - Fixes signature
17052                 - Fixes issues with links
17053                 - Adds the class attributes
17054
17055 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17056         
17057         * ComboBox.cs:
17058                 - Fixes button when no items available in dropdown
17059                 - Fixes repainting problems
17060                 - Adds the class attributes
17061                 
17062 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17063
17064         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17065         the current theme.  Cache these on startup.
17066
17067 2005-02-07  Jackson Harper  <jackson@ximian.com>
17068
17069         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17070         the scrollbar buttons when they are depressed.
17071
17072 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17073
17074         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17075         Get the display size from the main displayid.  We currently dont
17076         support multiple display configurations.
17077
17078 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17079
17080         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17081
17082 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17083
17084         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17085
17086 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17087
17088         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17089
17090 2005-02-04  Jackson Harper  <jackson@ximian.com>
17091
17092         * ThemeWin32Classic.cs: Respect the clipping rect when
17093         drawing. Only fill the intersection of clips and rects so there
17094         isn't a lot of large fills.
17095         * ScrollBar.cs: Pass the correct clipping rect to the theme
17096         engine. Remove some debug code.
17097
17098 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17099         
17100         * DateTimePicker.cs:
17101                 - Fixed crash on DateTime.Parse, use Constructor instead
17102
17103 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17104         
17105         * MenuItem.cs:
17106         * MenuAPI.cs:
17107                 - Owner draw support (MeasureItem and DrawItem)
17108
17109 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17110         
17111         *  Menu.cs:
17112                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17113                 - Fixes MenuItems.Add range
17114         * MenuItem.cs:
17115                 - MergeMenu and Clone and CloneMenu functions
17116
17117 2005-02-03  Jackson Harper  <jackson@ximian.com>
17118
17119         * ScrollBar.cs: Make abstract
17120         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17121         is abstract.
17122
17123 2005-02-03  Jackson Harper  <jackson@ximian.com>
17124
17125         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17126         all the unneeded refreshes and uses invalidates with properly
17127         computed rects.
17128
17129 2005-02-03  Peter Bartok  <pbartok@novell.com>
17130
17131         * ComponentModel.cs: Added
17132         * IDataGridEditingService.cs: Added
17133         * Timer.cs: Added missing attributes
17134         * ToolTip.cs: Added missing attributes
17135
17136 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17137
17138         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17139
17140 2005-02-03  Peter Bartok  <pbartok@novell.com>
17141
17142         * ListBox.cs: Added missing attributes
17143
17144 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17145         
17146         * ListBox.cs:
17147                 - Fixes font height after font change
17148                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17149                 
17150 2005-02-02  Peter Bartok  <pbartok@novell.com>
17151
17152         * HandleData.cs: Introduced static methods to allow class
17153           to be more self-contained and track it's own HandleData objects
17154         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17155           HandleData to use new static methods
17156
17157 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17158
17159         * Combobox.cs:
17160                 - Fixes default size and PreferredHeight
17161                 - Missing events
17162                 - ObjectCollection.Insert implementation
17163                 
17164         * ListControl.cs
17165                 - Fixes signature
17166         * ListBox.cs:
17167                 - Several fixes
17168                 - ObjectCollection.Insert implementation
17169                 - No selection after clean
17170                 - Small fixes
17171
17172 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17173
17174         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17175
17176 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17177
17178         * Combobox.cs:
17179                 - Caches ItemHeight calculation for OwnerDrawVariable
17180                 - Handles dropdown properly
17181                 - Fixes several minor bugs
17182
17183 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17184
17185         * ListBox.cs:
17186                 - Fixes 71946 and 71950
17187                 - Fixes changing Multicolumn on the fly
17188                 - Fixes keyboard navigation on Multicolumn listboxes
17189
17190 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17191         
17192         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17193         crash reporter log.
17194
17195 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17196
17197         * XplatUIOSX.cs: Allow applications to actually exit.
17198
17199 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17200
17201         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17202         their parent at creation time rather than lazily later.  Fixes a major
17203         regression we were experiencing.
17204
17205 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17206
17207         * ThemeWin32Classic.cs: more date time picker painting fixes
17208         * DateTimePicker.cs: more monthcalendar drop down fixes
17209         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17210
17211 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17212
17213         * ScrollBar.cs:
17214                 - When moving the thumb going outside the control should stop the moving
17215                 - Adds the firing of missing events
17216                 - Fixes no button show if Size is not specified
17217                 - End / Home keys for keyboard navigation
17218
17219 2005-01-30  Peter Bartok  <pbartok@novell.com>
17220
17221         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17222           sanity check to prevent theoretical loop
17223         * XplatUIWin32.cs (SetVisible): Removed debug output
17224         * XplatUIX11.cs (SystrayChange): Added sanity check
17225         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17226         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17227           behaviour, valid until the X11 client window rewrite is done
17228         * TextBox.cs (ctor): Setting proper default foreground and background
17229           colors
17230
17231 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17232
17233         * Theme: Added DrawDateTimePicker to interface
17234         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17235         * DateTimePicker.cs: Created (still needs keys and painting code)
17236         * DateTimePickerFormat.cs: added
17237         * MonthCalendar.cs: fixed CreateParams for popup window mode
17238           
17239 2005-01-29  Peter Bartok  <pbartok@novell.com>
17240
17241         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17242           this should also the calculations for ligher/darker
17243         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17244
17245 2005-01-29  Peter Bartok  <pbartok@novell.com>
17246
17247         * ArrangeDirection.cs: Added
17248         * ArrangeStartingPositon.cs: Added
17249         * SystemInformation.cs: Implemented
17250         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17251           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17252           used by SystemInformation class
17253         * X11Strucs.cs: Added XSizeHints structure
17254         * MenuAPI.cs:
17255           - Fixed CreateParams to make sure the menu window is always visible
17256           - TrackPopupMenu: Added check to make sure we don't draw the
17257             menu offscreen
17258
17259 2005-01-29  Peter Bartok  <pbartok@novell.com>
17260
17261         * HandleData.cs: Added method for altering invalid area
17262         * TextBoxBase.cs: Implemented TextLength
17263
17264 2005-01-28  Peter Bartok  <pbartok@novell.com>
17265
17266         * XplatUIX11.cs: Improvement over last patch, not sending
17267           the WM_PAINT directly anymore, instead we scroll any pending
17268           exposed areas and let the system pick out the WM_PAINT later
17269
17270 2005-01-28  Peter Bartok  <pbartok@novell.com>
17271
17272         * SWF.csproj: Deleted, no longer used. Instead,
17273           Managed.Windows.Forms/SWF.csproj should be used
17274         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
17275           directly, to avoid a potential race condition with the next
17276           scroll
17277
17278 2005-01-28  Peter Bartok  <pbartok@novell.com>
17279
17280         * XplatUI.cs: Made class internal
17281
17282 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
17283
17284         * CheckedListBox.cs:
17285                 - Draw focus
17286                 - Fixed Drawing
17287                 - Missing methods and events
17288
17289 2005-01-27  Peter Bartok  <pbartok@novell.com>
17290
17291         * Application.cs (Run): Don't use form if we don't have one
17292
17293 2005-01-27  Peter Bartok  <pbartok@novell.com>
17294
17295         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17296
17297 2005-01-27  Peter Bartok  <pbartok@novell.com>
17298
17299         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17300         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17301         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17302         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17303         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17304         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17305         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17306         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17307         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17308         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17309         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17310         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17311
17312 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17313
17314         * Combobox.cs:
17315                 - Draw focus on Simple Combobox
17316                 - Fixes drawing issues
17317                 - fixes 71834
17318
17319 2005-01-27  Peter Bartok  <pbartok@novell.com>
17320
17321         * Form.cs:
17322           - Place window in default location, instead of hardcoded 0/0
17323           - Send initial LocationChanged event
17324         * Control.cs:
17325           - UpdateBounds after creation to find out where the WM placed us
17326           - Make sure that if the ParentForm changes location the Form
17327             is notified
17328         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17329             to the root, but to whatever the WM placed around us.
17330             Translate to root coordinates before returning toplevel
17331             coordinates
17332         * XplatUIWin32.cs: Removed debug output
17333         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17334           flag to GetWindowPos, to allow translation of coordinates on X11
17335
17336 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17337
17338         * ListBox.cs: connect LostFocus Event
17339
17340 2005-01-27  Peter Bartok  <pbartok@novell.com>
17341
17342         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17343           XplatUIX11.cs: Extended the Systray API
17344         * Form.cs: Removed debug output
17345         * Application.cs: Fixed focus assignment, always need to call
17346           XplatUI.Activate() since Form.Activate() has rules that may
17347           prevent activation
17348         * NotifyIcon.cs: Should be complete now
17349         * ToolTip.cs: Worked around possible timer bug
17350
17351 2005-01-27  Jackson Harper  <jackson@ximian.com>
17352
17353         * TabControl.cs:
17354         - Only invalidate the effected tabs when the
17355         selected index changes. This reduces drawing and gets rid of some
17356         flicker.
17357         - Only refresh if the tabs need to be shifted, otherwise only
17358         invalidate the slider button.
17359         - On windows the tabs are not filled to right if the slider is
17360         visible.
17361         
17362 2005-01-27  Jackson Harper  <jackson@ximian.com>
17363
17364         * TabControl.cs: Only refresh on mouseup if we are showing the
17365         slider. Also only invalidate the button whose state has changed.
17366
17367 2005-01-26  Peter Bartok  <pbartok@novell.com>
17368
17369         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17370         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17371           and SystrayRemove() methods
17372         * XplatUIOSX.cs: Stubbed Systray methods
17373         * XplatUIX11.cs:
17374           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17375             methods
17376           - Fixed broken XChangeProperty calls (marshalling messed up things)
17377         * X11Structs.cs: Added enums and structs required for Size hinting
17378         * NotifyIcon.cs: Added & implemented
17379
17380 2005-01-26  Jackson Harper  <jackson@ximian.com>
17381
17382         * TabControl.cs: Space vertically layed out tabs properly.
17383
17384 2005-01-26  Peter Bartok  <pbartok@novell.com>
17385
17386         * Form.cs (CreateClientParams): Always set the location to 0,0
17387           since we're a child window.
17388
17389         * Control.cs (SetVisibleCore): Always explicitly setting the location
17390           of a toplevel window, apparently X11 doesn't like to move windows
17391           while they're not mapped.
17392
17393 2005-01-26  Jackson Harper  <jackson@ximian.com>
17394
17395         * TabControl.cs: Implement FillToRight size mode with vertically
17396         rendered tabs.
17397
17398 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17399
17400         * ControlPaint.cs, ThemeWin32Classic.cs
17401                 - Fixes DrawFocusRectangle
17402
17403 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17404
17405         * MenuAPI.cs:
17406                 - MenuBar tracking only starts when item is first clicked
17407                 - Fixes menu hidding for multiple subitems
17408                 - Unselect item in MenuBar when item Executed
17409                 - Fixes bug 71495
17410
17411 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17412
17413         * ListControl.cs:
17414                 - IsInputKey for ListBox
17415         * ListBox.cs:
17416                 - Focus item
17417                 - Shift and Control item selection
17418                 - Implement SelectionMode.MultiExtended
17419                 - Fixes RightToLeft
17420         * ComboBox.cs:
17421                 - IsInputKey implemented
17422                 - Do not generate OnTextChangedEdit on internal txt changes
17423                 
17424 2005-01-23  Peter Bartok  <pbartok@novell.com>
17425
17426         * AccessibleObject.cs: Partially implemented Select()
17427         * MonthCalendar.cs: Added missing attributes and events
17428         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17429           form can properly override CreateParams.
17430         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17431           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17432           Control performs Invalidate & Update
17433         * NativeWindow (CreateHandle): Added special handling for Form
17434           and Form.FormParent classes to allow overriding of From.CreateParams
17435         * Control.cs:
17436           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17437             name 'owner'
17438           - ControlNativeWindow: Added Owner property
17439           - Removed usage of Refresh() on property changes, changed into
17440             Invalidate(), we need to wait until the queue is processed for
17441             updates, direct calls might cause problems if not all vars for
17442             Paint are initialized
17443           - Added call to UpdateStyles() when creating the window, to set any
17444             styles that CreateWindow might have ignored.
17445           - Added support for Form CreateParent overrides to UpdateStyles()
17446         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17447           CreateParams are now properly overridable
17448         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17449           CreateParams are now properly overridable
17450
17451 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17452
17453         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17454         OnTextBoxChanged.
17455
17456         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17457         recursive invocation that I have not figured out yet.
17458
17459         Reset the timer when not using (it was accumulating).
17460
17461
17462         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17463         user has made changes that require validation.
17464
17465         Reset changing to avoid loops.
17466
17467 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17468
17469         * NumericUpDown.cs: Display value at startup.
17470
17471         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17472         ValidateEditText.
17473
17474         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17475         filled in.  Added some basic parsing of text.
17476
17477         Still missing the OnXXX method overrides, and figuring out the
17478         events that must be emitted.
17479
17480         * UpDownBase.cs: Handle UserEdit on the Text property.
17481         
17482 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17483
17484         * ComboBox.cs:
17485           - Fixes IntegralHeight
17486           - ToString method
17487
17488 2005-01-21  Jackson Harper  <jackson@ximian.com>
17489
17490         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17491         is set so that the page visibility is updated and the tabs are
17492         sized correctly.
17493
17494 2005-01-21  Jackson Harper  <jackson@ximian.com>
17495
17496         * TabControl.cs: Use cliping rectangle for blitting. Give the
17497         theme the clipping rect so we can do clipping while
17498         drawing. Remove some debug code.
17499
17500 2005-01-21  Jackson Harper  <jackson@ximian.com>
17501
17502         * TabPage.cs: Add a new method so tab pages can force the tab
17503         control to recalculate the tab page sizes.
17504         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17505         sizes.
17506
17507 2005-01-20  Jackson Harper  <jackson@ximian.com>
17508
17509         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17510
17511 2005-01-20  Jackson Harper  <jackson@ximian.com>
17512
17513         * TreeView.cs: Set the bounds for nodes properly. They were
17514         getting screwed up when checkboxes were not enabled, but images
17515         were.
17516
17517 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17518
17519         * ListBox.cs:
17520                 - Owner draw support
17521                 - Fixes
17522                 
17523 2005-01-20  Jackson Harper  <jackson@ximian.com>
17524
17525         * XplatUIStructs.cs: More misc keys
17526         * X11Keyboard.cs: Ignore some control keys.
17527
17528 2005-01-20  Jackson Harper  <jackson@ximian.com>
17529
17530         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17531         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17532
17533 2005-01-19  Peter Bartok  <pbartok@novell.com>
17534
17535         * Control.cs: Un-selecting the control when it is loosing focus
17536
17537 2005-01-19  Jackson Harper  <jackson@ximian.com>
17538
17539         * TreeView.cs: Hook up to the text controls leave event so we can
17540         end editing when the users clicks outside the text box.
17541         
17542 2005-01-19  Jackson Harper  <jackson@ximian.com>
17543
17544         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17545         get set in the conversion array.
17546
17547 2005-01-19  Peter Bartok  <pbartok@novell.com>
17548
17549         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17550           focus is properly set
17551         * Button.cs:
17552           - Added missing attributes
17553           - removed styles, those are already set in the base class
17554         * ButtonBase.cs:
17555           - Added missing attributes
17556           - Added clip window styles
17557         * CheckBox.cs: Added missing attributes
17558         * CommonDialog.cs:
17559           - FormParentWindow.CreateParams: Added required clip styles
17560         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17561           also filters modifier keys
17562         * MessageBox.cs:
17563           - Added assignment of Accept and Cancel button to enable Enter
17564             and Esc keys in MessageBox dialogs
17565           - FormParentWindow.CreateParams: Added required clip styles
17566         * RadioButton.cs: Added missing attributes
17567         * TextControl.cs: No longer draws selection if control does not
17568           have focus
17569         * TextBoxBase.cs:
17570           - Now draws simple rectangle around test area to make it obvious
17571             there's a control. This is a hack until we properly support borders
17572           - A few simple fixes to support selections better, now erases selected
17573             text when typing, and resets selection when using movement keys
17574
17575 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17576
17577         * UpDownBase.cs: Added some new properties.
17578
17579         * DomainUpDown.cs: Implement a lot to get my test working.
17580
17581 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17582
17583         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17584
17585 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17586
17587         * OSXStructs (WindowAttributes): Fixed csc complaints
17588
17589 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17590
17591         * XplayUIOSX.cs:
17592           OSXStructs.cs: Initial refactor to move enums and consts into
17593           OSXStructs and use them in the driver for greater readability.
17594
17595 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17596
17597         * XplatUIOSX.cs: Initial support for Standard Cursors.
17598         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17599
17600 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17601
17602         * ComboBox.cs: ability to change style when the ctrl is already
17603         created, missing methods and events, bug fixes, signature fixes
17604
17605 2005-01-19  Peter Bartok  <pbartok@novell.com>
17606
17607         * Cursors.cs (ctor): Added ctor to fix signature
17608
17609 2005-01-18  Peter Bartok  <pbartok@novell.com>
17610
17611         * Button.cs: Implemented DoubleClick event
17612         * ButtonBase.cs:
17613           - Fixed keyboard handling to behave like MS, where the press of
17614             Spacebar is equivalent to a mousedown, and the key release is
17615             equivalent to mouseup. Now a spacebar push will give the same
17616             visual feedback like a mouse click.
17617           - Added missing attributes
17618           - Added ImeModeChanged event
17619           - Added support for generating DoubleClick event for derived classes
17620         * CheckBox.cs:
17621           - Implemented DoubleClick event
17622           - Added missing attributes
17623         * CommonDialog.cs: Added missing attribute
17624         * ContextMenu.cs: Added missing attributes
17625         * RadioButton.cs:
17626           - AutoChecked buttons do not allow to be unselected when clicked
17627             (otherwise we might end up with no selected buttons in a group)
17628           - Added missing attributes
17629           - Implemented DoubleClickEvent
17630         * ThreadExceptionDialog.cs: Enabled TextBox code
17631
17632 2005-01-18  Peter Bartok  <pbartok@novell.com>
17633
17634         * Form.cs: Removed debug output
17635         * Button.cs: Added support for DoubleClick method
17636
17637 2005-01-18  Peter Bartok  <pbartok@novell.com>
17638
17639         * Form.cs:
17640           - Added method to parent window that allows triggering size
17641             calculations when a menu is added/removed
17642           - set_Menu: Cleaned up mess from early days of Form and Control,
17643             now properly triggers a recalc when a menu is added/removed
17644           - Added case to select form itself as focused form if no child
17645             controls exist
17646           - Added PerformLayout call when showing dialog, to ensure properly
17647             placed controls
17648         * Control.cs:
17649           - Select(): Made internal so Form can access it
17650           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17651             status
17652         * Application.cs (Run): Removed hack and calls PerformLayout instead
17653           to trigger calculation when Form becomes visible
17654
17655 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17656
17657         * ComboBox.cs: fixes for ownerdraw
17658
17659 2005-01-18  Peter Bartok  <pbartok@novell.com>
17660
17661         * TextControl.cs:
17662           - Sentinel is no longer static, each Document gets it's own, this
17663             avoids locking or alternatively overwrite problems when more
17664             than one text control is used simultaneously.
17665           - Switched to use Hilight and HilightText brushes for text selection
17666
17667         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17668
17669 2005-01-18  Peter Bartok  <pbartok@novell.com>
17670
17671         * Control.cs:
17672           - Hooked up the following events:
17673                 o ControlAdded
17674                 o ControlRemoved
17675                 o HandleDestroyed
17676                 o ImeModeChanged
17677                 o ParentChanged
17678                 o TabStopChanged
17679                 o Invalidated
17680                 o SystemColorsChanged
17681                 o ParentFontChanged
17682                 o Move
17683           - Removed debug output
17684           - Added a call to the current theme's ResetDefaults when a color change
17685             is detected
17686         * Form.cs: Now setting the proper ImeMode
17687         * Theme.cs: Defined a method to force recreation of cached resources
17688           and rereading of system defaults (ResetDefaults())
17689         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17690
17691 2005-01-17  Peter Bartok  <pbartok@novell.com>
17692
17693         * Control.cs: Added missing attributes
17694
17695 2005-01-17  Jackson Harper  <jackson@ximian.com>
17696
17697         * TreeNode.cs: Implement editing. Add missing properties selected
17698         and visible.
17699         * TreeView.cs: Implement node editing. Also some fixes to use
17700         Invalidate (invalid area) instead of Refresh when selecting.
17701
17702 2005-01-17  Peter Bartok  <pbartok@novell.com>
17703
17704         * Control.cs:
17705           - Implemented InvokeGotFocus() method
17706           - Implemented InvokeLostFocus() method
17707           - Implemented InvokePaint() method
17708           - Implemented InvokePaintBackground() method
17709           - Implemented InvokeClick() method
17710           - Implemented FindForm() method
17711           - Implemented RectangleToClient() method
17712           - Implemented ClientToRectangle() method
17713           - Implemented ResetBackColor() method
17714           - Implemented ResetCursor() method
17715           - Implemented ResetFont() method
17716           - Implemented ResteForeColor() method
17717           - Implemented ResetImeMode() method
17718           - Implemented ResetLeftToRight() method
17719           - Implemented ResetText() method
17720           - Implemented Scale() methods
17721           - Implemented ScaleCore() method
17722           - Implemented Update() method
17723           - Removed unused variables
17724           - Stubbed AccessibilityNotifyClients and
17725             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17726             with those yet)
17727           - Now setting proper default for RightToLeft property
17728           - Fixed bug in SetClientSizeCore that would cause windows to get
17729             really big
17730           - Now sending Click/DoubleClick events
17731           - Now selecting controls when left mouse button is clicked on
17732             selectable control
17733         * AccessibleEvents.cs: Added
17734         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17735         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17736         * XplatUIWin32.cs: Implemented UpdateWindow() method
17737         * XplatUIX11.cs: Implemented UpdateWindow() method
17738         * Form.cs: Removed stray semicolon causing CS0162 warning
17739         * ThemeWin32Classic.cs: Fixed unused variable warnings
17740         * ScrollableControl.cs: Now calls base method for ScaleCore
17741         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17742           style to avoid interference with internal click handler (which is
17743           different than standard Control click handling)
17744         * RadioButton.cs:
17745           - Now unchecks all sibling radio buttons when control is
17746             selected (Fixes #68756)
17747           - Removed internal tabstop variable, using the one inherited from
17748             Control
17749
17750 2005-01-17  Jackson Harper  <jackson@ximian.com>
17751
17752         * NavigateEventArgs.cs: Fix base type.
17753         * LinkLabel.cs: Sig fix
17754         
17755 2005-01-17  Jackson Harper  <jackson@ximian.com>
17756
17757         * TreeView.cs: Only invalidate the effected nodes bounds when
17758         selecting nodes.
17759
17760 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17761
17762         * XplatUIWin32.cs: fixes Win32 marshaling
17763         * XplatUIX11.cs: fixes method signature
17764
17765 2005-01-17  Peter Bartok  <pbartok@novell.com>
17766
17767         * XplatUIX11.cs: Clean up resources when we no longer need them
17768
17769 2005-01-17  Peter Bartok  <pbartok@novell.com>
17770
17771         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17772           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17773           and DestroyCursor() methods.
17774         * Cursor.cs: Partially implemented, now supports standard cursors;
17775           still contains some debug code
17776         * Cursors.cs: Implemented class
17777         * Control.cs:
17778           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17779             appropriate cursor
17780           - Implemented Cursor property
17781           - Replaced break; with return; more straightforwar and possibly
17782             faster
17783           - Now properly setting the result for WM_HELP
17784         * X11Structs.cs: Added CursorFontShape enum
17785         * XplatUIStructs.cs:
17786           - Added StdCursor enum (to support DefineStdCursor() method)
17787           - Added HitTest enum (to support sending WM_SETCURSOR message)
17788         * XplatUIX11.cs:
17789           - Now sends the WM_SETCURSOR message
17790           - Implemented new cursor methods
17791         * XplatUIOSX.cs: Stubbed new cursor methods
17792         * XplatUIWin32.cs:
17793           - Implemented new cursor methods
17794           - Added GetSystemMetrics function and associated enumeration
17795
17796 2005-01-15  Peter Bartok  <pbartok@novell.com>
17797
17798         * Control.cs:
17799           - WndProc(): Now handles EnableNotifyMessage
17800           - SelectNextControl(): Fixed bug where if no child or sibling
17801             controls exist we looped endlessly
17802
17803 2005-01-14  Jackson Harper  <jackson@ximian.com>
17804
17805         * TreeView.cs: Recalculate the tab pages when a new one is added
17806         so that the proper bounding rects are created.
17807
17808 2005-01-14  Jackson Harper  <jackson@ximian.com>
17809
17810         * TreeView.cs: Draw a gray box instead of a grip in the lower
17811         right hand corner when there are both horizontal and vertical
17812         scroll bars.
17813
17814 2005-01-14  Jackson Harper  <jackson@ximian.com>
17815
17816         * Control.cs: When erasing backgrounds use FromHwnd instead of
17817         FromHdc when there is a NULL wparam. This occurs on the X driver.
17818         * XplatUIX11.cs: Set the wparam to NULL.
17819
17820 2005-01-13  Jackson Harper  <jackson@ximian.com>
17821
17822         * PictureBox.cs: Implement missing methods (except ToString, need
17823         to test that on windows) and events. When visibility is changed we
17824         need to redraw the image because the buffers are killed. When size
17825         is changed refresh if the sizemode needs it.
17826
17827 2005-01-13  Peter Bartok  <pbartok@novell.com>
17828
17829         * Control.cs (SelectNextControl): Was using wrong method to select
17830           a control
17831
17832 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17833
17834         * ComboBox.cs: fixes dropstyle
17835
17836 2005-01-13  Peter Bartok  <pbartok@novell.com>
17837
17838         * Form.cs:
17839           - Implemented Select() override
17840           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17841           - Now sets keyboard focus on startup
17842         * Control.cs (SelectNextControl): Now properly handles directed=true
17843         * TextBoxBase.cs:
17844           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17845           - Added (really bad) focus rectangle (mostly for testing)
17846         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17847           to enforce redraw on focus changes
17848         * ContainerControl.cs:
17849           - Fixed detection of Shift-Tab key presses
17850           - Fixed traversal with arrow keys
17851         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17852           gonna keep this or if it's complete yet
17853         
17854 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17855
17856         * ComboBox.cs: missing properties, fixes
17857
17858 2005-01-13  Peter Bartok  <pbartok@novell.com>
17859
17860         * Panel.cs (ctor): Setting Selectable window style to off
17861         * Splitter.cs (ctor): Setting Selectable window style to off
17862         * GroupBox.cs (ctor): Setting Selectable window style to off
17863         * Label.cs (ctor): Setting Selectable window style to off
17864
17865 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17866
17867         * UpDownBase.cs (InitTimer): If the timer has been already
17868         created, enable it.
17869
17870         Use a TextBox instead of a Label.
17871
17872 2005-01-12  Jackson Harper  <jackson@ximian.com>
17873
17874         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17875         draw the connecting node lines (when ShowLines is true).
17876         * TreeNode.cs: The nodes index can now be updated. This is used
17877         when a node collection is sorted.
17878         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17879         insert or an existing unsorted node collection can be sorted.
17880         
17881 2005-01-12  Peter Bartok  <pbartok@novell.com>
17882
17883         * ContainerControl.cs: Implemented ProcessDialogKeys()
17884
17885 2005-01-12  Peter Bartok  <pbartok@novell.com>
17886
17887         * Control.cs:
17888           - Implemented SelectNextControl() method
17889           - Several focus related bug fixes
17890           - Fixed Docking calculations to match MS documentation and
17891             behaviour
17892
17893 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17894
17895         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17896         bug fixes
17897
17898 2005-01-12  Peter Bartok  <pbartok@novell.com>
17899
17900         * Control.cs:
17901           - Fixed broken Contains() method
17902           - Implemented GetNextControl() method. Finally. This is the pre-
17903             requisite for focus handling.
17904
17905 2005-01-12  Peter Bartok  <pbartok@novell.com>
17906
17907         * OSXStrucs.cs: Added
17908
17909 2005-01-12  Peter Bartok  <pbartok@novell.com>
17910
17911         * XplatUIWin32.cs:
17912           - Removed PeekMessageFlags
17913           - Implemented SetWindowStyle() method
17914         * XplatUIStructs.cs: Added PeekMessageFlags
17915         * X11Structs: Added missing border_width field to XWindowChanges struct
17916         * XplatUIX11.cs:
17917           - PeekMessage: Now throws exception if flags which are not yet
17918             supported are passed
17919           - Implemented SetWindowStyle() method
17920           - Fixed SetZOrder to handle AfterHwnd properly
17921         * XplatUI.cs: Added SetWindowStyle() method
17922         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17923         * Control.cs:
17924           - Implemented UpdateStyles() method
17925           - Implemented UpdateZOrder() method
17926         * XplatUIOSX.cs: Added SetWindowStyle() stub
17927
17928 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17929
17930         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17931         button mouse).
17932
17933
17934 2005-01-11  Jackson Harper  <jackson@ximian.com>
17935
17936         * TreeView.cs: Still need to draw lines to siblings even if out of
17937         the current node is out of the clip.
17938
17939 2005-01-11  Jackson Harper  <jackson@ximian.com>
17940
17941         * TreeView.cs: When setting the hbar/vbar/grip position use
17942         SetBounds so that perform layout is only called once. Also suspend
17943         and resume layout so layout is only done once for all controls.
17944         - Removed some debug fluff
17945         * SizeGrip.cs: Call base implmentation in overriding methods.
17946         - When visibility is changed the drawing buffers are killed so we
17947         need to redraw.
17948
17949 2005-01-11  Jackson Harper  <jackson@ximian.com>
17950
17951         * TreeView.cs: Calculate the open node count while drawing. This
17952         saves us an entire tree traversal for every paint operation. Use
17953         a member var for the open node count so less vars are passed around.
17954
17955 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17956
17957         * MonthCalendar.cs:
17958         - fixed selection to use mousemove, not mouse polling on timer
17959         * ThemeWin32Classic.cs
17960         - removed redundant unused variable "no_more_content"
17961         
17962 2005-01-11  Peter Bartok  <pbartok@novell.com>
17963
17964         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17965           are pending, so it now calls PeekMessage instead of GetMessage;
17966           implemented a incomplete version of PeekMessage
17967         
17968 2005-01-11  Peter Bartok  <pbartok@novell.com>
17969
17970         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17971           I18n issues
17972         * TextBoxBase.cs: Added sending of TextChanged event
17973
17974 2005-01-10  Jackson Harper  <jackson@ximian.com>
17975
17976         * TreeView.cs: Try not to draw outside the clipping rectangle on
17977         each node element.
17978
17979 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17980
17981         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17982
17983 2005-01-10  Jackson Harper  <jackson@ximian.com>
17984
17985         * TreeView.cs:
17986         - Implement fast scrolling. Now only the newly
17987         exposed nodes are drawn and the old image is moved using the
17988         XplatUI::ScrollWindow method.
17989         - Factor in height of nodes when calculating whether or not the
17990         node is in the clipping rect.
17991
17992 2005-01-10  Jackson Harper  <jackson@ximian.com>
17993
17994         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17995
17996 2005-01-10  Peter Bartok  <pbartok@novell.com>
17997
17998         * Application.cs: Added temporary hack to resolve all our resize
17999           required issues on startup. This will get fixed properly at
18000           some point in the future
18001
18002 2005-01-10  Jackson Harper  <jackson@ximian.com>
18003
18004         * SizeGrip.cs: New internal class that is used as a sizing
18005         grip control...hence the name.
18006
18007 2005-01-10  Peter Bartok  <pbartok@novell.com>
18008
18009         * Control.cs: Implemented proper TabIndex handling, now assigning
18010           a tabindex when a control is added to a container
18011         * GroupBox.cs (ctor): Now sets the Container style bit, required
18012           for Control.GetNextControl()
18013
18014 2005-01-09  Jackson Harper  <jackson@ximian.com>
18015
18016         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18017
18018 2005-01-09  Peter Bartok <pbartok@novell.com>
18019
18020         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18021           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18022           an overload for ScrollWindow to allow only scrolling a rectangle
18023
18024 2005-01-09  Peter Bartok <pbartok@novell.com>
18025
18026         * Form.cs:
18027           - Implemented SetDesktopBounds method
18028           - Implemented SetDesktopLocation method
18029
18030 2005-01-08  Jackson Harper  <jackson@ximian.com>
18031
18032         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18033         the node count has changed, this removes to VScroll::Refresh calls
18034         when drawing.
18035
18036 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18037
18038         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18039
18040 2005-01-07  Jackson Harper  <jackson@ximian.com>
18041
18042         * TreeNode.cs: Just update the single node when it is
18043         checked. Don't refresh after toggling, the Expand/Collapse already
18044         handles this.
18045         * TreeView.cs: Respect clipping a little more when drawing. Try
18046         not to redraw things that don't need to be redrawn. Just hide the
18047         scrollbars when they are no longer needed instead of removing
18048         them, so they don't have to be created again and again.
18049         
18050 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18051
18052         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18053         coordinates to window space to place the caret properly, FIXED.
18054         Implement GetWindowState & SetWindowState
18055
18056 2005-01-06  Peter Bartok <pbartok@novell.com>
18057
18058         * Form.cs:
18059           - Implemented ClientSize property
18060           - Implemented DesktopBounds property
18061           - Implemented DesktopLocation property
18062           - Implemented IsRestrictedWindow property
18063           - Implemented Size property
18064           - Implemented TopLevel property
18065           - Implemented FormWindowState property
18066         * Control.cs:
18067           - Implemented GetTopLevel() method
18068           - Implemented SetTopLevel() method
18069         * X11Structs.cs (Atom):
18070           - Added AnyPropertyType definition
18071           - Added MapState definiton and updated XWindowAttribute struct
18072         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18073         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18074         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18075         * XplatUIWin32.cs:
18076           - Implemented GetWindowState() and SetWindowState() methods
18077           - Fixed Win32GetWindowLong return type
18078         * XplatUIX11.cs:
18079           - Introduced central function for sending NET_WM messages
18080           - Implemented GetWindowState() and SetWindowState() methods
18081         * TextBoxBase.cs (set_Lines):
18082           - Now uses Foreground color for text added via Text property (Duh!)
18083           - Added code to remember programmatically requested size (fixes
18084             behaviour when Multiline is set after Size)
18085           - Added AutoSize logic
18086
18087 2005-01-06  Jackson Harper  <jackson@ximian.com>
18088
18089         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18090
18091 2005-01-06  Jackson Harper  <jackson@ximian.com>
18092
18093         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18094         set to less then 0.
18095
18096 2005-01-06  Jackson Harper  <jackson@ximian.com>
18097
18098         * ScrollableControl.cs: Lazy init the scrollbars.
18099         
18100 2005-01-06  Jackson Harper  <jackson@ximian.com>
18101
18102         * Theme.cs: Speed up getting pens and solid brushes, by using
18103         their ARGB as a hash instead of tostring and not calling Contains.
18104
18105 2005-01-06  Peter Bartok <pbartok@novell.com>
18106
18107         * Form.cs:
18108           - Implemented OnActivated and OnDeactivate event trigger
18109           - Implemented Activate() method
18110           - Fixed ShowDialog() to activate the form that was active before
18111             the dialog was shown
18112         * XplatUIX11.cs:
18113           - Added global active_window var that tracks the currently active
18114             X11 window
18115           - Now always grabs Property changes from the root window to always
18116             catch changes on the active window property
18117           - Added code to PropertyNotify handler to send Active/Inactive
18118             messages when state changes. This puts X11 and Win32 en par on
18119             WM_ACTIVATE notifications (except for double notifications when
18120             the user clicks away from our modal window to another one of our
18121             windows)
18122
18123 2005-01-05  Jackson Harper  <jackson@ximian.com>
18124
18125         * ImageList.cs: Implment ctor
18126
18127 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18128
18129         * XplatUIOSX.cs: Implement Activate/SetTopmost
18130
18131 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18132
18133         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18134
18135 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18136
18137         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18138
18139 2005-01-05  Peter Bartok <pbartok@novell.com>
18140
18141         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18142           XplatUIOSX.cs: Added GetActive method to return the currently
18143           active window for the application (or null, if none is active)
18144         * Form.cs:
18145           - Implemented ActiveForm
18146           - Commented out owner assignment for modal dialogs (causes problems
18147             on Win32, since the owner will be disabled)
18148           - Reworked some Active/Focus handling (still incomplete)
18149         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18150           (causes problems on Win32, since the owner will be disabled)
18151         * IWin32Window: Added ComVisible attribute
18152
18153 2005-01-05  Peter Bartok <pbartok@novell.com>
18154
18155         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18156           required XplatUI functions.
18157
18158 2005-01-05  Peter Bartok <pbartok@novell.com>
18159
18160         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18161           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18162           to implement focus and activation handling; still incomplete and
18163           with debug output
18164
18165 2005-01-04  Peter Bartok <pbartok@novell.com>
18166
18167         * TextBoxBase.cs: Changed access level for Document property to
18168           match switch to internal for TextControl
18169
18170 2005-01-04  Peter Bartok <pbartok@novell.com>
18171
18172         * AccessibleObject: Added ComVisible attribute
18173
18174 2005-01-04  Jackson Harper  <jackson@ximian.com>
18175
18176         * X11Keyboard.cs: Remove unneeded var.
18177
18178 2005-01-04  Jackson Harper  <jackson@ximian.com>
18179
18180         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18181         but PAINT.
18182         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18183         ClientMessage. This makes apps exit cleanly (more often).
18184         
18185 2005-01-04  Jackson Harper  <jackson@ximian.com>
18186
18187         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18188         handling focus, return correct colors and fonts,
18189         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18190         handle selection, horizontal scrolling, and mouse interaction.
18191
18192 2005-01-04  Peter Bartok <pbartok@novell.com>
18193
18194         * ICommandExecutor.cs: Added
18195         * IDataGridColumnStyleEditingNotificationService.cs: Added
18196         * IFeatureSupport.cs: Added
18197         * IFileReaderService.cs: Added
18198         * IDataObject.cs: Added ComVisible attribute
18199         * AmbientProperties.cs: Added
18200         * BaseCollection.cs: Added missing attributes
18201         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18202         * BaseCollection.cs: Added missing attributes
18203         * Binding.cs: Added TypeConverter attribute
18204         * BindingContext.cs: Added DefaultEvent attribute
18205         * BindingsCollection.cs: Added DefaultEvent attribute
18206         * Button.cs: Added DefaultValue attribute
18207         * DragEventArgs.cs: Added ComVisible attribute
18208         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18209         * KeyEventArgs.cs: Added ComVisible attribute
18210         * KeyPressEventArgs.cs: Added ComVisible attribute
18211         * MouseEventArgs.cs: Added ComVisible attribute
18212         * NavigateEventArgs.cs: Added
18213         * NavigateEventHandler.cs: Added
18214         * FeatureSupport.cs: Added
18215         * OSFeature.cs: Added
18216         * Theme.cs: Added abstract Version property to support OSFeature
18217         * ThemeWin32Classic.cs: Added Version property to
18218           support OSFeature.Themes
18219         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18220           the proper styles to avoid background drawing are set, also doesn't
18221           match MS signature
18222         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18223         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18224         * ScrollEventArgs.cs: Added ComVisible attribute
18225         * SplitterEventArgs.cs: Added ComVisible attribute
18226         * AccessibleSelection.cs: Added Flags attribute
18227         * Appearance.cs: Added ComVisible attribute
18228         * Border3DSide.cs: Added ComVisible attribute
18229         * Border3DStyle.cs: Added ComVisible attribute
18230         * BorderStyle.cs: Added ComVisible attribute
18231         * DragAction.cs: Added ComVisible attribute
18232         * ErrorBlinkStyle.cs: Added
18233         * ScrollEventType.cs: Added ComVisible attribute
18234         * AnchorStyles.cs: Added Editor attribute
18235         * DockStyle.cs: Added Editor attribute
18236         * HorizontalAlignment.cs: Added ComVisible attribute
18237         * HelpEventArgs.cs: Added ComVisible attribute
18238         * PaintEventArgs.cs: Added IDisposable
18239
18240 2005-01-04  Peter Bartok <pbartok@novell.com>
18241
18242         * TextControl.cs: Switched Line, LineTag and Document classes to
18243           internal
18244
18245 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18246
18247         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18248         Simple mode, fixes, IntegralHeight, etc.
18249
18250 2005-01-04  Peter Bartok <pbartok@novell.com>
18251
18252         * TextBoxBase.cs: Using proper font variable now
18253
18254 2005-01-04  Peter Bartok <pbartok@novell.com>
18255
18256         * Form.cs (ShowDialog): Set parent to owner, if provided
18257         * GroupBox.cs: Removed unused vars
18258         * TextControl.cs:
18259           - Added GetHashCode() for Document and LineTag classes
18260           - Removed unused variables
18261           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18262             to allow translation between continuous char position and line/pos
18263         * CheckBox.cs: Removed vars that are provided by base class
18264         * RadioButton.cs: Removed vars that are provided by base class, added
18265           new keyword where required
18266         * LinkLabel.cs: Added new keyword where required
18267         * Control.cs (WndProc): Removed unused variable
18268         * TextBoxBase.cs:
18269           - Finished SelectionLength property
18270           - Implemented SelectionStart property
18271           - Implemented Text property
18272           - Removed unused vars
18273         * MessageBox.cs: Added new keyword where required
18274         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
18275           WndProc signature
18276         * MenuAPI.cs: Added new keyword where required
18277         * ButtonBase.cs: Removed vars that are provided by base class, added
18278           new keyword where required
18279         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
18280           argument to double, to allow compiling with csc 2.0 (Atsushi ran
18281           into this)
18282         * Application.cs (Run): Now triggers the ThreadExit event
18283         * CommonDialog.cs: Added new keyword where required; now properly sets
18284           parent (owner) for dialog
18285         * XplatUIX11.cs: Commented out unused vars
18286         * StatusBar.cs: Fixed signature for Text property
18287         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18288
18289 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18290
18291         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18292         TrackBar.cs, MonthCalendar.cs: remove unused vars
18293
18294 2005-01-03  Jackson Harper  <jackson@ximian.com>
18295
18296         * ThemeWin32Classic.cs:
18297         * X11Keyboard.cs: Remove unused vars.
18298
18299 2005-01-03  Peter Bartok  <pbartok@novell.com>
18300
18301         * TextBox.cs:
18302           - set_Text: Tied into TextControl
18303           - set_TextAlignment: Tied into TextControl
18304         * TextControl.cs:
18305           - Added alignment properties and implemented alignment handling
18306             and drawing (still has a bug, not generating proper expose events)
18307           - Added new Line() constructor to allow passing the line alignment
18308           - Fixed selection setting, properly handling end<start now
18309           - Added aligment considerations to RecalculateDocument()
18310         * TextBoxBase.cs:
18311           - Now properly enforces control height for single line controls
18312           - Added support for CharacterCasing
18313           - Added IsInputKey override
18314           - Fixed Keys.Enter logic
18315           - Added SetBoundsCore override
18316           - Fixed mouse selection handling
18317
18318 2005-01-03  Jackson Harper  <jackson@ximian.com>
18319
18320         * TreeView.cs:
18321           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18322           - Checkboxes are always aligned to the bottom of the node,
18323           regardless of item height.
18324           - Use the node bounds to draw the text so we can center it when
18325           the item height is greater then the font height.
18326           - Node::Bounds are only the text part of the node.
18327         * TreeNode.cs: New method to combine collapsing and unchecking all
18328           nodes recursively.
18329
18330 2005-01-02  Jackson Harper  <jackson@ximian.com>
18331
18332         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18333         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18334         tree when a check is changed. TODO: Only refresh the checked node.
18335
18336 2004-12-30  Jackson Harper  <jackson@ximian.com>
18337
18338         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18339         * TreeNode.cs: When collapsing make sure to never collapse the
18340         root node.
18341
18342 2004-12-29  Jackson Harper  <jackson@ximian.com>
18343
18344         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18345         
18346 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18347
18348         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18349
18350 2004-12-28  Peter Bartok  <pbartok@novell.com>
18351
18352         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18353           not yet assigned
18354
18355 2004-12-28  Peter Bartok  <pbartok@novell.com>
18356
18357         * Control.cs (WndProc): Added WM_HELP handler, now generates
18358           HelpRequested event
18359         * Form.cs: Added HelpButton property and required support code
18360         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18361
18362 2004-12-28  Peter Bartok  <pbartok@novell.com>
18363
18364         * CommonDialog.cs:
18365           - Made DialogForm.owner variable internal
18366           - Added check to ensure owner form is set before setting
18367             owner properties in CreateParams
18368
18369 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18370
18371         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18372           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18373           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18374           system to support borderless/titleless windows (implements menus).
18375           Fix GetWindowPos.  Implement initial background color support for
18376           views.
18377
18378 2004-12-28  Peter Bartok  <pbartok@novell.com>
18379
18380         * Form.cs (get_CreateParams): Make sure we have an owner before using
18381           the owner variable. Implement proper default if no owner exists
18382
18383 2004-12-28  Peter Bartok  <pbartok@novell.com>
18384
18385         * In preparation for making Managed.Windows.Forms the default build target
18386           for System.Windows.Forms, the following stubbed files were added.
18387           Dialogs are currently being implemented by contributors and are only
18388           short-term place holders.
18389         * ColorDialog.cs: Initial check-in (minmal stub)
18390         * DataGrid.cs: Initial check-in (minimal stub)
18391         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18392         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18393         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18394         * FontDialog.cs: Initial check-in (minimal stub)
18395         * FileDialog.cs: Initial check-in (minimal stub)
18396         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18397         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18398         * OpenFileDialog: Initial check-in (minimal stub)
18399         * IComponentEditorPageSite.cs: Initial check-in
18400         * Splitter.cs: Initial check-in (for Jackson)
18401         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18402         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18403         * TextBox.cs: Initial check-in; still needs some wiring to
18404           TextControl backend
18405         * Form.cs: Implemented ControlBox property
18406         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18407         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18408         * TextControl.cs: Added selection functionality; added todo header
18409         * TextBoxBase.cs:
18410           - Implemented Lines property
18411           - Implemented TextHeight property
18412           - Implemented SelectedText property
18413           - Implemented SelectionLength property
18414           - Implemented SelectAll method
18415           - Implemented ToString method
18416           - Removed and cleaned up some debug code
18417           - Implemented (still buggy) mouse text selection
18418
18419 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18420
18421         * ComboBox.cs: Complete DropDownList implementation, fixes.
18422
18423 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18424
18425         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18426         * ComboBoxStyle.cs: ComboBoxStyle enum
18427         * ComboBox.cs: Initial work on ComboBox control
18428
18429 2004-12-21  Peter Bartok  <pbartok@novell.com>
18430
18431         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18432           forward so that anything that creates a window gets the default,
18433           also no longer uses Visible property in CreateParams to avoid
18434           walking up the parent chain and possibly get the wrong visible
18435           status. Fixed IsVisible to no longer walk up to the parent.
18436
18437 2004-12-21  Peter Bartok  <pbartok@novell.com>
18438
18439         * Form.cs (ShowDialog): Unset modality for the proper window
18440  
18441 2004-12-20  Peter Bartok  <pbartok@novell.com>
18442
18443         * CommonDialog.cs: Initial check-in
18444
18445 2004-12-20  Peter Bartok  <pbartok@novell.com>
18446
18447         * Control.cs (Visible): Now uses the parent window instead of the
18448           client area window for the property
18449
18450         * Form.cs
18451           - ShowDialog(): Now uses the proper window for modality
18452           - The default visibility state for the form parent is now false. This
18453             will prevent the user from seeing all the changes to the form and
18454             its controls before the application hits Application.Run()
18455           - Removed some stale commented out code
18456
18457         * NativeWindow.cs:
18458           - Added FindWindow() method to have a method to check for existence
18459             of a window handle
18460           - Added ability to override default exception handling (for example
18461             when debugging with VS.Net; to do this the ExternalExceptionHandler
18462             define must be set
18463           - Removed some useless debug output
18464
18465         * XplatUIX11.cs:
18466           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18467             not working as expected
18468           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18469             property to allow switching back to the modal window if focus is
18470             given to another one of our windows (Application Modal)
18471           - Now only sets override_redirect if we create a window
18472             without WS_CAPTION
18473           - Moved EventMask selection before mapping of newly created window
18474             so we can catch the map event as well
18475           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18476           - Added various Atom related DllImports
18477           - Implemented Exit() method
18478           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18479             in the CreateParams
18480
18481         * MessageBox.cs: Now properly deals with the FormParent window by
18482           providing an override the FormParent CreateParams property to
18483           set as POPUP instead of OVERLAPPED window.
18484
18485 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18486
18487         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18488         Minor code cleanup.
18489
18490 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18491         
18492         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18493
18494 2004-12-18  Peter Bartok  <pbartok@novell.com>
18495
18496         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18497           implementing SetModal() method
18498
18499 2004-12-18  Peter Bartok  <pbartok@novell.com>
18500
18501         * X11Structs.cs (XGCValues): Fixed type of function element
18502         * XplatUI.cs: Added ScrollWindow() method
18503         * XplatUIDriver.cs: Added ScrollWindow() abstract
18504         * XplatUIWin32.cs: Implemented ScrollWindow() method
18505         * XplatUIX11.cs: Implemented ScrollWindow() method
18506         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18507
18508 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18509
18510         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18511         Some more keyboard support (INCOMPLETE)
18512
18513 2004-12-17  Peter Bartok  <pbartok@novell.com>
18514
18515         * TextControl.cs:
18516         - Added color attribute to line tags.
18517         - Added color argument to all functions dealing with tags
18518         - Added color argument support to various functions
18519         - Fixed miss-calculation of baseline/shift in certain circumstances
18520
18521         * TextBoxBase.cs: Added new color option to test code
18522
18523 2004-12-17  Jackson Harper  <jackson@ximian.com>
18524
18525         * TreeNode.cs:
18526         * MonthCalendar.cs: Signature fixes
18527
18528 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18529
18530         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18531         keyboard event moved it.  Create a new graphics context for each paint resolves this
18532
18533 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18534
18535         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18536         Make caret exist and go blink blink.  Initial keyboard support.
18537         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18538         works.
18539
18540 2004-12-17  Jackson Harper  <jackson@ximian.com>
18541
18542         * XplatUIStructs.cs: Updated set of virtual keycodes.
18543         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18544
18545 2004-12-17  Jackson Harper  <jackson@ximian.com>
18546
18547         * XplatUIX11.cs: Prune old keyboard code.
18548
18549 2004-12-17  Jackson Harper  <jackson@ximian.com>
18550
18551         * XplatUIX11.cs: When generating mouse wparams get the modifier
18552         keys from the ModifierKeys property.
18553
18554 2004-12-17  Jackson Harper  <jackson@ximian.com>
18555
18556         * X11Keyboard.cs: Send up/down input when generating
18557         messages. Remove some unused vars.
18558
18559 2004-12-17  Jackson Harper  <jackson@ximian.com>
18560
18561         * TabControl.cs:
18562         * TreeView.cs: get rid of warnings.
18563
18564 2004-12-17  Jackson Harper  <jackson@ximian.com>
18565
18566         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18567
18568 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18569
18570         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18571           CheckedListBox.cs: Implementation
18572
18573 2004-12-17  Peter Bartok  <pbartok@novell.com>
18574
18575         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18576
18577 2004-12-16  Peter Bartok  <pbartok@novell.com>
18578
18579         * TextControl.cs:
18580           - InsertCharAtCaret(): Fixed start pos fixup
18581           - CaretLine_get: No longer derives the line from the tag, the tag
18582             could be stale if lines in the document have been added or deleted
18583           - RebalanceAfterDelete(): Fixed bug in balancing code
18584           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18585           - Line.Streamline(): Now can also elminate leading empty tags
18586           - DumpTree(): Added a few more tests and prevented exception on
18587             uninitialized data
18588           - Added Debug section for Combining lines
18589           - Delete(): Now copies all remaining properties of a line
18590           
18591         * TextBoxBase.cs:
18592           - Left mousebutton now sets the caret (and middle button still acts
18593             as formatting tester, which must go away soon)
18594           - Added Debug section for Deleting/Combining lines
18595           - Fixed calculations for UpdateView after Combining lines
18596
18597 2004-12-16  Peter Bartok  <pbartok@novell.com>
18598
18599         * TextControl.cs: Now properly aligns text on a baseline, using the
18600           new XplatUI.GetFontMetrics() method. Simplified several calculations
18601         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18602           defined
18603
18604 2004-12-16  Peter Bartok  <pbartok@novell.com>
18605
18606         * XplatUI.cs: Added GetFontMetrics() method
18607         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18608         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18609           into libgdiplus, our private GetFontMetrics function
18610         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18611         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18612
18613 2004-12-16  Jackson Harper  <jackson@ximain.com>
18614
18615         * XplatUIStruct.cs: Add enum for dead keys
18616         * X11Keyboard.cs: Map and unmap dead keys.
18617
18618 2004-12-16  Jackson Harper  <jackson@ximian.com>
18619
18620         * X11Keyboard.cs: Detect and use the num lock mask.
18621
18622 2004-12-16  Peter Bartok  <pbartok@novell.com>
18623
18624         * Control.cs (CreateGraphics): Added check to make sure the
18625           handle of the window exists before calling Graphics.FromHwnd()
18626
18627 2004-12-16  Peter Bartok  <pbartok@novell.com>
18628
18629         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18630           contains a lot of code that's not supposed to be there for the
18631           real thing, but required for developing/testing the textbox
18632           backend.
18633
18634 2004-12-16  Peter Bartok  <pbartok@novell.com>
18635
18636         * TextControl.cs:
18637         - Fixed Streamline method
18638         - Added FindTag method to Line
18639         - Added DumpTree method for debugging
18640         - Added DecrementLines() method for deleting lines
18641         - Fixed UpdateView to update the cursor to end-of-line on single-line
18642           updates
18643         - Added PositionCaret() method
18644         - Fixed MoveCaret(LineDown) to move into the last line, too
18645         - Added InsertChar overload
18646         - Fixed InsertChar tag offset calculations
18647         - Added DeleteChar() method
18648         - Added Combine() method for folding lines
18649         - Fixed Delete() method, no longer allocates wasted Line object and
18650           now copies all properties when swapping nodes
18651         - Delete() method now updates document line counter
18652
18653 2004-12-15  Jackson Harper  <jackson@ximian.com>
18654
18655         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18656         * X11Keyboard.cs: Expose the currently selected modifier keys
18657         through a property.
18658
18659 2004-12-15  Peter Bartok  <pbartok@novell.com>
18660
18661         * TextControl.cs: Initial check-in. Still incomplete
18662
18663 2004-12-15  Jackson Harper  <jackson@ximian.com>
18664
18665         * TreeNode.cs:
18666         * TreeView.cs: Fix build on csc (second time today ;-))
18667
18668 2004-12-15  Jackson Harper  <jackson@ximian.com>
18669
18670         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18671         is calculated and use this for click testing.
18672         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18673
18674 2004-12-15  Jackson Harper  <jackson@ximian.com>
18675
18676         * TreeView.cs: Pass the nodes image index to the image list when
18677         drawing that image.
18678
18679 2004-12-15  Jackson Harper  <jackson@ximian.com>
18680
18681         * X11Keyboard.cs: Set messages hwnd.
18682         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18683         post_message calls.
18684
18685 2004-12-15  Jackson Harper  <jackson@ximian.com>
18686
18687         * X11Keyboard.cs: Fix to compile with csc.
18688         
18689 2004-12-15  Jackson Harper  <jackson@ximian.com>
18690
18691         * X11Structs.cs: Add key mask values
18692         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18693         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18694         down/up foo into WM_CHAR foo
18695         * KeyboardLayouts.cs: Common keyboard layouts
18696         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18697         post messages into the main queue.
18698
18699 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18700
18701         * Button.cs: implement ProcessMnemonic
18702         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18703           brushes everytime
18704         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18705         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18706
18707 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18708         
18709         * MonthCalendar.cs: Implemented click-hold for next/previous month
18710           and date selection
18711           
18712 2004-12-11  Peter Bartok  <pbartok@novell.com>
18713
18714         * X11Structs.cs:
18715           - Added XKeyboardState (moved from XplatUIX11.cs)
18716           - Added XCreateGC related enums and structures
18717           - Added GXFunction for XSetFunction
18718
18719         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18720
18721         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18722           CaretVisible() calls
18723
18724         * ToolTip.cs: Added code to prevent stealing focus from app windows
18725
18726         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18727           DestroyCaret, SetCaretPos and CaretVisible)
18728
18729         * XplatUIX11.cs:
18730           - Added implementation for caret functions
18731           - Moved hover variables into a struct, to make it a bit easier
18732             on the eyes and to debug
18733           - Removed XKeyboardState (moved to XplatUIX11.cs)
18734           - Moved Keyboard properties into the properties region
18735
18736         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18737           call to get a graphics context for our control
18738
18739         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18740
18741         * TreeView.cs: Fixed bug. No matter what color was set it would always
18742           return SystemColors.Window
18743
18744         * XplatUIWin32.cs: Implemented caret overrides
18745
18746 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18747
18748         * ListBox.cs: fire events, implement missing methods and properties,
18749         sorting.
18750
18751 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18752
18753         * MonthCalendar.cs: invalidation bug fixing
18754         * ThemeWin32Classic.cs: paint fixing
18755
18756 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18757
18758         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18759         prepare the CGContextRef there now.
18760
18761 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18762
18763         * MonthCalendar.cs:
18764           - optimisationL only invalidate areas that have changed
18765         * ThemeWin32Classic.cs:
18766           - only paint parts that intersect with clip_area
18767
18768 2004-12-09  Peter Bartok  <pbartok@novell.com>
18769
18770         * Application.cs: Undid changes from r37004 which cause problems
18771         on X11
18772
18773 2004-12-09  Ravindra  <rkumar@novell.com>
18774
18775         * ToolBar.cs: Added support for displaying ContextMenu
18776         attached to a button on ToolBar.
18777         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18778         property.
18779
18780 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18781
18782         * Label.cs: autosize works in text change and removes unnecessary
18783         invalidate
18784
18785 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18786
18787         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18788         remove warnings
18789
18790 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18791
18792         * XplatUIOSX.cs: Added mouse move/click/grab support
18793         Remove some debugging WriteLines not needed anymore.
18794         Add window resizing/positioning.
18795         Fix visibility on reparenting.
18796
18797 2004-12-08  Peter Bartok  <pbartok@novell.com>
18798
18799         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18800
18801 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18802
18803         * XplatUIOSX.cs: Initial checkin
18804         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18805
18806 2004-12-03  Ravindra <rkumar@novell.com>
18807
18808         * ListView.cs: Added some keybindings and fixed scrolling.
18809         ScrollBars listen to ValueChanged event instead of Scroll
18810         Event. This would let us take care of all changes being
18811         done in the scrollbars' values programmatically or manually.
18812         * ListView.cs (CanMultiselect): Added a check for shift key.
18813         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18814         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18815         of ListViewSubItemCollection as well.
18816
18817 2004-12-06  Peter Bartok <pbartok@novell.com>
18818
18819         * Control.cs (Parent): Added check and exception to prevent
18820         circular parenting
18821
18822 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18823
18824         * ListBox.cs: implemented clipping, selection single and multiple,
18825         bug fixing
18826
18827 2004-12-03  Ravindra <rkumar@novell.com>
18828
18829         * ListView.cs (ListView_KeyDown):
18830         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18831         when CTRL key is pressed.
18832         * ListViewItem.cs (Selected): Fixed setting the property.
18833
18834 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18835
18836         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18837
18838         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18839         MinimizeBox, ShowInTaskbar, TopMost properties.
18840
18841         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18842         will be implemented).
18843
18844 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18845
18846         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18847
18848         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18849         tests.
18850         
18851         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18852         
18853         * TreeView.cs: BackColor is Colors.Window.
18854
18855 2004-12-01  Jackson Harper  <jackson@ximian.com>
18856
18857         * TreeView.cs: When resizing the tree if the user is making it
18858         smaller we don't get expose events, so we need to handle adding
18859         the horizontal scrollbar in the size changed handler as well as
18860         the expose handler.
18861
18862 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18863
18864         * DrawItemState.cs: fixes wrong enum values
18865
18866 2004-12-01  Jackson Harper  <jackson@ximian.com>
18867
18868         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18869
18870 2004-12-01  Jackson Harper  <jackson@ximian.com>
18871
18872         * NodeLabelEditEventArgs.cs:
18873         * NodeLabelEditEventHandler.cs:
18874         * OpenTreeNodeEnumerator.cs:
18875         * TreeNode.cs:
18876         * TreeNodeCollection.cs:
18877         * TreeView.cs:
18878         * TreeViewAction.cs:
18879         * TreeViewCancelEventArgs.cs:
18880         * TreeViewCancelEventHandler.cs:
18881         * TreeViewEventArgs.cs:
18882         * TreeViewEventHandler.cs: Initial implementation.
18883
18884 2004-12-01  Ravindra <rkumar@novell.com>
18885
18886         * ListView.cs (CalculateListView): Fixed scrolling related
18887         calculations. Also, removed some debug statements from other
18888         places.
18889         * ListViewItem.cs: Changed access to 'selected' instance variable
18890         from private to internal.
18891         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18892
18893 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18894
18895         * ThemeWin32Classic.cs: remove cache of brush and pens for
18896         specific controls and use the global system, fixes scrollbutton
18897         bugs (for small sizes, disabled, etc)
18898         
18899         * ScrollBar.cs: does not show the thumb for very small controls
18900         (as MS) and allow smaller buttons that the regular size
18901
18902 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18903
18904         * UpDownBase.cs: Add abstract methods for the interface.
18905         Add new virtual methods (need to be hooked up to TextEntry when it
18906         exists).
18907         Add override methods for most features.
18908         Computes the size, forces the height of the text entry.
18909
18910         * NumericUpDown.cs: Put here the current testing code.
18911
18912         * Set eol-style property on all files that do not have mixed line
18913         endings, to minimize the future problems.  There are still a few
18914         files with mixed endings, and someone should choose whether they
18915         want to move it or not.
18916
18917 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18918
18919         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18920         System.Colors
18921         
18922 2004-11-30  Ravindra <rkumar@novell.com>
18923
18924         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18925         drawing and replaced use of SystemColors by theme colors.
18926         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18927         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18928         same ListViewItem is being added more than once.
18929
18930 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18931
18932         * MonthCalendar.cs:
18933           - ControlStyles love to make the control not flicker
18934           
18935 2004-11-30  Peter Bartok  <pbartok@novell.com>
18936
18937         * CharacterCasing.cs: Added
18938
18939 2004-11-29  Peter Bartok  <pbartok@novell.com>
18940
18941         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18942           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18943           I am removing these files as they conflict with already completed
18944           work. While it is fantastic to get contributions to MWF, I
18945           respectfully ask that everyone please coordinate their contributions
18946           through mono-winforms-list or #mono-winforms at this time. We're
18947           explicitly avoiding stubbing and don't want controls that don't have
18948           their basic functionality implemented in svn. Please also see
18949           http://www.mono-project.com/contributing/winforms.html
18950
18951
18952 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18953
18954         * Application.cs (ModalRun): Don't hang after exit.
18955
18956         * Theme.cs: New TreeViewDefaultSize property.
18957
18958         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18959         with less hardcoded SystemColors constant.
18960         Implemented TreeViewDefaultSize.
18961
18962         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18963         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18964
18965
18966 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18967
18968         * MonthCalendar.cs:
18969           - Fix NextMonthDate and PrevMonthDate click moving calendar
18970
18971 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18972
18973         * MonthCalendar.cs:
18974           - Fix usage of ScrollChange Property when scrolling months
18975
18976 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18977
18978         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18979          - Fixes menu destroying
18980          - Support adding and removing items on already created menus
18981
18982 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18983
18984         * MonthCalendar.cs:
18985           - Re-worked all bolded dates handling to match win32
18986         * ThemeWin32Classic.cs:
18987           - Fixed rendering with bolded dates
18988
18989 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18990
18991         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18992         - Horizontal scroolbar
18993         - Multicolumn
18994         - Fixes
18995
18996
18997 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18998
18999         * MonthCalendar.cs:
19000           - Fix Usage of MaxSelectionCount from SelectionRange
19001           - Fixed Shift + Cursor Selection
19002           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19003           - Fixed normal cursor selection to be compat with win32
19004           - Fixed Shift + Mouse Click selection
19005
19006 2004-11-24  Peter Bartok <pbartok@novell.com>
19007
19008         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19009         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19010         * XplatUIX11.cs:
19011           - CreatedKeyBoardMsg now updates keystate with Alt key
19012           - Added workaround for timer crash to CheckTimers, Jackson will
19013             develop a proper fix and check in later
19014           - Implemented DispatchMessage
19015           - Removed calling the native window proc from GetMessage (call
19016             now moved to DispatchMessage)
19017
19018         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19019           the keydata (Fixes bug #69831)
19020
19021         * XplatUIWin32.cs:
19022           - (DispatchMessage): Switched to return IntPtr
19023           - Added DllImport for SetFocus
19024
19025 2004-11-24  Ravindra <rkumar@novell.com>
19026
19027         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19028         background drawing.
19029         * ListViewItem.cs: Fixed various properties, calculations
19030         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19031         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19032         and some internal properties. Fixed MouseDown handler and Paint
19033         method.
19034
19035 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19036
19037         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19038
19039 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19040
19041         * ContainerControl.cs: correct accidental check in of local changes
19042
19043 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19044
19045         * ThemeWin32Classic.cs:
19046                 - Fixed Drawing Last month in grid (sometimes not showing)
19047         * MonthCalendar.cs:
19048                 - Fixed title width calculation bug (makeing title small)
19049
19050 2004-11-23  Peter Bartok <pbartok@novell.com>
19051
19052         * XplatUIX11.cs:
19053           - Added generation of WM_MOUSEHOVER event
19054           - Added missing assignment of async_method atom
19055           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19056
19057 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19058
19059         * ThemeWin32Classic.cs:
19060                 - Fixed Drawing of today circle when showtodaycircle not set
19061                 - fixed drawing of first and last month in the grid (gay dates)
19062         * MonthCalendar.cs:
19063                 - Fixed Drawing of today circle
19064                 - Fixed drawing of grady dates
19065                 - Fixed HitTest for today link when ShowToday set to false
19066                 - Fixed DefaultSize to obey ShowToday
19067
19068 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19069
19070         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19071         * System.Windows.Forms/Theme.cs
19072         * MonthCalendar.cs: added for MonthCalendar
19073         * SelectionRange.cs: added for MonthCalendar
19074         * Day.cs: added for MonthCalendar: added for MonthCalendar
19075         * DateRangeEventArgs.cs: added for MonthCalendar
19076         * DateRangeEventHandler.cs: added for MonthCalendar
19077
19078 2004-11-22  Ravindra <rkumar@novell.com>
19079
19080         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19081         property.
19082
19083 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19084
19085         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19086         event handler.
19087         
19088         * NumericUpDown.cs: Added new implementation.
19089         * UpDownBase.cs: Added new implementation.
19090
19091         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19092         implementations.
19093         
19094         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19095         implementations.
19096
19097         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19098         methods.
19099
19100 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19101
19102         * Timer.cs  (Dispose): Should call the base dispose when
19103         overriding.
19104
19105 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19106
19107         * ScrollBar.cs: updates thumb position when max, min or increment
19108         is changed
19109
19110 2004-11-21  Ravindra <rkumar@novell.com>
19111
19112         * ListView.cs: Implemented item selection, activation and
19113         column header style. Fixed properties to do a redraw, if
19114         required. Added support for MouseHover, DoubleClick, KeyDown
19115         and KeyUp event handling and some minor fixes.
19116         * ListViewItem.cs: Fixed constructor.
19117         * ThemeWin32Classic.cs: Improved drawing for ListView.
19118
19119 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19120
19121         * ThemeWin32Classic.cs: initial listbox drawing code
19122         * DrawMode.cs: new enumerator
19123         * ListControl.cs: stubbed class
19124         * ListBox.cs: initial implementation
19125         * Theme.cs: new methods definitions
19126         * SelectionMode.cs: new enumerator
19127
19128 2004-11-17  Peter Bartok  <pbartok@novell.com>
19129
19130         * XplatUIWin32.cs: Added double-click events to the class style
19131         * Control.cs (WndProc):
19132           - Added handling of click-count to MouseDown/ MouseUp events.
19133           - Added handling of middle and right mouse buttons
19134           - Removed old debug code
19135
19136 2004-11-17  Jackson Harper  <jackson@ximian.com>
19137
19138         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19139
19140 2004-11-17  Ravindra <rkumar@novell.com>
19141
19142         * ListView.cs: Added event handling for MouseMove/Up/Down.
19143         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19144         * ThemeWin32Classic.cs: We need to clear the graphics context and
19145         draw column header in a proper state.
19146
19147
19148 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19149
19150         *  Menu.cs: fixes signature
19151
19152 2004-11-16  Peter Bartok  <pbartok@novell.com>
19153
19154         * XplatUIX11.cs (GetMessage): Implemented generation of
19155           double click mouse messages
19156
19157 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19158
19159         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19160         not by menu
19161
19162 2004-11-11  Peter Bartok  <pbartok@novell.com>
19163
19164         * HandleData.cs: Added Visible property
19165         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19166           HandleData
19167         * XplatUIX11.cs: Removed old debug leftovers
19168         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19169         * Control.cs (WndProc): Removed old debug leftovers,
19170           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19171           needed WM_SIZE handling
19172
19173 2004-11-11  Jackson Harper  <jackson@ximian.com>
19174
19175         * OwnerDrawPropertyBag.cs:
19176         * TreeViewImageIndexConverter.cs: Initial implementation
19177
19178 2004-11-10  Jackson Harper  <jackson@ximian.com>
19179
19180         * ThemeWin32Classic.cs:
19181         * TabControl.cs: instead of moving tabs by the slider pos just
19182         start drawing at the tab that is offset by the slider. This way
19183         scrolling always moves by exactly one tab.
19184
19185 2004-11-10  Jackson Harper  <jackson@ximian.com>
19186
19187         * TabControl.cs: You can only scroll left when the slider has
19188         already ben moved right.
19189         
19190 2004-11-10  Jackson Harper  <jackson@ximian.com>
19191
19192         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19193         the clip area.
19194         
19195 2004-11-10  Jackson Harper  <jackson@ximian.com>
19196
19197         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19198         clip area.
19199         
19200 2004-11-09  Jackson Harper  <jackson@ximian.com>
19201
19202         * TabControl.cs (CalcXPos): New helper method so we can determine
19203         the proper place to start drawing vertical tabs.
19204         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19205         
19206 2004-11-09  Jackson Harper  <jackson@ximian.com>
19207
19208         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19209         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19210         and Bottom, left and right are illegal values for this and
19211         multiline is enabled when the alignment is set to left or right.
19212         (DrawTab): Each alignment block should draw the text itself now
19213         because Left requires special love. Also add rendering for Left
19214         aligned tabs.
19215         
19216 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19217
19218         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19219         does not destroy the windows, removes debugging messages
19220
19221 2004-11-09  jba  <jba-mono@optusnet.com.au>
19222
19223         * ThemeWin32Classic.cs
19224         (DrawButtonBase): Fix verticle text rect clipping in windows
19225         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19226         rendering and incorrect text rect clipping
19227         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19228         rendering and incorrect text rect clipping
19229         
19230 2004-11-08  Jackson Harper  <jackson@ximian.com>
19231
19232         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19233         bottom when they are bottom aligned so the bottoms of the tabs get
19234         displayed.
19235         * TabControl.cs (DropRow): Move rows up instead of down when the
19236         tab control is bottom aligned.
19237
19238 2004-11-08 13:59  pbartok
19239
19240         * XplatUIX11.cs:
19241           - Added handling for various window styles
19242           - Added handling for popup windows
19243           - Added SetTopmost handling
19244
19245 2004-11-08 13:55  pbartok
19246
19247         * XplatUIWin32.cs:
19248           - Added argument to SetTopmost method
19249           - Fixed broken ClientToScreen function
19250
19251 2004-11-08 13:53  pbartok
19252
19253         * XplatUIStructs.cs:
19254           - Added missing WS_EX styles
19255
19256 2004-11-08 13:53  pbartok
19257
19258         * XplatUI.cs, XplatUIDriver.cs:
19259           - Added argument to SetTopmost
19260
19261 2004-11-08 13:52  pbartok
19262
19263         * X11Structs.cs:
19264           - Added XSetWindowAttributes structure
19265           - Improved XWindowAttributes structure
19266           - Added SetWindowValuemask enum
19267           - Added window creation arguments enum
19268           - Added gravity enum
19269           - Added Motif hints structure
19270           - Added various Motif flags and enums
19271           - Added PropertyMode enum for property functions
19272
19273 2004-11-08 13:50  pbartok
19274
19275         * Form.cs:
19276           - Fixed arguments for updated SetTopmost method
19277
19278 2004-11-08 13:49  pbartok
19279
19280         * ToolTip.cs:
19281           - Fixed arguments for updated SetTopmost function
19282           - Fixed usage of PointToClient
19283
19284 2004-11-08 13:44  pbartok
19285
19286         * MenuAPI.cs:
19287           - Added Clipping of children and siblings
19288
19289 2004-11-08 13:41  pbartok
19290
19291         * MainMenu.cs:
19292           - Removed SetMenuBarWindow call. We do this in Form.cs
19293
19294 2004-11-08 13:40  jackson
19295
19296         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19297           scrolling jimmi in the correct location with bottom aligned tabs
19298
19299 2004-11-08 13:36  pbartok
19300
19301         * ContainerControl.cs:
19302           - Implemented BindingContext
19303           - Implemented ParentForm
19304
19305 2004-11-08 12:46  jackson
19306
19307         * TabControl.cs: Put bottom rendered tabs in the right location
19308
19309 2004-11-08 07:15  jordi
19310
19311         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19312           removes dead code
19313
19314 2004-11-05 17:30  jackson
19315
19316         * TabControl.cs: When selected tabs are expanded make sure they
19317           don't go beyond the edges of the tab control
19318
19319 2004-11-05 14:57  jackson
19320
19321         * TabControl.cs: Reset show_slider so if the control is resized to
19322           a size where it is no longer needed it's not displayed anymore
19323
19324 2004-11-05 13:16  jackson
19325
19326         * TabControl.cs: Make tab pages non visible when added to the
19327           control
19328
19329 2004-11-05 12:42  jackson
19330
19331         * TabControl.cs: Implement SizeMode.FillToRight
19332
19333 2004-11-05 12:16  jackson
19334
19335         * Control.cs: Do not call CreateHandle if the handle is already
19336           created
19337
19338 2004-11-05 11:46  jackson
19339
19340         * TabControl.cs: Remove superflous call to CalcTabRows
19341
19342 2004-11-05 09:07  jackson
19343
19344         * XplatUIX11.cs: Update for Mono.Posix changes
19345
19346 2004-11-05 07:00  ravindra
19347
19348         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19349           scrolling.
19350
19351 2004-11-04 22:47  jba
19352
19353         * ThemeWin32Classic.cs:
19354           - Fix Button rendering for FlatStyle = Flat or Popup
19355           - Fix RadioButton and CheckBox rendering when Appearance = Button
19356             (normal and flatstyle).
19357           - Correct outer rectangle color when drawing focus rectangle
19358           - Adjust button bounds to be 1 px smaller when focused
19359           - Make button not draw sunken 3d border when pushed (windows compat)
19360           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19361           - Offset the text in RadioButton and Checkbox when being rendered as
19362           a button.
19363           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19364           radiobuttons
19365           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19366           - Fixed disabled text rendering for normally rendered radiobuttons
19367
19368 2004-11-04 10:26  jackson
19369
19370         * TabControl.cs: Recalculate tab rows when resizing
19371
19372 2004-11-04 07:47  jordi
19373
19374         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19375           collection completion, drawing issues, missing features
19376
19377 2004-11-04 05:03  ravindra
19378
19379         * ScrollBar.cs:
19380                 - We need to recalculate the Thumb area when
19381                 LargeChange/maximum/minimum values are changed.
19382           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19383                 than minimum. This is required to handle the case if large_change is
19384                 more than max, and use LargeChange property instead of large_change
19385                 variable.
19386           - We return max+1 when large_change is more than max, like MS does.
19387
19388 2004-11-04 04:29  ravindra
19389
19390         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19391                 - Changed default value signatures (prefixed all with ListView).
19392                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19393                 ListView.
19394           - Fixed calculations for ListViewItem and implemented Clone()
19395           method.
19396
19397 2004-11-04 04:26  ravindra
19398
19399         * Theme.cs, ThemeWin32Classic.cs:
19400                 - Changed default ListView values signatures (prefixed all with
19401                 ListView).
19402           - Fixed default size values for VScrollBar and HScrollBar.
19403                 - Fixed DrawListViewItem method.
19404
19405 2004-11-04 04:05  ravindra
19406
19407         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19408
19409 2004-11-04 04:04  ravindra
19410
19411         * ImageList.cs: Implemented the missing overload for Draw method.
19412
19413 2004-11-03 19:29  jackson
19414
19415         * TabControl.cs: Handle dropping rows on selection properly
19416
19417 2004-11-03 11:59  jackson
19418
19419         * TabControl.cs: remove debug code
19420
19421 2004-11-03 11:52  jackson
19422
19423         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19424           the scrolly widgerywoo
19425
19426 2004-11-02 13:52  jackson
19427
19428         * TabControl.cs: Resize the tab pages and tabs when the tab control
19429           is resized
19430
19431 2004-11-02 13:40  jackson
19432
19433         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19434           selected tab to the bottom
19435
19436 2004-11-02 13:39  jackson
19437
19438         * TabPage.cs: Store the tab pages row
19439
19440 2004-11-02 12:33  jordi
19441
19442         * MenuItem.cs: fixes handle creation
19443
19444 2004-11-02 11:42  jackson
19445
19446         * TabControl.cs: signature fix
19447
19448 2004-11-02 08:56  jackson
19449
19450         * TabControl.cs: Calculate whether the tab is on an edge properly.
19451           Remove top secret debugging code
19452
19453 2004-11-01 19:57  jackson
19454
19455         * TabControl.cs: Add click handling, and proper sizing
19456
19457 2004-11-01 19:47  jackson
19458
19459         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19460           tab controls
19461
19462 2004-11-01 19:39  jackson
19463
19464         * TabPage.cs: add internal property to store the bounds of a tab
19465           page
19466
19467 2004-10-30 04:23  ravindra
19468
19469         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19470           values.
19471
19472 2004-10-30 04:21  ravindra
19473
19474         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19475           fixed calculations.
19476
19477 2004-10-30 03:06  pbartok
19478
19479         * XplatUIX11.cs:
19480           - Removed extension of DllImported libs
19481
19482 2004-10-29 09:55  jordi
19483
19484         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19485           navigation, itemcollection completion, menu fixes
19486
19487 2004-10-27 22:58  pbartok
19488
19489         * XplatUIX11.cs:
19490           - Now throws a nice error message when no X display could be opened
19491
19492 2004-10-26 13:51  jordi
19493
19494         * ListView.cs: removes warning
19495
19496 2004-10-26 03:55  ravindra
19497
19498         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19499           ThemeWin32Classic.cs: Some formatting for my last checkins.
19500
19501 2004-10-26 03:36  ravindra
19502
19503         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19504           control and default values.
19505
19506 2004-10-26 03:35  ravindra
19507
19508         * Theme.cs: Added some default values for ListView control.
19509
19510 2004-10-26 03:33  ravindra
19511
19512         * ToolBar.cs: ToolBar should use the user specified button size, if
19513           there is any. Added a size_specified flag for the same.
19514
19515 2004-10-26 03:33  ravindra
19516
19517         * ColumnHeader.cs: Added some internal members and calculations for
19518           ColumnHeader.
19519
19520 2004-10-26 03:32  ravindra
19521
19522         * ListViewItem.cs: Calculations for ListViewItem.
19523
19524 2004-10-26 03:31  ravindra
19525
19526         * ListView.cs: Added some internal members and calculations for
19527           ListView.
19528
19529 2004-10-22 13:31  jordi
19530
19531         * MenuAPI.cs: speedup menus drawing
19532
19533 2004-10-22 13:16  jackson
19534
19535         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19536           expose event
19537
19538 2004-10-22 11:49  jackson
19539
19540         * Control.cs: oops
19541
19542 2004-10-22 11:41  jackson
19543
19544         * Control.cs: Check to see if the window should have its background
19545           repainted by X when drawing.
19546
19547 2004-10-22 11:31  jackson
19548
19549         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19550           clear is true, this way we do not get flicker from X repainting the
19551           background
19552
19553 2004-10-22 11:28  jackson
19554
19555         * XEventQueue.cs: Queue properly
19556
19557 2004-10-21 09:38  jackson
19558
19559         * XEventQueue.cs: Fix access modifier
19560
19561 2004-10-21 09:36  jackson
19562
19563         * XEventQueue.cs: Don't loose messages
19564
19565 2004-10-21 09:22  jackson
19566
19567         * XEventQueue.cs: Don't loose messages
19568
19569 2004-10-20 04:15  jordi
19570
19571         * BootMode.cs: enum need it by SystemInfo
19572
19573 2004-10-19 21:58  pbartok
19574
19575         * XplatUIWin32.cs:
19576           - Small sanity check
19577
19578 2004-10-19 21:56  pbartok
19579
19580         * Form.cs:
19581           - Added private FormParentWindow class which acts as the container
19582             for our form and as the non-client area where menus are drawn
19583           - Added/Moved required tie-ins to Jordi's menus
19584           - Fixed/Implemented the FormStartPosition functionality
19585
19586 2004-10-19 21:52  pbartok
19587
19588         * Control.cs:
19589           - Removed unneeded locals
19590           - Added code to all size and location properties to understand and
19591             deal with the parent container of Form
19592
19593 2004-10-19 21:33  pbartok
19594
19595         * Application.cs:
19596           - Fixed to deal with new Form subclasses for menus
19597
19598 2004-10-19 17:48  jackson
19599
19600         * XEventQueue.cs: commit correct version of file
19601
19602 2004-10-19 16:50  jackson
19603
19604         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19605
19606 2004-10-19 16:15  jordi
19607
19608         * MenuAPI.cs: MenuBarCalcSize returns the height
19609
19610 2004-10-19 08:31  pbartok
19611
19612         * Control.cs:
19613           - Added missing call to PreProcessMessage before calling OnXXXKey
19614           methods
19615
19616 2004-10-19 00:04  ravindra
19617
19618         * ToolTip.cs: Fixed constructor.
19619
19620 2004-10-18 09:31  jordi
19621
19622         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19623
19624 2004-10-18 09:26  jordi
19625
19626         * MenuItem.cs: fixes MenuItem class signature
19627
19628 2004-10-18 08:56  jordi
19629
19630         * MenuAPI.cs: prevents windows from showing in the taskbar
19631
19632 2004-10-18 00:28  ravindra
19633
19634         * ToolTip.cs: Suppressed a warning message.
19635
19636 2004-10-18 00:27  ravindra
19637
19638         * Control.cs: Default value of visible property must be true.
19639
19640 2004-10-17 23:19  pbartok
19641
19642         * ToolTip.cs:
19643           - Complete implementation
19644
19645 2004-10-17 23:19  pbartok
19646
19647         * XplatUIX11.cs:
19648           - Added EnableWindow method
19649           - Added SetModal stub
19650           - Added generation of WM_ACTIVATE message (still needs testing)
19651           - Added SetTopMost stub
19652           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19653
19654 2004-10-17 23:17  pbartok
19655
19656         * XplatUIWin32.cs:
19657           - Removed VirtualKeys to XplatUIStructs
19658           - Implemented SetTopMost method
19659           - Implemented EnableWindow method
19660           - Bugfix in ScreenToClient()
19661           - Bugfixes in ClientToScreen()
19662
19663 2004-10-17 22:51  pbartok
19664
19665         * XplatUIStructs.cs:
19666           - Added WS_EX styles to WindowStyles enumeration
19667
19668 2004-10-17 22:50  pbartok
19669
19670         * XplatUI.cs, XplatUIDriver.cs:
19671           - Added method for enabling/disabling windows
19672           - Added method for setting window modality
19673           - Added method for setting topmost window
19674
19675 2004-10-17 22:49  pbartok
19676
19677         * ThemeWin32Classic.cs:
19678           - Added ToolTip drawing code
19679
19680 2004-10-17 22:49  pbartok
19681
19682         * Theme.cs:
19683           - Added ToolTip abstracts
19684
19685 2004-10-17 22:47  pbartok
19686
19687         * Form.cs:
19688           - Fixed Form.ControlCollection to handle owner relations
19689           - Added Owner/OwnedForms handling
19690           - Implemented Z-Ordering for owned forms
19691           - Removed unneeded private overload of ShowDialog
19692           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19693             so I hope)
19694           - Fixed Close(), had wrong default
19695           - Added firing of OnLoad event
19696           - Added some commented out debug code for Ownership handling
19697
19698 2004-10-17 22:16  pbartok
19699
19700         * Control.cs:
19701           - Fixed/implemented flat list of controls
19702
19703 2004-10-17 22:14  pbartok
19704
19705         * Application.cs:
19706           - Added code to simulate modal dialogs on Win32
19707
19708 2004-10-17 16:11  jordi
19709
19710         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19711           mouse event
19712
19713 2004-10-17 13:39  jordi
19714
19715         * MenuAPI.cs: menu drawing fixes
19716
19717 2004-10-15 09:10  ravindra
19718
19719         * StructFormat.cs: General Enum.
19720
19721 2004-10-15 09:09  ravindra
19722
19723         * SizeGripStyle.cs: Enum for Form.
19724
19725 2004-10-15 09:08  ravindra
19726
19727         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19728           in Theme for ListView.
19729
19730 2004-10-15 09:06  ravindra
19731
19732         * ColumnHeader.cs: Flushing some formatting changes.
19733
19734 2004-10-15 09:05  ravindra
19735
19736         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19737           style.
19738
19739 2004-10-15 09:03  ravindra
19740
19741         * ListView.cs: Implemented Paint method and fixed coding style.
19742
19743 2004-10-15 07:34  jordi
19744
19745         * MenuAPI.cs: fix for X11
19746
19747 2004-10-15 07:32  ravindra
19748
19749         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19750                 - Renamed Paint() method to Draw() for clarity. Also, moved
19751                 DrawImage() to OnPaint().
19752
19753 2004-10-15 07:25  ravindra
19754
19755         * CheckBox.cs, RadioButton.cs:
19756                 - Removed Redraw (), we get it from ButtonBase.
19757                 - Implemented Paint (), to do class specific painting.
19758
19759 2004-10-15 07:16  ravindra
19760
19761         * ButtonBase.cs:
19762                 - Redraw () is not virtual now.
19763                 - Added an internal virtual method Paint (), so that
19764                 derived classes can do their painting on their own.
19765                 - Modified OnPaint () to call Paint ().
19766
19767 2004-10-15 06:43  jordi
19768
19769         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19770           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19771
19772 2004-10-15 00:30  ravindra
19773
19774         * MessageBox.cs:
19775                 - MessageBox on windows does not have min/max buttons.
19776                 This change in CreateParams fixes this on Windows. We
19777                 still need to implement this windowstyle behavior in
19778                 our X11 driver.
19779
19780 2004-10-14 05:14  ravindra
19781
19782         * ToolBar.cs:
19783                 - Changed Redraw () to do a Refresh () always.
19784                 - Fixed the MouseMove event handling when mouse is pressed,
19785                 ie drag event handling.
19786                 - Replaced the usage of ToolBarButton.Pressed property to
19787                 ToolBarButton.pressed internal variable.
19788
19789 2004-10-14 05:10  ravindra
19790
19791         * ToolBarButton.cs:
19792                 - Added an internal member 'inside' to handle mouse move
19793                 with mouse pressed ie mouse drag event.
19794                 - Changed 'Pressed' property to return true only when
19795                 'inside' and 'pressed' are both true.
19796                 - Some coding style love.
19797
19798 2004-10-14 00:17  ravindra
19799
19800         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19801           public method.
19802
19803 2004-10-14 00:15  ravindra
19804
19805         * ButtonBase.cs: Redraw () related improvements.
19806
19807 2004-10-14 00:14  ravindra
19808
19809         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19810           removed unnecessary calls to Button.Show () method.
19811
19812 2004-10-13 17:50  pbartok
19813
19814         * XplatUIX11.cs:
19815           - Formatting fix
19816           - Removed destroying of window until we solve the problem of X
19817             destroying the window before us on shutdown
19818
19819 2004-10-13 16:32  pbartok
19820
19821         * ButtonBase.cs:
19822           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19823
19824 2004-10-13 14:18  pbartok
19825
19826         * XplatUIX11.cs:
19827           - Added code to destroy the X window
19828
19829 2004-10-13 14:18  pbartok
19830
19831         * XplatUIWin32.cs:
19832           - Added code to destroy a window
19833
19834 2004-10-13 14:12  pbartok
19835
19836         * ButtonBase.cs:
19837           - Added the Redraw on Resize that got dropped in the last rev
19838
19839 2004-10-13 09:06  pbartok
19840
19841         * ThemeWin32Classic.cs:
19842           - Path from John BouAntoun:
19843             * Fix check rendering (centre correctly for normal style, offset
19844               correctly for FlatStyle).
19845             * Fix border color usage (use backcolor) for FlatStyle.Popup
19846             * Use checkbox.Capture instead of checkbox.is_pressed when
19847               rendering flatstyle states.
19848
19849 2004-10-12 21:48  pbartok
19850
19851         * ThemeWin32Classic.cs:
19852           - Removed all occurences of SystemColors and replaced them with the
19853             matching theme color
19854
19855 2004-10-12 21:41  pbartok
19856
19857         * ThemeWin32Classic.cs:
19858           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19859             him using the function for flatstyle drawing
19860           - Changed functions to use the new version of CPDrawBorder3D
19861
19862 2004-10-12 21:15  pbartok
19863
19864         * ControlPaint.cs:
19865           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19866             match MS documentation. They need to return defined colors if the
19867             passed color matches the configured control color. Thanks to John
19868             BouAntoun for pointing this out.
19869
19870 2004-10-12 20:57  pbartok
19871
19872         * Control.cs:
19873           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19874             color is changed
19875
19876 2004-10-12 20:46  pbartok
19877
19878         * CheckBox.cs:
19879           - Fix from John BouAntoun: Now properly sets the Appearance property
19880
19881 2004-10-12 20:45  pbartok
19882
19883         * ThemeWin32Classic.cs:
19884           - Fixes from John BouAntoun: now handles forecolors and backcolors
19885             for flatstyle rendered controls much better; It also fixes normal
19886             checkbox rendering when pushed or disabled.
19887
19888 2004-10-08 02:50  jordi
19889
19890         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19891           work
19892
19893 2004-10-07 08:56  jordi
19894
19895         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19896
19897 2004-10-06 03:59  jordi
19898
19899         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19900           XplatUIWin32.cs: removes warnings from compilation
19901
19902 2004-10-05 12:23  jackson
19903
19904         * RadioButton.cs: Fix ctor
19905
19906 2004-10-05 11:10  pbartok
19907
19908         * MessageBox.cs:
19909           - Partial implementation by Benjamin Dasnois
19910
19911 2004-10-05 10:15  jackson
19912
19913         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19914           by John BouAntoun
19915
19916 2004-10-05 03:07  ravindra
19917
19918         * ToolBar.cs:
19919                 - Removed a private method, Draw ().
19920                 - Fixed the ButtonDropDown event handling.
19921                 - Fixed MouseMove event handling.
19922
19923 2004-10-05 03:04  ravindra
19924
19925         * ThemeWin32Classic.cs:
19926                 - Added DrawListView method and ListViewDefaultSize property.
19927                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19928                 - Changed DOS style CRLF to Unix format (dos2unix).
19929
19930 2004-10-05 03:03  ravindra
19931
19932         * Theme.cs:
19933                 - Added DrawListView method and ListViewDefaultSize property.
19934
19935 2004-10-05 02:42  ravindra
19936
19937         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19938           clicks on DropDown arrow.
19939
19940 2004-10-04 22:56  jackson
19941
19942         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19943           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19944           Control handle the buffers, derived classes should not have to
19945           CreateBuffers themselves.
19946
19947 2004-10-04 21:20  jackson
19948
19949         * StatusBar.cs: The control handles resizing the buffers now.
19950
19951 2004-10-04 21:18  jackson
19952
19953         * Control.cs: When resizing the buffers should be invalidated. This
19954           should be handled in Control not in derived classes.
19955
19956 2004-10-04 14:45  jackson
19957
19958         * TabPage.cs: oops
19959
19960 2004-10-04 02:14  pbartok
19961
19962         * LeftRightAlignment.cs:
19963           - Initial check-in
19964
19965 2004-10-04 01:09  jordi
19966
19967         * ThemeWin32Classic.cs: fixes right button position causing right
19968           button not showing on horizontal scrollbars
19969
19970 2004-10-02 13:12  pbartok
19971
19972         * XplatUIX11.cs:
19973           - Simplified the Invalidate method by using an X call instead of
19974             generating the expose ourselves
19975           - Added an expose when the window background is changed
19976           - Implemented ClientToScreen method
19977
19978 2004-10-02 13:08  pbartok
19979
19980         * XplatUIWin32.cs:
19981           - Added Win32EnableWindow method (test for implementing modal
19982           dialogs)
19983           - Added ClientToScreen method and imports
19984
19985 2004-10-02 13:07  pbartok
19986
19987         * XplatUI.cs, XplatUIDriver.cs:
19988           - Added ClientToScreen coordinate translation method
19989
19990 2004-10-02 13:06  pbartok
19991
19992         * KeyPressEventArgs.cs:
19993           - Fixed access level for constructor
19994
19995 2004-10-02 13:06  pbartok
19996
19997         * NativeWindow.cs:
19998           - Changed access level for the window_collection hash table
19999
20000 2004-10-02 13:05  pbartok
20001
20002         * Form.cs:
20003           - Added KeyPreview property
20004           - Added Menu property (still incomplete, pending Jordi's menu work)
20005           - Implemented ProcessCmdKey
20006           - Implemented ProcessDialogKey
20007           - Implemented ProcessKeyPreview
20008
20009 2004-10-02 13:02  pbartok
20010
20011         * Control.cs:
20012           - Added private method to get the Control object from the window
20013           handle
20014           - Implemented ContextMenu property
20015           - Implemented PointToScreen
20016           - Implemented PreProcessMessage
20017           - Implemented IsInputChar
20018           - Implemented IsInputKey
20019           - Implemented ProcessCmdKey
20020           - Completed ProcessKeyEventArgs
20021           - Fixed message loop to call the proper chain of functions on key
20022           events
20023           - Implemented ProcessDialogChar
20024           - Implemented ProcessDialogKey
20025           - Implemented ProcessKeyMessage
20026           - Implemented ProcessKeyPreview
20027           - Added RaiseDragEvent stub (MS internal method)
20028           - Added RaiseKeyEvent stub (MS internal method)
20029           - Added RaiseMouseEvent stub (MS Internal method)
20030           - Added RaisePaintEvent stub (MS Internal method)
20031           - Added ResetMouseEventArgs stub (MS Internal method)
20032           - Implemented RtlTranslateAlignment
20033           - Implemented RtlTranslateContent
20034           - Implemented RtlTranslateHorizontal
20035           - Implemented RtlTranslateLeftRight
20036           - Added generation of KeyPress event
20037
20038 2004-10-02 05:57  ravindra
20039
20040         * ListViewItem.cs: Added attributes.
20041
20042 2004-10-02 05:32  ravindra
20043
20044         * ListView.cs: Added attributes.
20045
20046 2004-10-01 11:53  jackson
20047
20048         * Form.cs: Implement the Close method so work on MessageBox can
20049           continue.
20050
20051 2004-09-30 14:06  pbartok
20052
20053         * XplatUIX11.cs:
20054           - Bug fixes
20055
20056 2004-09-30 11:34  jackson
20057
20058         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20059
20060 2004-09-30 07:26  ravindra
20061
20062         * ListViewItemConverter.cs: Converter for ListViewItem.
20063
20064 2004-09-30 07:26  ravindra
20065
20066         * SortOrder.cs: Enum for ListView control.
20067
20068 2004-09-30 07:25  ravindra
20069
20070         * ColumnHeader.cs: Supporting class for ListView control.
20071
20072 2004-09-30 07:24  ravindra
20073
20074         * ListView.cs, ListViewItem.cs: Initial implementation.
20075
20076 2004-09-30 07:20  ravindra
20077
20078         * ItemActivation.cs: Enum for ListView Control.
20079
20080 2004-09-29 20:29  pbartok
20081
20082         * XplatUIX11.cs:
20083           - Added lookup of pixel value for background color; tries to get a
20084             color 'close' to the requested color, it avoids having to create a
20085             colormap.  Depending on the display this could mean the used color
20086             is slightly off the desired color. Might have to change it to a more
20087             resource intensive colormap approach, but it will work as a
20088           workaround to avoid red screens.
20089
20090 2004-09-29 14:27  jackson
20091
20092         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20093
20094 2004-09-28 12:44  pbartok
20095
20096         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20097           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20098           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20099           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20100           TrackBar.cs, VScrollBar.cs:
20101           - Streamlined Theme interfaces:
20102             * Each DrawXXX method for a control now is passed the object for
20103               the control to be drawn in order to allow accessing any state the
20104               theme might require
20105
20106             * ControlPaint methods for the theme now have a CP prefix to avoid
20107               name clashes with the Draw methods for controls
20108
20109             * Every control now retrieves it's DefaultSize from the current
20110             theme
20111
20112 2004-09-28 12:17  jackson
20113
20114         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20115           drawing
20116
20117 2004-09-24 14:57  jackson
20118
20119         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20120           Gives us a nice little performance boost.
20121
20122 2004-09-24 12:02  jackson
20123
20124         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20125           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20126           Control and supporting classes. Initial checkin
20127
20128 2004-09-23 13:08  jackson
20129
20130         * Form.cs: Temp build fixage
20131
20132 2004-09-23 01:39  ravindra
20133
20134         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20135           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20136           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20137           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20138           EventHandlers needed by ListView Control.
20139
20140 2004-09-22 14:12  pbartok
20141
20142         * ScrollableControl.cs:
20143           - Implemented DockPadding property
20144           - Implemented AutoScroll property
20145           - Implemented AutoScrollMargin property
20146           - Implemented AutoScrollMinSize property
20147           - Implemented AutoScrollPosition property
20148           - Implemented DisplayRectangle property (still incomplete)
20149           - Implemented CreateParams property
20150           - Implemented HScroll property
20151           - Implemented VScroll property
20152           - Implemented OnVisibleChanged property
20153
20154 2004-09-22 14:09  pbartok
20155
20156         * Form.cs:
20157           - Added Form.ControllCollection class
20158           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20159             RemoveOwnedForm (still incomplete, missing on-top and common
20160             minimize/maximize behaviour)
20161           - Added StartPosition property (still incomplete, does not use when
20162             creating the form)
20163           - Added ShowDialog() methods (still incomplete, missing forcing the
20164             dialog modal)
20165
20166 2004-09-22 14:05  pbartok
20167
20168         * Application.cs:
20169           - Added message loop for modal dialogs
20170
20171 2004-09-22 14:02  pbartok
20172
20173         * GroupBox.cs:
20174           - Fixed wrong types for events
20175
20176 2004-09-22 14:00  pbartok
20177
20178         * Shortcut.cs, FormWindowState.cs:
20179           - Fixed wrong values
20180
20181 2004-09-22 12:01  jackson
20182
20183         * Control.cs: Text is never null
20184
20185 2004-09-20 22:14  pbartok
20186
20187         * XplatUIWin32.cs:
20188           - Fixed accessibility level for Idle handler
20189
20190 2004-09-20 18:54  jackson
20191
20192         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20193           XplatUIX11.cs: New message loop that uses poll so we don't get a
20194           busy loop
20195
20196 2004-09-17 10:43  pbartok
20197
20198         * ScrollBar.cs:
20199           - Fixed behaviour of arrow buttons. Now properly behaves like
20200             Buttons (and like Microsoft's scrollbar arrow buttons)
20201
20202 2004-09-17 10:14  pbartok
20203
20204         * ScrollBar.cs:
20205           - Added missing release of keyboard/mouse capture
20206
20207 2004-09-17 06:18  jordi
20208
20209         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20210           Theme.cs: Very early menu support
20211
20212 2004-09-16 17:45  pbartok
20213
20214         * XplatUIWin32.cs:
20215           - Fixed sending a window to the front
20216           - Added overload for SetWindowPos to avoid casting
20217
20218 2004-09-16 17:44  pbartok
20219
20220         * Control.cs:
20221           - Added SendToBack and BringToFront methods
20222
20223 2004-09-16 07:00  ravindra
20224
20225         * Copyright: Added Novell URL.
20226
20227 2004-09-16 07:00  ravindra
20228
20229         * ToolBar.cs: Invalidate should be done before redrawing.
20230
20231 2004-09-15 21:19  ravindra
20232
20233         * ColumnHeaderStyle.cs: Enum for ListView Control.
20234
20235 2004-09-15 21:18  ravindra
20236
20237         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20238           ListView Control.
20239
20240 2004-09-13 18:26  jackson
20241
20242         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20243           properly
20244
20245 2004-09-13 18:13  jackson
20246
20247         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20248           a second thread and post messages into the main threads message
20249           queue. This makes timing much more consistent. Both win2K and XP
20250           have a minimum timer value of 15 milliseconds, so we now do this
20251           too.
20252
20253 2004-09-13 15:18  pbartok
20254
20255         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20256           XplatUIX11.cs:
20257           - Added Z-Ordering methods
20258
20259 2004-09-13 10:56  pbartok
20260
20261         * Form.cs:
20262           - Fixed #region names
20263           - Moved properties and methods into their proper #regions
20264
20265 2004-09-13 10:51  pbartok
20266
20267         * Form.cs:
20268           - Added Accept and CancelButton properties
20269           - Added ProcessDialogKey() method
20270
20271 2004-09-13 08:18  pbartok
20272
20273         * IWindowTarget.cs:
20274           - Initial check-in
20275
20276 2004-09-10 21:50  pbartok
20277
20278         * Control.cs:
20279           - Added DoDragDrop() [incomplete]
20280           - Properly implemented 'Visible' handling
20281           - Added SetVisibleCore()
20282           - Implemented FindChildAtPoint()
20283           - Implemented GetContainerControl()
20284           - Implemented Hide()
20285
20286 2004-09-10 19:28  pbartok
20287
20288         * Control.cs:
20289           - Moved methods into their appropriate #regions
20290           - Reordered methods within regions alphabetically
20291
20292 2004-09-10 18:57  pbartok
20293
20294         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20295           - Added method to retrieve text from window
20296
20297 2004-09-10 18:56  pbartok
20298
20299         * Control.cs:
20300           - Moved some internal functions into the internal region
20301           - Implemented FontHeight
20302           - Implemented RenderRightToLeft
20303           - Implemented ResizeRedraw
20304           - Implemented ShowFocusCues
20305           - Implemented ShowKeyboardCues
20306           - Implemented FromChildHandle
20307           - Implemented FromHandle
20308           - Implemented IsMnemonic
20309           - Implemented ReflectMessage
20310           - All public and protected Static Methods are now complete
20311
20312 2004-09-10 16:54  pbartok
20313
20314         * Control.cs:
20315           - Implemented remaining missing public instance properties
20316           - Alphabetized some out of order properties
20317
20318 2004-09-10 05:51  ravindra
20319
20320         * PictureBox.cs: Added a check for null image.
20321
20322 2004-09-10 00:59  jordi
20323
20324         * GroupBox.cs: remove cvs tag
20325
20326 2004-09-09 05:25  ravindra
20327
20328         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20329
20330 2004-09-09 05:23  ravindra
20331
20332         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20333           parent redraw.
20334
20335 2004-09-09 02:28  pbartok
20336
20337         * ThemeWin32Classic.cs:
20338           - Improve disabled string look
20339
20340 2004-09-09 01:15  jordi
20341
20342         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20343           args and handler
20344
20345 2004-09-08 23:56  ravindra
20346
20347         * ItemBoundsPortion.cs: It's enum, not a class!
20348
20349 2004-09-08 23:47  ravindra
20350
20351         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20352           Enums for Form.
20353
20354 2004-09-08 21:13  ravindra
20355
20356         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20357           ListView control.
20358
20359 2004-09-08 21:03  ravindra
20360
20361         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20362           avoid crash.
20363
20364 2004-09-08 21:01  ravindra
20365
20366         * ScrollableControl.cs: Removed unreachable code.
20367
20368 2004-09-08 06:45  jordi
20369
20370         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20371
20372 2004-09-08 01:00  jackson
20373
20374         * XplatUIX11.cs: Only run the timers when updating the message
20375           queue. This effectively gives X messages a higher priority then
20376           timer messages. Timers still need love though
20377
20378 2004-09-07 14:01  jackson
20379
20380         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20381           this for us and the handle is no longer valid.
20382
20383 2004-09-07 13:59  jackson
20384
20385         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20386           loop that manages to not crash. TODO: Add poll and cleanup timers
20387
20388 2004-09-07 11:12  jordi
20389
20390         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20391
20392 2004-09-07 03:40  jordi
20393
20394         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20395           fixes, methods, multiple links
20396
20397 2004-09-06 06:55  jordi
20398
20399         * Control.cs: Caches ClientRectangle rectangle value
20400
20401 2004-09-05 02:03  jordi
20402
20403         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20404           certain situations
20405
20406 2004-09-04 11:10  jordi
20407
20408         * Label.cs: Refresh when font changed
20409
20410 2004-09-02 16:24  pbartok
20411
20412         * Control.cs:
20413           - Added sanity check to creation of double buffer bitmap
20414
20415 2004-09-02 16:24  pbartok
20416
20417         * ButtonBase.cs:
20418           - Fixed selection of text color
20419           - Fixed handling of resize event; now properly recreates double
20420             buffering bitmap
20421           - Added missing assignment of TextAlignment
20422           - Added proper default for TextAlignment
20423
20424 2004-09-02 14:26  pbartok
20425
20426         * RadioButton.cs:
20427           - Added missing RadioButton.RadioButtonAccessibleObject class
20428
20429 2004-09-02 14:26  pbartok
20430
20431         * Control.cs:
20432           - Added missing Control.ControlAccessibleObject class
20433           - Started to implement Select()ion mechanisms, still very incomplete
20434
20435 2004-09-02 14:25  pbartok
20436
20437         * AccessibleObject.cs:
20438           - Added missing methods
20439
20440 2004-09-02 14:23  pbartok
20441
20442         * AccessibleNavigation.cs, AccessibleSelection.cs:
20443           - Initial check-in
20444
20445 2004-09-02 10:32  jordi
20446
20447         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20448           pool for pens, brushes, and hatchbruses
20449
20450 2004-09-01 15:30  jackson
20451
20452         * StatusBar.cs: Fix typo
20453
20454 2004-09-01 14:44  pbartok
20455
20456         * RadioButton.cs:
20457           - Fixed state
20458
20459 2004-09-01 14:39  pbartok
20460
20461         * Button.cs, RadioButton.cs:
20462           - Functional initial check-in
20463
20464 2004-09-01 14:01  pbartok
20465
20466         * CheckBox.cs:
20467           - Added missing default
20468           - Added missing region mark
20469
20470 2004-09-01 09:10  jordi
20471
20472         * Label.cs: fixes method signatures, new methods, events, fixes
20473           autosize
20474
20475 2004-09-01 07:19  jordi
20476
20477         * Control.cs: Init string variables with an empty object
20478
20479 2004-09-01 04:20  jordi
20480
20481         * Control.cs: fires OnFontChanged event
20482
20483 2004-08-31 20:07  pbartok
20484
20485         * ButtonBase.cs:
20486           - Enabled display of strings
20487
20488 2004-08-31 20:05  pbartok
20489
20490         * Form.cs:
20491           - Added (partial) implementation of DialogResult; rest needs to be
20492             implemented when the modal loop code is done
20493
20494 2004-08-31 19:55  pbartok
20495
20496         * CheckBox.cs:
20497           - Fixed to match the removal of the needs_redraw concept
20498
20499 2004-08-31 19:55  pbartok
20500
20501         * ButtonBase.cs:
20502           - Removed the rather odd split between 'needs redraw' and redrawing
20503           - Now handles the events that require regeneration (ambient
20504             properties and size)
20505
20506 2004-08-31 19:41  pbartok
20507
20508         * Control.cs:
20509           - Added firing of BackColorChanged event
20510           - Added TopLevelControl property
20511           - Fixed handling of WM_ERASEBKGRND message
20512
20513 2004-08-31 12:49  pbartok
20514
20515         * ButtonBase.cs:
20516           - Removed debug
20517           - Minor fixes
20518
20519 2004-08-31 12:48  pbartok
20520
20521         * CheckBox.cs:
20522           - Finished (famous last words)
20523
20524 2004-08-31 04:35  jordi
20525
20526         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20527           scrolling bugs, adds new methods
20528
20529 2004-08-30 14:42  pbartok
20530
20531         * CheckBox.cs:
20532           - Implemented CheckBox drawing code
20533
20534 2004-08-30 14:42  pbartok
20535
20536         * ButtonBase.cs:
20537           - Made Redraw() and CheckRedraw() virtual
20538           - Improved mouse up/down/move logic to properly track buttons
20539
20540 2004-08-30 09:44  pbartok
20541
20542         * CheckBox.cs:
20543           - Updated to fix broken build. Not complete yet.
20544
20545 2004-08-30 09:28  pbartok
20546
20547         * CheckState.cs:
20548           - Initial checkin
20549
20550 2004-08-30 09:17  pbartok
20551
20552         * Appearance.cs:
20553           - Initial check-in
20554
20555 2004-08-27 16:12  ravindra
20556
20557         * ToolBarButton.cs: Added TypeConverter attribute.
20558
20559 2004-08-27 16:07  ravindra
20560
20561         * ImageIndexConverter.cs: Implemented.
20562
20563 2004-08-27 14:17  pbartok
20564
20565         * Control.cs:
20566           - Removed unneeded stack vars
20567           - First attempt to fix sizing issues when layout is suspended
20568
20569 2004-08-25 15:35  jordi
20570
20571         * ScrollBar.cs: more fixes to scrollbar
20572
20573 2004-08-25 14:04  ravindra
20574
20575         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20576           Added the missing divider code and grip for ToolBar Control.
20577
20578 2004-08-25 13:20  pbartok
20579
20580         * Control.cs:
20581           - Control now properly passes the ambient background color to child
20582             controls
20583
20584 2004-08-25 13:20  jordi
20585
20586         * ScrollBar.cs: small bug fix regarding bar position
20587
20588 2004-08-25 12:33  pbartok
20589
20590         * Timer.cs:
20591           - Now only calls SetTimer or KillTimer if the enabled state has
20592           changed
20593
20594 2004-08-25 12:33  pbartok
20595
20596         * XplatUIWin32.cs:
20597           - Fixed timer handling, now seems to work
20598           - Improved error message for window creation
20599
20600 2004-08-25 12:32  pbartok
20601
20602         * Control.cs:
20603           - Fixed generation of MouseUp message
20604
20605 2004-08-25 12:29  jordi
20606
20607         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20608           and fixes for progressbar
20609
20610 2004-08-24 18:43  ravindra
20611
20612         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20613           in ToolBar control.
20614
20615 2004-08-24 17:15  pbartok
20616
20617         * Panel.cs:
20618           - Added #region
20619           - Added missing events
20620           - Alphabetized
20621
20622 2004-08-24 17:14  pbartok
20623
20624         * StatusBar.cs, PictureBox.cs:
20625           - Now uses Control's CreateParams
20626
20627 2004-08-24 16:36  pbartok
20628
20629         * XplatUIX11.cs:
20630           - Fixed background color handling
20631           - Fixed sending of enter/leave events on a grab
20632
20633 2004-08-24 16:35  pbartok
20634
20635         * X11Structs.cs:
20636           - Refined definitions for CrossingEvent
20637
20638 2004-08-24 12:37  jordi
20639
20640         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20641           formmating, methods signature, and adds missing events
20642
20643 2004-08-24 12:24  jordi
20644
20645         * Control.cs: fire OnEnabledChanged event
20646
20647 2004-08-24 11:17  pbartok
20648
20649         * XplatUIWin32.cs:
20650           - Implemented SetTimer() and KillTimer()
20651
20652 2004-08-24 11:16  pbartok
20653
20654         * XplatUIX11.cs:
20655           - Now uses Remove instead of Add to kill the timer
20656
20657 2004-08-24 10:16  jackson
20658
20659         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20660           picture boxes in the theme now. Draw picture box borders and obey
20661           sizing modes
20662
20663 2004-08-24 05:49  jackson
20664
20665         * Timer.cs: Remove top secret debugging code
20666
20667 2004-08-24 05:34  jackson
20668
20669         * PictureBox.cs: Temp hack to make picture boxes draw their full
20670           image
20671
20672 2004-08-24 05:29  jackson
20673
20674         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20675           XplatUIX11.cs: Move timers to the driver level. On X they are
20676           queued by the driver and checked on idle.
20677
20678 2004-08-24 01:07  jackson
20679
20680         * XplatUIX11.cs: Use a queue for async messages instead of passing
20681           them as ClientMessages since that was totally broken. Also simply
20682           check for events and return an idle message if none are found. This
20683           gives us an idle handler, and prevents deadlocking when no messages
20684           are in the queue.
20685
20686 2004-08-23 18:19  ravindra
20687
20688         * XplatUIWin32.cs: Removed the unwanted destructor.
20689
20690 2004-08-23 17:27  pbartok
20691
20692         * ButtonBase.cs:
20693           - Finishing touches. Works now, just needs some optimizations.
20694
20695 2004-08-23 16:53  jordi
20696
20697         * ScrollBar.cs: small fix
20698
20699 2004-08-23 16:45  pbartok
20700
20701         * Application.cs:
20702           - Removed debug output
20703           - Simplifications
20704
20705 2004-08-23 16:43  jordi
20706
20707         * ScrollBar.cs: [no log message]
20708
20709 2004-08-23 16:10  pbartok
20710
20711         * Form.cs:
20712           - Fixed handling of WM_CLOSE message
20713           - Removed debug output
20714
20715 2004-08-23 16:09  pbartok
20716
20717         * Application.cs:
20718           - Added handling of Idle event
20719           - Added handling of form closing
20720           - Fixed reporting of MessageLoop property
20721           - Removed some unneeded code, should provide a bit of a speedup
20722
20723 2004-08-23 15:22  pbartok
20724
20725         * Control.cs:
20726           - Added InitLayout() method
20727           - Added code to properly perform layout when Anchor or Dock property
20728             is changed
20729           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20730             LAMESPEC, tried to do it in a way that makes sense
20731
20732 2004-08-23 14:10  jordi
20733
20734         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20735           properties and methods
20736
20737 2004-08-23 13:55  pbartok
20738
20739         * Control.cs:
20740           - Properly fixed Jordi's last fix
20741           - Now uses Cursor's Position property instead of calling XplatUI
20742           directly
20743
20744 2004-08-23 13:44  jordi
20745
20746         * PaintEventHandler.cs: Adding missing attribute
20747
20748 2004-08-23 13:39  pbartok
20749
20750         * Cursor.cs:
20751           - Implemented Position property
20752
20753 2004-08-23 13:39  pbartok
20754
20755         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20756           - Added method to move mouse cursor
20757
20758 2004-08-23 13:39  pbartok
20759
20760         * XplatUIX11.cs:
20761           - Fixed setting of background color
20762           - Added method to move mouse cursor
20763
20764 2004-08-23 13:16  jordi
20765
20766         * Control.cs: avoids null exception
20767
20768 2004-08-22 17:46  jackson
20769
20770         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20771           PictureBox
20772
20773 2004-08-22 17:40  jackson
20774
20775         * XplatUIX11.cs: Add some missing locks
20776
20777 2004-08-22 15:10  pbartok
20778
20779         * Control.cs, Form.cs:
20780           - Removed OverlappedWindow style from Control, instead it's default
20781             now is child
20782           - Made form windows OverlappedWindow by default
20783
20784 2004-08-22 13:34  jackson
20785
20786         * ScrollBar.cs: Update the position through the Value property so
20787           the OnValueChanged event is raised.
20788
20789 2004-08-22 12:04  pbartok
20790
20791         * SWF.csproj:
20792           - Added Cursor.cs and UserControl.cs
20793
20794 2004-08-22 12:03  pbartok
20795
20796         * Cursor.cs:
20797           - Started implementation, not usable yet
20798
20799 2004-08-22 12:00  pbartok
20800
20801         * UserControl.cs:
20802           - Implemented UserControl (complete)
20803
20804 2004-08-21 19:20  ravindra
20805
20806         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20807
20808 2004-08-21 18:49  ravindra
20809
20810         * ToolBar.cs: Probably this completes the missing attributes in
20811           toolbar control.
20812
20813 2004-08-21 18:03  ravindra
20814
20815         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20816           Fixed toolbar control signatures.
20817
20818 2004-08-21 16:32  pbartok
20819
20820         * LinkLabel.cs:
20821           - Signature Fixes
20822
20823 2004-08-21 16:30  pbartok
20824
20825         * Label.cs:
20826           - Signature fixes
20827
20828 2004-08-21 16:19  pbartok
20829
20830         * Control.cs, Label.cs:
20831           - Signature fixes
20832
20833 2004-08-21 15:57  pbartok
20834
20835         * ButtonBase.cs:
20836           - Added loads of debug output for development
20837           - Fixed typo in method name
20838
20839 2004-08-21 15:52  pbartok
20840
20841         * ToolBarButtonClickEventArgs.cs:
20842           - Added missing base class
20843
20844 2004-08-21 14:53  pbartok
20845
20846         * Control.cs:
20847           - Updated to match new GrabWindow signature
20848
20849 2004-08-21 14:51  pbartok
20850
20851         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20852           - Added method to get default display size
20853
20854 2004-08-21 14:23  pbartok
20855
20856         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20857           - Added method to query current grab state
20858           - Added argument to allow confining a grab to a window
20859
20860 2004-08-21 14:22  pbartok
20861
20862         * Keys.cs:
20863           - Added [Flags] attribute so that modifiers can be used in bitwise
20864           ops
20865
20866 2004-08-21 14:21  pbartok
20867
20868         * TrackBar.cs, ScrollBar.cs:
20869           - Replaced direct XplatUI calls with their Control counterpart
20870
20871 2004-08-21 13:32  pbartok
20872
20873         * Control.cs:
20874           - Implemented Created property
20875
20876 2004-08-21 13:28  pbartok
20877
20878         * Control.cs:
20879           - Implemented ContainsFocus
20880
20881 2004-08-21 13:26  pbartok
20882
20883         * Control.cs:
20884           - Implemented CausesValidation
20885
20886 2004-08-21 13:21  pbartok
20887
20888         * Control.cs:
20889           - Implemented CanFocus
20890           - Implemented CanSelect
20891           - Implemented Capture
20892
20893 2004-08-21 12:35  pbartok
20894
20895         * XplatUIWin32.cs:
20896           - Fixed bug with Async message handling
20897           - Implemented getting the ModifierKeys
20898
20899 2004-08-21 12:32  jackson
20900
20901         * AsyncMethodResult.cs: Make sure we have the mutex before we
20902           release it. Fixes BeginInvoke on windows
20903
20904 2004-08-21 11:31  pbartok
20905
20906         * XplatUIWin32.cs, XplatUIX11.cs:
20907           - Drivers now return proper mouse state
20908
20909 2004-08-21 10:54  jackson
20910
20911         * Control.cs: Implement EndInvoke
20912
20913 2004-08-21 10:48  jackson
20914
20915         * Timer.cs: Remove unneeded finalizer
20916
20917 2004-08-20 19:52  ravindra
20918
20919         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20920           in mouse event handling in the ToolBar control.
20921
20922 2004-08-20 19:50  ravindra
20923
20924         * ImageList.cs: Changed draw method to use the arguments passed in
20925           to draw the image.
20926
20927 2004-08-20 18:58  pbartok
20928
20929         * XplatUIStructs.cs:
20930           - Added private message for async communication
20931
20932 2004-08-20 17:38  ravindra
20933
20934         * Control.cs: Made RightToLeft property virtual and removed a
20935           Console.WriteLine.
20936
20937 2004-08-20 14:39  jordi
20938
20939         * ThemeGtk.cs: use style_attach
20940
20941 2004-08-20 14:39  pbartok
20942
20943         * XplatUIWin32.cs:
20944           - Added jackson's Async code from X11 to Win32
20945
20946 2004-08-20 14:09  pbartok
20947
20948         * SWF.csproj:
20949           - Added all new files
20950
20951 2004-08-20 14:09  pbartok
20952
20953         * Control.cs:
20954           - Added call to set window background color
20955
20956 2004-08-20 14:03  pbartok
20957
20958         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20959           - Added method for setting the window background
20960
20961 2004-08-20 14:02  pbartok
20962
20963         * XplatUIWin32.cs:
20964           - Added method for setting the background color
20965           - Added handling for erasing the window background
20966
20967 2004-08-20 13:45  jordi
20968
20969         * TrackBar.cs: fixes timer, new properties and methods
20970
20971 2004-08-20 13:34  jackson
20972
20973         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20974           correct thread
20975
20976 2004-08-20 13:22  jackson
20977
20978         * Timer.cs: Timer Tick events are now handed through Controls Async
20979           mechanism so the callbacks are executed in the same thread as X
20980
20981 2004-08-20 13:19  jackson
20982
20983         * XplatUIDriver.cs: Expose functionality to send async messages
20984           through the driver
20985
20986 2004-08-20 13:18  jackson
20987
20988         * Control.cs: Implement Begininvoke
20989
20990 2004-08-20 13:14  jackson
20991
20992         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20993           messages through the driver
20994
20995 2004-08-20 13:12  jackson
20996
20997         * XplatUIX11.cs: Lock before all X operations. Also added Async
20998           method functionality through XSendEvent
20999
21000 2004-08-20 13:11  jackson
21001
21002         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21003           This will screw up on 64 bit systems)
21004
21005 2004-08-20 13:10  jackson
21006
21007         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21008           Async messages through X/Win32
21009
21010 2004-08-19 19:39  pbartok
21011
21012         * XplatUIX11.cs:
21013           - Updated code to match new HandleData.DeviceContext type
21014
21015 2004-08-19 19:38  pbartok
21016
21017         * HandleData.cs:
21018           - Made DeviceContext a generic object to allow usage from various
21019           drivers
21020           - Added support for queueing Windows messages
21021
21022 2004-08-19 19:37  pbartok
21023
21024         * XplatUIWin32.cs:
21025           - Added generation of MouseEnter, MouseLeave and MouseHover events
21026           - Added cleanup on EndPaint
21027
21028 2004-08-19 19:17  pbartok
21029
21030         * Control.cs:
21031           - Added handling of WM_MOUSEHOVER
21032           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21033           code
21034
21035 2004-08-19 18:55  jordi
21036
21037         * ThemeGtk.cs: fixes button order
21038
21039 2004-08-19 18:12  jordi
21040
21041         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21042
21043 2004-08-19 17:09  pbartok
21044
21045         * Control.cs:
21046           - Added Right property
21047           - Added RightToLeft property
21048
21049 2004-08-19 16:27  jordi
21050
21051         * ThemeGtk.cs: experimental GTK theme support
21052
21053 2004-08-19 16:26  jordi
21054
21055         * ITheme.cs, Theme.cs: move themes from an interface to a class
21056
21057 2004-08-19 16:25  jordi
21058
21059         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21060           theme enhancaments
21061
21062 2004-08-19 16:04  pbartok
21063
21064         * XplatUIX11.cs:
21065           - Added colormap basics
21066           - Added a way to re-initialize with a different display handle
21067           - Fixed setting of the window background color
21068           - Added various X11 imports related to colors and colormaps
21069
21070 2004-08-19 15:51  pbartok
21071
21072         * X11Structs.cs:
21073           - Removed packing hints (Paolo suggested this a while back)
21074           - fixed colormap type
21075           - Added default Atom types
21076           - Added Screen and color structs and enums
21077
21078 2004-08-19 15:39  pbartok
21079
21080         * ImageList.cs:
21081           - Added missing Draw() method
21082           - Added missing RecreateHandle event
21083
21084 2004-08-19 15:30  pbartok
21085
21086         * Form.cs:
21087           - Added handling of WM_CLOSE
21088
21089 2004-08-18 13:16  jordi
21090
21091         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21092           a table
21093
21094 2004-08-18 09:56  jordi
21095
21096         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21097
21098 2004-08-17 15:31  ravindra
21099
21100         * SWF.csproj: Updated project.
21101
21102 2004-08-17 15:25  pbartok
21103
21104         * Control.cs:
21105           - Drawing improvement; don't call UpdateBounds if we are not visible
21106             (or have been minimized)
21107
21108 2004-08-17 15:24  pbartok
21109
21110         * XplatUIWin32.cs:
21111           - Finished IsVisible
21112           - Added Win32GetWindowPlacement
21113
21114 2004-08-17 15:08  jackson
21115
21116         * Panel.cs: Initial checkin of the Panel
21117
21118 2004-08-17 14:25  pbartok
21119
21120         * Control.cs:
21121           - Fixed broken handling of default window sizes
21122
21123 2004-08-17 13:29  jackson
21124
21125         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21126           has a large startup time.
21127
21128 2004-08-17 10:25  jackson
21129
21130         * HandleData.cs: union areas properly
21131
21132 2004-08-17 10:12  jackson
21133
21134         * HandleData.cs: union areas properly
21135
21136 2004-08-16 20:00  ravindra
21137
21138         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21139
21140 2004-08-16 18:48  ravindra
21141
21142         * ToolBar.cs: Added attributes.
21143
21144 2004-08-16 17:17  ravindra
21145
21146         * SWF.csproj: Updated project.
21147
21148 2004-08-16 17:16  jackson
21149
21150         * XplatUIX11.cs: Check for more expose events before sending a
21151           WM_PAINT so they can all be grouped together. This makes dragging a
21152           window across another window redraw in a sane way.
21153
21154 2004-08-16 15:47  pbartok
21155
21156         * Control.cs:
21157           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21158             support OnMouseEnter/Leave()
21159           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21160             exposure handling
21161
21162 2004-08-16 15:46  pbartok
21163
21164         * XplatUIStructs.cs, XplatUIX11.cs:
21165           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21166           OnMouseEnter/Leave()
21167
21168 2004-08-16 15:34  jackson
21169
21170         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21171           sure messages get the message field set to WM_NULL if they are not
21172           handled.
21173
21174 2004-08-16 15:24  jackson
21175
21176         * HandleData.cs: HandleData is used for storing message information
21177           for window handles
21178
21179 2004-08-15 17:23  ravindra
21180
21181         * ColorDepth.cs: Added attribute.
21182
21183 2004-08-15 17:23  ravindra
21184
21185         * SWF.csproj: Updated project for ToolBar Control.
21186
21187 2004-08-15 17:20  ravindra
21188
21189         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21190           control and also dos2unix format.
21191
21192 2004-08-15 17:13  ravindra
21193
21194         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21195           ToolBarButtonClickEventArgs.cs,
21196           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21197           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21198
21199 2004-08-15 15:31  pbartok
21200
21201         * ButtonBase.cs:
21202           - First (mostly) working version
21203
21204 2004-08-13 16:15  pbartok
21205
21206         * Control.cs:
21207           - Fixed Anchor default
21208
21209 2004-08-13 15:43  pbartok
21210
21211         * Control.cs:
21212           - Changed GetCursorPos signature
21213
21214 2004-08-13 15:42  pbartok
21215
21216         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21217           - Changed signature for GetCursorPos
21218
21219 2004-08-13 15:25  pbartok
21220
21221         * XplatUIX11.cs:
21222           - Cleanup
21223           - Fixed resizing/exposure handling
21224
21225 2004-08-13 15:22  jordi
21226
21227         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21228           with tickposition
21229
21230 2004-08-13 14:55  jordi
21231
21232         * TrackBar.cs: change from wndproc to events
21233
21234 2004-08-13 13:00  jordi
21235
21236         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21237           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21238
21239 2004-08-13 12:53  pbartok
21240
21241         * XplatUIWin32.cs:
21242           - Changed GetWindowPos to also provide client area size
21243           - Fixed broken prototypes for several win32 functions
21244
21245 2004-08-13 12:53  pbartok
21246
21247         * XplatUI.cs, XplatUIDriver.cs:
21248           - Changed GetWindowPos to also provide client area size
21249
21250 2004-08-13 12:52  pbartok
21251
21252         * XplatUIX11.cs:
21253           - Added generation of WM_POSCHANGED
21254           - Changed GetWindowPos to also provide client area size
21255
21256 2004-08-13 12:52  pbartok
21257
21258         * Control.cs:
21259           - Added Dispose() and destructor
21260           - Fixed resizing and bounds calculation
21261           - Fixed Layout
21262           - Added memory savings for invisible windows
21263
21264 2004-08-13 12:46  jordi
21265
21266         * TrackBar.cs: adds timer and grap window
21267
21268 2004-08-13 10:25  jackson
21269
21270         * Timer.cs: SWF Timer
21271
21272 2004-08-12 16:59  pbartok
21273
21274         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21275           - Implemented method to get current mouse position
21276
21277 2004-08-12 14:29  jordi
21278
21279         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
21280           enhancement, fix mouse problems, highli thumb, etc
21281
21282 2004-08-12 13:31  pbartok
21283
21284         * Control.cs:
21285           - Fixed Anchoring bugs
21286
21287 2004-08-12 13:01  jackson
21288
21289         * StatusBar.cs: Don't forget things
21290
21291 2004-08-12 12:54  jackson
21292
21293         * ThemeWin32Classic.cs: Handle owner draw status bars
21294
21295 2004-08-12 12:54  jackson
21296
21297         * StatusBar.cs: Implement missing properties, events, and methods.
21298           Handle mouse clicking
21299
21300 2004-08-12 10:19  jackson
21301
21302         * StatusBarPanelClickEventArgs.cs,
21303           StatusBarPanelClickEventHandler.cs: Classes for handling status
21304           bar panel click events
21305
21306 2004-08-12 10:10  jackson
21307
21308         * Control.cs: Add missing properties
21309
21310 2004-08-12 09:46  pbartok
21311
21312         * BindingsManagerBase.cs:
21313           - Name changed to BindingManagerBase.cs
21314
21315 2004-08-12 09:25  jordi
21316
21317         * ScrollableControl.cs: calls ctrlbase instead of exeception
21318
21319 2004-08-11 16:28  pbartok
21320
21321         * InputLanguageChangingEventArgs.cs:
21322           - Never check in before compiling. Fixes the last check-in
21323
21324 2004-08-11 16:26  pbartok
21325
21326         * InputLanguageChangingEventArgs.cs:
21327           - More signature fixes
21328
21329 2004-08-11 16:20  pbartok
21330
21331         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21332           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21333           ImageListStreamer.cs, InputLanguage.cs,
21334           InputLanguageChangedEventArgs.cs,
21335           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21336           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21337           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21338           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21339           - Signature fixes
21340
21341 2004-08-11 16:16  pbartok
21342
21343         * Application.cs:
21344           - Fixed Signature
21345           - Added .Net 1.1 method
21346
21347 2004-08-11 15:25  pbartok
21348
21349         * SWF.csproj:
21350           - Fixed BindingManagerBase.cs filename
21351
21352 2004-08-11 15:22  pbartok
21353
21354         * BindingManagerBase.cs:
21355           - Was checked in with wrong filename
21356
21357 2004-08-11 14:50  pbartok
21358
21359         * SWF.csproj:
21360           - Updated
21361
21362 2004-08-11 13:41  jordi
21363
21364         * XplatUIWin32.cs: Fixes ClientRect
21365
21366 2004-08-11 13:19  pbartok
21367
21368         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21369           XplatUIX11.cs:
21370           - We had SetWindowPos and MoveWindow to set window positions and
21371             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21372             keep SetWindowPos as matching counterpart
21373           - Added some X11 sanity checking
21374
21375 2004-08-11 12:59  pbartok
21376
21377         * Control.cs:
21378           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21379             (It seems that SetBounds is just a front for SetBoundsCore and
21380              SetBoundsCore updates the underlying window system and
21381              UpdateBounds is responsible for updating the variables associated
21382              with the Control and sending the events)
21383           - Major cleanup of Size handling; we now have two sizes, client_size
21384             and bounds. Bounds defines the window with decorations, client_size
21385             without them.
21386
21387 2004-08-11 12:55  pbartok
21388
21389         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21390           - Added method to calculate difference between decorated window and
21391             raw client area
21392
21393 2004-08-11 12:54  pbartok
21394
21395         * Label.cs:
21396           - Forcing redraw on resize
21397
21398 2004-08-11 11:43  pbartok
21399
21400         * ImageList.cs:
21401           - Removed disposing of the actual images when the list is disposed
21402
21403 2004-08-11 09:13  pbartok
21404
21405         * Control.cs:
21406           - Now properly reparents windows
21407
21408 2004-08-11 08:37  pbartok
21409
21410         * Control.cs:
21411           - Duh!
21412
21413 2004-08-11 07:47  pbartok
21414
21415         * Control.cs:
21416           - Rewrote the collection stuff. Might not be as fast now, not
21417             keeping the number of children around and accessible directly, but
21418             it's more straightforward
21419
21420 2004-08-11 07:44  pbartok
21421
21422         * AccessibleObject.cs:
21423           - Fixed to match ControlCollection rewrite
21424
21425 2004-08-11 07:43  pbartok
21426
21427         * ImageList.cs:
21428           - Added missing creation of the collection list
21429
21430 2004-08-10 20:08  jackson
21431
21432         * StatusBar.cs: Get the paint message from WndProc
21433
21434 2004-08-10 19:31  jackson
21435
21436         * ThemeWin32Classic.cs: Create Brushes as little as possible
21437
21438 2004-08-10 19:20  jackson
21439
21440         * UICues.cs: Add Flags attribute
21441
21442 2004-08-10 19:19  jackson
21443
21444         * StatusBarPanel.cs: Signature cleanup
21445
21446 2004-08-10 19:10  jackson
21447
21448         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21449           Initial implementation of status bar item drawing
21450
21451 2004-08-10 17:27  jordi
21452
21453         * TrackBar.cs: add missing methods, properties, and restructure to
21454           hide extra ones
21455
21456 2004-08-10 16:24  jackson
21457
21458         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21459           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21460           attribute
21461
21462 2004-08-10 13:21  jordi
21463
21464         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21465           enhancements and standarize on win colors defaults
21466
21467 2004-08-10 12:52  jackson
21468
21469         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21470           ThemeWin32Classic.cs: Implement DrawItem functionality
21471
21472 2004-08-10 12:47  jordi
21473
21474         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21475
21476 2004-08-10 12:32  jordi
21477
21478         * Control.cs: throw ontextchange event
21479
21480 2004-08-10 11:43  pbartok
21481
21482         * Control.cs:
21483           - Added more to the still unfinished Dock/Anchor layout code
21484
21485 2004-08-10 11:39  pbartok
21486
21487         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21488           - Added GetWindowPos method
21489
21490 2004-08-10 11:36  pbartok
21491
21492         * XplatUIWin32.cs:
21493           - Implemented several methods
21494
21495 2004-08-10 09:47  jackson
21496
21497         * TrackBar.cs: Allow control to handle buffering
21498
21499 2004-08-10 09:41  jackson
21500
21501         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21502
21503 2004-08-10 09:24  jackson
21504
21505         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21506
21507 2004-08-10 09:09  jackson
21508
21509         * StatusBar.cs: Let Control handle all the buffering.
21510
21511 2004-08-10 09:08  jackson
21512
21513         * Control.cs: Control will now handle the buffering code, so each
21514           control does not have to implement this.
21515
21516 2004-08-10 08:34  jackson
21517
21518         * XplatUIDriver.cs: Use default colors from the theme
21519
21520 2004-08-09 17:12  pbartok
21521
21522         * ImageList.cs:
21523           - Fixed several bugs Ravindra pointed out
21524
21525 2004-08-09 16:11  pbartok
21526
21527         * Control.cs:
21528           - Added incomplete dock layout code
21529           - Added support for mouse wheel
21530
21531 2004-08-09 16:09  pbartok
21532
21533         * XplatUIX11.cs:
21534           - Added handling for middle and right mousebutton
21535           - Added handling for mouse wheel
21536           - Added handling for key state and mouse state and position
21537           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21538           messages
21539
21540 2004-08-09 15:40  jackson
21541
21542         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21543           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21544           checkin
21545
21546 2004-08-09 15:37  jackson
21547
21548         * StatusBar.cs: Initial implementation of StatusBar
21549
21550 2004-08-09 15:36  jackson
21551
21552         * ITheme.cs: Add support for drawing status bar and getting status
21553           bar item sizes
21554
21555 2004-08-09 15:35  pbartok
21556
21557         * MouseButtons.cs:
21558           - Fixed values
21559
21560 2004-08-09 15:34  jackson
21561
21562         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21563           status bar item sizes
21564
21565 2004-08-09 15:21  jackson
21566
21567         * ThemeWin32Classic.cs: Use known colors for default control
21568           colours
21569
21570 2004-08-09 15:12  jackson
21571
21572         * ThemeWin32Classic.cs: Make the default font static, it is static
21573           in control so this doesn't change functionality and creating fonts
21574           is sloooooow.
21575
21576 2004-08-09 14:56  pbartok
21577
21578         * X11Structs.cs:
21579           - Added GrabMode enum
21580
21581 2004-08-09 14:55  pbartok
21582
21583         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21584           - Removed Run method, was only required for initial development
21585
21586 2004-08-09 14:51  pbartok
21587
21588         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21589           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21590           capture
21591
21592 2004-08-09 13:48  pbartok
21593
21594         * XplatUIX11.cs:
21595           - Fixed default sizing for child windows
21596
21597 2004-08-09 12:56  pbartok
21598
21599         * XplatUIX11.cs:
21600           - Added generation of WM_DESTROY message
21601           - Added handling of window manager induced shutdown
21602
21603 2004-08-09 11:31  jackson
21604
21605         * ThemeWin32Classic.cs: New names for control properties
21606
21607 2004-08-09 11:25  jackson
21608
21609         * Control.cs: Use new color names
21610
21611 2004-08-09 11:02  jackson
21612
21613         * XplatUI.cs: Get default window properties from the theme
21614
21615 2004-08-09 11:01  jackson
21616
21617         * ITheme.cs: The theme engine now controls default window
21618           properties
21619
21620 2004-08-09 11:00  jackson
21621
21622         * ThemeWin32Classic.cs: Add default window color properties
21623
21624 2004-08-09 10:17  jackson
21625
21626         * ThemeWin32Classic.cs: Use correct default back color
21627
21628 2004-08-09 10:05  jackson
21629
21630         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21631           the theme now.
21632
21633 2004-08-09 09:56  jackson
21634
21635         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21636
21637 2004-08-09 09:54  jackson
21638
21639         * Control.cs: Get default properties from the theme.
21640
21641 2004-08-09 09:53  jackson
21642
21643         * ITheme.cs: Themes now handle default control properties
21644
21645 2004-08-09 09:53  jackson
21646
21647         * ThemeWin32Classic.cs: Themes now handle default control
21648           properties so coloring will be consistent
21649
21650 2004-08-08 16:54  jordi
21651
21652         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21653
21654 2004-08-08 15:08  jordi
21655
21656         * XplatUIX11.cs: fixes keyboard crash
21657
21658 2004-08-08 13:47  jordi
21659
21660         * Label.cs: add cvs header info
21661
21662 2004-08-08 12:09  jackson
21663
21664         * ThemeWin32Classic.cs: Add pen_buttonface
21665
21666 2004-08-08 11:52  jordi
21667
21668         * Label.cs, LinkLabel.cs: [no log message]
21669
21670 2004-08-08 11:34  jordi
21671
21672         * ThemeWin32Classic.cs: Use Windows Standard Colours
21673
21674 2004-08-07 17:32  jordi
21675
21676         * TrackBar.cs: throw exceptions of invalid enums values
21677
21678 2004-08-07 17:31  jordi
21679
21680         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21681           draw method name
21682
21683 2004-08-07 16:56  jackson
21684
21685         * HorizontalAlignment.cs: Initial checkin
21686
21687 2004-08-07 13:16  jordi
21688
21689         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21690           methods
21691
21692 2004-08-07 13:05  jordi
21693
21694         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21695           GetSysColor defines
21696
21697 2004-08-06 18:01  pbartok
21698
21699         * ThemeWin32Classic.cs:
21700           - Fixed some rounding issues with float/int
21701
21702 2004-08-06 18:00  jackson
21703
21704         * DockStyle.cs, AnchorStyles.cs:
21705
21706                   Add flags and serializable attributes.
21707
21708 2004-08-06 17:46  pbartok
21709
21710         * XplatUIX11.cs:
21711           - Implemented GetParent
21712
21713 2004-08-06 17:18  pbartok
21714
21715         * TrackBar.cs:
21716           - Fixed some rounding issues with float/int
21717
21718 2004-08-06 17:17  pbartok
21719
21720         * X11Structs.cs, XplatUIX11.cs:
21721           - Fixed Refresh and Invalidate
21722
21723 2004-08-06 15:30  pbartok
21724
21725         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21726           - Fixed recursive loop when resizing
21727           - Improved/fixed redrawing on expose messages
21728
21729 2004-08-06 09:53  jordi
21730
21731         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21732           keyboard navigation
21733
21734 2004-08-06 08:02  pbartok
21735
21736         * X11Structs.cs, XplatUIX11.cs:
21737           - Fixed reparenting
21738           - Fixed window border creation
21739
21740 2004-08-05 15:38  pbartok
21741
21742         * XplatUIX11.cs:
21743           - Attempted fix for reparenting problems
21744
21745 2004-08-04 15:14  pbartok
21746
21747         * Control.cs:
21748           - Fixed Invalidation bug (calculated wrong client area)
21749           - Added ClientSize setter
21750
21751 2004-08-04 15:13  pbartok
21752
21753         * Form.cs:
21754           - Added AutoScale properties
21755
21756 2004-08-04 15:13  pbartok
21757
21758         * SWF.csproj:
21759           - Added latest files
21760
21761 2004-08-04 14:11  pbartok
21762
21763         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21764           XplatUIX11.cs:
21765           - Added Invalidate handling
21766
21767 2004-08-03 17:09  jordi
21768
21769         * XplatUIDriver.cs: fixes spelling mistake
21770
21771 2004-07-27 09:53  jordi
21772
21773         * TrackBar.cs: fixes trackbar events, def classname, methods
21774           signature
21775
21776 2004-07-27 09:29  jordi
21777
21778         * ScrollBar.cs: fixes scrollbar events
21779
21780 2004-07-27 04:38  jordi
21781
21782         * Control.cs: changes to be able to run winforms samples
21783
21784 2004-07-26 11:42  jordi
21785
21786         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21787           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21788
21789 2004-07-26 05:41  jordi
21790
21791         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21792           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21793           implementation
21794
21795 2004-07-22 09:22  jordi
21796
21797         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21798           check link overlapping, implement events, and fixes
21799
21800 2004-07-21 10:28  jordi
21801
21802         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21803
21804 2004-07-21 10:19  jordi
21805
21806         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21807           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21808           LinkLabelLinkClickedEventArgs.cs,
21809           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21810           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21811           implementation
21812
21813 2004-07-19 13:09  jordi
21814
21815         * Control.cs, Label.cs: label control re-written: added missing
21816           functionlity, events, and properties
21817
21818 2004-07-19 10:49  jordi
21819
21820         * Control.cs: fixes SetBounds logic
21821
21822 2004-07-19 01:29  jordi
21823
21824         * Control.cs: Call RefreshWindow only if the window has created
21825
21826 2004-07-15 14:05  pbartok
21827
21828         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21829           - Implemented ImageList and ImageList.ImageCollection classes
21830           - Added ColorDepth enumeration
21831           - Updated SWF VS.Net project
21832
21833 2004-07-15 11:06  jordi
21834
21835         * XplatUIStructs.cs: added MsgButons enum
21836
21837 2004-07-15 11:03  jordi
21838
21839         * Control.cs: added basic mouse handeling events
21840
21841 2004-07-15 03:38  jordi
21842
21843         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21844           Vertical TrackBar control implementation
21845
21846 2004-07-13 09:33  jordi
21847
21848         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21849
21850 2004-07-13 09:31  jordi
21851
21852         * Control.cs, Form.cs: commit: new properties and fixes form size
21853           problems
21854
21855 2004-07-09 14:13  miguel
21856
21857         * ProgressBar.cs: Spelling
21858
21859 2004-07-09 11:25  pbartok
21860
21861         * ProgressBar.cs:
21862           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21863           faster
21864
21865 2004-07-09 11:17  miguel
21866
21867         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21868
21869                 * ProgressBar.cs: Fixed spelling for `block'
21870
21871                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21872                 style guidelines.
21873
21874                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21875
21876 2004-07-08 23:21  pbartok
21877
21878         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21879           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21880           BaseCollection.cs, Binding.cs, BindingContext.cs,
21881           BindingMemberInfo.cs, BindingsCollection.cs,
21882           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21883           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21884           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21885           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21886           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21887           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21888           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21889           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21890           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21891           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21892           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21893           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21894           InputLanguageChangedEventArgs.cs,
21895           InputLanguageChangedEventHandler.cs,
21896           InputLanguageChangingEventArgs.cs,
21897           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21898           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21899           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21900           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21901           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21902           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21903           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21904           QueryAccessibilityHelpEventArgs.cs,
21905           QueryAccessibilityHelpEventHandler.cs,
21906           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21907           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21908           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21909           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21910           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21911           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21912           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21913           XplatUIX11.cs, lang.cs:
21914           - Initial check-in
21915