SendKeys X11 support.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-19  Andreia Gaita  <avidigal@novell.org>
2
3         * SendKeys.cs: Changed some things to match ms.net behaviour
4         when parsing shifted capital letters.
5         
6         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
7         Add window handle as parameter to SendInput. X11 needs the 
8         window handle, and the handle being passed      to it in the keys 
9         queue is the active control handle (which windows needs), not 
10         the window handle.
11         
12         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
13         to support SendKeys on X.       
14         
15         * X11Keyboard: Implement helper method to lookup a linux keycode
16         given the virtual keycode. Added table of keycode-2-virtualkey
17         values to support this.
18
19 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20
21         * ListView.cs: Add support for SelectedIndexCollection
22         and SelectedItemCollection 2.0 methods. Implement support
23         for ImageKey too.
24         * ListViewItem.cs: Add support for ListViewSubItemCollection
25         2.0 methods. Also, fix an incorrect behavior of AddRange method
26         (it shouldn't call Clear).
27         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
28
29 2006-12-19  Jackson Harper  <jackson@ximian.com>
30
31         * RichTextBox.cs: 
32         * TextBoxBase.cs: New args for FormatText
33         * TextControl.cs: Rewrote the main drawing method, this version
34         feels a little easier to understand and debug to me.  Hopefully it
35         does to others also
36         - Fix FormatText to OR in the new formating values.  Added
37         FormatSpecified param, basically this works in the same way as
38         BoundsSpecified in Control.
39         - Set the caret properties when the caret is positioned.
40         - When wrapping text make sure that we calculate the width of the
41         last character
42         - when calculating alignments we might have wrapped down to the
43         next line, so don't search for an individual tag, search for the
44         end of the line
45         - We need to invalidate the selection area when we replace the
46         selection.
47         
48 2006-12-19  Daniel Nauck  <dna@mono-project.de>
49
50         * Application.cs: add Restart () 2.0 support
51
52 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
53
54         * MenuItem.cs: Invalidate menu item rectangle after change Enable
55         property. Fixes #80268.
56         
57 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
58
59         * MenuAPI.cs: Dont trigger select event when closes top menu
60         item. Fixes #80270.
61
62 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
63
64         * MenuAPI.cs: When you click on menuitem only trigger onselect
65         event for top menu itens. Fixes #80271.
66         
67 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
68
69         * MdiWindowManager.cs: Make IconicBounds depend on
70         the bottom of MdiClient, not the top (fixes #80267)
71         
72 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
73
74         * MdiClient.cs: Added missing 2.0 attribute
75
76 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
77
78         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
79         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
80
81 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
82
83         * MenuAPI.cs: Fix click when menuitem is not popup,
84         this regression was caused by last commit (#80272).
85
86 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
87
88         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
89         fire click event or close menu. Fixes #80272.
90
91 2006-12-17  Daniel Nauck  <dna@mono-project.de>
92
93         * ListViewHitTestInfo.cs: add
94
95 2006-12-17  Daniel Nauck  <dna@mono-project.de>
96
97         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
98         * FlatButtonAppearance.cs: add
99         * DockingAttribute.cs: add
100
101 2006-12-17  Chris Toshok  <toshok@ximian.com>
102
103         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
104         and rebind our columns when it does - this way, if you make
105         changes to the DataTable (or set the Table attribute on a DataView
106         after setting it as the DataGrid's DataSource, the changes are
107         made visible.)  Fixes bug #80107.
108
109 2006-12-17  Daniel Nauck  <dna@mono-project.de>
110
111         * ListViewGroup.cs: add internal Location property for layouting.
112         * Theme.cs: add abstract ListViewGroupHeight function.
113         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
114
115 2006-12-16  Andreia Gaita  <avidigal@novell.com>
116
117         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
118         Added reset of selected index to 0 when adding first tab page.
119         Fixes #80264
120         
121         * NumericUpDown.cs: Fix NET_2_0 check
122
123 2006-12-16  Daniel Nauck  <dna@mono-project.de>
124
125         * ListViewGroup.cs: fixed DefaultValueAttribute value
126
127 2006-12-16  Daniel Nauck  <dna@mono-project.de>
128
129         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
130
131 2006-12-15  Miguel de Icaza  <miguel@novell.com>
132
133         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
134         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
135         ScrollableControl.cs: Add a handful of methods that are
136         overwritten in 2.0 
137
138 2006-12-15  Chris Toshok  <toshok@ximian.com>
139
140         * XplatUIWin32.cs: initial implementation of the Reversible
141         drawing functions.  there are some problems.  DrawReversibleFrame
142         doesn't seem to work at all for Dashed FrameStyle, and in the
143         Thick case there are drawing errors at the corners (we probably
144         need to bind Rectangle instead of doing moveto/lineto's.)
145
146 2006-12-16  Andreia Gaita  <avidigal@novell.com>
147         
148         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
149         to send blocks of key messages. Send accumulates keys to send with Flush, 
150         while SendWait sends all keys immediately.
151                 
152         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
153         XplatUIX11.cs,  XplatUIX11-new.cs:
154         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
155         to Win32 SendInput.
156         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
157         
158         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
159         testing for ms.net on this class is very tricky, as the tests run too fast 
160         to allow the hook to release, essentially freezing the keyboard and the 
161         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
162         category :p
163
164 2006-12-16  Daniel Nauck  <dna@mono-project.de>
165
166         * Padding.cs: fixed serialization compability to MS ("_var" field names),
167                         added missing attributes.
168  
169 2006-12-15  Daniel Nauck  <dna@mono-project.de>
170
171         * ListViewGroup.cs: Added missing attributes.
172         * ListViewGroupCollection.cs: Added missing attributes.
173
174 2006-12-15  Daniel Nauck  <dna@mono-project.de>
175
176         * ListViewItem.cs: fixed ListViewSubItem text property.
177
178 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
179         
180         * Control.cs: Added missing 2.0 attributes
181         
182 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
183         
184         * MdiClient.cs: Added missing 2.0 attribute.
185         * MonthCalendar.cs: Added some missing 2.0 attributes 
186         and properties.
187         
188 2006-12-15  Daniel Nauck  <dna@mono-project.de>
189
190         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
191
192 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
193
194         * MainMenu.cs: Add the new 2.0 constructor to help out people
195         using the MainMenu in VS2005.
196
197 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
198         
199         * MdiChildContext.cs: Removed it, no longer used.
200         * MdiClient.cs: Added missing 2.0 attributes.
201         
202 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
203         
204         * InternalWindowManager.cs: Fix a NullRef with previous 
205         changes for toolwindows.
206         
207 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
208
209         * Control.cs: 
210         - Added AfterTopMostControl to allow for certain controls 
211         to always stay on top when normal controls are brought to 
212         front.
213         
214         * XplatUIWin32.cs: 
215         - (DrawInversibleRectangle): Get window rectangle from Win32 
216         in stead of from control, since Win32 doesn't calculate
217         screen coords correctly from control's Location if it 
218         have docked siblings.
219         
220         * MdiWindowManager.cs:
221         - Correct the control menu popup location when clicked on
222         the maximized form icon. (fixes #80223.1)
223         - Don't show moving rectangle if mouse hasn't moved from
224         the original clicked point.
225         - Removed FormGotFocus handler (not used).
226         - Calculate the control buttons location from the main
227         window's size and not client size (fixes #79770).
228         - Form is now closed when the form icon is double-clicked
229         (fixes #79775). 
230         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
231         
232         * InternalWindowManager.cs:
233         - Moved some MDI-only methods to MdiWindowManager.
234         - Removed unused properties and methods.
235         - Unified method naming for methods handling wm messages.
236         - Moved all message handling to seperate methods for
237         each message.
238         
239         * ThemeWin32Classic.cs:
240         - DrawManagedWindowDecorations now draws the title bar 
241         with a gradient brush.
242         - Add a CPDrawButtonInternal that allows us to specify
243         light, normal and dark colors for the buttons (control 
244         buttons for MDI children were drawn with the same light
245         color as the background, therefore loosing the 3D effect).
246         
247         * SizeGrip.cs:
248         - Add a CapturedControl property that is used to 
249         determine the control to resize (defaults to parent). 
250         Needed for MdiClient, since its SizeGrip's parent is
251         MdiClient, but the control to resize is the main form.
252         
253         * MdiClient.cs:
254         - Set SizeGrip's CapturedControl to the main form in order
255         to resize the main form and not the MdiClient.
256         - Override AfterTopMostControl to leave the scrollbars 
257         always on top.
258
259 2006-12-15  Daniel Nauck  <dna@mono-project.de>
260
261         * ListView.cs: fixed ListViewItemCollection AddRange and
262                         implemented ListViewItemCollection AddRange 2.0 support.
263
264 2006-12-15  Daniel Nauck  <dna@mono-project.de>
265
266         * ListViewGroup.cs: Add.
267         * ListViewGroupCollection.cs: Add
268         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
269         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
270                                 stub for ImageKey 2.0 support.
271
272 2006-12-14  Mike Kestner  <mkestner@novell.com>
273
274         * ListView.cs: add text padding to the autocalculation for columns
275         of width -2.  Fixes #80207.
276  
277 2006-12-14  Mike Kestner  <mkestner@novell.com>
278
279         * ListView.cs: add some index guarding for partial row navigation 
280         logic.  Fixes #80250.
281
282 2006-12-14  Mike Kestner  <mkestner@novell.com>
283
284         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
285         are added or inserted to the collection.  Fixes #81099.
286
287 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
288
289         * MenuAPI.cs: Closes menu when right click out side of popup
290         it fix problem in ContextMenu and MainMenu. Fixes #80252.
291
292 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
293
294         * ListViewItem.cs: Fix dumb error.
295
296         * ListView.cs: Add Find and ContainsKey methods in 
297         ListViewItemCollection, and also return true for IsReadOnly
298         and IsFixedSize (changes for 2.0). 
299
300 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
301
302         * Control.cs: Allow Region to be set to null.
303
304 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
305
306         * MdiWindowManager.cs: Remove unused (commented out) code.
307         * Form.cs: When the MdiChild is maximized, the form needs 
308         WM_NCMOUSELEAVE, so request it.
309         * InternalWindowManager.cs: 
310         - Added tooltips to control buttons.
311         - Removed duplicated control button handling code.
312         - Removed unused (commented out) code.
313         
314 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
315
316         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
317         was used because we must set cursor without trigger ChangeCursor event
318         and without change Cursor control property. Fixes #79963.
319
320 2006-12-12  Andreia Gaita  <avidigal@novell.com>
321         
322         * Control.cs: Check if Region setter value is null, and ignore
323
324 2006-12-12  Jackson Harper  <jackson@ximian.com>
325
326         * TextControl.cs: We were almost always drawing one more line then
327         needed, since the GetLineByPixel will return the last line found
328         at that pixel. In most cases though, we were invalidating up to
329         the junction between two lines.
330         - Improve debug code.
331
332 2006-12-12  Chris Toshok  <toshok@ximian.com>
333
334         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
335         and FillReversibleRectangle.
336
337         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
338         and FillReversibleRectangle.
339
340         * XplatUIWin32.cs: add stubs which do nothing for
341         DrawReversibleFrame, DrawReversibleLine, and
342         FillReversibleRectangle.
343
344         * XplatUIOSX.cs: add stubs which raise NIE for
345         DrawReversibleFrame, DrawReversibleLine, and
346         FillReversibleRectangle.
347
348         * XplatUIX11.cs: add working implementation for
349         DrawReversibleFrame, DrawReversibleLine, and
350         FillReversibleRectangle.
351         
352         * ControlPaint.cs: implement DrawReversibleFrame,
353         DrawReversibleLine, and FillReversibleRectangle, by calling into
354         the appropriate XplatUI method.
355
356 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
357
358         * Form.cs: Make MdiClient have the focus even if it's
359         not selectable, since it should receive WM_KEY* and WM_MOUSE 
360         messages. Fixes #79907.
361         
362 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
363
364         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
365         queried after the window is created.
366         
367         * XplatUIX11.cs: Added SendParentNotify to implement 
368         WM_PARENTNOTIFY logic. Fixes #79965.
369         
370         * Control.cs: Added MakeParam.
371         
372 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
373
374         * MdiClient.cs: Resume Layout before setting window
375         states (fixes #80201).
376
377 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
378
379         * MenuAPI.cs: Deselect a menu item after performing
380         the click (fixes #80197).
381
382 2006-12-11  Jackson Harper  <jackson@ximian.com>
383
384         * TextBoxBase.cs: We need to cap this value, since Maximum -
385         ViewPortHeight can be less than zero.
386         - Only do selection with the left mouse button.
387         * TextBox.cs: Don't tell the world that we have a context menu.
388         * Control.cs: New method so that we can control whether or not the
389         context menu is visible outside MWF.
390
391 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
392
393         * ToolBarButton.cs: Fix text positon. 
394
395 2006-12-11  Miguel de Icaza  <miguel@novell.com>
396
397         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
398
399         * Control.cs (DoubleBuffered): Add implementation.
400
401         * Application.cs (OpenForms): Add.
402
403 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
404
405         * Form.cs: Use opacity instead of Opactiy to determine if we need
406         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
407
408 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
409
410         * Control.cs: Fix NRE if Control.Site was set to null.
411
412 2006-12-11  Chris Toshok  <toshok@ximian.com>
413
414         * Control.cs: ControlCollection.Remove should return if the arg is
415         null, and ControlCollection.SetChildIndex should raise a ANE.
416
417 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
418
419         * Control.cs: Verify value set for Dock property. Code formatting
420         updates.
421
422 2006-12-11  Jackson Harper  <jackson@ximian.com>
423
424         * TextControl.cs: Draw the caret and the selection when a flag is
425         set on the owner.
426         * TextBoxBase.cs: We want to draw the caret and the selection for
427         TextBox but not for TextBoxBase.
428         - If the window is resized and scrolling is no longer needed (the
429         whole doc is visible) set the scroll position to zero.
430         - The default SelectWord (the one TextBox uses) should move the
431         caret to the end of the word.
432         - SelectAll moves the caret to the end of the selection.
433         * TextBox.cs: We don't selectall on focus, we just do it when the
434         control is created.
435         
436 2006-12-11  Mike Kestner  <mkestner@novell.com>
437
438         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
439
440 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
441
442         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
443         2.0 support.
444         * ListViewItem.cs: Add Name 2.0 property.
445
446 2006-12-11  Andreia Gaita  <avidigal@novell.com>
447
448         * TabControl.cs: Set visibility on selected or default tab 
449         when tabcontrol handle is created, so that it's contents
450         actually show up (duh). Fixes #80193
451         Don't redraw the control if there is no handle created, as
452         the selected index might be completely invalid. Added some tests
453         to check for this.
454
455 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
456
457         * ToolBar.cs: Uses maximun width and height of all buttons as 
458         button rectangle when ButtonSize specified, it looks strange but
459         is what happens in Win32. Fixes #80189.
460
461 2006-12-11  Jackson Harper  <jackson@ximian.com>
462
463         * TextControl.cs: Need to track undo levels ourself, since
464         compound actions will mess them up.
465
466 2006-12-10  Andreia Gaita  <avidigal@novell.com>
467
468         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
469         SelectedIndex value is changed (even if it's not valid).
470         Reset SelectedIndex to 0 when the handle is created and if
471         the current index is invalid.
472         Fixes SelectdeIndex unit tests and #80128
473
474 2006-12-08  Chris Toshok  <toshok@ximian.com>
475
476         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
477         calls EndEdit, it needs to be called before we set current_cell to
478         its new value.  Otherwise, we end up committing the value in the
479         textbox to the new cell as well.  Fixes bug #80160.
480
481 2006-12-08  Chris Toshok  <toshok@ximian.com>
482
483         * Form.cs (set_CancelButton): if the button's DialogResult is
484         None, set it to Cancel.  Fixes bug 80180.
485
486 2006-12-08  Jackson Harper  <jackson@ximian.com>
487
488         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
489         to watch ourselves when setting the canvas size and setting the
490         scrollbar values.
491
492 2006-12-08  Chris Toshok  <toshok@ximian.com>
493
494         * DataGrid.cs: comment out the two MakeTransparent calls for the
495         time being so people using trunk (and not 1.2.2) on windows can
496         actually use the datagrid.  This deals with bug #80151.
497
498 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
499
500         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
501         Graphics.DrawImage (image, int, int, int, int) overload instead
502         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
503         the dpi difference and was blurring images it drew.
504         [Fixes bug #79960]
505
506 2006-12-08  Chris Toshok  <toshok@ximian.com>
507
508         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
509         rowcnt is 0 (such as with an empty datasource), and make sure we
510         initialize not_usedarea.Y to cells.Y, so we don't draw over the
511         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
512
513 2006-12-08  Chris Toshok  <toshok@ximian.com>
514
515         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
516         grid.
517
518 2006-12-08  Chris Toshok  <toshok@ximian.com>
519
520         [ Fixes bug #80167 ]
521         
522         * ThemeWin32Classic.cs: don't draw the image if the button's flat
523         style is FlatStyle.System.
524
525         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
526         ButtonBase.flat_style private, and switch uses of it to the public
527         property.
528         
529 2006-12-08  Chris Toshok  <toshok@ximian.com>
530
531         [ Fixes bug #80121 ]
532         
533         * ThemeWin32Classic.cs: center the caption text in the datagrid
534         when we draw it.
535
536         * DataGrid.cs: lessen the amount we add to the caption height from
537         6 to 2.  6 was making it huge.
538
539 2006-12-08  Andreia Gaita  <avidigal@novell.com>
540
541         * UpDownBase: Handle MouseWheel call directly instead of capturing
542         the inner textbox's OnMouseWheel. Fixes #80166
543
544 2006-12-08  Jackson Harper  <jackson@ximian.com>
545
546         * TextControl.cs: We need to invalidate the textbox when we empty
547         it (how had this not been discovered before?)
548
549 2006-12-08  Jackson Harper  <jackson@ximian.com>
550
551         * TextBoxBase.cs: Reworked the mouse down code so I could get it
552         to behave like MS, we now ignore the eventargs.Click and just
553         track state ourself, which we were already doing anyways.
554         - Constrain the double click handler to the double click size.
555         
556 2006-12-08  Chris Toshok  <toshok@ximian.com>
557
558         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
559         direction if that scrollbar isn't shown.  fixes bug #80158.
560
561 2006-12-08  Andreia Gaita  <avidigal@novell.com>
562
563         * NumericUpDown.cs: Update value on getter. Fixes #79950
564
565 2006-12-08  Chris Toshok  <toshok@ximian.com>
566
567         * MenuItem.cs: add back in the event cloning code.  I didn't know
568         how to do it in the face of the EventHandlerList work i'd done
569         last week.  Fixes bug #80183.
570
571 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
572
573         * Control.cs: Add an invalidate to the BackgroundImage setter.
574         [Fixes 80184]
575
576 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
577
578         * ToolStrip*: Add some small properties reported by MoMA, fix event
579         firing and default properties based off of unit tests, and add some
580         attributes based off of the class status page.
581
582 2006-12-07  Jackson Harper  <jackson@ximian.com>
583
584         * TextBoxBase.cs: Take HideSelection into account when determining
585         whether or not to show the selection.
586         * RichTextBox.cs: After inserting the RTF into the document move
587         the cursor to the beginning of the document.
588
589 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
590
591         * Control.cs: Remove static ArrayList "controls" which maintained
592         a reference to every control created.
593         * Application.cs: Create a static FormCollection to maintain a reference
594         to every form created.  Use it in places that formerly enumerated through
595         the controls one looking for forms.
596         * Form.cs: Add and remove self from above FormCollection.
597
598 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
599
600         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
601           not libgdk (though it makes me wonder why I didn't have any
602           problems)
603
604 2006-12-07  Chris Toshok  <toshok@ximian.com>
605
606         [ you had to know this was coming after that last commit...]
607         
608         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
609         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
610         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
611         XCopyArea).
612
613 2006-12-07  Chris Toshok  <toshok@ximian.com>
614
615         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
616         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
617         all the behavior we need for double buffering.
618
619         * XplatUIDriver.cs: implement the 3 double buffer methods using a
620         client side Bitmap, just like the old Control-based double buffer
621         code did.  The methods are virtual, so each XplatUI driver
622         subclass can replace the implementation to use a faster, platform
623         specific approach.
624
625         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
626         double buffer code, and clean things up a bit in the process.
627
628 2006-12-06  Chris Toshok  <toshok@ximian.com>
629
630         * Control.cs: reindent WndProc.
631
632 2006-12-06  Chris Toshok  <toshok@ximian.com>
633
634         [ I wanna be like BenM when I grow up ]
635         
636         * Hwnd.cs: create a single static Graphics object on the static
637         Bitmap we create.  use this for our text measurements.
638
639         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
640         This was causing us to allocate a backbuffer for every control,
641         even when it wasn't flagged as double buffered.  Instead use the
642         single graphics instance.  This might have implications for
643         multithreaded applications.  If we run into problems we can switch
644         to creating 1 Graphics per control, on the static Hwnd bitmap.
645
646         this change nets us a 7M savings in private dirty mappings when
647         running FormsTest.exe.
648
649 2006-12-06  Chris Toshok  <toshok@ximian.com>
650
651         * ListView.cs: the BackgroundImage override is just to set
652         attributes.  chain up to base.BackgroundImage.
653
654         * RichTextBox.cs: same.
655
656         * ToolBar.cs: same, but we need to also redraw the toolbar when it
657         changes, so instead a handler for BackgroundImageChanged.
658         
659         * Control.cs: make background_image private.
660
661 2006-12-06  Chris Toshok  <toshok@ximian.com>
662
663         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
664         sure we even need this assignment, but roll with it for now.
665
666         * Control.cs: make the cursor field private.
667
668 2006-12-06  Chris Toshok  <toshok@ximian.com>
669
670         * Form.cs: we don't need to explicitly set ImeMode to
671         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
672         behavior in the face of ImeMode.Inherit.
673
674         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
675         change the ctor's assignment to use ImeMode instead of ime_mode.
676
677         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
678         ImeModeInherit.  Only check for the parent's imemode (and return
679         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
680         This fixes the button unit test, which sets both ImeMode and
681         DefaultImeMode to ImeMode.Disable.
682
683         also make the ime_mode field private.
684
685 2006-12-06  Chris Toshok  <toshok@ximian.com>
686
687         * Control.cs: make control_style private.
688
689         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
690         setting the styles to true, then setting them to false instead of
691         reverting to their previous values.
692
693         also, call SetStyle on the scrollbars instead of using
694         control_style directly.
695
696 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
697
698         * FormCollection.cs: Implement. [2.0]
699
700 2006-12-06  Chris Toshok  <toshok@ximian.com>
701
702         * Control.cs: make tab_stop private.
703
704         * Label.cs: set TabStop, not tab_stop.  reformat some event
705         add/remove methods to make them more compact.
706
707 2006-12-06  Chris Toshok  <toshok@ximian.com>
708
709         * RadioButton.cs: fix TabStop handling.
710
711 2006-12-06  Chris Toshok  <toshok@ximian.com>
712
713         * TextBox.cs: remove the explicit assignments to has_focus.
714         Control does that.
715
716         * ButtonBase.cs: remove the assignment to has_focus.  Control will
717         manage that.
718         
719 2006-12-06  Chris Toshok  <toshok@ximian.com>
720
721         * ButtonBase.cs: remove all uses of is_enabled from this code.
722         it's always true when any of the code containing the checks is
723         executed.
724
725 2006-12-06  Chris Toshok  <toshok@ximian.com>
726
727         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
728         with different semantics (some are present in both 1.1 and 2.0
729         profiles) so that we match MS's behavior in our unit tests.
730
731 2006-12-06  Jackson Harper  <jackson@ximian.com>
732
733         * TextControl.cs: Make this operation undoable.
734         * TextBoxBase.cs: Factor the border width into the preferred
735         height.
736         - implement Modified as per the spec.
737
738 2006-12-06  Chris Toshok  <toshok@ximian.com>
739
740         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
741
742 2006-12-06  Chris Toshok  <toshok@ximian.com>
743
744         * Control.cs: make right_to_left and context_menu fields private.
745
746 2006-12-06  Chris Toshok  <toshok@ximian.com>
747
748         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
749         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
750         Control.child_controls private.  switch all uses over to
751         Control.Controls.
752
753 2006-12-06  Chris Toshok  <toshok@ximian.com>
754
755         * System.Windows.Forms/GroupBox.cs,
756         System.Windows.Forms/AccessibleObject.cs,
757         System.Windows.Forms/ErrorProvider.cs,
758         System.Windows.Forms/Control.cs,
759         System.Windows.Forms/UpDownBase.cs,
760         System.Windows.Forms/ScrollBar.cs,
761         System.Windows.Forms/DateTimePicker.cs,
762         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
763         System.Windows.Forms/ToolTip.cs,
764         System.Windows.Forms/RadioButton.cs,
765         System.Windows.Forms/LinkLabel.cs,
766         System.Windows.Forms/Splitter.cs,
767         System.Windows.Forms/TextBoxBase.cs,
768         System.Windows.Forms/ToolStripTextBox.cs,
769         System.Windows.Forms/ContainerControl.cs,
770         System.Windows.Forms/ThemeWin32Classic.cs,
771         System.Windows.Forms/SizeGrip.cs,
772         System.Windows.Forms/ToolStripDropDown.cs,
773         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
774         private.  switch all uses over to Control.Parent.
775
776 2006-12-06  Chris Toshok  <toshok@ximian.com>
777
778         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
779         Control does this before calling emitting these events.
780
781         * TabControl.cs: same.
782
783         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
784         Control.client_rect.
785
786         * ButtonBase.cs: use the ClientSize property instead of the
787         client_size field.
788
789         * ScrollableControl.cs: same.
790
791         * Control.cs: another pass at making properties private.  also,
792         move the initialization of tab_stop to the ctor.
793
794 2006-12-05  Andreia Gaita <avidigal@novell.com>
795
796         * TabControl.cs: Let the selected index be set freely if the 
797         control handle is not yet created.
798
799 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
800
801         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
802         internal until I can rewrite DefaultLayout.
803         * ToolStrip.cs: Fix build error and some general cleaning.
804         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
805         Fix build errors caused by making some of Control's fields private.
806
807 2006-12-05  Jackson Harper  <jackson@ximian.com>
808
809         * TextControl.cs: Redo Insert a little so that it use IndexOf
810         instead of Split, this prevents it from messing up on things like
811         \n\n\n. Also more effecient since the split array doesn't need to
812         be created.
813         * TextBoxBase.cs: AppendText doesnt handle multiline and non
814         multiline text differently, this is the first of many fixes that
815         will make multiline/non-multiline the same thing as far as the
816         TextBoxBase is concerned.
817         - Don't split the text and insert lines, this can lose some line
818         endings (like is the last line a soft or hard break). Instead use
819         the new Insert.
820         - Fix an off by one when combining all the lines in the Text
821         getter.
822         - Remove separate multiline handling from the Text getter/setter.
823
824 2006-12-05  Chris Toshok  <toshok@ximian.com>
825
826         * ButtonBase.cs: a few changes:
827
828         - don't reinitialize internal Control fields in the ctor when they
829         have the same values as Control sets them.
830
831         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
832         this before calling those methods.
833
834         - we don't need to call Refresh for anything.  use Invalidate
835         instead.
836
837         - OnEnabledChanged doesn't need to redraw at all - Control.cs
838         calls Refresh in its OnEnabledChanged.
839         
840         - several of the events we were registered for in the ctor to
841         redraw ourselves already include calls to Invalidate in the
842         property setters that raise the events.  remove the extra
843         invalidation.
844
845         - reformat a switch statement that was 83274658 columns wide.
846         
847 2006-12-05  Mike Kestner  <mkestner@novell.com>
848
849         * ComboBox.cs: fix a unit test regression from a TextBox
850         SelectionLength return of -1 when there's no selection.  
851
852 2006-12-05  Chris Toshok  <toshok@ximian.com>
853
854         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
855         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
856         cleaning up some of the internal Control fields being used by
857         subclasses.
858
859 2006-12-05  Mike Kestner  <mkestner@novell.com>
860
861         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
862         listbox after AddImplicit calls since it defaults to hidden. Add a 
863         hack to preserve requested heights across DropDownStyle changes.
864
865 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
866
867         * PropertyGrid.cs: Hide FindFirstItem method from public API.
868
869 2006-12-05  Chris Toshok  <toshok@ximian.com>
870
871         * DataGridView.cs: fix compiler warnings.
872
873         * PrintControllerWithStatusDialog.cs: same.
874
875         * ToolBar.cs: same.
876
877         * FolderBrowserDialog.cs: same.
878
879         * Splitter.cs: same.
880
881         * DataGridViewComboBoxCell.cs: same.
882
883         * XplatUIWin32.cs: same.
884
885         * PictureBox.cs: same.
886
887         * Win32DnD.cs: same.
888
889         * PageSetupDialog.cs: same.
890
891         * FileDialog.cs: same.
892
893         * PrintDialog.cs: same.
894
895         * DataGridTextBoxColumn.cs: same.
896
897         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
898
899 2006-12-05  Chris Toshok  <toshok@ximian.com>
900
901         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
902         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
903         System.ComponentModel.EventHandlerList work.
904
905 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
906
907         * DrawTreeNodeEventArgs.cs: Added.
908
909 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
910         
911         * InternalWindowManager.cs: Remove an unused field.
912         
913 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
914
915         * InternalWindowManager.cs:
916         - Save the point where the title bar is clicked.
917         
918         * MdiWindowManager.cs:
919         - Only allow moving of the window as long as the 
920         clicked point on the title bar does not get out of
921         MdiClient's rectangle. Fixes #79982.
922         
923         * MdiClient.cs:
924         - Added Horizontal/VerticalScrollbarVisible.
925         - Simplified the scrollbar sizing algorithm.
926         - Cache the difference in scrolled value in
927         H/VBarValueChanged and move the calculation out
928         of the for loop.
929
930 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
931
932         * Control.cs: Make the Console.WriteLine in WndProc 
933         write more info.
934
935 2006-12-05  Chris Toshok  <toshok@ximian.com>
936
937         * ToolStripManager.cs, ToolStripButton.cs,
938         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
939         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
940         ToolStripSplitButton.cs, ToolStripSeparator.cs,
941         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
942         ToolStripProgressBar.cs, ToolStripContainer.cs,
943         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
944         to using System.ComponentModel.EventHandlerList.
945
946 2006-12-04  Chris Toshok  <toshok@ximian.com>
947
948         * LinkLabel.cs: fix up compiler warnings.
949
950         * TableLayoutSettings.cs: same.
951
952         * TreeView.cs: same.
953
954         * ToolBar.cs: same.
955
956         * TabControl.cs: same.
957
958         * RichTextBox.cs: same.
959
960         * ListViewItem.cs: same.
961
962         * PropertyGrid.cs: same.
963
964         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
965
966         * ToolTip.cs same.
967
968         * TextRenderer.cs: fix up compiler warnings.
969
970         * Label.cs: same.
971
972         * Form.cs: corcompare fixes.
973
974         * PictureBox.cs: fix up compiler warnings.
975
976         * ImageListStreamer.cs: same.
977
978         * TrackBar.cs: corcompare fix.
979
980         * Control.cs: fix up compiler warnings.
981
982         * SplitterPanel.cs: same.
983
984         * NumericTextBox.cs: same.
985
986         * ImageList.cs: same.
987
988         * StatusStrip.cs: same.
989
990         * ProgressBar.cs: corcompare fix.
991
992         * ToolStripButton.cs: fix up compiler warnings.
993
994         * ToolStripStatusLabel.cs: same.
995
996         * ToolStripSplitButton.cs: same.
997
998         * ToolStripSeparator.cs: same.
999
1000         * ToolStripProgressBar.cs: same.
1001
1002         * ToolStripDropDownMenu.cs: same
1003
1004         * ToolStripDropDown.cs: same.
1005
1006         * ToolStripDropDownButton.cs: same.
1007
1008         * ToolStrip.cs: same.
1009
1010         * ToolStripControlHost.cs: same.
1011
1012         * ToolStripContentPanel.cs: same.
1013
1014         * ToolStripDropDown.cs: same.
1015
1016         * ToolStripContainer.cs: same.
1017
1018         * ToolStripPanel.cs: same, and add "new" where we need it to work
1019         with the new ArrangedElementCollection.
1020
1021         * ToolStripItemCollection.cs: add "new" where we need it to work
1022         with the new ArrangedElementCollection.
1023
1024 2006-12-04  Andreia Gaita <avidigal@novell.com>
1025
1026         * TabControl.cs: Fix default tab selection to after TabControl
1027         gets focus and not before. Fixes #80128
1028
1029 2006-12-04  Chris Toshok  <toshok@ximian.com>
1030
1031         * DataGridTableStyle.cs: remove the gross calling of
1032         datagrid.Refresh from here.  It's a broken idea and it doesn't
1033         work anyway.
1034
1035         * DataGrid.cs: instead, just register/unregister from the
1036         DataGridTableStyle events in CurrentTableStyle.  we play it
1037         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1038         even though some would most likely not require it.  Fixes bug
1039         #80115 (and one portion of #80117 as a side effect).
1040
1041 2006-12-04  Chris Toshok  <toshok@ximian.com>
1042
1043         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
1044         so the textbox (if any) goes away.  Fixes bug #80117.
1045
1046 2006-12-04  Chris Toshok  <toshok@ximian.com>
1047
1048         * DataGridColumnStyle.cs: set the column's readonly property
1049         initially based on the property descriptor's IsReadOnly.  Fixes
1050         bug #80044.
1051
1052 2006-12-04  Chris Toshok  <toshok@ximian.com>
1053
1054         * ComboBox.cs: wrap the dropdown style changing work in
1055         SuspendLayout/ResumeLayout.  Fixes bug #79968.
1056
1057 2006-12-04  Jackson Harper  <jackson@ximian.com>
1058
1059         * TextBoxBase.cs: Fix off by one, since these are one-based.
1060         * TextBox.cs: Select all the text when we get focus.  The TextBox
1061         does this but the RTB does not.
1062
1063 2006-12-04  Chris Toshok  <toshok@ximian.com>
1064
1065         * DataGridTextBoxColumn.cs: remove some spew.
1066
1067         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
1068         but some part of me is saying "it shouldn't be here.."  At any
1069         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
1070         setting the value.
1071
1072 2006-12-04  Chris Toshok  <toshok@ximian.com>
1073
1074         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
1075         to reassign the propertydescriptor.
1076
1077 2006-12-04  Jackson Harper  <jackson@ximian.com>
1078
1079         * TextBoxBase.cs:
1080         * TextControl.cs: Remove some unused variables.  Maybe this will
1081         patch things up between mike and I.
1082         - don't split lines less then one char wide, if the viewport is
1083         that small text won't be visible anyways.
1084         
1085 2006-12-04  Jackson Harper  <jackson@ximian.com>
1086
1087         * TextBoxBase.cs: Default selection length is -1, need to do some
1088         more testing on windows to see when this is used for the property.
1089         - Redid the Lines [] property to that we properly remove soft line
1090         breaks
1091         - added support for preserving carriage returns
1092         -  CanUndo is not a variable like 'is undo enabled' it just returns
1093         true if there is undo operations available.
1094         - AppendText doesn't need to grab the last tag itself anymore,
1095         this happens automatically when we move the cursor.
1096         * TextControl.cs: Add CompoundActions to the undo class. This
1097         allows combining the other operations into one big option.  ie a
1098         paste will combine { delete old, insert new, move cursor }
1099         - Add InsertString undo operation
1100         - New method for deleting multiline text
1101         - Add carriage returns to lines. So we can preserve carriage
1102         returns when text is 'roundtripped'
1103
1104 2006-12-04  Chris Toshok  <toshok@ximian.com>
1105
1106         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
1107         minimum 0.  Fixes the scrollbar exception in bug #80136.
1108
1109 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1110
1111         * MdiClient.cs: 
1112         * MdiWindowManager: Removed unused fields and methods.
1113         
1114 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1115         
1116         * StatusBar.cs: Update all panels when a AutoSize=Contents
1117         panel needs updating.
1118         
1119         * StatusBarPanel.cs: Remove twidth and only use initialize.
1120         Fixes #80031.
1121                 
1122 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1123
1124         * Form.cs: When a form's MdiParent is set add it directly
1125         on top of the z-order in stead of relying on MdiClient's
1126         ActivateChild to do it. Fixes #80135.
1127         
1128         * MdiClient.cs: 
1129         - Remove original_order, mdi_child_list is already doing
1130         the same thing.
1131         - Create mdi_child_list on construction in
1132         stead of first use (avoids a few null checks).
1133
1134         * MenuItem.cs: Use an already existing list of mdi children
1135         to get the correct order of children and remove the other
1136         redundant list.
1137
1138 2006-12-04  Chris Toshok  <toshok@ximian.com>
1139
1140         * PropertyGridView.cs: cached_splitter_location is only used in
1141         !DOUBLEBUFFER code.
1142
1143         * PropertyGrid.cs: implement the ComComponentNameChanged event
1144         using Events, hoping that would fix the warning.  Looks like a
1145         compiler bug instead (#80144).
1146
1147         * PropertyManager.cs: remove unused method.
1148
1149 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1150
1151         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1152         include parentesis to fix expression evaluation. Fixes #79634.
1153
1154 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1155         
1156         * MenuAPI.cs:
1157         - Changes to fix behavior in Menu control, some reported in #80097
1158         and other detected during behavior refactory like a select event
1159         problems.
1160         - Remove unneded "if's" conditions.
1161         - Created an internal to flag when popup is active in control, we need 
1162         it because in .NET you can have menu active but without popup active
1163         when you active menu using popup without visible items.
1164         - Mimic win32 behavior for Select and Popup events.  
1165         - Dont open popup menu when you dont have visible subitems.
1166         - Do nothing when click on disabled menu item.
1167         - Some small changes to follow the coding style guidelines.
1168         - Unselect menu only when another control gives focus. Fixes #80097.
1169         - Remove unused code.
1170         
1171         * MenuItem.cs: internal VisibleItems method to check if menu
1172         theres visible subitems, it will be usefull to fix some 
1173         behavior in Menu control.
1174         
1175 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1176         
1177         * Timer.cs: Tag property for 2.0 profile.
1178         
1179 2006-12-01  Chris Toshok  <toshok@ximian.com>
1180
1181         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1182         
1183         * Win32DnD.cs: comment out some unused fields.
1184
1185         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1186         some unused properties/methods.
1187
1188         * XplatUIX11.cs: fix MousePosition so we override the base class's
1189         property instead of conflicting with it.
1190
1191         * PictureBox.cs: comment out some unused fields
1192
1193         * OSXStructs.cs: make some struct fields public.
1194
1195         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1196         MousePosition so we override the base class's property instead of
1197         conflicting with it.
1198
1199         * X11Dnd.cs: comment out some unused fields
1200
1201         * X11DesktopColors.cs: fix some struct field visibility to quiet
1202         the compiler.
1203
1204         * X11Dnd.cs: remove some debug code.
1205
1206         * ThemeClearlooks.cs: comment out unused field.
1207
1208         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1209
1210         * ThemeGtk.cs: comment out some unused pinvokes.
1211
1212         * Timer.cs: remove some unused fields.
1213
1214         * ThemeClearlooks.cs: comment out unused field.
1215
1216         * UpDownBase.cs: comment out unused field.
1217
1218         * DataObject.cs: comment out unused field.
1219
1220         * DataGridBoolColumn.cs: reomve unused field.
1221
1222         * DataGrid.cs: remove unused field.
1223
1224         * Cursor.cs: remove old ToBitmap code.
1225
1226         * ControlPaint.cs: remove unused method.
1227
1228         * ScrollBar.cs: remove unused fields.
1229
1230         * ComboBox.cs: remove unused field, and chain up to
1231         AccessibleObject ctor.
1232
1233         * ListBox.cs: remove unused field.
1234
1235         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1236
1237         * GridEntry.cs: remove unused fields.
1238
1239         * Binding.cs: remove unused fields.
1240
1241         * AxHost.cs: remove unused method.
1242
1243         * ContainerControl.cs: remove unused field.
1244
1245         * ScrollableControl.cs: remove unused fields.
1246
1247 2006-12-01  Chris Toshok  <toshok@ximian.com>
1248
1249         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1250         the Where/WhereString stuff.  it's easy enough to CWL
1251         Environment.StackTrace.
1252
1253         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1254         unused private fields.
1255
1256 2006-12-01  Jackson Harper  <jackson@ximian.com>
1257
1258         * TextControl.cs: Do not update the view while inserting multiline
1259         text. If we update the view we might wrap lines, before entering
1260         the new lines, which causes the new line insertion calculations to
1261         be totally fubared.
1262         - Remove an old TODO
1263         - Make debug output a little nicer
1264         
1265 2006-12-01  Chris Toshok  <toshok@ximian.com>
1266
1267         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1268
1269 2006-12-01  Chris Toshok  <toshok@ximian.com>
1270
1271         [ fix the majority of the CS0108 warnings we've been suppressing ]
1272         
1273         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1274
1275         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1276         to "LayoutToolBar" to quiet mcs.
1277         
1278         * TabControl.cs: mark our ControlCollection class as 'new'.
1279
1280         * TextBoxBase.cs: mark some events as 'new'.
1281
1282         * Splitter.cs: TabStop is 'new'.
1283
1284         * ControlBindingsCollection.cs: mark a few methods as new since
1285         they change the visibility from protected to public.
1286
1287         * RadioButton.cs: DoubleClick -> base class, and remove unused
1288         HaveDoubleClick.
1289
1290         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1291         events as new.
1292
1293         * NumericUpDown.cs: TextChanged -> base class.
1294
1295         * CheckedListBox.cs: mark our ObjectCollection class as new to
1296         quiet mcs.
1297
1298         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1299         muck with the base class.
1300
1301         * StatusBar.cs: fix some mcs warnings about Update being the same
1302         name as a base class method.
1303
1304         * RichTextBox.cs: mark some events as new, and make them do things
1305         to the base class impl.
1306
1307         * UserControl.cs: mark TextChanged as new, and have it manipulate
1308         base.TextChanged.
1309
1310         * UpDownBase.cs: mark some things new.
1311
1312         * CheckBox.cs: mark DoubleClick "new", and add some text about
1313         what we need to look at.
1314
1315         * Panel.cs: make the events "new", and manipulate the base
1316         version.  these are just here for attributes.
1317
1318         * AccessibleObject.cs: make owner private.
1319
1320         * Control.cs: deal with AccessibleObject.owner being private.
1321         cache our own copy if we need it.
1322
1323         * Button.cs: add "new" to the DoubleClickEvent.
1324
1325         * ListBox.cs: no need to track our own has_focus here.  let
1326         Control.has_focus do it for us.  Also some other work to clear up
1327         warnings about not overriding base class methods of the same name.
1328         
1329         * ComboBox.cs: clear up some warnings about not override base
1330         class methods of the same name.
1331
1332 2006-12-01  Chris Toshok  <toshok@ximian.com>
1333
1334         * Form.cs: flag a few things as "new" to quiet some of the mcs
1335         warnings.
1336
1337         * AxHost.cs: same.
1338
1339         * PrintPreviewDialog.cs: same.
1340
1341         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1342         now DGV isn't so horrible on the class status page.  also, move
1343         all events to using System.ComponentModel.EventHandlerList.  my
1344         wrists hurt.
1345
1346 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1347
1348         * MdiWindowManager.cs:
1349         - Set form to active mdi child if shown,
1350         and update the active mdi child to the next 
1351         remaining child in the z-order if the form is hidden.
1352
1353         * Form.cs: 
1354         - Track if the form has been visible and if its 
1355         visibility is beeing changed, so that the MdiClient
1356         can properly decide the ActiveMdiChild. The MdiClient 
1357         cannot track this since the form can change visibility 
1358         before MdiClient is created.
1359
1360         * MdiClient.cs:
1361         - Don't activate anything of the parent form is changing
1362         its visibility.
1363         - Rework ActiveMdiChild to only return visible mdi 
1364         children and take into account several other corner 
1365         cases.
1366
1367 2006-12-01  Chris Toshok  <toshok@ximian.com>
1368
1369         * IBindableComponent.cs: new 2.0 interface.
1370
1371 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1372
1373         * DataGrid.cs: Font for caption area is bold by default.
1374
1375 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1376
1377         * Menu.cs: Tag property for 2.0.
1378         
1379 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1380
1381         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1382         
1383 2006-12-01  Chris Toshok  <toshok@ximian.com>
1384
1385         * TreeView.cs: doh, the Begin* events should be
1386         TreeViewCancelEventHandler.
1387
1388 2006-12-01  Chris Toshok  <toshok@ximian.com>
1389
1390         * Form.cs: Form.ControlCollection already stores off the
1391         form_owner field.  don't access the base class's internal "owner"
1392         field.
1393
1394         * Control.cs: make all the fields in Control.ControlCollection
1395         private.  there's no need for any internal fields here.
1396
1397 2006-12-01  Chris Toshok  <toshok@ximian.com>
1398
1399         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1400         OnHandleCreated.  Fixes bug #80109.
1401
1402 2006-12-01  Chris Toshok  <toshok@ximian.com>
1403
1404         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1405         SplitContainer.cs, Control.cs, StatusStrip.cs,
1406         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1407         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1408         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1409         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1410         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1411         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1412         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1413         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1414         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1415         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1416
1417         do most of the work to convert our code over to use
1418         System.ComponentModel.Component.Events for
1419         adding/removing/dispatching events.
1420
1421
1422 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1423
1424         * DataGridView.cs: Fix an ArgumentNullException reported 
1425         twice today in IRC.
1426
1427 2006-11-30  Mike Kestner  <mkestner@novell.com>
1428
1429         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1430         grabbed listbox.  Fixes #80036 and #80101.
1431
1432 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1433
1434         * Message.cs: Changed ToString() to match MS.
1435         
1436 2006-11-30  Jackson Harper  <jackson@ximian.com>
1437
1438         * TextBoxBase.cs: You can still change the selected text on a read
1439         only textbox.
1440         * TextControl.cs: Lower magic number for wrap calculations. This
1441         lets text get closer to the right (far) edge.
1442
1443 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1444
1445         * Control.cs: Tweak 2.0 layout properties.
1446         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1447         * TextRenderer.cs: Add a new overload.
1448         * ToolStrip*: Huge amount of changes and new features.
1449
1450 2006-11-30  Mike Kestner  <mkestner@novell.com>
1451
1452         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1453         scroll range correct.  Fixes #79994.
1454
1455 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1456
1457         * MdiWindowManager.cs: Update main form's text when
1458         a form is closed. (fixes #80038)
1459         
1460 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1461
1462         * ToolBar.cs:
1463         - Fix an regression in ButtonSize.
1464         - Get ImeMode default value change to "Disable".
1465         - Get ShowTooltips default value change to true, default value is 
1466         "false" but after make a test in .NET we get "true" result as default.
1467         
1468 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1469
1470         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1471
1472 2006-11-29  Chris Toshok  <toshok@ximian.com>
1473
1474         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1475         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1476         SetWindowTransparency hasn't been called.
1477
1478 2006-11-29  Chris Toshok  <toshok@ximian.com>
1479
1480         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1481         if it's supported.
1482         (set_AllowTransparency): reorder things a little so that the
1483         WS_EX_LAYERED style is removed properly.
1484
1485 2006-11-29  Chris Toshok  <toshok@ximian.com>
1486
1487         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1488         
1489         * Form.cs: only call the XplatUI transparency method (get/set) if
1490         SupportsTransparency says it's supported. Otherwise fallback to
1491         doing nothing (in the set case) or returning the instance field we
1492         cache (in the get case).
1493
1494         * XplatUIStructs.cs: add TransparencySupport flag enum.
1495         
1496         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1497         change to SupportsTransparency.
1498
1499         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1500         TransparencySupport.None from SupportsTransparency.
1501
1502         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1503         TransparencySupport.Set from SupportsTransparency.
1504
1505         * XplatUIWin32.cs: implement GetWindowTransparency calling
1506         GetLayeredWindowAttributes, and implement SupportsTransparency by
1507         checking whether or not both
1508         GetWindowTransparency/SetWindowTransparency are available
1509         entrypoints.  We need to do this since SetWindowTransparency is
1510         available as of win2k, but GetWindowTransparency requires winxp.
1511         yay win32 api.
1512
1513         * XplatUI.cs: Add GetWindowTransparency, and change
1514         SupportsTransparency to allow for either/both Get/Set.
1515
1516 2006-11-29  Chris Toshok  <toshok@ximian.com>
1517
1518         * DataGrid.cs: keep from going into an infinite loop redrawing a
1519         datagrid that has no datasource.  Fixes bug #80033.
1520
1521 2006-11-29  Chris Toshok  <toshok@ximian.com>
1522
1523         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1524         Invalidate) before the mainmenu has been assigned to a control.
1525
1526 2006-11-29  Chris Toshok  <toshok@ximian.com>
1527
1528         * DataGrid.cs: detect when we should be double the double click
1529         row/column autosize stuff, although that codepath has yet to be
1530         written.  part of the work for bug #79891.
1531
1532 2006-11-29  Chris Toshok  <toshok@ximian.com>
1533
1534         * Binding.cs (SetControl): fix unit test.
1535
1536 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1537
1538         * PageSetupDialog.cs: Validate the margins and set them in
1539         PageSettings. 
1540         * NumericTextBox.cs: New class to mimic the behavior of the
1541         textboxes used in the printing dialogs.
1542
1543 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1544         
1545         * Form.cs: Revert previous change (remove call UpdateBounds
1546         from form constructor), because it messes with the handle creation
1547         order, and that one needs lots and lots of love.
1548         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1549         for valid printer and throw InvalidPrinterException if document
1550         is set but printer not valid), adding a MonoTODO. Once 
1551         handle creation is done properly, we can put this back in.
1552
1553 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1554
1555         * MenuItem.cs: Create a invalidate method for menu item, to be
1556         calling from set text, it make text changes to imadiate update
1557         on screen. Fixes #80013. 
1558         
1559 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1560
1561         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1562         fixes bug #80070 and some other problem on toolbar buttons
1563         layout.
1564
1565 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1566
1567         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1568         with dotted brush.      Fixes #79564
1569         
1570 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1571
1572         * Form.cs: Removed call to UpdateBounds on Form
1573         constructor, it was causing a call to CreateHandle
1574         before it was supposed to.
1575         * PrintControllerWithStatusDialog: Applied patch
1576         by Chris Toshok to hide controller when there are
1577         no printers available.
1578         PrintDialog.cs: initialize printer settings to 
1579         null - correct DefaultValues test #5
1580         * PrintPreviewControl.cs: Move PrintController
1581         initialization to GeneratePreview
1582         * PrintPreviewDialog.cs: 
1583         - Remove Preview generation     from Document_set(). It is 
1584         called on OnPaint
1585         - Throw InvalidPrinterException on CreateHandle if
1586         a Document is set but there are no printers or 
1587         printer is not valid.
1588         * ThemeWin32Classic: don't paint PrintPreviewControl
1589         if there is nothing to paint    
1590
1591 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1592
1593         * Form.cs: Add another popular method.
1594
1595         * TabPage.cs: ditto.
1596
1597 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1598
1599         * MenuItem.cs: Fixed a warning.
1600         * InternalWindowManager: Fixed a warning.
1601
1602 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1603
1604         * MenuItem.cs:
1605         - When cloning a menu also clone MdiList and clone the 
1606           window menu items properly (as the forms and menuitems
1607           are kept in an internal hashtable, these need updating 
1608           as well)
1609         - Rewrote the window menu code, menu items are added in the
1610           order the forms were added to their parent, and they are
1611           updated every time the window menu is shown (before the
1612           list was only generated once, in the current order of the
1613           forms, and would never be updated). A checkmark is shown
1614           next to the item corresponding to the active mdi child.
1615
1616 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1617
1618         * XplatUIStructs.cs: 
1619         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1620         
1621         * XplatUIWin32.cs: 
1622         - Added TME_NONCLIENT to TMEFlags.
1623         - Handles WM_NCMOUSEMOVE in GetMessage to 
1624           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1625
1626         * MdiWindowManager:
1627         - Now merges mdi child menu to parent menu when maximized.
1628         - Recalculate NC areas of both mdi child and mdi parent. 
1629           Fixes #79757 (4).
1630           on window state and size changes.Fixes #79844 (3).
1631         - Handle WM_NCCALCSIZE to properly calculate borders.
1632
1633         * Form.cs:
1634         - Add/remove to the mdi containers list of mdi children 
1635           in the order they are added.
1636         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1637           to the maximized mdi child.
1638         
1639         * InternalWindowManager.cs:
1640         - Only execute a click on the control buttons on the mouse up,
1641           not on the mouse down. Show the state of the button 
1642           (was only showing Normal state, never Pressed state). The
1643           pressed button now follows the mouse (if you click the Close 
1644           button and move the mouse over the Maximize button, the 
1645           Maximize button will be shown as pressed). Since Win32 does
1646           not generate WM_NCLBUTTONUP if you release the button outside
1647           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1648           it as a mouse up.
1649         
1650         * ThemeWin32Classic.cs:
1651         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1652
1653         * MdiClient.cs:
1654         - Added a list of forms which contains the order the forms are
1655           added to the mdi parent.
1656         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1657         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1658         - If the active form changes set the scrollbars to the top
1659           of the Z order, otherwise the form could hide them.
1660         - Scrollbars are now sized according to ClientSize, not 
1661           to Size, and they take into account the other scrollbar
1662           to determine maximum.
1663         
1664 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1665         
1666         * XplatUI.cs:
1667         * XplatUIDriver.cs:
1668         * XplatUIX11.cs:
1669         * XplatUIWin32.cs:
1670         * XplatUIOSX.cs:
1671         - Added RequestAdditionalWM_NCMessages for windows to 
1672           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1673           Currently only implemented in XplatUIWin32.
1674
1675 2006-11-27  Chris Toshok  <toshok@ximian.com>
1676
1677         * Hwnd.cs: only add the hwnd to the windows hash in
1678         set_WholeWindow and set_ClientWindow if whole_window/client_window
1679         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1680
1681 2006-11-27  Mike Kestner  <mkestner@novell.com>
1682
1683         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1684         from the ComboListBox.ShowWindow code. Fixes #79969.
1685
1686 2006-11-27  Chris Toshok  <toshok@ximian.com>
1687
1688         * Hwnd.cs: remove the setters for ExposePending and
1689         NCExposePending - noone uses them.
1690
1691 2006-11-27  Jackson Harper  <jackson@ximian.com>
1692
1693         * TextControl.cs: new param for ReplaceSelection which determines
1694         whether we select the new selection, or set the cursor to the end
1695         of the new selection.
1696         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1697         pasting, select the new text.
1698         * RichTextBox.cs: Use new param for ReplaceSelection.
1699
1700 2006-11-27  Jackson Harper  <jackson@ximian.com>
1701
1702         * TextBoxBase.cs: Set the selection to the caret after the caret
1703         is moved, otherwise they get out of sync.
1704
1705 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1706
1707         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1708         it fixes #80015
1709
1710 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1711
1712         * ThemeWin32Classic.cs: 
1713         - Fix toolbar drop down arrow position.
1714         - Fix drop down appearance when ToolBar.Appearance is normal,
1715         it fixes #80018.
1716         
1717 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1718
1719         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1720         * Control.cs: Same.
1721         * UpDownBase.cs: Same.
1722         * ButtonBase.cs: Same.
1723         * ScrollBar.cs: Same.
1724         * TrackBar.cs: Same.
1725         * PictureBox.cs: Same.
1726         * UserControl.cs: Same.
1727         * Label.cs: Same.
1728         * ListControl.cs: Same.
1729         * TextBoxBase.cs: Same.
1730         * ListView.cs: Same.
1731         * RichTextBox.cs: Same.
1732         * TreeView.cs: Same.
1733
1734 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1735
1736         * PrintDialog.cs:
1737         - Text label for where 
1738         - Text label comment was not shown
1739
1740 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1741
1742         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1743
1744 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1745
1746         * InternalWindowManager.cs: 
1747         - Handle WM_PARENTNOTIFY to activate the form
1748         if any child control is clicked.
1749         - The form is only sizable if not minimized.
1750
1751         * MdiWindowManager.cs:
1752         - Save the IconicBounds if the form is moved.
1753         - Rework SetWindowState, now the window bounds 
1754         are stored only if the old window state is Normal.
1755         
1756         * MdiClient.cs:
1757         - In SetWindowStates store the old window state if 
1758         the window is maximized and restore window state if
1759         the window looses focus.
1760         - Don't handle any scrollbar value changes if 
1761         initializing the scroll bars. Fixes #79771.
1762         - Reworked ArrangeIconicWindows. Current algorithm
1763         tests bounds agains all other minimized windows, if
1764         any intersections create new bounds (going left to 
1765         right, bottom to top) and then test again. When 
1766         successful the bounds are saved and never computed
1767         again. Fixes #79774.
1768
1769 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1770
1771         * InternalWindowManager.cs: Added HandleTitleBarUp.
1772
1773 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1774
1775         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1776         hexadecimal in ParseUserEdit.
1777
1778         
1779 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1780
1781         * MdiWindowManager.cs: 
1782         - Handle a click on the form's icon to show the 
1783         system menu (when maximized). Fixes #79775.
1784         - Change the existing click handler for the form's
1785         icon when not maximized to show on MouseUp.
1786         Fixes #79776.
1787
1788         * Form.cs: In OnResize only layout the mdi child's
1789         parent if it actually has a parent. Might not if
1790         the window is closing.
1791
1792
1793 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1794
1795         * MdiClient.cs: Ignore active MDI client for text of parent, if
1796         child has no text set.
1797
1798 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1799
1800         * ToolBar.cs: Fixed ToString to match MS.
1801
1802 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1803
1804         * NumericUpDown: 
1805         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1806         update inner values on set. Fixes #79966.
1807         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1808         - Fix hexadecimal parsing.
1809         
1810         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1811         parent. Fixes #79957
1812
1813 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1814
1815         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1816         the actual size has to be queried, since if height /
1817         width is negative Win32 changes it to 0. 
1818         Fixes #79999 on Windows.
1819         
1820         * XplatUIX11.cs: Set height / width to 0 if negative
1821         in SetWindowPos. Fixes #79999 on Linux.
1822         
1823 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1824
1825         * ThemeWin32Classic.cs: Fix text redenring when button is
1826         pressed.
1827
1828 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1829
1830         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1831         and later navigate by mouse. Fixes #79528.
1832
1833 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1834
1835         * ToolBar.cs: Set default value for TabStop to false in
1836         constructor, it fixes remaining behavior of bug #79863.
1837
1838 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1839
1840         * MdiWindowManager.cs:
1841         * InternalWindowManager.cs:
1842         - Moved a few methods specific to Mdi from 
1843         InternalWindowManager to MdiWindowManager.
1844         Fixes #79996.
1845         
1846 2006-11-21  Chris Toshok  <toshok@ximian.com>
1847
1848         * XplatUIOSX.cs: stub out InvalidateNC.
1849
1850         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1851         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1852
1853         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1854
1855         * XplatUIDriver.cs: add InvalidateNC abstract method.
1856
1857         * XplatUI.cs: add InvalidateNC.
1858
1859 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1860
1861         * ToolBar.cs: Invalidate complete button area when pressed status 
1862         was changed.
1863         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1864         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1865         by 1 when button is pressed.
1866
1867 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1868
1869         * ToolButton.cs: Invalidate middle of DropDown button when
1870         ToolBar theres DropDownArrows.
1871         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1872         fix DropDown drawing operations.
1873
1874 2006-11-20  Chris Toshok  <toshok@ximian.com>
1875
1876         * NativeWindow.cs: fix the formatting of functions ('{' on the
1877         following line), and enable the thread exception dialog.
1878
1879         * Application.cs: remove the duplicate exception catching from
1880         here.
1881
1882 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1883
1884         * Toolbar.cs: Triggers button click event when click on icon
1885         of dropdown ToolBarButton. Fixes #79912.
1886         
1887 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1888
1889         * Theme.cs:
1890         * ThemeWin32Classic.cs:
1891         - Added a property WindowBorderFont to enable themeing
1892           of mdi child windows' Text.
1893           
1894 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1895
1896         * InternalWindowManager.cs:
1897         * Form.cs:
1898         * MdiClient.cs:
1899         * MdiWindowManager.cs: 
1900         - If mdi child is maximized, set mdi parent's
1901           text to "Parent - [Child]". Fixes #79770.
1902         - If there is any maximized mdi child windows, only the active 
1903           window (and any new windows) is maximized, the rest are normal.
1904         - On a WindowState change only save mdi child's window bounds 
1905           if the old window state was normal. Fixes #79774.
1906         - The scroll bars are now calculated on hopefully all
1907           necessary events. Fixed #79771 / #79844->6 / #79906.
1908         - MdiClient.SizeScrollBars() now takes into account docked 
1909           controls in the parent when calculating available space.
1910         - InternalWindowManager now always repaints the entire title
1911           area. Fixes #79844->1/4/5.
1912         - Added RequestNCRecalc on mdi child windowstate changes.
1913           Fixes #79772.
1914
1915 2006-11-20  Mike Kestner  <mkestner@novell.com>
1916
1917         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1918         in the MouseUp handler of the listbox and move the return handling
1919         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1920
1921 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1922
1923         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1924
1925 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1926
1927         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1928           working in 1.2.x anymore. So, updated.
1929
1930 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1931
1932         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1933         NumberGroupSeparator of current culture instead of assuming en-US.
1934         Fixed bug #79967.
1935
1936 2006-11-17  Mike Kestner  <mkestner@novell.com>
1937
1938         * Control.cs: Add the concept of implicit bounds setting so that
1939         dock/undock round trips preserve explicitly set size/locations.
1940         Fixes #79313.
1941
1942 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1943
1944         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1945           can't handle those filters. (Fixes bug #79961)
1946
1947 2006-11-17  Chris Toshok  <toshok@ximian.com>
1948
1949         [ fixes the exit/crashes associated with #79835.  it's clearly
1950         suboptimal though, we need to figure out a better way to solve
1951         this. ]
1952         
1953         * PrintPreviewControl.cs: deal with the new invalid printer
1954         exceptions.
1955
1956         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1957         and return false (so CommonDialog.ShowDialog doesn't actually show
1958         the form.)
1959
1960         * PrintDialog.cs: enable/disable the Ok button depending on
1961         whether or not the printer is valid.
1962
1963         * CommonDialog.cs (ShowDialog): only actually show the form if
1964         RunDialog returns true.
1965
1966 2006-11-17  Jackson Harper  <jackson@ximian.com>
1967
1968         * TextControl.cs: When soft splitting a line, mark it as a soft
1969         split line. Also carry over the current line break to the next
1970         line.
1971
1972 2006-11-17  Chris Toshok  <toshok@ximian.com>
1973
1974         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1975         only want to shift the part of the invalid area that overlaps the
1976         area we're scrolling.  we also don't want to clear the invalid
1977         area unless the invalid area was entirely contained within the
1978         scrolling area.
1979
1980 2006-11-16  Chris Toshok  <toshok@ximian.com>
1981
1982         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1983         also make sure to free the memory returned by XGetWindowProperty
1984         in GetText().
1985
1986         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1987
1988 2006-11-16  Chris Toshok  <toshok@ximian.com>
1989
1990         * XplatUI.cs: add a new super secret way to get at the totally
1991         unsupported X11 backend.
1992
1993 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1994
1995         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1996
1997 2006-11-16  Jackson Harper  <jackson@ximian.com>
1998
1999         * TreeView.cs: Allow more explicit setting of top node position
2000         for scrollbars. Slower algo, but more accurate.
2001         - CollapseAll should maintain the current top node.
2002         * TextBoxBase.cs: When positioning the caret, use the line, pos
2003         method, since the x, y method does not grab the correct tag, and
2004         the caret height never gets set correctly. (Maybe I should just do
2005         away with the caret having its own height, and always use the
2006         carets current tag for height).
2007
2008 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2009
2010         [Fixes 79778, 79923]
2011
2012         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2013         Parent to the FosterParent instead.
2014
2015 2006-11-16  Jackson Harper  <jackson@ximian.com>
2016
2017         * TreeView.cs: Need to recalc the topnode when we expand or
2018         collapse. The scrolling methods can't handle this on their own,
2019         since they use differences between the last scroll position, and
2020         those difference get completely messed up since we are expanding
2021         nodes.  This problem should probably be fixed in the scrolling
2022         methods, so they can figure out exactly where they are, but this
2023         will slow things down a little.
2024         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2025         strings, makes nunit-gui look a lot nicer.
2026
2027 2006-11-16  Chris Toshok  <toshok@ximian.com>
2028
2029         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2030         the broken multithreaded event handling we have in here.  File
2031         this entry under "Why we should move to the new X11 backend".
2032
2033         Any thread can make it into UpdateMessageQueue, which gets events
2034         from the X socket - some of which could belong to hwnds being
2035         managed by a different thread.  We can also have multiple threads
2036         in UpdateMessageQueue at the same time, with each one reading from
2037         the X socket.  This leads to many problems, with the following
2038         solutions:
2039
2040         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2041         EnqueueLocked.
2042
2043         The MotionNotify compression we do can't work across threads
2044         (without locking the entire queue, perhaps) since we call
2045         hwnd.Queue.Peek, so we just punt and don't compress motion events
2046         unless the owning thread is the one which got the X event.
2047
2048         ConfigureNotify is another fun one, since it modifies the hwnd's
2049         bounds and then enqueues the event.  We add a lock to Hwnd which
2050         is held when setting configure_pending to true (and enqueuing the
2051         event).
2052
2053         There is a race wrt the wake socket.  we need to make sure that
2054         only 1 thread is waiting on that socket, or else a thread could
2055         sleep waiting for data that never comes.  It's difficult (but not
2056         impossible) to make happen, because it seems to require something
2057         like the following:
2058
2059             1. Thread 1 polls on wake_receive
2060         
2061             2. poll returns saying there's data to be read on
2062                wake_receive.
2063         
2064             3. Thread 2 polls on wake_receive and immediately returns
2065                saying there's data to be read.
2066
2067             4. Thread 2 reads the wakeup byte from wake_receive
2068
2069             5. Thread 1 attempts to read the wakeup byte from
2070                wake_receive.
2071
2072             6. Thread 2 exits (due to a form closing, perhaps).
2073
2074             7. Thread 1 blocks forever.
2075         
2076         Fun, eh?
2077
2078         Fixing the Expose handling isn't done yet, and the races inherent
2079         in that piece of code are responsible for the drawing mistakes you
2080         see when generating expose events in a MT app (like NPlot).  This
2081         one is the likely to be the hardest to bandaid, and it doesn't
2082         appear to cause anything but drawing problems.  The other issues
2083         caused apps to exit or hang.
2084
2085         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
2086         called from a different thread than the one that should be calling
2087         these functions.
2088
2089         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
2090
2091 2006-11-15  Chris Toshok  <toshok@ximian.com>
2092
2093         * Application.cs: null out the context's MainForm when we exit
2094         RunLoop.  Fixes a newly checked in unit test as well as the last
2095         ODE from bug #79933.
2096
2097 2006-11-15  Chris Toshok  <toshok@ximian.com>
2098
2099         * Form.cs (set_Owner): allow a null value so we can clear the
2100         form's owner.
2101         (Dispose): set all our owned_form's Owner properties to null, and
2102         clear the owned_forms collection.
2103         (WM_CLOSE): clean up this a little bit.. still not right though.
2104
2105         * ApplicationContext.cs: OnMainFormClosed should only call
2106         ExitThreadCore if the main form isn't recreating.  Fixes unit
2107         test.
2108
2109 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2110
2111         [Fixes 78346]
2112
2113         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
2114
2115 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2116
2117         [Fixes 79433]
2118
2119         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
2120         keep popup window types from stealing focus from the main form
2121         on Windows.
2122
2123         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2124
2125         * MenuAPI.cs: Set above flag to true.
2126
2127 2006-11-15  Chris Toshok  <toshok@ximian.com>
2128
2129         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2130         the button being released is not in wParam.
2131
2132 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2133
2134         * Form.cs: Add the released button to MouseEventArgs.Button
2135         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2136         on Win32.
2137
2138 2006-11-15  Chris Toshok  <toshok@ximian.com>
2139
2140         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2141         GetText().  untested because it's unused in our implementation.
2142         Control.Text always caches the text, even if
2143         ControlStyles.CacheText is not set.
2144
2145         fixes bug #79939.
2146
2147 2006-11-15  Chris Toshok  <toshok@ximian.com>
2148
2149         [ fixes #79933 ]
2150         
2151         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2152         message.  no hiding, no disposing.
2153
2154         in the WM_CLOSE handler, hide the form if it's modal.
2155
2156 2006-11-15  Chris Toshok  <toshok@ximian.com>
2157
2158         * XplatUIX11.cs: use AddExpose instead of sending a message.
2159         fixes textbox border drawing.
2160
2161 2006-11-15  Chris Toshok  <toshok@ximian.com>
2162
2163         * PropertyGridView.cs: keep from crashing on mouse move/down when
2164         the property grid is empty.
2165
2166 2006-11-14  Jackson Harper  <jackson@ximian.com>
2167
2168         * TextControl.cs: Make PageUp and PageDown more like the MS
2169         versions.
2170         * TextBoxBase.cs: When we set the text property position the
2171         cursor at the beginning of the document.
2172
2173 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2174
2175         * Form.cs: if a mdi child's WindowState has changed
2176         before it's creation, it would display wrong control
2177         buttons.
2178         
2179 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2180
2181         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2182           (Fixes bug #79927)
2183
2184 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2185
2186         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2187         the window gets to paint its borders even if the window is
2188         getting smaller.
2189         
2190         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2191         otherwise the old control buttons would still be painted 
2192         if the window gets bigger.
2193         
2194         * PaintEventArgs.cs: add an internal method so that the clip 
2195         rectangle can be changed.
2196         
2197 2006-11-13  Chris Toshok  <toshok@ximian.com>
2198
2199         [ fixes bug #79745 ]
2200         
2201         * NotifyIcon.cs: lots of cleanup.
2202
2203         * X11Structs.cs: add an enum for XEMBED messages.
2204
2205         * XplatUIX11.cs: reindent one of the giant switch statements, it
2206         was taking up an additional tab stop, and this file is already way
2207         too wide for my laptop's screen.
2208
2209         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2210         we get it, resize the hwnd to the WMNormalHints max_width/height.
2211
2212 2006-11-13  Jackson Harper  <jackson@ximian.com>
2213
2214         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2215         teh simple way.
2216
2217 2006-11-13  Chris Toshok  <toshok@ximian.com>
2218
2219         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2220         #79898.  force a reference to the Region to stick around so the
2221         unmanaged object isn't collected (rendering our handle in the MSG
2222         stale).
2223
2224 2006-11-13  Chris Toshok  <toshok@ximian.com>
2225
2226         * XplatUIX11.cs: fix #79917 for window managers which support
2227
2228         using XStoreName on the raw utf8, and we need to convert to
2229         COMPOUND_TEXT if it's non-latin1.
2230
2231 2006-11-13  Chris Toshok  <toshok@ximian.com>
2232
2233         * Form.cs (set_DialogResult): we need to set closing to false if
2234         we're setting our result to None.  fixes bug #79908.
2235
2236 2006-11-13  Jackson Harper  <jackson@ximian.com>
2237
2238         * TextControl.cs: When formatting text, compute the adjusted tag
2239         lengths correctly, using FindTag for the end tag instead of trying
2240         to figure it out outselves.
2241         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2242         the item, ItemHeight doesn't work, because trees with large
2243         imagelists use those for their height
2244         * TreeView.cs: ActualItemHeight factors in the image height
2245         - compute left edge of checkboxes correctly
2246         - when expanding/collapsing move the bottom down one pixel, so we
2247         aren't moving part of the node
2248
2249 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2250
2251         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2252         stack in PaintEventStart so that it won't get disposed by the gc
2253         before reaching PaintEventEnd.
2254
2255 2006-11-13  Jackson Harper  <jackson@ximian.com>
2256
2257         * TextBoxBase.cs: Don't select the word if we are on a line with
2258         no text.
2259         - We don't need to position the caret on mouse up, since the mouse
2260         move handler should be doing this
2261         - When double clicking a blank line, the caret is advanced to the
2262         next line.
2263
2264 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2265
2266         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2267
2268 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2269
2270         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2271         Fixes part of bug #79910.
2272
2273 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2274
2275         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2276           (bug #79903). Some minor string updates to match ms.
2277
2278 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2279
2280         * FileDialog.cs: Don't add an extension if the filename
2281           already ends with that extension.
2282
2283 2006-11-10  Jackson Harper  <jackson@ximian.com>
2284
2285         * TreeView.cs: Use the currently highlighted node for the
2286         BeforeSelect event.
2287         * TextBoxBase.cs: There is no need to expand selection on
2288         MouseMove.
2289         - CanUndo means 'is there any undo operations', not 'is undo
2290         allowed on this textcontrol. Fixed ClearUndo unit test.
2291
2292 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2293
2294         * Button.cs: only perform click when button is Selectable (so as 
2295         not to activate default buttons when they're disabled)
2296         
2297         * Control.cs: Rewrite of the SelectNextControl and related 
2298         methods. HandleClick now selects next control if the current one
2299         is being disabled.
2300         
2301         * Form.cs: OnActivated selects next active control only if Load 
2302         has already occurred. If Load hasn't run, there's no point in 
2303         selecting here, Load might change the state of controls.
2304         
2305         * FocusTest.cs: Tests marked as working again for these fixes
2306
2307 2006-11-10  Chris Toshok  <toshok@ximian.com>
2308
2309         * XplatUIX11.cs: a couple of fixes.
2310
2311         - use XInternAtoms with almost all the atoms we need to register,
2312         instead of many, many calls to XInternAtom.  should help a bit on
2313         startup time, at the expense of making the code look a little
2314         worse.
2315
2316         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2317         isn't reparented (which seems to be a clue that we're running fon
2318         compiz) and they have an Owner form.  This fixes the tool windows
2319         in paint.net when running under compiz.
2320
2321         - when setting the opacity of a window, support both the case
2322         where the window has been reparented and also when it hasn't been.
2323         Since compiz/beryl doesn't seem to reparent windows, and these are
2324         the only window managers which support translucency, I'm not sure
2325         why we need the hwnd.reparented case at all.. but leave it in.
2326         now we get translucent windows in paint.net under compiz/beryl.
2327
2328 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2329
2330         * FileDialog.cs: Always return the value for FilterIndex that
2331           was set. Internally convert it to values that make sense.
2332
2333 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2334         
2335         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2336
2337 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2338
2339         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2340         signature still using false to make it compatible with MS but the 
2341         initial value is true. Fixes #79855.
2342
2343 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2344
2345         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2346           only available on Linux.
2347
2348 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2349
2350         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2351         reduce number of calls to redraw method during toolbar creation.
2352
2353 2006-11-09  Mike Kestner  <mkestner@novell.com>
2354
2355         * ListView.cs : raise SelectedIndexChanged when an item is selected
2356         programmatically via the Item.Selected property.  Gert's nice 
2357         ListViewSelectedIndexChanged test fixture now runs clean.
2358
2359 2006-11-09  Mike Kestner  <mkestner@novell.com>
2360
2361         * ListView.cs : raise SelectedIndexChanged when a selected item is
2362         removed from the item collection using Remove or RemoveAt.
2363
2364 2006-11-09  Mike Kestner  <mkestner@novell.com>
2365
2366         * ListView.cs : raise SelectedIndexChanged once per selected item
2367         for compat with MS.  Fixes #79849+.
2368
2369 2006-11-09  Chris Toshok  <toshok@ximian.com>
2370
2371         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2372         we need to (if we have any tab pages).  Fixes unit test.
2373
2374 2006-11-09  Chris Toshok  <toshok@ximian.com>
2375
2376         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2377         width is 0, not 3.  Fixes a unit test.
2378
2379 2006-11-09  Mike Kestner  <mkestner@novell.com>
2380
2381         * ListView.cs : use Implicit scrollbars so that focus isn't 
2382         stolen from the listview when they are clicked. Fixes #79850.
2383
2384 2006-11-09  Chris Toshok  <toshok@ximian.com>
2385
2386         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2387         have a root item.  Fixes #79879.
2388
2389 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2390
2391         * FileDialog.cs:
2392           - Fix ToString ()
2393           - An ArgumentException is now thrown if a wrong filter
2394             is applied (matches ms). The previous filter doesn't change
2395             anymore if an exception is thrown.
2396           - Changing the FileName property also affects FileNames
2397         * ColorDialog.cs: The length of the CustomColors array is always
2398           16. It doesn't matter if we use a smaller array or null to update
2399           or change the custom colors property.
2400         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2401           for RootFolder if we get a undefined value.
2402
2403 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2404
2405         * StatusBarPanel.cs: 
2406         - Width is set to MinWidth if Width is smaller than
2407         MinWidth. Fixes #79842.
2408         - MinWidth now always overrides Width (MSDN says MinWidth
2409         is set to Width when AutoSize = None, but they do not 
2410         behave like that).
2411         - Style has now the the correct default value.
2412         
2413 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2414  
2415         * TrackBar.cs: 
2416         - The control is completely invalidated on 
2417         Got/LostFocus to draw the focus rectangle correctly.
2418         - When AutoSize then height is always 45 (width for 
2419         vertical controls).
2420         
2421         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2422         on the mouse when moved and it doesn't move when grabbed
2423         until the mouse moves as well. Also fixed some wrong 
2424         calculations when clicking on the thumb (control thought
2425         click was outside of thumb and didn't grab it).
2426         Fixes some of the issues in #79718.
2427
2428 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2429
2430         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2431
2432 2006-11-08  Chris Toshok  <toshok@ximian.com>
2433
2434         * PropertyGridView.cs: only call ToggleValue if the item is not
2435         readonly.
2436
2437 2006-11-08  Jackson Harper  <jackson@ximian.com>
2438
2439         * TextBoxBase.cs: The RichTextBox and textbox have very different
2440         word selection methods.  Implement the textbox's simple word
2441         selection here, and let the RichTextBox override and provide it's
2442         own.
2443         - Don't do extra selection on mouseup
2444         * RichTextBox.cs: Use the documents word selection algorithm, I
2445         think ideally, this function will be pulled into the
2446         RichTextBox.cs code someday.
2447
2448 2006-11-08  Chris Toshok  <toshok@ximian.com>
2449
2450         * RootGridEntry.cs: new class to represent GridItemType.Root.
2451
2452         * CategoryGridEntry.cs: reformat, and add boilerplate.
2453         
2454         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2455         returns the UI parent anyway, and we need special handling to
2456         implement the GetTarget method in the face of it.  Also, implement
2457         Select().
2458
2459         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2460         a root grid item, and use that instead of PropertyGrid.grid_items.
2461         Also, make use of TypeConverters (and add limitted support for
2462         ICustomTypeDescriptors) when initially populating the grid.
2463         Arrays now show up more or less properly.
2464
2465 2006-11-08  Chris Toshok  <toshok@ximian.com>
2466
2467         * Application.cs: set the modal dialog to non modal after we close
2468         it.  Fixes bug #79866.
2469
2470 2006-11-08  Jackson Harper  <jackson@ximian.com>
2471
2472         * TextControl.cs: When combining lines carry over the line end
2473         style from the end line.
2474         - Invalidate the selected area when setting it, if it is visible.
2475         * TextBoxBase.cs: Only rich text box can do full line selects.
2476         - Make sure to set the cursor position when there is a click,
2477         otherwise two clicks in separate areas could cause a large chunk
2478         to be selected.
2479
2480 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2481
2482         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2483         Fixes #79863.
2484
2485 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2486
2487         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2488         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2489
2490 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2491
2492         * MenuAPI.cs: Ignore right click for menu actions and fixes
2493         menu border when clicked.  Fixes #79846.
2494
2495 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2496
2497         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2498         MouseState after create wParam for message, this fixes mouse button 
2499         equal none in mouse up events.
2500         
2501 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2502
2503         * Control.cs : Focus() now calls Select to set the Container's
2504         Active Control and to give it focus. To avoid infinite recursion
2505         (because ActiveControl also calls Focus at one point), a check 
2506         is made in Focus with the help of a new internal variable
2507         is_focusing.
2508
2509 2006-11-07  Mike Kestner  <mkestner@novell.com>
2510
2511         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2512         if there's a selection.  Fixes #79849.
2513
2514 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2515
2516         * PropertyGrid.cs: Avoid fixed height of help description label.
2517         Fixes part of bug #79829.
2518
2519 2006-11-07  Chris Toshok  <toshok@ximian.com>
2520
2521         * XplatUIX11.cs: fix #79790 again, by using the
2522         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2523
2524 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2525
2526         * ToolBar.cs: Fix left click checking.
2527
2528 2006-11-07  Chris Toshok  <toshok@ximian.com>
2529
2530         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2531
2532 2006-11-07  Chris Toshok  <toshok@ximian.com>
2533
2534         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2535         PropertyManager unit tests.
2536
2537         * PropertyManager.cs: make property_name internal.
2538
2539 2006-11-07  Chris Toshok  <toshok@ximian.com>
2540
2541         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2542         pass a unit test.  Also, don't set image_index to anything in
2543         response to setting the ImageList property.
2544
2545 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2546
2547         * ToolBar.cs: Ignore click events when mouse button is not a
2548         left button, only accepts other button for dropdown menus.  
2549         Fixes #79854.
2550
2551 2006-11-07  Chris Toshok  <toshok@ximian.com>
2552
2553         * DataGrid.cs: make the back and parent row buttons a little less
2554         ugly.
2555
2556 2006-11-07  Jackson Harper  <jackson@ximian.com>
2557
2558         * TextBoxBase.cs: When converting to Text don't put line breaks in
2559         for soft line breaks.
2560         * TextControl.cs: There is an initial "fake" line in the document,
2561         this is now a soft break line, so that an extra line feed doesn't
2562         get added to the end of documents.
2563
2564 2006-11-07  Chris Toshok  <toshok@ximian.com>
2565
2566         [ fix bug #79778 ]
2567         
2568         * CurrencyManager.cs: if the list is readonly, don't bother
2569         checking if IBindingList.AllowNew is true.
2570
2571         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2572         for non-DataRowView datasources..  or rather, make it not crash.
2573         (DataGridPaintRelationRow): make sure we limit the row painting to
2574         the area not covered by the row header, and make our cell width at
2575         least large enough to cover the relation area.  This allows grids
2576         that have relations but no rows to render correctly.
2577         (DataGridPaintRowContents): same type of changes here.
2578         (SetDataSource): move back to always calling
2579         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2580         navigating back through relations.
2581         (HitTest): handle the case where we have no cells but have
2582         relations.  Right now we generate a hit in cell 0 of whatever the
2583         row is, not sure if this is strictly correct, but it works for our
2584         purposes.
2585         
2586         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2587         bother doing anything.
2588
2589 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2590
2591         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2592         early version of StatusStrip.  Not responsible for eaten
2593         application or firstborn children.
2594
2595 2006-11-06  Chris Toshok  <toshok@ximian.com>
2596
2597         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2598         call GetTabRect with a -1 index.  Fixes #79847.
2599
2600 2006-11-06  Jackson Harper  <jackson@ximian.com>
2601
2602         * TreeNodeCollection.cs: Update scrollbars after clearing.
2603
2604 2006-11-06  Chris Toshok  <toshok@ximian.com>
2605
2606         * NumericUpDown.cs: fix the ToString method for some unit test
2607         love.
2608
2609 2006-11-06  Chris Toshok  <toshok@ximian.com>
2610
2611         * PropertyGrid.cs:
2612         - set the initial SelectedGridItem if we can.
2613
2614         - Exclude non-mergable properties only if we're merging > 1
2615         object.  Merging 1 object isn't really merging, obviously.
2616
2617         - Handle PropertySort.NoSort just like Alphabetical, which is
2618         wrong of course, but at least gets things on the screen.
2619         
2620         * PropertyGridView.cs:
2621         - Add method "FindFirstItem" which finds the first property grid
2622         item, so we can select it by default.
2623
2624         - make use of GridEntry.CanResetValue.
2625
2626         - Don't call RedrawBelowItemOnExpansion here anymore, the
2627         individual GridEntry's will do that.
2628
2629         - Remove the ITypeDescriptorContextImpl internal class.
2630         
2631         * GridEntry.cs:
2632         - this class needs to implement ITypeDescriptorContext, as it's
2633         what MS's PropertyDescriptorGridEntry does, which means we can
2634         remove the ITypeDescriptorContextImpl internal class from
2635         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2636
2637         - keep a reference to our PropertyGridView, and move the call to
2638         RedrawBelowItemOnExpansion here from PGV.  This means
2639         programmaticly setting Expanded actually does something visible.
2640
2641         - add a CanResetValue() function which takes into account our
2642         possibly multiple "selected_objects" in the merged case.  Shifting
2643         PropertyGridView to use this method fixes another unreported
2644         crasher found running the test for #79829.
2645
2646         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2647         is updated to reflect this.
2648
2649         * CategoryGridEntry.cs: the ctor takes the PGV now.
2650         
2651 2006-11-06  Jackson Harper  <jackson@ximian.com>
2652
2653         * TextControl.cs: These are 1 based.
2654         * TextBoxBase.cs: When setting the selected text, don't change the
2655         selected text tags, this is done by ReplaceText, just position the
2656         cursor at the end of the new text.
2657
2658 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2659
2660         * ListView.cs: Allow label edit only when, when LabelEdit is
2661           set to true.
2662
2663 2006-11-06  Jackson Harper  <jackson@ximian.com>
2664
2665         * TextControl.cs: If a suitable wrapping position isn't found,
2666         just wrap right in the middle of a word.
2667
2668 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2669
2670         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2671           bug #79820.
2672
2673 2006-11-06  Jackson Harper  <jackson@ximian.com>
2674
2675         * TreeView.cs: Can't use the VisibleCount property when setting
2676         scrollbar heights, because this doesn't take into account whether
2677         or not the horz scrollbar just came visible.
2678
2679 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2680
2681         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2682         activated.  Fixes #79369, #79832.
2683
2684 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2685
2686         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2687           had to remove support for links that point to a directory. FileInfo
2688           returns no usefull information (means, the directory they point to)
2689           for such links. Replaced some empty string ("") with String.Empty.
2690
2691 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2692
2693         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2694         NullReferenceException when attempting to remove node that is not in
2695         collection. Throw NullReferenceException when null is passed to 
2696         Remove. Allow first element of the collection to be removed. Fixes
2697         bug #79831.  In GetEnumerator ().Current return null if positioned 
2698         before the first element of the collection. In GetEnumerator ().Reset,
2699         position before first element of the collection.
2700
2701 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2702
2703         * PropertyGrid.cs: To match MS, remove default title and description
2704         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2705         buttons.
2706
2707 2006-11-04  Chris Toshok  <toshok@ximian.com>
2708
2709         * Theme.cs: add a Clamp method, just for kicks.
2710
2711         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2712
2713 2006-11-04  Chris Toshok  <toshok@ximian.com>
2714
2715         * Form.cs: if the form isn't visible, Close() does nothing.
2716
2717 2006-11-03  Chris Toshok  <toshok@ximian.com>
2718
2719         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2720         Hide it.
2721         (WndProc): don't Dispose after handling the WM_CLOSE message.
2722
2723         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2724         them as such, instead of using casts from Control to Form.  Also,
2725         don't Dispose of the modal dialog when we fall out of the loop -
2726         Close() it instead.
2727
2728         fixes bug #79813.
2729
2730 2006-11-03  Chris Toshok  <toshok@ximian.com>
2731
2732         * Control.cs (Dispose): only go through the dispose thing if we're
2733         @disposing, and we haven't already been disposed.  Fixes bug
2734         #79814.
2735
2736         * Form.cs: no reason to call "base.Dispose()" here instead of
2737         "Dispose()".
2738
2739 2006-11-03  Mike Kestner  <mkestner@novell.com>
2740
2741         * ComboBox.cs : use ToString instead of casts in AddItem for
2742         sorting functionality.  Fixes #79812.
2743
2744 2006-11-03  Chris Toshok  <toshok@ximian.com>
2745
2746         * Application.cs: pave the way for actually using the thread
2747         exception dialog.  it's ifdefed out at the moment.
2748
2749 2006-11-03  Chris Toshok  <toshok@ximian.com>
2750
2751         * ThreadExceptionDialog.cs: until we get a better layout, actually
2752         hide the details textbox and label when we shouldn't see them.
2753
2754 2006-11-03  Jackson Harper  <jackson@ximian.com>
2755
2756         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2757         multiline textboxes anymore.  This method also determines the
2758         width/height of a textboxes canvas area.
2759         - Sorta a revert of the last patch.  For multiline just position
2760         the controls, then bail.  This way the scrollbar width won't be
2761         altered.
2762
2763 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2764
2765         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2766         it dont need.  Fixes #79537.
2767
2768 2006-11-02  Jackson Harper  <jackson@ximian.com>
2769
2770         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2771         send the status after firing the DndOver event.
2772
2773 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2774
2775         * TrackBar.cs: Now orientation only switches height / width if
2776         the control's handle is created (Win32 does it like this). Also 
2777         fixed a typo in ToString() for a test to pass, changed the 
2778         exception thrown in set_LargeChange and set_SmallChange to 
2779         match Win32 behaviour, and added TrackBar tests to the unit 
2780         tests.
2781
2782 2006-11-02  Chris Toshok  <toshok@ximian.com>
2783
2784         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2785         not _NET_WM_STATE_NO_TASKBAR.
2786
2787 2006-11-02  Jackson Harper  <jackson@ximian.com>
2788
2789         * TextControl.cs: Increment count by one, since in the update view
2790         count - 1 is used.
2791
2792 2006-11-02  Jackson Harper  <jackson@ximian.com>
2793
2794         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2795         the mouse is in the client rectangle (duh).
2796
2797 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2798         
2799         * TrackBar.cs: Fixed trackbar jumping around when clicking
2800         on it - the trackbar was not detecting correctly at which
2801         side of the thumb the click was done. (fixes #79718)
2802
2803 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2804
2805         * ListBox.cs: scroll visible area when change SelectedIndex to
2806         a non visible area.  Fixes #79481.
2807
2808 2006-11-01  Jackson Harper  <jackson@ximian.com>
2809
2810         * TextControl.cs: When replacing the selection move the selection
2811         start/end/anchor to the end of the new text.
2812
2813 2006-11-01  Jackson Harper  <jackson@ximian.com>
2814
2815         * XplatUIWin32.cs: When setting the parent change the controls
2816         visibility to it's visibility flag, not to it's old parents
2817         visibility (.Visible walks the parent chain).
2818
2819 2006-11-01  Chris Toshok  <toshok@ximian.com>
2820
2821         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2822         XSetTransientForHint fix breaks paint .net's tool windows.  more
2823         work needed for that one.
2824
2825 2006-11-01  Chris Toshok  <toshok@ximian.com>
2826
2827         * ScrollBar.cs: throw ArgumentException instead of Exception in
2828         LargeChange/SmallChange setters.  fixes unit tests.
2829
2830 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2831
2832         * ContainerControl.cs: reverted rev.67183 (which was itself
2833         a reversion of rev.66853... eh).
2834         
2835         * Control.cs: Fixes Reflector hang by changing Focus() call
2836         to what it was before rev.66643 (calling Select() here sets 
2837         ActiveControl, which in some situations calls back Focus and 
2838         eventually does a stack overflow). Temp fix.    
2839         Changes to GetNextControl() to not look for children to select when
2840         parent cannot be selectable (so it looks for siblings instead)  
2841         
2842 2006-10-31  Mike Kestner  <mkestner@novell.com>
2843
2844         * CheckedListBox.cs : off by one error in returned index from
2845         ObjectCollection.Add.  Fixes #79758.
2846
2847 2006-10-31  Chris Toshok  <toshok@ximian.com>
2848
2849         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2850         calls for the textbox/spinner, to keep from recursing to the point
2851         where we crash.  Fixes #79760.
2852
2853 2006-10-31  Chris Toshok  <toshok@ximian.com>
2854
2855         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2856         null/"" value, just return.  matches ms's behavior and fixes some
2857         failing tests.
2858
2859 2006-10-31  Chris Toshok  <toshok@ximian.com>
2860
2861         * Control.cs (set_Capture): make a logic a little easier to
2862         follow.
2863
2864         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2865         if it's being destroyed.  A necessary fix surely, but a bandaid
2866         also, to fix the stuck capture problem in bug #78413.
2867
2868 2006-10-31  Chris Toshok  <toshok@ximian.com>
2869
2870         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2871         convention of clearing hwnd.ClientRect when we set the
2872         width/height (so it'll be recalculated by Hwnd).
2873
2874 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2875
2876         * ContainerControl.cs: reversed Contains check from
2877         ActiveControl due to hanging problems. This fix
2878         partly regresses #79667 (button does not have
2879         initial focus), so this might be a symptom for 
2880         a larger parenting problem (set_ActiveControl
2881         is being called but the child control does
2882         not have the parent set yet?)   
2883         
2884 2006-10-31  Mike Kestner  <mkestner@novell.com>
2885
2886         * MenuAPI.cs : fix keynav when menu is click activated.
2887
2888 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2889
2890         * ToolStrip*: Version 0.2.
2891
2892         * MenuStrip.cs: Version 0.1.
2893
2894         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2895
2896 2006-10-30  Chris Toshok  <toshok@ximian.com>
2897
2898         [ fixes the oversized notify icon issue in bug #79745 ]
2899         
2900         * NotifyIcon.cs: scale the icon down to the size we're given by
2901         the XplatUI layer (this would be faster if we did it once instead
2902         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2903         since it's never invoked.
2904
2905         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2906         pixels high by default, so let's hardcode our systray icon to that
2907         size.  The SYSTEM_TRAY protocol should really have a way for
2908         client apps to query for the correct icon size.. but oh well.  A
2909         couple of patches to deal with the screwy client_window ==
2910         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2911         instance, and also make sure we don't XSelectInput twice).
2912
2913 2006-10-30  Chris Toshok  <toshok@ximian.com>
2914
2915         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2916         recreating forms.  Control recreation is the bane of my existence.
2917         Fix it in a way that keeps everyone happy.
2918
2919 2006-10-30  Chris Toshok  <toshok@ximian.com>
2920
2921         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2922         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2923         client_windows not being resized to the proper size (ReportBuilder
2924         shows this extremely well).
2925
2926 2006-10-30  Chris Toshok  <toshok@ximian.com>
2927
2928         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2929         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2930         showing up in the gnome taskbar.  Fixes bug #79790.
2931
2932 2006-10-30  Chris Toshok  <toshok@ximian.com>
2933
2934         * ApplicationContext.cs: guard against a NRE.
2935
2936         * Application.cs: null out the old MainForm for the context, so we
2937         don't try to use it again once it's disposed.  Fixes bug #79783.
2938
2939 2006-10-30  Chris Toshok  <toshok@ximian.com>
2940
2941         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2942         BindingContext, set the data source directly, otherwise do the
2943         lazy approach - the actual ListManager will be created when we get
2944         a BindingContext. Fixes bug #79700.
2945
2946 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2947
2948         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2949           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2950
2951         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2952
2953 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2954
2955         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2956         of SetVisible that allows a window to be shown, but not activated.
2957         This is needed on Windows for MenuStrip, and can probably be used
2958         with MainMenu and ComboBox to fix the focus stealing issues on
2959         Windows.
2960
2961         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2962
2963 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2964
2965         * PictureBox.cs: Fix the output of the ToString method.
2966
2967 2006-10-29  Chris Toshok  <toshok@ximian.com>
2968
2969         * Control.cs (get_TopLevelControl): fix bug #79781.
2970
2971 2006-10-29  Chris Toshok  <toshok@ximian.com>
2972
2973         * ListControl.cs (set_DataSource): throw Exception here, not
2974         ArgumentException, to match MS behavior.
2975
2976 2006-10-29  Chris Toshok  <toshok@ximian.com>
2977
2978         * Form.cs: remove the try-catch's around calls to GetWindowState.
2979         We can just check the return value.
2980
2981         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2982         Instead return -1.
2983
2984         * XplatUI.cs: Add note about additional return value for
2985         GetWindowState.
2986
2987 2006-10-29  Chris Toshok  <toshok@ximian.com>
2988
2989         * Control.cs (CreateHandle): when we create our handle, we also
2990         create the handles of our child controls.  Fixes one of the
2991         Control unit tests (CH11).
2992
2993 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2994
2995         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2996
2997 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2998
2999         * ThemeClearlooks.cs: A little speedup.
3000
3001 2006-10-27  Chris Toshok  <toshok@ximian.com>
3002
3003         * Control.cs: implement Control.FromChildHandle in a way that
3004         matches the docs (and fixes the failed test.)
3005
3006 2006-10-27  Chris Toshok  <toshok@ximian.com>
3007
3008         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3009         comments).
3010
3011         * DataGrid.cs: implement ResetForeColor such that the tests
3012         succeed.
3013         
3014 2006-10-27  Chris Toshok  <toshok@ximian.com>
3015
3016         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3017         being set to "".  Fixes bug #79759.
3018
3019 2006-10-27  Jackson Harper  <jackson@ximian.com>
3020
3021         * TextControl.cs: We need to clear the entire selection area when
3022         setting the start, otherwise multiline selections are still
3023         visible.
3024
3025 2006-10-26  Chris Toshok  <toshok@ximian.com>
3026
3027         * PropertyGridView.cs: 
3028
3029         - ifdef all the code specific to the double
3030         buffer case, and provide some alternatives in the non-doublebuffer
3031         code, which makes heavy use of XplatUI.ScrollWindow to move things
3032         around without having to invalidate (and cause flicker).  There
3033         are still some drawing problems in the non-doublebuffered case, so
3034         DOUBLEBUFFER is defined by default.
3035
3036         - Fix the way dropdowns are handled.  now we explicitly watch for
3037         the events which might cause the dropdown to close, and break out
3038         of the nested event loop there.  This gets rid of all Capture
3039         code, at the expense of the Msg special casing.  Seems to work,
3040         though, and fixes bug #79743.
3041
3042 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
3043         * Control.cs: SetIsRecreating now recreates implicitly added
3044         child controls as well. Finally fixes #79629. The flag passed to 
3045         SetIsRecreating has also been removed since it wasn't used.
3046         
3047 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3048
3049         * PageSetupDialog.cs: Clean some code, fix some bits, 
3050         add some checks, and add a printer sub-dialog.
3051
3052 2006-10-26  Chris Toshok  <toshok@ximian.com>
3053
3054         * PropertyGrid.cs: make set_SelectedObject call
3055         set_SelectedObjects, and move the duplicate logic to the
3056         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
3057
3058         * PropertyGridView.cs: hide the textbox when we get a
3059         SelectedObjectsChanged event.
3060
3061         Fixes bug #79748.
3062
3063 2006-10-26  Chris Toshok  <toshok@ximian.com>
3064
3065         * PropertyGridView.cs: deal with the type converter not supporting
3066         GetStandardValues() or GetStandardValues() returning null, which
3067         is does in the default case.  Fixes #79742.
3068
3069 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3070
3071         * CheckedListBox.cs: nunit no longer crashes when selecting 
3072         Project/Edit menu option
3073         
3074 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
3075
3076         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
3077         is no menu selected. fixes #79739
3078
3079 2006-10-25  Chris Toshok  <toshok@ximian.com>
3080
3081         * PropertyGridView.cs: factor out the splitter invalidation code
3082         into the SplitterPercent setter, and for kicks implement the
3083         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
3084         amount in either direction.
3085
3086 2006-10-25  Chris Toshok  <toshok@ximian.com>
3087
3088         * PropertyGridView.cs: do some cleanup of the brush used to draw
3089         text - read only fields should be grayed out.  not sure how to do
3090         this with the textbox, though.  but the textbox's should also be
3091         readonly now at least.  Also, hide/show the textbox when resizing
3092         the control.
3093         
3094         * CursorConverter.cs: use System.Reflection when getting the
3095         properties of Cursors, as TypeDescriptor.GetProperties isn't
3096         returning static properties.
3097
3098 2006-10-25  Chris Toshok  <toshok@ximian.com>
3099
3100         * PropertyGridView.cs: factor out the up/down handling, and reuse
3101         it for page up/down.  also add End/Home support.
3102
3103 2006-10-25  Chris Toshok  <toshok@ximian.com>
3104
3105         * PropertyGridView.cs:
3106
3107         - ensure the selected grid item is visible in the scrolled area,
3108         fixes bug #79572.
3109
3110         - fix Keys.Down handling when you're on the last item in the
3111         propertygrid.
3112
3113 2006-10-25  Mike Kestner  <mkestner@novell.com>
3114
3115         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
3116         clicks too.  Fixes #79725.
3117
3118 2006-10-24  Chris Toshok  <toshok@ximian.com>
3119
3120         * PropertyGrid.cs: use property.Converter instead of
3121         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3122         TypeConverters declared on the property as well as on the
3123         PropertyType.  Fixes bug #79678.
3124
3125 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3126
3127         * MimeIcon.cs, Mime.cs:
3128           Fallback to the default platform handler if no shared mime info
3129           stuff exists (fixes #79693).
3130
3131 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3132         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3133         from previous fix (duh).
3134
3135 2006-10-20  Chris Toshok  <toshok@ximian.com>
3136
3137         * PropertyGridView.cs: the dropdown should be MIN(number of items
3138         in list, 15).  Fixes #79551.
3139
3140 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3141         Fixes #79384, #79394, #79652, #79667
3142         * Application.cs: 
3143         
3144         - Modal windows are now destroyed in the proper order for windows
3145         
3146         * ContainerControl.cs:
3147         
3148         - ActiveControl setter has more conditions on when to return:
3149                 - if we're reselecting the active control, but it actually
3150                 didn't have focus (window hidden or some such), it runs
3151                 - if the active control being selected doesn't actually 
3152                 exist in the container, it returns
3153         
3154         * Form.cs
3155         
3156         - The ShowDialog now gets the current form as the owner when
3157         invoking without parameters, and correctly activates the owner 
3158         when returning
3159         
3160         * MessageBox.cs
3161         
3162         - MessageBox now catches the Escape key to exit
3163
3164 2006-10-20  Chris Toshok  <toshok@ximian.com>
3165
3166         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3167         most of bug #79676):
3168
3169         - you can navigate around the property grid with the arrow keys.
3170
3171         - the dropdown is sized properly when the pg has a vertical
3172         scrollbar.
3173
3174         - fix the indentation for subentries, and properly select the
3175         entire label rect.
3176
3177         - fix the gray bar's drawing (only draw it to the last element,
3178         not for the height of the control.  Also make sure we draw that
3179         last horizontal grid line.
3180
3181         - use the same mechanism the datagrid uses wrt the editing textbox
3182         when scrolling/resizing/etc.  Namely, we hide it first, do the
3183         operation, then show it again (if it's still visible).
3184         
3185         - aggressively remove a lot of unnecessary refreshes (and also
3186         calls to Invalidate(). call more limited variants, and only redraw
3187         what we need.)
3188         
3189         * PropertyGrid.cs:
3190
3191         - when we're populating the merged collection, fill in the UI
3192         parent with either the passed in item, or the category item we
3193         create.
3194
3195         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3196
3197         * GridItem.cs: drop some fully qualified names.
3198         
3199         * GridEntry.cs: add a "UIParent", which is basically the parent
3200         treenode.
3201
3202         * GridItemCollection.cs: add an IndexOf method.
3203
3204 2006-10-20  Mike Kestner  <mkestner@novell.com>
3205
3206         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3207         a working win32 NC invalidation mechanism, we can't invalidate
3208         menus.  [Fixes #79705]
3209
3210 2006-10-20  Mike Kestner  <mkestner@novell.com>
3211
3212         * ListBox.cs : don't update the VScrollbar if the list is empty,
3213         just hide it.  [Fixes #79692]
3214
3215 2006-10-20  Jackson Harper  <jackson@ximian.com>
3216
3217         * RichTextBox.cs: Handle some special chars better, and don't skip
3218         the entire group when we encounter a special char that we don't
3219         handle correctly.
3220
3221 2006-10-18  Chris Toshok  <toshok@ximian.com>
3222
3223         * PropertyGridView.cs: address a number of issues from bug #79676,
3224         mostly of the cosmetic variety.
3225
3226         - The highlight rectangle for indented items not extends all the
3227         way to the left.
3228
3229         - Indented items aren't indented so much.
3230
3231         - the dropdown is properly sized width-wise if the pg has a
3232         vertical scrollbar.
3233
3234 2006-10-18  Chris Toshok  <toshok@ximian.com>
3235
3236         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3237         systray stuff is rather convoluted to begin with.
3238
3239         systray icons are a single window for some reason (that I haven't
3240         figured out yet), and for them, client_window == whole_window.
3241         Given the way the tests are structured elsewhere to determine
3242         which paints are pending (client vs. nc), that situation will
3243         always yield PAINT, not NCPAINT.  So, if we have a pending
3244         nc_expose and no pending expose, remove the hwnd from the paint
3245         queue, and also set nc_expose_pending to false, to keep us from
3246         blocking further expose's adding the hwnd to the paint queue.
3247
3248         phew.  like i said, a rather convoluted change.  Fixes the
3249         notifyicon repaint issues in bug #79645.
3250
3251 2006-10-18  Chris Toshok  <toshok@ximian.com>
3252
3253         * Form.cs: when getting the backcolor of the form, don't get
3254         base.BackColor, as this allows parents to influence the background
3255         color.  This breaks mdi forms.  Instead, if the background_color
3256         is empty, return the default.
3257
3258 2006-10-18  Chris Toshok  <toshok@ximian.com>
3259
3260         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3261         to being private instead of internal static.
3262
3263         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3264         crap, it wasn't working for more deeply nested controls anyway,
3265         and we already have the is_recreating flag - use that instead.
3266         Before calling DestroyHandle in RecreateHandle, recurse through
3267         the control tree setting it to true.  this returns the recreate
3268         code to much of its original simplicity, while now guaranteeing we
3269         actually recreate everything we're supposed to.  This change gets
3270         fyireporting actually showing mdi children.
3271
3272 2006-10-17  Chris Toshok  <toshok@ximian.com>
3273
3274         * Form.cs: remove some debug spew, and collapse some duplicate
3275         code at the end of SetClientSizeCore.
3276
3277         * XplatUIX11.cs: 
3278         - add some more debug spew here too wrt Destroy handling.
3279         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3280         in Control's handling of WM_DESTROY.
3281         - Remove the handling of zombie window DestroyNotifies from the
3282         event loop - we don't need it.  Now the only DestroyNotifies we
3283         actually handle are ones generated by X.
3284         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3285         match gtk's (functioning) handling of this. This keep metacity
3286         from leaving droppings in the form of wm borders with no window
3287         contents all over the place.
3288
3289         * Control.cs:
3290         - add a bunch of debug spew wrt control recreation.
3291         - fix a bug where we weren't tracking Visible properly on
3292         recreated hwnds.
3293         - fixed the WM_PAINT double buffer handling to support re-entrant
3294         calls (yes, i know it's gross, but it's happening to us).
3295
3296 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3297         * ThemeWin32Classic.cs: changed drawing of selected days
3298         to make them look better.
3299
3300 2006-10-16  Chris Toshok  <toshok@ximian.com>
3301
3302         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3303         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3304
3305         * XplatUIX11.cs: move away from using hwnd.client_dc and
3306         hwnd.non_client_dc and on to a stack of dc's (and in window's
3307         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3308         without puking or not disposing of Graphics objects.
3309
3310         * XplatUIOSX.cs: same.
3311
3312         * XplatUIWin32.cs: same.
3313
3314 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3315
3316         * FileDialog.cs: Don't call on_directory_changed inside
3317           OnSelectedIndexChanged (it changes the SelectedIndex too).
3318           Instead move it to OnSelectionChangeCommitted.
3319
3320 2006-10-13  Chris Toshok  <toshok@ximian.com>
3321
3322         * XplatUIX11.cs: more Destroy work.  the current code does the
3323         following things, in order:
3324
3325         1. Enumerates all handles of all controls at or below the one
3326         being destroyed, in pre-order.  As it is doing this, it marks the
3327         handles as zombie and clears all references to them.
3328         
3329         2. calls XDestroyWindow on the window passed in.
3330
3331         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3332         list.
3333
3334 2006-10-13  Chris Toshok  <toshok@ximian.com>
3335
3336         * XplatUIX11.cs: set hwnd.zombie to true before calling
3337         SendMessage (WM_DESTROY).  this keeps us from marking the new
3338         window a zombie, and also keeps us from calling sendmessage at
3339         all.
3340
3341 2006-10-13  Jackson Harper  <jackson@ximian.com>
3342
3343         * TextControl.cs: Do not show the caret and selection at the same
3344         time.  Reduces ugliness by 35%.
3345
3346 2006-10-13  Chris Toshok  <toshok@ximian.com>
3347
3348         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3349         zombie after we do the recursive call, so we actually do call
3350         SendMessage on the children controls.
3351         (GetMessage): if we find a pending paint event for a zombie hwnd,
3352         remove the hwnd from the paint queue, or else it will always be
3353         there (and we'll effectively loop infinitely)
3354
3355 2006-10-13  Mike Kestner  <mkestner@novell.com>
3356
3357         * MenuItem.cs : add Selected format under keynav too.
3358         Fixes #79528.
3359
3360 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3361
3362         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3363         implementation and that of MS.
3364
3365 2006-10-13  Chris Toshok  <toshok@ximian.com>
3366
3367         * Control.cs (OnInvalidated) only futz with the invalid_region if
3368         the control is double buffered.  this fixes the apparent hang in
3369         the ListView unit tests.  Someone needs to make the
3370         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3371
3372 2006-10-13  Chris Toshok  <toshok@ximian.com>
3373
3374         * PropertyGridView.cs:
3375
3376         - do a little refactoring so that only one place calls
3377         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3378         else call that.  Also make it Refresh, since there are redraw bugs
3379         otherwise (we should take a look at that...)
3380
3381         - do a little more refactoring work to share the body of code
3382         involved with the drop down.  it was duplicated in the code
3383         dealing with the listbox handling and in the code dealing with the
3384         UITypeEditors.
3385
3386         - add a Capture to the dropdown form's control once it's
3387         displayed, and add a MouseDown handler that checks to make sure
3388         the position is inside the control.  If it's not, close the
3389         dropdown.  This fixes #78190.
3390
3391         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3392         if the value is different than the initial value.
3393         
3394 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3395
3396         * Control.cs: see #78650
3397         - Fixed GetNextControl for several cases:
3398                 - Changed FindFlatForward to return 
3399                 correct sibling control when more than one
3400                 control has same TabIndex as the currently 
3401                 focused one.
3402                 - Changed FindFlatBackward to loop children
3403                 from last to first and apply same logic as in
3404                 FindFlatForward
3405                 - Changed FindControlForward to search for
3406                 children when control is not a container
3407                 but has children, or search for siblings if
3408                 control is a container...
3409                 - Changed FindControlBackward   to continue
3410                 searching for child controls when hitting 
3411                 Panel-like parents
3412                 
3413         - Fixed Focus method to update ActiveControl
3414         (FocusTest.FocusSetsActive failure)
3415         
3416         * TabControl.cs:
3417         - Focus rectangle now refreshes when gaining
3418         or losing focus
3419         - Removed grab for Tab key on IsInputKey that 
3420         was keeping tab navigation from working (#78650)
3421
3422 2006-10-13  Chris Toshok  <toshok@ximian.com>
3423
3424         * PropertyGridView.cs:
3425         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3426         SelectedObjects.
3427
3428         - Deal with GridItem.Value == null a few places.
3429
3430         * PropertyGrid.cs: 
3431         - replace the PopulateGridItemCollection with a pair of methods
3432         which compute the intersection of all the properties in the
3433         SelectedObjects array.  Fixes #79615.
3434
3435         - Throw ArgumentException from set_SelectedObjects if there's a
3436         null in the array.
3437
3438         - Add GetTarget method which can be used to traverse up the
3439         GridItem.Parent chain.  It depends on the assumption that
3440         selected_objects for different GridEntries are always in the same
3441         order (a safe assumption).  Use this method and loop over all the
3442         selected objects in the entry when calling RemoveValueChanged and
3443         AddValueChanged.
3444         
3445         * GridEntry.cs: Make this handle multiple selected objects.
3446         .Value returns null if not all the selected objects share the same
3447         value.
3448
3449 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3450         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3451           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3452           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3453           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3454           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3455         add additional functionality.
3456
3457 2006-10-12  Mike Kestner  <mkestner@novell.com>
3458
3459         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3460         * HelpProvider.cs : new ToolTipWindow ctor sig.
3461         * ToolTip.cs : remove ToolTip param from Window sig since it is
3462         not used.
3463         * ToolBar.cs : add tooltip support.  Fixes #79565.
3464
3465 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3466
3467         * ComboBox.cs: move the events in set_SelectedIndex to 
3468         after the call to HighlightIndex in order to avoid 
3469         possible recursion and subsequent problems with the call
3470         to HighlightIndex and include a range check in 
3471         set_HighlightIndex. Fixes #79588
3472         
3473 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3474
3475         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3476         to ui thread's settings instead of sunday. 
3477         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3478
3479 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3480
3481         * DateTimePicker.cs
3482         * MonthCalendar.cs
3483         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3484         and implement missing functionality (selecting different parts 
3485         of the date and edit them individually with the keyboard).
3486         
3487 2006-10-11  Chris Toshok  <toshok@ximian.com>
3488
3489         * Control.cs (OnInvalidated): fix NRE relating to last change.
3490
3491 2006-10-11  Chris Toshok  <toshok@ximian.com>
3492
3493         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3494         atoms in _NET_WM_STATE here if the window is maximized.  We need
3495         to do this because we're *replacing* the existing _NET_WM_STATE
3496         property, so those atoms will be lost otherwise, and any further
3497         call to GetWindowState will return Normal for a window which is
3498         actually maximized.  Fixes #79338.
3499
3500 2006-10-11  Jackson Harper  <jackson@ximian.com>
3501
3502         * TextControl.cs: Special case for setting selection end to
3503         selection start, we basically kill the anchor.
3504         - some todo comments.
3505
3506 2006-10-11  Chris Toshok  <toshok@ximian.com>
3507
3508         * Control.cs: switch to using an "invalid_region" to track which
3509         parts of the image buffer need updating.  This is more code than
3510         the simple fix from r66532.  That version just attempted to always
3511         fill the entire buffer on redraw, which turns out to be
3512         inefficient when invalidating small rectangles.  This version
3513         simply adds the invalid rectangle to the invalid region.  When we
3514         get any WM_PAINT message we see if it can be filled using the
3515         image buffer, and if it can't (if the paint event's clip rectangle
3516         is visible in the invalid region) we first fill the image buffer.
3517         So, the image buffer is still a cache, we just fill it lazily.
3518
3519         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3520         need it any longer.
3521
3522 2006-10-11  Chris Toshok  <toshok@ximian.com>
3523
3524         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3525         well as size after calling XMoveResizeWindow.  This keeps us from
3526         ignoring future SetWindowPos calls.  Fixes the disappearing
3527         DateTimePicker in the ToolBarDockExample from bug #72499.
3528
3529 2006-10-11  Chris Toshok  <toshok@ximian.com>
3530
3531         * TextBoxBase.cs: reorder things a bit when it comes to
3532         resizing-causing-recalculation.  we were recalculating the
3533         document when our position was changed, which shouldn't happen.
3534         We only care about size changes.  Clear up some more redundant
3535         recalculation calls while I'm at it.  This makes the toolbar dock
3536         example snappy when you're just dragging toolbars around (since it
3537         causes a relayout whenever you move one.)
3538
3539 2006-10-11  Chris Toshok  <toshok@ximian.com>
3540
3541         * ToolBarButton.cs (get_Rectangle): this only returns
3542         Rectangle.Empty if Visible == false, or Parent == null.
3543         Parent.Visible doesn't matter.
3544
3545 2006-10-10  Chris Toshok  <toshok@ximian.com>
3546
3547         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3548         by .net 1.1, so switch to an internal method instead.
3549
3550 2006-10-10  Chris Toshok  <toshok@ximian.com>
3551
3552         * Control.cs (WM_PAINT): when a control is double buffered we draw
3553         initially to the ImageBuffer and then copy from there.  But when a
3554         parent control which has child controls is double buffered, the
3555         initial drawing doesn't encompass the entire ClientRectangle of
3556         the parent control, so we end up with uninitialized bits (this is
3557         easily seen by dragging the top toolbar in
3558         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3559         manually set the ClipRectangle of the paint_event (only the one we
3560         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3561         of the nastiness in bug #72499.
3562
3563         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3564         which we use in Control.cs's WM_PAINT handling.
3565
3566 2006-10-10  Jackson Harper  <jackson@ximian.com>
3567
3568         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3569
3570 2006-10-10  Chris Toshok  <toshok@ximian.com>
3571
3572         * Cursor.cs: Apply a slightly different patch to the one suggested
3573         in #79609.
3574
3575 2006-10-10  Jackson Harper  <jackson@ximian.com>
3576
3577         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3578         not the parent form.
3579         * TextControl.cs: use difference in old line count vs new count to
3580         calculate how many lines were added, this takes into account soft
3581         line breaks properly.
3582
3583 2006-10-10  Chris Toshok  <toshok@ximian.com>
3584
3585         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3586         rectangle located at 0,0 and the size of the text.  Use
3587         ClientRectangle instead.  This fixes rendering of non-left aligned
3588         link labels.
3589
3590 2006-10-10  Jackson Harper  <jackson@ximian.com>
3591
3592         * TextBoxBase.cs: When we set the selection start position the
3593         caret.
3594         * TextControl.cs: Need to update the caret when we decrement it to
3595         zero.
3596         - Make sure that the selection_visible flag gets reset to false if
3597         the selection isn't visible.  Before this you could get it set to
3598         visible by changing the selection start, then changing the end to
3599         equal the start.
3600
3601 2006-10-09  Jackson Harper  <jackson@ximian.com>
3602
3603         * TreeView.cs: Don't update scrollbars when we aren't visible.
3604         * TreeNodeCollection.cs: Only need to update scrollbars if being
3605         added to an expanded visible node or the root node.
3606
3607 2006-10-09  Chris Toshok  <toshok@ximian.com>
3608
3609         * XplatUIX11.cs (SendMessage): fix NRE.
3610
3611 2006-10-09  Jackson Harper  <jackson@ximian.com>
3612
3613         * TextBoxBase.cs: Implement horizontal autoscrolling.
3614         * TextControl.cs: Add a movement types that allows moving forward
3615         and backwards without wrapping.
3616
3617 2006-10-09  Mike Kestner  <mkestner@novell.com>
3618
3619         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3620         with focus "expansion" of labels.  Fixes #79532 and then some.
3621         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3622         when wrapping.
3623
3624 2006-10-09  Jackson Harper  <jackson@ximian.com>
3625
3626         * TextBoxBase.cs: Set the default max values to MaxValue since
3627         we use the scrollbar for autoscrolling and the default value is
3628         100.  If we don't do this the caret won't keep up with typing
3629         after about 18 characters.
3630         * TextControl.cs: Make sure the selection is offset by the
3631         viewport x.  This fixes selection when using auto scrolling.
3632
3633 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3634         
3635         * Form.cs: The active control should be selected after the 
3636         OnLoad so that any child control initialization that affects
3637         the selection is done. Fixes #79406
3638
3639 2006-10-06  Chris Toshok  <toshok@ximian.com>
3640
3641         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3642         to have no evil effects.
3643
3644         - Stop selecting StructureNotifyMask on non-toplevel windows.
3645
3646           The only way children should be resized is by using the SWF api,
3647           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3648           Toplevel windows can be interacted with via the window manager,
3649           and so we keep the input mask there.
3650
3651           The other event StructureNotifyMask gives us (that we care
3652           about) is DestroyNotify.  The code is already structured such
3653           that it assumes we won't be getting a DestroyNotify event for
3654           the window we pass to XDestroyWindow (which is what
3655           StructureNotifyMask is supposed to guarantee.)  So, that code
3656           shouldn't be affected by this either.
3657
3658         - Stop selecting VisibilityChangeMask altogether.
3659
3660           We weren't doing anything with the resulting events anyway.
3661         
3662         This vastly reduces the number of X requests and events we see
3663         when resizing/laying out a large ui.
3664
3665 2006-10-06  Chris Toshok  <toshok@ximian.com>
3666
3667         * ScrollableControl.cs (DisplayRectangle): we need to take into
3668         account the DockPadding regardless of whether or not auto_scroll
3669         == true.  rework this slightly to this effect, and fix bug #79606,
3670         and part of #72499 (you can now see the drag handles and drag
3671         toolbars around).
3672
3673 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3674
3675         * ListViewItem.cs: Collections of selected and checked items are now
3676         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3677         we mark the collection "dirty".
3678         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3679         to only clear SelectedItems when a new item is selected and MultiSelect
3680         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3681         event of ListViewItemCollection, and mark its list dirty whenever
3682         that event is fire. This allows us to return selected/checked items 
3683         in the same order as they are in the Items collection. This matches
3684         the MS behavior.
3685
3686 2006-10-06  Chris Toshok  <toshok@ximian.com>
3687
3688         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3689         right mouse clicks.  Fixes bug #79593.
3690
3691 2006-10-06  Chris Toshok  <toshok@ximian.com>
3692
3693         * Splitter.cs: doh, fix splitters that don't want to cancel the
3694         movement when you drag them.  Also, impose the limits on the
3695         values we send to the SplitterMovingEvent.  Fixes #79598.
3696
3697 2006-10-06  Jackson Harper  <jackson@ximian.com>
3698
3699         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3700         since we use this for auto scrolling also.
3701
3702 2006-10-05  Chris Toshok  <toshok@ximian.com>
3703
3704         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3705         beginning to think that most datagrid column types don't need this
3706         method.  Fixes bug #79392.
3707
3708 2006-10-05  Chris Toshok  <toshok@ximian.com>
3709
3710         * DataGrid.cs: move back to a more lazy scheme for creating the
3711         CurrencyManager, so we aren't updating it every time you set
3712         either DataSource or DataMember.  Also, don't call
3713         RecreateDataGridRows if the currency manager hasn't changed.
3714
3715 2006-10-05  Chris Toshok  <toshok@ximian.com>
3716
3717         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3718         emitted, SelectedIndex should already be updated.  Fixes bug
3719         #78929.
3720
3721 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3722
3723         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3724           ToolStripTextBox.cs: Initial commit.
3725         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3726
3727 2006-10-05  Jackson Harper  <jackson@ximian.com>
3728
3729         * TabControl.cs: We need to invalidate the tab control area when
3730         new ones are added (duh).
3731
3732 2006-10-03  Chris Toshok  <toshok@ximian.com>
3733
3734         * Form.cs (ProcessDialogKey): if the focused control is in this
3735         form and is a button, call its PerformClick method here.  Fixes
3736         #79534.
3737
3738 2006-10-04  Jackson Harper  <jackson@ximian.com>
3739
3740         * TabPage.cs: Ignore setting of Visible, and add an internal
3741         method for setting the controls visibility.  TabPage's Visible
3742         property is a little strange on MS, this seems to make us
3743         compatible, and fixes cases where people set all the tab pages to
3744         visible.
3745         * TabControl.cs: Use the new internal setting on tab pages
3746         visibility.
3747
3748 2006-10-03  Mike Kestner  <mkestner@novell.com>
3749
3750         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3751
3752 2006-10-03  Mike Kestner  <mkestner@novell.com>
3753
3754         * ListView.cs : use is_visible instead of Visible to check if 
3755         scrollbars should be placed/sized.  Also some max_wrap_width
3756         love for LargeIcon view.  [Fixes #79533]
3757
3758 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3759
3760         * TextControl.cs :
3761           Make set_TextAlign() do actually update the align. Fixed #78403.
3762
3763 2006-10-03  Chris Toshok  <toshok@ximian.com>
3764
3765         * DataGrid.cs: fix a crash when switching datasources if the
3766         vertical scrollbar is at someplace other than Value = 0.  Also,
3767         reduce the number of recalculation passes we do in SetDataSource
3768         from 2 to 1.
3769
3770 2006-10-03  Jackson Harper  <jackson@ximian.com>
3771
3772         * TextBoxBase.cs: Move the if value the same bail check up, we
3773         don't want to empty the document if it is already empty, this
3774         seems to severly mess up the caret.  TODO: I should probably fix
3775         the empty statement to update teh caret somehow.
3776
3777 2006-10-03  Chris Toshok  <toshok@ximian.com>
3778
3779         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3780         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3781         reflection, an internal row type, properties on said type, etc.)
3782         will work with our datagrid.  Fixes #79531.
3783
3784 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3785
3786         * FileDialog.cs: Don't crash if a path is not accessible
3787           (System.UnauthorizedAccessException). Fixes #79569.
3788         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3789           a ':' too. Return unknown icon for those paths/files.
3790
3791 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3792
3793         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3794         GetContainerControl returns null.
3795
3796 2006-10-02  Chris Toshok  <toshok@ximian.com>
3797
3798         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3799         call to XGetWindowAttributes instead of "handle".  fixes an X
3800         error using notifyicon after the NotifyIconWindow to Form base
3801         class switch.
3802
3803 2006-10-02  Chris Toshok  <toshok@ximian.com>
3804
3805         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3806         server grab and looping we need to do to get down to the most
3807         deeply nested child window.
3808         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3809         QueryPointer again after the WarpPointer so we can generate a
3810         proper (fake) MotionNotify event to be enqueued in the destination
3811         window's queue.
3812         (GetCursorPos): call QueryPointer.
3813
3814         Fixes #79556.
3815
3816 2006-10-02  Jackson Harper  <jackson@ximian.com>
3817
3818         * NotifyIcon.cs: Derive the notify icon from a form, so things
3819         like FindForm work on it.
3820         - Swallow the WM_CONTEXTMENU message, since that is generated on
3821         mouse down, and context menu is a mouse up kinda guy.  I believe
3822         the correct fix here is probably to make the notify icon entirely
3823         NC area, but this seems to work fine for anyone not manipulating
3824         WndProc.
3825
3826 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3827
3828         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3829           ToolStripItemCollection.cs, ToolStripLabel.cs,
3830           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3831           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3832           Initial implementation.
3833         * TextRenderer.cs: Provide padding to MeasureText.
3834
3835 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3836
3837         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3838         of ButtonBaseAccessibleObject. Fix bug #79552.
3839
3840 2006-10-02  Jackson Harper  <jackson@ximian.com>
3841
3842         * MdiWindowManager.cs: When maximizing use the containers client
3843         rect, not it's bounds, so nc area is accounted correctly.
3844         - Use the parent form's size for the menu position, since the
3845         client isn't always the full form size.
3846
3847 2006-10-01  Chris Toshok  <toshok@ximian.com>
3848
3849         * ScrollableControl.cs: make sure neither right_edge or
3850         bottom_edge are < 0, since they're used as LargeChange for the
3851         horiz/vert scrollbars respectively.  Fixes #79539.
3852
3853 2006-10-01  Chris Toshok  <toshok@ximian.com>
3854
3855         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3856         the xplatuix11 code can cause us to destroy/recreate our handle.
3857
3858         * XplatUIX11.cs
3859         (SystrayAdd):
3860         - this code can be invoked many times for the same Hwnd.  Make
3861           sure we only destroy the client window once (the first time this
3862           method is called).  This fixes bug #79544.
3863         - Remove the call to the improperly bound XSync.  why we had two
3864           bindings to this, I will never know, but this call resulted in
3865           events being discarded from the queue(!).
3866         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3867           not our current state but the state we wish to be in.  So, 0 if
3868           we don't want to be mapped.  Change it to 1.
3869         (SystrayRemove): The XEMBED spec makes mention of the fact that
3870         gtk doesn't support the reparent of client windows away from the
3871         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3872         The only avenue we have for removing systray icons is to destroy
3873         them.  We don't want the handle to go away for good, though, so
3874         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3875         #79545.
3876         
3877 2006-10-01  Chris Toshok  <toshok@ximian.com>
3878
3879         * Form.cs (WndProc): inline the native_enabled variable usage into
3880         the cases in which it's used.  Fixes #79536.
3881
3882 2006-09-29  Mike Kestner  <mkestner@novell.com>
3883
3884         * ListView.cs : toggle the selection state for ctrl clicks in 
3885         multiselect mode. [Fixes #79417]
3886
3887 2006-09-29  Mike Kestner  <mkestner@novell.com>
3888
3889         * ListView.cs : kill CanMultiSelect and refactor the selection
3890         code to support multiselection in the absence of mod keys. Steal
3891         arrow/home/end keys by overriding InternalPreProcessMessage to
3892         restore regressed keynav behavior.
3893         [Fixes #79416]
3894
3895 2006-09-29  Jackson Harper  <jackson@ximian.com>
3896
3897         * MdiClient.cs: Repaint the titlebars when the active window is
3898         changed.
3899
3900 2006-09-29  Chris Toshok  <toshok@ximian.com>
3901
3902         * Application.cs: when entering a runloop with a modal, make sure
3903         the hwnd is enabled.  Fixes #79480.
3904
3905 2006-09-29  Chris Toshok  <toshok@ximian.com>
3906
3907         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3908         when ListManager.CanAddRows == false, bump us back one.
3909
3910         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3911         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3912         using a datagrid, which is not right.
3913         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3914         is an IEditable, but call property_descriptor.SetValue regardless.
3915         fixes #79435.
3916
3917 2006-09-29  Chris Toshok  <toshok@ximian.com>
3918
3919         * DataGridBoolColumn.cs: we need to test equality in the face of
3920         possible null values (as is the case with the default NullValue).
3921         This patch keeps us from crashing in that case.
3922
3923 2006-09-29  Jackson Harper  <jackson@ximian.com>
3924
3925         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3926         here, since it will get called for every node collection in the
3927         tree. This is now done in the treeview once the sorting is
3928         finished.
3929         * TreeView.cs: Recalculate the visible order, and update the
3930         scrollbars after sorting, set the top nope to the root so that the
3931         recalc actually works.
3932
3933 2006-09-29  Chris Toshok  <toshok@ximian.com>
3934
3935         * LinkLabel.cs: more handling of the default link collection in
3936         the face of LinkArea manipulation.  The default link collection
3937         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3938         to anything and the links collection is the default, clear it.
3939         Then only add the link if its nonempty.  Fixes #79518.
3940
3941 2006-09-29  Chris Toshok  <toshok@ximian.com>
3942
3943         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3944         piece correctly when we hit a '\n'.  Fixes #79517.
3945
3946 2006-09-29  Chris Toshok  <toshok@ximian.com>
3947
3948         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3949         change the binding of gdk_init_check to take two IntPtr's, and
3950         pass IntPtr.Zero for both of them.  Fixes #79520.
3951
3952 2006-09-29  Mike Kestner  <mkestner@novell.com>
3953
3954         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3955         [Fixes #78779]
3956
3957 2006-09-28  Jackson Harper  <jackson@ximian.com>
3958
3959         * XplatUIX11.cs: When translating NC messages make sure we go from
3960         whole window to screen, not client window to screen.
3961         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3962         method doesn't exist
3963         - Skip over controls that aren't forms when arranging.
3964
3965 2006-09-28  Jackson Harper  <jackson@ximian.com>
3966
3967         * XplatUIWin32.cs: Clip the rect to the parent window.
3968         * XplatUIStructs.cs: Add clipping modes struct.
3969         * InternalWindowManager.cs: New private method that factors title
3970         bar heights in when calculating the pos of an NC mouse message.
3971         - Use SendMessage to force a paint when the form's size is changed
3972         instead of painting the decorations immediately.
3973         - Don't let the NC button click messages get to DefWndProc,
3974         because they will attempt to handle windowing themself, and this
3975         messes up z-order (it will put them in front of the scrollbars).
3976         * XplatUIX11.cs: Make sure that we don't reset window managers if
3977         we already have one (ie the window is an MDI window).
3978
3979 2006-09-28  Chris Toshok  <toshok@ximian.com>
3980
3981         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3982         menu code really needs going over.
3983
3984 2006-09-27  Chris Toshok  <toshok@ximian.com>
3985
3986         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3987         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3988         window is maximizable.  So, we need to make sure that even if we
3989         clear the border/wm frame of those functions, they're still
3990         available (basically, we remove the decoration without removing
3991         the function).  Half the fix for #79338.
3992
3993 2006-09-27  Chris Toshok  <toshok@ximian.com>
3994
3995         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3996         Fixes bug #79515.
3997
3998 2006-09-27  Chris Toshok  <toshok@ximian.com>
3999
4000         * Splitter.cs: reorder things a bit so that we don't actually
4001         draw/move the splitter until after calling OnSplitterMoving.  This
4002         lets users cancel/disallow the movement by explicitly setting
4003         event.SplitX/SplitY.  Fixes #79372.
4004
4005 2006-09-27  Jackson Harper  <jackson@ximian.com>
4006
4007         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4008         because it is most likely on a window being destroyed, and that
4009         will give us an X11 error.
4010
4011 2006-09-27  Chris Toshok  <toshok@ximian.com>
4012
4013         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4014         the dropdown button now toggles between showing and hiding the
4015         dropdown.  Also, get rid of dropdown_form_showing and just use
4016         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4017         that part to someone who has handled Capture-fu before.
4018
4019 2006-09-27  Chris Toshok  <toshok@ximian.com>
4020
4021         * DataGrid.cs: return false if alt isn't pressed when '0' is
4022         pressed.  this keeps the '0' key from being swallowed, and fixes
4023         bug #79350.
4024
4025 2006-09-27  Chris Toshok  <toshok@ximian.com>
4026
4027         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4028         Calling Refresh (in response to a scrollbar event) screws up the
4029         scrollbar painting.  Fixes bug #78923.
4030
4031 2006-09-27  Chris Toshok  <toshok@ximian.com>
4032
4033         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4034         then insert into hashtable" blocks threadsafe.
4035
4036 2006-09-27  Chris Toshok  <toshok@ximian.com>
4037
4038         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4039         baseclass's, since otherwise the
4040         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4041         effect.  This gets the close button back in messageboxes.
4042
4043 2006-09-27  Chris Toshok  <toshok@ximian.com>
4044
4045         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
4046         flag, not just != 0.  this makes flags that are actually multiple
4047         bits (like WS_CAPTION) work.  fixes bug #79508.
4048
4049 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
4050
4051         * PageSetupDialog.cs: add support for getting and settings the 
4052         paper size, source and orientation.
4053
4054 2006-09-26  Chris Toshok  <toshok@ximian.com>
4055
4056         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
4057         and caption == "", we need to remove the resize handles as well as
4058         the title bar.
4059
4060         * Control.cs (set_Text): turns out that setting Text on a form
4061         should change the WM styles on the window, since if ControlBox ==
4062         false, the only way to get a window border is to have a non-""
4063         Text property.  check winforms/forms/text.cs for an example.  so,
4064         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
4065         update both window styles and title.  This fixes a lot of dialogs
4066         (including the preferences dialog in MonoCalendar.)
4067
4068 2006-09-26  Chris Toshok  <toshok@ximian.com>
4069
4070         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
4071         control isn't a Form), call Win32ShowWindow to hide the window,
4072         but don't update the control Visible property.  When we reparent
4073         back to a parent control, call SetVisible in order for the
4074         window's visibility to be reinstated.
4075
4076         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
4077         the FosterParent.
4078
4079         * Control.cs (ControlCollection.Remove): remove that value.Hide()
4080         call for good, since it breaks MonoCalendar (and other things I'm
4081         sure.) Also, set all_controls to null *after* the owner calls,
4082         which end up regenerating it.
4083         (ChangeParent): allow new_parent to be == null, passing
4084         IntPtr.Zero down to XplatUI.
4085
4086         this fixes #79294 the right way.
4087
4088 2006-09-26  Mike Kestner  <mkestner@novell.com>
4089
4090         * GridEntry.cs : internal SetParent method.
4091         * PropertyGrid.cs : attach to property changed on the proper
4092         target if we have a hierarchical grid with subobjects. Setup
4093         GridItem.Parent for hierarchical items.
4094         * PropertyGridView.cs : Set value on the correct target for
4095         hierarchical grids. [Fixes #78903]
4096
4097 2006-09-26  Chris Toshok  <toshok@ximian.com>
4098
4099         * Control.cs (ChildNeedsRecreating): this should return true if
4100         either we're being recreated and the child is in our list, or our
4101         parent is waiting for our recreation.
4102
4103 2006-09-26  Chris Toshok  <toshok@ximian.com>
4104
4105         * Control.cs (ControlCollection.Remove): reinstate the
4106         value.Hide() call as suggested in bug #79294.
4107
4108 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
4109
4110         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
4111         coordinates (versus a relative move).
4112
4113 2006-09-26  Chris Toshok  <toshok@ximian.com>
4114
4115         * Control.cs: rework child recreation a little bit.  It turns out
4116         that we race between the DestroyNotify the WM_DESTROY message.  If
4117         the parent gets its DestroyNotify before the child gets the
4118         WM_DESTROY message, the child ends up not recreating (since the
4119         parent finishes its recreation on DestroyNotify, and the child
4120         checks ParentIsRecreating.)
4121
4122         So, instead we store off a list of all the child controls which
4123         need to be recreated when the parent control starts to recreate
4124         itself.  Then, when child controls get their WM_DESTROY message we
4125         check to see if they're in the parent's pending recreation list,
4126         and if so, we recreate.  This removes all dependency on ordering
4127         from the code and fixes the initial MonoCalendar upgrade dialog.
4128         
4129 2006-09-26  Jackson Harper  <jackson@ximian.com>
4130
4131         * TextControl.cs: Use the Line to get the length of the line,
4132         since soft line breaks can change the end line.
4133
4134 2006-09-26  Chris Toshok  <toshok@ximian.com>
4135
4136         * Control.cs (ControlCollection.AddImplicit): don't add the
4137         control again if it's already in one of our lists.  This keeps us
4138         from adding controls over and over again for comboboxes when their
4139         handle gets recreated (as the combobox adds implicit controls in
4140         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4141
4142 2006-09-26  Jackson Harper  <jackson@ximian.com>
4143
4144         * TextControl.cs: When deleting characters make sure that any
4145         orphaned zero lengthed tags get deleted.
4146         - Fix ToString for zero lengthed tags.
4147
4148 2006-09-25  Jackson Harper  <jackson@ximian.com>
4149
4150         * TextControl.cs: When getting a tag at the location there can be
4151         multiple tags at the same spot, these are 0-lengthed tags that
4152         appear when extra formatting has been stuck in a location.  We
4153         need to pull out the last of these 0 lengthed tags.
4154
4155 2006-09-25  Jackson Harper  <jackson@ximian.com>
4156
4157         * TextControl.cs: Fix print out in debug method.
4158         * TextBoxBase.cs: When text is set bail if we are setting to the
4159         previous value.
4160         
4161 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4162
4163         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4164           It is now possible to change the selected index in a FontXXXListBox
4165           with the up and down arrow keys from the FontXXXTextBoxes.
4166           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4167           FontXXXListBoxes to match ms.
4168
4169 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4170
4171         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4172         anyone can dispose it, anytime. All other properties returns enums, 
4173         structs or basic types so they don't need such tricks.
4174
4175 2006-09-22  Jackson Harper  <jackson@ximian.com>
4176
4177         * XplatUI.cs:
4178         * XplatUIWin32.cs:
4179         * Clipboard.cs:
4180         * DataFormats.cs:
4181         * XplatUIOSX.cs:
4182         * XplatUIDriver.cs: Update interface to add a primary selection
4183         flag, so the driver can use the primary selection buffer if
4184         needed.
4185         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4186
4187         * RichTextBox.cs: We need to supply the data object to paste now
4188         (so we can choose to supply CLIPBOARD or PRIMARY).
4189         * TextBoxBase.cs: Supply data object to paste (see above).
4190         - Middle click uses the primary selection data object.
4191         
4192 2006-09-21  Chris Toshok  <toshok@ximian.com>
4193
4194         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4195         of SetWMStyles.  It's still a rat's nest and is largely
4196         order-dependent which I dislike immensely.  This also fixes the X
4197         button disappearing from toplevel forms.
4198
4199 2006-09-21  Mike Kestner <mkestner@novell.com>
4200
4201         * ListBox.cs: move Jordi's click/dblclick raising code to the
4202         mouse up handler.
4203
4204 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4205
4206         * ListBox.cs: Fixes 79450
4207
4208 2006-09-21  Mike Kestner <mkestner@novell.com>
4209
4210         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4211         to deal with people updating the TreeNodeCollection after the tree
4212         is disposed.  "Fixes" 79330.
4213
4214 2006-09-20  Jackson Harper <jackson@ximian.com>
4215
4216         * TextControl.cs: Push the cursor record onto the undo stack
4217         before the delete action. This fixes 78651.
4218
4219 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4220
4221         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4222         CreateParams. Fixes 79329.
4223
4224 2006-09-19  Chris Toshok  <toshok@ximian.com>
4225
4226         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4227         things up a bit.  First, get rid of the NetAtoms array (and the NA
4228         enum), and just embed the atoms as static fields.  Also, add a
4229         couple of functions (StyleSet and ExStyleSet) to clean up all the
4230         bitmask testing of styles.
4231
4232         * X11Structs.cs: remove the NA enum, not needed anymore.
4233         
4234 2006-09-19  Chris Toshok  <toshok@ximian.com>
4235
4236         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4237         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4238         added cleanup to get MessageBox titles appearing again, which were
4239         broken by my earlier fix for caption-less/ControlBox-less windows.
4240
4241 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4242
4243         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4244           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4245           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4246           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4247           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4248           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4249           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4250           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4251           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4252           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4253           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4254             Inital import.
4255         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4256           ToolStripButton.cs: Stubs needed for above.
4257         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4258
4259 2006-09-15  Chris Toshok  <toshok@ximian.com>
4260
4261         * XplatUIX11.cs:
4262         - make the MessageQueues hashtable Synchronized.
4263         
4264         - SendMessage: if the Hwnd is owned by a different thread, use the
4265         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4266         thread.  Fixes bug #79201.
4267
4268 2006-09-15  Chris Toshok  <toshok@ximian.com>
4269
4270         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4271         ControlBox == false, we disallow maximize/minimize/close.  If the
4272         form Caption is "" we also disallow move (and get rid of the Title
4273         decoration).  Unfortunately, regardless of how things are set,
4274         we're stuck with the Title and WM menu.
4275
4276 2006-09-15  Chris Toshok  <toshok@ximian.com>
4277
4278         * Application.cs: add locking around the static message_filters
4279         ArrayList, part of #79196.
4280
4281 2006-09-15  Chris Toshok  <toshok@ximian.com>
4282
4283         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4284         Form.ControlBox == false, the window has no titlebar nor resize
4285         handles.  fixes bug #79368.
4286
4287 2006-09-15  Chris Toshok  <toshok@ximian.com>
4288
4289         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4290         >= 0.  Fixes bug #79370.
4291
4292 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4293         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4294         * Control.cs:
4295             Add properties: LayoutEngine, Margin, DefaultMargin.
4296             Add method: GetPreferredSize.
4297             Move layout logic from PerformLayout to layout engines. 
4298
4299 2006-09-13  Chris Toshok  <toshok@ximian.com>
4300
4301         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4302         fix for #79326 broke #78718, so this change addresses that.
4303
4304         - in SendWMDestroyMessages remove the call to
4305         CleanupCachedWindows, since we might be recreating the control and
4306         need to maintain the references to right Hwnd handles.  Also, set
4307         the zombie flag to true for each of the children in the hierarchy
4308         instead of calling hwnd.Dispose.  This will cause GetMessage to
4309         ignore all events for the window except for DestroyNotify.
4310
4311         - In GetMessage, ignore messages except for DestroyNotify for
4312         zombie hwnds.
4313         
4314         * Control.cs: revert the is_recreating fix from the last
4315         ChangeLog.  It's definitely "right", but it breaks switching from
4316         an MDI form to a non-MDI form.  Will need to revisit that.
4317
4318         * Hwnd.cs: add a zombie flag, which means "the
4319         client_window/whole_window handles are invalid, but we're waiting
4320         for the DestroyNotify event to come in for them".  Set the flag to
4321         false explicitly if setting WholeWindow/ClientWindow, and also
4322         when Disposing.
4323         
4324 2006-09-13  Chris Toshok  <toshok@ximian.com>
4325
4326         * XplatUIX11.cs: rework window destruction slightly.
4327
4328         - when destroying the windows associated with a control, we don't
4329         need 2 separate XDestroyWindow calls.  Just the one for the
4330         whole_window (or for client_window if whole_window is somehow
4331         IntPtr.Zero -- can this happen?) is enough.
4332
4333         - reworked SendWMDestroyMessages slightly, so we always dispose
4334         the child control hwnd's after sending the messages.
4335         
4336         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4337         the two places it was used (one was even using hwnd.Handle and the
4338         other hwnd.client_window.  ugh), adding another call in
4339         SendWMDestroyMessages.  We need this new call because now the
4340         DestroyNotify events in the queue will be ignored for the child
4341         controls (as their hwnd's were disposed, and the window id's
4342         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4343
4344         - this fixes bug #79326.
4345
4346 2006-09-13  Chris Toshok  <toshok@ximian.com>
4347
4348         * Control.cs: don't always set is_recreating to false at the end
4349         of RecreateHandle, since sometimes we're not done (and won't be
4350         until WndProc handles the WM_DESTROY message).  Also, set
4351         is_recreating to false in the WM_DESTROY handling code.  Part of
4352         the fix for bug #79326.
4353
4354 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4355
4356         * X11DesktopColors.cs: Start the droppage of debugging messages.
4357
4358         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4359
4360 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4361
4362         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4363
4364 2006-09-12  Chris Toshok  <toshok@ximian.com>
4365
4366         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4367         to create it using SetDataSource.  Fixes bug #79151.
4368
4369 2006-09-11  Chris Toshok  <toshok@ximian.com>
4370
4371         * XEventQueue.cs: add a DispatchIdle property.
4372
4373         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4374         either the queue is null, or the queue has DispatchIdle set to
4375         true.
4376         (DoEvents): set queue.DispatchIdle to false around the
4377         peek/translate/dispatch message loop in this method.  This keeps
4378         Application.Doevents from emitting idle events.  Part of the fix
4379         for #78823.
4380
4381 2006-09-11  Chris Toshok  <toshok@ximian.com>
4382
4383         * DataGrid.cs (set_DataSource): make this work for both the
4384         winforms/datagrid test and ReportBuilder.  It seems as though when
4385         we've created a ListManager (or maybe it's if we have a
4386         BindingContext?), when we set the DataSource it clears the
4387         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4388         #79333.
4389
4390 2006-09-11  Chris Toshok  <toshok@ximian.com>
4391
4392         * XplatUIX11.cs: deal with queue being null, which happens in all
4393         the Clipboard functions.  Fixes one of the two problems mentioned
4394         in #78612.
4395
4396 2006-09-11  Chris Toshok  <toshok@ximian.com>
4397
4398         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4399         button on various spots (including outside the menu) works closer
4400         to MS, and doesn't crash.  Fixes #79343.
4401
4402 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4403
4404         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4405         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4406         and the internal comparer is set. When a new ListViewItemSorter is set,
4407         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4408         was specified. No further processing is necessary if SortOrder is set
4409         to it's current value. If Sorting is modified to None, and View is
4410         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4411         (either custom or our internal ItemComparer) to null, on 1.0 profile
4412         only set item_sorter to null if its our internal IComparer. If Sorting
4413         is modified to Ascending or Descending, then use our internal IComparer
4414         if none is set, and if the current IComparer is our internal one then:
4415         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4416         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4417         Enum.IsDefined to verify whether a valid View value is specified in
4418         its setter. Automatically sort listview items when listview is
4419         created. In Sort, do nothing if ListView is not yet created, or if
4420         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4421         to None or ListViewItemSorter was set to null). Added Sort overload
4422         taking a bool to indicate whether the ListView should be redrawn when
4423         items are sorted (we use this in ListViewItemCollection to avoid double
4424         redraws). Modified our internal IComparer to take the sort order into
4425         account. In Add and AddRange methods of ListViewItemCollection, also
4426         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4427         view), but use overload with noredraw option to avoid double redraw.
4428         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4429         true when View is Tile, and do the same when attempting to set View to
4430         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4431         for selected/checked indices, as it involves overhead when sorting is
4432         done while these collections are not used all that often. Instead
4433         we'll build the indices on demand. Modified IList implementation of
4434         CheckedIndexCollection to use public methods if object is int.
4435         Modified CheckedListViewItemCollection to hide checked items if
4436         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4437         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4438         IList implementation in SelectedIndexCollection to use public methods
4439         if object is int. Modified SelectedListViewItemCollection to hide
4440         selected items if listview is not yet created.
4441         * ListViewItem.cs: CheckedIndices list no longer needs to be
4442         maintained separately (see ListView changes). Also clone font, fixes
4443         test failure.
4444
4445 2006-09-11  Mike Kestner  <mkestner@novell.com>
4446
4447         * ComboBox.cs: if we are updating the contents of the currently
4448         selected index, refresh the control or the textbox selection.
4449         [Fixes #79066]
4450
4451 2006-09-11  Mike Kestner  <mkestner@novell.com>
4452
4453         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4454         the 'specified' logic has been moved there.  This seems like a bug 
4455         in Control.cs, since our current SetBoundsCore completely ignores 
4456         the specified parameter.  Peter's commit seems to indicate that is 
4457         the way the MS control implementation works.  [Fixes #79325]
4458
4459 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4460
4461         * XplatUI.cs: Set default_class_name to be composed
4462         of current domain id. This allows MWF to be loaded in multiple
4463         domains on Win32.
4464
4465 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4466
4467         * X11Keyboard.cs: If we are unable to obtain the input method, do
4468         not call CreateXic to create the input context.   Should fix
4469         #78944/79276.
4470
4471 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4472
4473         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4474           Simplified gnome support by adding more pinvokes to get the
4475           icon for a file or mime type.
4476
4477 2006-09-08  Jackson Harper  <jackson@ximian.com>
4478
4479         * MenuAPI.cs: Deslect popup context menu items before closing the
4480         window, so that you don't see the previously selected item
4481         selected when you reopen the menu.
4482         * TextControl.cs: Update the cursor position even if we don't have
4483         focus.  This fixes typing in things like the ComboBox.  I'm not
4484         totally sure we should always set the visibility if we don't have
4485         focus, but couldn't find any corner cases where the cursor showed
4486         up when it shouldn't.
4487
4488 2006-09-08  Chris Toshok  <toshok@ximian.com>
4489
4490         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4491         our arrays are length 256.  & 0xff before indexing.  Fixes the
4492         crash in bug #78077.
4493         
4494 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4495
4496         * ThemeWin32Classic.cs: 
4497         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4498         is true. Handle that check box too.
4499
4500 2006-09-07  Chris Toshok  <toshok@ximian.com>
4501
4502         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4503         79244.
4504
4505 2006-09-07  Chris Toshok  <toshok@ximian.com>
4506
4507         * Control.cs: in set_BackColor only do the work if
4508         background_color != value.
4509
4510         * XplatUIX11.cs: move the clearing of invalid areas (both client
4511         and nc) to the same block of code where we set (nc_)expose_pending
4512         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4513         so things that cause invalidates from within OnPaint will trigger
4514         another call to OnPaint.  Fixes bug #79262.
4515
4516 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4517
4518         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4519         * FileDialog.cs: Fix typo
4520
4521 2006-09-07  Jackson Harper  <jackson@ximian.com>
4522
4523         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4524         for tab pages if they have any.
4525
4526 2006-09-06  Mike Kestner  <mkestner@novell.com>
4527
4528         * Splitter.cs: use the "current" rect when finishing drag handle
4529         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4530
4531 2006-09-06  Mike Kestner  <mkestner@novell.com>
4532
4533         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4534         support offset splitters. [Fixes #79298]
4535
4536 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4537
4538         * Mime.cs: Fixed a bug that could override the global mime type
4539           result.
4540
4541 2006-09-05  Jackson Harper  <jackson@ximian.com>
4542
4543         * TabControl.cs: Better calculation method for setting the slider
4544         pos. Prevents crashes on really wide tabs.
4545         - Draw Image on tab pages if an image list is used.
4546
4547 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4548
4549         * MonthCalendar.cs: When Font changes, the Size should be
4550         updated to fit the new font's space requirements.
4551
4552 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4553
4554         * ListBox.cs: If the items are cleared with Items.Clear set
4555           top_index to 0.
4556
4557 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4558
4559         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4560         fire DateChanged event instead of DateSelected event when
4561         the date was changed by keyboard interaction.
4562
4563 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4564
4565         * DateTimePicker.cs: Handle DateChanged for the associated
4566         month_calendar control, and set month_calendar.Font from 
4567         OnFontChanged method, as well as resize the height of the
4568         control when needed. Make PreferredHeight proportional.
4569
4570 2006-09-01  Chris Toshok  <toshok@ximian.com>
4571
4572         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4573         properties.
4574
4575         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4576
4577 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4578
4579         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4580           for decorations (Fixes #79219)
4581
4582 2006-09-01  Mike Kestner  <mkestner@novell.com>
4583
4584         * ComboBox.cs: first stab at sorting plus some selection handling
4585         fixes to bring us more in line with MS behavior.  Also switches back
4586         to index based selection.  Alternative patches for index-based 
4587         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4588         and latency@gmx.de on bug 78848.  I assume they were similar to this
4589         code I've had simmering in my tree forever.
4590         [Fixes #78848]
4591
4592 2006-09-01  Chris Toshok  <toshok@ximian.com>
4593
4594         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4595         when setting list position guard against ending up with a -1 index
4596         (the other part of the fix for #78812).  Should probably make sure
4597         we don't need the analogous fix in the ItemDeleted case.
4598
4599         * DataGrid.cs:
4600         - in SetDataSource, work around the fact that the way
4601         OnBindingContextChanged is invoked will cause us to re-enter this
4602         method.  I'll remove the hack once I investigate
4603         OnBindingContextChanged.
4604
4605         - fix the logic in set_DataSource and set_DataMember (basically
4606         what to do if the other of the two is null.)
4607         
4608         - in OnListManagerItemChanged, we need to take into account the
4609         edit row when deciding whether or not to call RecreateDataGridRows
4610         (part of the fix for #78812).
4611
4612 2006-09-01  Jackson Harper  <jackson@ximian.com>
4613
4614         * Splitter.cs: Don't do anything if there is no control to affect
4615         (prevents us from crashing in weird tet cases).
4616         * TreeView.cs: Bounding box for the mouse movement reverting
4617         focus/selection back to previously selected node.  This matches
4618         MS, and makes the tree a lot more useable.
4619         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4620         use clipping so they are not drawn.  This fixes when the control
4621         is set to have a transparent background, or if it was over an
4622         image.
4623
4624 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4625
4626         * MimeIcon.cs: Improved handling for reading default icons when
4627           using gnome (2.16 made it necessary). Check and read svg icons
4628           first, then 48x48 and then 32x32 icons.
4629
4630 2006-08-31  Chris Toshok  <toshok@ximian.com>
4631
4632         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4633         visible.
4634
4635         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4636         ProcessKeyPreview.  Fixes part of #77806.
4637
4638         * DataGrid.cs: big patch.
4639
4640         - revert the queueing up of DataSource/DataMember if inside
4641         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4642         its delayed databinding.  Instead, call SetDataSource in
4643         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4644         #78811.
4645
4646         - Also, it wasn't mentioned in #78811, but the test case exhibits
4647         behavior that was lacking in our datagrid implementation - Columns
4648         that have mapping names that don't exist in the datasource's
4649         properties aren't shown.  Yuck.  To fix this I added the bound
4650         field to the column style, and basically any calculation to figure
4651         out anything about columns uses a loop to find the bound columns.
4652         still need to investigate if I can cache an array of the bound
4653         columns or if the indices must be the same.
4654
4655         - When setting CurrentCell, we no longer abort if the cell being
4656         edited was in the add row.  This fixes the other part of #77806.
4657
4658         - The new code also fixes #78807.
4659         
4660         * ThemeWin32Classic.cs: perpetrate the same disgusting
4661         column.bound field hack, and only render bound fields.
4662
4663 2006-08-31  Chris Toshok  <toshok@ximian.com>
4664
4665         * DataGridColumnStyle.cs: add bound field.  this field is true if
4666         the datasource has a property corresponding to the mapping name.
4667
4668         * DataGridTableStyle.cs: set the bound field on the column styles
4669         depending on whether or not we have a column for that property.
4670
4671 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4672
4673         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4674           splitter control (fixes #79228)
4675
4676 2006-08-31  Chris Toshok  <toshok@ximian.com>
4677
4678         * DataGridColumnStyle.cs: we need to delay the assignment of
4679         property descriptor until the last possible moment due to the lazy
4680         databinding stuff in the datagrid.  Also, fix the exceptions
4681         thrown by CheckValidDataSource to match MS.
4682
4683 2006-08-31  Jackson Harper  <jackson@ximian.com>
4684
4685         * Form.cs: When activated select the active control, if there is
4686         no active control, we select the first control.
4687         * XplatUIX11.cs: If there is no focus control when we get a
4688         FocusIn event, find the toplevel form and activate it.  This
4689         occurs when you popup a window, it becomes the focus window, then
4690         you close that window, giving focus back to the main window.
4691
4692 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4693
4694         * MonthCalendar.cs: 
4695         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4696         as StringFormat with Center alignments in MonthCalendar,
4697         instead of creating new ones when drawing the control. 
4698         Also, draw the month name in bold style.
4699
4700 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4701
4702         * Control.cs:
4703           - PerformLayout(): It would seem MS performs the fill even if the 
4704             control is not visible (part of #79218 fix)
4705           - ResetBackColor(): Use the setter to reset the color, to allow
4706             overriders to catch the change.
4707         * Form.cs:
4708           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4709           - CreateHandle(): dito (part of $79218 fix)
4710           - Don't set an icon if we have a dialog
4711         * ScrollableControl.cs:
4712           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4713           - ScrollIntoView(): No need to scroll if control is already visible
4714             (resolves fixme and fixes #79218)
4715
4716 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4717
4718         * MonthCalendar.cs: Change proportions in SingleMonthSize
4719         to match the aspect of the original control.
4720
4721 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4722
4723         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4724           get updated when they get maximized.
4725
4726 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4727
4728         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4729
4730 2006-08-29  Chris Toshok  <toshok@ximian.com>
4731
4732         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4733
4734 2006-08-29  Jackson Harper  <jackson@ximian.com>
4735
4736         * TreeView.cs: Need to track selected node and highlighted node,
4737         they aren't always the same thing, when the mouse is down on a
4738         node it is hilighted, but not selected yet.
4739         - Do the HideSelection stuff right
4740         - Need to focus on rbutton mouse down. And redraw selection when
4741         right click is mouse upped.
4742
4743 2006-08-29  Mike Kestner  <mkestner@novell.com>
4744
4745         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4746         when SubItems.Count < Columns.Count.  [Fixes #79167]
4747
4748 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4749
4750         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4751
4752 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4753
4754         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4755           from X. Only send based on ConfigureNotify if we don't have the
4756           correct location in hwnd (if the window manager moved us)
4757
4758 2006-08-28  Mike Kestner  <mkestner@novell.com>
4759
4760         * ListView.cs: remove a TODO. 
4761         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4762         [Fixes ListView part of #79166]
4763
4764 2006-08-28  Mike Kestner  <mkestner@novell.com>
4765
4766         * ListView.cs: move wheel handler to parent since it is focused
4767         instead of the item_control now.  [Fixes #79177]
4768
4769 2006-08-28  Mike Kestner  <mkestner@novell.com>
4770
4771         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4772         when the control is focused. [Fixes #79171]
4773
4774 2006-08-28  Mike Kestner  <mkestner@novell.com>
4775
4776         * ListView.cs: size the item and header controls for empty and
4777         unscrollable views.
4778         * ThemeWin32Classic.cs: draw disabled backgrounds.
4779         [Fixes #79187]
4780
4781 2006-08-28  Chris Toshok  <toshok@ximian.com>
4782
4783         * Form.cs: remove unused "active_form" static field.
4784
4785         * Hwnd.cs: lock around accesses to static windows collection.
4786
4787         * Application.cs: lock threads in Exit ().
4788
4789 2006-08-28  Chris Toshok  <toshok@ximian.com>
4790
4791         * NativeWindow.cs: lock around accesses to window_collection.
4792         
4793 2006-08-28  Chris Toshok  <toshok@ximian.com>
4794
4795         * Control.cs: err, fix this the right way, by locking on controls
4796         when using it.  not by making it synchronized.
4797
4798 2006-08-28  Chris Toshok  <toshok@ximian.com>
4799
4800         * Control.cs: make the static "controls" field synchronized, as it
4801         gets updated from multiple threads.
4802
4803 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4804
4805         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4806           Prevent other threads from exiting when calling thread sets quit state.
4807         * XEventQueue.cs: Added PostQuitState property
4808
4809 2006-08-27  Chris Toshok  <toshok@ximian.com>
4810
4811         * AsyncMethodData.cs: add a slot for the window handle.
4812
4813         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4814         window (the destination control's window, not the foster window).
4815
4816         * Control.cs (BeginInvokeInternal): store the window's handle in
4817         the AsyncMethodData.
4818         
4819
4820 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4821
4822         * XplatUIX11.cs:
4823           - PostQuitMessage: Removed resetting S.D display handle, we might have
4824             another loop started after calling PostQuitMessage (Fixes #79119)
4825           - Created destructor to reset S.D handle
4826
4827 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4828
4829         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4830
4831 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4832
4833         * TextControl.cs (Insert): Update the caret position even if we don't
4834           have a handle yet, just don't call the driver in that case.
4835         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4836           to the end of the new selection text (Fixes #79184)
4837
4838 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4839
4840         * Form.cs (Activate): Only activate if the handle is created)
4841         * Control.c:
4842           - Mark window as invisible when it's disposed
4843           - Check if window handle is created when setting window visible, 
4844             instead of relying just on the is_created variable
4845           - Check if object is disposed when creating the control (Fixes #79155)
4846
4847 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4848
4849         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4850           when allowing layout again. Otherwise we re-generate the anchoring 
4851           distance to the border again and actually alter what the user wanted
4852           This is ugly, it'd be better if we used DisplayRectangle instead of
4853           ClientRectangle for Control.UpdateDistances, but that causes us to
4854           have other problems (initial anchoring positons would be wrong)
4855           (Fixes #78835)
4856
4857 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4858
4859         * Control.cs:
4860           - The size and location setters shouldn't go directly to 
4861             SetBoundsCore, but to SetBounds, which triggers layout on the
4862             parent, then calls SetBoundsCore. (Related to fix for #78835)
4863           - SetBounds: Moved actual location update code into this function
4864             from SetBoundsCore, to match MS. Added call to PerformLayout if
4865             we have a parent (to trigger resizing of anchored parents if the 
4866             child size has changed (see testcase for #78835) 
4867         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4868           new control code
4869         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4870
4871 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4872
4873         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4874           System.Drawing when a toplevel window gets closed; there might
4875           be other toplevel windows belonging to the same app (Fixes #78052)
4876
4877 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4878
4879         * FileDialog.cs: After reading FileDialog settings from mwf_config
4880           use Desktop prefix only if a real folder doesn't exist anymore.
4881         * FontDialog.cs: Added char sets.
4882           It is now possible to select the font, size or style with the
4883           textboxes.
4884
4885 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4886
4887         * PrintPreviewDialog.cs: Use assembly name constants.
4888
4889 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4890
4891         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4892           scrollbar from whacking it's buttons)
4893
4894 2006-08-24  Chris Toshok  <toshok@ximian.com>
4895
4896         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4897         in this patch (aggregating setting Left/Top/Width/Height to
4898         setting Bounds on the scrollbars), but the crux of the fix is in
4899         Recalculate, where we scroll by the remaining scroll_position if
4900         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4901         serious.
4902
4903 2006-08-24  Jackson Harper  <jackson@ximian.com>
4904
4905         * MdiClient.cs:
4906         * MdiWindowManager.cs: If the form is made a non-mdi window we
4907         need to remove the form closed event so that closing forms works
4908         correctly.
4909
4910 2006-08-24  Jackson Harper  <jackson@ximian.com>
4911
4912         * Control.cs: Make IsRecreating internal so that the driver can
4913         check it
4914         - Temporarily remove the Hide when controls are removed, its
4915         making a whole bunch of things not work because visibility isn't
4916         getting reset elsewhere correctly
4917         * Form.cs: Need to do a full handle recreation when the mdi parent
4918         is set.
4919         * XplatUIX11.cs: If we are recreating handles don't dispose the
4920         HWNDs.  What was happening is the handles were being recreated in
4921         SendWMDestroyMessages, but then flow continued on in that method
4922         and destroyed the new handles.
4923
4924 2006-08-23  Jackson Harper  <jackson@ximian.com>
4925
4926         * Form.cs: MdiClient is always at the back of the bus
4927         * Control.cs: When the order of items in the collection is changed
4928         we need to reset the all_controls array
4929         - do the same sorta setup thats done when adding a control when a
4930         control is set on the collection.
4931
4932 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4933
4934         * TextBoxBase.cs (get_Text): Return an empty array if our document
4935           is empty (fixes #79052)
4936
4937 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4938
4939         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4940           on WM_SYSCHAR messages (fixes #79053)
4941
4942 2006-08-23  Chris Toshok  <toshok@ximian.com>
4943
4944         * DataGrid.cs: fix flickering when scrolling vertically.
4945
4946 2006-08-23  Chris Toshok  <toshok@ximian.com>
4947
4948         * DataGrid.cs (EndEdit): only invalidate the row header when we
4949         need to.
4950
4951 2006-08-23  Chris Toshok  <toshok@ximian.com>
4952
4953         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4954         methods.  fixes the flicker when scrolling around.
4955
4956 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4957
4958         * FileDialog.cs: Making sure the control is created before we get a 
4959           chance to use it with BeginInvoke (Fixes #79096)
4960
4961 2006-08-23  Chris Toshok  <toshok@ximian.com>
4962
4963         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4964         width to use when painting the rows.
4965
4966 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4967
4968         * TextBoxBase.cs:
4969           - Throw ArgumentException if a negative value is passed to SelectionLength
4970           - Update the selection end if start is moved. end needs to be always
4971             after start. (Fixes #79095)
4972           - Track selection length; MS keeps the selection length even if start
4973             is changed; reset on all other operations affection selection
4974
4975 2006-08-22  Jackson Harper  <jackson@ximian.com>
4976
4977         * TreeView.cs: Make sure both scrollbars get displayed and sized
4978         correctly when the other bar is visible.
4979         - Use the original clip rectangle for checking if the area between
4980         the two scrollbars is visible, not the viewport adjusted clipping
4981         rectangle.
4982
4983 2006-08-22  Jackson Harper  <jackson@ximian.com>
4984
4985         * Binding.cs: We don't use IsBinding because it requires the
4986         control to be created, which really shouldn't be necessary just to
4987         set a property on the control.
4988
4989 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4990
4991         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4992         ArgumentNullReferenceException when the argument is null.
4993
4994 2006-08-21  Jackson Harper  <jackson@ximian.com>
4995
4996         * Timer.cs: Track the thread that the timer is started in (NOT
4997         CREATED), this way messages for it will only be triggered on its
4998         queue.
4999         * XEventQueue.cs: Track the timers here, this makes timers per
5000         thread, like MS.
5001         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5002
5003 2006-08-19  Chris Toshok  <toshok@ximian.com>
5004
5005         * XplatUIX11.cs: after further communication with pdb, we get the
5006         best of both worlds.  SetZOrder working for un-Mapped windows, and
5007         no X errors for un-mapped windows.
5008
5009 2006-08-19  Chris Toshok  <toshok@ximian.com>
5010
5011         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5012         as it was causing pdn toolbars to not have the correct stacking.
5013
5014 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5015
5016         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5017         calculation.  Not sure why control should ever be setting a negative
5018         width though.  Fixes #78931.
5019
5020 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5021
5022         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5023         null items in ObjectCollection class.
5024         * ListBox.cs.: Likewise.
5025
5026 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5027
5028         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5029           as the base method in ThemeWin32Classic should work fine.
5030           Fixed bug #78607.
5031
5032 2006-08-18  Jackson Harper  <jackson@ximian.com>
5033
5034         * Binding.cs: When validating if the value entered doesn't convert
5035         properly reset to the old value.
5036         * RadioButton.cs: Don't fire click when we get focus.
5037
5038 2006-08-18  Jackson Harper  <jackson@ximian.com>
5039
5040         * FileDialog.cs: Paint the selection on the directory combobox the
5041         same way as on MS. 
5042
5043 2006-08-17  Jackson Harper  <jackson@ximian.com>
5044
5045         * ErrorProvider.cs: Don't allow the error control to be selected.
5046         * Control.cs: Don't send the SetFocus messages, the control
5047         activation will do this, and if we do it blindly here validation
5048         does not work.
5049
5050 2006-08-17  Jackson Harper  <jackson@ximian.com>
5051
5052         * Control.cs:
5053         * ContainerControl.cs: Make validation events fire in the correct
5054         order.  TODO: For some reason the first validation event is not
5055         getting fired.
5056
5057 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5058
5059         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
5060
5061 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5062
5063         * ComboBox.cs : implement scroll wheel support for popped-down
5064         state. Fixes #78945. 
5065
5066 2006-08-17  Jackson Harper  <jackson@ximian.com>
5067
5068         * TreeView.cs: Specify treeview actions (old patch that didn't get
5069         committed for some reason).
5070         - Don't let the mouse wheel scroll us too far.  Just want to make
5071         the bottom node visible, not scroll it all the ways to the top.
5072
5073 2006-08-17  Jackson Harper  <jackson@ximian.com>
5074
5075         * XplatUIX11.cs: Mouse wheel events go to the focused window.
5076
5077 2006-08-17  Mike Kestner  <mkestner@novell.com> 
5078
5079         * ComboBox.cs : don't do mouseover selection in simple mode.
5080
5081 2006-08-16  Jackson Harper  <jackson@ximian.com>
5082
5083         * Form.cs: Fire the closing events for all the mdi child windows
5084         when a window is closed.  If the cancel args are set to true, the
5085         main window still gets the event fired, but it doesn't not close.
5086         * MdiWindowManager.cs: Do this closing cleanup in a Closed
5087         handler, instead of when the button is clicked, so cancelling the
5088         close works correctly.
5089         * ComboBox.cs: Send the mouse down to the scrollbar.
5090
5091 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5092
5093         * ListBox.cs: When passing 'null' to SelectedItem,
5094         set SelectedIndex to -1, to unselect items. This is the
5095         observed behaviour in .Net.
5096
5097 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
5098
5099         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
5100           MS flags saying there won't be any. (fixes #78800)
5101         * Control.cs (HandleClick): Made virtual
5102
5103 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5104
5105         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
5106           cultures. Fixed bug #78399.
5107
5108 2006-08-16  Jackson Harper  <jackson@ximian.com>
5109
5110         * Form.cs: Use the MdiClients MdiChildren property to access
5111         MdiChildren instead of creating the array from the child controls.
5112         * MdiClient.cs: Maintain a separate array of the mdi children, so
5113         that insertion order is maintained when the Z-order is changed.
5114
5115 2006-08-16  Mike Kestner  <mkestner@novell.com> 
5116
5117         * ListView.cs : add an ItemComparer and default to it for sorting.
5118         Fixes #79076, but sorting needs a complete overhaul to be compat with
5119         MS.
5120
5121 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5122
5123         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5124
5125 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5126
5127         * Hwnd.cs (Mapped): Properly traverse the tree
5128
5129 2006-08-15  Chris Toshok  <toshok@ximian.com>
5130
5131         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5132         pass manager.Current.GetType() to ParseData.  It has to be the
5133         property type.  So, hold off doing the ParseData until we're in
5134         SetPropertyValue where we know the type.  This fixes the crash in
5135         #78821 but the textbox is still empty.
5136
5137 2006-08-15  Chris Toshok  <toshok@ximian.com>
5138
5139         * DataGrid.cs:
5140         - when we're scrolling, only call Edit() again if the
5141         current cell is still unobscured. Fixes bug #78927.
5142         - when handling mousedown on a cell, ensure the cell is visible
5143         before calling Edit.
5144         - remove the properties from DataGridRow, and remove the
5145         DataGridParentRow class altogether.
5146         
5147
5148 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5149
5150         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5151           fire OnTextChanged by ourselves. There's no point calling base,
5152           we don't set the base value anywhere else. Fixes #78773.
5153
5154 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5155
5156         * ListBox.cs: Call CollectionChanged when modifying
5157         an item from Items indexer, to update the actual items
5158         in the list box.
5159
5160 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5161
5162         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5163         to match .Net behaviour.
5164
5165 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5166
5167         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5168
5169 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5170
5171         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5172
5173 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5174
5175         * MessageBox.cs: Prevent potential NRE exception.
5176         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5177
5178 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5179
5180         * MessageBox.cs: Calculate the owner of a messagebox, also make
5181           it topmost. Fixes #78753
5182
5183 2006-08-14  Chris Toshok  <toshok@ximian.com>
5184
5185         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5186         programmatically move windows.  first, set the PPosition hint as
5187         well as the USPosition hint.  Second include some code from pdb
5188         that sets the window type to NORMAL when we set the transient for
5189         hint.  This is because, in the absence of a window type, metacity
5190         thinks any window with TransientFor set is a dialog, and refuses
5191         to let us move it programmatically.  fascists.
5192
5193 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5194
5195         * XplatUIX11.cs: When setting normal hints, take into consideration
5196           an different hints previously set so we don't delete them (fixes #78866)
5197
5198 2006-08-12  Chris Toshok  <toshok@ximian.com>
5199
5200         * ToolBarButton.cs: make Layout return a boolean, if something to
5201         do with the button's layout changed.
5202
5203         * ToolBar.cs:
5204         - add another parameter to Redraw, @force, which all existing
5205           calls set to true.
5206         - make the Layout function return a boolean which is true if the
5207           layout has actually changed.  Redraw now uses this (and @force)
5208           to determine when to invalidate.  At present the only place
5209           where @force can be false is the call from OnResize, when
5210           background_image == null.  So, resizing a toolbar when the
5211           layout doesn't change results in no drawing.
5212
5213 2006-08-12  Chris Toshok  <toshok@ximian.com>
5214
5215         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5216         the VScrollBar and HScrollbar reversed.  oops.
5217
5218         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5219         scrollbars.  we were assigning them twice (once in
5220         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5221         therefore causing two scrollbar resizes (and redraws?) to happen
5222         per grid resize.
5223
5224 2006-08-12  Chris Toshok  <toshok@ximian.com>
5225
5226         * ToolBarButton.cs: redraw the entire button if the theme tells us
5227         to.
5228
5229         * Theme.cs: add ToolBarInvalidateEntireButton.
5230
5231         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5232         buttons, just the border.
5233
5234         * ThemeNice.cs: redraw the entire toolbar button since we need to
5235         draw the highlight image.
5236
5237         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5238         we need to redraw the entire button (not just the border).
5239
5240 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5241
5242         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5243           for vertical bars. Fixes the mismatches shown by #78513
5244
5245 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5246
5247         * FileDialog.cs: If a saved/remembered path doesn't exist
5248           anymore, fall back to "Desktop".
5249
5250 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5251
5252         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5253           parent. It's apparently legal to not have one
5254         * XplatUIX11.cs:
5255           - SetZOrder: Don't try to set Z-Order on an unmapped window
5256           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5257             it unless the coordinates are negative
5258
5259 2006-08-10  Mike Kestner  <mkestner@novell.com>
5260
5261         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5262         when setting to null per msdn docs.  Fixes #78854.
5263
5264 2006-08-10  Chris Toshok  <toshok@ximian.com>
5265
5266         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5267         flickering by setting a clip rectangle on the Graphics when we
5268         need to redraw just a particular menuitem.  Also, rename "OnClick"
5269         to "OnMouseDown" to reflect what it actually is.
5270         
5271         * Form.cs: track the OnMouseDown change.
5272
5273 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5274
5275         * CommonDialog.cs: Properly inherit the CreateParams from the form
5276           and only change what we need. Fixes #78865
5277
5278 2006-08-10  Chris Toshok  <toshok@ximian.com>
5279
5280         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5281         flickering in flat mode (and most of the flickering in general) by
5282         only invalidating the button border (and not the entire rectangle)
5283         when the state changes.  A couple of cases still flicker:
5284         ToggleButtons, and the dropdown arrow case when the user mouse
5285         ups.
5286
5287 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5288
5289         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5290           for german keyboards. Numlock state shouldn't affect the behaviour
5291           of the Del key. Fixes bug #78291.
5292
5293 2006-08-10  Chris Toshok  <toshok@ximian.com>
5294
5295         * ListControl.cs: remove the items.Clear line from BindDataItems,
5296         as this is the first thing done by both subclasses in their
5297         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5298         passed -1, refresh the list.  This gets databinding working when
5299         the datasource is set on the list before the datasource is
5300         populated (as in wf-apps/ReportBuilder.)
5301
5302         * ComboBox.cs: remove the argument to BindDataItems.  This call
5303         should really go away, and be initiated by the ListControl code.
5304
5305         * ListBox.cs: same.
5306
5307 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5308
5309         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5310           if no data is in the document when the control is displayed
5311
5312 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5313
5314         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5315           yes (fixes #78806)
5316         * TextControl.cs: 
5317           - PositionCaret: Allow positioning of caret but don't call methods 
5318             requiring a handle if the window isn't created yet
5319           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5320           - owner_HandleCreated: Don't position the caret, just update it's 
5321             location. User might have already set a different position
5322
5323 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5324
5325         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5326           windows. Screws up the returned coordinates for child windows. 
5327           Fixes #78825. I'm hoping this doesn't break something, since the
5328           code was explicitly put in 8 months ago, but no bug was attached.
5329           Menus still seem to work properly.
5330
5331 2006-08-08  Chris Toshok  <toshok@ximian.com>
5332
5333         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5334         supposed to do - delay data binding until the EndInit call.  Also,
5335         make the table style collection's CollectionChangeAction.Refresh
5336         work properly.
5337
5338         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5339         (with action = Refresh) when a consituent table's MappingName is
5340         changed.
5341
5342 2006-08-08  Chris Toshok  <toshok@ximian.com>
5343
5344         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5345         Invalidate, since changing the text can change the size of the all
5346         toolbar buttons.
5347
5348 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5349
5350         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5351           we don't have it yet
5352
5353 2006-08-08  Chris Toshok  <toshok@ximian.com>
5354
5355         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5356         dialog, as this causes X errors later on, since we actually
5357         destroy the window.  Instead, .Hide() it.
5358
5359 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5360
5361         * ComboBox.cs: Added focus reflection for popup window
5362         * XplatUIX11.cs: 
5363           - Removed transient setting for non-app windows for now, not sure it
5364             was needed
5365           - Fixed logic checking if we have captions when deciding 
5366             override_redirect, WS_CAPTION is two bits and a 0 check was not
5367             sufficient
5368           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5369             complicated
5370         * Form.cs: 
5371           - AddOwnedForm: Don't just add the form to the list, call the property
5372             to ensure the driver is informed about the ownership as well
5373           - CreateHandle: Set the TopMost status in the driver if we have an owner
5374         * XplatUI.cs: Fixed debug statement
5375
5376 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5377         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5378           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5379           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5380           TrackBarRenderer.cs: Make constructor private.
5381         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5382         * ProfessionalColorTable.cs: Make properties virtual.
5383
5384 2006-08-06  Duncan Mak  <duncan@novell.com>
5385
5386         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5387         is not changing.
5388
5389 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5390         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5391           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5392           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5393           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5394           Initial import of new 2.0 classes.
5395
5396 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5397         * Application.cs: Add 2.0 VisualStyles properties.
5398
5399 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5400         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5401           XplatUIX11.cs: Create property to allow access to existing private
5402           variable "themes_enabled"
5403
5404 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5405
5406         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5407         file size, as otherwise our class libraries fail using windows. Fixes
5408         bug #78759.
5409
5410 2006-08-04  Jackson Harper  <jackson@ximian.com>
5411
5412         * Form.cs:
5413         * XplatUIX11.cs: Move the toolwindow window manager creation into
5414         the X11 driver, this way on win32 we can let windows create/handle
5415         the toolwindows.
5416
5417 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5418
5419         * PrintDialog.cs: Remove some redundant checks, add some others,
5420         clean some code, and move the focus to the text boxes when the
5421         values are incorrect.
5422
5423 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5424
5425         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5426
5427 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5428
5429         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5430           handled correctly. Fixes bug #79001.
5431
5432 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5433
5434         * PrintDialog.cs: The "Copies" numeric up down must have
5435         set the Minimum property to 1; only if the value is bigger
5436         than 1, activate "Collate" check box. This is the behaviour of .Net.
5437         Also modify the Document elements only if it is not null.
5438
5439 2006-08-03  Jackson Harper  <jackson@ximian.com>
5440
5441         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5442         length. (We have a larger array then actual node count).
5443                 
5444 2006-08-03  Jackson Harper  <jackson@ximian.com>
5445
5446         * ComboBox.cs: Don't show selection by default.
5447         - The SelectAll isn't needed here, since the focus code should do
5448         that
5449         - DDL style lists to manual selection drawing, so when they
5450         get/lose focus they have to invalidate.
5451
5452 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5453
5454         * TextBoxBase.cs: Don't always show all selections by default.
5455
5456 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5457         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5458           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5459           Fixed various typos.
5460
5461 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5462
5463         * Control.cs: Removing the controls in a ControlCollection with
5464           Clear now hides the controls as expected. Fixes bug #78804. 
5465
5466 2006-08-03  Jackson Harper  <jackson@ximian.com>
5467
5468         * Control.cs: Revert previous focus patch, it breaks reflector.
5469
5470 2006-08-03  Jackson Harper  <jackson@ximian.com>
5471
5472         * ComboBox.cs: Cleanup selection and focus with the combobox.
5473         This also eliminates some duplicated keyboard code, since now
5474         everything is handled by the main class.
5475         - Make list selection work on mouse up instead of down, to match
5476         MS.
5477
5478 2006-08-02  Jackson Harper  <jackson@ximian.com>
5479
5480         * Control.cs: Setting focus needs to go through the whole
5481         selection mechanism.
5482
5483 2006-08-02  Chris Toshok  <toshok@ximian.com>
5484
5485         * PrintPreviewDialog.cs: change MinimumSize to use
5486         base.MinimumSize so it works.
5487
5488 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5489
5490         * TextControl.cs:
5491           - UpdateCaret: Added sanity check in case caret isn't defined yet
5492           - Line.Delete: Now updating selection and caret markers if we're
5493             transfering a node (Properly fixes #78323)
5494           - SetSelectionEnd: Added sanity check
5495         * TextBoxBase.cs: Removed broken attempt to fix #78323
5496
5497 2006-08-01  Chris Toshok  <toshok@ximian.com>
5498
5499         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5500         Close() call is handled in Form, not here.
5501
5502 2006-08-01  Chris Toshok  <toshok@ximian.com>
5503
5504         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5505         layout/rendering.
5506
5507         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5508         for sizes < 100% zoom.  The code now aggressively attempts to keep
5509         from calling document.Print (), and tries not to use the scaling
5510         g.DrawImage whenever possible (it still does if you scale to >
5511         100%, since usually that involves huge images).
5512
5513         * PrintPreviewControl.cs: hook up the close button.
5514
5515 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5516         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5517           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5518           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5519           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5520           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5521           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5522           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5523           Removed [Serializable] for 2.0 Event Handlers.
5524
5525 2006-07-31  Jackson Harper  <jackson@ximian.com>
5526
5527         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5528         * TextControl.cs: Uncomment out the body of this method.
5529
5530 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5531
5532         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5533           standard cursors.
5534
5535 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5536
5537         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5538           that embed TextBox and need selections visible even if textbox is not
5539           focused to enforce that behaviour.
5540         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5541           selection drawing
5542
5543 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5544
5545         * TextControl.cs:
5546           - Added new SetSelectionStart/SetSelectionEnd overloads
5547           - Fixed viewport width assignment to be accurate
5548           - Adjusted alignment line shift calculations to allow cursor on right
5549             aligned lines to be always visible at the right border (like MS)
5550         * TextBoxBase.cs:
5551           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5552           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5553           - CalculateScrollBars: Use ViewPort size instead of window size, to
5554             properly consider space occupied by the border and scrollbars 
5555             (Fixes #78661)
5556           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5557             calculations; no longer leaves artifacts
5558           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5559             calculation bugs (Still missing right/center align calculations)
5560
5561 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5562
5563         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5564           use of both scroll rect and clip rect, as they do the same.
5565
5566 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5567
5568         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5569           in the event handler (fixes #78912)
5570
5571 2006-07-31  Chris Toshok  <toshok@ximian.com>
5572
5573         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5574         grid.ListManager.Count, since grid.ListManager might be null.
5575         This of course begs the question "why are we drawing rows for a
5576         grid with no list manager (and therefor no rows)?"  Fixes the
5577         crash in bug #78929.
5578
5579 2006-07-31  Chris Toshok  <toshok@ximian.com>
5580
5581         * RelatedPropertyManager.cs: Don't always chain up to the parent
5582         ctor.  instead, call SetDataSource if the parent's position is !=
5583         -1.  Fixes the crash in #78822.
5584
5585 2006-07-31  Chris Toshok  <toshok@ximian.com>
5586
5587         * DataGrid.cs (get_ListManager): use field instead of property
5588         accessors for datasource and datamember.
5589         (RowsCount): make internal again.
5590         (OnMouseDown): end edits before resizing columns/rows.
5591         (OnMouseUp): restart edits after resizing columns/rows.
5592
5593 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5594
5595         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5596           This fixes the situation where the last set cursor is displayed
5597           whenever the mouse is over scrollbars.
5598
5599 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5600
5601         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5602         Document properties, as well as initial values.
5603
5604 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5605
5606         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5607           and ClientEdge results in a 3-pixel border, which is
5608           wrong.
5609
5610 2006-07-28  Jackson Harper  <jackson@ximian.com>
5611
5612         * TreeNodeCollection.cs: Fix the clear method.
5613         - Fix the Shrink also
5614
5615 2006-07-27  Jackson Harper  <jackson@ximian.com>
5616
5617         * TreeView.cs: Make sure the visible order is computed when we
5618         attempt to size the scrollbars (for trees that mess with the
5619         scrolling when they shouldn't.
5620         - Make sure to give the scrollbars valid values.
5621
5622 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5623
5624         * XplatUIX11.cs: Move motion compression code to where it
5625           has less performance impact
5626
5627 2006-07-26  Jackson Harper  <jackson@ximian.com>
5628
5629         * UpDownBase.cs: When the control is selected make the child
5630         controls non selectable, so that a click on them won't do a
5631         focus/unfocus cycle.
5632         - Don't give focus to the text box when the spinner is selected.
5633         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5634
5635 2006-07-26  Chris Toshok  <toshok@ximian.com>
5636
5637         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5638         satisfied with this solution.  If the bitmaps are small, we should
5639         just cache them in the PrintPreviewDialog and draw them here.
5640         Also, the layout is broken for the 2-up and 3-up cases.
5641
5642         * Theme.cs: add PrintPReviewControlPaint.
5643
5644         * PrintPreviewDialog.cs: first pass implementation.
5645
5646         * PrintPreviewControl.cs: first pass implementation.  No
5647         scrollbars yet.
5648
5649         * PrintDialog.cs: only validate fields if that particular portion
5650         of the UI is enabled.  Also, set the document's controller to a
5651         PrintControllerWithStatusDialog wrapping the document's print
5652         controller.
5653
5654         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5655         bring up a SaveFileDialog (i hope we don't want to match the
5656         behavior of the crappy windows file entry) and set the
5657         PrinterSettings.PrintFileName accordingly.
5658
5659 2006-07-26  Jackson Harper  <jackson@ximian.com>
5660
5661         * ContainerControl.cs: Add a field that disables auto selecting
5662         the next control in a container when the container is activated.
5663         * UpDownBase.cs: Don't select the text box when the up down is
5664         selected.
5665
5666 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5667
5668         * XEventQueue.cs: Added methods for peeking (used for compression
5669           of successive events)
5670         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5671           mouse move events (fixes #78732)
5672
5673 2006-07-25  Jackson Harper  <jackson@ximian.com>
5674
5675         * UpDownBase.cs: Use an internal class for the textbox so that we
5676         can control focus.  the updown control should always have focus,
5677         if either the text area or the buttons are clicked.
5678         - Send the key messages to the textbox, since it never actually
5679         has focus
5680         - Activate and decativate the textbox caret.
5681
5682 2006-07-24  Jackson Harper  <jackson@ximian.com>
5683
5684         * Control.cs: Use the directed select when selecting a control,
5685         this way the container controls override will get called and the
5686         whole ActiveControl chain will get triggered.  TODO: probably need
5687         to make sure this gets done everywhere instead of the old
5688         Select(Control).
5689         * ContainerControl.cs: Implement the directed Select method to
5690         find and activate the correct child control.    
5691         
5692 2006-07-22  Mike Kestner  <mkestner@novell.com>
5693
5694         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5695         menu handling code so that clicks without a grab work too.
5696         [Fixes #78914]
5697
5698 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5699
5700         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5701           Added some small optimizations.
5702
5703 2006-07-21  Matt Hargett  <matt@use.net>
5704
5705         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5706
5707 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5708
5709         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5710           tests pass and match MS in some strange border cases.
5711
5712 2006-07-21  Chris Toshok  <toshok@ximian.com>
5713
5714         * ThemeWin32Classic.cs: handle drawing of the relation links and
5715         parent row buttons.
5716
5717         * Theme.cs: change args to DataGridPaintParentRow.
5718
5719         * DataGrid.cs: Don't use controls for the relation links and
5720         parent buttons, so we have to handle all their interactions in
5721         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5722         when we're navigating through child tables, so we can reinstate
5723         selection, expanded state, current cell, etc.
5724
5725 2006-07-20  Chris Toshok  <toshok@ximian.com>
5726
5727         * ToolBar.cs: When we redraw a button, for whatever reason,
5728         there's no reason to redraw the entire toolbar.  Also, don't call
5729         Control.Refresh from within Redraw, as it's much heavier than
5730         Invalidate (which is really what we want).
5731
5732 2006-07-20  Chris Toshok  <toshok@ximian.com>
5733
5734         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5735         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5736         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5737         traces from within a debug IBindingList datasource
5738         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5739         to work in a similar fashion.
5740
5741 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5742
5743         * ListBox.cs: Don't call Sort () when setting 
5744         the Sorted property to false (avoid an unnecessary sort).
5745
5746 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5747
5748         * ListControl.cs: DataSource should throw an ArgumentException
5749         instead of a normal exception when the argument is not of the 
5750         correct type.
5751
5752 2006-07-20  Mike Kestner  <mkestner@novell.com>
5753
5754         * Control.cs: add InternalPreProcessMessage to allow us to steal
5755         key events before MWF gets its paws on them.  Adapted from a
5756         suggestion by eno.
5757         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5758         up/down/left/right navigation. Override the new internal control
5759         method to steal the events since they never make it to WndProc.
5760         * ToolBarButton.cs: don't worry about pushed when setting hilight
5761         since the drawing code prefers pushed to hilight. Invalidate on 
5762         Hilight changes. Fixes #78547 and #78525.
5763
5764 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5765
5766         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5767           the canvas size. Fixes #78868
5768
5769 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5770
5771         * Splitter.cs: Track requested split position until first layout
5772           is performed. Fixes #78871
5773
5774 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5775
5776         * Application.cs: Removed code that forces 1.x for the version
5777           number if the version started with 0. Not sure why that code was
5778           there and I couldn't find any bugs that indicated we needed it.
5779           Fixes #78869
5780
5781 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5782
5783         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5784           ResetDefaults(), just write some output to the console until it's
5785           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5786
5787 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5788
5789         * PropertyGridView.cs: set StartPosition of drop down forms
5790         so they appear in correct initial spot.  Fixes #78190.
5791
5792 2006-07-19  Mike Kestner  <mkestner@novell.com>
5793
5794         * ThemeWin32Classic.cs: use parent background color when drawing
5795         flat toolbars.  Restructure the conditionals to make sure non-flat
5796         non-Divider toolbars are filled too.  Fixes #78837.
5797
5798 2006-07-19  Mike Kestner  <mkestner@novell.com>
5799
5800         * ListBox.cs: Sort on collection changes even if the handle
5801         isn't created yet.  Fixes #78813.
5802
5803 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5804
5805         * ListControl.cs: DisplayMember should never be null,
5806         and now we assign String.Empty when null is passed to it (this
5807         is the .Net way).
5808
5809 2006-07-17  Mike Kestner  <mkestner@novell.com>
5810
5811         * ListViewItem.cs: restructure Font and subitem Font handling 
5812         to hold a specific font and refer back to owner on null.
5813         Fixes #78761.
5814
5815 2006-07-17  Mike Kestner  <mkestner@novell.com>
5816
5817         * ToolBar.cs: bandaid for side-effect of previous patch which was
5818         discarding explicit heights for non-AutoSize toolbars.  Need to
5819         extend my format tester to deal with AutoSize=false. Fixes #78864.
5820
5821 2006-07-15  Jackson Harper  <jackson@ximian.com>
5822
5823         * LabelEditTextBox.cs:
5824         * TreeView.cs: Use a new LabelEdit class for node editing, this
5825         class automatically 'closes' itself when it gets the enter key or
5826         loses focus.
5827         - Use the client rectangle when setting the trees scrollbars, so
5828         border style is taken into account.
5829         
5830 2006-07-14  Jackson Harper  <jackson@ximian.com>
5831
5832         * TreeNode.cs:
5833         * TreeView.cs: Make the editing work similar to MSs, firing the
5834         events correctly and ending edits correctly.
5835
5836 2006-07-14  Mike Kestner  <mkestner@novell.com>
5837
5838         * ToolBarButton.cs:
5839         * ToolBar.cs: layout restructuring and redraw enhancements to support
5840         formatting changes gracefully, like setting TextAlign, ImageList, 
5841         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5842         of the MS controls.  Things like flat toolbars ignoring button size
5843         but becoming constant sized at the largest button's size.  Normal
5844         toolbars with an image set cannot be shrunk smaller than the image,
5845         but text can be clipped/ignored.
5846         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5847         is zero.  Seems like DrawString should be smart enough to not put
5848         anything on screen though. Also trim labels and ellipsize at the char
5849         boundary, not word.
5850         Fixes #78711 and #78483.
5851
5852 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5853
5854         * FolderBrowserDialog.cs: Disable "New Folder" button and
5855           "New Folder" contextmenu menuitem if a folder like "My Computer"
5856           is selected.
5857
5858 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5859
5860         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5861         * FolderBrowserDialog.cs:
5862           - Use MWFConfig to store and read size and position settings
5863           - Added code to create a new folder (button or context menu).
5864             Use TreeView labeledit to change the name of the new folder.
5865
5866 2006-07-14  Jackson Harper  <jackson@ximian.com>
5867
5868         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5869         when the tree is scrolled we end editing.
5870
5871 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5872
5873         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5874           Down arrows
5875
5876 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5877
5878         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5879         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5880         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5881         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5882         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5883         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5884         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5885         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5886         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5887         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5888         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5889         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5890         ListViewItemSelectionChangedEventHandler.cs,
5891         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5892         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5893         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5894         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5895         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5896         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5897         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5898         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5899         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5900         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5901         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5902         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5903         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5904         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5905         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5906         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5907         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5908         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5909         WebBrowserNavigatingEventHandler.cs, 
5910         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5911
5912 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5913
5914         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5915         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5916         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5917         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5918         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5919         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5920         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5921         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5922         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5923         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5924         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5925         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5926         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5927         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5928         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5929         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5930         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5931         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5932         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5933         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5934         ListViewItemStates.cs, MaskFormat.cs: Added
5935
5936 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5937
5938         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5939         Patch from eno for bug 78558.
5940         
5941 2006-07-13  Jackson Harper  <jackson@ximian.com>
5942
5943         * TreeView.cs: When an edit is finished make sure that the
5944         selected node is visible.
5945         - When setting the top/bottom use the scrollbars is_visible, so
5946         everything will be set correctly even if the tree isn't visible
5947         yet.
5948
5949 2006-07-13  Jackson Harper  <jackson@ximian.com>
5950
5951         * ComboBox.cs: Revert the item->index part of my previous patch.
5952         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5953         the edit box has lost focus (duh).
5954         - Just make the edit box not visible when we get return, that will
5955         take the focus, which will call EndEdit
5956         * TreeNode.cs When we start editing, notify the treeview.
5957
5958 2006-07-12  Jackson Harper  <jackson@ximian.com>
5959
5960         * ComboBox.cs: Clear out old items before setting the item list.
5961         This prevents databound controls from having their items added
5962         twice.
5963         - Switch the combobox to use indices whereever possible instead of
5964         using Item's.  This allows usto navigate through lists that have
5965         more then one item with the same string value (ie a, b, b, a).
5966         - Scroll the listboxes scrollbar when a non visible item is
5967         highlighted
5968         - Allow keypress to cycle through all the possible values. For
5969         example if you have b1, b2, b3 and hold down the B key all the
5970         values will be cycled through.
5971         
5972 2006-07-12  Jackson Harper  <jackson@ximian.com>
5973
5974         * TextBoxBase.cs:
5975         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5976         this using the internal methods.
5977         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5978         controls to "override" OnGotFocus and change focus behavior if
5979         needed.
5980         - Same thing for LostFocus
5981         * ComboBox.cs: Pass off focus to the text control properly.
5982
5983 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5984
5985         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5986         * FolderBrowserDialog.cs: Almost a complete rewrite.
5987           - Better support for Environment.Specialfolders
5988           - Added support for MWFVFS
5989           - Made setting SelectedPath work
5990
5991 2006-07-12  Jackson Harper  <jackson@ximian.com>
5992
5993         * Control.cs: Optimze getting all the controls.
5994
5995 2006-07-11  Jackson Harper  <jackson@ximian.com>
5996
5997         * ContainerControl.cs: Override SETFOCUS in the container control,
5998         so that it is not selected on mouse click.
5999
6000 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6001
6002         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6003           Hopefully we will have a better way once all of focus is complete.
6004
6005 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6006
6007         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6008           a compile error with csc.
6009
6010 2006-07-11  Jackson Harper  <jackson@ximian.com>
6011
6012         * Control.cs: When hiding a control only select the next control
6013         if the current control was focused.
6014         - Don't handle enter/leave when setting/killing focus, this is
6015         done by the container control.
6016         - Remove is_selected, it's not needed anymore.
6017         - Add utility methods for selecting a child control, and for
6018         firing the Enter/Leave events.
6019         * ContainerControl.cs: When a control is activated fire the
6020         enter/leave events.
6021         - Don't wrap when processing the tab key, so that focus can be
6022         moved outside of the container.
6023         - Use the correct active control
6024
6025 2006-07-11  Jackson Harper  <jackson@ximian.com>
6026
6027         * ComboBox.cs: Remove some debug code that was blinding me.
6028         * UpDownBase.cs: These controls actually aren't implicit, they are
6029         visible to the user.
6030
6031 2006-07-10  Chris Toshok  <toshok@ximian.com>
6032
6033         * DataGrid.cs: move back to the is_adding boolean field.  god i
6034         hate this is_editing/is_adding/is_changing stuff.
6035
6036 2006-07-10  Chris Toshok  <toshok@ximian.com>
6037
6038         * DataGridTableStyle.cs: just check if the property type is bool.
6039         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6040         Don't use CanRenderType.
6041
6042         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
6043         if our text == NullText.  Remove CanRenderType.
6044
6045         * DataGridBoolColumn.cs: nuke CanRenderType.
6046
6047         * DataGrid.cs: reenable some code to end the current edit inside
6048         of set_CurrentCell.  This fixes the other 1.1.16 regression.
6049         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
6050         Also, remove the visible_row_count arg from CalcRowHeaders, since
6051         we don't need to worry about the actual height of the area.
6052
6053 2006-07-10  Chris Toshok  <toshok@ximian.com>
6054
6055         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
6056         mode, just return.
6057
6058         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
6059         the real sense of the IsInEditOrNavigateMode property (true =
6060         navigate, false = edit).  Also, update OnKeyPress to reflect this.
6061
6062         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
6063         column style exists, we still need to set its property descriptor
6064         to match up with our list manager.
6065
6066 2006-07-10  Chris Toshok  <toshok@ximian.com>
6067
6068         * ThemeWin32Classic.cs: implement the new row/header painting
6069         approach.  The parent row painting will likely go away and
6070         replaced with label controls, but the rest seems to work ok (and
6071         efficiently).
6072
6073         * Theme.cs: change the way we draw datagrid rows.  we don't draw
6074         the row headers as a block now.  Instead we draw them in the
6075         normal draw-row loop.  Add some calls for drawing parent rows and
6076         relation rows.
6077
6078         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
6079         a default table style.  Set the defaults from ThemeEngine.Current,
6080         not SystemColors.  Fix lots of misc issues with property setters.
6081
6082         * DataGrid.cs: move loads of style information out of this class
6083         as it's being duplicated with DataGridTableStyle.  keep track of a
6084         special DataGridTableStyle for the properties we used to mirror
6085         here.  Switch all the style properties to access this table style
6086         instead of instance fields of this class.  Also add a internal
6087         class to represent parent rows (more needs to be stored here, like
6088         the selection state from the parent table, as well as the
6089         expansion state.)  Also, for datasources with relations, do the
6090         right thing for collapse/expand, and add support for the
6091         navigation/parent row buttons.
6092
6093         Lastly, fix the crash in the 1.1.16 build.
6094
6095         * GridTableStylesCollection.cs: make the explicit interface
6096         implementations call the class's methods as opposed to duplicating
6097         them.
6098
6099         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
6100         0 so the text doesn't jump around when we move the cursor.
6101
6102 2006-07-10  Jackson Harper  <jackson@ximian.com>
6103
6104         * TextBoxBase.cs:
6105         * ListBox.cs: Match MS's ToString (this makes debugging focus
6106         stuff infinitely easier).
6107
6108 2006-07-10  Jackson Harper  <jackson@ximian.com>
6109
6110         * Control.cs (SelectNextControl): When checking the control's
6111         parent use this instead of ctrl.parent so that null can be passed
6112         to SelectNextControl. (I have unit tests for this).
6113         - Remove unused var.
6114
6115 2006-07-10  Chris Toshok  <toshok@ximian.com>
6116
6117         * CurrencyManager.cs: correct one regression, the removal of the
6118         finalType field.  Also, add a MonoTODO on CanAddRows, implement
6119         Refresh() correctly, and fix some event emission in
6120         ListChangedHandler.
6121
6122 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6123
6124         * FileDialog.cs: Don't use brackets for new folders if they exist
6125           under *nix. Instead use -(number of existing folders +1).
6126
6127 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6128
6129         * FileDialog.cs:
6130           - Fixed really nasty bug #78771
6131           - Don't block the whole GUI when reading directories with a lot of
6132             entries. Use an other thread instead and call BeginInvoke to
6133             update the ListView in MWFFileView
6134
6135 2006-07-07  Chris Toshok  <toshok@ximian.com>
6136
6137         * Control.cs (Dispose): release any Capture when disposing.
6138
6139 2006-07-07  Chris Toshok  <toshok@ximian.com>
6140
6141         * LinkLabel.cs (Select): if we chain up to the parent, set
6142         focused_index to -1 so we'll search for the first available link
6143         the next time the user tabs into us.  Also, if the direction is
6144         backward and focused_index == -1, start the search from the last
6145         element.
6146
6147 2006-07-07  Chris Toshok  <toshok@ximian.com>
6148
6149         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6150         is beyond the end of the text, don't do anything.
6151         (CreateLinkPieces): set our ControlStyles.Selectable based on
6152         whether or not we have any links.
6153         (Link.Invalidate): use a loop instead of foreach.
6154         (Link.set_Start): null out owner.sorted_links so it'll be
6155         recreated by CreateLinkPieces.
6156
6157 2006-07-06  Chris Toshok  <toshok@ximian.com>
6158
6159         * LinkLabel.cs: revert the SetStyle change.
6160
6161 2006-07-06  Chris Toshok  <toshok@ximian.com>
6162
6163         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6164         (OnEnableChanged): s/Refresh/Invalidate
6165         (OnGotFocus): if we have a focused index already, refocus it (so
6166         if we mouse out/in to the window it'll focus the right link).
6167         (OnKeyDown): move the tab handling out of here.
6168         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6169         when we lose focus.
6170         (OnMouseDown): don't Capture here - Control handles it.  Also,
6171         focus the active link.
6172         (OnMouseUp): don't deal with Capture.
6173         (OnPaintBackgroundInternal): remove.
6174         (OnTextAlignChanged): CreateLinkPieces before calling the
6175         superclass's method.
6176         (OnTextChanged): call CreateLinkPieces before calling superclass's
6177         method.
6178         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6179         move around.
6180         (Select): implement this, moving the selection between different
6181         links, and call parent.SelectNextControl if we don't have another
6182         link to focus in the given direction.
6183         (CreateLinkPieces): call Invalidate instead of Refresh.
6184         
6185 2006-07-06  Chris Toshok  <toshok@ximian.com>
6186
6187         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6188         new LinkLabel internals.
6189
6190         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6191         over pieces looking for active/focused/etc links.  also, deal with
6192         runs of text (and links) with embedded \n's in them, and use
6193         MeasureCharacterRanges instead of MeasureString to figure out the
6194         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6195         two-step.
6196
6197 2006-07-04  Jackson Harper  <jackson@ximian.com>
6198
6199         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6200         XKB or key auto repeat, do it manually.  Without key auto repeat,
6201         when a key is held down we get key press, key release, key press,
6202         key release, ... with auto repeat we get key press, key press, key
6203         press ..., and then a release when the key is actually released.
6204
6205 2006-07-03  Jackson Harper  <jackson@ximian.com>
6206
6207         * TabControl.cs:
6208         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6209         rules, they are always control color regardless of the background
6210         color.
6211
6212 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6213
6214         * FileDialog.cs: Added internal class MWFConfig.
6215           Removed Registry support and replaced it with support for the new
6216           MWFConfig class. See MWFConfig comments for more information.
6217
6218 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6219
6220         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6221           rectangle. Added some patches from eno from bug #78490 and fixed
6222           the arrow position for small up and down CPDrawScrollButtons.
6223
6224 2006-06-30  Jackson Harper  <jackson@ximian.com>
6225
6226         * InternalWindowManager.cs: Remove some debug code.
6227         * Form.cs: When an MdiParent is set to null, the window is
6228         "detatched" and becomes a normal window.
6229         * MdiClient.cs: Don't bring the new child form to the front until
6230         it is activated (setting it as active does this), this makes the
6231         previously active forms titlebar get redrawn as inactive.
6232
6233 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6234
6235         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6236           with later controls
6237
6238 2006-06-29  Mike Kestner  <mkestner@novell.com>
6239
6240         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6241         arrow in keynav state.  Fixes #78682.
6242
6243 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6244
6245         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6246           order (fixes #78393)
6247
6248 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6249
6250         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6251           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6252           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6253           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6254           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6255           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6256           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6257           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6258           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6259           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6260           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6261           values)
6262
6263 2006-06-28  Mike Kestner  <mkestner@novell.com>
6264
6265         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6266
6267 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6268
6269         * PropertyGrid.cs,
6270           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6271           item lines from other area (It also makes BackColor consistent and
6272           compatible with .NET). Fixed bug #78564.
6273
6274 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6275
6276         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6277         Patch from Eno for #78555.
6278
6279 2006-06-27  Chris Toshok  <toshok@ximian.com>
6280
6281         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6282
6283         * DataGridColumnStyle.cs: same.
6284
6285         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6286         
6287         * DataGridDrawingLogic.cs: nuke.
6288
6289 2006-06-27  Chris Toshok  <toshok@ximian.com>
6290
6291         * DataGridTableStyle.cs: clean up the constructors, and build the
6292         list of child relations for this table.  I have no idea if this is
6293         where we should be doing it (it probably isn't), but since we're
6294         already iterating over the properties..
6295
6296         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6297         struct and array for keeping track of row information, similar to
6298         what's shown in a hack on
6299         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6300
6301         * Theme.cs: be consistent about the naming of DataGrid methods,
6302         prefering ColumnWidths and RowHeights over columnsWidths and
6303         RowsHeights.
6304
6305         * ThemeWin32Classic.cs: same, and also add support for variable
6306         sized rows (and the +/- expansion icons for related rows).
6307
6308 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6309
6310         * TextBoxBase.cs: Applied Eno's patch from #78660
6311
6312 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6313
6314         * Form.cs (ScaleCore): We don't want to scale our form if it's
6315           state is minimized or maximized, but we still need to scale our
6316           child windows. Also, added try/finally block to ensure layout
6317           gets reset (Fixes #78697)
6318
6319 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6320
6321         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6322
6323 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6324
6325         * Form.cs: Fixed c+p error and added check to resize form if minimum
6326           size is bigger than current size (Fixes #78709)
6327
6328 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6329
6330         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6331
6332 2006-06-26  Mike Kestner  <mkestner@novell.com>
6333
6334         * ComboBox.cs: only do Keypress handling in the combo when there  
6335         are items in the collection. Fixes #78710.
6336
6337 2006-06-26  Chris Toshok  <toshok@ximian.com>
6338
6339         * Binding.cs: make this work bi-directionally.  also, clear up
6340         other mixups between Push/Pull Data (e.g. we're supposed to pull
6341         data when validating).
6342
6343         * BindingManagerBase.cs: trim some fully qualified collection
6344         types.
6345
6346         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6347
6348 2006-06-23  Chris Toshok  <toshok@ximian.com>
6349
6350         * PropertyManager.cs: It appears (according to the unit tests)
6351         that PropertyManager doesn't use
6352         PropertyDescriptor.AddValueChanged to track propery value changes
6353         in its datasource, but uses the same scheme as Binding, where it
6354         looks for a <Property>Changed event and binds to it.
6355
6356         Also, according to the docs, IsSuspended always returns false for
6357         a property manager with a non-null datasource.
6358
6359 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6360
6361         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6362           need to update the actual DialogResult. (Fixes #78613)
6363
6364 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6365
6366         * Form.cs (ShowDialog): Release any captures before running the
6367           new message pump (fixes #78680)
6368
6369 2006-06-22  Mike Kestner  <mkestner@novell.com>
6370
6371         * ListView.cs: Layout column widths properly in details mode even 
6372         if HeaderStyle.None is set.  Fixes #78691.
6373
6374 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6375
6376         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6377
6378 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6379
6380         * Control.cs (ContainsFocus): Using new driver method to get focused
6381           window, instead of trying to use internal tracking var, which can
6382           recursion issues (Fixes #78685)
6383         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6384           XplatUIWin32.cs: Added GetFocus method to return focused window
6385
6386 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6387
6388         * ColorDialog.cs: when the mouse button is pressed inside the color
6389         matrix, don't let the cursor move out of it until the button is
6390         released, which is the behavior on windows. Changed 'colours' by
6391         'colors' to use the same word consistently.
6392
6393 2006-06-21  Chris Toshok  <toshok@ximian.com>
6394
6395         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6396         child relation and back, using a stack).  Also, remove
6397         GetDataSource and the code that calls it - it's not needed.  Also,
6398         track CurrencyManager.ListName's removal.
6399
6400 2006-06-21  Chris Toshok  <toshok@ximian.com>
6401
6402         * CurrencyManager.cs: push some of the original type checking from
6403         BindingContext.CreateBindingManager to here, and remove some of
6404         the finalType stuff.  Need more tests to make sure I've got the
6405         ListName part right, and we might need more in SetDataSource.
6406
6407         * PropertyManager.cs: add a ctor that takes just the datasource,
6408         and no property name.  Make SetDataSource work with a null
6409         property_name, and make Current return the data_source if the
6410         property descriptor is null.  this makes 'string foo = "hi";
6411         BindingContext[foo].Current' return "hi" as it should.
6412
6413         * RelatedCurrencyManager.cs: make this code more generic - there's
6414         no reason the parent manager has to be CurrencyManager, and
6415         there's no reason to pass the DataRelation.  It suffices to use a
6416         BindingManagerBase and PropetyDescriptor.
6417
6418         * RelatedPropertyManager.cs: make a similar change here.
6419         
6420         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6421         flower I knew it could be.
6422
6423 2006-06-20  Chris Toshok  <toshok@ximian.com>
6424
6425         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6426         data in the source has changed and we need to update the control,
6427         so s/PullData/PushData.
6428
6429         * CurrencyManager.cs: Refresh is meant to update the control from
6430         data in the datasource.  So, s/PullData/PushData.
6431
6432         * BindingContext.cs: add more ugliness (we weren't handling the
6433         case where data_source = DataTable and data_member = column_name).
6434
6435         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6436         from the perspective of the datasource.  PullData pulls from the
6437         control, PushData pushes to the control.
6438
6439 2006-06-20  Chris Toshok  <toshok@ximian.com>
6440
6441         * BindingContext.cs: rewrite the CreateBindingManager code to
6442         handle navigation paths more or less properly.  This could
6443         definitely stand some more work, in particular to push the
6444         recursion up to the toplevel.  But that relies on fixes in other
6445         places (System.Data comes to mind).
6446
6447         Also, move to a flat hashtable (and encode the twolevel nature of
6448         the dictionary into the hash key).  This lets us implement the
6449         IEnumerable.GetEnumerator method.
6450
6451         * RelatedCurrencyManager.cs: new class.  Update our view based on
6452         our relation and our parent CurrencyManager's position.
6453
6454         * CurrencyManager.cs: split out some logic from the ctor into
6455         SetView, so it can be called from the new RelatedCurrencyManager
6456         subclass.
6457
6458         * RelatedPropertyManager.cs: new class.  Update our datasource
6459         based on the position of our parent CurrencyManager.
6460
6461         * PropertyManager.cs: split out some logic from the ctor into
6462         SetDataSource, so it can be called from the new RelatedDataSource
6463         subclass.  Also, make the Current getter return the value
6464         of the PropertyDescriptor, not the data_source.
6465
6466         * Binding.cs: no need to duplicate the string splitting code here.
6467
6468 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6469
6470         * Control.cs:
6471           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6472             of the control is not altered, even though  we might be changing the
6473             internal state of the control (#78458)
6474           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6475             OnEnabledChanged, to allow easy altering of any child window state
6476           - OnEnabledChanged: Added code to enable/disable driver window state
6477           - OnParentEnabledChanged: Instead of firing the event, call 
6478             OnEnabledChanged, which will fire the event and also a) set driver
6479             window state and pass the enabled state to any grandchildren (#78458)
6480
6481 2006-06-19  Jackson Harper  <jackson@ximian.com>
6482
6483         * InternalWindowManager.cs: We don't set the cursor explicitly
6484         thats done via the response to NCHITTESTs.
6485         - Don't need to adjust for titlebar heights anymore, the
6486         coordinates are coming in the correct coordinates now (see peters
6487         last patch).
6488
6489
6490 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6491
6492         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6493           being translated relative to whole window, instead of client window.
6494           That caused broken offsets on mouseclick (and caused gas for our
6495           InternalWindowManager)
6496
6497 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6498
6499         * TextControl.cs:
6500           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6501           - Undo(): Added replay of cursor move on DeleteChars action; added
6502             calling Undo() again if a recorded cursor move is invalid (to
6503             ensure that some action is performed on Undo)
6504         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6505
6506 2006-06-16  Jackson Harper  <jackson@ximian.com>
6507
6508         * MdiClient.cs: Instead of just sizing maximized windows when
6509         there is a resize we also have to adjust the Y of minimized
6510         windows, so they stay pinned to the bottom of the mdi container.
6511         - Eliminate separate tracking of the active control, we can just
6512         get this from the controls collection.
6513         - Paint the decorations for the newly activated titlebar so we get
6514         a pretty blue bar.
6515         * InternalWindowManager.cs:
6516         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6517         even if they are a tool window.
6518         
6519 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6520
6521         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6522           undo buffer, these can happen when text was deleted and the cursor
6523           was recorded first. Since we will also have a recorded cursor
6524           after the delete this is not an issue. (Fixes #78651)
6525
6526 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6527
6528         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6529           instead properly track control states internally (allows us to
6530           remove is_selected from Control)
6531
6532 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6533
6534         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6535         whose width is not a multiple of 8.
6536
6537 2006-06-13  Jackson Harper  <jackson@ximian.com>
6538
6539         * MdiClient.cs:  Only maximize the next child if the current one
6540         is maximized.
6541
6542 2006-06-13  Chris Toshok  <toshok@ximian.com>
6543
6544         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6545         modified.  Also, guard against grid or grid_drawing being null in
6546         Invalidate.
6547
6548         * DataGrid.cs: Reformat tons of getters/setters.  In the
6549         DataMember setter, just call SetNewDataSource instead of
6550         duplicating some of its functionality.  In SetNewDataSource, don't
6551         check ListManager for null, since the property getter creates the
6552         object if needed.
6553
6554         * DataGridTableStyle.cs: don't set TableStyle or call
6555         SetDataGridInternal on the column here, it's done in
6556         GridColumnStylesCollection.Add.
6557
6558         * GridColumnStylesCollection.cs: fix all the explicit interface
6559         implementations to just call our methods.  Nuke AddInternal() and
6560         move the body of it to Add().  Also, add a call to
6561         column.SetDataGridInternal to Add().
6562
6563         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6564         base()+duplicate code.  Also, use the Format property instead of
6565         format to generate an Invalidate ala MS.  Lastly, create the
6566         textbox here, unconditionally.
6567         (set_Format): call Invalidate.
6568         (get_TextBox): no need to call EnsureTextBox.
6569         (Commit): remove the message box.
6570         (Edit) remove the call to EnsureTextBox.
6571         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6572         (EnterNullValue): no need to check textbox for null.
6573         (HideEditBox): no need to check textbox for null.
6574         (SetDataGridInColumn): add the textbox to the grid's controls.
6575         (EnsureTextBox): nuke.
6576         
6577 2006-06-13  Jackson Harper  <jackson@ximian.com>
6578
6579         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6580         and redraw the buttons when needed. Unhook when the window is
6581         unmaximized.
6582         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6583         needs this so that it can redraw its buttons when the menu is
6584         repainted.
6585         * InternalWindowManager.cs:
6586         * Form.cs: The method order has changed for DrawMaximizedButtons,
6587         so that it can be a PaintEventHandler.
6588         
6589 2006-06-13  Jackson Harper  <jackson@ximian.com>
6590
6591         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6592         window is activated and maximized, even if it wasn't before.
6593         - When  a new window is activated repaint the decorations of the
6594         old one, so that it no longer has the Active "look" (the blue
6595         titlebar).
6596         * InternalWindowManager.cs: Open up CreateButtons to base classes
6597         so they can recreate the buttons on state changes.
6598         - If a window is maximized give it all three buttons
6599         * MdiWindowManager.cs: Create the titlebar buttons when the state
6600         is changed, this is needed because a toolwindow will not have all
6601         three buttons until it is maximized.
6602
6603 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6604
6605         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6606           Fixed bug #78609.
6607
6608 2006-06-12  Jackson Harper  <jackson@ximian.com>
6609
6610         * KeysConverter.cs: Make sure we handle the Ctrl special case
6611         if its the only key.
6612         
6613 2006-06-12  Jackson Harper  <jackson@ximian.com>
6614
6615         * Theme.cs: Add a method to get the size of a managed window
6616         toolbar button.
6617         * InternalWindowManager.cs: Remove the ButtonSize property, this
6618         should be retrieved from the theme.
6619         * MdiWindowManager.cs: Get the button size from the theme
6620         * ThemeWin32Classic.cs: Make the method to get the managed window
6621         titlebar button size public.
6622         - Handle the different button sizes of maximized toolwindows
6623         (should match any maximized window).
6624         - Get the titlebar height from the theme, not the WM (which gets
6625         it from the theme).
6626
6627 2006-06-12  Jackson Harper  <jackson@ximian.com>
6628
6629         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6630         event down to the mdi window manager.
6631         - Expose some extra stuff to base classes
6632         - Make sure to end the Capture on an NC Mouse up, so that we can
6633         get double clicks properly, and the sizing doens't stick.
6634         - When doing PointToClient contain it in the workable desktop
6635         area, this prevents windows from changing size when the cursor is
6636         pulled outside of the working area while sizing.
6637         * MdiWindowManager.cs: When we get a double click maximize the
6638         window.
6639         - Reset the cursor after handling mode changes.
6640
6641 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6642
6643         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6644           current desktop, instead of just assuming a 0, 0 origin. This
6645           is needed for our internal window manager, to know the top
6646           margin of the desktop
6647
6648 2006-06-12  Chris Toshok  <toshok@ximian.com>
6649
6650         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6651         we need this to get rid of the selected background in the bool
6652         column.
6653         (CancelEditing): move the ConcedeFocus call to above the Abort
6654         call.  Also, set is_changing to false and invalidate the row
6655         header if we were changing before.
6656         (ProcessKeyPreviewInternal): remove, since noone outside this
6657         class calls it anymore.  Roll the code into ProcessKeyPreview.
6658         (EndEdit): remove the internal version.
6659         (InvalidateCurrentRowHeader): make private.
6660
6661         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6662         Keys.Escape handling (and with it the last call to
6663         DataGrid.EndEdit from outside the class.)
6664
6665
6666 2006-06-12  Chris Toshok  <toshok@ximian.com>
6667
6668         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6669         (OnKeyPress): set isedit to true.
6670         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6671         already handled by the grid.
6672
6673         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6674         right.  ugh.
6675         (set_DataSource): SetDataSource always returns true, so stop
6676         putting it in an if statement.
6677         (EndEdit): get rid of some {}'s
6678         (ProcessGridKey): return true in case Keys.Escape.
6679         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6680         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6681         PositionChanged, stopped connecting to CurrentChanged.
6682         (GetDataSource): simplify this a bunch.
6683         (SetDataSource): change return type from bool to void.
6684         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6685         to this, and make sure we don't set ListManager.Position inside
6686         set_CurrentCell.
6687         (OnListManagerItemChanged): if we're passed an actual index,
6688         redraw that row.
6689
6690         * CurrencyManager.cs (set_Position): don't call PullData here.
6691
6692 2006-06-09  Jackson Harper  <jackson@ximian.com>
6693
6694         * TreeNode.cs:  Recalculate the visible order before doing the
6695         Expand/Collapse Below calls, because those calls generate an
6696         expose.
6697         - Reduce calls to the TreeView property, which is mildly expensive
6698         by using a local var.
6699         * Form.cs: Layout the MDI child windows when creating the parent
6700         form.
6701         - Don't use the internal constructor anymore
6702         * MdiClient.cs: use the parent form width/height (if available)
6703         when laying out the child windows, we do this because the
6704         mdiclient isn't docked yet when the initial layout is done.
6705         - Don't need an internal constructor anymore.
6706
6707 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6708
6709         * FileDialog.cs: handle access errors when trying to create a folder
6710         or changing to a directory. No need to initialize out parameters.
6711
6712 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6713
6714         * FileDialog.cs: Append a number when creating a new folder if the
6715           folder already exists (use parenthesis instead of square brackets)
6716
6717 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6718
6719         * FileDialog.cs:
6720           - Disabled registry support for windows and added better registry
6721             error checking for other systems (need to investigate why it
6722             works perfectly on my system)
6723           - If a folder already exist show an error MessageBox instead of
6724             trying to create an indexed name.
6725           - Fixed a non intentional typo.
6726
6727 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6728
6729         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6730
6731 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6732
6733         * FileDialog.cs: When creating a new folder don't crash if the
6734           folder already exists.
6735
6736 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6737
6738         * FileDialog.cs: Allmost a complete rewrite.
6739           - added a "virtual" file system that handles the differences
6740             between unix and windows file systems (especially the directory
6741             structure). Moved most of the directory and file handling code
6742             into the vfs.
6743             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6744             UnixFileSystem and FSEntry.
6745           - Recently used folder/directory, size, location and used file names
6746             (file name ComboBox) are now stored in the registry and get read
6747             before the dialog shows up (fixes part 6 of bug #78446).
6748           - Creation of new folders/directories is now possible (context menu
6749             or ToolBar). Added TextEntryDialog for this that fills in the gap
6750             until ListView.LabelEdit works.
6751           - Fixed cursor handling (bug #78527) and focus handling for
6752             PopupButtonPanel
6753           - Various "Search in" ComboBox enhancements. The content of the
6754             dropdown listbox now almost matches ms.
6755           - Changed the behaviour when the user switches to SpecialFolder
6756             Recent to show the ListView in View.Details.
6757           - Beside using the ToolBar to change the View property of the
6758             file ListView it is now possible to use the context menu too.
6759
6760 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6761
6762         * ComboBox.cs: Don't create a new ObjectCollection when an item
6763           gets inserted. Just insert the item in the existing object_items
6764           ArrayList.
6765
6766 2006-06-08  Jackson Harper  <jackson@ximian.com>
6767
6768         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6769         that the treeview and root node checks are done also, this fixes a
6770         regression i caused in the unit tests.
6771
6772 2006-06-07  Wade Berrier <wberrier@novell.com> 
6773
6774         * RichTextBox.cs: More ISO8859-1 -> unicode
6775
6776 2006-06-07  Mike Kestner  <mkestner@novell.com>
6777
6778         * ComboBox.cs : use items to hold highlight/selection so that
6779         collection insertions don't require synchronization.
6780
6781 2006-06-07  Jackson Harper  <jackson@ximian.com>
6782
6783         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6784         routine.  We now always keep the sized edge at the cursor instead
6785         of computing movement and adjusting rects.  There is one buglet
6786         with this method though when the cursor is moved over area that
6787         the window can not expand too (such as the toolbars on the desktop).
6788
6789 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6790
6791         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6792         here. Fixes crash on startup in AlbumSurfer.
6793
6794 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6795
6796         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6797           values
6798
6799 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6800
6801         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6802         statement to avoid calling XNextEvent which will block if another thread
6803         took the event that we were expecting. Fixes bug #78605.
6804
6805 2006-06-07  Mike Kestner  <mkestner@novell.com>
6806
6807         * ListView.cs : isolated checkbox clicking from the selection logic.
6808         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6809
6810 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6811
6812         * Form.cs: Check that the value passed to Form.DialogResult
6813         is a valid enum value.
6814
6815 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6816
6817         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6818         Computer'. Clicking it in the network view goes to 'My Computer'.
6819         Added CIFS filesystem type. Display the mount point of filesystems.
6820         Avoid duplicate mount points (happens for me with CIFS);
6821
6822 2006-06-06  Jackson Harper  <jackson@ximian.com>
6823
6824         * InternalWindowManager.cs: Draw the maximized windows buttons
6825         when resizing.
6826
6827 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6828
6829         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6830         all other dialogs. Fixes bug #78585.
6831
6832 2006-06-06  Mike Kestner  <mkestner@novell.com>
6833
6834         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6835         Only invalidate checkbox on checkstate changes to avoid flicker.
6836         * ListBox.cs : avoid unselect/select when clicking selected item.
6837         avoid reselection flicker for already multiselected items.
6838         Fixes #78382.
6839
6840 2006-06-06  Jackson Harper  <jackson@ximian.com>
6841
6842         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6843         the parent form so that the menu is removed if needed.
6844
6845 2006-06-06  Mike Kestner  <mkestner@novell.com>
6846
6847         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6848         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6849
6850 2006-06-06  Mike Kestner  <mkestner@novell.com>
6851
6852         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6853
6854
6855 2006-06-06  Jackson Harper  <jackson@ximian.com>
6856
6857         * Control.cs: Use the property (instead of the field) to get the
6858         default cursor so it is instantiated correctly.
6859         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6860         resizes so we need to manually repaint the window decorations here.
6861         - Set the titlebar button locations as soon as they are created,
6862         otherwise they are not set correctly on win32.
6863         
6864 2006-06-06  Chris Toshok  <toshok@ximian.com>
6865
6866         * CurrencyManager.cs (set_Position): call PullData before
6867         OnCurrentChanged.
6868         (AddNew): after calling IBindingList.AddNew, update our
6869         listposition, and call OnCurrentChanged/OnPositionChanged (without
6870         calling PullData).
6871         (OnCurrentChanged): remove the call to PullData from here.
6872         (OnItemChanged): remove the call to PushData from here.
6873         (OnPositionChanged): change the test from == null to != null to
6874         match the other methods.
6875         (ListChangedHandler): the grossest part of the patch.  Implement
6876         this such that it passes the unit tests in CurrencyManagerTest and
6877         the output more or less matches that of MS's implementation.
6878  
6879 2006-06-06  Mike Kestner  <mkestner@novell.com>
6880
6881         * ListView.cs : only update check state on single click.
6882         * ThemeWin32Classic.cs : fix focus drawing for details view without
6883         fullrowselect.  Fixes #78454.
6884         * XplatUIX11.cs : fix for double click emission.
6885
6886 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6887
6888         * PropertyGridView.cs : Applied Atsushi's patch to fix
6889         font dialog bug  (#78197).
6890
6891 2006-06-05  Jackson Harper  <jackson@ximian.com>
6892
6893         * TreeNode.cs: Compute the next node for expanding/collapsing
6894         correctly. We now factor in nodes without a NextNode
6895         correctly. (Fixes somes cases in nunit-gui).
6896         * InternalWindowManager.cs: Set the bounds when updating the
6897         virtual position of a tool window.
6898         
6899 2006-06-05  Chris Toshok  <toshok@ximian.com>
6900
6901         * DataGrid.cs: rename cached_currencymgr to list_manager.
6902         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6903         some.
6904         (CurrentRow, CurrentColumn): single accessors so we can make the
6905         cursor movement code a lot easier to understand.
6906         (CurrentRowIndex): implement this in terms of CurrentRow.
6907         (BeginEdit): clean this up a bit.
6908         (CancelEditing): sort out the is_editing/is_changing/is_adding
6909         stuff a little.
6910         (EndEdit): minor changes.
6911         (OnKeyDown): add a comment about a (most likely) unnecessary
6912         check.
6913         (OnMouseDown): cancel editing when we click on a row header.  And
6914         use the CurrentRow setter, not CurrentCell.
6915         (ProcessDialogKey): directly call ProcessGridKey.
6916         (UpdateSelectionAfterCursorMove): factor out this common block of
6917         code (it's used everywhere that we move the cursor by updating row
6918         or column).
6919         (ProcessGridKey): pretty substantial overhaul.  Use the
6920         CurrentRow/CurrentColumn properties to make the code a lot more
6921         readable.  Only use the CurrentCell property when we have to
6922         modify both row and column at once.  Tab behavior is still broken,
6923         and Delete is untested.
6924         (Select): if we have no selected rows, set selection_start to
6925         @row.
6926         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6927         with CurrentCell as the arg, so drop the arg and rename it.
6928
6929         * DataGridColumnStyle.cs: clean up the constructors a little, and
6930         drop CommonConstructor().
6931
6932         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6933         actually get notified when the user hits it.
6934         (ProcessKeyMessage): *substantially* simplify this method.
6935         There's no reason (that I can see) for the textbox to be making
6936         calls into the datagrid at all.  Remove all of them but the ones
6937         for Enter handling.  those will take some more work.
6938
6939         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6940         calling HideEditBox.
6941         (HideEditBox): if we have an active textbox, render it invisible
6942         without causing a re-layout of the datagrid.
6943
6944 2006-06-05  Mike Kestner  <mkestner@novell.com>
6945
6946         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6947         collection changes by resetting it to Items[0].  Fixes #78587.
6948
6949 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6950
6951         * MessageBox.cs: if the height of the text is larger than the icon_size,
6952         use that. Fixes bug #78575.
6953
6954 2006-06-05  Jackson Harper  <jackson@ximian.com>
6955
6956         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6957         node is basically responsible for drawing its entire horizontal
6958         area.  When drawing a node it draws its parent node lines if
6959         needed.
6960         - Adjust the clip area to the viewport rectangle
6961         - Fix Left/Right key handling to match MS. (It expand/collapses
6962         and moves to parents/first child but does not move selection to
6963         sibling nodes).
6964         - Fix SetTop to work with new bound calculation code
6965         - When scrollbars are no longer needed we need to reset scrolling
6966         vars and recalculate the visible order so the redraw is correct
6967         * TreeNode.cs: We can't expand/collapse nodes with no children.
6968
6969 2006-06-03  John Luke  <john.luke@gmail.com> 
6970
6971         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6972         so the colors work without dev packages
6973         
6974 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6975
6976         * Control.cs 
6977           - Select: Implemented to just use activate. Seems to match MS 
6978             behaviour closest. Documented to only do actual control walking 
6979             based on it's parameters if in a container control so I moved 
6980             the code there.
6981           - Removed selection check logic from our internal Select() method
6982         * ContainerControl.cs:
6983           - Select: Moved selection logic from Control here, since MS documents
6984             that containers obey the bool arguments. No longer calling base
6985
6986 2006-06-02  Jackson Harper  <jackson@ximian.com>
6987
6988         * TreeView.cs: If the selected node isn't changed when we get
6989         focus update the previously selected node so that we see the
6990         selection box.
6991
6992 2006-06-02  Mike Kestner  <mkestner@novell.com>
6993
6994         * ComboBox.cs: restructure grab and general mouse event handling.
6995         Make the composite control raise mouse events like it was a single
6996         control for leaves/enters/motion/up/down events.  fix dropdown list
6997         coordinate mangling and refactor it into the scrollbar subclass to
6998         reduce code duplication.  Fixes #78282 #78361 and #78457.
6999
7000 2006-06-02  Mike Kestner  <mkestner@novell.com>
7001
7002         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7003         automatically in the Control.WndProc.
7004
7005 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7006
7007         * FileDialog.cs: fix crash when running SharpChess, which sets the
7008         FilterIndex to 2 with only one Filter.
7009
7010 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7011
7012         * ToolBar.cs: add SizeSpecified property.
7013         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7014         try to figure out our real size, otherwise fallback to what the
7015         container says.
7016
7017 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7018
7019         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7020         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7021           up the event
7022
7023 2006-06-01  Mike Kestner  <mkestner@novell.com>
7024
7025         * ListView.cs: revamp the focus management in ListView.  It still
7026         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7027         better than not handling focus at all.  Will revisit when pdb feels
7028         the general focus handling is solid.  Fixes #78526.
7029
7030 2006-06-01  Jackson Harper  <jackson@ximian.com>
7031
7032         * TreeView.cs: Set the default border style in the constructor.
7033         - Move painting to use OnPaintInternal instead of capturing
7034         WM_PAINT, this is the correct way of doing things
7035         - UpdateBelow shouldn't invalidate the scrollbar area
7036         - Cap the top on update below in case the node was above the top
7037         of the viewport rectangle.
7038         - ExpandBelow and Collapse below need to obey Begin/End Update.
7039         * TreeNode.cs: Make is_expanded internal so the treenode
7040         collection can change it without firing the whole event chain.
7041         * TreeNodeCollection.cs: When clearing all the child nodes make
7042         sure to recalc the visible order.
7043         - Improve algo for remove the top node
7044
7045 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7046
7047         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
7048           SendMessage directly calling window procedures, which in turn might
7049           call SetFocus()
7050
7051 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
7052
7053         * Control.cs: Don't handle WM_SETFOCUS if the same window already
7054           has focus (works around X11 sending a FocusIn after our SetFocus)
7055         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
7056
7057 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
7058
7059         * Mime.cs: Fix for the NET_2_0 build.
7060           NameValueCollection needs StringComparer now.
7061
7062 2006-05-31  Chris Toshok  <toshok@ximian.com>
7063
7064         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
7065         return (via an out parameter) the starting X of the column.
7066         (UpdateVisibleColumn): track change to FromPixelToColumn.
7067         (HitTest): add a ColumnResize case here.
7068         (DrawResizeLine): new function, probably poorly named.
7069
7070         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
7071         only need to keep one reference.
7072         (set_ListManager): same.
7073         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
7074         Also, add support for HitTestType.ColumnResize.
7075         (OnMouseMove): add column resize behavior here, and change the
7076         cursor to the correct one as we move around the datagrid.
7077         (OnMouseUp): terminate the column resize if we're resizing.
7078         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
7079         for the current cell.
7080         (ConnectListManagerEvents): use cached_currencymgr.
7081         (DisconnectListManagerEvents): fill this in, using
7082         cached_currencymgr.
7083         (SetCurrentCell): remove cached_currencymgr_events handling.
7084         (SetDataMember): only call DisconnectListManagerEvents if
7085         cached_currencymgr is != null.
7086         (SetDataSource): same.
7087         (OnListManagerCurrentChanged): cached_currencymgr_events ->
7088         cached_currencymgr.
7089
7090 2006-05-31  Jackson Harper  <jackson@ximian.com>
7091
7092         * BindingManagerBase.cs: Remove somedebug code that creeped into
7093         SVN.
7094         * TreeNode.cs: We get the indent level dynamically right now, so
7095         don't track it as a member.
7096         * TreeNodeCollection.cs: Make sure all nodes added to the list
7097         have parents, treeviews/topnodes setup properly.
7098         - Don't attempt to track indent level.
7099
7100 2006-05-30  Jackson Harper  <jackson@ximian.com>
7101
7102         * BindingContext.cs: Create the currency manager tables here.
7103         This allows us to more easily create null tables (when bad data
7104         members are used), and more easily create related currency
7105         managers.
7106         * CurrencyManager.cs: All the table creation stuff is done by the
7107         binding context now.
7108         - Current should throw an exception if listposition is -1.
7109         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
7110         been bound yet.
7111
7112 2006-05-30  Mike Kestner  <mkestner@novell.com>
7113
7114         * ListView.cs: allow reexpansion of zero-width column headers.
7115         Fixes #78528.
7116
7117 2006-05-28  Chris Toshok  <toshok@ximian.com>
7118
7119         * CurrencyManager.cs (get_Current): after the late binding
7120         listposition = -1 fix, we need to guard against it here and return
7121         null, otherwise we raise an exception (which is swallowed
7122         elsewhere, and breaks datagrid databinding.)
7123
7124 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7125
7126         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7127           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7128
7129 2006-05-26  Jackson Harper  <jackson@ximian.com>
7130
7131         * ControlPaint.cs:
7132         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7133         values, it's faster and it's all we care about (we don't care if
7134         the names aren't equal).
7135         * KeyboardLayouts.cs: Eliminate some dead code.
7136         - Lazy init things
7137         * X11Keyboard.cs: Lazy init keyboard detection.
7138         - Cleanup access modifiers a little.
7139
7140 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7141
7142         * XplatUIX11.cs: Once again, attempting to get layout just right.
7143
7144 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7145
7146         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7147           the sizes of each link section, that will result in sizes that
7148           match DrawString's layout (Fixes #78391)
7149
7150 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7151
7152         * FileDialog.cs: If AddExtension property is true autocomplete the
7153           extensions in SaveFileDialog correctly. Fixes bug #78453.
7154           Set MyNetwork and MyComputer to "C:\" for windows. This should
7155           fix part 8 of bug #78446 for now.
7156
7157 2006-05-26  Chris Toshok  <toshok@ximian.com>
7158
7159         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7160         invalidate the current row header if we need to, but presumably
7161         we'll invalidate the row corrsponding to the bounds or
7162         editingControl.
7163         (GridHScrolled): switch back to this method, as it's part of the
7164         public api.  *sigh*.
7165         (GridVScrolled): same.
7166         (OnMouseWheel): hack up something that more or less works.  Call
7167         GridHScrolled/GridVScrolled directly, instead of duplicating much
7168         of their code here.
7169         (EnsureCellVisibility): reinstate a bunch of this code, since we
7170         can't just set the scrollbar Value and expect to do all the work
7171         in the ValueChanged handler.  Also, Call Update() after scrolling
7172         in one direction so the other XplatX11.ScrollWindow call has the
7173         proper stuff in the proper places.
7174         (EditCell): set is_editing to true before calling .Edit.
7175
7176         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7177         don't bother comparing first.
7178         (OnKeyPress): call grid.ColumnStartedEditing before calling
7179         base.OnKeyPress.  this will set is_changing and invalidate the row
7180         header if necessary.
7181         (ProcessKeyMessage): for WM_CHAR messages, call
7182         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7183         and WM_KEYDOWN.
7184         
7185         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7186         it's done in the DataGrid.
7187         (NextState): call grid.ColumnStartedEditing, which takes care of
7188         invalidating the row header (and setting is_changing).
7189
7190         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7191         here.  it's done in the DataGrid.
7192
7193 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7194
7195         * Control.cs: allow changing the cursor when the mouse position is
7196         out of bounds but Capture is set.
7197         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7198         linklabel but released somewhere else.
7199
7200 2006-05-25  Jackson Harper  <jackson@ximian.com>
7201
7202         * TreeView.cs: When we get focus if there is no selected node make
7203         it the top node
7204         - Remove some uneeded setup code from Draw.
7205         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7206         a new node is inserted make the new node the top.
7207         * XplatUIX11.cs:
7208         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7209         be used (should be faster).
7210         
7211 2006-05-25  Chris Toshok  <toshok@ximian.com>
7212
7213         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7214         problem with the last commit.
7215
7216 2006-05-25  Chris Toshok  <toshok@ximian.com>
7217
7218         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7219         need the invalidate call here, while scrolling right-to-left via
7220         the left arrow key (i.e. moving the editing cell while scrolling).
7221
7222         * DataGrid.cs (.ctor): remove the initialization of
7223         ctrl_pressed/shift_pressed.  We no longer track them using key
7224         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7225         to using ValueChanged handlers on the scrollbars instead of
7226         Scrolled event handlers.  This simplifies a bunch of the scrolling
7227         code.
7228         (GridHValueChanged): rename from GridHScrolled, and change it to
7229         work with the new event args.
7230         (GridVValueChanged): same.
7231         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7232         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7233         selected cell.
7234         (ProcessGridKey): correct all the keyboard navigation stuff I
7235         could find.  Ctrl up/down/left/right/home/end work now.
7236         (EnsureCellVisibility): correct method name spelling.  Also,
7237         simplify this a touch by not explicitly calling the
7238         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7239         scrollbar value.
7240         (OnKeyUpDG): no need for this method now.
7241         
7242 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7243
7244         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7245         Fixes bug #78392.
7246
7247 2006-05-25  Chris Toshok  <toshok@ximian.com>
7248
7249         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7250         r61019.
7251
7252 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7253
7254         * Application.cs: Moved setting of is_modal and closing to before
7255           we create the control, to allow the event handlers called as a
7256           result of creation affect closing. Also removed Gonzalo's previous
7257           change to setting DialogResult, the behaviour has been moved to 
7258           Form.ShowDialog()
7259         * Form.cs: 
7260           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7261             handle it instead
7262           - ShowDialog(): If no dialog result is set, we need to return Cancel
7263           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7264             the close is cancelled
7265
7266 2006-05-25  Jackson Harper  <jackson@ximian.com>
7267
7268         * StatusBar.cs: We only need to update the sizes of the other
7269         panels when we have auto size contents.  Also we are only updating
7270         the contents of the panel, not the borders, so compensate for the
7271         border width (TODO: get this width from the theme somehow).
7272         * TreeView.cs: Scrollable is true by default
7273         - Use invalidate instead of refresh where needed
7274         - Factor the scrollable value into scrollbar updating
7275         - Update the scrollbars if the Scrollable property is altered
7276         - Update the selected node if its ImageIndex is changed
7277         - Handle null nodes in UpdateNode (mainly so we don't have to
7278         check if selected is null when updating it
7279         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7280         are factored into the visible count
7281         - Use VisibleCount for clarity in the code
7282         - When the font is changed we need to recurse through all the
7283         nodes and invalidate their sizes
7284         
7285 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7286
7287         * Application.cs: set the DialogResult to fixed when the main form is
7288         hidden or destroyed while being modal.
7289
7290 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7291
7292         * Theme.cs: Use Tangoified messagebox icons. 
7293
7294         (GetSizedResourceImage): Also cope with width = 0 and do not
7295         trigger a warning in that case (0 means "give me your icon from
7296         the resouce, no special size needed).
7297
7298 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7299
7300         * Application.cs: Leave runloop if the the main modal form is 
7301           hidden (fixes #78484)
7302
7303 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7304
7305         * BindingContext.cs : reject null datasource in Contains() and
7306           Item[].
7307         * CurrencyManager.cs : check data_member validity when data_source
7308           is dataset. When it is late binding, the initial position is -1.
7309
7310 2006-05-24  Jackson Harper  <jackson@ximian.com>
7311
7312         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7313         inserted nodes that aren't visible.  This changes the
7314         max_visible_order which confuses scrollbar settings.
7315         - Use the enumerator to get the prev node instead of duplicating
7316         code.
7317         * TreeView.cs: Use new method for setting scrollbar values
7318         - Don't set the bounds every time the scrollbar is updated
7319         - When updating below the root node use an invalidate instead of a
7320         refresh to prevent the child controls (scrollbars) from being
7321         refreshed. (UpdateBelow still needs to be reworked anyways).
7322         - Reenable SetBottom now that visible orders are set correctly,
7323         added some debug code incase we ever get bad values there again.
7324         - Set the scrollbar max to 2 less then the max value, this
7325         compensates for the max value being one above the node count, and
7326         for scrollbars adding one extra "notch".
7327         - When drawing image nodes if there is an imagelist we draw the
7328         first image in the list if the supplied image index is out of the
7329         image list's bounds.
7330         
7331 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7332
7333         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7334           we receive a size change from the WM (Fixes #78503)
7335
7336 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7337
7338         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7339           rectangle (Fixes #78501)
7340
7341 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7342
7343         * ButtonBase.cs: 
7344           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7345             as a bitfield.
7346           - Fixed MouseMove to no longer switch pressed state unless the left
7347             mouse button is pressed. Atsushi provided the original patch (#78485)
7348           
7349 2006-05-24  Jackson Harper  <jackson@ximian.com>
7350
7351         * ScrollBar.cs: New internal methods that allow us to change a
7352         couple values on the scrollbar (the most common case is maximum
7353         and large change) without getting multiple invalidates.
7354
7355 2006-05-24  Chris Toshok  <toshok@ximian.com>
7356
7357         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7358         (Edit): save off the original state in oldState, and set
7359         grid.is_editing to true.
7360         (OnKeyDown): abort editing if escape is pressed.  also, call
7361         NextState if space is pressed.
7362         (OnMouseDown): call NextState.
7363         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7364         here.  Also, only invalidate the row header once (on the initial
7365         is_changing switch) to save on redraws.
7366
7367 2006-05-24  Chris Toshok  <toshok@ximian.com>
7368
7369         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7370         if the value in the cell is different than it was before.  This
7371         keeps us from triggering a layout when we move around a datarid
7372         with a highlighted cell.
7373         (Edit): suspend layout when creating/positining the text box, and
7374         resume passing false so we don't ever actually re-layout.
7375         (ReleaseHostedControl): same.
7376         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7377
7378         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7379         control-key sequences should go to the datagrid - remove that
7380         lock.  Also, modify the conditions under which we move between
7381         cells when moving the cursor within a cell, and remove the "this"
7382         and "base" from field accesses.  We weren't even consistent, given
7383         they all were in the base class.
7384
7385 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7386
7387         * Binding.cs : (.ctor)
7388           An obvious NRE fix for BindingTest.CtorNullTest().
7389
7390 2006-05-23  Chris Toshok  <toshok@ximian.com>
7391
7392         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7393         them between lines.  This fixes some quirks editing cells in the
7394         datagrid.
7395
7396 2006-05-23  Jackson Harper  <jackson@ximian.com>
7397
7398         * TreeView.cs: Use begin/end update when doing expand/collapse all
7399         so that we don't get flicker on the scrollbar.
7400
7401 2006-05-23  Jackson Harper  <jackson@ximian.com>
7402
7403         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7404         treenode calculations to be independant of the painting code. To
7405         do this nodes track a visible order which is calculated by the
7406         treeview.
7407         - Call new methods for expanding/collapsing nodes.  These methods
7408         use scrollwindow so we don't have to update everything below the
7409         node.
7410         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7411         need to update nodes when drawing anymore or calculate scrollbar
7412         stuff.
7413         - Added new methods for expanding/collapsing nodes. These methods
7414         use ScrollWindow so as to not have to redraw all the nodes below.
7415         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7416         we add/remove nodes or sort.
7417         - Handle removing the selected and the top node properly.
7418
7419 2006-05-23  Chris Toshok  <toshok@ximian.com>
7420
7421         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7422         maybe this should actually happen in the datagrid code?
7423         (EndEdit): no need to invalidate anything, given that
7424         ReleaseHostedControl causes the datagrid to relayout, which
7425         invalidates everything anyway.
7426
7427         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7428         in SetCurrentCell).
7429         (set_SelectionBackColor): call InvalidateSelection instead of
7430         Refresh.
7431         (set_SelectionForeColor): same.
7432         (BeginEdit): Flesh this out a bit.
7433         (CancelEditing): only do any of this if we're editing/adding.
7434         (EndEdit): same.
7435         (OnMouseDown): there's no need to cancel editing here, it's done
7436         in SetCurrentCell.
7437         (SetCurrentCell): only invalidate the current row header if it's a
7438         different row than the new one.
7439         (ShiftSelection): fix this to work like MS does.
7440         (ResetSelection): factor out the invalidation of selected_rows to
7441         InvalidateSelection.
7442         (SetDataSource): cancel any editing that's going on.
7443
7444         * DataGridColumnStyle.cs
7445         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7446         call the non-interface version.
7447
7448         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7449         header rectangle with the clip rectangle so we don't redraw the
7450         entire header for just a small area.  Gets rid of the last flicker
7451         when horizontally scrolling.
7452         (DataGridPaintRow): same.
7453
7454 2006-05-23  Mike Kestner  <mkestner@novell.com>
7455
7456         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7457         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7458         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7459         Critical bug report.
7460
7461 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7462
7463         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7464           and this fixes #78493
7465
7466 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7467
7468         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7469         size is not found.  
7470         
7471         * FileDialog.cs: Do not change the background for the side bar as
7472         it wont work nicely with the theme, and also reduces the artifacts
7473         in rendering the icons (which I want to fix too).
7474
7475         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7476         resources, not resgen resources. 
7477
7478         (PlatformDefaultHandler): Pull images using the new API.
7479
7480 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7481
7482         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7483           a reference to the hwnd and will not remove it unless there are
7484           no pending exposures (fixes #78341)
7485         * XplatUI.cs: Improved debug
7486
7487 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7488
7489         * MenuAPI.cs : don't handle OnClick event when it was not the left
7490           button. Fixed bug #78487.
7491
7492 2006-05-23  Mike Kestner  <mkestner@novell.com>
7493
7494         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7495         prefer submenus to the top menu for item lookup, to avoid popping down
7496         top-row items.
7497
7498 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7499
7500         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7501           Graphics.FillRectangle as the visual results are really bad (even
7502           on win). We now draw perfect arrows (and perfect shadows when the
7503           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7504           Pen.DashPattern to draw the dots of each line.
7505
7506 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7507
7508         * FileDialog.cs: Update the filename combobox when navigating through
7509           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7510
7511 2006-05-22  Mike Kestner  <mkestner@novell.com>
7512
7513         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7514         Fixes #78463.
7515
7516 2006-05-22  Mike Kestner  <mkestner@novell.com>
7517
7518         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7519         requests. Fix a misspelled parameter and a copy paste exception error
7520         in Select.
7521
7522 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7523
7524         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7525           to get the same width/height (5/13) on X11 as the default font has on
7526           win32. This means that our DefaultFont emSize is smaller than the 
7527           the MS SWF equivalent (even thought the width/height stays the same)
7528
7529 2006-05-20  Jackson Harper  <jackson@ximian.com>
7530
7531         * MdiClient.cs:
7532         * MdiWindowManager.cs:
7533         * InternalWindowManager.cs: Make sure to use the border width from
7534         the theme.
7535
7536 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7537
7538         * PrintDialog.cs: Implements printer details
7539
7540 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7541
7542         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7543           Fixes part 1 and 2 of bug #78446
7544
7545 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7546
7547         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7548           instead of sticking to the first ever calculated value
7549
7550 2006-05-19  Mike Kestner  <mkestner@novell.com>
7551
7552         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7553         PointToClient, since Capture is set. Fixes #78344.
7554
7555 2006-05-19  Mike Kestner  <mkestner@novell.com>
7556
7557         * ListView.cs: match MS behavior in Details view where items are not
7558         drawn if Columns.Count == 0. 
7559         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7560         Use a separate pen to draw the check, since changing the width affects
7561         the box as well.  Fixes #78454.
7562
7563 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7564
7565         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7566         exception should throw the name of the invalid argument.
7567
7568         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7569         there are no files listed. 
7570
7571 2006-05-18  Jackson Harper  <jackson@ximian.com>
7572
7573         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7574         up.
7575
7576 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7577
7578         * Control.cs: Brought back our old UpdateZOrder method as a private
7579           function and switched our calls from UpdateZOrder to the new one.
7580           This fixes the Paint.Net canvas disappearing bug.
7581
7582 2006-05-18  Jackson Harper  <jackson@ximian.com>
7583
7584         * Theme.cs:
7585         * ThemeWin32Classic.cs:
7586         * InternalWindowManager.cs: Move the drawing into the theme,
7587         expose everything the theme should need from the window manager.
7588
7589 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7590
7591         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7592           from the call to NativeWindow to avoid walking up the parent chain
7593           further than needed (speeds up setting cursors and avoids setting
7594           the wrong cursor if a parent has another cursor defined)
7595         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7596           the icon as hotspot, not what's contained as hotspot in the icon
7597           file. This fixes the perceived drawing offset seen with Paint.Net
7598         
7599 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7600
7601         * XplatUIX11.cs: 
7602           - Store the calculated rectangle in Hwnd object and use it when 
7603             setting the client size
7604           - Force Toolwindows to always be type Dock, to ensure they're on top
7605
7606 2006-05-18  Mike Kestner  <mkestner@novell.com>
7607
7608         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7609         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7610         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7611         Substantial refactoring to remove confusing nested classes. Coding
7612         standard and Get+Set->property refactorings.  Shift to index based
7613         highlighting in ComboListBox instead of constantly using IndexOf and
7614         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7615         in FileDialog growth.  Draw borders manually since Simple mode needs
7616         to look like two independent controls.  Make listbox border
7617         conditional to DropDownStyle.  Improved OwnerDraw support.
7618
7619 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7620
7621         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7622         Don't set the disposed graphics to null, so we can throw the "right"
7623         exception if the graphics is reused later (added a flag to avoid 
7624         double disposing). Some behaviours are different under 2.0 and are
7625         filled under bug #78448.
7626
7627 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7628
7629         * Control.cs: When double-buffering is enabled, we need to reset
7630           our graphics context between paint calls. Otherwise, any 
7631           transformations and other alterations on the context will 
7632           become cumulative (#77734)
7633
7634 2006-05-18  Mike Kestner  <mkestner@novell.com>
7635
7636         * ListView.cs: do focused item selection like MS on clicks. 
7637         Rework focus handling for ItemControl so LostFocus invalidates as
7638         well.
7639         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7640         the ListView ItemControl has focus.
7641
7642 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7643
7644         * XplatUIX11.cs: If client_window ends up being width or height zero
7645           due to border settings, move it off window inside whole_window (#78433)
7646
7647 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7648
7649         * Mime.cs: Shrink the mime file cache correctly.
7650
7651 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7652
7653         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7654
7655 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7656
7657         * XplatUIX11.cs (AddExpose): More sanity checks
7658
7659 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7660
7661         * XplatUIX11.cs:
7662           - AddExpose: Don't add expose ranges outside the size of our
7663             window
7664           - Cast opacity values to Int32 to avoid crashes with certain
7665             values
7666           - Added disabled code paths that protect against illegal cross-
7667             thread painting (Developers.exe)
7668
7669 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7670
7671         * ProgressBar.cs: Invalidate the control when it's resized
7672           since block size is based on control size. (#78388)
7673
7674 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7675
7676         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7677         of setting the incoming argument to the "reset" value, we set the
7678         this.datamember to string.empty (before we were invalidating the
7679         incoming data).   
7680
7681         Fixes 78420
7682
7683 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7684
7685         * Form.cs: Only apply transparency settings after the form
7686           is created. (Fixes #77800)
7687
7688 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7689
7690         * ApplicationContext.cs: Grab the HandleDestroyed event so
7691           we know when to fire OnMainFormClosed 
7692
7693 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7694
7695         * Application.cs: Introduced sub-class to allow tracking of
7696           threads and centralized triggering of the event mess for
7697           ThreadExit, AppExit, etc..  (#76156)
7698
7699 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7700
7701         * MimeIcon.cs:
7702           - Do not return a null icon index value for a mime subclass.
7703             Instead try the main mime type class too.
7704           - Seems that some newer distributions don't have a link to some
7705             gnome default icons anymore. So check the default gnome dir too.
7706           
7707
7708 2006-05-16  Jackson Harper  <jackson@ximian.com>
7709
7710         * MdiClient.cs: Don't paint the parent background image if we have
7711         our own background image.
7712
7713 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7714
7715         * Control.cs:
7716           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7717             controls, all filled controls are supposed to overlap (#78080)
7718           - UpdateZOrder is supposed to update the control's z-order in the
7719             parent's z-order chain. Fixed to behave like that
7720           - BringToFront: Removed obsolete code
7721           - SendToBack: Simplyfied
7722           - SetChildIndex: Trigger layout calculations when Z-order changes
7723             since layout is done by z-order
7724
7725 2006-05-16  Chris Toshok  <toshok@ximian.com>
7726
7727         [ fixes bug #78410 ]
7728         * DataGrid.cs (set_AlternatingBackColor): use
7729         grid_drawing.InvalidateCells instead of Refresh().
7730         (set_BackColor): call grid_drawing.InvalidateCells.
7731         (set_BackgroundColor): use Invalidate instead of Refresh.
7732
7733         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7734         invalidate the cell area.
7735
7736 2006-05-15  Chris Toshok  <toshok@ximian.com>
7737
7738         [ fixes bug #78011 ]
7739         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7740         on to DataGridPaintRow.
7741         (DataGridPaintRow): take a clip argument, and only draw the cells
7742         which intersect it.  same with the not_usedarea.
7743
7744         * Theme.cs (DataGridPaintRow) add @clip parameter.
7745
7746         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7747         XplatUI.ScrollWindow.
7748         (ScrollToRow): same.
7749
7750         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7751         with last column which was causing a gray swath to appear with the
7752         XplatUI.ScrollWindow code.
7753
7754 2006-05-15  Chris Toshok  <toshok@ximian.com>
7755
7756         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7757         use XplatUI.ScrollWindow.
7758         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7759
7760 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7761
7762         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7763
7764 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7765
7766         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7767           file since there are no equivalent X11 cursors
7768
7769 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7770
7771         * MonthCalendar.cs : DateTimePicker should reflect selected date
7772           on mouse*up*, not mouse*down*. Fixed originally reported part of
7773           bug #76474.
7774
7775 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7776
7777         * TabControl.cs : When argument index is equal or more than tab
7778           count, just ignore. Fixed bug #78395.
7779
7780 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7781
7782         * Control.cs: Dispose all child controls when control is diposed (#78394)
7783
7784 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7785
7786         * ColorDialog.cs: Finally it is possible to select the color with
7787           the text boxes
7788
7789 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7790
7791         * PrintDialog.cs: Fix typo
7792
7793 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7794
7795         * PrintDialog.cs: PrintDialog is not resizable
7796         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7797           color. Made some ToolBar drawing methods protected virtual.
7798
7799 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7800
7801         * PrintDialog.cs: Implementation of the PrintDialog
7802
7803 2006-05-12  Chris Toshok  <toshok@ximian.com>
7804
7805         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7806         thumb, instead use MoveThumb.  This has the side effect of making
7807         most of the other thumb moving machinery use MoveThumb as well.
7808         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7809         need to actually invalidate the rectangle where the new thumb will
7810         go.
7811         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7812         We force an Update() after, so it's not as fast as it could be,
7813         but at least there's zero flicker and no droppings.
7814         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7815         (UpdateThumbPos): add another argument (dirty), which says whether
7816         or not to calculate/add dirty regions which we later invalidate.
7817         For cases where we know we're going to use MoveThumb, we pass
7818         false for this.  Otherwise, pass true.
7819
7820 2006-05-12  Jackson Harper  <jackson@ximian.com>
7821
7822         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7823         the status bar.
7824         
7825 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7826
7827         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7828           and GetClipRegion methods and UserClipWontExposeParent property.
7829         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7830           overriding UserClipWontExposeParent property, setting to false, since
7831           Win32 handles the required expose messages to draw our clipped parent
7832           areas internally
7833         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7834           PaintEventStart to set the user clip region if set.
7835         * Control.cs: 
7836           - Now internally tracking the Region for the control since we need to
7837             store it if the handle is not yet created and only set it when it
7838             becomes created. Before setting the region forced handle creation
7839           - Added code to draw the parents underneath a user-clipped region
7840         * Hwnd.cs: Added UserClip property
7841
7842 2006-05-12  Chris Toshok  <toshok@ximian.com>
7843
7844         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7845         (set_Maximum): same.
7846         (set_Minimum): same.
7847         (set_SmallChange): same.
7848         (OnMouseUpSB): remove the call to refresh when releasing the
7849         thumb.  We shouldn't need it.
7850         
7851 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7852
7853         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7854         AutoSize set to None, we do not need to relayout everything, we
7855         just need to invalidate the current region.
7856
7857         (Draw): Do not draw the entire ClientArea, just redraw the
7858         clip area being passed.
7859
7860         * MdiClient.cs: Make MdiClient constructor with the Form argument
7861         internal. 
7862
7863 2006-05-12  Jackson Harper  <jackson@ximian.com>
7864
7865         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7866         parents background image,  but strangely not their own.
7867         - (DrawStatusBarPanel): Take into account horizontal alignment
7868         when drawing the strings and icons.
7869
7870 2006-05-12  Mike Kestner  <mkestner@novell.com>
7871
7872         * ListBox.cs: avoid invalidations for focus when the collection is
7873         empty. 
7874
7875 2006-05-12  Chris Toshok  <toshok@ximian.com>
7876
7877         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7878         invalidate the entire thumb area.  Call InvalidateDirty which
7879         limits the redraw to the thumb itself and surrounding pixels.
7880
7881         * XplatUIX11.cs (ScrollWindow): optimize copying.
7882         
7883 2006-05-12  Chris Toshok  <toshok@ximian.com>
7884
7885         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7886         Figure out the positioning/layout in a single pass instead of
7887         multiple recursive invocations.  Speeds up the initial display of
7888         the data grid.  Also, make many things private that were
7889         originally public but unused outside this class.
7890
7891 2006-05-11  Jackson Harper  <jackson@ximian.com>
7892
7893         * MdiClient.cs: Improved layout code.
7894
7895 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7896
7897         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7898           not SelectedObject.
7899
7900 2006-05-11  Chris Toshok  <toshok@ximian.com>
7901
7902         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7903         union of that will always be {0,0,width,height}.
7904
7905 2006-05-11  Jackson Harper  <jackson@ximian.com>
7906
7907         * Form.cs: Match MS's DefaultSize for forms (they must have
7908         changed the size in sp2).
7909
7910 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7911
7912         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7913
7914 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7915
7916         * TextControl.cs : Fixed bug #78109. This incorrect position
7917           comparison caused crash on automatic line split.
7918         * TextBoxBase.cs : reduce duplicate code.
7919
7920 2006-05-10  Jackson Harper  <jackson@ximian.com>
7921
7922         * MdiClient.cs: Active form is only sent to the back when using
7923         the Next form functionality, when a form is clicked the current
7924         active shouldn't be sent to the back.
7925         - Layout the mdi windows when the container is first made visible.
7926         * Form.cs: Give the MdiClient a ref to the containing form when we
7927         create it.
7928         
7929 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7930
7931         * LinkLabel.cs : link_font could be uninitialized, so populate one
7932           before actual use. Fixed bug #78340.
7933
7934 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7935
7936         * XplatUIX11.cs : clipboard format native value is IntPtr.
7937           Fixed bug #78283.
7938
7939 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7940
7941         * Control.cs: 
7942           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7943             which is passed up the parent chain by DefWndProc
7944           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7945             to DefWndProc (#77956)
7946         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7947
7948 2006-05-10  Jackson Harper  <jackson@ximian.com>
7949
7950         * MdiClient.cs: We need to remove the controls from the mdi
7951         collection, when we close the window.
7952         * MdiWindowManager.cs: Special handling of closing mdi windows.
7953         * InternalWindowManager.cs: Make the close method virtual so the
7954         mdi window manager can handle it specially.
7955
7956 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7957
7958         * DataGrid.cs:
7959           - Recalculate grid when the data source has changed
7960           - Matches styles provided by user from all data sources types
7961         * DataGridTableStyle.cs: For columns that provided by the user set the
7962         with the preferred value is there was unassigned.
7963         * CurrencyManager.cs: throw OnItemChanged event
7964
7965 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7966
7967         * PictureBox.cs: Don't animate until handle is created. Start animation
7968           when handle is created.
7969
7970 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7971
7972         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7973           current codebase.
7974         * XEventQueue.cs: We don't need to provide the extra info
7975
7976 2006-05-10  Jackson Harper  <jackson@ximian.com>
7977
7978         * MdiClient.cs: If the mdi clients parent form has a background
7979         image set, we draw that background image for the mdi area's
7980         background.
7981
7982 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7983
7984         * TextBoxBase.cs: Set IBeam cursor (#78347)
7985
7986 2006-05-10  Mike Kestner  <mkestner@novell.com>
7987
7988         * ToolBar.cs: fix some text padding issues with ButtonSize
7989         calculation. Update the default size to match MS documentation.
7990         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7991         button size. Fixes #78296.
7992
7993 2006-05-10  Mike Kestner  <mkestner@novell.com>
7994
7995         * ListBox.cs: use is_visible for scrollbar positioning in case the
7996         control isn't on screen yet.  Fix off by one with Right vs Width
7997         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7998         
7999 2006-05-10  Jackson Harper  <jackson@ximian.com>
8000
8001         * X11Dnd.cs: Drop to a control with another control on top of it.
8002         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8003         be modified in click handlers. TODO: Look for similar problems in
8004         other controls.
8005
8006 2006-05-09  Jackson Harper  <jackson@ximian.com>
8007
8008         * Form.cs: Window managers need the old window state when setting
8009         window state now.
8010         * InternalWindowManager.cs: Allow the base mdi window manager to
8011         handle more of the MDI only stuff (like maximize buttons).
8012         * MdiWindowManager.cs: Fix some snafus in changing the window
8013         state.  Add all the menu functionality, for both popup and
8014         maximized menus.
8015         * MdiClient.cs: When a new form is selected the currently
8016         activated form is sent to the back, this matches MS.
8017         - Implement a new method to activate the next mdi child window.
8018
8019 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8020
8021         * Control.cs: 
8022           - Added new InternalCapture method to allow controls to prevent
8023             the capture behaviour on the click handlers
8024           - Switched to use InternalCapture
8025         * ComboBox.cs:
8026           - Using InternalCapture to prevent mouse captures from being released
8027             on mouse button release (Fixes #78100)
8028         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8029           returns Form borders if a caption is present. (Fixes #78310)
8030
8031 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8032
8033         * TreeNode.cs: Changed serialization .ctor to not require every field
8034           to be present. (#78265)
8035         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8036
8037 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8038
8039         * MimeIcon.cs: for is faster than foreach for strings.
8040
8041 2006-05-05  Mike Kestner  <mkestner@novell.com>
8042
8043         * CheckedListBox.cs: update check handling code to not use selected.
8044         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
8045         behavior for visual feedback, motion response, shift/ctrl handling,
8046         and properly deal with all 4 selection modes. Updates to bounds
8047         handling logic.  Add scroll wheel support. [Fixes #77842]
8048
8049 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8050
8051         * ListView.cs:
8052           - Moved adding of Implicit controls into .ctor. That way, subsequent
8053             creation of the controls will not cause them to think they are 
8054             toplevel windows (fixes #78200 header problem)
8055           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
8056           - Switched visibility setting of header control to use internal field
8057             to avoid triggering handle creation
8058           - Now checking if handle is created before causing a refresh when items
8059             are added (This makes us now match handle creation time with MS)
8060         * Splitter.cs: Removed loading of private splitter cursor, switched to
8061           Cursors version now that that is loading the right ones
8062         * Cursors.cs: Load proper splitter cursors from resources
8063         * Cursor.cs: Added second method of loading resource cursors for the 
8064           VS.Net users amongst us
8065
8066 2006-05-05  Mike Kestner  <mkestner@novell.com>
8067
8068         * ListView.cs: give header_control a minimum size based on the
8069         ListView size.
8070
8071 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
8072
8073         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
8074           window seems to do that with metacity, so set that type. (#78120)
8075
8076 2006-05-05  Mike Kestner  <mkestner@novell.com>
8077
8078         * ListViewItem.cs: fix Details mode checkbox layout bug.
8079         * ThemeWin32Classic.cs: draw a ListView column header for unused space
8080         at the end of the header, if it exists. [Fixes for #78200]
8081
8082 2006-05-04  Jackson Harper  <jackson@ximian.com>
8083
8084         * MdiClient.cs: Add a helper property to get the container form.
8085         * MdiWindowManager.cs: We have to make sure to use the menu origin
8086         when drawing the icons and buttons, this fixes maximized window
8087         icons/buttons on win32.
8088         * InternalWindowManager.cs: Reset the restore captions when a
8089         window goes from Maximized to Minimized and vice versa. Move the
8090         DrawMaximizedButtons into the MdiWindowManager source, tool
8091         windows can't be maximized. NOTE: This could use a little
8092         refactoring if time ever permits.
8093         
8094 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8095
8096         * TextBox.cs: Add MWFCategoryAttributes
8097         * TextBoxBase.cs: Add MWFCategoryAttributes
8098         * Form.cs: Add MWFCategoryAttributes
8099
8100 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
8101
8102         * Control.cs: Add MWFCategoryAttributes
8103         * ScrollableControl.cs: Add MWFCategoryAttributes
8104
8105 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
8106
8107         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
8108           Divider is true. Fix a little glitch in PropertyToolBar
8109           drawing code
8110
8111 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
8112
8113         * Control.cs:
8114           - Dispose: Call base.Dispose, this causes the disposed event
8115             to be fired (and probably other, more important stuff)
8116           - SetVisibleCore: Set is_visible to true after creating the
8117             window so that the window still gets created invisible (if
8118             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
8119             to generate a WM_ACTIVE message
8120         * Form.cs: Call Dispose when we want to destroy the window, instead of
8121           just destroying the handle (Dispose will do that for us)
8122         * XplatUIX11.cs:
8123           - RootWindow also needs a queue, so we can properly process the
8124             property change events from RootWindow (like Activate)
8125           - Generatic synthetic WM_ACTIVE message when the active window is
8126             being destroyed
8127
8128 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8129
8130         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8131           bounds are changed
8132
8133 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8134
8135         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8136           for determining width and height (image might not be assigned if
8137           we're drawing an imagelist)
8138
8139 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8140
8141         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8142         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8143           height from system
8144         * Theme.cs: No longer returns hardcoded menu height, instead calls
8145           new driver method
8146         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8147           on MS (# 78257)
8148
8149 2006-05-01  Mike Kestner  <mkestner@novell.com>
8150
8151         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8152
8153 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8154
8155         * TextBoxBase.cs: Removed Fixme
8156         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8157
8158 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8159
8160         * XplatUIX11.cs:
8161           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8162             the rectangle relative to the parent, considering borders. We
8163             don't really want that.
8164           - ScrollWindow: Fixed warning to be more understandable
8165         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8166           scrollbars and scroll only the visible area
8167         * RichTextBox.cs: Removed debug output
8168
8169 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8170
8171         * NumericUpDown.cs (Text): Just use base
8172         * UpDownBase.cs: Ensure txtView is created before using it
8173
8174 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8175
8176         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8177           casting to IntPtr to avoid 64bit overflow errors
8178
8179 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8180
8181         * Control.cs:
8182           - AllowDrop: Don't force handle creation.
8183           - CreateHandle: Added call to tell driver if we're allowed to drop
8184
8185 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8186
8187         * FileDialog.cs: Remember the last directory not only for the
8188           current instance but also for new FileDialog instances.
8189
8190 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8191         
8192         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8193           broke sending async messages
8194
8195 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8196
8197         * XplatUIX11.cs:
8198           - ScrollWindow: Fixed method. We finally generate expose events again
8199             for scrolled areas. This was causing 'garbage' when scrolling
8200             textbox and other controls that used ScrollWindow
8201           - Switched from using the regular queue for paint events to the MS 
8202             model of 'generating' paint events when the queue is empty.
8203             We use the new XQueueEvent.Paint subclass to store which windows
8204             need painting.
8205           - AddExpose now takes the x/y/width/height of the exposed area
8206             and inserts the window into the paint queue if not already there
8207           - InvalidateWholeWindow: Switched to use new AddExpose method
8208           - UpdateMessageQueue: Added which queue to monitor for paint events
8209           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8210             the unlikely case nothing above handles it. We reset the expose
8211             pending states to get them off the queue.
8212           - GetMessage: Now pulls a paint event if no other events are in the
8213             queue
8214           - Invalidate: Switched to new AddExpose method
8215           - PeekMessage: Updated to understand pending paint events
8216           - UpdateWindow: Fixed logic bug. We were only updating if the window
8217             didn't need updating. Also switched to sending WM_PAINT directly,
8218             like MS does.
8219         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8220           and random access Remove(). The random access is needed to handle
8221           UpdateWindow() where a WM_PAINT is sent directly without accessing
8222           the queue.
8223         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8224           allow for better feedback when scrolling. Scrollbars are small and
8225           the immediate update should make it 'feel' more responsive without
8226           slowing things down. ScrollBar still needs it's invaliate logic
8227           updated to not always invalidate the whole bar on certain changes.
8228
8229 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8230
8231         * Control.cs:
8232         (BackColor): if the control does not support a transparent background,
8233         return the default backcolor when the parent backcolor is transparent.
8234
8235 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8236
8237         * Application.cs: Updated to new StartLoop/GetMessage API
8238         * RichTextBox.cs: Provide some output on RTF parsing errors
8239         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8240           new queue_id argument to GetMessage and PeekMessage to allow faster
8241           handling of per-thread queues in drivers.
8242         * Hwnd.cs: Added Queue tracking and property
8243         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8244         * XEventQueue.cs: Added thread trackingA
8245         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8246         * XplatUIX11.cs:
8247           - Implemented new per-thread queue
8248           - GetMessage: Fixed return/break behaviour on several cases. We were
8249             returning stale messages in some cases, instead of just processing
8250             the next message
8251
8252 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8253
8254         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8255
8256 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8257
8258         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8259           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8260
8261 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8262
8263         * PropertyGridView.cs: Fix drop down width.
8264
8265 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8266
8267         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8268           a mess in DrawToolBar, so I removed one of them.
8269
8270 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8271
8272         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8273           needed (clip). Otherwise we get artifacts.
8274
8275 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8276
8277         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8278           dimension is fixed
8279         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8280           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8281         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8282           if it matches the scale base font (avoids unneeded scaling)
8283
8284 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8285
8286         * X11DesktopColors.cs: One gtk_init_check should be enough
8287
8288 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8289
8290         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8291           match MS behaviour
8292
8293 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8294
8295         * TextBoxBase.cs: 
8296           - Generate OnTextChanged for Backspace even if we're only deleting
8297             the current selection
8298           - When setting the Text property, only select all text if the
8299             control does not have focus when it is being set. Otherwise
8300             just place the cursor at the beginning of the control
8301
8302 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8303
8304         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8305           Added a little helper to draw PropertyGrid ToolBar with a different
8306           border and a different BackColor.
8307         * PropertyGrid.cs: Some background parts didn't get painted with the
8308           correct background color. Added a class that helps us to draw the
8309           correct border for PropertyGridView and a class that helps us to
8310           draw ToolBars with a different backcolor
8311         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8312
8313 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8314
8315         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8316         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8317
8318 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8319
8320         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8321           into the palette entries. Also, since we're working on a copy
8322           we needed to copy the palette back onto the bitmap.
8323         * Cursor.cs: Same fix as XplatUIWin32.cs.
8324
8325 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8326
8327         * ImageListStreamer.cs: Need to read the var (or we're off)
8328
8329 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8330
8331         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8332           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8333           TextBoxBase.cs: Unused var fixes
8334         * AxHost.cs: Small 2.0 fix
8335         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8336           as it seems that is what at least Metacity expects. This will make
8337           icons show up on 64bit platforms. We still have some 64bit size
8338           issues, though, since the startup app window size still won't match.
8339
8340 2006-04-25  Mike Kestner  <mkestner@novell.com>
8341
8342         * *.cs: cleanup newly reported exception var unused warnings.
8343
8344 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8345
8346         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8347           ms
8348
8349 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8350
8351         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8352           image. The image position is always the same, no matter if the
8353           button is pressed or not.
8354
8355 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8356
8357         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8358           selection and set the correct filename for SaveFileDialog.
8359           Patch by Emery Conrad.
8360
8361 2006-04-24  Mike Kestner  <mkestner@novell.com>
8362
8363         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8364         check for item.X outside the ClientRect instead of item.Y. Fixes
8365         #78151.
8366
8367 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8368
8369         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8370         trust that value blindly and do some sanity check. Fixes bug #77814.
8371
8372 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8373
8374         * ImageListStreamer.cs: save the mask as a 1bpp image.
8375
8376 2006-04-21  Mike Kestner  <mkestner@novell.com>
8377
8378         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8379         pass Checked and Indeterminate to the Theme Engine. Improve
8380         encapsulation with ListBox.
8381         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8382         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8383         nested types.  Move all CheckState functionality to CheckedListBox.
8384         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8385         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8386         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8387         single base list. Fix scrollbar sizing and placement to mirror MS.
8388         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8389         used.
8390         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8391         for CheckedListBox by using new DrawItemState info.  Center the
8392         checkboxes on the items. Use new StringFormat property.
8393
8394 2006-04-18  Jackson Harper  <jackson@ximian.com>
8395
8396         * Form.cs: MdiChildren don't do default locations the same way as
8397         regular forms.  This prevents a crash when trying to position the
8398         mdi windows.
8399
8400 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8401
8402         * PropertyGridTextBox.cs: Formatting, copyright
8403         * PropertiesTab.cs: Formatting
8404         * PropertyGrid.cs: Formatting
8405         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8406           click toggling of values
8407           
8408 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8409
8410         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8411         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8412           every time a control is created
8413         * Application.cs: Removed obsolete EnableRTLMirroring method
8414
8415 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8416
8417         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8418         SelectedIndex to -1. Fixes bug #78121.
8419
8420 2006-04-17  Jackson Harper  <jackson@ximian.com>
8421
8422         * Binding.cs: Handle null values for Current and BindingContext.
8423         This occurs when binding is a little delayed.
8424         * CurrencyManager.cs: return null for Current when there are no
8425         items in the list.
8426         - Hookup to the listchanged event on the DataView and update
8427         bindings when the list is changed.  This fixes late binding of
8428         controls.
8429
8430 2006-04-17  Jackson Harper  <jackson@ximian.com>
8431
8432         * X11Dnd.cs:
8433         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8434         Ringenbach.
8435
8436 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8437
8438         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8439           place
8440         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8441           with the correct ButtonState
8442
8443 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8444
8445         * XplatUIX11.cs: Improved distinguishing between window types to
8446           tell the WM a type closer to what the app wants (Fixes #78107)
8447
8448 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8449
8450         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8451           GrabHandle
8452
8453 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8454
8455         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8456           drawing code to reflect the size grip changes
8457
8458 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8459
8460         * ImageListStreamer.cs: fix handling of the mask that follows the main
8461         bitmap when deserializing and serialize it properly. The generated mask
8462         should better be a 1bpp image, but I'll do that later.
8463
8464 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8465
8466         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8467           path doesn't fit into some of our Current.Places
8468
8469 2006-04-13  Jackson Harper  <jackson@ximian.com>
8470
8471         * ComboBox.cs: Use borders instead of drawing our own decorations,
8472         try to obey correct rules for heights.
8473         * Theme.cs:
8474         * ThemeNice.cs:
8475         * ThemeClearLooks.cs:
8476         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8477         this is now handled by borders.
8478         - Remove unused DrawListBoxDecorationSize method.
8479         
8480 2006-04-13  Mike Kestner  <mkestner@novell.com>
8481
8482         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8483         reported by Alex.
8484
8485 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8486
8487         * ThemeWin32Classic.cs: 
8488           - Fixed CPDrawStringDisabled
8489           - Corrected drawing of disabled menu items
8490           - Fixed drawing of disabled radio buttons (bug #78095)
8491           - Draw check in a disabled CheckBox with color ControlDark 
8492
8493 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8494
8495         * Form.cs: Use the provided width when calculating the menu size;
8496           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8497           and ClientSize.Width won't be updated yet
8498         * Application.cs: Use Visible instead of Show() to make form visible,
8499           this way we create the handle later and menusize is considered
8500
8501 2006-04-12  Mike Kestner  <mkestner@novell.com>
8502
8503         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8504         reporting.
8505
8506 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8507
8508         * TextBox.cs: Implemented context menu
8509
8510 2006-04-12  Mike Kestner  <mkestner@novell.com>
8511
8512         * ListView.cs: implement box selection. fixes #77838.
8513         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8514
8515 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8516
8517         * XplatUIX11.cs: Added setting of window type when transient window
8518           is created (metacity would move it otherwise)
8519         * X11Structs.cs: Added WINDOW_TYPE atoms
8520         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8521           background (the control is Opaque but still wants transparent
8522           backgrounds)
8523
8524 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8525
8526         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8527           that set Opaque but don't mean it (like all ButtonBase-derived
8528           controls) to still draw their background
8529         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8530           the background
8531
8532 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8533
8534         * Control.cs (PaintControlBackground): Set the graphics object
8535           on our PaintEvent to null to prevent it from being disposed
8536           when the PaintEvent gets disposed
8537
8538 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8539
8540         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8541         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8542
8543 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8544
8545         * Control.cs: 
8546           - Added transparency check to BackColor property. Transparent
8547             backgrounds are only allowed if the control styles permit it
8548           - Added recursive painting of parent control background and
8549             foreground if a control with a transparent backcolor is drawn
8550             (Thanks to Tim Ringenback for providing his 'hack' as a base
8551              for this patch) Fixes #77985 and #78026.
8552           - Added Opaque style check before calling OnPaintBackground, no
8553             need to draw the background if the control is opaque
8554           - Removed ControlAccessibleObject owner variable (inherited from
8555             base, no need to define again)
8556           - Added some documentation links explaining the drawing events
8557             and styles
8558
8559 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8560
8561         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8562           that the affected control is the located at the left border of our
8563           parent (Fixes #77936)
8564
8565 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8566
8567         * TextBoxBase.cs: When rendering disabled or readonly controls,
8568           draw the background with 'Control' instead of 'Window' color as
8569           long as the user hasn't specifically set a color
8570
8571 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8572
8573         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8574           since that won't be updated if the user types text (only if it's
8575           programatically set)
8576
8577 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8578
8579         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8580           layout changes do to app-triggered resizes will have the proper
8581           display rectangle for layout
8582
8583 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8584
8585         * ThemeWin32Classic.cs:
8586           - Make use of the SystemBrushes and SystemPens wherever possible
8587           - Corrected some highlight colors
8588           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8589             drawing
8590         * Theme.cs: Added Empty field to CPColor struct
8591
8592 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8593
8594         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8595           is displayed when calculating the display rectangle. Thanks to Mike
8596           for teaching me the err of my ways.
8597
8598 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8599
8600         * ScrollableControl.cs:
8601           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8602             (instead of 0,0) and we now return the real width/height instead of
8603             just the clientrectangle, adjusted for padding. The rectangle is
8604             now cached and created by the new CalculateDisplayRectangle method.
8605           - Created new CalculateDisplayRectange method, which basically does
8606             what get_DisplayRectangle() did originally, but now using the 
8607             right edge instead of DisplayRectangle to determine the size of
8608             our scrollbars
8609           - get_Canvas(): Fixed it to properly calculate canvas for 
8610             right/bottom controls which seem to be placed to the right/bottom
8611             of any controls that have a fixed location
8612           - Removed TODO that's taken care of
8613           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8614             and SetDisplayRectLocation according to new MSDN2 docs
8615           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8616             event when that is called, this is added for compatibility
8617           - ScrollControlIntoView(): Implemented.
8618           - Switched scrollbars to be implicit, they shouldn't be selectable
8619         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8620           call it when the active control is set/changed
8621         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8622         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8623           implicit_control variable (used for native Win32 message generation)
8624         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8625           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8626         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8627         * XplatUIStructs.cs: Added ScrollBarCommands enum
8628
8629 2006-04-10  Jackson Harper  <jackson@ximian.com>
8630
8631         * ButtonBase.cs:
8632         * CheckedListBox.cs:
8633         * ComboBox.cs:
8634         * DataGrid.cs:
8635         * DataGridView.cs:
8636         * Form.cs:
8637         * GroupBox.cs:
8638         * ListBox.cs:
8639         * PrintPreviewControl.cs:
8640         * ProgressBar.cs:
8641         * PropertyGrid.cs:
8642         * Splitter.cs:
8643         * StatusBar.cs:
8644         * TrackBar.cs:
8645         * UpDownBase.cs: Fixup base event overrides.
8646         
8647 2006-04-06  Mike Kestner  <mkestner@novell.com>
8648
8649         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8650         all user-initiated value changes to min <= value <= max-thumbsz+1.
8651         (set_Value): check for vert/horiz when calculating new thumb position.
8652         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8653         like MS does.
8654         (OnMouseMoveSB): refactor the thumb dragging code and refine
8655         invalidation logic to reduce flicker.
8656         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8657         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8658         (UpdateThumbPosition): small code readability cleanup
8659
8660 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8661
8662         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8663           different
8664
8665 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8666
8667         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8668
8669 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8670
8671         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8672         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8673           This dramatically reduces the number of Pen.Dispose calls. 
8674           Where possible call ResPool methods only once instead of calling it
8675           over and over again (for example for the same color).
8676
8677 2006-04-06  Mike Kestner  <mkestner@novell.com>
8678
8679         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8680         Also remove an unused private field on the collection. Fixes #77972.
8681
8682 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8683
8684         * ThemeNice.cs: Added ToolBar drawing code
8685
8686 2006-04-06  Mike Kestner  <mkestner@novell.com>
8687
8688         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8689         I'm assuming that means we need to look up the toplevel for the
8690         provided control. Fixes the crash trace in #77911 but exposes another
8691         crash in some strange reflection usage in NDocGui.
8692
8693 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8694
8695         * ThemeNice.cs: Gave it a little silver touch and added Images
8696           method
8697         * FontDialog.cs: FontDialog is not resizable
8698         * FileDialg.cs: Added SizeGripStyle.Show
8699
8700 2006-04-05  Jackson Harper  <jackson@ximian.com>
8701
8702         * KeyboardLayouts.cs: Remove warning.
8703
8704 2006-04-05  Jackson Harper  <jackson@ximian.com>
8705
8706         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8707         all of our controls instead of Paint +=.
8708         * ListBox.cs:
8709         * ListView.cs:
8710         * MenuAPI.cs:
8711         * MessageBox.cs:
8712         * NotifyIcon.cs:
8713         * ProgressBar.cs:
8714         * ScrollBar.cs:
8715         * Splitter.cs:
8716         * StatusBar.cs:
8717         * TabControl.cs:
8718         * TextBoxBase.cs:
8719         * ToolBar.cs:
8720         * TrackBar.cs:
8721         * UpDownBase.cs:
8722         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8723         use OnPaintInternal. Remove Width/Height and Visible checks in
8724         paint handler, this is done at a higher level now.
8725         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8726         * PaintEventArgs.cs: Add a handled flag so controls that don't
8727         want anymore painting after OnPaintInternal can make sure OnPaint
8728         isn't called.
8729
8730 2006-04-05  Mike Kestner  <mkestner@novell.com>
8731
8732         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8733         state of the form, so that we don't process events when Modal dialogs
8734         are up. Fixes #77922.
8735
8736 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8737
8738         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8739           checking is done.
8740
8741 2006-04-05  Mike Kestner  <mkestner@novell.com>
8742
8743         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8744
8745 2006-04-05  Mike Kestner  <mkestner@novell.com>
8746
8747         * ListView.cs (HeaderMouseMove): null guarding for the over column
8748         when setting up the drag_to_index.  Fixes #78015.
8749
8750 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8751
8752         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8753           in the taskbar. Transient windows seem to accomplish that.
8754
8755 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8756
8757         * Form.cs:
8758           - Re-enabled CreateParams.X/Y code for FormStartPosition
8759           - Added code for manual placement when creating the Control
8760           - Incomplete patch to treat MDI forms differently when
8761             setting the ClientSizeCore. (Still need to figure out handling
8762             x/y coords there)
8763         * XplatUIX11.cs:
8764           - When we're explicitly setting the X/Y position of a non-Child
8765             window, let the WM know. Metacity really wants this.
8766
8767 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8768
8769         * ThemeNice.cs: Added CPDrawButton
8770
8771 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8772
8773         * ThemeNice.cs: Changed the color for focused buttons and activated
8774           the arrows for small scroll buttons.
8775
8776 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8777
8778         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8779           anymore. Changed some method modifiers to protected (virtual)
8780         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8781           changes
8782         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8783           Updated drawing of menus, buttons and progressbars; added
8784           CPDrawBorder3D 
8785
8786 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8787
8788         * ImageListStreamer.cs: implemented serialization/deserialization
8789         of the images.
8790
8791 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8792
8793         * ThemeWin32Classic.cs:
8794           - Removed all the DrawFrameControl stuff; CPDrawButton,
8795             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8796             inside the methods
8797           - Updated and corrected the drawing code of CPDrawButton,
8798             CPDrawCheckBox and CPDrawRadioButton to better match ms
8799           - Updated theme checkbox and radiobutton code to use the CP*
8800             methods
8801
8802 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8803
8804         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8805           bug is fixed
8806
8807 2006-03-31  Jackson Harper  <jackson@ximian.com>
8808
8809         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8810         sometimes.
8811         * UpDownBase.cs: Don't CreateGraphics manually, use a
8812         Refresh. Ideally we would invalidate the correct areas here.
8813
8814 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8815
8816         * XplatUIX11.cs: 
8817           - We now track the mapping state of windows. If a window (or 
8818             one of it's parents) is not mapped we no longer permit
8819             WM_PAINT messages to be generated since we'd otherwise get 
8820             lots of BadMatch X errors. Jackson did all the work figuring
8821             out the problem.
8822           - Destroying the caret if the window it's contained in is 
8823             destroyed. Can't use regular DestroyCaret method since it
8824             might fall into a drawing function (trying to remove the
8825             caret) and with that generate new BadMatch errors. Again,
8826             Jackson tracked this down.
8827           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8828             make sure we send the messages to all windows. (The old code
8829             would send the WM_DESTROY to the window, and then all child
8830             windows would be 'gone' because the WM_DESTROY handle lookup
8831             would no longer find the destroyed window)
8832         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8833         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8834
8835 2006-03-31  Jackson Harper  <jackson@ximian.com>
8836
8837         * ScrollableControl.cs: Dont recalc if we are not visible.
8838
8839 2006-03-31  Mike Kestner  <mkestner@novell.com>
8840
8841         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8842         the visibility branch.
8843
8844 2006-03-31  Jackson Harper  <jackson@ximian.com>
8845
8846         * ScrollBar.cs: Cap values when incrementing/decrementing.
8847
8848 2006-03-31  Mike Kestner  <mkestner@novell.com>
8849
8850         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8851         * ToolTip.cs: guard against timer expirations with no active control.
8852         Not sure why it happened.
8853
8854 2006-03-31  Mike Kestner  <mkestner@novell.com>
8855
8856         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8857         text.
8858         * ToolTip.cs: Position the tooltip based on where the cursor is at
8859         popup time, not at MouseEnter time.  Add a Down state so that we don't
8860         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8861         positioning offset. Lookup DisplaySize at positioning time, since it
8862         can theoretically change during invocation.
8863         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8864         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8865
8866 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8867
8868         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8869           Fixes behaviour when the Text property of the box is String.Empty
8870
8871 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8872
8873         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8874           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8875           a window)
8876
8877 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8878
8879         * FileDialog.cs: Visual enhancement for the popup buttons in 
8880           PopupButtonPanel
8881
8882 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8883
8884         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8885           code
8886
8887 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8888
8889         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8890           highlighted menu items to match ms
8891
8892 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8893
8894         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8895
8896 2006-03-30  Mike Kestner  <mkestner@novell.com>
8897
8898         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8899         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8900         go active to account for HotLight to Selected transition.
8901         * MenuItem.cs: add internal Selected prop. Fill out the Status
8902         property by calculating it from item info. Add HotLight,
8903         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8904
8905 2006-03-30  Mike Kestner  <mkestner@novell.com>
8906
8907         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8908
8909 2006-03-29  Jackson Harper  <jackson@ximian.com>
8910
8911         * Form.cs: Implement TODO.
8912
8913 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8914
8915         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8916           missing proper dialog setup in the constructor
8917
8918 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8919
8920         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8921         * Control.cs:
8922           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8923           - Fixed ResetBindings and removed TODO
8924           - Added check for cross-thread calls to get_Handle()
8925           - Added Marshaller attribute for set_Font to satisfy class status
8926         * FontDialog.cs: Removed TODOs that seemed implemented
8927         * UpDownBase.cs: Removed unneeded TODO and Fixme
8928         * MessageBox.cs: Implemented support for Default button and removed TODO
8929         * FileDialog.cs: Removed obsolete TODO
8930         * DomainUpDown.cs: Removed obsolete TODO
8931         * ButtonBase.cs: Removed obsolete TODO
8932         * XplatUIWin32.cs: Removed obsolete TODO
8933         * Form.cs:
8934           - Removed obsolete TODO
8935           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8936             internal status updates
8937           - Making sure the active control is selected when the control is created
8938         * CurrencyManager.cs: Removed obsolete TODO
8939
8940 2006-03-29  Mike Kestner  <mkestner@novell.com>
8941
8942         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8943         of PrintPreviewDialog and RichTextBox.
8944
8945 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8946
8947         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8948           DarkDark, Light and LightLight colors for a specific color
8949         * ThemeWin32Classic.cs:
8950           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8951             Appearance = Button 
8952           - Make use of the new ResPool helper CPColor
8953           - Draw ProgressBar and StatusBar with correct 3D borders
8954
8955 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8956
8957         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8958
8959 2006-03-28  Mike Kestner  <mkestner@novell.com>
8960
8961         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8962         calculating col/row counts.
8963
8964 2006-03-28  Mike Kestner  <mkestner@novell.com>
8965
8966         * ColumnHeader.cs:
8967         * ListView.cs:
8968         * ListViewItem.cs:
8969         * Menu.cs: 
8970         switch to explicit interface method implementation for some methods
8971         corcompare identifies as inconsistent with MS.
8972
8973 2006-03-28  Mike Kestner  <mkestner@novell.com>
8974
8975         * MainMenu.cs: 
8976         * Menu.cs:
8977         add a few missing methods from the class status output.
8978
8979 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8980
8981         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8982           correct.
8983
8984 2006-03-28  Mike Kestner  <mkestner@novell.com>
8985
8986         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8987
8988 2006-03-27  Mike Kestner  <mkestner@novell.com>
8989
8990         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8991         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8992
8993 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8994
8995         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8996
8997 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8998
8999         * ThemeWin32Classic.cs:
9000           - GroupBox: Inserted a little gap between the text and the lines
9001             on the right side
9002           - Made the code in CPDrawBorder3D more readable
9003           - Corrected the drawing location of the up and down arrows in 
9004             CPDrawScrollButton
9005
9006 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9007
9008         * ControlPaint.cs: Corrected line widths in DrawBorder for
9009           ButtonBorderStyle Inset and Outset
9010
9011 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9012
9013         * ThemeWin32Classic.cs:
9014           - Rewrote the totally broken CPDrawBorder3D method. That was
9015             one of the main problems for the terrific ThemeWin32Classic
9016             look
9017           - Updated and corrected Button drawing
9018           - Correct the dimensions of the SizeGrip to match ms ones
9019           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9020         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9021           Border3DStyle.Sunken to match ms.
9022
9023 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9024
9025         * ThemeWin32Classic.cs: First small part of the "de-uglify
9026           ThemeWin32Classic" effort, SizeGrip
9027
9028 2006-03-24  Jackson Harper  <jackson@ximian.com>
9029
9030         * XplatUIX11.cs: Give a max idle time of one second, this matches
9031         MS and forces an Idle event every second when there are no other
9032         events in the queue.
9033
9034 2006-03-24  Mike Kestner  <mkestner@novell.com>
9035
9036         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9037         * ListView.Item.cs: fix layout issues with null image lists and images
9038         smaller than checkbox size.
9039         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9040         mode like MS does.  It's weird, but consistent.  ;-)
9041         Fixes #77890.
9042
9043 2006-03-24  Mike Kestner  <mkestner@novell.com>
9044
9045         * ListView.cs: Scroll wheel support for the item control.  Fixes
9046         #77839.
9047
9048 2006-03-23  Jackson Harper  <jackson@ximian.com>
9049
9050         * ScrollableControl.cs: Special case negative sized areas, not
9051         zero.
9052         * MonthCalendar.cs: Save the rect of the clicked date so we can
9053         use it for invalidation.
9054         - Try to cut down on the number of invalidates
9055         - Invalidate the rect the mouse is over and was over when moving
9056         the mouse, so we get the focus box following the cursor.
9057
9058 2006-03-23  Mike Kestner  <mkestner@novell.com>
9059
9060         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
9061         focus rectangle drawing. Fixes #77835.
9062
9063 2006-03-23  Mike Kestner  <mkestner@novell.com>
9064
9065         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
9066         the if and else if and reverting back to the original == check on the
9067         None conditional.
9068
9069 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9070
9071         * FontDialog.cs: Update the example panel if the selected index of
9072           the fontListBox changes.
9073
9074 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
9075
9076         * FileDialog.cs: Make FileDialog remember which directory it was in
9077           last in the same execution.
9078
9079 2006-03-22  Mike Kestner  <mkestner@novell.com>
9080
9081         * FileDialog.cs: make the DropDownMenu on the toolbar display
9082         RadioChecks since they are mutually exclusive and that's what MS does.
9083
9084 2006-03-22  Mike Kestner  <mkestner@novell.com>
9085
9086         * Theme.cs: add Color param to CPDrawMenuGlyph.
9087         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
9088         checks and radio marks and arrows are visible on highlighted items.
9089         * ControlPaint.cs: update to use new Theme signature.
9090
9091 2006-03-22  Mike Kestner  <mkestner@novell.com>
9092
9093         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
9094         is active. Fixes #77870.
9095
9096 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9097
9098         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
9099           to be focused/selected after startup
9100
9101 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
9102
9103         * ColorDialog.cs: 
9104           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
9105             CustomColors and ShowHelp properties
9106           - Some internal rewrites to get better results when using the
9107             ColorMatrix
9108
9109 2006-03-22  Mike Kestner  <mkestner@novell.com>
9110
9111         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
9112         HoverSelection.  Fixes #77836.
9113
9114 2006-03-22  Mike Kestner  <mkestner@novell.com>
9115
9116         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
9117         ToggleButtons.  (De)Sensitize the Back button around a stack count of
9118         1, not 0.  Update ButtonSize based on a pixel count of the win32
9119         control.  Adjust the toolbar size/location for new button size.
9120
9121 2006-03-22  Jackson Harper  <jackson@ximian.com>
9122
9123         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9124         true.
9125         * ScrollBar.cs: When doing increments and decrements we need to
9126         set the Value property so that ValueChanged gets raised. A
9127         possible optimization here would be to make an internal SetValue
9128         that doesn't invalidate immediately.
9129         * ToolTip.cs: Tooltips get added to their container (when
9130         supplied) so they get disposed when the container is disposed.
9131         - Don't create tooltips for String.Empty. This prevents all these
9132         little 2-3 pixel windows from showing up when running nunit-gui
9133         and driving me mad.
9134         * Form.cs: Don't set topmost when setting the owner if the handles
9135         haven't been created yet.  The topmost set will happen when the
9136         handles are created.
9137
9138 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9139
9140         * XplatUIX11.cs:
9141           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9142           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9143             visible (to allow them to recalculate their sizes)
9144
9145 2006-03-21  Mike Kestner  <mkestner@novell.com>
9146
9147         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9148         methods. Removed a ton of redundant code.  Still not really happy with
9149         the border rendering, but I think that's mainly because of the
9150         ControlDarkDark being black instead of a dark grey. Depending on how 
9151         close we want to be, we might want to revisit those color choices.
9152         Among the new features added during the refactor were DropDownArrow
9153         pressed rendering, Disabled image rendering.  Proper flat appearance
9154         boundary rendering.  Removed the Divider and Wrapping dividers since I
9155         can't figure out any combination of themes and conditions to make the
9156         MS control draw a horizontal line on a toolbar despite what the
9157         Divider property docs indicate.
9158         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9159         conditions and incorrect layout.  Updated to coding standard.
9160         * ToolBarButton.cs: refactored layout and positioning code from
9161         ToolBar to here.  Invalidate wherever possible instead of forcing
9162         redraws of the whole toolbar. 
9163         (Known remaining issues: explicit ButtonSize smaller than provided
9164         images.)
9165
9166 2006-03-21  Mike Kestner  <mkestner@novell.com>
9167
9168         * ContextMenu.cs (Show): use the position parameter instead of just
9169         showing at the MousePosition.
9170
9171 2006-03-21  Jackson Harper  <jackson@ximian.com>
9172
9173         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9174         control handle this.
9175         * TreeNodeCollection.cs: If we are clearing the root node we need
9176         to reset top_node so calcs can still happen.
9177         * ThemeWin32Classic.cs: This is a Flags so we need to check
9178         properly.
9179         
9180 2006-03-21  Jackson Harper  <jackson@ximian.com>
9181
9182         * DataGrid.cs: Create columns when the binding context has been
9183         changed.
9184         * X11Structs.cs: Keysyms are uints.
9185         - Add size to fix build.
9186
9187 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9188
9189         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9190           XplatUIOSX.cs: 
9191           - Added ResetMouseHover method to allow controls to retrigger
9192             hovering if they need it more than once
9193           - Implemented MouseHoverTime and MouseHoverSize properties
9194         * Timer.cs: Start() must reset the interval
9195         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9196           properties
9197
9198 2006-03-21  Jackson Harper  <jackson@ximian.com>
9199
9200         * X11Keyboard.cs: improved layout detection. Move the nonchar
9201         tables into this file.
9202         * KeyboardLayouts.cs: Move the tables into resource files.
9203
9204 2006-03-21  Mike Kestner  <mkestner@novell.com>
9205
9206         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9207
9208 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9209
9210         * Mime.cs: Various speed optimizations. Looking up mime types
9211           is now 2 times faster than before
9212
9213 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9214
9215         * CreateParams.cs: Added internal menu field
9216         * Control.cs: 
9217           - Switched call order for UpdateBounds; now we always call
9218             the one that also takes ClientSize, and we're calculating the 
9219             client size via driver method in the others. The previous
9220             method of tracking client size by difference wasn't working
9221             for forms where even the starting client size wouldn't match
9222             the overall form size (due to borders) (Part of fix for #77729)
9223           - CreateParams(): Do not use parent.Handle unless the handle is
9224             already created. Causes havoc with Nexxia and throws off our
9225             creation of controls
9226         * XplatUIX11.cs:
9227           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9228           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9229             method (consolidates code)
9230           - Changed RequestNCRecalc to use new PerformNCCalc method
9231           - Added calls to RequestNCRecalc when menus and borders are changed
9232             to allow app to set NC size. (Part of fix for #77729) This matches
9233             when MS send a WM_NCRECALC on Win32 windows.
9234           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9235             (Part of fix for #77729). This matches what MS does, they also
9236             send that message when the form is made visible.
9237           - XException.GetMessage: Improved usability of X errors by including
9238             a translation of the window into Hwnd and Control class
9239           - Improved debug info for window creation, reparenting and destruction
9240           - Created helper method WindowIsMapped() [Currently not used]
9241         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9242         * Form.cs:
9243           - CreateParams: Now setting our menu on the new internal menu field
9244           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9245             avoid calculating the same property twice
9246         * Hwnd.cs:
9247           - Improved usability of ToString() for debugging purposes
9248           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9249             determine the height of the menu, instead of just the font. This
9250             required to also create a graphics context and to keep a bmp 
9251             around (for performance reasons)
9252
9253 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9254
9255         * MenuAPI.cs: Added OnMouseUp method
9256         * Form.cs:
9257           - Now remembering the requested client size, avoids size errors
9258           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9259             instead of base if the menu is active. This is required due to
9260             control now capturing and releasing on down/up and it would
9261             prematurely release our menu capture
9262
9263 2006-03-17  Jackson Harper  <jackson@ximian.com>
9264
9265         * KeyboardLayouts.cs: Add the czech layouts.
9266
9267 2006-03-16  Jackson Harper  <jackson@ximian.com>
9268
9269         * Control.cs: Use the viewport space when sizing not the controls
9270         client size, so things like ScrollableControl that effect the
9271         viewport size (when scrollbars are added) are computed correctly.
9272         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9273         of ManagerEntrys.
9274         - Handle creating BindingManagers for null data sources.
9275         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9276         source, otherwise when rows are added they are added to the 'fake'
9277         datasource and we will crash when trying to set the position in
9278         those rows.
9279         - Use Implicit scrollbars on the datagrid so they arent
9280         selectable.
9281         
9282 2006-03-16  Jackson Harper  <jackson@ximian.com>
9283
9284         * Binding.cs:
9285         * InternalWindowManager.cs:
9286         * MdiWindowManager.cs:
9287         * X11Keyboard.cs: I really want Mike to love me again (fix
9288         compiler warnings).
9289
9290 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9291
9292         * DataGrid.cs:
9293           - OnMouseDown: Switch to editing mode when clicking on the cell
9294                          even if we're clicking on the cell that's currently 
9295                          selected
9296           - ProcessGridKey: Left/Right now wrap like MS.Net does
9297           - ProcessGridKey: Tab now knows to add a new row when tab is
9298                             pressed in the cell of the last column of the 
9299                             last row
9300           - ProcessGridKey: Enter now adds another row  if pressed in the last
9301                             row and selectes the new row, same column cell
9302           - ProcessGridKey: Home/End navigate columns, not rows, like 
9303                             originally implemented
9304           - Broke ProcessKeyPreview code out into an extra Internal method
9305             so it can be called from the edit code
9306         * DataGridTextBox.cs (ProcessKeyMessage):
9307           - Switched to accept Tab keypresses
9308           - Added F2 handling to allow jumping to the end of the edited cell
9309           - Added logic to allow moving caret left/right inside edited cell
9310             and making the edited cell jump when the caret hits cell borders
9311           - Tab and Enter are now passed to the datagrid after being handled
9312         * TextBoxBase.cs:
9313           - Removed capture code now that Control handles it
9314           - set_SelectionStart now ensures caret is visible
9315
9316 2006-03-16  Jackson Harper  <jackson@ximian.com>
9317
9318         * TrackBar.cs: Debackwards the increment/decrement for handling
9319         mouse clicks on the bar with vertical trackbars.
9320         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9321         bottom to match MS.
9322
9323 2006-03-16  Mike Kestner  <mkestner@novell.com>
9324
9325         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9326         consistent with the MS control. Fix a bug in
9327         SelectedListViewItemCollection.Clear that was pissing me off for the
9328         better part of a day because the collection was being altered
9329         underneath us as we walked the list.
9330
9331 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9332
9333         * Control.cs: Not sure how we could miss this so long, but it seems
9334           that MS.Net has Capture set all the way from before calling 
9335           OnMouseDown through sending the mouse events until after
9336           OnMouseUp. This will fix DataGrid's selection being set to end
9337           at the location of the MouseUp.
9338
9339 2006-03-15  Jackson Harper  <jackson@ximian.com>
9340
9341         * BindingContext.cs: Check the binding after its added so that it
9342           can initialize the binding managers and hookup to events.
9343         * Binding.cs: Data members seem to sometimes include rows/cols in
9344           the format Row.Column we now take this into account.
9345           - Hookup to the position changed event so we can update the
9346           control when the position has changed in the data set.
9347         * CurrencyManager.cs: Take into account the row/col naming
9348           convention when creating dataset tables.
9349         * BindingContext.cs: Using a newer better way of storing
9350           datasource/datamember pairs.  Hopefully this better matches MS for
9351           looking up binding managers.
9352
9353
9354 2006-03-15  Jackson Harper  <jackson@ximian.com>
9355
9356         * BindingContext.cs: The currency manager needs the data member
9357         name, if the member is a data set we use the name to find the
9358         correct table.
9359         * CurrencyManager.cs: When creating the list prefer an IList over
9360         an IListSource.
9361         - Attempt to create a DataTable from a DataSet (TODO: might need
9362         some better error checking here, although MS doesn't seem to have much)
9363         - If we have a DataTable create a view and use it as our list.
9364
9365 2006-03-15  Mike Kestner  <mkestner@novell.com>
9366
9367         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9368         keyboard navigation. Support Up/Down/Left/Right selection correctly
9369         for all 4 View modes.
9370         * ListViewItem.cs: add internal row/col fields for icon layouts.
9371
9372 2006-03-15  Jackson Harper  <jackson@ximian.com>
9373
9374         * TabControl.cs: Redraw the tabs when we resize so their newly
9375         calculated sizes are drawn on screen.
9376         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9377         composite characters.
9378         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9379         - filter events so that composite characters can be created
9380         patches by peter
9381         * X11Structs.cs: Add XIMProperties enum.
9382
9383 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9384
9385         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9386           unless it's created
9387
9388 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9389
9390         * Control.cs (PerformLayout): We don't need to consider visiblity
9391           for anchoring, only for docking. This fixes 'whacky' alignment
9392           in listbox and other controls that use implicit scrollbars after
9393           the previous PerformLayout patch
9394         * ListBox.cs: Switched to use implicit scrollbars
9395           
9396 2006-03-14  Mike Kestner  <mkestner@novell.com>
9397
9398         * ToolBar.cs: 
9399         * VScrollBar.cs:
9400         - chain up the "new event" overrides to base and use
9401         OnEvent to raise them.  Part of fix for bug #76509.
9402
9403 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9404
9405         * FileDialog.cs: Do not select an item in the parent directory
9406           on backspace
9407
9408 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9409
9410         * Control.cs (PerformLayout): It would seem that we considered
9411           invisible windows for our layout. Not quite the right thing
9412           to do. Now we don't any longer, thereby fixing bug #76889.
9413
9414 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9415
9416         * Control.cs (CanFocus): I goofed. A control can have focus 
9417           even though it's not selectable. Made it match MS docs.
9418
9419 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9420
9421         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9422           center by default (fixes #76895)
9423         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9424           all uses of Border3DSides.All with the explicit ORd together
9425           Left|Right|Top|Bottom because I assume that nobody was aware 
9426           that All also implies a center fill. Most places I checked had
9427           a fill right above.
9428         * ProgressBarStyle.cs: Added
9429
9430 2006-03-13  Mike Kestner  <mkestner@novell.com>
9431
9432         * ListView.cs: fix breakage in drag shadow header positioning 
9433         from Peter's csc compilation fix.
9434
9435 2006-03-13  Mike Kestner  <mkestner@novell.com>
9436
9437         * ListView.cs: fix NRE produced by backspacing twice in a focused
9438         FileDialog.
9439
9440 2006-03-13  Mike Kestner  <mkestner@novell.com>
9441
9442         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9443
9444 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9445
9446         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9447           be changed
9448         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9449           the allowed size before making programmatic size changes
9450
9451 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9452
9453         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9454           set, metacity is broken and will still use the emty sizes in 
9455           the struct. (Fix for #77089)
9456
9457 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9458
9459         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9460           WindowExStyles and marked both enums as Flags
9461         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9462           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9463           to match WindowStyles split
9464         * XplatUIX11.cs:
9465           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9466           - Updated to match WindowStyles split
9467         * XplatUIWin32.cs:
9468           - Fixed FosterParent creation, was using ExStyle on the Style field
9469             (This should help with Popup focus issues)
9470           - Updated to match WindowStyles split
9471
9472 2006-03-13  Jackson Harper  <jackson@ximian.com>
9473
9474         * MdiWindowManager.cs: Use the system menu height. Fixes some
9475         strange sizing issues.
9476
9477 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9478
9479         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9480         * TextBoxBase.cs:
9481           - Scroll to caret after inserting text (#77672)
9482           - Make scroll range one pixel higher, fixes off-by-one error (and
9483             makes underlines visible on the last line)
9484
9485 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9486
9487         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9488           the keyboard state from being stuck with keys in 'pressed' state when
9489           focus is switched away via keyboard
9490         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9491           reset the keyboard if no X11 KeyUp events are expected to come
9492         * X11Structs.cs: Switched type of Visible to bool to match driver
9493
9494 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9495
9496         * TextControl.cs:
9497           - Switched caret to be just 1 pixel wide, matches MS and looks less
9498             clunky
9499           - Moved caret display 1 pixel down from the top of the control
9500             to improve view
9501           - InsertCharAtCharet: Update the selection start if moving the caret
9502             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9503           - No longer always creating the caret when the caret methods are
9504             called. Only the actual ShowCaret/HideCaret will do that now
9505           - Only setting caret visible if the owner control has focus
9506           - UpdateView: Added invalidation-shortcut logic for center and right 
9507             aligned text. Previously we'd update all according to the left
9508             logic which caused drawing errors. Also fixed height of invalidated
9509             areas, now properly invalidating the whole area (was off-by-one)
9510           - owner_HandleCreated: Always generate the document when the
9511             handle is created; this ensures that 
9512         * TextBoxBase.cs:
9513           - Fixed situation where caret would disappear under the right
9514             window border, also improved scrolling behaviour on left-
9515             aligned textboxes
9516           - Fixed right-aligned textboxes to have a border to the
9517             right instead of the caret being under the right border
9518         * XplatUIX11.cs:
9519           - Switched from 'nested' to simple visible/not visible tracking 
9520             for caret (part of fix for #77671)
9521           - No longer passing through translated FocusIn/FocusOut messages
9522             since we were notifying too often and the wrong windows. Instead
9523             we just notify our focussed window of receiving or loosing focus
9524         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9525           counting for caret to simple visible yes/no behaviour (part of 
9526           fix for #77671)
9527
9528 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9529
9530         * Mime.cs: Remove debug code...
9531
9532 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9533
9534         * MimeGenerated.cs: Removed
9535         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9536           and subclasses) from /usr/(local/)share/mime and
9537           $HOME/.local/share/mime.
9538
9539 2006-03-10  Jackson Harper  <jackson@ximian.com>
9540
9541         * MdiWindowManager.cs: Recalc the NC area when a window is
9542         maximized/restored so that the menu area is drawn on forms that
9543         don't have a menu.
9544
9545 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9546
9547         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9548           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9549           us to force a WM_NCCALCRESIZE message being sent. This is needed
9550           for MDI maximizing.
9551
9552 2006-03-10  Jackson Harper  <jackson@ximian.com>
9553
9554         * Form.cs: We need to use the ActiveMenu when calculating menu
9555         height.
9556         - Fix nullref when the window manager hasn't been created yet.
9557         * Control.cs: Fix nullref when we try to bring a control to the
9558         front that has no parent.
9559         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9560         height.
9561         - Add a dummy item to the maximized menu so it always has the
9562         correct height. Otherwise when there are no menus we don't get our
9563         icon and buttons.
9564         
9565
9566 2006-03-10  Jackson Harper  <jackson@ximian.com>
9567
9568         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9569         stuff.
9570         * Form.cs: Make the window_state internal so the window managers
9571         can track it.
9572         - When an MDI child is maximized let its window manager create the
9573         main menu (so it can add its icon).
9574         - Notify the window managers of state changes
9575         - Let the window manager paint its buttons and handle button
9576         clicks on the menu when it is maximized.
9577         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9578         window manager, since tool windows don't use it, only mdi windows.
9579         - Tell the main form that we don't want it to handle NCPAINT
9580         itself to avoid extra painting.
9581         - Handle clicks on a maximized windows menu.
9582         - Handle window state changes
9583         - Handle minimize/maximize clicks correctly by setting the window state.
9584         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9585         when clicking on the forms icon).
9586         - New method to create a forms maximized menu. This is its normal
9587         menu + an icon.
9588         - Handle window state changes.
9589         - Handle sizing of maximized windows.  Maximized windows are just
9590         drawn bigger then the parent visible area. All controls are still
9591         there, they are just outside the visible area (this matches windows).
9592         * MdiClient.cs: No scrollbars when a child window is maximized.
9593         - Let the children windows figure out how big they should be when
9594         sizing maximized windows.
9595         - Implement a version of ArrangeIconicWindows somewhat similar to
9596         Windows version.  There are some little differences, but I don't
9597         think any app will rely on the layout of minimized mdi windows.
9598
9599 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9600
9601         * Padding.cs: Several fixes to allow compiling with csc 2.0
9602
9603 2006-03-09  Jackson Harper  <jackson@ximian.com>
9604
9605         * Menu.cs:
9606         * MenuItem.cs: Cheap hack so we can add items to the list without
9607         the events being raised.  This allows adding mdi items during
9608         drawing. TODO: Should probably find a better time to add the items.
9609
9610 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9611
9612         * ThemeWin32Classic.cs:
9613           - CheckBox_DrawText: Added logic to not wrap if not enough space
9614             is available (Fix for bug #77727)
9615           - RadioButton_DrawText: Added logic not to wrap if not enough
9616             space is available (Fix for bug #77727). Also removed some
9617             duplicate code, DrawString always drawing the regular text
9618             before hitting the if statement.
9619
9620 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9621
9622         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9623
9624 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9625
9626         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9627         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9628           methods. Moved the new 2.0 properties into alphabetical order with
9629           other properties and added MonoTODO tags
9630
9631 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9632
9633         * AutoScaleMode.cs: Added. Fix build.
9634
9635 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9636
9637         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9638           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9639           and was requiring premature handle creation for calls from above
9640         * Form.cs, Control.cs: Removed handle arguments from calls to
9641           CalculateClientRect()
9642
9643 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9644
9645         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9646           drag_column.column_rect is MarshalByRef and can't be used that way
9647
9648 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9649
9650         * AxHost.cs: Added deserialization constructor for 
9651           AxHost+State (fixes 77743)
9652
9653 2006-03-09  Mike Kestner  <mkestner@novell.com>
9654
9655         * ListView.cs: 
9656         - Added column drag reordering for details view.
9657         - fixed behavior when mouse is dragged off column and
9658         AllowColumnReorder is false.
9659         * ColumnHeader.cs: clone the format too in Clone.
9660         * Theme.cs: add DrawListViewHeaderDragDetails method.
9661         * ThemeWin32Classic.cs:
9662         - impl new method for drawing drag column shadows and targets.
9663         - support column offset for details mode in DrawListViewItem.
9664
9665 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9666
9667         * TextControl.cs: Reset the char_count when the document is cleared
9668           (Fixes bug reported on mono-winforms mailing list)
9669
9670 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9671
9672         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9673           of calling base we simply process the key ourselves, since both
9674           DefWindowProc and the handled method would set m.Result. 
9675           (Fixes #77732)
9676
9677 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9678
9679         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9680           method also moves the window; instead implemented a copy of
9681           Control.ScaleCore (Part of fix for #77456)
9682         * TextBoxBase.cs: 
9683           - Created new CreateGraphicsInternal method to allow providing
9684             a graphics context when no handle is created without triggering
9685             handle creation. (Part of fix for #77456)
9686           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9687         * TextControl.cs: 
9688           - Switched Constructor to require TextBoxBase instead of Control (to
9689             allow uncast access to CreateGraphicsInternal)
9690           - Safeguarded use of owner.Handle property. No longer accessing it
9691             unless the handle is already created.
9692           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9693           - Now triggering a recalc when owning control becomes visible
9694         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9695           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9696           premature handle creation (Part of fix for #77456)
9697         * Control.cs:
9698           - We now only destroy our double-buffering buffers when the
9699             control is resized or disposed, but not when visibility
9700             changes. (The code even re-created them twice every time)
9701           - Now requiring a redraw of the buffer on visibility changes
9702             (fixes bug 77654 part 2)
9703           - Not passing OnParentVisibleChanged up unless the control
9704             is visible
9705           - CanFocus: Fixed to match MS documentation
9706           - Focus: Fixed to return actual focus state and to check if
9707             setting focus is legal before setting it
9708
9709 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9710
9711         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9712           when to draw focus rectangle by looking at parent focus and
9713           selected state instead. This fixes TabPages on Linux sometimes
9714           having none or multiple focus rectangles.
9715         * XplatUIX11.cs (SetFocus): 
9716           - Don't set the focus if the same window already has focus
9717           - Use SendMessage instead of PostMessage (like it's Win32
9718             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9719             to match MS behaviour
9720         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9721           are not selectable.
9722
9723 2006-03-07  Jackson Harper  <jackson@ximian.com>
9724
9725         * PictureBox.cs: Revert line I accidently committed last week.
9726
9727 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9728
9729         * Control.cs: 
9730           - Added new IsRecreating and ParentIsRecreating properties to
9731             allow testing if RecreateHandle has been called on ourselves
9732             or one of our parents
9733           - WndProc(WM_DESTROY): If our control handle is being recreated
9734             we immediately need to create the handle when receiving the
9735             destroy, that way our child windows find a valid parent handle
9736             when they themselves are being recreated upon WM_DESTROY receipt
9737             (fix for bug #77654 part 1)
9738         * XplatUIX11.cs:
9739           - DestroyWindow: WM_DESTROY must be sent to our own window before
9740             notifying any child windows. MS documents that child windows
9741             are still valid when WM_DESTROY is received. (Control now relies on
9742             this behaviour)
9743           - Added some fine-grain debug options
9744
9745 2006-03-06  Jackson Harper  <jackson@ximian.com>
9746
9747         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9748         box and base calculations off this.
9749         * MdiChildContext.cs:
9750         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9751         anymore.
9752         
9753 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9754
9755         * Splitter.cs: In situations where the affected control is added
9756           to the parent's control list after the splitter, we would not
9757           populate affected. Now we try populating it on mousedown, if
9758           it's not already set, and force it to be re-set whenever our
9759           parent changes.
9760
9761 2006-03-03  Matt Hargett  <matt@use.net>
9762
9763         * Control.cs: implement Control.Padding
9764         * Padding.cs: -Padding.All returns -1 when constructing with the
9765         implicit default ctor
9766         -Padding.ToString() matches MS.NET
9767         * ContainerControl.cs: implement
9768         ContainerControl.AutoScaleDimensions
9769         * ListControl.cs: implement ListControl.FormattingEnabled
9770         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9771         * ButtonBase.cs:
9772         * TabPage.cs: Implement UseVisualStyleBackColor.
9773         * PictureBox.cs: Implement PictureBox.InitialImage.
9774
9775 2006-03-03  Mike Kestner  <mkestner@novell.com>
9776
9777         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9778         event declarations to proxy to base event.
9779         * ListViewItem.cs: update to use ItemControl.
9780         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9781         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9782         column header label rendering for 0 width columns.
9783
9784 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9785
9786         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9787           that causes the control to be created. Fixes #77476.
9788
9789 2006-03-02  Jackson Harper  <jackson@ximian.com>
9790
9791         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9792         expose_pending.
9793
9794 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9795
9796         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9797           passed in for the EventArgs (fixes #77690)
9798
9799 2006-03-01  Jackson Harper  <jackson@ximian.com>
9800
9801         * ScrollBar.cs: Refresh afterbeing resized.
9802
9803 2006-02-28  Mike Kestner  <mkestner@novell.com>
9804
9805         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9806         Clean up a tracker compile warning.
9807         * MenuItem.cs: add internal PerformPopup method.
9808         [Fixes #77457]
9809
9810 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9811
9812         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9813           implicit expose) when the text is set to null
9814
9815 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9816
9817         * RichTextBox.cs (FlushText): When newline is true, we always
9818           need to split the line, even if no text is on it and we may
9819           never eat newlines. (Fixes #77669)
9820
9821 2006-02-28  Mike Kestner  <mkestner@novell.com>
9822
9823         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9824         and set Selected instead.
9825         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9826         collections.
9827
9828 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9829
9830         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9831
9832 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9833
9834         * FontDialog.cs:
9835           - Got rid of the panel. All controls are now directly added to
9836             the dialog form
9837           - It is now possible to set a font with the Font property
9838           - MinSize and MaxSize property do now what they should
9839           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9840           - Searching and selecting a font with the font textbox works now,
9841             the same applies to the style and size textbox
9842           - Draw the correct 3D border in the example panel
9843           - Fixed a little mem leak (unused fonts didn't get disposed)
9844           - Many other internal updates/rewrites...
9845           - Fix typo
9846
9847 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9848
9849         * TextControl.cs: 
9850           - InsertRTFFromStream: Added 'number of characters inserted' argument
9851           - set_SelectedRTF: Now using the number of characters to calculate
9852             the new location for the selection and cursor (x/y cannot be used
9853             due to potentially already wrapped text)
9854
9855 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9856
9857         * TextControl.cs: Added property and implemented means to allow 
9858           disabling recalculation of a document (can be used to speed up
9859           multiple inserts and is needed to make RTF inserts predictable, see
9860           bug #77659)
9861         * RichTextBox.cs: Using the new NoRecalc property of Document to
9862           keep x/y insert locations predictable. Also makes it faster inserting
9863           large chunks of RTF
9864
9865 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9866
9867         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9868           it's easier for a child control to handle the other messages without
9869           having to duplicate the special functionality
9870         * TextBoxBase.cs
9871           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9872             code to handle processing the key ourselves, in order to get 
9873             access to the result of KeyEventArgs.Handled. We now only call 
9874             ProcessKey if they key hasn't been handled already. Fixes #77526.
9875           - set_Text: If null or empty string is given, just clear the 
9876             document. Fixes part of #77526
9877
9878 2006-02-27  Jackson Harper  <jackson@ximian.com>
9879
9880         * SizeGrip.cs: Paint the background color before painting the grip
9881         so things look right.
9882         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9883
9884 2006-02-27  Mike Kestner  <mkestner@novell.com>
9885
9886         * ListView.cs:
9887           - Restructure layout and invalidation model to remove a ton of
9888           flicker from the control and speed up performance in general.
9889           - Add manual column resize, flickers like crazy, but I already have
9890           some ideas on how I'll fix that. (#76822)
9891           - Merge the three Icon-based views into a single layout method.
9892           - Move item selection interaction logic from the item since 
9893           interaction with the collections is more appropriate to the view.
9894           - Deselection on non-item clicks.
9895         * ListViewItem.cs:
9896           - Encapsulate most of the layout. Add some internal props to trigger
9897           layout.  Move to a model where Items invalidate themselves instead
9898           of just invalidating the whole control every time something changes.
9899           - Invalidate on Text/Caption changes.
9900           - switch to an offset based layout model to avoid having to absolute
9901           position every element on item moves.
9902           - correct checkbox layout to conform to MS layout.
9903         * ThemeWin32Classic.cs:
9904           - refactor some column header drawing code.
9905           - fix string justification for column headers (#76821)
9906           - make SmallIcon labels top justified for compat with MS impl.
9907         * ThemeClearlooks.cs:
9908           - adjust to new ListViewItem internal checkbox bounds api.
9909
9910 2006-02-27  Jackson Harper  <jackson@ximian.com>
9911
9912         * Control.cs:  Change where implicit controls fall in the zorder.
9913         They are now on top of all children.
9914         - Synced AddImplicit code with Add
9915         - Removed unused enumerator.
9916         * SizeGrip.cs: Remove the TODO as its been TODONE.
9917
9918 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9919
9920         * TextControl.cs(Insert): Combine the last lines unless the insertion
9921           string ends with \n\n, otherwise we leave one line too many (Fixes
9922           something I noticed with the testapp for #77526; the bug itself was
9923           already fixed in the previous checkin)
9924
9925 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9926
9927         * RichTextBox.cs:
9928           - SelectionColor and SelectionFont methods no longer set absolute
9929             styles. Instead, the keep font or color respectively (This 
9930             resolves a long-standing FIXME in the code)
9931           - When flushing RTF text, the insert code now considers text trailing
9932             behind the insertion point (Fixes the bug where when replacing
9933             the selected text via SelectedRTF the remainder of the line behind 
9934             the selection would stay on the first insertion line)
9935         * TextBoxBase.cs:
9936           - AppendText now updates the selection points after inserting text
9937           - AppendText now ensures that the last tag (sometimes 0-length) of
9938             the document is used for the style information (Fixes part of 
9939             bug #77220)
9940         * TextControl.cs:
9941           - Created new FontDefiniton class to allow describing partial style
9942             changes
9943           - StreamLine() now takes a lines argument, to allow it to decide
9944             whether an encountered zero-length tag is the last in the document
9945             (which must be kept to not loose the font/color contained in it,
9946             for later appends)
9947           - Created Combine() and Split() methods for Marker structs, to 
9948             support marker updates due to reformatted documents (soft line
9949             wraps)
9950           - Implemented Document.CaretTag setter
9951           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9952             of the last line (Not the cause, but also exposed by bug #77220)
9953           - Added LineTag argument to InsertString method, to allow callers
9954             to force a certain tag to be used (required to force use of the
9955             trailing zero-length tag of a document)
9956           - Now updating markers in Combine(), to avoid stale tag markers
9957           - Added some method descriptions to aid maintenance
9958           - Implemented new FormatText concept, allowing additive/subtractive
9959             formatting by only specifying the components that are to be 
9960             changed. This was needed for resolving the RTB.SelectedColor/
9961             RTB.SelectedFont fixmes
9962           - Added Break() support method to allow breaking up linetags (used
9963             for partial formatting)
9964           - Added GenerateTextFormat() method. It is used for partial 
9965             formatting and allows to generate a full font/color from given
9966             attributes and an existing tag.
9967
9968 2006-02-26  Jackson Harper  <jackson@ximian.com>
9969
9970         * XplatUIX11.cs:  Use the correct caption height.
9971         - Translate hittest coordinates to screen coords to match MS.
9972         * XplatUIWin32.cs: When we create MDI windows we need to reset
9973         some of the style flags, so we get a nice blank window, and can
9974         draw all the decorations ourselves.
9975         - Set a clipping rectangle on the non client paint event, the
9976         window manager drawing code needs one.
9977         * Form.cs: The window manager needs to know when the window state
9978         has been updated.
9979         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9980         don't need to factor in border and title sizes in these
9981         methods. TODO: Remove the args and fix the call points.
9982         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9983         properly.
9984         - Let the driver set the cursors.
9985         - Improve active window handling
9986         - Correct sizes for title bars and buttons.
9987         - Match MS drawing better
9988         * MdiWindowManager.cs: We don't need to handle border style
9989         updates specially anymore.
9990         - Check for scrollbars when windows are done moving
9991         - Handle Active properly.
9992         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9993         correctly. I am spewing the exception though, so we don't hide the
9994         bugs.
9995         
9996 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9997
9998         * DataGridViewRowPostPaintEventArgs.cs,
9999           DataGridViewCellPaintingEventArgs.cs,
10000           DataGridViewRowCollection.cs,
10001           DataGridViewRowPrePaintEventArgs.cs,
10002           DataGridViewCell.cs: Clear a few warnings and implement a few
10003           exceptions that should be thrown.
10004
10005 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10006
10007         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10008           'inheriting' our parent's (non-default) cursor. (Part of
10009            the fix for #77479)
10010
10011 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10012
10013         * XplatUIX11.cs: Fixed cast to make csc happy
10014
10015 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10016
10017         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10018           it's for the client area (part of fix for #77479 and needed
10019           for MDI window cursor handling)
10020         * XplatUIX11.cs
10021           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10022             the appropriate default cursors and also passing the message
10023             up the parent chain 
10024           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10025             for non-client areas
10026
10027 2006-02-15  Jackson Harper  <jackson@ximian.com>
10028
10029         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10030         is a real MDI window
10031
10032 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10033
10034         * X11DesktopColors.cs: Instead of checking the desktop session
10035           string for "KDE" check if it starts with "KDE"
10036
10037 2006-02-10  Jackson Harper  <jackson@ximian.com>
10038
10039         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10040         systems).
10041
10042 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10043
10044         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
10045           errors
10046         * ColorDialog.cs:
10047           - Got rid of the panel. All controls are now directly added to
10048             the dialog form
10049           - Changed to mono coding style
10050
10051 2006-02-10  Jackson Harper  <jackson@ximian.com>
10052
10053         * InternalWindowManager.cs: We don't need the set visibility to
10054         false hack anymore now that peter has written beautiful shutdown
10055         code.
10056
10057 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
10058
10059         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
10060           where already explicitly destroyed
10061
10062 2006-02-10  Jackson Harper  <jackson@ximian.com>
10063
10064         * MdiClient.cs: Handle the case where windows are too high or to
10065         the left and we need scrollbars.
10066
10067 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
10068
10069         * MimeIcon.cs: Added some icons
10070         * FileDialog.cs:
10071           - Fixed bug #77477
10072           - Got rid of the panel. All controls are now directly added to
10073             the dialog form
10074           - Changed to mono coding style
10075           - On Linux "My Computer" and "My Network" will now show some
10076             more usefull information. A new class, MasterMount, gathers
10077             this information from /proc/mount. Updated MWFFileView to make
10078             use of this information
10079           - Fixed a bug that caused FileDialog to crash when
10080             ".recently_used" file had a zero size
10081           - FilterIndex does now what it should
10082           - Some Refactoring
10083         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
10084             FileDialog changes
10085
10086 2006-02-09  Jackson Harper  <jackson@ximian.com>
10087
10088         * ComboBox.cs: Don't touch if null.
10089
10090 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
10091
10092         * Cursor.cs: 64bit safeness fix
10093         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
10094
10095 2006-02-09  Jackson Harper  <jackson@ximian.com>
10096
10097         * Form.cs: If a form is made into an MDI form update the styles so
10098         all the props can get set correctly.
10099         - Kill the mdi_container when we dont need it anymore.
10100         * InternalWindowManager.cs: Add missing NOT
10101
10102 2006-02-08  Jackson Harper  <jackson@ximian.com>
10103
10104         * InternalWindowManager.cs: Respek clipping when drawing MDi
10105         decorations.
10106
10107 2006-02-08  Jackson Harper  <jackson@ximian.com>
10108
10109         * Hwnd.cs: Add bits to track non client expose events.
10110         * XplatUIX11.cs: Track non client expose events on the hwnd. This
10111         gives us a proper invalid rect and will allow for some nice
10112         optimizations with NC client drawing
10113         - MDI windows are children windows, so move their style handling
10114         into the child window block.
10115         * InternalWindowManager.cs: Remove a state reset that was
10116         getting invoked at the wrong time. Fixes managed windows getting
10117         into a 'stuck' captured state.
10118
10119 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10120
10121         * TextControl.cs (Document.ctor): Now initializing 
10122           selection_anchor. Fixes #77493
10123
10124 2006-02-07  Jackson Harper  <jackson@ximian.com>
10125
10126         * TrackBar.cs: The increment/decrements were backwards.
10127
10128 2006-02-07  Mike Kestner  <mkestner@novell.com>
10129
10130         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10131         to the instance itself.
10132
10133 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10134
10135         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10136           on ulongs and pointers, the size differs between 32bit and 64bit
10137           systems. 
10138
10139 2006-02-07  Mike Kestner  <mkestner@novell.com>
10140
10141         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10142         for 64 bit platforms to work around a metacity bug. 
10143
10144 2006-02-07  Jackson Harper  <jackson@ximian.com>
10145
10146         * TrackBar.cs: Process the input keys we need, and hookup to
10147         KeyDown instead of using WndProc, so we get key messages.
10148
10149 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10150
10151         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10152           machine we're on. 
10153         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10154           we need to translate the XdndVersion atoms array before sending it
10155
10156 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10157
10158         * XplatUIX11.cs: 
10159           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10160             number of bits for the property, not the number of bytes. The
10161             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10162             but would not crash since it specified 8 bits instead of 4 bits)
10163           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10164             defined as XID -> long in the C headers)
10165           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10166             references since those are now IntPtr to begin with
10167           - Switched all Atom.XXX 'int' casts to IntPtr casts
10168           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10169           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10170           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10171         * X11Structs.cs:
10172           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10173           - Changed atom in HoverStruct to be IntPtr
10174         * X11DnD.cs:
10175           - Removed local DllImports, switched code to use those from XplatUIX11
10176           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10177
10178 2006-02-06  Mike Kestner  <mkestner@novell.com>
10179
10180         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10181         method signatures in the import region.  There may still be some
10182         lingering struct marshaling issues, as I didn't drill down into those.
10183         Yet.
10184
10185 2006-02-06  Jackson Harper  <jackson@ximian.com>
10186
10187         * ComboBox.cs: Dont manually set the top_item, this is computed
10188         when the scrollbar position is set.
10189
10190 2006-02-06  Mike Kestner  <mkestner@novell.com>
10191
10192         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10193         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10194         usage of Atom needs to be mapped to IntPtr for example.  And there are
10195         likely other int/long issues to be addressed.
10196
10197 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10198
10199         * FileDialog.cs: One more...
10200
10201 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10202
10203         * FileDialog.cs: Next try
10204
10205 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10206
10207         * FileDialog.cs: First part of fix for #77464
10208
10209 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10210
10211         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10212           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10213           AcceptButton border drawing.
10214
10215 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10216
10217         * Form.cs: Moved positioning of form after auto scaling is applied,
10218           otherwise it would possibly use wrong form size.
10219
10220 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10221
10222         * Control.cs (RecreateHandle): No need to re-create any child
10223           controls, the child windows will get destroyed automatically by
10224           the windowing system or driver, and re-created when the handle
10225           is being accessed the first time. Fixes #77456
10226         * Form.cs: No longer setting the form to closing if the handle is 
10227           being recreated. This seems like the right thing to do, don't
10228           have a bug or testcase for this, though.
10229
10230 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10231
10232         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10233           controls to avoid unwanted side effects
10234
10235 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10236
10237         * Control.cs: 
10238           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10239             control. Fixes #77416.
10240           - DefaultSize is 0,0 for control
10241         * TextBoxBase.cs: 
10242           - DefaultSize is 100, 20
10243           - SetBoundsCore: Now enforcing the height, no matter if the provided
10244             height is more or less than the preferred one, as long as AutoSize
10245             is on
10246         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10247
10248 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10249
10250         * Control.cs:
10251           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10252             call unless both performLayout is true *and* we have a pending
10253             layout change
10254           - ResumeLayout: MS does not completely nest Suspend and Resume,
10255             they bottom out at 0, fixed our code to match that.
10256           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10257             SetBoundsCore, we were updating even when we shouldn't. This fixes
10258             swf-anchors mis-anchoring when resizing the app fast and lots.
10259           - UpdateDistances: Now only setting the left and top distance if 
10260             we have a parent and are not suspended, this is based on
10261             a suggestion by Don Edvaldson in bug #77355.
10262           - OnVisibleChanged: Fixed logic when to create the control. We may
10263             not create the control if we have no parent or if it's not visible;
10264             switched to using Visible property instead of is_visible field 
10265             since the property also considers parent states. This fixes a bug
10266             when starting Paint.Net
10267
10268 2006-02-02  Jackson Harper  <jackson@ximian.com>
10269
10270         * Form.cs: If the forms handle hasn't been created yet don't call
10271         into xplatui to make it top most, just set the topmost flag on the
10272         form in CreateParams
10273         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10274
10275 2006-02-01  Jackson Harper  <jackson@ximian.com>
10276
10277         * ScrollableControl.cs: Refactored the Recalculate method a
10278         little, this wasn't handling all the variants of bottom and right
10279         bars needed to be added and added/removed based on their
10280         counterparts being added/removed (which changes the drawable
10281         size). Also we special case client widths and heights of 0 and
10282         don't add the scrollbar for those.
10283
10284 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10285
10286         * XplatUIX11.cs: 
10287           - Added method to get AbsoluteGeometry(); currently unused, but might
10288             be used in the future, if we try again to figure out toplevel
10289             coordinates with some more crappy window managers
10290           - Added FrameExtents() method to retrieve the WM set decoration size
10291           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10292             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10293         * Hwnd.cs: 
10294           - Added whacky_wm tracking var for metacity
10295           - Added logic to have default menu height if the actual menu height
10296             has not yet been calculated (part of fix for #77426)
10297         * Form.cs: Keep track whether client size has been set and re-set 
10298           it if a menu is added/removed afterwards (Fixes #77426)
10299
10300 2006-01-31  Jackson Harper  <jackson@ximian.com>
10301
10302         * Control.cs: When a new Site is set on the component attempt to
10303         pull the AmbientProperties from it.
10304
10305 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10306
10307         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10308           in the background of the owning form. Fixes #77332
10309
10310 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10311
10312         * MimeIcon.cs: Fix for #77409
10313
10314 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10315
10316         * XplatUIX11GTK.cs: Initial import
10317
10318 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10319
10320         * FixedSizeTextBox: fixes class signature
10321
10322 2006-01-30  Jackson Harper  <jackson@ximian.com>
10323
10324         * FixedSizeTextBox.cs: New internal class that represents a
10325         textBox that will not be scaled.
10326         * TreeView.cs:
10327         * ComboBox.cs:
10328         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10329         standard TextBox.
10330                 
10331 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10332
10333         * XplatUIX11.cs: Retrieve default screen number instead of
10334           assuming 0. Attempted fix for #77318
10335
10336 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10337
10338         * XplatUIWin32.cs: 
10339           - GetWindowPos: When a window is parented by FosterParent, use 
10340             the desktop instead of FosterParent as the base to get coordinates
10341           - CreateWindow: Don't make FosterParent the parent window for Popups
10342             if we don't want a taskbar entry, Popups automatically don't get one
10343         * Hwnd.cs: Need to call remove to actually remove the key from the
10344           hash table
10345
10346 2006-01-30  Mike Kestner  <mkestner@novell.com>
10347
10348         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10349
10350 2006-01-30  Jackson Harper  <jackson@ximian.com>
10351
10352         * TreeView.cs:
10353         * TreeNode.cs: Raise events no matter how the treenode is
10354         checked. Patch by Don Edvalson.
10355
10356 2006-01-30  Jackson Harper  <jackson@ximian.com>
10357
10358         * TreeNode.cs: Signature fix.
10359
10360 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10361
10362         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10363
10364 2006-01-20  Mike Kestner  <mkestner@novell.com>
10365
10366         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10367         event forwarding when menus are active.
10368         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10369         Most of the patch is pdb's with a little rework.
10370
10371 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10372
10373         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10374           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10375           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10376         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10377         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10378           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10379           the PaintWindowDecorations method
10380         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10381         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10382         * MenuAPI.cs: Made tracker window invisible
10383         * XplatUIWin32.cs:
10384           - Removed GetMenuDC and ReleaseMenuDC methods
10385           - Implemented the client=false path for PaintEventStart and
10386             PaintEventEnd
10387
10388 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10389
10390         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10391         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10392           styles
10393         * Form.cs: 
10394           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10395             the style
10396           - CreateParams: Reworked the styles to match MS look'n'feel,
10397             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10398             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10399
10400 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10401
10402         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10403           window is not mapped, since otherwise every form that's being 
10404           created is considered minimized, which is wrong.
10405         * Form.cs: Catching the exception and returning our internal value
10406           instead
10407
10408 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10409
10410         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10411           SetWindowMinMax() to have means to tell the driver about the minimum,
10412           maximum and maximized state window sizes. (Part of the fix for #76485)
10413         * Form.cs:
10414           - Implemented tracking of minimum and maximum window size, now calling
10415             new SetWindowMinMax() driver method to tell the driver (Part of the
10416             fix for #76485)
10417           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10418             (Completes fix for #76485)
10419           - Calling new SetWindowMinMax driver method when the handle for a 
10420             form is created, to make sure the driver knows about it even if
10421             the values have been set before the window was created
10422           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10423             to avoid messing up our anchoring calculations (partial fix
10424             for #77355)
10425         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10426         * XplatUIX11.cs:
10427           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10428           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10429             (and presumably other freedesktop.org compliant WMs). Left the
10430             assumption unmapped=minimized, needed for SetVisible to work.
10431           - Now setting the window state when creating windows
10432           - Fixed SetVisible to consider/set the window state when mapping
10433             a Form. We cannot set the state before it's mapped, and we cannot
10434             use Form.WindowState once it's mapped (since it would ask the
10435             driver and get 'normal'. Therefore, we grab the state before
10436             mapping, map, and then set state.
10437           - Implmemented SetWindowMinMax method; Metacity does not seem to
10438             honor the ZoomHints, though.
10439         * XplatUIWin32.cs:
10440           - Removed MINMAXINFO (moved to XplatUIStructs)
10441           - Added SetWindowMinMax stub (on Win32 the only way to set that
10442             information is in response to the WM_GETMINMAXINFO message, which
10443             is handled in Form.cs)
10444           - Added logic to SetVisible to set the proper window state when a 
10445             form is made visible (fixes #75720)
10446
10447 2006-01-26  Jackson Harper  <jackson@ximian.com>
10448
10449         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10450         same way we handle them with Invoke.
10451
10452 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10453
10454         * Form.cs:
10455           - Added tracking of window state so CreateParams can return
10456             the appropriate style
10457           - Moved setting of WS_CAPTION style in CreateParams to allow
10458             styles without caption
10459         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10460           control if the TextBox property is accessed. Fixes #77345
10461         * Control.cs:
10462           - get_Created: now uses is_disposed and is_created to determine
10463             return value (suggested by Jackson)
10464           - CreateHandle: No longer exits if the handle is being recreated
10465           - RecreateHandle: If the handle is not yet created call the 
10466             appropriate method to create either control or handle. If the
10467             control is already created CreateHandle will simply exit instead
10468             of just creating the handle
10469         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10470           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10471           is called.
10472         * XplatUIX11.cs: 
10473           - When DestroyWindow is called, instead of waiting for the 
10474             DestroyNotification from X11, we directly post it to the WndProc
10475             and immediately dispose the hwnd object.
10476             Same applies to DestroyChildWindows, and this obsoletes the
10477             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10478             child windows before our own, to avoid X11 errors.
10479           - Removed the direct sending of WM_PAINT on UpdateWindow
10480         * XplatUIWin32.cs:
10481           - Reworked DoEvents and GetMessage to allow access to internal queue
10482             even when trying non-blocking access to the queue.  Fixes #77335. 
10483             Based on a patch suggestion by Don Edvalson. The new private
10484             GetMessage can now also be used as a backend for a PeekMessage
10485             frontend version.
10486         * XplatUI.cs: Improved debug output for CreateWindow
10487
10488 2006-01-25  Jackson Harper  <jackson@ximian.com>
10489
10490         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10491
10492 2006-01-24  Jackson Harper  <jackson@ximian.com>
10493
10494         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10495         when we have a MaxDropItems lower then the selected index.
10496
10497 2006-01-24  Jackson Harper  <jackson@ximian.com>
10498
10499         * Control.cs: Don't allow selection of non visible controls, allow
10500         selection of controls without parents.
10501
10502 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10503
10504         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10505         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10506
10507 2006-01-23  Jackson Harper  <jackson@ximian.com>
10508
10509         * UpDownBase.cs: Make the textbox handle all the selection and
10510         tabbing. This fixes tabing to updown controls.
10511
10512 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10513
10514         * TextBoxBase.cs: fixes exception thown the object was null
10515
10516 2006-01-23  Jackson Harper  <jackson@ximian.com>
10517
10518         * ButtonBase.cs: Just use the base CreateParams. They set
10519         visibility and enabled correctly.
10520         * ComboBox.cs:
10521         * TrackBar.cs:
10522         * MonthCalendar.cs: Lets let the base set as much of the
10523         createparams as possible so we don't have duplicate code all over
10524         the place.
10525
10526 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10527
10528         * ThemeGtk.cs: Added TrackBar and some experimental code to
10529           get double buffering back
10530
10531 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10532
10533         * DataGrid.cs: Allows row number set internally higher than the last
10534         when creating a new row. Restores the editing functionality.
10535
10536 2006-01-20  Mike Kestner  <mkestner@novell.com>
10537
10538         * MimeIcon.cs: delay Image creation until the icons are accessed
10539         instead of creating 190 scaled images on GnomeHandler startup.
10540
10541 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10542
10543         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10544           first call base before processing the event. Fixes #77279
10545
10546 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10547
10548         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10549           that the stride for the GDI bitmap would match the stride of
10550           a DIB or a Cursor.
10551
10552 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10553
10554         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10555
10556 2006-01-19  Jackson Harper  <jackson@ximian.com>
10557
10558         * ComboBox.cs: Hookup the text controls keydown event so we get
10559         those when the text control has the focus.
10560
10561 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10562
10563         * Label.cs: Now using the base events instead of defining new ones;
10564           this allows us to just call the base properties without having to
10565           duplicate all base property logic 
10566
10567 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10568
10569         * Label.cs: A label by default is not a tabstop (Fixes one of our
10570           failing nunit tests)
10571
10572 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10573
10574         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10575         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10576
10577 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10578
10579         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10580           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10581           This fixes #77218
10582         * XplatUIWin32.cs: 
10583           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10584             constructor creates images that can't be saved. Part of the fix
10585             for #76103
10586           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10587           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10588             bug fix for handling window state in forms properly)
10589
10590 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10591
10592         * ThemeGtk.cs: Simplify ScrollBar drawing
10593
10594 2006-01-18  Jackson Harper  <jackson@ximian.com>
10595
10596         * Splitter.cs: Set the default dock style for the splitter control
10597         in the constructor.
10598
10599 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10600
10601         * ThemeGtk.cs: Corrected StateType and ShadowType for
10602           gtk_paint_box
10603
10604 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10605
10606         * Control.cs: Make use of Theme.DoubleBufferingSupported
10607         * ThemeGtk.cs:
10608           - Added drawing for flat style buttons
10609           - Added ScrollBar drawing
10610
10611 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10612
10613         * ThemeClearlooks.cs: Removed some unneeded code.
10614         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10615
10616 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10617
10618         * LinkLabel.cs: We need to update the hover drawing when
10619           leaving the control as well.
10620
10621 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10622
10623         * DataGrid.cs: Clicking on non empty areas in the columns
10624            area was giving an exception
10625
10626 2006-01-17  Jackson Harper  <jackson@ximian.com>
10627
10628         * ThemeWin32Classic.cs:
10629         * ListView.cs: Do not draw/clip the headers when the header style
10630         is None.
10631
10632 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10633
10634         * DataGrid.cs: Fixes 77260
10635         
10636 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10637
10638         * DataGrid.cs: Clicking on a column on a empty grid was giving
10639           an exception
10640
10641 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10642
10643         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10644           or any keypress will crash the grid.
10645
10646 2006-01-17  Mike Kestner  <mkestner@novell.com>
10647
10648         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10649         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10650         invisible/previously-visible items.
10651         [Fixes #76909]
10652
10653 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10654
10655         * ThemeClearlooks.cs:
10656         - Added CL_Draw_Button method; now other theme controls that are 
10657           not derived from button or do not have a button can draw buttons
10658           too
10659         - Updated ComboBox drawing
10660         - Beautified RadioButton drawing
10661         - Corrected drawing of bottom and left tabs
10662         - Beautified DateTimePicker and MonthCalendar
10663         - Added CPDrawButton and CPDrawRadioButton
10664
10665 2006-01-16  Jackson Harper  <jackson@ximian.com>
10666
10667         * ComboBox.cs: Set the initial value of the scrollbar to the
10668         current index. Reduce the numbers of refreshs and IndexOfs called.
10669
10670 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10671
10672         * FileDialog.cs: When the file listview is focused hitting the
10673           backspace key moves the fileview to the parent directory
10674
10675 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10676
10677         * Form.cs: 
10678           - Added RecreateHandle call when changing taskbar visibility to 
10679             trigger reparenting in Win32 driver (Fixes #75719)
10680           - If a window has minimize or maximize buttons, it cannot have
10681             a help button
10682         * XplatUIWin32.cs:
10683           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10684             the toplevel form with FosterParent (A toolwindow not on the
10685             taskbar) (Fixes #75719)
10686           - Made FosterParent a toolwindow
10687
10688 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10689
10690         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10691
10692 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10693
10694         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10695           is currently over that control, make sure that tooltip_window.Text
10696           gets updated
10697
10698 2006-01-13  Mike Kestner  <mkestner@novell.com>
10699
10700         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10701
10702 2006-01-13  Jackson Harper  <jackson@ximian.com>
10703
10704         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10705         value passed.  Also redraw the selected node when we recieve
10706         focus, so tabbing between trees works correctly.
10707
10708 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10709
10710         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10711           ~/.gconf/%gconf-tree.xml, so use
10712           .gconf/desktop/gnome/interface/%gconf.xml
10713
10714 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10715
10716         * TextControl.cs: Draw text in gray if control is disabled
10717
10718 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10719
10720         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10721           make sure it's always visible. Fixes #76680.
10722
10723 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10724
10725         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10726
10727 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10728
10729         * PageSetupDialog.cs: Added.
10730         * PrintDialog.cs: Attributes.
10731         * PrintPreviewControl.cs: Updates.
10732         * PrintPreviewDialog.cs: Updates.
10733         
10734 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10735
10736         * Control.cs: Undid my selection check fix, since it's not needed
10737         * TextBoxBase.cs:
10738           - Now considering the presence of hscroll/vscroll when sizing
10739             vscroll/hscroll respectively. Fixed bug #77077
10740           - Added Left/Up/Down/Right to IsInputKey list to prevent
10741             ContainerControl from stealing them. This fixes what I broke
10742             with my last checkin.
10743
10744 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10745
10746         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10747           I finally understand how the property can be set without a setter :-)
10748
10749 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10750
10751         * Application.cs:
10752           - Switched RunLoop to use static Message.Create to create a 
10753             Message object
10754           - Added PreProcessMessage call in runloop for keyboard events; this
10755             is part of the fix for #77219, I overlooked this originally in the
10756             MSDN doc for PreProcessMessage
10757         * Control.cs:
10758           - Removed call to PreProcessMessage from handling of keyboard 
10759             messages; it's supposed to be done in the message pump
10760           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10761             per MSDN documentation.
10762           - IsInputChar: All chars are input chars by default; removed the 
10763             parent calling chain, MS does not document that
10764           - PreProcessMessage: If IsInputChar is true, we want to return false
10765             to allow dispatching of the message
10766           - When selecting the next control, now also check that we're not
10767             selecting ourselves again and therefore return a false positive.
10768         * TextBoxBase.cs:
10769           - Tried to match return values for IsInputKey and ProcessDialogKey
10770             to what MS returns; moved processing of our special keys outside
10771             ProcessDialogKey since MS does not seem to return true on those.
10772           - Moved code that previously was in ProcessDialogKey into new private
10773             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10774           - Reworked handling of WM_CHAR to not have to duplicate code from
10775             Control.cs anymore, instead we simply call down to base.
10776            
10777 2006-01-12  Jackson Harper  <jackson@ximian.com>
10778
10779         * ComboBox.cs: We always need to refresh the text area when
10780         EndUpdate is called. Fixes the combobox in the file dialog.
10781         * Control.cs: Don't create the creator_thread until the controls
10782         handle is created.  Also in InvokeRequired we check if the
10783         creator_thread is null. This gives the effect of InvokeRequired
10784         returning true if the controls handle is not created yet, and
10785         matches MS.
10786
10787 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10788
10789         * XplatUI.cs:
10790           - Added StartLoop() driver method. This is used to allow drivers to
10791             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10792             loop for a particular thread
10793           - Added EndLoop() driver method. This is called once the message
10794             pump for the thread is shut down
10795           - Added SupportsTransparency method to allow the driver to indicate
10796             opacity support for windows
10797         * Form.cs:
10798           - Removed TODO attribute, completed AllowTransparency property
10799           - Added documented logic to Opacity
10800         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10801           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10802           versions of CompatibleTextRendering
10803         * X11Structs.cs: Added opacity atom to our atom enumeration
10804         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10805           of a form might be set before it's reparented by the WM, and we need
10806           the opacity value without calling up to Form)
10807         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10808           SupportsTransparency() driver methods
10809         * Application.cs: Now calling StartLoop and EndLoop driver methods
10810         * XplatUIX11.cs:
10811           - Added opacity atom registration
10812           - Added StartLoop()/EndLoop() methods. They're empty right now but
10813             will need to get implemented when we switch to a per-thread queue
10814           - Implemented SupportsTransparency() method
10815           - Implemented SetWindowTransparency() method
10816           - Added support for setting the opacity value when a window is
10817             reparented (since the opacity needs to be set on the WM frame)
10818         * XplatUIOSX.cs, XplatUIWin32.cs:
10819           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10820
10821 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10822
10823         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10824
10825 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10826
10827         * FileDialog.cs: Added ToolTip for MWFFileView
10828         * MimeIcon.cs: Rewrote GnomeHandler.
10829           - Get currently used gnome icon theme from
10830             ($HOME)/.gconf/%gconf-tree.xml
10831           - Make use of inherited icon themes
10832           - Support SVG icon themes like Tango via librsvg
10833
10834 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10835
10836         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10837         builds. 
10838         
10839         * Application.cs: Move the use_compatible_text_rendering outside
10840         the NET_2_0 define.  If we ever need to use the
10841         use_compatible_text_rendering on the individual controls they will
10842         access the variable from the common shared code paths.
10843
10844 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10845
10846         * XplatUI.cs:
10847           - Added more granular debug options
10848           - Added method to print both window text and id
10849           - Switched debug output to use new Window() debug method
10850           - Added IsEnabled() driver method
10851           - Added EnableWindow() driver method
10852         * Form.cs:
10853           - Removed end_modal; no longer needed, new loop handles termination
10854             via 'closing' variable
10855           - If form is modal, setting DialogResult will now initiate loop
10856             termination via 'closing' variable
10857           - Added support for is_enabled/WS_DISABLED to CreateParams
10858           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10859             does all the work
10860           - Removed code that's now in RunLoop from ShowDialog()
10861           - Added various documented sanity checks to ShowDialog()
10862           - Added handling of WM_DESTROY message; we set 'closing' on getting
10863             the message to indicate the message pump to terminate
10864           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10865             send by the Application.ExitThread method. (We send the message
10866             to destroy the window after all other events have been
10867             processed through the queue, instead of destroying the handle 
10868             directly)
10869           - Moved code from Close() method to WM_CLOSE handler; added logic
10870             to only send close-related events if the form is not displayed
10871             modal
10872         * Splitter.cs (..ctor): Fixed typo in resource name
10873         * Control.cs:
10874           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10875             brush now
10876           - set_Cursor: Now only setting calling into XplatUI if the handle for
10877             the control is already created; this avoids implict handle creation
10878             or crashes if it's not created
10879           - set_Enabled: Now setting the enabled state via the new driver method
10880             instead of just tracking it
10881           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10882           - CreateControl: Reordered event firing and method calls to more
10883             closely fire events in the order MS does. Now setting the
10884             enabled state in the driver when creating the control.
10885           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10886             match MS order
10887         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10888           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10889         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10890         * Hwnd.cs:
10891           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10892           - Added EnabledHwnd property to easily allow a driver to find the
10893             handle of the first enabled window in the parent chain (this is
10894             used by drivers to pass up input events of disabled windows)
10895         * XplatUIDriver.cs: Added IsEnabled() method
10896         * Application.cs:
10897           - Removed crude and obsolete exiting tracking variable
10898           - Removed internal ModalRun(); replaced by RunLoop()
10899           - Implemented private CloseForms() method to allow closing all 
10900             windows owned by a particular (or all) threads
10901           - Exit() now properly closes all windows without forcing the message
10902             pump to quit
10903           - Removed obsolete InternalExit() method
10904           - Changed Run() methods to use new RunLoop() message pump
10905           - Implemented new RunLoop() method for both modal and non-modal forms
10906         * CommonDialog.cs:
10907           - get_CreateParams: Added setting of WS_DISABLED
10908           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10909             invoked via Form.ShowDialog()
10910         * NativeWindow.cs: We don't remove the window from the collection when
10911           the handle is destroyed; there might still be messages for it in the
10912           queue (mainly the resulting WM_DESTROY); instead it will be removed
10913           when Control calls InvalidateHandle in the WM_DESTROY handler
10914         * XplatUIX11.cs:
10915           - CreateWindow: Added logic to handle the WS_DISABLED window style
10916           - EnableWindow: Implemented based on Hwnd.Enabled
10917           - GetMessage: Reset PostQuitState so the method can be called again
10918           - Implemented support for disabled windows (passing messages to the
10919             first enabled parent) in handling all input messages
10920           - Added optimizations for handling Expose events
10921           - Implemeted new driver method IsEnabled()
10922           - Now always resetting paint pending tracking vars when we start paint
10923           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10924         * XplatUIOSX.cs: Added IsEnabled method stub
10925         * XplatUIWin32.cs: Implemented new IsEnabled() method
10926
10927 2006-01-11  Jackson Harper  <jackson@ximian.com>
10928
10929         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10930         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10931         variables a little.
10932         * ColorDialog.cs: Clear out the old form before adding the new
10933         panel.  
10934
10935 2006-01-11  Jackson Harper  <jackson@ximian.com>
10936
10937         * X11Dnd.cs: Make sure to add all the text formats when adding
10938         strings to the data object.
10939         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10940         do some redrawing too.  Also change the UpdateNode to an
10941         UpdateBelow so the newly added node gets painted.
10942         
10943 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10944
10945         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10946         LinkLabel.cs, PropertyGrid.cs: Implement the
10947         UseCompatibleTextRendering property for 2.x
10948
10949         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10950
10951 2006-01-11  Jackson Harper  <jackson@ximian.com>
10952
10953         * TreeView.cs: Use the property for setting the selected node so
10954         the correct events get raised.
10955         * TreeNode.cs: Update the tree when the fore/back colours of a
10956         node are set.
10957
10958 2006-01-10  Jackson Harper  <jackson@ximian.com>
10959
10960         * TreeView.cs: Allow setting SelectedNode to null.
10961
10962 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10963
10964         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10965
10966 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10967
10968         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10969
10970 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10971
10972         * PrintDialog.cs: Added attributes and set default property values.
10973
10974 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10975
10976         * PrintControllerWithStatusDialog.cs: 
10977         Added PrintControllerWithStatusDialog.
10978
10979 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10980
10981         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10982         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10983
10984 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10985
10986         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10987
10988 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10989
10990         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10991         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10992
10993 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10994
10995         * MimeIcon.cs: Added internal class SVGUtil.
10996
10997 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10998
10999         * FileDialog.cs: Don't crash if there are two files with the
11000           same name but different locations.
11001
11002 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11003
11004         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11005         dates across multiple month grids. Used to not highlight entire 
11006         month, but does now.
11007         
11008 2006-01-06  Jackson Harper  <jackson@ximian.com>
11009
11010         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11011         message loop. Change timer intervals to numbers that seem more
11012         natural.
11013
11014 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11015
11016         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11017           object for location info since screen object is now implemented.
11018
11019 2006-01-05  Jackson Harper  <jackson@ximian.com>
11020
11021         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11022         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11023         AsyncMethodResult, this is because we ALWAYS want the
11024         ManualResetEvent to get set.
11025         * Control.cs: When disposing use an async invoke to call shutdown
11026         code, so that thigns don't block on the finalizer thread.  Also
11027         check if we even have a message loop before trying to send
11028         messages, if we don't then don't bother sending messages.
11029         - No more weak references for async methods
11030         * XplatUIDriver.cs: No more weak references for async methods.
11031
11032 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11033
11034         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11035           returns two FontFamily with the same name
11036
11037 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11038
11039         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11040           drawing disabled text. Instead using the ColorGrayText color
11041
11042 2006-01-04  Jackson Harper  <jackson@ximian.com>
11043
11044         * TreeNode.cs: redraw the node when its image index is changed.
11045
11046 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11047
11048         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
11049           time I checked there are no others like it.
11050
11051 2006-01-04  Jackson Harper  <jackson@ximian.com>
11052
11053         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
11054         this gives the behavoir I was looking for.
11055         * Control.cs: Special case Invoking EventHandlers, this matches MS
11056         and fixes part of bug #76326.
11057
11058 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11059
11060         * ThemeClearlooks.cs, FileDialog.cs:
11061           - Reflect the latest Theme class changes
11062           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
11063             with DateTime
11064             
11065 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11066
11067         * Theme.cs: Cache UI resource images and resize them if needed
11068
11069 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11070
11071         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
11072           is called. This fixes the crash in Nexxia when setting the font
11073           attributes in the chat. [However, RTF needs a look-over to make sure
11074           that all SelectionXXX methods handle the special case that selection
11075           is empty and therefore the change must be applied to all text starting
11076           at the cursor/selection start]
11077
11078 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
11079
11080         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11081           XplatUIOSX.cs: Added SendMessage and PostMessage methods
11082         * X11Keyboard.cs: Switched to new way of calling PostMessage
11083
11084 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
11085
11086         * Theme.cs: Added theme interface for images to allow the theme to
11087           control what images are used for things like FileDialog, MessageBox
11088           icons, etc.
11089         * MessageBox.cs: Now uses the new Theme icon/image interfaces
11090
11091 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
11092
11093         * FileDialog.cs:
11094           - Removed some dead code
11095           - Opening a recently used file does work now
11096           - Small UI enhancements
11097           - Refactoring
11098
11099 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11100
11101         * FileDialog.cs: Forgot too add __MonoCS__
11102
11103 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
11104
11105         * FileDialog.cs: We are able to read recently used files now let's
11106           go on and write them.
11107
11108 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
11109
11110         * FileDialog.cs: Breathe some life into "last open"/"recently used"
11111           button
11112         * MimeIcon.cs: Do a check for the top level media type also
11113
11114 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11115
11116         * ThemeClearlooks.cs:
11117           - Added CPDrawStringDisabled
11118           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
11119             some chars if the text doesn't fit into text_rect
11120           - DrawListViewItem: If View = View.LargeIcon center the image;
11121             rewrote the drawing of ListViewItem.Text if View = 
11122             View.LargeIcon
11123
11124 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11125
11126         * MimeIcon.cs: Use default KDE icon theme if there is no
11127           "48x48" directory for the current icon theme, fixes #77114
11128         * Mime.cs: Disable not working and actually not used code. 
11129         * ThemeWin32Classic.cs:
11130           - Replace "new SolidBrush" in GetControlBackBrush and
11131             GetControlForeBrush with ResPool.GetSolidBrush
11132           - Changed DrawListViewItem from private to protected virtual
11133         * FileDialog.cs:
11134           - Added form.MaximizeBox = true
11135           - Don't throw an exception if there is a broken symbolic link
11136
11137 2005-12-23  Jackson Harper  <jackson@ximian.com>
11138
11139         * TabControl.cs: Give the panels focus, keyboard navigation is
11140         fixed so this works correctly now.
11141         - We need these key events also.
11142         * ToolBar.cs: Remove some of the poor mans double buffering.
11143         
11144 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11145
11146         * ComboBox.cs: The internal TextBox now returns the focus.
11147
11148 2005-12-23  Jackson Harper  <jackson@ximian.com>
11149
11150         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11151
11152 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11153
11154         * Control.cs: Removed debug code
11155         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11156           implicit children
11157
11158 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11159
11160         * Control.cs: When creating the control, update the Z-order after
11161           all it's children are created, too. (Fixes nexxia not showing
11162           picturebox bug)
11163
11164 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11165
11166         * Control.cs: Do not update the anchoring distances if layout is
11167           suspended, instead do it once layout is resumed
11168
11169 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11170
11171         * Control.cs: 
11172           - After many hours of debugging, for both Jackson and
11173             myself, it turns out that it helps to set the parent of a control
11174             if you want to actually see it onscreen. In the spirit of that
11175             discovery, we're now setting the parent of the control and
11176             it's children when the control's handle is created. This fix
11177             will make Lutz Roeder's Reflector run happily. 
11178           - now just creating the handle instead of the whole control when
11179             getting a graphics context for the control.
11180
11181 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11182
11183         * ScrollableControl.cs: When calculating the canvas, don't consider
11184           the scrollbar widths. Instead, predict if horizontal scrollbar
11185           will affect canvas when deciding on vertical display and vice versa.
11186
11187 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11188
11189         * RichTextBox.cs: Set default RTF font for documents that don't
11190           have a font table (Fixes #77076)
11191
11192 2005-12-22  Jackson Harper  <jackson@ximian.com>
11193
11194         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11195         clipboard. This prevents a NullRef in that case.
11196         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11197         clipboard. PRIMARY is for the currently selected text only. (We
11198         should implement PRIMARY at some point.
11199
11200 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11201
11202         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11203           a Unicode function with a structure that was defined in Ansi way.
11204           This fixes #76942.
11205
11206 2005-12-21  Jackson Harper  <jackson@ximian.com>
11207
11208         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11209         on. Because thats how it rolls. (and this avoids it using ambient
11210         colours).
11211         * ThemeWin32Classic.cs: Use the proper back color for filling.
11212         * Menu.cs: Use the system menu bar color for drawing menu
11213         bars. Using the window back color will bring ambient colours into
11214         the picture.
11215
11216 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11217
11218         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11219           Bitmaps were created and not disposed.
11220
11221 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11222
11223         * Control.cs (CreateControl): Don't do anything if the control is
11224           already created, otherwise we'd fire the OnCreated event more than
11225           once
11226
11227 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11228
11229         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11230           will always match. Instead return -1. Fixes #76464.
11231
11232 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11233
11234         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11235           neither the beginning nor the end of the line (Fixes bug #76479)
11236
11237 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11238
11239         * Control.cs:
11240           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11241             where handle is invalid
11242           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11243             instead of slower linear search
11244         * NativeWindow.cs: Don't remove the window from the hashtable until
11245           after the driver has destroyed it (since the driver might use
11246           Control.FromHandle to lookup the control object
11247         * Hwnd.cs: Added DestroyPending property to track if a window is 
11248           already destroyed as far as the driver is concerned and only hasn't
11249           yet notified the control
11250         * XplatUIX11.cs:
11251           - Activate(): Check if the window is still valid before using the 
11252             handle
11253           - Implemented DestroyChildWindow() method to mark child windows as
11254             destroyed when a window is destroyed. This prevents situations 
11255             where we might call an X method based on queued events for a
11256             window that already has been destroyed but we haven't yet pulled
11257             the destroy method from the queue.
11258           - Added a call to the new DestroyChildWindow() method to the drivers
11259             DestroyWindow code. Also now marking the destroyed window itself
11260             as pending
11261
11262 2005-12-20  Jackson Harper  <jackson@ximian.com>
11263
11264         * StatusBar.cs:
11265         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11266         anymore. Just do them when needed, also track the rects of panels
11267         so that we can optimize refreshing more in the future.
11268
11269 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11270
11271         * ColorDialog.cs: Fixed focus drawing in small color controls
11272
11273 2005-12-19  Jackson Harper  <jackson@ximian.com>
11274
11275         * InternalWindowManager.cs:
11276         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11277         moving windows works properly.
11278
11279 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11280
11281         * Control.cs: 
11282           - Removed call to InitLayout() from SetBoundsCore(); doc says
11283             it's only called when a control is added to a container
11284           - Split InitLayout logic, moved to separate UpdateDistances() method
11285             since we need to perform those calculations more often than just
11286             when adding the control to a container. (Needed to fix #77022)
11287           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11288           - Reduced the OnBindingContextChanged events count, don't send them
11289             unless the control is created, we still aren't totally matching
11290             MS, but I can't quite figure out some of their rules
11291
11292 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11293
11294         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11295           stripes
11296
11297 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11298
11299         * ThemeClearlooks.cs:
11300           - Updated ProgressBar drawing
11301           - Corrected drawing of ScrollBars and scroll buttons
11302           - Some temporary fixes for minor pixel artefacts
11303
11304 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11305
11306         * Control.cs:
11307           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11308             cause events to be sent in the same order as MS does.
11309           - Added ChangeParent() method to trigger various OnXXXChanged events
11310             that need to be fired when a parent changes (This is a reworking
11311             of the patch from r54254, with the X11 errors fixed)
11312           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11313             since on MS we get OnLayoutChanged events when calling Clear()
11314           - Changed Enabled property to consider parent state as well, if a
11315             parent is not enabled, the control will not be either
11316           - Changed Parent property to simply call Controls.Add() since that
11317             now does all the work required, this way we avoid code duplication
11318           - Threw in a few OnBindingsContextChanged calls to try and match
11319             when MS sends them. We seem to send a few too many, though.
11320           - Added call to CreateControl when adding the control to a parent.
11321             We were never calling CreateControl. Still needs some work, in
11322             some places we treat HandleCreated and ControlCreated as equal, 
11323             which is wrong
11324           - Removed obsolete commented out code from UpdateZOrder()
11325
11326 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11327
11328         * ThemeClearlooks.cs: Updated TrackBar drawing.
11329
11330 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11331
11332         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11333
11334 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11335
11336         * FileDialog.cs: Add the Help button and the open readonly
11337           checkbox only if needed
11338
11339 2005-12-16  Jackson Harper  <jackson@ximian.com>
11340
11341         * Control.cs: Make sure we have an active menu before trying to
11342         process commands on it. Prevents menu-less forms from crashing
11343         when Alt is pressed.
11344         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11345         Dieter Bremes.
11346         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11347         2.0 build.
11348
11349 2005-12-16  Jackson Harper  <jackson@ximian.com>
11350
11351         * InternalWindowManager.cs: Don't translate tool windows screen
11352         coordinates. This fixes windows 'bouncing' around when being moved.
11353
11354 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11355
11356         * TextBoxBase.cs:
11357           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11358             not quite MS compatible, MS uses that number only for single line
11359             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11360             the limit at 2GB)
11361           - Now enforcing the MaxLength limit when entering characters
11362           - Added argument to internal Paste() method to track if it's called
11363             from programatically or via keyboard, since keyboard driven pastes
11364             need to enforce max-length
11365           - Added logic to Paste to only paste as many chars as MaxLength 
11366             allows
11367         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11368         * TextControl.cs:
11369           - Added Length property to return number of characters in document
11370           - Added private CharCount property which only tracks actual chars
11371             in the document (no linefeeds) and fires event when CharCount
11372             changes
11373           - Added tracking of character count to all methods that alter it
11374           - Added LengthChanged event to allow applications to subscribe
11375             to any changes to the document
11376
11377 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11378
11379         * TextBox.cs: 
11380           - Removed local password_char field (moved to TextBoxBase)
11381           - Now setting the document's password var when password is
11382             set
11383         * TextBoxBase.cs:
11384           - Added password_char field (needed here so MultiLine can
11385             access it)
11386           - Added logic to MultiLine property setter to set the document's
11387             variable when password display is allowed
11388           - Removed debug code and made some debug code conditional
11389         * TextControl.cs:
11390           - Added RecalculatePasswordLine() method to handle special password
11391             char only lines
11392           - Added PasswordChar property, also added related tracking vars
11393           - Draw() method now uses local text var for grabbing text to draw,
11394             this var is set to line.text unless we're doing password display,
11395             then it is set to the pre-generated all-password-chars line
11396           - Added calling RecalculatePasswordLine() method for password lines
11397
11398 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11399
11400         * Hwnd.cs: 
11401           - Added Reparented property to allow tracking of Window Manager
11402             reparenting actions (which affect X/Y calculations of toplevel 
11403             windows)
11404           - Made ToString() print window handles in hex
11405         * XplatUIX11.cs:
11406           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11407             determine if X/Y needs offsetting
11408           - AddConfigureNotify(): Fixed offset calculations
11409           - Now adds ReparentNotify messages into the queue
11410           - Now processes ReparentNotify messages and causes a 
11411             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11412             is reparented (as most likely it's X/Y coordinates are changed
11413             due to that)
11414
11415 2005-12-14  Jackson Harper  <jackson@ximian.com>
11416
11417         * XplatUIX11.cs: Tool windows still need to respek focus.
11418
11419 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11420
11421         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11422           have a working release
11423
11424 2005-12-13  Jackson Harper  <jackson@ximian.com>
11425
11426         * Form.cs: Update styles after setting the border style regardless
11427         of whether or not the window is using a window manager.
11428
11429 2005-12-13  Jackson Harper  <jackson@ximian.com>
11430
11431         * Form.cs: We now hook into an internal window manager instead of just an
11432         MDI subsystem, this is so we can have properly behaving tool windows.
11433         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11434         * InternalWindowManager.cs: New internal class that acts as a
11435         window manager for tool windows and as a base for mdi windows.
11436         * MdiWindowManager.cs: New class that acts as a window manager for
11437         mdi windows.
11438
11439 2005-12-12  Jackson Harper  <jackson@ximian.com>
11440
11441         * Control.cs: Updates so we match behavoir for for implicit
11442         controls. Fixes explosions in MDI.
11443
11444 2005-12-12  Jackson Harper  <jackson@ximian.com>
11445
11446         * Control.cs: Implement Invalidate (Region).
11447
11448 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11449
11450         * Control.cs: 
11451           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11452             the same events as MS does. MS fires events for each property 
11453             except, for unknown reasons, Cursor, when the control is reparented. 
11454             I can't seem to totally match add/remove since MS also fires some 
11455             VisibleChanged events, which makes no sense. Consolidated the
11456             parenting code into a separate method so it can be called from
11457             both Add and Remove. set_Parent no longer needs any special logic
11458             as it calls the parent's add method which implicitly fires
11459             all events
11460           - Removed some obsolete code and debug output
11461           - Enabled state is inherited from parents, if this is enabled
11462
11463 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11464
11465         * Form.cs: Removed commented out code
11466
11467 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11468
11469         * Control.cs:
11470           - Added internal version of Invoke, with additional argument 
11471             indicating if we're calling it from a Dispose() handler. That
11472             way we can avoid BeginInvoke throwing an exception if we're
11473             calling for an already destroyed window.
11474           - Added a dispose argument to BeginInvokeInternal, and made the
11475             check if a valid window handle chain exists conditional on
11476             it not being a dispose call
11477           - Removed code in DestroyHandle to destroy our children. Since we
11478             now handle the WM_DESTROY message we will catch all our children
11479             being destroyed.
11480           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11481         * Form.cs:
11482           - Added a field to track the application context of the form.
11483           - No need to set closing variable as response to WM_CLOSE, instead
11484             we destroy the window. We also call PostQuitMessage if the form
11485             has an application context (which makes it the main app form,
11486             which, when closed terminates the app)
11487         * XplatUI.cs:
11488           - Dropped Exit() method, it's naming was confusing
11489           - Added PostQuitMessage() which causes GetMessage to return false
11490             once the message queue is empty
11491         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11492           PostQuitMessage()
11493         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11494           no longer a valid XplatUI method, but left it in since it's used
11495           internally. Added empty PostQuitMessage() method.
11496         * MenuAPI.cs: Replaced call to Exit() with call to
11497           PostQuitMessage, even though this is probably no longer needed.
11498         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11499         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11500         * Application.cs:
11501           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11502           - Removed old debug code that would call XplatUI for exception
11503             display, enabled standard exception handling (Still not enabled
11504             though, until NativeWindow's ExternalExceptionHandler define
11505             is removed
11506         * NativeWindow.cs:
11507           - Added internal method to allow control to update NativeWindow
11508             after a window has been destroyed
11509           - Added handling of already destroyed windows when calling i
11510             DestroyWindow
11511           - Added removal of handle from list on ReleaseHandle
11512         * XplatUIX11.cs:
11513           - Dropped GetMessageResult var and related code
11514           - Added PostQuitState to field to track if PostQuitMessage has been
11515             called
11516           - Dropped Exit() method
11517           - Added PostQuitMessage() method
11518           - GetMessage now will return false if PostQuitState is set and no
11519             more messages are in the queue.
11520           - Expose handler will no longer generate WM_PAINT messages if we are
11521             in PostQuitState since it's very likely any windows have already
11522             been destroyed, and since Hwnd won't get updated until we have
11523             processed the DestroyNotify we'd be causing X errors.
11524         
11525 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11526
11527         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11528           Thanks to Mike for pointing out the err of my ways.
11529
11530 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11531
11532         * Control.cs(PreProcessMessage): Moved menu handling back, but
11533           after all other key handling, to match MS (who handles Menu in
11534           DefWndProc)
11535         * Menu.cs (WndProc): Removed my brainfart
11536
11537 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11538
11539         * Control.cs(PreProcessMessage): Removed special menu handling 
11540         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11541
11542 2005-12-07  Mike Kestner  <mkestner@novell.com>
11543
11544         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11545         state according in tracker.
11546         * Menu.cs : promote tracker field to base class and provide a tracker
11547         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11548         has a tracker. Unparent items that are removed from the collection.
11549         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11550         * Theme*.cs: add always_show_hotkeys field to support configurability
11551         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11552         pressed.
11553
11554 2005-12-07  Jackson Harper  <jackson@ximian.com>
11555
11556         * MdiChildContext.cs: Use Control.ResetCursor.
11557         * Control.cs: ResetCursor needs to set the property so that the
11558         correct XplatUI call gets made.
11559
11560 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11561
11562         * Control.cs: More fixes to make our key events match MS. We
11563           were not setting the modifier state on KeyData, and we were
11564           not generating any events when Alt was pressed with a key
11565           since handling of WM_SYSxxx was missing for the OnKey methods.
11566
11567 2005-12-07  Jackson Harper  <jackson@ximian.com>
11568
11569         * MdiChildContext.cs: reenable the sizing code.
11570         - When the mouse leaves a window reset its cursor.
11571
11572 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11573
11574         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11575
11576 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11577
11578         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11579           widths of Fixed3D borders
11580
11581 2005-12-07  Jackson Harper  <jackson@ximian.com>
11582
11583         * MdiClient.cs: Fix warnings. Earn Mike's love.
11584
11585 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11586
11587         * ThemeClearlooks.cs:
11588           - Adjusted mouse over button color
11589           - Added first parts of CheckBox drawing
11590           - Added correct color for selected text background
11591           - Fixed ComboBox drawing
11592           - Added CPDrawBorder3D and CPDrawBorder
11593
11594 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11595
11596         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11597
11598 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11599
11600         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11601           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11602           alert users via sound. We could add an enum arg with different
11603           types of alerts in the future
11604
11605 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11606
11607         * Control.cs: Fix behaviour problems pointed out by Mike
11608
11609 2005-12-05  Mike Kestner  <mkestner@novell.com>
11610
11611         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11612         prop setters.  Calls parent.Refresh for now, but could be maybe be
11613         optimized with an internal method on StatusBar at some point.
11614         [Fixes #76513]
11615
11616 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11617
11618         * RichTextBox.cs: Implemented get_SelectionColor
11619
11620 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11621
11622         * ThemeClearlooks.cs:
11623           - Removed dead code
11624           - Draw black button border only if button is Form.AcceptButton
11625           - Draw correct button color for pressed RadioButton if the mouse 
11626             has entered the button
11627           - Updated ProgressBar drawing!
11628           - Updated CPDrawSizeGrip drawing
11629           - Updated StatusBarPanel drawing
11630
11631 2005-12-05  Mike Kestner  <mkestner@novell.com>
11632
11633         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11634         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11635
11636 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11637
11638         * ThemeClearlooks.cs: Initial check-in, activate with
11639           export MONO_THEME=clearlooks
11640         * ThemeEngine.cs: Added ThemeClearlooks
11641
11642 2005-12-03  Mike Kestner  <mkestner@novell.com>
11643
11644         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11645         [Fixes #76897]
11646
11647 2005-12-02  Jackson Harper  <jackson@ximian.com>
11648
11649         * Form.cs: If the child form has no menu the default main menu is
11650         used as the active menu.
11651
11652 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11653
11654         * ListBox.cs: Check if any items exist before trying to resolve 
11655           coordinates into items
11656
11657 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11658
11659         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11660           as the second color for the background hatch
11661
11662 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11663
11664         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11665         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11666           sure that what we pass to FormatText is always 1-based. Fixes #76885
11667
11668 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11669
11670         * NumericUpDown.cs (EndInit): When we are done initializing,
11671         reflect any updates on the UI.
11672
11673 2005-12-02  Jackson Harper  <jackson@ximian.com>
11674
11675         * ImplicitHScrollBar.cs:
11676         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11677         their container controls.
11678         * TreeView.cs: Use the new implicit scrollbars.
11679
11680 2005-12-02  Jackson Harper  <jackson@ximian.com>
11681
11682         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11683         can play with it.
11684         * TreeNodeCollection.cs: If we remove the topnode we need to
11685         update topnode to the next node in line.
11686         - When clearing nodes go through the same process as removing
11687         them, so they get depareneted and checked if they are top node.
11688
11689 2005-12-01  Jackson Harper  <jackson@ximian.com>
11690
11691         * TreeView.cs: When imagelists are used the image area is
11692         selectable as well as the text.
11693         - If there are no selected nodes select the first one.
11694         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11695         so don't do it more then we need to.
11696
11697 2005-12-01  Jackson Harper  <jackson@ximian.com>
11698
11699         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11700         that arrows can be scaled.
11701
11702 2005-12-01  Jackson Harper  <jackson@ximian.com>
11703
11704         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11705         fail. Patch by Dieter Bremes
11706
11707 2005-11-30  Jackson Harper  <jackson@ximian.com>
11708
11709         * Form.cs: Property is 2.0 only
11710         * PrintDialog.cs: Signature fix.
11711
11712 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11713
11714         * TextControl.cs: 
11715           - No longer artificially moves text 2 pixels down (now that we have
11716             borders this is no longer needed)
11717           - Added calcs for left, hanging and right indent
11718
11719 2005-11-23  Mike Kestner  <mkestner@novell.com>
11720
11721         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11722
11723 2005-11-30  Jackson Harper  <jackson@ximian.com>
11724
11725         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11726         get cloned as part of CloneMenu ().
11727         * Menu.cs: Make sure the parent of the items get set correctly
11728         when they are added.  And the owners are notified of the changes.
11729         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11730         we can change the menu being displayed/handled by the form without
11731         changing the menu assosciated with the form.
11732         - Don't let Mdi children draw/handle menus.
11733         
11734 2005-11-30  Jackson Harper  <jackson@ximian.com>
11735
11736         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11737         a MenuChanged event. Just to make the API a little more
11738         consistent.
11739         * MainMenu.cs:
11740         * MenuItem.cs: Use the new OnMenuChanged
11741         * MdiChildContext.cs: Handle menu merging.
11742         * Form.cs: Implement MergedMenu.
11743         
11744 2005-11-30  Jackson Harper  <jackson@ximian.com>
11745
11746         * Menu.cs: We were misusing Add. Add goes behind the specified
11747         index according to the docs, and does not replace the specified
11748         index. So I added an Insert method.
11749
11750 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11751
11752         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11753           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11754           is for Jackson
11755         * RichTextBox.cs: Added calls to base for DnD events
11756
11757 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11758
11759         * TextControl.cs:
11760           - Fixed drag-selection related crash; style fixes
11761           - Implemented undo class
11762             o Implemented method to capture document state for specified
11763               range in document tree
11764             o Implemented method to restore captured document state
11765             o Implemented cursor tracking
11766             o Implemented basic undo stack
11767           - Added undo cursor tracking to methods altering cursor location
11768           - Added undo tracking to selection deletion (still missing
11769             other text-altering hookups)
11770         * RichTextBox.cs:
11771           - Added SelectionLength property
11772           - Implemented CanPaste()
11773           - Implemented Paste()
11774           - Added missing protected methods
11775           - Fixed RTF->Document conversion; now uses font index 0 and color 
11776             index 0 as the default font for the parsed text
11777           - Fixed RTF<->Document font size translation
11778           - Fixed RTF generation, now properly handles cross-tag boundaries
11779             for single line selection
11780           - No longer always appends blank line to generated RTF
11781           - Removed TODOs
11782           - Added missing attributes
11783           - Hooked up undo-related methods
11784         * TextBoxBase.cs:
11785           - Implemented Copy()
11786           - Implemented Paste()
11787           - Implemented Cut()
11788           - Fixed caret mis-behaviour on backspace across line-boundaries
11789
11790 2005-11-29  Jackson Harper  <jackson@ximian.com>
11791
11792         * MdiClient.cs: Add a method for activating mdi children. Very
11793         basic right now. I imagine someday it might need more girth.
11794         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11795         children windows names are added to the menu item.
11796         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11797         mdilist. This happens regardless of whether or not there are any
11798         mdi windows to see in the list, and according to my tests happens
11799         before the items are even added. Also happens if there isn't even
11800         an mdi client to get windows from.
11801
11802 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11803
11804         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11805         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11806
11807 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11808
11809         * DataGridTableStyle.cs:
11810           - Create always the styles for the missing columns even if they are
11811             provided by the user (not default table style)
11812         * DataGrid.cs:
11813           - Fixes bug 76770
11814           - Fixes SetDataBinding (always re-attach source)
11815           - Fixes SetNewDataSource (only clear styles if they are not for 
11816             this source)
11817          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11818             and remove properly
11819
11820 2005-11-29  Jackson Harper  <jackson@ximian.com>
11821
11822         * FileDialog.cs: Implement missing bits, remove some dead
11823         code.
11824         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11825         creation of the panel so that the options set on the dialog are
11826         seen when the panel is created.
11827         * TreeView.cs: raise a click when items are clicked.
11828         
11829 2005-11-29  Jackson Harper  <jackson@ximian.com>
11830
11831         * MdiClient.cs: Pass some signature methods through to base.
11832
11833 2005-11-28  Jackson Harper  <jackson@ximian.com>
11834
11835         * ListView.cs: Raise the click event when items are clicked.
11836
11837 2005-11-28  Jackson Harper  <jackson@ximian.com>
11838
11839         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11840         a nullref.
11841
11842 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11843
11844         * ThemeNice.cs: - Removed 1 pixel bitmaps
11845           - Use SmoothingMode.AntiAlias where it makes sense
11846             (ScrollButton arrow for example)
11847           - Enhanced Button focus drawing
11848           - Fixed ComboBox drawing (no artefacts anymore, focus
11849             rectangle is back again, reduced size of ComboButton, etc.)
11850           - Fixed RadioButton focus drawing for Appearence.Button
11851           - Slight ScrollButton redesign
11852           - Some LinearGradientBrush size fixes
11853           - GroupBoxes have now rounded edges
11854           - Fixed StatusBar drawing
11855
11856 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11857
11858         * ThemeNice.cs: - Remove dead code
11859           - use correct background colors for menus, etc.
11860           - Fake pixel drawing with 1 pixel bitmaps
11861
11862 2005-11-24  Jackson Harper  <jackson@ximian.com>
11863
11864         * MdiClient.cs: Size the scrollbars when resizing the window.
11865         - Resize the maximized windows when the client is resized
11866         * Form.cs: Make the child context available
11867         
11868 2005-11-23  Jackson Harper  <jackson@ximian.com>
11869
11870         * MdiChildContext.cs: Don't size windows if they are maximized.
11871
11872 2005-11-23  Mike Kestner  <mkestner@novell.com>
11873
11874         * ContextMenu.cs: use MenuTracker.
11875         * Control.cs: remove menu handle usage.
11876         * Form.cs: remove menu handle usage.
11877         * Hwnd.cs: remove menu handle usage.
11878         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11879         motion and clicks to the new Tracker handlers.
11880         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11881         and handle usage.
11882         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11883         Killed the MENU and MENUITEM data types and associated collections
11884         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11885         MenuTracker class that exposes the leftovers from the old MenuAPI
11886         static methods. Restructured Capture handling so that only one grab is
11887         done for the entire menu hierarchy instead of handing off grabs to
11888         submenus. Tracker now has an invisible control to Capture when active.
11889         * MenuItem.cs: add sizing accessors, kill Create
11890         and handle usage.
11891         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11892         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11893         MENU(ITEM). remove menu handle usage, use Menu directly.
11894         * XplatUIDriver.cs: remove menu handle usage.
11895         * XplatUIOSX.cs: remove menu handle usage.
11896         * XplatUIWin32.cs: remove menu handle usage.
11897         * XplatUIX11.cs: remove menu handle usage.
11898
11899 2005-11-22  Jackson Harper  <jackson@ximian.com>
11900
11901         * Hwnd.cs: Don't compute the menu size for
11902         DefaultClientRectangle.
11903         - Reenable menu sizes being computed for GetClienRectangle.
11904         * Form.cs: Remove comment of trechery
11905         
11906 2005-11-22  Jackson Harper  <jackson@ximian.com>
11907
11908         * Hwnd.cs: The adjustments for the menu bar are made when it is
11909         attached to the form.
11910
11911 2005-11-19  Jackson Harper  <jackson@ximian.com>
11912
11913         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11914         (just like on windows).
11915
11916 2005-11-19  Jackson Harper  <jackson@ximian.com>
11917
11918         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11919         use real buttons anymore because they are in non client area. The
11920         one TODO here is that I need to somehow invalidate a section of
11921         the non client area.
11922
11923 2005-11-18  Jackson Harper  <jackson@ximian.com>
11924
11925         * Control.cs: Put the enum check back in now that MDI doesnt have
11926         to use this to set border styles.
11927         * Form.cs: Only set mdi child windows borders if the handle has
11928         been created.
11929         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11930         this directly on to the driver.
11931         - Get the move start position before adjusting for the titlebar
11932         height, this fixes the windows "skipping" when they are first
11933         moved.
11934
11935 2005-11-18  Jackson Harper  <jackson@ximian.com>
11936
11937         * XplatUIX11.cs: Just compute the mdi borders separately as they
11938         don't totally match up with normal form borders.
11939
11940 2005-11-18  Jackson Harper  <jackson@ximian.com>
11941
11942         * Control.cs: Set WS_ styles for borders, so that the driver does
11943         not have to retrieve the control instance to figure out what kind
11944         of borders it should have.
11945         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11946         driver can know its an mdi child easily.
11947         * XplatUIX11.cs: Get the border styles and whether the window is
11948         MDI from the Styles and ExStyles params instead of having to get a
11949         control. This prevents a chicken and egg problem.       
11950
11951 2005-11-18  Jackson Harper  <jackson@ximian.com>
11952
11953         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11954
11955 2005-11-18  Jackson Harper  <jackson@ximian.com>
11956
11957         * MdiClient.cs: Calculate when to add and remove scrollbars
11958         correctly.
11959         * MdiChildContext.cs: Adjust the y position to take the titlebar
11960         into account.
11961         - No height for FormBorderStyle.None
11962
11963 2005-11-18  Jackson Harper  <jackson@ximian.com>
11964
11965         * Control.cs: Allow non enum values to be used for
11966         InternalBorderStyle.  MDI does this to set a special border style.
11967         - New utility methods for converting points to/from client coords
11968         - Add the newly created control to the Controls collection before
11969         updating its style. This way UpdateStyle can walk the control
11970         heirarchy to find the control if needed.
11971         so I don't need to create a new Point object all the time.
11972         * Form.cs: Let MDI windows handle their border styles.
11973         - Set styles on MDI windows so the correct title style is derived.
11974         * MdiChildContext.cs: Move all the painting and window handling
11975         into the non client area.
11976         - Use correct sizing and put correct buttons on frames based on
11977         the FormBorderStyle.
11978         - Notify the mdi client about scrolling
11979         - Need to handle the buttons ourselves now, because they are all
11980         in non client areas and we can't add controls there.
11981         * MdiClient.cs: Halfway to scrolling, this implementation is
11982         somewhat broken though, we need to check to make sure other
11983         windows aren't causing scrolling before removing the bars. Also
11984         the bars need to be drawn on top, maybe I can switch implicit
11985         controls to be on top.
11986         * Hwnd.cs: caption_height and tool_caption_height are now
11987         properties of an hwnd, this way they can be set by the driver
11988         based on the type of window they are.  In X11 the window manager
11989         handles the decorations so caption_height is zero unless its an
11990         MDI window.
11991         - Add 3 pixel borders for MDI windows (0xFFFF).
11992         - Get rid of some code duplication, have DefaultClientRectanle
11993         just call GetClientRectangle.
11994         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11995         Hwnd now.
11996         - Set border styles differently for mdi windows.
11997         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11998         Hwnd now.
11999         
12000 2005-11-15  Mike Kestner  <mkestner@novell.com>
12001
12002         * Menu.cs: when adding an item to the collection, if item is already 
12003         parented, remove it from the parent.
12004
12005 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12006
12007         * X11DesktopColors.cs: Added KDE support
12008
12009 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12010
12011         * XplatUIWin32.cs: 
12012           - Clipboard methods now can translate Rtf format
12013           - No longer removes clipboard contents whenever a new format is added
12014             to allow placing multiple formats on the clipboard
12015         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12016           will place all formats contained in it onto the clipboard. Also
12017           now cleans the clipboard before placing a new object onto it
12018         * RichTextBox.cs:
12019           - Implemented set_Rtf
12020           - Implemented set_SelectedRtf
12021           - Created InsertRTFFromStream() method to allow single code base
12022             for all properties and methods that insert RTF into document
12023           - Removed debug output
12024         * TextControl.cs:
12025           - Fixed Delete(int) to fix up line numbers
12026           - Fixed ReplaceSelection to combine start and end line
12027           - Fixed serious DeleteChars bug that would leave the document tree
12028             broken
12029           - Improved DumpTree with several logic checks to detect broken
12030             document trees
12031           - Removed debug lines
12032           - Fixed Caret.WordForward/WordBack moving code, now always also 
12033             updates caret.tag (fixes crash when word-selecting across tag
12034             boundaries via keyboard)
12035           - Added Insert() method for inserting multiline text into documents
12036           - Fixed DeleteChars() calculation errors that would cause a broken
12037             tag chain with multiple tag lines
12038           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12039           - Split() no longer moves caret if split is at caret location
12040           - ReplaceSelection() now updates the cursor and re-displays it
12041           - ReplaceSelection() now uses new Insert() method to avoid code
12042             duplication
12043           - FormatText() can now handle formatting partial lines
12044         * TextBoxBase.cs:
12045           - Append now uses new TextControl.Insert() method (this avoids 
12046             duplicate code)
12047           - Implemented Ctrl-X (Cut) (
12048           - Implemented Ctrl-C (Copy)
12049           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
12050             regeneration when pasting text; roundtripping Copy&Paste within
12051             edit control still fails due to some calculation bugs in GenerateRTF)
12052           - The Delete key will now remove the current selection if it is visible
12053         * TextBox.cs: Removed debug lines
12054         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
12055           driver to be initialized and can't therefore be done via a static ctor)
12056
12057 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
12058
12059         * TextControl.cs: Added backend code for finding char arrays and strings
12060         * TextBoxBase.cs:
12061           - Added mouse wheel scroll support
12062           - Added support for VScroll and HScroll events
12063         * RichTextBox.cs:
12064           - Implemented all seven Find() variants
12065           - Implemented GetCharFromPosition()
12066           - Implemented GetCharIndexFromPosition()
12067           - Implemented GetLineFromIndex()
12068           - Implemented GetPositionFromCharIndex();
12069           - Implemented SaveFile for PlainText and UnicodeText
12070           - Fixed set_Font, now setting a new font applies that font to
12071             the whole document
12072           - Implemented generic Document to RTF converter
12073           - Implemented SaveFile for RichText format (still missing unicode
12074             conversion for non-ansi chars)
12075           - Implemented get_Rtf
12076           - Implemented get_SelectedRtf
12077
12078 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
12079
12080         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
12081           to allow any captures to be released before triggering OnClick. This
12082           way a click handler may capture the mouse without interference.
12083         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
12084           This way we send them even though X may not allow a grab (if the window
12085           isn't visible, for example)
12086
12087 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
12088
12089         * DataGridViewRowEventArgs.cs: DataGridView implementation
12090         * DataGridViewElement.cs: DataGridView implementation
12091         * DataGridViewComboBoxCell.cs: DataGridView implementation
12092         * DataGridViewDataErrorContexts.cs: DataGridView implementation
12093         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
12094         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
12095         * ImageLayout.cs: DataGridView implementation
12096         * DataGridViewComboBoxColumn.cs: DataGridView implementation
12097         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
12098         * DataGridViewSelectionMode.cs: DataGridView implementation
12099         * IDataGridViewEditingControl.cs: DataGridView implementation
12100         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
12101         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
12102         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
12103         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
12104         * DataGridViewColumnSortMode.cs: DataGridView implementation
12105         * DataGridView.cs: DataGridView implementation
12106         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
12107         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
12108         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
12109         * Padding.cs: DataGridView implementation
12110         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
12111         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
12112         * DataGridViewRowEventHandler.cs: DataGridView implementation
12113         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
12114         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
12115         * DataGridViewButtonCell.cs: DataGridView implementation
12116         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
12117         * DataGridViewEditMode.cs: DataGridView implementation
12118         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
12119         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
12120         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
12121         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12122         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12123         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12124         * DataGridViewCellEventHandler.cs: DataGridView implementation
12125         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12126         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12127         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12128         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12129         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12130         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12131         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12132         * QuestionEventArgs.cs: DataGridView implementation
12133         * IDataGridViewEditingCell.cs: DataGridView implementation
12134         * DataGridViewTriState.cs: DataGridView implementation
12135         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12136         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12137         * DataGridViewColumnCollection.cs: DataGridView implementation
12138         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12139         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12140         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12141         * DataGridViewColumn.cs: DataGridView implementation
12142         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12143         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12144         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12145         * DataGridViewRow.cs: DataGridView implementation
12146         * DataGridViewImageCellLayout.cs: DataGridView implementation
12147         * DataGridViewImageCell.cs: DataGridView implementation
12148         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12149         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12150         * DataGridViewHeaderCell.cs: DataGridView implementation
12151         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12152         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12153         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12154         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12155         * QuestionEventHandler.cs: DataGridView implementation
12156         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12157         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12158         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12159         * DataGridViewCell.cs: DataGridView implementation
12160         * DataGridViewCellEventArgs.cs: DataGridView implementation
12161         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12162         * DataGridViewCellStyle.cs: DataGridView implementation
12163         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12164         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12165         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12166         * TextFormatFlags.cs: DataGridView implementation
12167         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12168         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12169         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12170         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12171         * DataGridViewButtonColumn.cs: DataGridView implementation
12172         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12173         * HandledMouseEventArgs.cs: DataGridView implementation
12174         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12175         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12176         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12177         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12178         * DataGridViewRowCollection.cs: DataGridView implementation
12179         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12180         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12181         * DataGridViewHitTestType.cs: DataGridView implementation
12182         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12183         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12184         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12185         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12186         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12187         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12188         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12189         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12190         * DataGridViewContentAlignment.cs: DataGridView implementation
12191         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12192         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12193         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12194         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12195         * DataGridViewPaintParts.cs: DataGridView implementation
12196         * DataGridViewCellCollection.cs: DataGridView implementation
12197         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12198         * DataGridViewImageColumn.cs: DataGridView implementation
12199         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12200         * DataGridViewElementStates.cs: DataGridView implementation
12201         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12202         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12203         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12204         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12205         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12206         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12207         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12208         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12209         * DataGridViewTextBoxCell.cs: DataGridView implementation
12210         * DataGridViewBand.cs: DataGridView implementation
12211         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12212         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12213         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12214         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12215         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12216         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12217         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12218         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12219         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12220         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12221         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12222
12223 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12224
12225         * ThemeWin32Classic.cs: 
12226           - Draw the outside focus rectangle around buttons
12227           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12228             doesn't use end caps for every dash of a line anymore. This
12229             workaround ignores the forecolor.
12230
12231 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12232
12233         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12234           endian safe.
12235
12236 2005-11-07  Jackson Harper  <jackson@ximian.com>
12237
12238         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12239
12240 2005-11-07  Jackson Harper  <jackson@ximian.com>
12241
12242         * ScrollableControl.cs: Calculate the maximum and change vars
12243         (more) correctly so that scrollbars appear as a sensible size.
12244
12245 2005-11-04  Jackson Harper  <jackson@ximian.com>
12246
12247         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12248         collection.
12249         * TreeView.cs: When the tree is sorted null out the top_node so
12250         that it is recalculated.
12251         - Use dotted lines instead of dashed lines to match MS better.
12252
12253 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12254
12255         * ListView.cs: 
12256           - Implements key search for items. Useful when browsing files with FileDialog
12257           - When changing view mode or when clear the items reset scrollbar positions
12258
12259 2005-11-04  Jackson Harper  <jackson@ximian.com>
12260
12261         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12262         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12263         as to what the method may do as there is no real way of creating a
12264         derived CurrencyManager and calling the method. 
12265
12266 2005-11-03  Jackson Harper  <jackson@ximian.com>
12267
12268         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12269         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12270         method which seems to just be used internally to refresh the tabs.
12271
12272 2005-11-03  Jackson Harper  <jackson@ximian.com>
12273
12274         * TabControl.cs: Implement the remove method. Fix some broken
12275         comments.
12276
12277 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12278
12279         * DateTimePicker.cs:
12280           - Added missing DateTimePickerAccessibleObject class
12281           - Added missing events
12282           - Added OnFontChanged method
12283         * Form.cs: Added missing attributes
12284         * TreeView.cs: Added missing attributes
12285
12286 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12287
12288         * GridItemCollection.cs: Fix signatures
12289
12290 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12291
12292         * XplatUI.cs: Updated build rev/date
12293         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12294           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12295         * Application.cs: Trigger context-specific ExitThread events
12296
12297 2005-11-03  Jackson Harper  <jackson@ximian.com>
12298
12299         * Menu.cs:
12300         * MainMenu.cs:
12301         * GridTableStylesCollection.cs:
12302         * Timer.cs:
12303         * TabPage.cs:
12304         * HelpProvider.cs:
12305         * StatusBar.cs:
12306         * MonthCalendar.cs: Signature fixes
12307
12308 2005-11-03  Jackson Harper  <jackson@ximian.com>
12309
12310         * TreeNodeCollection.cs: Remove should not be virtual.
12311         * TreeView.cs: Implement the last of the missing methods.
12312
12313 2005-11-03  Jackson Harper  <jackson@ximian.com>
12314
12315         * TreeNodeConverter.cs: Implement to get off my class-status back.
12316
12317 2005-11-03  Jackson Harper  <jackson@ximian.com>
12318
12319         * TreeView.cs: Hookup the bits for drag and drop.
12320         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12321         that nodes can be moved from tree to tree easily this just causes
12322         all sorts of problems.
12323         * TreeNodeCollection: Don't need to give treenodes an index and
12324         treeview anymore when they are added, these are computed on the
12325         fly. Also make sure to remove a node before its added.
12326
12327 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12328
12329         * TextControl.cs:
12330           - Added CaretSelection enum
12331           - Added comparison methods to Marker struct, makes selection code
12332             more readable
12333           - Added SelectionStart and SelectionEnd as 'moveable' location for
12334             the CaretDirection enum and handler
12335           - Added selection_prev variable to track optimized invalidation for
12336             word and line selection
12337           - Added SelectionVisible property (returns true if there is a valid 
12338             selection)
12339           - Switched CaretHasFocus to only display the caret if there is no
12340             visible selection
12341           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12342             using the direct character index; should be much faster
12343           - Added various conditional debug statements
12344           - Fixed invalidation calculation for selection ranges
12345           - Added ExpandSelection() method to support word and line selection
12346           - Switched SetSelectionToCaret to use new Marker compare overloads
12347           - Added central IsWordSeparator() method to determine word 
12348             separators/whitespace and FindWordSeparator() to streamline common
12349             usage of IsWordSeparator()
12350         * TextBoxBase.cs:
12351           - Removed unneeded grabbed variable, it was just mirroring
12352             Control.Capture
12353           - No longer firing OnTextChanged event when Text setter is called,
12354             since the base will fire the event for us
12355           - Added handling of Ctrl-Up/Down selection
12356           - Added handling of Shift-Cursorkey selection
12357           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12358             words
12359           - Added handling of Shift and Ctrl-Shift-Home/End selection
12360           - Removed some debug output
12361           - Added handling for single/double/tripple-click to place caret/
12362             select word/select line respectively (Fixes bug #76031)
12363           - Added support for drag expansion of word/line selection
12364         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12365           current selection
12366
12367 2005-11-02  Jackson Harper  <jackson@ximian.com>
12368
12369         * X11Dnd.cs: If the drag is going to and from a MWF window just
12370         copy the data instead of sending it out through the X Selection
12371         mechanism.
12372
12373 2005-11-02  Jackson Harper  <jackson@ximian.com>
12374
12375         * X11Dnd.cs:
12376         * XplatUIX11.cs: When in a drag we don't want motion notify
12377         messages to get passed on to the other controls. This prevents
12378         mouse move messages from showing up in the drag source.
12379
12380 2005-11-02  Jackson Harper  <jackson@ximian.com>
12381
12382         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12383         the correct button is release to end a drag.
12384         * XplatUIX11.cs: Make the button state internal so the drag system
12385         can access it.  Dragging needs to know about all button releases,
12386         not just left button.
12387
12388 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12389
12390         * Form.cs (Icon): If the icon is null, reset the icon to the
12391         default value. 
12392
12393         * Cursor.cs: When writing the AND-mask bitmap do not include the
12394         number of colors, but hardcode those to two (black and white),
12395         fixes the loading of color cursors (Paint Dot Net).
12396
12397         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12398         turn off autoscaling.
12399
12400         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12401
12402 2005-11-02  Jackson Harper  <jackson@ximian.com>
12403
12404         * X11Dnd.cs: Make sure to send a status message if the pointer
12405         enters a control that can not accept a drop, otherwise the cursor
12406         isn't updated correctly. Also tried to compress the lines of code
12407         a bit.
12408
12409 2005-11-02  Jackson Harper  <jackson@ximian.com>
12410
12411         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12412         set actions correctly.  This isn't perfect as XDND and win32 have
12413         some differences on how you allow actions. I'll clear this up by
12414         adding a path for drag from MWF to MWF windows.
12415         * XplatUIX11.cs: Hook into the dnd system.
12416
12417 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12418
12419         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12420         previously shown but they are no longer need it. Very obvious when 
12421         browsing files with FileDialog.
12422
12423 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12424
12425         * Control.cs: We always need to call OnPaintBackground. We pretty much
12426           ignore AllPaintingInWmPaint and always do the painting there, whether 
12427           it's set or not, since we always ignore the WM_ERASEBKGND message 
12428           (which we don't generate on X11). This fixes #76616.
12429         * Panel.cs: Removed unneeded background painting. This happens properly
12430           in Control.cs already
12431
12432 2005-10-31  Mike Kestner  <mkestner@novell.com>
12433
12434         * Menu.cs: Add items to collection before setting their index.
12435         * MenuItem.cs : add range checking with ArgumentException like MS.
12436         [Fixes #76510]
12437
12438 2005-10-31  Jackson Harper  <jackson@ximian.com>
12439
12440         * ListBox.cs: Invalidate if the area is visible at all not just
12441         contained in the visible rect. Fixes unselection of semi visible
12442         items.
12443
12444 2005-10-31  Jackson Harper  <jackson@ximian.com>
12445
12446         * Control.cs: Consistently name the dnd methods. Make them
12447         internal so we can override them to match some MS behavoir
12448         internally.
12449         * Win32DnD.cs: Use the new consistent names.
12450
12451 2005-10-31  Jackson Harper  <jackson@ximian.com>
12452
12453         * TreeView.cs: Don't draw the selected node when we lose focus.
12454
12455 2005-10-31  Jackson Harper  <jackson@ximian.com>
12456
12457         * X11Dnd.cs: We still need to reset the state even though a full
12458         reset isn't being done, otherwise status's still get sent all over
12459         the place.
12460
12461 2005-10-31  Jackson Harper  <jackson@ximian.com>
12462
12463         * Control.cs: Make the dnd_aware flag internal so the dnd
12464         subsystem can check it. Catch exceptions thrown in dnd handlers to
12465         match MS behavoir.
12466         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12467         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12468         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12469         flags to reduce the number of dnd enters/status's sent.
12470
12471 2005-10-31  Jackson Harper  <jackson@ximian.com>
12472
12473         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12474
12475 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12476
12477         * PictureBox.cs: Fixes 76512
12478
12479 2005-10-28  Jackson Harper  <jackson@ximian.com>
12480
12481         * X11Dnd.cs: Early implementation to support winforms being a drag
12482         source for data on X11. Also restructured the converters so they
12483         can go both ways now.
12484         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12485         
12486 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12487
12488         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12489           clipboard requests
12490
12491 2005-10-27  Jackson Harper  <jackson@ximian.com>
12492
12493         * TreeNode.cs: Implement serialization so my DnD examples will work.
12494
12495 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12496
12497         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12498           TreeView.cs: Don't dispose objects that are not owned.
12499           
12500 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12501
12502         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12503           should retrieve the current cursor and report that, but XplatUI
12504           doesn't (yet) have an interface for that (and I'm not sure I even
12505           can, on X11)
12506         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12507           until any message loop processing is done (and the WM_SETCURSOR
12508           replaces the cursor to the proper one)
12509         * XplatUIX11.cs: 
12510           - Fixed override behaviour, we can't set the cursor globally on X11, 
12511             just for our windows.
12512           - Invalidating the System.Drawing X11 display handle when we are
12513             shutting down
12514         * Control.cs: Fix to make csc happy
12515
12516 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12517
12518         * TextBoxBase.cs: 
12519           - get_Text: Add last line (without trailing newline) to returned
12520             value (Fixes 76212)
12521           - get_TextLength: Count last line in returned length
12522           - ToString: Call Text property instead of duplicating code
12523
12524 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12525
12526         * ImageList.cs: Dispose ImageAttributes objects.
12527
12528 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12529
12530         * ImageList.cs: Use attribute constructors with less arguments where
12531           possible.
12532
12533 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12534
12535         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12536           Use typeof instead of strings when assembly is referenced. Added
12537           some more comments.
12538
12539 2005-10-21  Jackson Harper  <jackson@ximian.com>
12540
12541         * ListView.cs: Raise a double click event. Also tried to somewhat
12542         fix when the selectedindexchanged event is raised. Its still
12543         broken though.
12544
12545 2005-10-21  Jackson Harper  <jackson@ximian.com>
12546
12547         * TreeView.cs: New method to invalidate the plus minus area of a
12548         node without invalidating the whole node (maybe this can be used
12549         in some more places).
12550         * TreeNodeCollection.cs: When adding to an empty node we need to
12551         invalidate its plus minus area so the little block shows up.
12552         
12553 2005-10-21  Jackson Harper  <jackson@ximian.com>
12554
12555         * TreeView.cs: Make sure that when we invalidate a node the bounds
12556         are big enough to cover the selected box and the focus
12557         rectangle. Use a different colour for the lines connecting nodes
12558         so they show up with all themes.
12559
12560 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12561
12562         * NativeWindow.cs: Don't call anything that could call into the driver,
12563           we might be on a different thread.
12564
12565 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12566
12567         * Control.cs(Dispose): Since Dispose might run on a different thread,
12568           make sure that we call methods that could call into the driver via
12569           invoke, to avoid thread issues
12570
12571 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12572
12573         * XplatUI.cs: Removed finalizer
12574         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12575           not allowing to be called on the finalizer thread.
12576
12577 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12578
12579         * ImageList.cs:
12580           - Reverted r51889 and r51891.
12581           - Added ImageListItem class that stores unmodified image items and image
12582             properties required to create list images until handle is created.
12583           - Added AddItem and moved image creation logic to AddItemInternal.
12584           - Added CreateHandle method that creates images based on unmodified items.
12585           - Added DestroyHandle that changes state to store unmodified items.
12586           - Add and AddStrip methods no more create handle.
12587           - ReduceColorDepth has no return value.
12588           - Dispose destroys handle.
12589           - Modified other methods to reflect the above changes.
12590           - Implemented key support.
12591           - Added profile 2.0 members and attributes.
12592           - Added private Reset and ShouldSerialize methods that provide the same
12593             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12594             them as they are private.
12595           - Added some more comments about implementation details.
12596
12597 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12598
12599         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12600
12601 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12602
12603         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12604
12605 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12606
12607         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12608         * DataGridColumnStyle.cs: Remove debug message
12609
12610 2005-10-20  Jackson Harper  <jackson@ximian.com>
12611
12612         * TreeView.cs: We can always get input keys regardless of whether
12613         or not editing is enabled. They are used for navigation.
12614
12615 2005-10-20  Jackson Harper  <jackson@ximian.com>
12616
12617         * TreeNode.cs: Use the viewport rect for determining if a node
12618         needs to be moved for visibility. Don't use Begin/End edit. This
12619         calls a full refresh when its done.
12620         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12621         rect property internal so the treenodes can see it. When clicking
12622         on a node we need to ensure that its visible because it might just
12623         be partly visible when clicked.
12624
12625 2005-10-20  Jackson Harper  <jackson@ximian.com>
12626
12627         * TreeNodeCollection.cs: Remove debug code.
12628
12629 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12630
12631         * Datagrid.cs: Implements column sorting in Datagrid
12632         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12633
12634 2005-10-20  Jackson Harper  <jackson@ximian.com>
12635
12636         * TreeNodeCollection.cs: Remove items properly. Update the correct
12637         area after removing them.
12638
12639 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12640
12641         * Datagrid.cs: Should not call base.OnPaintBackground
12642
12643 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12644
12645         * XplatUIX11.cs (GetMessage):
12646           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12647             window instead of client window
12648           - Now properly calculates NC_xBUTTONUP message coordinates
12649           - ScreenToMenu now properly calculates it's coordinates of whole 
12650             window, since menus are in the whole window, not in the client
12651             window
12652           - Added WholeToScreen coordinate translation method
12653
12654 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12655
12656         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12657           want to return a message, loop back to the beginning of the function
12658           and grab the next real message to process instead.
12659
12660 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12661
12662         * Splitter.cs: Properly set limits if no filler control is used
12663
12664 2005-10-19  Jackson Harper  <jackson@ximian.com>
12665
12666         * ColorDialog.cs: Don't show the help button if it is not enabled
12667         instead of disabling it (this is what MS does). Don't create the
12668         panel until the dialog is run, otherwise the vars (such as
12669         ShowHelp) are not set yet.
12670
12671 2005-10-19  Jackson Harper  <jackson@ximian.com>
12672
12673         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12674         are reduced when adding nodes.
12675         * TreeNode.cs:
12676         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12677         tree.
12678         
12679 2005-10-19  Jackson Harper  <jackson@ximian.com>
12680
12681         * FolderBrowserDialog.cs: End editing our treeview so the window
12682         actually gets refreshed.
12683
12684 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12685
12686         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12687           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12688           inside of WM_PAINT
12689
12690 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12691
12692         * MenuAPI.cs: Returns after Hidding window
12693         * XplatUIX11.cs: Added TODO found while debugging menu issues
12694
12695 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12696
12697         * XplatUIX11.cs: Do not re-map the whole window when it's size
12698           becomes non-zero unless it's supposed to be actually visible
12699
12700 2005-10-18  Jackson Harper  <jackson@ximian.com>
12701
12702         * TreeView.cs: We don't need to keep a count anymore.
12703         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12704         use the Grow method.
12705
12706 2005-10-18  Jackson Harper  <jackson@ximian.com>
12707
12708         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12709         implement it manually here.
12710
12711 2005-10-18  Jackson Harper  <jackson@ximian.com>
12712
12713         * ImageList.cs: Dont kill the list when the colour depth is
12714         changed, just change the colour depth of all the images.
12715         - Same goes for setting the image size. Just resize them all
12716         instead of killing the list softly.
12717
12718 2005-10-18  Jackson Harper  <jackson@ximian.com>
12719
12720         * Control.cs: Don't invalidate empty rectangles.
12721
12722 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12723
12724         * ListViewItem.cs:
12725           - Adds checked item to the Checked/Item lists (where empty before)
12726           - Do not add items to the Selected lists if they are already present
12727         * ListView.cs:
12728           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12729           - When deleting items make sure that we delete them for the Selected
12730           and Checked list also.
12731
12732 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12733
12734         * Label.cs: Dispose objects no longer used
12735         * ThemeWin32Classic.cs: Dispose objects no longer used
12736
12737 2005-10-18  Jackson Harper  <jackson@ximian.com>
12738
12739         * TabControl.cs: Don't refresh the whole control when the tabs are
12740         scrolled, we just need to refresh the tab area.
12741
12742 2005-10-17  Jackson Harper  <jackson@ximian.com>
12743
12744         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12745         after handle when we need it.
12746
12747 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12748
12749         * Control.cs: When the parent size changes, recalculate anchor 
12750           positions. Partial fix for #76462
12751
12752 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12753
12754         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12755           drawn. Fixes #76462
12756
12757 2005-10-17  Jackson Harper  <jackson@ximian.com>
12758
12759         * MonthCalendar.cs: Don't create the numeric up down until our
12760         handle is created. Otherwise our handle is created in the
12761         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12762         yet.
12763
12764 2005-10-17  Jackson Harper  <jackson@ximian.com>
12765
12766         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12767         correctly.
12768
12769 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12770         * TreeNode.cs : small logical fix (was using local var instead of field)
12771         
12772 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12773
12774         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12775
12776 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12777
12778         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12779
12780 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12781
12782         * Control.cs: 
12783           - Re-implemented anchoring code. My first version was really broken.
12784             This fixes bug #76033. Unlike the previous implementation we will
12785             no longer have round errors since all numbers are calculated from
12786             scratch every time. Removed various anchor-related obsolete vars.
12787           - InitLayout no longer causes layout event firing and layout to be 
12788             performed
12789
12790 2005-10-16  Jackson Harper  <jackson@ximian.com>
12791
12792         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12793         which was broken).
12794
12795 2005-10-16  Jackson Harper  <jackson@ximian.com>
12796
12797         * TabControl.cs: Remove debug code.
12798
12799 2005-10-16  Jackson Harper  <jackson@ximian.com>
12800
12801         * XEventQueue.cs: Increase the default queue size (very simple
12802         apps needed to grow the queue).
12803         * Hwnd.cs: No finalizer so we don't need to suppress
12804         finalization. Compute the invalid area manually so a new rectangle
12805         does not newto be created.
12806         * ScrollableControl.cs: Don't set any params (otherwise visibility
12807         isn't set correctly).
12808         * MdiChildContext.cs: New constructor takes the mdi parent so it
12809         doesn't have to be computed and avoids a crash on windows. Draw
12810         the window icon properly, and allow the text to be seen.
12811         * Form.cs: Use new MdiChildContext constructor. Make sure the
12812         child context isn't null in wndproc.
12813         * TabControl.cs: Don't set focus, this is muddling keyboard
12814         behavoir. Expand the tab rows when a window size increase will
12815         allow extra tabs to be seen. Don't allow tabs smaller than the
12816         width of a window to be scrolled out of view.
12817         * TreeNode.cs:
12818         * TreeView.cs: Use measure string to calculate a nodes width, the
12819         width is cached and only updated when the text or the font is
12820         changed. Don't check for expand/collapse clicks on the first level
12821         nodes if root lines are disabled.
12822         
12823 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12824
12825         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12826
12827 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12828
12829         * DataGridBoolColumn.cs: fixes warning
12830
12831 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12832
12833         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12834         to match more to match more precisely the MS Net behavior
12835
12836 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12837
12838         * Hwnd.cs: Added field to track if window is mapped
12839         * XplatUIX11.cs: 
12840           - Unmap windows if they become 0-size, re-map when 
12841             they are >0 again; fixes #76035
12842           - Re-set our error handler after initializing X11Desktop
12843             to override any error handlers Gtk or whatever was called
12844             may have set.
12845
12846 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12847
12848         * CheckedListBox.cs: Removed unused vars
12849         * ListView.cs: Fixed signatures
12850         * RichTextBox.cs: Removed unused vars
12851         * TextBoxBase.cs: Removed unused vars
12852         * XplatUIWin32.cs: Removed unused vars
12853         * XplatUIX11.cs: Removed unused vars
12854         * XplatUI.cs: Updated version and date to latest published
12855
12856 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12857
12858         * Cursor.cs: Added private .ctor to work around a bug in
12859           resourceset (Thanks to Geoff Norton for the help on this)
12860         * SplitterEventArgs.cs: Made fields accessible so we don't
12861           waste boatloads of objects and can reuse the same one
12862           in Splitter
12863         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12864           any captions and borders when generating screen coordinates
12865         * Splitter.cs: Reimplemented control, now fully complete, uses
12866           rubberband drawing, supports and obeys all properties, has
12867           proper cursors
12868
12869 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12870
12871         * Form.cs (Form): Setup default values for autoscale and
12872         autoscale_base_size;  Make these instance variables, not static
12873         variables. 
12874
12875         (OnLoad): on the first load, adjust the size of the form.
12876
12877 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12878
12879         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12880           width argument to DrawReversibleRectangle()
12881         * XplatUIWin32.cs, XplatUIX11.cs: 
12882           - Implemented width for DrawReversibleRectangle()
12883           - Added logic to DrawReversibleRectangle that recognizes a zero
12884             width or height and only draws a line in that situation
12885         
12886 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12887
12888         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12889         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12890         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12891           method (it uses our FosterParent window to get a graphics context)
12892
12893 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12894
12895         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12896           and SetWindowBackground methods
12897         * Control.cs:
12898           - Setting proper ControlStyles
12899           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12900             EraseWindowBackground, instead we draw the window background
12901             ourselves in PaintControlBackground. This behaviour is
12902             required to match MS, where, when OnPaintBackground is not
12903             called, the background is not drawn.
12904           - Removed unneeded Refresh() in set_Text
12905         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12906         * XplatUIX11.cs:
12907           - Created DeriveStyles method to translate from CreateParams to
12908             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12909             matches FormBorderStyle enum values)
12910           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12911             style calculations into single DeriveStyles method
12912           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12913             from redrawing the whole window on any resize or expose.
12914           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12915             all styles were applied to our whole/client window appropriately
12916           - Removed EraseWindowBackground() and SetWindowBackground() methods
12917           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12918             no longer clear/redraw the background through X
12919           - Removed handling of erase_pending bit, we have no use for it (or
12920             so it seems)
12921         * XplatUIOSX.cs:
12922           - Removed generation and handling of WM_ERASEBKGND message
12923           - Removed EraseWindowBackground() and SetWindowBackground() methods
12924           - Removed handling of hwnd.ErasePending flag
12925         * XplatUIWin32.cs:
12926           - Removed EraseWindowBackground() and SetWindowBackground() methods
12927           - We no longer call EraseWindowBackground on PaintEventStart, we 
12928             ignore the fErase flag, erasing is handled in Control in the
12929             background handler
12930         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12931           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12932           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12933           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12934           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12935           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12936           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12937
12938 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12939
12940         * PropertyGrids.cs: Get sub properties
12941         * PropertyGridView.cs: Fix drawing code
12942
12943 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12944
12945         * ListBox.cs: Fixes 76383
12946
12947 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12948
12949         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12950         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12951         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12952
12953
12954 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12955
12956         * ComboBox.cs: Fixes border drawing
12957
12958 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12959
12960         * MimeIcon.cs: Ignore errors if the file can not be read.
12961
12962 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12963
12964         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12965          - Fixed border calculations
12966          - Fixed horizontal scrolling in single column listboxes
12967          - Fixed drawing issues
12968
12969 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12970
12971         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12972           FormBorderStyle enum
12973         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12974           code to determine FormBorderStyles from CreateParams
12975         * Form.cs:
12976           - Fixed bug where we'd set the wrong window styles if we were
12977             not creating an MDI window
12978           - Added call to XplatUI.SetBorderStyle when form borders are set
12979         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12980         * Hwnd.cs:
12981           - Removed obsolete edge style
12982           - Switched from BorderStyle to FormBorderStyle
12983         
12984 2005-10-10  Jackson Harper  <jackson@ximian.com>
12985
12986         * Form.cs: Use the property to get the window handle instead of
12987         accessing it directly. Prevents a null reference exception.
12988
12989 2005-10-10  Jackson Harper  <jackson@ximian.com>
12990
12991         * TreeView.cs: Don't adjust the rect given to DrawString now that
12992         our libgdiplus draws correctly.
12993
12994 2005-10-08  Jackson Harper  <jackson@ximian.com>
12995
12996         * TreeView.cs: Don't try to find the clicked on node if there are
12997         no nodes in the tree.
12998
12999 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13000
13001         * RichTextBox.cs:
13002
13003           restore
13004
13005 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13006
13007         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13008           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13009           ErrorProvider.cs:
13010           Use ResPool for brushes and dispose System.Drawing objects that
13011           are not used anymore.
13012
13013 2005-10-07  Jackson Harper  <jackson@ximian.com>
13014
13015         * MdiChildContext.cs: Use the new borders instead of drawing them
13016         ourselves.
13017
13018 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13019
13020         * Calling UpdateBounds after changing the window's BorderStyle 
13021         since the style can change the ClientSize
13022
13023 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13024
13025         * Control.cs: Made PaintControlBackground virtual
13026         * Panel.cs: Overriding PaintControlBackground instead of using paint
13027           event; paint event method was interfering with 'real' users of the
13028           event.
13029
13030 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13031
13032         * ThemeWin32Classic.cs: remove border drawing since it is handled
13033         by the base control class now and was causing double border drawing.
13034
13035 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13036
13037         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13038           but it does seem to match MS behaviour. This fixes bug #75324
13039
13040 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13041
13042         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
13043           somewhat hackish looking
13044
13045 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13046
13047         * TextBoxBase.cs:
13048           - We now accept Enter even if AcceptEnter is false, if the containing
13049             form does not have an AcceptButton configured (fixes bug #76355)
13050           - Calculations are now fixed to no longer use Width/Height, but
13051             ClientSize.Width/Height, since we now support borders (this was
13052             a result of fixing borders and therefore bug #76166)
13053           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
13054             true (fixes bug #76354)
13055         
13056 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13057
13058         * Control.cs: 
13059           - Defaulting BorderStyle and setting it in XplatUI when our window 
13060             is created
13061           - Added enum check to InternalBorderStyle setter
13062         * XplatUIX11.cs: 
13063           - Added drawing of window borders
13064           - Now properly calculates WM decorations offset for toplevel 
13065             windows (fixes bug #74763)
13066         * XplatUIWin32.cs: 
13067           - Implemented BorderStyles for windows (we're letting win32 draw 
13068             the border for us)
13069           - Fixed the signature for SetWindowLong
13070         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
13071           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
13072           setting borders
13073         * UpDownBase.cs: Remove drawing of borders, this is handled by
13074           the driver, outside the client area
13075         * ListView.cs: Removed bogus border calculations. The control should
13076           be oblivious to borders, since those are not part of the client
13077           area. 
13078         * X11DesktopColors.cs: Commented out (currently) unneeded variables
13079         * ThemeWin32Classic.cs: Removed border calculations from ListView 
13080           drawing code
13081
13082 2005-10-06  Jackson Harper  <jackson@ximian.com>
13083
13084         * MdiChildContext.cs: Clear out the old virtual position remove
13085         all the unneeded calls to CreateGraphics.
13086
13087 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13088
13089         * TextControl.cs: Use proper color for highlighted text; fixes #76350
13090
13091 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
13092
13093         * Form.cs: 
13094           - Added loading and setting of our new default icon
13095           - Only set icon if window is already created
13096
13097 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13098
13099         * Label.cs:
13100           - Do not explicitly set the foreground and background colors, to
13101             allow inheriting from parents (fixes #76302)
13102           - Use Control's InternalBorderStyle property to deal with borders
13103
13104 2005-10-06  Jackson Harper  <jackson@ximian.com>
13105
13106         * MdiChildContext.cs: Use the new xplatui function to draw a
13107         reversible rect.
13108
13109 2005-10-06  Jackson Harper  <jackson@ximian.com>
13110
13111         * Form.cs: Add the parent before creating the child context cause
13112         we need the parent when setting up the child.
13113
13114 2005-10-06  Jackson Harper  <jackson@ximian.com>
13115
13116         * FolderBrowserDialog.cs: redo the tree population code so a
13117         second thread isn't used. Should be a lot faster and more stable
13118         now.
13119
13120 2005-10-05  Jackson Harper  <jackson@ximian.com>
13121
13122         * TreeView.cs: There are no expand/collapse boxes if the node has
13123         no children.
13124
13125 2005-10-05  Jackson Harper  <jackson@ximian.com>
13126
13127         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13128
13129 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13130
13131         * FileDialog.cs: Fix InitialDirectory
13132
13133 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13134
13135         * ComboBox.cs:
13136                 - Fixes changing between styles
13137                 - Fixes simple mode
13138                 - Fixes last item crashing when navigating with keyboard
13139
13140 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13141
13142         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13143
13144 2005-10-05  Jackson Harper  <jackson@ximian.com>
13145
13146         * TreeView.cs: If updating the root node do a full refresh.
13147         * TreeNode.cs: The root node should be expanded by default. Also
13148         added a utility prop to tell if we are the root node.
13149         * TreeNodeCollection.cs: Only refresh if the node we are being
13150         added to is expanded. Also added a comment on a potential
13151         optimization.
13152         
13153 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13154
13155         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13156           in dispose method. Fixes #76330
13157
13158 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13159
13160         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13161
13162                 - Implements vertical and horizontal scrolling using XplatUI
13163                 - Fixes keyboard navagation
13164                 - Fixes EnsureVisible
13165                 - Drawing fixes
13166                 - Handles and draws focus properly
13167
13168
13169 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13170
13171         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13172           Create handle. NET_2_0: Destroy handle when value is null.
13173
13174 2005-10-03  Jackson Harper  <jackson@ximian.com>
13175
13176         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13177         revert and a new patch to prevent the thumb from refreshing so
13178         much.
13179
13180 2005-10-02  Jackson Harper  <jackson@ximian.com>
13181
13182         * ScrollBar.cs: Don't update position if it hasn't actually
13183         changed. This occurs when you hold down the increment/decrement
13184         buttons and the thumb gets to the max/min.
13185
13186 2005-10-01  Jackson Harper  <jackson@ximian.com>
13187
13188         * Form.cs:
13189         * MdiChildContext.cs:
13190         * MdiClient.cs: Implement ActiveMdiChild in Form.
13191
13192 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13193
13194         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13195
13196 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13197
13198         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13199           be found
13200
13201 2005-09-30  Jackson Harper  <jackson@ximian.com>
13202
13203         * ListBox.cs: Don't do a full refresh unless some data has
13204         actually changed.
13205
13206 2005-09-30  Jackson Harper  <jackson@ximian.com>
13207
13208         * TreeView.cs: Make sure that the checkboxes size is factored in
13209         even when not visible.
13210
13211 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13212
13213         * FileDialog.cs: Fix Jordi's build break
13214
13215 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13216
13217         * FileDialog.cs: 
13218                 - Use standard the Windows colours for the combobox as espected
13219                 - Dispose objects that use resouces when no longer need them
13220
13221 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13222
13223         * X11DesktopColors.cs: Initial incomplete implementation
13224         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13225
13226 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13227
13228         * Theme.cs: 
13229           - Switched Theme color names to match the names defined in 
13230             System.Drawing.KnownColors. Life's hard enough, no need to make 
13231             it harder.
13232           - Added setters to all theme color properties so themes can set
13233             their color schemes. The setters also propagate the color changes
13234             to System.Drawing.KnownColors via reflection
13235         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13236           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13237           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13238           use the new, more logical theme color names
13239         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13240           post-NT colors
13241         * ThemeWin32Classic.cs:
13242           - Removed code to set the old classic Windows colors. Instead it
13243             now relies on the colors returned by System.Drawing.KnownColors
13244             which will be either modern static colors (Unix) or colors
13245             read from the user's configuration (Win32)
13246           - Updated to use the new, more logical theme color names
13247           - Switched DataGrid drawing code to use only Theme colors instead of
13248             a mix of System.Drawing.KnownColors and Theme colors
13249           - DrawFrameControl(): Removed code that fills the button area, the
13250             fill would overwrite any previous fill done by a control. This
13251             fixes bug #75338 
13252           - Added DrawReversibleRectangle() stub
13253         * ScrollableControl.cs: Set visible state to false when scrollbars
13254           are removed (pdn fix)
13255         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13256           DrawReversibleRectangle() method to allow drawing primitive 
13257           'rubber bands'
13258         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13259
13260 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13261
13262         * ImageList.cs: Add(Icon): Create handle.
13263
13264 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13265
13266         * ListView.cs:
13267         * ThemeWin32Classic.cs:
13268                 - Fixes detail mode
13269                 - Sets clippings
13270                 - Issues with drawing
13271
13272 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13273
13274         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13275           source has to be the ImageList.
13276
13277 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13278
13279         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13280
13281 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13282
13283         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13284
13285 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13286
13287         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13288
13289 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13290         * GridItem.cs: Fixed TODOs
13291         * GridItemCollection.cs: Added ICollection interface
13292
13293 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13294
13295         * ImageList.cs: Resize icons when needed.
13296
13297 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13298
13299         * ListViewItem.cs
13300                 - Fixes GetBounds and returns on screen rects
13301         * ListView.cs:
13302                 - Fixes vertical and horzintal scrolling of items
13303         * ThemeWin32Classic.cs:
13304                 - Fixes drawing
13305                 
13306 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13307
13308         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13309
13310 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13311
13312         * ImageList.cs: Added comments about handle creation. Moved Handle,
13313           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13314           Handle is created in Add methods.
13315
13316 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13317          
13318         * DataGridDrawingLogic.cs: 
13319                 - Takes rows into account on Colum calculations
13320                 - Returns the column when clickig
13321         * DataGrid.cs:
13322                 - Fixes default HitTestInfo values
13323                 - Fixes HitTestInfo.ToString
13324                 - Fixes ResetBackColor          
13325         
13326 2005-09-28  Jackson Harper  <jackson@ximian.com>
13327
13328         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13329         sizing or cursor changes). Also added some temp code to draw the
13330         titlebars text (Makes dev a little easier).
13331
13332 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13333
13334         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13335
13336 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13337          
13338         * ListBox.cs: Fixes bug 76253
13339
13340 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13341
13342         * ImageList.cs: Added comments about the current implementation. Added
13343           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13344           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13345           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13346           with Bitmap.LockBits for better performance. Revised the whole file to
13347           match MS.NET behaviour and provide better performance. Non-public
13348           interface members are calling public members even when they throw
13349           NotSupportedException for better maintainability. Moved ColorDepth,
13350           ImageSize, ImageStream and TransparentColor implementations to
13351           ImageCollection for better performance as these properties are not used
13352           by ImageList.
13353         * ImageListStreamer.cs: Added a new internal constructor that takes an
13354           ImageList.ImageCollection and serializes Images based on
13355           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13356           match ImageList property name.
13357
13358 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13359
13360         * ListBox.cs: Fixes IndexFromPoint for last item
13361
13362 2005-09-27  Jackson Harper  <jackson@ximian.com>
13363
13364         * Form.cs: Set the position of new mdi children correctly.
13365
13366 2005-09-27  Jackson Harper  <jackson@ximian.com>
13367
13368         * MdiClient.cs: New mdi children need to be added to the back of
13369         the controls collection so the zorder is set correctly. Also add a
13370         count of all the child windows that have been created.
13371
13372 2005-09-27  Jackson Harper  <jackson@ximian.com>
13373
13374         * Form.cs (CreateParams): Setup MDI forms correctly.
13375
13376 2005-09-27  Jackson Harper  <jackson@ximian.com>
13377
13378         * MdiChildContext.cs:
13379         * MonthCalendar.cs:
13380         * UpDownBase.cs:
13381         * ListBox.cs:
13382         * ListView.cs:
13383         * TextBoxBase.cs:
13384         * TreeView.cs:
13385         * ScrollableControl.cs:
13386         * ComboBox.cs: Add implicit controls using the new implict control
13387         functionality in ControlCollection. Also try to block multiple
13388         control add in a suspend/resume layout to save some cycles.
13389         
13390 2005-09-27  Jackson Harper  <jackson@ximian.com>
13391
13392         * Control.cs: Add functionality to the controls collection to add
13393         'implicit controls' these are controls that are created by the
13394         containing control but should not be exposed to the user. Such as
13395         scrollbars in the treeview.
13396         * Form.cs: The list var of the ControlsCollection is no longer
13397         available because of the potential of implicit controls getting
13398         ignored by someone accessing the list directly.
13399
13400 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13401
13402         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13403           loose it's parent. (Fixed bug introduced in r49103 when we added
13404           setting the child parent to null on Remove)
13405
13406 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13407
13408         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13409         * Splitter.cs: Added missing attributes for BorderStyle property.
13410         * TextBoxBase.cs: Marked Calculate* methods internal.
13411         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13412         MS.NET.
13413
13414 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13415          
13416         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13417
13418 2005-09-25  Jackson Harper  <jackson@ximian.com>
13419
13420         * TreeView.cs: Update the node bounds correctly regardless of
13421         whether the node is visible.
13422
13423 2005-09-25  Jackson Harper  <jackson@ximian.com>
13424
13425         * ImageList.cs: Don't dispose the image after it is added to the
13426         image list. Only reformat images that need to be resized.
13427
13428 2005-09-25  Jackson Harper  <jackson@ximian.com>
13429
13430         * ImageList.cs: Don't set the format when changing the image.
13431
13432 2005-09-25  Jackson Harper  <jackson@ximian.com>
13433
13434         * TreeView.cs: We can't just assume the node has a font. Use the
13435         treeviews font if no node font is available.
13436
13437 2005-09-25  Jackson Harper  <jackson@ximian.com>
13438
13439         * TreeView.cs: Allow the scrollbars to be reset with negative
13440         values.
13441         - Don't add scrollbars to negative sized windows.
13442
13443 2005-09-23  Jackson Harper  <jackson@ximian.com>
13444
13445         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13446         old Mono.Posix. Also remove some stray code that shouldn't have
13447         been committed.
13448
13449 2005-09-23  Jackson Harper  <jackson@ximian.com>
13450
13451         * TreeView.cs: Attempt at proper sizing of the horizontal
13452         scrollbar. Also don't resize the scrollbars unless they are
13453         visible.
13454
13455 2005-09-23  Jackson Harper  <jackson@ximian.com>
13456
13457         * TreeView.cs: We don't need to expand the invalid area when the
13458         selection changes, as this is all drawn in the node's bounding
13459         box. The area needs to be expanded (previous typo was contracting
13460         it) when the focus rect moves.
13461
13462 2005-09-23  Jackson Harper  <jackson@ximian.com>
13463
13464         * TreeView.cs: Display the selection box under the correct
13465         circumstances. We were rendering white text with no selection box
13466         before.
13467
13468 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13469
13470         * TextControl.cs(Split): Now updates selection start/end if it points 
13471           into a line that's being split. Fixes a FIXME and bug #75258
13472
13473 2005-09-23  Jackson Harper  <jackson@ximian.com>
13474
13475         * Binding.cs:
13476         * ListControl.cs: Don't use the path when retrieving binding
13477         managers from the binding context. My bat sense tells me that the
13478         path is only used on insertion.
13479
13480 2005-09-22  Jackson Harper  <jackson@ximian.com>
13481
13482         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13483
13484 2005-09-22  Jackson Harper  <jackson@ximian.com>
13485
13486         * Splitter.cs: There are special cursors used for splitting.
13487         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13488
13489 2005-09-22  Jackson Harper  <jackson@ximian.com>
13490
13491         * Splitter.cs: Change the cursor appropriately when the splitter
13492         is moused over, so the user actually knows there is a splitter
13493         there.
13494
13495 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13496
13497        * Label.cs : Fix ToString method to give same output as MS.NET
13498
13499 2005-09-22  Jackson Harper  <jackson@ximian.com>
13500
13501         * TreeView.cs: Create the scrollbars when the handle is created
13502         and add them right away, just make them invisble. Also account for
13503         the window being shrunk vertically to the point that the vert
13504         scrollbar needs to be added.
13505         - Remove some 0.5 adjustments to get around anti aliasing issues.
13506         
13507 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13508          
13509         * MainMenu.cs: Fixes default value
13510         * MenuItem.cs: Fixes default value
13511
13512 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13513
13514         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13515
13516 2005-09-21  Jackson Harper  <jackson@ximian.com>
13517
13518         * Control.cs: Don't try to set the border style on the window if
13519         it hasn't been created. When the window is created the border
13520         style will be used.
13521
13522 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13523
13524         * Control.cs (Update): Don't call XplatUI if we don't have a
13525           window handle yet
13526
13527 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13528
13529         * ContainerControl.cs: Instead of throwing an exception, print
13530           a one-time warning about Validate not being implemented
13531         * XplatUIWin32.cs: Removed debug output
13532
13533 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13534
13535         * Control.cs: Only set XplatUI background if we expect the windowing
13536           system to handle the background. This stops controls that draw their
13537           own background from flickering
13538
13539         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13540           creation. This allows, amongst other things, using MWF X11 windows 
13541           with OpenGL.
13542
13543 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13544
13545         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13546           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13547           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13548           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13549           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13550           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13551           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13552           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13553           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13554           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13555           GridColumnStylesCollection.cs, 
13556           IDataGridColumnStyleEditingNotificationService.cs,
13557           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13558           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13559           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13560           TreeNodeCollection.cs, AmbientProperties.cs, 
13561           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13562           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13563           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13564           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13565           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13566           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13567           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13568           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13569           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13570           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13571           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13572           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13573           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13574           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13575           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13576           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13577           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13578           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13579           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13580           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13581           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13582           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13583           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13584           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13585           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13586           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13587           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13588           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13589           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13590           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13591           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13592           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13593           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13594           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13595           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13596           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13597           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13598
13599 2005-09-21  Jackson Harper  <jackson@ximian.com>
13600
13601         * TreeNode.cs: Call Before/After Expand not Collapse when
13602         expanding.
13603
13604 2005-09-20  Jackson Harper  <jackson@ximian.com>
13605         
13606         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13607
13608 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13609          
13610         * ListViewItem.cs:
13611                 - Fixes bug 76120
13612                 - Fixes proper storing of subitems
13613                 - Fixes not updated items
13614
13615 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13616
13617         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13618           things if our window handle isn't created yet. Also disabled 
13619           debug for TextBoxBase
13620
13621 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13622
13623         * MenuAPI.cs: Remove filtering of events to allow menu usage
13624
13625 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13626
13627         * Cursor.cs: Allow null to be passed to Cursor.Current.
13628
13629 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13630
13631         * ThemeWin32Classic.cs:
13632           - Change some private methods/fields to protected virtual so that 
13633             they can be accessed and overriden in derived classes
13634           - First refactoring of some methods. Derived themes now don't 
13635             need to duplicate the complete code from ThemeWin32Classic
13636         * ThemeNice.cs:
13637           - Added nice StatusBar
13638           - Derive from ThemeWin32Classic and not Theme
13639           - Removed duplicate ThemeWin32Classic code
13640
13641 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13642
13643         * Control.cs (ControlCollection.Add): If the value null is passed
13644         the control is ignored. 
13645
13646         Optimize this loop.
13647
13648 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13649
13650         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13651           PostQuitMessage state.
13652         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13653
13654 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13655
13656         * Application.cs: Our constructor will never get called, move 
13657           initialization to fields; fixes bug #75933
13658
13659 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13660
13661         * FileDialog.cs :
13662                 - Allow files to be selected properly using file name
13663                 combo box.
13664                 - Add ability to change diretory (absolute / relative)
13665                 using file name combo box.
13666
13667 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13668          
13669         * ListBox.cs: 
13670                 - Fixes Multicolumn listboxes item wrong calculations
13671                 - Allows to click when only one item is in the listbox
13672                 - Fixes crash when no items using keyboard navigation
13673
13674 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13675
13676         * ComboBox.cs: Reverted almost everything from the latest patch which
13677           broke ComboBox
13678
13679 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13680         
13681         * ToolTip.cs:
13682                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13683         * ComboBox.cs:
13684                 - When DropDownStyle is Simple, it does not show scrollbar 
13685                 to the last item of the list.
13686                 - When DropDownStyle is Simple, it crashed when the list was 
13687                 scrolled down with the down cursor key.
13688                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13689                 selected item was not shown.
13690                 - The position of the selected item was not preserved when 
13691                 the next dropdown happened.
13692         * ThemeWin32Classic.cs:
13693                 - Items were wrapped at the right end.
13694         * CheckedListBox.cs:
13695                 - Fixed Add method
13696         * ListBox.cs:
13697                 - Items should be fully shown.
13698                 - When resizing and vertical scrollbar disappeared, the item 
13699                 of index 0 should be on the top of the list.
13700                 - GetItemRectangle should consider the size of ver. scrollbar
13701         * StatusBar.cs:
13702                 - SizingGrip area should not be allocated when it is not 
13703                 displayed.
13704                 - Now it reflects MinWidth of the containing panel and 
13705                 fixed a crash that happens when its width becomes so small.
13706
13707 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13708
13709         * CheckedListBox.cs: Fixes bug 76028
13710         * ListBox.cs: Fixes bug 76028
13711
13712 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13713
13714         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13715         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13716
13717 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13718
13719         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13720
13721 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13722
13723         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13724
13725 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13726
13727         * IRootGridEntry.cs: Added
13728         * PropertyGridCommands.cs: Added
13729         * PropertiesTab.cs: Added missing methods and property
13730         * PropertyGridView.cs: Made class internal
13731         * PropertyGridTextBox.cs: Made class internal
13732
13733 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13734
13735         * MimeIcon.cs: Try to check some other environment variables
13736           if "DESKTOP_SESSION" returns "default"
13737
13738 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13739
13740         * ThemeNice.cs: Corrected background colors (e.g. menus)
13741         * ColorDialog.cs: Use correct background colors for controls
13742
13743 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13744
13745         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13746
13747 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13748
13749         * RichTextBox.cs: Added initial implementation
13750         * lang.cs: Removed. Was accidentally checked in long time ago
13751         * TODO: Removed. Contents were obsolete
13752
13753 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13754                                                                                 
13755         * PropertiesTab.cs : Added
13756
13757 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13758                                                                                 
13759         * PropertyGrid.cs : Update
13760         * PropertyGridView.cs : Update
13761         * System.Windows.Forms.resx : Added images and strings
13762
13763 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13764
13765         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13766  
13767 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13768
13769         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13770           a busy loop right after the Ungrab the X11 display is otherwise 
13771           blocked
13772
13773 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13774
13775         * ThemeWin32Classic.cs: Optimise the use of clipping
13776
13777 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13778
13779         * DataGrid.cs: fixes recursion bug
13780
13781 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13782
13783         * ThemeNice.cs: 
13784           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13785           - Cleanup
13786
13787 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13788
13789         * ThemeNice.cs: Draw nice ProgressBars
13790
13791 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13792
13793         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13794
13795         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13796         bug finder.
13797
13798 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13799
13800         * ThemeNice.cs:
13801           - Added nicer menu drawing
13802           - Updated DrawTab
13803           - some refactoring
13804
13805 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13806
13807         * CreateParams.cs (ToString): Made output match MS
13808         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13809             handle is already created (to avoid forcing window creation)
13810         * XplatUIX11.cs: Set window text to caption after creating window,
13811           in case Text was set before window was created
13812         * Form.cs: Use this.Text instead of a static string as caption
13813
13814 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13815
13816         * NotifyIcon.cs: Don't set the window to visible; this screws
13817           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13818           OnPaint without a bitmap)
13819         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13820           happen very often anyway; we could add the check to the WM_PAINT 
13821           event generation code
13822
13823 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13824
13825         * NotifyIcon.cs: Fill the icon area with a background color, to 
13826           avoid 'residue' when transparent icons are drawn
13827         * XplatUIX11.cs:
13828           - Handle whole_window == client_window when destroying windows
13829           - SystrayAdd(): Set client_window to whole_window value to
13830             get mouse and other events passed to NotifyIcon
13831
13832 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13833
13834         * Form.cs: Set proper default for Opacity property
13835         * NotifyIcon.cs:
13836           - ShowSystray(): Don't bother creating telling the OS
13837             about the systray item if no icon is provided
13838           - Now handles WM_NCPAINT message to deal with whole/client window
13839             split
13840           - Create window as visible to not get caught by Expose optimization
13841         * Hwnd.cs: Removed debug message
13842         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13843           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13844             PaintEventStart/End to use new client argument
13845         * TextBoxBase.cs:
13846           - Commented out debug messages
13847           - Switched PaintEventStart/End to use new client argument
13848         * XplatUI.cs: Added client window bool to PaintEventStart()/
13849           PaintEventEnd() calls, to support drawing in non-client areas
13850         * XplatUIDriver.cs: 
13851           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13852             calls, to support drawing in non-client areas
13853           - Added conditional compile to allow using MWF BeginInvoke 
13854             on MS runtime
13855         * XplatUIX11.cs:
13856           - Added some conditional debug output
13857           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13858             whole/client window split
13859           - Implemented handling of client argument to PaintEventStart()/End()
13860         * Control.cs:
13861           - Throw exception if BeginInvoke() is called and the window handle
13862             or one of the window's parent handles is not created
13863           - Added conditional compile to allow using MWF BeginInvoke on
13864             MS runtime
13865           - get_Parent(): Only sets parent if handle is created. This avoids
13866             forcing window handle creation when parent is set.
13867           - Now fires Layout and Parent changed events in proper order
13868           - Switched to use Handle instead of window.Handle for Z-Order setting,
13869             the get_Parent() patch above causes us to possibly get null for 'window'
13870           - Implemented handling of client argument to PaintEventStart()/End()
13871           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13872             default handling)
13873           - Now sends a Refresh() to all child windows when Refresh() is called
13874
13875 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13876
13877         * Form.cs: Added (non-functional) Opacity property
13878         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13879
13880 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13881         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13882           use export MONO_THEME=nice to activate it.
13883           Currently supported controls:
13884           - Button
13885           - ComboBox
13886           - ScrollBar
13887           - TabControl (TabAlignment.Top only, other will follow)
13888         * ThemeEngine.cs: Add theme nice
13889         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13890           if enabled
13891
13892 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13893
13894         * Splitter.cs: Resize docked control and its neighbor.
13895
13896 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13897         -- Making Windows with Menus layout correctly --
13898         * Form.cs : The first leg of the fix
13899                 Menu setter - adjust Client Size as needed to make space for the menu
13900                 SetClientSizeCore - doesn't call base version to be able to pass the 
13901                         menu handle to XplatUI.CalculateWindowRect
13902         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13903         * XplatUIX11.cs: The critical second leg of the fix
13904                 GetWindowPos needs to use a recalculated client_rect
13905                 so that resizing the window doesn't break layout of child controls. 
13906                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13907                 Lots of \t\n killed
13908
13909 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13910
13911         * Label.cs: Now properly recalculates width and height on Font and Text
13912           changes if AutoSize is set
13913
13914 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13915         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13916
13917 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13918
13919         * ImageList.cs: Makes ToString method compatible with MS
13920
13921 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13922
13923         * MenuAPI.cs: fixes bug 75716
13924
13925 2005-08-11 Umadevi S <sumadevi@novell.com>
13926         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13927
13928 2005-08-11 Umadevi S <sumadevi@novell.com>
13929         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13930
13931 2005-08-10  Umadevi S <sumadevi@novell.com>
13932         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13933
13934 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13935
13936         * Menu.cs: fixes bug 75700
13937         * MenuAPI.cs: fixes navigation issues
13938
13939 2005-08-09  Umadevi S <sumadevi@novell.com>
13940         * CheckedListBox.cs - simple fix for GetItemChecked.
13941
13942 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13943
13944         * ComboBox.cs: Serveral fixes
13945         * ListBox.cs: Serveral fixes
13946
13947 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13948
13949         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13950         * ListBox.cs: Fixes FindString methods
13951
13952 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13953
13954         * DataGrid.cs: fixes bugs exposed by new tests
13955
13956 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13957
13958         * Mime.cs: Compile Mono assembly references only if compiling
13959           with Mono (Allows to build with VS.Net again)
13960
13961 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13962
13963         * Control.cs (PaintControlBackground): Draw background image
13964         corrrectly.
13965         (CheckForIllegalCrossThreadCalls): Stubbed.
13966         
13967         * Form.cs (OnCreateControl): Center when should be centered.
13968         
13969         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13970
13971 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13972
13973         * Binding.cs: Binding to properties should be case unsensitive
13974
13975 2005-07-18 vlindos@nucleusys.com
13976
13977         * DataGrid.cs: fixes setmember order
13978
13979 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13980
13981         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13982         * FileDialog.cs: FileDialog is now resizable and uses the new
13983           MimeIconEngine
13984
13985 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13986
13987         * DataGridTextBoxColumn.cs: default value
13988         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13989         * GridTableStylesCollection.cs: fixes checking MappingName
13990         * DataGridDrawingLogic.cs: fixes drawing logic issues
13991         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13992         * DataGrid.cs: fixes    
13993
13994 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13995
13996         * MimeGenerated.cs: Use case sensitive comparer for
13997           NameValueCollections
13998
13999 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14000
14001         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14002         * ThemeWin32Classic.cs: bug fixes, code refactoring
14003         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14004         * DataGrid.cs: bug fixes, code refactoring
14005         * DataGridTextBox.cs: bug fixes, code refactoring
14006         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14007         * Theme.cs:  bug fixes, code refactoring
14008
14009 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14010
14011         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14012           and other text box usage
14013
14014 2005-07-01  Jackson Harper  <jackson@ximian.com>
14015
14016         * TabControl.cs: Make sure the bottom of the tab covers the pages
14017         border.
14018
14019 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14020
14021         * Form.cs (ShowDialog): Assign owner of the dialog
14022         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14023           might have been moved to a tag with different height
14024
14025 2005-06-30  Jackson Harper  <jackson@ximian.com>
14026
14027         * Form.cs: Don't create an infinite loop when setting focus
14028         * MenuItem.cs: Don't dirty the parents if we don't have any
14029
14030 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14031
14032         * LibSupport.cs: Rename
14033
14034 2005-06-29  Peter Bartok  <pbartok@novell.com>
14035
14036         * TextBoxBase.cs: Re-align caret after deleting a character
14037         * TextControl.cs:
14038           - DeleteChars(): Ensure that tag covers the provided position
14039           - StreamLine(): Drop reference for dropped tag
14040
14041 2005-06-29  Peter Bartok  <pbartok@novell.com> 
14042
14043         * TextControl.cs: 
14044           - Selections now work properly, anchoring at the initial location
14045             and properly extending in either direction (SetSelectionToCaret(),
14046             SetSelectionStart() and SetSelectionEnd())
14047           - No longer redraws the whole control on selection change, now
14048             calculates delta between previous and new selection and only
14049             invalidates/redraws that area
14050           - Fixed FindPos() math off-by-one errors
14051           - Changed DeleteChars() to verify the provided tag covers the
14052             provided position, selections may have a tag that doesn't cover
14053             the position if the selection is at a tag border
14054           - Fixed off-by-one errors in DeleteChars()
14055           - Added missing streamlining check in DeleteChars() to remove
14056             zero-length tags
14057           - Implemented Invalidate() method, now properly calculates exposures
14058             between two given lines/positions
14059           - Implemented SetSelection()
14060           - Obsoleted and removed FixupSelection()
14061           - Improved RecalculateDocument() logic, removing code duplication
14062
14063 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14064
14065         * LibSupport.cs: changes to match different input/output arguments.
14066
14067 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14068
14069         * LibSupport.cs: added libsupport.so init routine.
14070
14071 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
14072         
14073         * ControlBindingsCollection.cs
14074                 - Throws an exception on null datasource when adding
14075                 - Checks for duplicated bindings when adding
14076
14077 2005-06-28  Jackson Harper  <jackson@ximian.com>
14078
14079         * TreeView.cs (OnKeyDown): Support left and right properly
14080         (navigates as well as expanding and collapsing.
14081         - Add support for Multiply, this expands all the selected nodes
14082         children.
14083         - Fix some tabbing.
14084
14085 2005-06-28  Jackson Harper  <jackson@ximian.com>
14086
14087         * TreeView.cs: Implement keyboard navigation, currently supports,
14088         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
14089         support for toggling checkboxes with the space bar.
14090
14091 2005-06-28  Jackson Harper  <jackson@ximian.com>
14092
14093         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
14094         tree.
14095
14096 2005-06-28  Jackson Harper  <jackson@ximian.com>
14097
14098         * TreeView.cs: Add missing event.
14099
14100 2005-06-27  Peter Bartok  <pbartok@novell.com> 
14101
14102         * TextControl.cs:
14103           - Made line ending size configurable (now allows for counting 
14104             lineendings as \n or \r\n)
14105           - Added margin to viewport to keep caret visible on right side
14106           - Fixed translation routines for line/pos to documentpos to consider
14107             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
14108           - Fixed some line-endings to be unix style
14109           - Fixed Document.FormatText to perform it's calculations 1-based
14110           - Added descriptions for a few methods that might otherwise get 
14111             used wrong
14112           - Added NOTE section with some basic conventions to remember at 
14113             the top of the file
14114           - Major fixup for RichTextBox selection drawing:
14115             * Fixed crashes when multiple tags on a single line were selected
14116             * fixed selection box drawing not overlaying text
14117             * fixed bogus offset calculation for tags not starting at index 1
14118             * Switched behaviour from using multiple Substrings of a 
14119               StringBuilder.ToString() to using multiple 
14120               StringBuilder.ToString(start, length) statements, hoping this is
14121               faster (kept original version commented out in the code, in case
14122               original version was faster)
14123         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14124           alignment != Left
14125         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14126           call it as well
14127
14128 2005-06-27  Jackson Harper  <jackson@ximian.com>
14129
14130         * TabControl.cs: Move to the left and right with the arrow
14131         keys. These keys don't cycle beyond first and last like
14132         tab. Refresh all the tabs when scrolling them to the left or
14133         right.
14134
14135 2005-06-27  Jackson Harper  <jackson@ximian.com>
14136
14137         * TabControl.cs:
14138           - ToString: Added method
14139           - CreateParams: Remove TODO and comment
14140           - OnKeyDown: Cycle through bounds properly.
14141           - SelectedIndex: Scroll to the right or left if we need to
14142           display the newly selected tab.
14143
14144 2005-06-23  Jackson Harper  <jackson@ximian.com>
14145
14146         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14147         set.
14148
14149 2005-06-23  Jackson Harper  <jackson@ximian.com>
14150
14151         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14152         CTRL-SHIFT-TAB, and HOME, END are there any others?
14153
14154 2005-06-23  Jackson Harper  <jackson@ximian.com>
14155
14156         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14157
14158 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14159         
14160         * DataGridTextBoxColumn.cs: fixes and enhancements
14161         * ThemeWin32Classic.cs: fixes and enhancements
14162         * DataGridBoolColumn.cs:  fixes and enhancements
14163         * DataGridDrawingLogic.cs:  fixes and enhancements
14164         * CurrencyManager.cs: fixes and enhancements
14165         * DataGrid.cs: fixes and enhancements
14166         * DataGridColumnStyle.cs:  fixes and enhancements
14167
14168 2005-06-22  Jackson Harper  <jackson@ximian.com>
14169
14170         * TabControl.cs: Add some missing methods that just call into the
14171         base. Make the TabPageCollection's IList interface behave in the
14172         same manner as the MS implementation.
14173
14174 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14175
14176         * TextControl.cs: Added sanity check
14177         * TextBoxBase.cs: 
14178           - Fixed wrapping behaviour, don't set wrap on single line controls
14179             (this fixes the breakage of colordialog introduced in an earlier
14180              checkin)
14181           - Added rudimentary support for autoscrolling right-aligned controls
14182             (still needs fixing, also, center alignment scroll is missing)
14183
14184 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14185         
14186         * ScrollBar.cs: Fixes thumbpos on Maximum values
14187
14188 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14189         
14190         * PropertyGridView.cs: Pass context information to UITypeEditors 
14191
14192 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14193
14194         * TextBoxBase.cs:
14195           - Now calling PositionCaret with absolute space coordinates
14196           - Enabled vertical scrolling
14197           - Better tracking of scrollbar changes, tied into WidthChange
14198             event
14199           - Improved cursor tracking
14200           - Removed debug output
14201         * TextControl.cs:
14202           - PositionCaret coordinates are now works in absolute space, not 
14203             the canvas
14204           - Improved tracking of document size
14205           - Added events for width and height changes
14206
14207 2005-06-21  Peter Bartok  <pbartok@novell.com>
14208
14209         * Form.cs: Set focus to active control when form is activated
14210         * TextControl.cs: 
14211           - Added word-wrap functionality to RecalculateLine() 
14212           - Added some short function descriptions for VS.Net to aid in
14213             writing dependent controls
14214           - Added Caret property, returning the current coords of the caret
14215           - Added ViewPortWidth and ViewPortHeight properties
14216           - Added Wrap property
14217           - Added CaretMoved event
14218           - Removed some old debug code
14219           - Split() can now create soft splits
14220           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14221           - Added method to format existing text
14222           - Fixed size/alignment calculations to use viewport
14223           - RecalculateDocument now can handle changing line-numbers while
14224             calculating lines
14225
14226         * TextBox.cs:
14227           - Added some wrap logic, we don't wrap if alignment is not left
14228           - Added casts for scrollbar var, base class switched types to
14229             also support RichTextBoxA
14230           - Implemented handling of scrollbar visibility flags
14231
14232         * TextBoxBase.cs:
14233           - Switched scrollbars type to RichTextBoxScrollBars to support
14234             RichTextBox
14235           - Added tracking of canvas width/height
14236           - Switched scrollbars to be not selectable (to keep focus on text)
14237           - Added central CalculateDocument() method to handle all redraw
14238             requirements
14239           - Added ReadOnly support
14240           - Added WordWrap support
14241           - Fixed handling of Enter key (we now treat it as a DialogKey)
14242           - Fixed caret positioning when h or v scroll is not zero
14243           - Fixed placing/generation of vertical scrollbar
14244           - Added CalculateScrollBars() method to allow updating scrollbar
14245             limits and visibility
14246           - Fixed handling of horizontal scroll
14247           - Added handling of vertical scroll
14248           - Implemented auto-'jump' when caret moves to close to a left or
14249             right border and there is text to be scrolled into view (currently
14250             there's the potential for a stack overflow, until a bug in
14251             scrollbar is fixed)
14252
14253 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14254         
14255         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14256
14257 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14258
14259         * Mime.cs:
14260         - added inodes.
14261         - return application/x-zerosize for files with size zero
14262           (if no extension pattern matches).
14263         - check matches collection for strings too.
14264         - return only the first mime type if the name value
14265           collection has more than one mime type.
14266
14267 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14268         
14269         * PropertyGrid.cs: Cleaned up some TODOs
14270         * PropertyGridView.cs: Added support for UITypeEditors
14271
14272 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14273         
14274         * DataGrid.cs: clears cached value
14275
14276 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14277
14278         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14279         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14280         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14281         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14282         
14283 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14284
14285         * ThemeWin32Classic.cs: fixes colour
14286
14287 2005-06-15  Peter Bartok  <pbartok@novell.com>
14288
14289         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14290         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14291         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14292         * Control.cs: Added some MWFCategory and MWFDescription attributes
14293         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14294
14295 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14296
14297         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14298         usage
14299
14300 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14301
14302         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14303         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14304         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14305         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14306         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14307         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14308
14309 2005-06-13  Jackson Harper  <jackson@ximian.com>
14310
14311         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14312         isn't printed when the user enables dropping. (X11 does accept
14313         drops).
14314         
14315 2005-06-13  Jackson Harper  <jackson@ximian.com>
14316
14317         * TreeView.cs: Remove some TODOS.
14318
14319 2005-06-13  Jackson Harper  <jackson@ximian.com>
14320
14321         * Form.cs: Hook into the mdi framework.
14322         * MdiClient.cs: Use the base control collections add method so
14323         parents get setup correctly. Set the default back colour and dock
14324         style.
14325         * MdiChildContext.cs: New class, this bad actor handles an
14326         instance of an MDI window. Right now there is only basic
14327         support. You can drag, close, and resize windows. Minimize and
14328         Maximize are partially implemented.
14329
14330 2005-06-13  Jackson Harper  <jackson@ximian.com>
14331
14332         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14333         freaky when both vals are negative. NOTE: There are probably other
14334         places in XplatUIX11 that this needs to be done.
14335
14336 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14337
14338         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14339         * DataGridColumnStyle.cs: fixes signature
14340
14341 2005-06-12  Jackson Harper  <jackson@ximian.com>
14342
14343         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14344         windows.
14345
14346 2005-06-11  Jackson Harper  <jackson@ximian.com>
14347
14348         * StatusBarPanel.cs: Signature cleanups. Implement
14349         BeginInit/EndInit.
14350
14351 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14352
14353         * DataGridTextBoxColumn.cs: Honors aligment
14354         * GridColumnStylesCollection.cs: Contains is case unsensitive
14355         * GridTableStylesCollection.cs: several fixes
14356         * DataGridTableStyle.cs: default column creation
14357         * DataGridDrawingLogic.cs: fixes
14358         * CurrencyManager.cs: ListName property
14359         * DataGrid.cs: multiple styles support
14360         * DataGridColumnStyle.cs: fixes
14361         
14362
14363 2005-06-10  Peter Bartok  <pbartok@novell.com>
14364
14365         * Control.cs(Select): Moved SetFocus call to avoid potential
14366           loops if controls change the active control when getting focus
14367         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14368           the up/down buttons
14369
14370 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14371
14372         * ImageListConverter.cs: Implemented
14373
14374 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14375
14376         * MonthCalendar.cs: Wired in NumericUpDown control for year
14377
14378 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14379
14380         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14381           DoubleClick events, since they are not meant to be fired.
14382
14383 2005-06-09  Peter Bartok  <pbartok@novell.com>
14384
14385         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14386           Jonathan's standalone controls into MWF, implemented missing
14387           events, attributes and methods; added xxxAccessible classes
14388         * AccessibleObject.cs: Made fields internal so other classes
14389           can change them if needed
14390
14391 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14392
14393         * UpDownBase.cs: Complete implementation
14394         * NumericUpDown.cs: Complete implementation
14395         * DomainUpDown.cs: Complete implementation
14396
14397 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14398
14399         * DataGridTextBoxColumn.cs: drawing fixes
14400         * DataGridCell.cs: fixes ToString method to match MSNet
14401         * DataGridTableStyle.cs: fixes
14402         * DataGridBoolColumn.cs: fixes, drawing
14403         * DataGridDrawingLogic.cs: fixes, new methods
14404         * DataGridTextBox.cs: Keyboard and fixes
14405         * DataGrid.cs:
14406                 - Keyboard navigation
14407                 - Scrolling fixes
14408                 - Row selection (single, multiple, deletion, etc)
14409                 - Lots of fixes
14410         
14411 2005-06-07  Jackson Harper  <jackson@ximian.com>
14412
14413         * ThemeWin32Classic.cs: Clear the background area when drawing
14414         buttons.
14415
14416 2005-06-06  Peter Bartok  <pbartok@novell.com>
14417
14418         * ImageListStreamer.cs: Fixed signature for GetData
14419         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14420         * ComboBox.cs:
14421           - Added missing ChildAccessibleObject class
14422           - Added missing OnXXXFocus overrides, switched to using those
14423             instead of the event handler
14424         * Control.cs:
14425           - Added Parent property for ControlAccessibleObject
14426           - Fixed signatures
14427           - Fixed attributes
14428           - Added ResetBindings()
14429         * ListBindingConverter.cs: Implemented some methods
14430         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14431         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14432         * ContainerControl.cs: Fixed signature, now subscribing to the
14433           ControlRemoved event instead of overriding the handler, LAMESPEC
14434         * CurrencyManager.cs: Added missing attribute
14435         * MonthCalendar.cs: Added missing properties
14436
14437 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14438
14439         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14440         
14441 2005-06-06  Gaurav Vaish and Ankit Jain
14442
14443         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14444         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14445         
14446 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14447
14448         * Control.cs: fixes CreateParams Width / Height.
14449
14450 2005-06-05  Peter Bartok  <pbartok@novell.com>
14451
14452         * Win32DnD.cs: Removed compilation warnings
14453
14454 2005-06-05  Peter Bartok  <pbartok@novell.com>
14455
14456         * Control.cs (CreateParams): Since we don't know if one of the
14457           properties we use is overridden, lets make sure if we fail accessing
14458           we continue with a backup plan
14459
14460 2005-06-05  Peter Bartok  <pbartok@novell.com>
14461
14462         * Win32DnD.cs:
14463           - Removed debug output
14464           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14465             struct
14466           - Plugged resource leak
14467         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14468           MS size
14469
14470 2005-06-05  Peter Bartok  <pbartok@novell.com>
14471
14472         * XplatUIWin32.cs: Removed DnD code
14473         * Win32DnD.cs: Implemented drop source and drop target functionality
14474
14475 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14476
14477         * UpDownBase.cs: remove duplicate addition of event, enable some code
14478         that was commented out.
14479         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14480         Validate input when a key is pressed. It works fine now for every
14481         combination of Hexadecimal. Only missing some drawing love when sharing
14482         space with other controls.
14483
14484 2005-06-04  Peter Bartok  <pbartok@novell.com>
14485
14486         * Control.cs:
14487           - We need to pass a window for DragDrop, so enable callback events
14488           - Added DnD callback events when being a DragSource
14489         * XplatUI.cs (StartDrag): Added window handle argument
14490         * XplatUIDriver.cs (StartDrag): Added window handle argument
14491         * QueryContinueDragEventArgs: Made fields internally accessible so
14492           drivers can set them
14493         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14494           can set them
14495
14496 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14497
14498         * DataGridTextBoxColumn.cs: column text editing
14499         * DataGridTableStyle.cs: Respect columns styles created by the user
14500         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14501         * DataGridBoolColumn.cs: bool column editing
14502         * DataGrid.cs: fixes to scrolling, properties, etc
14503         * DataGridTextBox.cs: handle keyboard
14504         * DataGridColumnStyle.cs: fixes
14505
14506 2005-06-02  Jackson Harper  <jackson@ximian.com>
14507
14508         * ImageListStreamer.cs: Somewhat broken implementation of
14509         GetObjectData. The RLE needs some work to match MS properly.
14510
14511 2005-06-02  Jackson Harper  <jackson@ximian.com>
14512
14513         * X11Dnd.cs: Attempting to keep at least one file in MWF
14514         monostyled.
14515
14516 2005-06-02  Peter Bartok  <pbartok@novell.com>
14517
14518         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14519           that way
14520
14521 2005-06-02  Peter Bartok  <pbartok@novell.com>
14522
14523         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14524         * XplatUI.cs: Added DoDragDrop() method
14525         * XplatUIDriver.cs: Added DoDragDrop() method
14526
14527 2005-06-02  Jackson Harper  <jackson@ximian.com>
14528
14529         * Splitter.cs: Implement BorderStyle.
14530
14531 2005-06-02  Jackson Harper  <jackson@ximian.com>
14532
14533         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14534         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14535         X11 using XDND.
14536
14537 2005-06-02  Peter Bartok  <pbartok@novell.com>
14538
14539         * DataObject.cs:
14540           - Added Data setter
14541           - Fixed broken insertion code for SetData, now also
14542             overwrites any existing entry of the same format name
14543         * Hwnd.cs: Added list of pointers that automatically gets
14544           freed when the window is disposed
14545         * XplatUI.cs: Call driver initialization method when loading
14546           a driver
14547         * Control.cs:
14548           - OnDragLeave takes EventArgs, not DragEventArgs
14549           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14550             supported
14551           - Forces style update when drop state changes
14552         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14553           not perfect since we cannot (yet) call the IDataObject.GetData()
14554           method, we keep getting 0x80004005 error, dunno why)
14555
14556 2005-06-02  Peter Bartok  <pbartok@novell.com>
14557
14558         * DragEventArgs.cs: Make fields internal so we can cache the
14559           object and re-set the fields from XplatUI
14560
14561 2005-06-02  Jackson Harper  <jackson@ximian.com>
14562
14563         * Control.cs: Add some internal methods so the DnD subsystem can
14564         raise DnD events. Also call into the driver when AllowDrop is set.
14565         * XplatUI.cs:
14566         * XplatUIDriver.cs: New method for setting whether or not a window
14567         is allowed to accept drag and drop messages.
14568                 
14569 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14570         
14571         * ScrollBar.cs: Make sure that values sent in Scroll events
14572         are always between Maximum and Minimum.
14573
14574 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14575
14576         * Menu.cs: Call MenuChanged when menuitem visibility has been
14577         changed.
14578         * MenuItem.cs: Rebuild menu when item is (not) visible.
14579         * MainMenu.cs: MainMenu has special MenuChanged.
14580         * Theme.cs: Caption and FrameBorderSize are not fixed.
14581         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14582         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14583         * XplatUIX11.cs,
14584         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14585         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14586
14587 2005-05-30  Jackson Harper  <jackson@ximian.com>
14588
14589         * DataFormat.cs: We can't statically initialize this stuff because
14590         it calls into the xplatui and could create a loop. So we lazy init
14591         it.
14592
14593 2005-05-28  Jackson Harper  <jackson@ximian.com>
14594
14595         * Control.cs: Proper implementation of Product(Name/Version).
14596
14597 2005-05-27  Jackson Harper  <jackson@ximian.com>
14598
14599         * DataObject.cs: Dont crash if no data is found.
14600
14601 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14602         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14603                 as per status page, guessing it should be set to true
14604
14605 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14606
14607         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14608         * DataGridTableStyle.cs: set proper formatting text, def header text
14609         * ThemeWin32Classic.cs: new themable paramaters
14610         * DataGridBoolColumn.cs: paint check box, get data, fixes
14611         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14612         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14613         * DataGridColumnStyle.cs: fixes
14614         * Theme.cs: new themable paramaters
14615                 
14616 2005-05-26  Peter Bartok  <pbartok@novell.com>
14617
14618         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14619
14620 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14621         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14622
14623 2005-05-24  Peter Bartok  <pbartok@novell.com>
14624
14625         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14626           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14627           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14628           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14629           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14630           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14631           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14632           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14633           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14634           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14635           missing attributes, etc
14636         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14637
14638 2005-05-24  Peter Bartok  <pbartok@novell.com>
14639
14640         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14641           when user tries to get help
14642         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14643           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14644           to suppress warnings
14645         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14646           avoid unreachable code warning
14647
14648 2005-05-20  Peter Bartok  <pbartok@novell.com>
14649
14650         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14651
14652 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14653
14654         * DataGridTextBoxColumn.cs: Basic painting methods
14655         * DataGridTableStyle.cs: Set table style in the column
14656         * ThemeWin32Classic.cs: Use Theme for colors
14657         * DataGridDrawingLogic.cs: Implement more drawing
14658         * DataGrid.cs: drawing, theming, enhacements, fixes
14659         * DataGridColumnStyle.cs: fixes, drawing
14660         * Theme.cs: theming for Datagrid
14661
14662 2005-05-20  Peter Bartok  <pbartok@novell.com>
14663
14664         * Cursor.cs: Implemented GetObjectData() method
14665
14666 2005-05-20  Peter Bartok  <pbartok@novell.com>
14667
14668         * Cursors.cs: Added setting of cursor name
14669         * Cursor.cs:
14670           - Implemented constructors
14671           - Implemented Draw and DrawStretched
14672           - Implemented Current property
14673           - Implemented == and != operators
14674           - Implemented Dispose()
14675           - Implemented ToString
14676           - Added missing attributes
14677         * XplatUIX11.cs:
14678           - Added missing reset for OverrideCursor when DoEvents is called
14679           - Fixed creation of cursor, logic was wrong
14680         * XplatUIWin32.cs:
14681           - Added missing reset for OverrideCursor when DoEvents is called
14682           - Fixed creation of cursor, bit arrays were swapped
14683         * Clipboard.cs: Removed obsolete MonoTODO attribute
14684
14685 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14686
14687         * ComboBox.cs: fixes OnSelectedItemChanged
14688         * ControlBindingsCollection.cs: fixes item range check
14689
14690 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14691
14692         * UpDownBase.cs:
14693                 - Calc preferred height properly
14694                 - Implement missing properties
14695                 
14696         * NumericUpDown.cs: Implement missing events
14697
14698 2005-05-19  Jackson Harper  <jackson@ximian.com>
14699
14700         * TabControl.cs: New method that resizes the tab pages before
14701         redrawing them. This as needed as the control is double buffered
14702         and sizing will not be recalculated unless ResizeTabPages is
14703         called.
14704         * TabPage.cs: Set base.Text instead of Text in the constructor so
14705         that UpdateOwner does not get called. Use the new Redraw method of
14706         TabControl instead of Refresh so the sizing is recalculated.
14707         * ThemeWin32Classic.cs: Draw the text for button tabs.
14708
14709 2005-05-19  Jackson Harper  <jackson@ximian.com>
14710
14711         * Control.cs: Paint control background images. Fix typo where
14712         PaintControlBackground was not getting called correctly.
14713
14714 2005-05-19  Peter Bartok  <pbartok@novell.com>
14715
14716         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14717           I can investigate, apparently I broke FileDialog
14718
14719 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14720
14721         * AxHost.cs: Some simple properties.
14722         * Control.cs: window must be accessible after ctor.
14723         * Form.cs: Added TransparencyKey property.
14724         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14725         * XplatUIWin32.cs: SetBorderStyle implemented.
14726
14727 2005-05-18  Peter Bartok  <pbartok@novell.com>
14728
14729         * DataObject.cs: Entries are not global but particular to the
14730           DataObject, now it behaves that way
14731         * XplatUIWin32.cs: Implemented Clipboard methods
14732         * Clipboard.cs: Implemented
14733         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14734         * XplatUIOSX.cs: Updated to final clipboard prototypes
14735         * XplatUIX11.cs: Implemented Clipboard methods
14736         * XplatUIDriver.cs: Updated to final clipboard prototypes
14737         * XplatUIStructs.cs:
14738           - Added BITMAPINFOHEADER struct
14739           - Added ClipboardFormats enum
14740         * X11Structs.cs:
14741           - Added ClipboardStruct
14742           - Added Atom enum items for clipboard types
14743           - Fixed atom types for Selection event structures
14744         * DataFormats.cs:
14745           - Added internal properties and methods for drivers to enumerate
14746             all known formats
14747           - Switched initialization method to allow drivers to assign their
14748             own IDs even for the MS predefined clipboard IDs
14749         * XplatUI.cs: Updated to final clipboard interface
14750
14751 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14752         * PropertyGridView.cs: Fixed compiler warnings.
14753
14754 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14755         * PropertyGrid.cs: Added some event calls
14756         * PropertyGridView.cs: Change drawing code to use double buffering
14757         * PropertyGridTextBox.cs: Changed Text property name
14758         * GridItem.cs: Added Bounds property.
14759         * GridEntry.cs: Added Bounds property.
14760
14761 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14762
14763         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14764         since GetType() may not return the correct type if the object is
14765         a remoting proxy.
14766
14767 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14768
14769         * TreeNodeCollection.cs: fixes get/set item ranges
14770         
14771 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14772
14773         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14774                 
14775 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14776
14777         * ComboBox.cs: Fix item range comparation
14778         * ListView.cs: Fix item range comparation
14779
14780 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14781
14782         * FontDialog.cs:
14783           - Clear example panel when OnPaint is called
14784           - Better solution for displaying the example panel text
14785           - Select default indexes in the ListBoxes
14786
14787 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14788
14789         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14790
14791 2005-05-11  Peter Bartok  <pbartok@novell.com>
14792
14793         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14794         * SelectionRangeConverter.cs: Implemented
14795         * PropertyGrid.cs: Fixed attribute value
14796         * Control.cs:
14797           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14798           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14799         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14800           that's common to all drivers. First methods to go there are
14801           Sebastien Pouliot's CAS Stack Propagation helper methods
14802         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14803           Sebastien Pouliot for CAS Stack Propagation
14804
14805 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14806
14807         * OSXStructs.cs:
14808           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14809
14810 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14811
14812         * DataGridTextBoxColumn.cs: fixed some members
14813         * GridColumnStylesCollection.cs: indexed column is case insensitive
14814         * DataGridTableStyle.cs: fixes
14815         * ThemeWin32Classic.cs: add new theme parameter
14816         * Theme.cs: add new theme parameter
14817         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14818         * DataGrid.cs: fixes, new internal properties, etc.
14819         * DataGridColumnStyle.cs: allows to set grid value
14820         *
14821
14822 2005-05-10  Peter Bartok  <pbartok@novell.com>
14823
14824         * AccessibleObject.cs:
14825           - Removed MonoTODO attribute on help, method is correct
14826           - Fixed Bounds property
14827         * AxHost.cs: Moved MonoTODO
14828         * ButtonBase.cs: Now setting AccessibleObject properties
14829         * RadioButton.cs: Setting proper AccessibleObject role
14830         * CheckBox.cs: Setting proper AccessibleObject role
14831         * ControlBindingsCollection.cs: Added properties, methods and attributes
14832         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14833           userdefined DataFormats.Format items as well
14834         * ListControl.cs: Removed data_member from the public eye
14835         * OpenFileDialog.cs:
14836           - Made class sealed
14837           - Added missing attributes
14838         * SaveFileDialog.cs: Added missing attributes
14839         * ImageListStreamer.cs: Fixed code that caused warnings
14840         * LinkLabel.cs: Removed unreachable code
14841         * TreeView.cs: Fixed code that caused warnings
14842         * PropertyGridView.cs: Fixed code that caused warnings
14843         * GridColumnStylesCollection.cs: Added missing attributes
14844         * GridTableStylesCollection: Added missing attribute
14845         * PropertyManager: Added .ctor
14846         * SecurityIDType: Added
14847         * DataObject.cs: Implemented class
14848         * LinkArea.cs: Added missing attribute
14849
14850 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14851
14852         * RadioButton.cs: call base method to allow to fire OnClick event
14853         * UpDownBase.cs: OnMouseUp call base method
14854         * CheckedListBox.cs: call base method before returning
14855         * TrackBar.cs: call base method before returning
14856         
14857
14858 2005-05-10  Peter Bartok  <pbartok@novell.com>
14859
14860         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14861           for messages
14862
14863 2005-05-10  Peter Bartok  <pbartok@novell.com>
14864
14865         * DataFormats.cs: Implemented
14866         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14867           XplatUIX11.cs: Added Clipboard APIs
14868         * XplatUIWin32.cs: Implemented Clipboard APIs
14869         * FolderBrowserDialog.cs: Added missing event, attributes
14870
14871 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14872
14873         * CheckBox.cs: call base method to allow to fire OnClick event
14874
14875 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14876
14877         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14878
14879 2005-05-06  Peter Bartok  <pbartok@novell.com>
14880
14881         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14882         * Screen.cs: Implemented
14883         * HelpNavigator.cs: Added
14884         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14885           property
14886         * HelpProvider.cs: Implemented all we can do until we have a CHM
14887           help library (which means that "What's This" does work now)
14888
14889 2005-05-06  Jackson Harper  <jackson@ximian.com>
14890
14891         * XplatUIX11.cs: Fix waking up the main loop.
14892                 
14893 2005-05-05  Peter Bartok  <pbartok@novell.com>
14894
14895         * XplatUI.cs: Updated revision
14896         * Form.cs: Removed enless loop
14897         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14898         * Label.cs (OnPaint): Added call to base.OnPaint()
14899         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14900         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14901         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14902         * AxHost.cs: Added
14903         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14904         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14905           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14906           reuse of ToolTipWindow by other controls
14907         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14908         * XplatUIX11.cs: Now clipping drawing area (experimental)
14909         * PictureBox.cs: Moved base.OnPaint() call to end of method
14910         * Theme.cs: Fixed ToolTip abstracts to match new format
14911         * ErrorProvider.cs: Implemented
14912
14913 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14914
14915         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14916         * LinkLabel.cs:
14917                 - Adds cursors
14918                 - Handles focus
14919                 - Implements LinkBehavior
14920                 - Fixes many issues
14921
14922 2005-05-03  Jackson Harper  <jackson@ximian.com>
14923
14924         * ListView.cs: Calculate the scrollbar positioning on resize and
14925         paint, so they get put in the correct place.
14926
14927 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14928
14929         * ColorDialogs.cs: The small color panels are now handled by
14930           SmallColorControl. This fixes drawing of the focus rectangle
14931           and adds a 3D border.
14932
14933 2005-05-03  Peter Bartok  <pbartok@novell.com>
14934
14935         * Control.cs: Modified version of Jonathan Chamber's fix for
14936           double-buffering
14937
14938 2005-05-03  Jackson Harper  <jackson@ximian.com>
14939
14940         * ListView.cs: Remove redraw variable. Control now handles whether
14941         or not a redraw needs to be done, and will only raise the paint
14942         event if redrawing is needed.
14943
14944 2005-05-03  Jackson Harper  <jackson@ximian.com>
14945
14946         * Splitter.cs: No decorations for the splitter form. Cache the
14947         hatch brush.
14948
14949 2005-05-03  Jackson Harper  <jackson@ximian.com>
14950
14951         * TreeView.cs: Use dashed lines to connect nodes. Use the
14952         ControlPaint method for drawing the focus rect instead of doing
14953         that in treeview.
14954
14955 2005-05-02  Peter Bartok  <pbartok@novell.com>
14956
14957         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14958
14959 2005-04-29  Jackson Harper  <jackson@ximian.com>
14960
14961         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14962         entire image buffer. Just clear the clipping rectangle.
14963
14964 2005-04-29  Jackson Harper  <jackson@ximian.com>
14965
14966         * ThemeWin32Classic.cs: Don't draw list view items that are
14967         outside the clipping rectangle.
14968
14969 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14970
14971         * ListBox.cs: added horizontal item scroll
14972
14973 2005-04-29  Jackson Harper  <jackson@ximian.com>
14974
14975         * ThemeWin32Classic.cs: Remove some old debug code that was
14976         causing flicker with the new double buffering code.
14977
14978 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14979
14980         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14981         behave like combobox and comboboxlist (still not sure if this is
14982         correct though).
14983
14984 2005-04-28  Jackson Harper  <jackson@ximian.com>
14985
14986         * ThemeWin32Classic.cs: Don't fill the middle of progress
14987         bars. This fills areas outside of the clip bounds that don't need
14988         to be filled.
14989
14990 2005-04-28  Jackson Harper  <jackson@ximian.com>
14991
14992         * Control.cs: Don't expose functionality to touch the image buffers.
14993         * ProgressBar.cs:
14994         * ListView.cs: We do not need to (and no longer can) manipulate
14995         the image buffers directly. All of this is handled by Control.
14996
14997 2005-04-28  Peter Bartok  <pbartok@novell.com>
14998
14999         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15000           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15001           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15002
15003 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15004
15005         * Combobox:
15006                 - Adjust control's height for non-simple comboboxes (bug fix)
15007                 - Remove dead code
15008         * MenuAPI.cs: remove unused var
15009         * ScrollBar.cs: remove unsed var
15010                  
15011         * ListBox.cs: unselect items when clearing
15012
15013 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15014
15015         * ListControl.cs: honors OnPositionChanged and default Selected Item
15016         * ListBox.cs: unselect items when clearing
15017
15018 2005-04-27  Jackson Harper  <jackson@ximian.com>
15019
15020         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15021         if a "correct" keyboard is not found. This will make us not crash,
15022         but might give some users bad keyboard layouts...seems to be the
15023         same thing rewind does.
15024
15025 2005-04-27  Jackson Harper  <jackson@ximian.com>
15026
15027         * BindingManagerBase.cs: Attach the current/position changed
15028         handlers to their respective events.
15029
15030 2005-04-27  Jackson Harper  <jackson@ximian.com>
15031
15032         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15033         not just a blit.
15034         * ThemeWin32Classic.cs: Don't fill the background for picture
15035         boxes. This could overright user drawing.
15036         * ComboBox.cs: Just fill the clipping rect not the entire client
15037         rect when drawing the background. This prevents pieces of the
15038         image buffer from getting overwritten and is theoretically faster.
15039
15040 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15041
15042         * ComboBox.cs: Databinding support fixes, fire missing events
15043         * ListControl.cs: implement missing methods and properties, fixes
15044         * ThemeWin32Classic.cs: Databiding support on Drawing
15045         * CheckedListBox.cs: Databinding support fixes, fire missing events
15046         * ListBox.cs: Databinding support fixes, fire missing events
15047         
15048 2005-04-25  Peter Bartok  <pbartok@novell.com>
15049
15050         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
15051
15052 2005-04-25  Jackson Harper  <jackson@ximian.com>
15053
15054         * TreeView.cs: Use the horizontal scrollbars height not width when
15055         determining how much of the client area is available.
15056
15057 2005-04-25  Jackson Harper  <jackson@ximian.com>
15058
15059         * Control.cs: Double buffering is handled differently now. As per
15060         the spec, the extra buffer is created in the WM_PAINT message and
15061         passed down to the control's drawing code.
15062         * GroupBox.cs:
15063         * Label.cs:
15064         * CheckBox.cs:
15065         * ProgressBar.cs:
15066         * RadioButton.cs:
15067         * ColorDialog.cs:
15068         * ComboBox.cs:
15069         * PropertyGridView.cs:
15070         * UpDownBase.cs:
15071         * MessageBox.cs:
15072         * MenuAPI.cs:
15073         * ListView.cs:
15074         * ButtonBase.cs:
15075         * SizeGrip.cs:
15076         * ScrollBar.cs:
15077         * ListBox.cs:
15078         * TrackBar.cs:
15079         * ToolBar.cs:
15080         * PictureBox.cs:
15081         * DateTimePicker.cs:
15082         * StatusBar.cs:
15083         * TreeView.cs: Update to new double buffering system.
15084         * MonthCalendar.cs: Uncomment block, as Capture is now
15085         working. Update to new double buffering
15086         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
15087         * PaintEventArgs.cs: New internal method allows us to set the
15088         graphics object. This is used for double buffering.
15089         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
15090         rectangle. The internal paint_area var has been removed from
15091         StatusBar. The clipping rect should be used instead.
15092         * Theme.cs: Give the PictureBox drawing method a clipping rect.
15093         * TabPage.cs: The RefreshTabs method was removed, so just call the
15094         tab controls Refresh method now.
15095         * TabControl.cs: Update to new double buffering. Make sure the
15096         handle is created before sizing the tab pages, otherwise we will
15097         get stuck in a loop.
15098
15099 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
15100
15101         * LinkLabel.cs: Fix typo, bug #74719; patch
15102           from Borja Sanchez Zamorano
15103
15104 2005-04-22  Jackson Harper  <jackson@ximian.com>
15105
15106         * TreeNode.cs: Implement Handle stuff.
15107         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
15108
15109 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
15110
15111         * DataGridTextBoxColumn.cs: call base constructors, fixes
15112         * GridColumnStylesCollection.cs: missing events, methods, and functionality
15113         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
15114         * DataGridTableStyle.cs: implements create default column styles
15115         * DataGridBoolColumn.cs: which types can handle
15116         * DataGrid.cs: missing methods, fixes, new functionality
15117         * DataGridColumnStyle.cs: fixes
15118
15119 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
15120         * FolderBrowserDialog.cs:
15121         - Use a thread to fill the TreeView
15122         - Adjusted some sizes
15123
15124 2005-04-19  Peter Bartok  <pbartok@novell.com>
15125
15126         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15127           property. Fixes #74360.
15128
15129 2005-04-19  Jackson Harper  <jackson@ximian.com>
15130
15131         * XEventQueue.cs: Lock when getting the lockqueue size.
15132         * PictureBox.cs: Call base OnPaint
15133         
15134 2005-04-19  Peter Bartok  <pbartok@novell.com>
15135
15136         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15137           messages were no longer being processed (this broke BeginInvoke)
15138
15139           
15140 2005-04-18  Jackson Harper  <jackson@ximian.com>
15141
15142         * TreeView.cs: buglet that caused node images to get drawn
15143         regardless of whether or not they were in the clipping rectangle.
15144
15145 2005-04-18  Jackson Harper  <jackson@ximian.com>
15146
15147         * CurrencyManager.cs: There are four rules for GetItemProperties:
15148         - If the type is an array use the element type of the array
15149         - If the type is a typed list, use the type
15150         - If the list contains an Item property that is not an object, use
15151         that property
15152         - use the first element of the list if there are any elements in
15153         the list.
15154         
15155 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15156
15157         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15158         click. This handles offsets for scrolling properly and reduces
15159         memory. Also fixed GetNode to not offset now that TopNode works
15160         properly.
15161         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15162         
15163 2005-04-17  Jackson Harper  <jackson@ximian.com>
15164
15165         * CursorConverter.cs: Initial implementation.
15166
15167 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15168
15169         * ListControl.cs: work towards complex data binding support on ListControl
15170         * CurrencyManager.cs: work towards complex data binding support on ListControl
15171         * ListBox.cs: work towards complex data binding support on ListControl
15172
15173
15174 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15175
15176         * GridTableStylesCollection.cs: fixes name and constructor
15177         * DataGridTableStyle.cs: fixes
15178         * DataGridBoolColumn.cs: fixes names and constructors
15179         * DataGrid.cs: define methods and properties. Some init implementations
15180         * DataGridCell.cs: define methods and properties. Some init implementations
15181         * GridTablesFactory.cs: Define methods and properties
15182
15183 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15184
15185         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15186         graphics port changes.  We still want the coordinates in global screen
15187         coordinates.
15188
15189 2005-04-14  Jackson Harper  <jackson@ximian.com>
15190
15191         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15192         check plus minus or checkbox clicks unless those features are enabled.
15193
15194 2005-04-14  Jackson Harper  <jackson@ximian.com>
15195
15196         * TreeView.cs: Add methods for setting the top and bottom visible
15197         nodes. TreeNode::EnsureVisible uses these methods.
15198         * TreeNode.cs: Implement EnsureVisible
15199
15200 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15201
15202         * Form.cs: Pospone menu assignation if the window has not been created yet
15203         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15204         size and position
15205
15206 2005-04-12  Jackson Harper  <jackson@ximian.com>
15207
15208         * TreeView.cs: Set the TopNode properly when scrolling
15209         occurs. This has the added benifit of reducing the amount of
15210         walking that needs to be done when drawing. Also removed an old
15211         misleading TODO.
15212         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15213         
15214 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15215
15216         * Timer.cs: fixes interval setting when the timer is already enabled
15217         
15218 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15219
15220         * FolderBrowserDialog.cs: First approach
15221
15222 2005-04-09  Peter Bartok  <pbartok@novell.com>
15223
15224         * FolderBrowserDialog: Added
15225
15226 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15227
15228         * LinkLabel.cs: move drawing code into the theme
15229         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15230         * Theme.cs: define DrawLinkLabel method
15231
15232 2005-04-05  Jackson Harper  <jackson@ximian.com>
15233
15234         * BindingContext.cs: Use weak references so these bad actors don't
15235         stay alive longer then they need to.
15236
15237 2005-04-05  Jackson Harper  <jackson@ximian.com>
15238
15239         * ListControl.cs: Basic implementation of complex databinding.
15240         * ComboBox.cs:
15241         * ListBox.cs: Add calls to ListControl databinding methods.
15242
15243 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15244
15245         * FileDialog.cs:
15246           - Don't change PopupButtonState to Normal when the
15247             PopupButton gets pressed several times.
15248           - Renamed ButtonPanel to PopupButtonPanel
15249
15250 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15251
15252         * ColorDialog.cs: Use cached objects instead of creating them
15253         * LinkLabel.cs: Use cached objects instead of creating them
15254         * Splitter.cs: Use cached objects instead of creating them
15255         * FontDialog.cs: Use cached objects instead of creating them
15256         * PropertyGridView.cs: Use cached objects instead of creating them
15257         * MessageBox.cs: Use cached objects instead of creating them
15258         * FileDialog.cs: Use cached objects instead of creating them
15259         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15260         * TreeView.cs: Use cached objects instead of creating them
15261         
15262 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15263
15264         * Control.cs: use Equals to compare the font since no == op
15265         * ScrollBar.cs: use Equals to compare the font since no == op
15266
15267 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15268
15269         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15270
15271 2005-04-01  Jackson Harper  <jackson@ximian.com>
15272
15273         * Binding.cs: Implement IsBinding.
15274         * BindingManagerBase.cs:
15275         * PropertyManager.cs:
15276         * CurrencyManager.cs: Add IsSuspended property.
15277
15278 2005-04-01  Jackson Harper  <jackson@ximian.com>
15279
15280         * Binding.cs: Had some IsAssignableFrom calls backwards.
15281
15282 2005-04-01  Jackson Harper  <jackson@ximian.com>
15283
15284         * Binding.cs: Handle null data members when pulling data.
15285         * PropertyManager.cs: Handle the data member being a property that
15286         does not exist.
15287
15288 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15289
15290         * DataGridTextBoxColumn.cs: fixes signature
15291         * DataGrid.cs: calls right constructor
15292
15293 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15294
15295         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15296         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15297         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15298         * DataGridTableStyle.cs: implements DataGridTableStyle
15299         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15300         * DataGridTextBox.cs: implements DataGridTextBox
15301         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15302
15303 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15304
15305         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15306
15307 2005-03-29  Peter Bartok  <pbartok@novell.com>
15308
15309         * Application.cs:
15310           - Properly implemented CompanyName property
15311           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15312             returns a path that includes CompanyName, ProductName and
15313             Version (fixes bug #70330)
15314
15315 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15316
15317         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15318           fixes bug #72588.
15319
15320 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15321
15322         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15323         
15324           - Added ReadOnly CheckBox
15325           - Further refactoring: moved some code from Open-/SaveFileDialog
15326             to FileDialog
15327
15328 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15329
15330         * OpenFileDialog.cs: Fixed CheckFileExists
15331         * FileDialog.cs:
15332           Moved FileView and DirComboBox outside FileDialog class.
15333           They can now be used outside FileDialog
15334
15335 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15336
15337         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15338         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15339
15340 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15341
15342         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15343           - Added missing CreatePrompt property in SaveDialog
15344           - Overall SaveDialog handling should be better now
15345           - Added non standard ShowHiddenFiles property
15346           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15347           - Added InitialDirectory and RestoreDirectory support
15348
15349 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15350
15351         * FileDialog.cs: Made dirComboBox usable
15352
15353 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15354
15355         * FileDialog.cs: Added Filter support (case sensitiv)
15356
15357 2005-03-24  Jackson Harper  <jackson@ximian.com>
15358
15359         * TabControl.cs: Need a couple more pixels for the lines.
15360
15361 2005-03-23  Jackson Harper  <jackson@ximian.com>
15362
15363         * TabControl.cs: Give the tab page focus when it is selected.
15364
15365 2005-03-23  Jackson Harper  <jackson@ximian.com>
15366
15367         * TabControl.cs: Account for the drawing of tabs borders when
15368         invalidating. If the slider was clicked dont do click detection on
15369         the tabs.
15370
15371 2005-03-23  Jackson Harper  <jackson@ximian.com>
15372
15373         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15374
15375 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15376
15377         * CategoryGridEntry.cs: Added
15378         * GridItem.cs: Added helper properties
15379         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15380         * GridEntry.cs: Updated code for collection
15381         * PropertyGrid.cs: Cleaned up some formatting
15382         * PropertyGridView.cs: Added drop down functionality for enums.
15383         * GridItemCollection.cs: Added enumerator logic
15384         * PropertyGridEntry.cs: Added
15385
15386 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15387
15388         * FileDialog.cs:
15389           - Removed unnecessary commented code
15390           - Fixed handling for entering the filename manually in the combobox
15391
15392 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15393
15394         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15395
15396 2005-03-18  Peter Bartok  <pbartok@novell.com>
15397
15398         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15399           them being touching the border
15400
15401 2005-03-18  Peter Bartok  <pbartok@novell.com>
15402
15403         * TextControl.cs: Quick hack to center text better
15404
15405 2005-03-18  Peter Bartok  <pbartok@novell.com>
15406
15407         * ControlPaint.cs:
15408           - Don't throw NotImplemented exceptions, just print a notice once
15409             instead (requested by Miguel). This makes running existing SWF
15410             apps a bit easier
15411         * Control.cs:
15412           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15413           - Added context menu trigger on right click
15414         * Panel.cs: Trigger invalidate on resize
15415         * StatusBar.cs:
15416           - Removed old double-buffer drawing
15417           - Added ResizeRedraw style to force proper update of statusbar
15418         * ListView.cs:
15419           - Removed debug output
15420         * ThemeWin32Classic.cs:
15421           - Fixed drawing of status bar, now draws Text property if there
15422             are no defined panels
15423
15424 2005-03-18  Jackson Harper  <jackson@ximian.com>
15425
15426         * ImageList.cs: When the image stream is set pull all the images
15427         from it.
15428         * ImageListStreamer.cs: Implement reading image list streams.
15429
15430 2005-03-18  Peter Bartok  <pbartok@novell.com>
15431
15432         * ThemeWin32Classic.cs (DrawPictureBox):
15433           - Fixed calculations for centered drawing
15434           - Fixed drawing for normal mode, not scaling the image on normal
15435
15436 2005-03-18  Peter Bartok  <pbartok@novell.com>
15437
15438         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15439           textbox
15440         * FileDialog.cs:
15441           - Made Open/Save button the accept button for FileDialog
15442           - Tied the cancel button to the IButtonControl cancel button
15443           - Save/Open now properly builds the pathname
15444           - Now handles user-entered text
15445           - Preventing crash on right-click if no item is selected
15446           - Fixed Text property, now uses contents of textbox
15447           - Fixed SelectedText property, now just returns the text part that
15448             is selected in the text box
15449
15450 2005-03-18  Jackson Harper  <jackson@ximian.com>
15451
15452         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15453         rect, make sure to de-adjust the interior rect after drawing the
15454         tab text.
15455
15456 2005-03-18  Peter Bartok  <pbartok@novell.com>
15457
15458         * MenuAPI.cs: Remove menu *before* executing selected action to
15459           prevent the menu from 'hanging around'
15460           
15461 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15462
15463         * XplatUIOSX.cs: Implemented WorkingArea property
15464
15465 2005-03-17  Peter Bartok  <pbartok@novell.com>
15466
15467         * XplatUIX11.cs: Fixed menu coord calculations
15468         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15469           for calculating offsets
15470
15471 2005-03-17  Peter Bartok  <pbartok@novell.com>
15472
15473         * Hwnd.cs: Do not consider menu presence for default client
15474           rectangle location/size
15475         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15476           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15477           translation functions
15478         * FileDialog.cs: Fixed (what I presume is a) typo
15479
15480 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15481
15482         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15483           X access (avoids X-Async errors)
15484
15485 2005-03-16  Jackson Harper  <jackson@ximian.com>
15486
15487         * TabControl.cs: Raise the SelectedIndexChanged event.
15488
15489 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15490
15491         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15492           - Removed vertical ToolBar and replaced it with a custom panel
15493             (desktop and home button already work)
15494           - Added Help button (some controls get resized or relocated then)
15495           - Draw correct text depending on Open or Save.
15496           - Fixed some typos...
15497
15498 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15499
15500         * ScrollBar.cs:
15501           - Only change Maximum and Minimum when need it (bug fix)
15502
15503 2005-03-15  Peter Bartok  <pbartok@novell.com>
15504
15505         * Form.cs: Use Handle for icon, to trigger creation if
15506           the window does not yet exist
15507         * Control.cs:
15508           - CanSelect: Slight performance improvement
15509           - Focus(): Preventing possible recursion
15510           - Invalidate(): Removed ControlStyle based clear flag setting
15511           - WM_PAINT: fixed logic for calling OnPaintBackground
15512           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15513             EraseWindowBackground if the control doesn't paint background
15514         * XplatUIWin32.cs:
15515           - Moved EraseWindowBackground() method to internal methods
15516           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15517             is sent via SendMessage on BeginPaint call on Win32
15518         * XplatUIX11.cs:
15519           - Added EraseWindowBackground() method
15520           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15521             PaintEventStart, which more closely matches Win32 behaviour
15522           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15523           - Fixed SetFocus() to properly deal with client and whole windows
15524         * Hwnd.cs: Added ErasePending property
15525         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15526         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15527
15528 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15529
15530         * XplatUIOSX.cs:
15531           - Fix hard loop when timers exist.
15532           - Fix bugs with middle and right click for 3 button mice.
15533
15534 2005-03-11  Peter Bartok  <pbartok@novell.com>
15535
15536         * XplatUIX11.cs:
15537           - get_WorkingArea: Need to call X directly, GetWindowPos only
15538             returns cached data now
15539           - Added sanity check to GetWindowPos hwnd usage
15540
15541 2005-03-11  Jackson Harper  <jackson@ximian.com>
15542
15543         * BindingManagerBase.cs: This method isn't used anymore as
15544         PullData now updates the data in the control.
15545
15546 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15547
15548         * Form.cs: fixes menu drawing on X11
15549         * MenuAPI.cs:  fixes menu drawing on X11
15550
15551 2005-03-11  Peter Bartok  <pbartok@novell.com>
15552
15553         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15554           from Jonathan Gilbert; should fix bug #73606
15555         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15556           in Screen coordinates. Thanks, Jordi.
15557         * Form.cs: Added missing attribute
15558
15559 2005-03-11  Peter Bartok  <pbartok@novell.com>
15560
15561         * Form.cs:
15562           - Rudimentary Mdi support
15563           - Removed outdated FormParent code
15564           - Implemented lots of missing properties and methods, still missing
15565             transparency support
15566           - Added missing attributes
15567           - Implemented support for MaximumBounds
15568           - Added firing of various events
15569         * XplatUI.cs: Added SetIcon() method
15570         * XplatUIDriver.cs: Added SetIcon() abstract
15571         * XplatUIOSX.cs: Stubbed out SetIcon() method
15572         * XplatUIX11.cs:
15573           - Implemented SetIcon() support
15574           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15575           - Switched to unix line endings
15576         * XplatUIWin32.cs:
15577           - Made POINT internal so for can access it as part of MINMAX
15578           - Implemented SetIcon() support
15579           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15580             native Mdi support again, might have to go managed)
15581         * Control.cs: Now fires the StyleChanged event
15582         * MdiClient.cs: Added; still mostly empty
15583
15584 2005-03-10  Peter Bartok  <pbartok@novell.com>
15585
15586         * SaveFileDialog.cs: Added emtpy file
15587
15588 2005-03-08  Peter Bartok  <pbartok@novell.com>
15589
15590         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15591           in turn triggers OnCreateContro) when creating a handle for the
15592           first time.
15593         * TextControl.cs: Fixed endless loop in certain cases when
15594           replacing the current selection
15595
15596 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15597
15598         * ScrollBar.cs:
15599           - Honors NewValue changes in Scroll events allowing apps to change it
15600           - Adds First and Last Scroll events
15601           - Fixes Thumb events
15602
15603 2005-03-07  Peter Bartok  <pbartok@novell.com>
15604
15605         * Hwnd.cs: Added DefaultClientRectangle property
15606         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15607           more detailed debug information
15608         * XplatUIX11.cs:
15609           - Fixed size-change feedback loop, where we would pull an old size
15610             off the queue and mistakenly change our window's size to an
15611             earlier value
15612           - Now compressing ConfigureNotify events, to reduce looping and
15613             redraw issues
15614         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15615           is called
15616
15617 2005-03-07  Jackson Harper  <jackson@ximian.com>
15618
15619         * Binding.cs: Push data pushes from data -> property. Check if the
15620         property is readonly when attempting to set it.
15621
15622 2005-03-07  Jackson Harper  <jackson@ximian.com>
15623
15624         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15625         instead of IsSubclassOf. Pulling data now sets the value on the
15626         control.
15627         * PropertyManager.cs:
15628         * CurrencyManager.cs: Just need to pull data when updating now,
15629         because PullData will set the value on the control.
15630
15631 2005-03-04  Jackson Harper  <jackson@ximian.com>
15632
15633         * Binding.cs: Implement data type parsing and converting on pulled
15634         data. TODO: Are there more ways the data can be converted?
15635
15636 2005-03-04  Jackson Harper  <jackson@ximian.com>
15637
15638         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15639         controls Validating method so we can repull the data when the
15640         control loses focus.
15641
15642 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15643
15644         * ColumnHeader.cs:
15645           - Fixes null string format
15646           
15647         * ListView.cs:
15648           - Adds enum type checks
15649           - Fixes redrawing and recalc need after changing some properties
15650           - Fixes on focus_item set after the event
15651           - Fixes adding columns after the control has been created
15652           
15653         * ThemeWin32Classic.cs:
15654           - Fixes CheckBox focus rectangle
15655           - Fixes ColumnHeader drawing
15656
15657
15658 2005-03-03  Jackson Harper  <jackson@ximian.com>
15659
15660         * Binding.cs: Bind to <Property>Changed events so we can detect
15661         when properties are changed and update the data.
15662
15663 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15664
15665         * ImageList.cs:
15666           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15667           - Fixes ImageList constructor with ImageList container
15668           - Fixes image scaling (wrong parameters at DrawImage)
15669
15670 2005-02-02  Jackson Harper  <jackson@ximian.com>
15671
15672         * Binding.cs: Make property searches case-insensitive. Eliminate
15673         some duplicated code.
15674
15675 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15676
15677         * ComboBox.cs:
15678                 - Handle focus event
15679                 - Fix scrollbar events
15680                 - Discard highlighted item if remove it
15681                 - Fixes SelectedItem with strings
15682
15683 2005-03-01  Peter Bartok  <pbartok@novell.com>
15684
15685         * Control.cs:
15686           - Fixed Visible property, now follows (once again) parent chain
15687             to return false if any control in the chain is visible=false
15688           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15689           - Fixed several places where is_visible instead of Visible was used
15690           - Implemented FIXME related to focus selection when setting focused
15691             control to be invisible
15692
15693         * XplatUIWin32.cs: Now using proper method to find out if window is
15694           visible. Thanks to Jordi for pointing it out
15695
15696 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15697
15698         * ComboBox.cs: show/hide scrollbar instead of creating it
15699
15700 2005-02-27  Jackson Harper  <jackson@ximian.com>
15701
15702         * CurrencyManager.cs: Add PositionChanged stuff.
15703
15704 2005-02-27  Peter Bartok  <pbartok@novell.com>
15705
15706         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15707         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15708         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15709         * XplatUIX11.cs:
15710           - Implemented GetMenuDC()
15711           - Implemented GetMenuOrigin()
15712           - Implemented ReleaseMenuDC()
15713           - Implemented generation of WM_NCPAINT message
15714           - Implemented generation and handling of WM_NCCALCSIZE message
15715         * Form.cs: Added debug helper message for Jordi's menu work
15716         * Hwnd.cs:
15717           - Modified ClientRect property; added setter, fixed getter to handle
15718             setting of ClientRect
15719           - Added MenuOrigin property
15720
15721 2005-02-26  Peter Bartok  <pbartok@novell.com>
15722
15723         * XplatUIX11.cs:
15724           - Destroys the caret if a window that's being destroyed contains it
15725           - Ignores expose events coming from the X11 queue for windows that
15726             already are destroyed
15727           - Now uses the proper variable for handling DestroyNotify, before we
15728             marked the wrong window as destroyed
15729           - Improved/added some debug output
15730
15731 2005-02-26  Peter Bartok  <pbartok@novell.com>
15732
15733         * X11Keyboard.cs: Fixes to work on 64bit systems
15734
15735 2005-02-26  Peter Bartok  <pbartok@novell.com>
15736
15737         * Control.cs:
15738           - Now calling OnHandleDestroyed from DestroyHandle()
15739             instead of Dispose()
15740           - Removed bogus call to controls.Remove() from DestroyHandle()
15741
15742 2005-02-26  Peter Bartok  <pbartok@novell.com>
15743
15744         * Control.cs: Properly destroy child windows when our handle is
15745           destroyed
15746
15747 2005-02-25  Peter Bartok  <pbartok@novell.com>
15748
15749         * XplatUI.cs:
15750           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15751           - Alphabetized Static Methods and Subclasses
15752
15753         * XplatUIX11.cs:
15754           - Added XException class to allow custom handling of X11 exceptions
15755           - Created custom X11 error handler, tied into XException class
15756           - Added support for MONO_XEXCEPTIONS env var to allow the user
15757             to either throw an exception on X errors or continue running
15758             after displaying the error
15759           - Added handling of DestroyNotify message
15760           - Added handler for CreateNotify message (still disabled)
15761           - Improved (tried to at least) Where method to provide file and lineno
15762         * X11Structs.cs:
15763           - Added XErrorHandler delegate
15764           - Added XRequest enumeration (to suppor translation of errors)
15765
15766 2005-02-25  Jackson Harper  <jackson@ximian.com>
15767
15768         * PropertyManager.cs: Implement editing features
15769         * CurrencyManager.cs:
15770         * Binding.cs: First attempt at UpdateIsBinding
15771         * BindingManagerBase.cs: Call UpdateIsBinding before
15772         pushing/pulling data.
15773
15774 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15775
15776         * MenuAPI.cs: Respect disabled items
15777         * ThemeWin32Classic.cs
15778                 - Caches ImageAttributes creation for DrawImageDisabled
15779                 - Fixes vertical menu line drawing
15780                 - Draws disabled arrows in disable menu items
15781
15782 2005-02-24  Peter Bartok  <pbartok@novell.com>
15783
15784         * Hwnd.cs:
15785           - Added UserData property to allow associating arbitrary objects
15786             with the handle
15787           - Fixed leak; now removing Hwnd references from static windows array
15788         * XplatUIWin32.cs:
15789           - Fixed Graphics leak in PaintEventEnd
15790           - Removed usage of HandleData, switched over to Hwnd class
15791         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15792
15793 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15794
15795         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15796         * ScrollBar.cs: Fixes bug
15797         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15798          keyboard navigation enhancements
15799
15800 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15801
15802         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15803         * GroupBox.cs: Add control styles
15804         * Label.cs: Add control styles
15805         * UpDownBase.cs: Add control styles
15806         * ListBox.cs: Add control styles
15807         * XplatUIWin32.cs: Fixes wrong parameter order
15808
15809
15810 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15811
15812         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15813
15814 2005-02-23  Jackson Harper  <jackson@ximian.com>
15815
15816         * PropertyManager.cs: Implement property binding. This doesn't
15817         seem to work yet though as (I think) there are some bugs in
15818         System.ComponentModel.PropertyDescriptor.
15819         * BindingContext.cs: Use new PropertyManager constructor.
15820
15821 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15822
15823         * ProgressBar.cs: use clip region in ProgressBar
15824         * ThemeWin32Classic.cs: use clip region in ProgressBar
15825
15826 2004-02-22  Jackson Harper  <jackson@ximian.com>
15827
15828         * BindingsCollection.cs: Remove some debug code.
15829
15830 2005-02-22  Jackson Harper  <jackson@ximian.com>
15831
15832         * BindingContext.cs:
15833         * ControlBindingsCollection.cs:
15834         * CurrencyManager.cs:
15835         * Binding.cs:
15836         * BindingManagerBase.cs: Initial implementation
15837         * BindingsCollection.cs: Add an internal contains method that the
15838         BindingManagerBase uses to ensure bindings aren't added twice to
15839         the collection.
15840         * PropertyManager.cs: Stubbed out.
15841         * Control.cs:
15842         * ContainerControl.cs: Hook up databinding
15843         
15844 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15845
15846         * XplatUIOSX.cs:
15847           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15848           Fixed Invalidate/Update chain.
15849           Fixed tons of other minor bugs (this is almost a complete rewrite).
15850
15851 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15852
15853         * ComboBox.cs: do subcontrol creation when the control is created
15854
15855 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15856
15857         * Label.cs: fixes image drawing (image and imagelist)
15858         * ThemeWin32Classic.cs: cache brushes
15859         
15860 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15861
15862         * Form.cs: Move menu drawing code to Theme class
15863         * ComboBox.cs: Move ComboBox drawing code to Theme class
15864         * MenuItem.cs: Move menu drawing code to Theme class
15865         * MenuAPI.cs: Move menu drawing code to Theme class
15866         * ThemeWin32Classic.cs: New methods
15867         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15868         * ListBox.cs: Move Listbox drawing code to Theme class
15869         * Theme.cs: New methods
15870
15871 2005-02-20  Peter Bartok  <pbartok@novell.com>
15872
15873         * Control.cs:
15874           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15875             only process mnemonics on those)
15876           - Fixed event sequence for key handling; first calling
15877             ProcessKeyEventArgs now
15878         * TextBoxBase.cs:
15879           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15880             for processing non-character keys
15881           - Fixed WM_CHAR to generate proper event sequence before processing
15882         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15883           generation
15884
15885 2005-02-19  Peter Bartok  <pbartok@novell.com>
15886
15887         * UserControl.cs: Added TextChanged event; added attributes
15888         * SizeGrip.cs: Implemented resizing and optional display of grip
15889         * Form.cs: Fixed attribute
15890         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15891           Changed meaning of ScrollWindow bool argument; instead of the
15892           clear attribute (which will be true usually anyway), it gives the
15893           option of moving child controls as well.
15894         * XplatUIX11.cs:
15895           - Changed to match new ScrollWindow argument
15896           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15897             now handles the implicit parent window a WM puts around us
15898         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15899           to work)
15900         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15901         * TreeView.cs: Adjusted to new ScrollWindow arguments
15902
15903 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15904
15905         * Form.cs: Menu integration with non-client area
15906         * MenuItem.cs: Menu integration with non-client area
15907         * MenuAPI.cs: Menu integration with non-client area
15908
15909 2005-02-18  Peter Bartok  <pbartok@novell.com>
15910
15911         * MethodInvoker.cs: Added
15912         * MdiLayout.cs: Added
15913         * SendKeys.cs: Started implementation
15914         * ErrorIconAlignment.cs: Added
15915
15916 2005-02-18  Peter Bartok  <pbartok@novell.com>
15917
15918         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15919         * Form.cs: Added handling for Menu-related Non-client messages
15920
15921 2005-02-17  Peter Bartok  <pbartok@novell.com>
15922
15923         * UpDownBase.cs: Fixed typo, compilation errors
15924         * DomainUpDown.cs: Fixed attribute value
15925
15926 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15927
15928         * UpDownBase.cs: Attach entry events.
15929         Propagate events.
15930         Add ForeColor property, Focused, InterceptArrowKeys (interception
15931         does not work yet).
15932
15933 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15934
15935         * Form.cs:
15936                 - Redraw non client are on Setmenu
15937                 - Calc proper menu starting point
15938
15939 2005-02-17  Peter Bartok  <pbartok@novell.com>
15940
15941         * Application.cs: Fixed message_filter check
15942
15943 2005-02-17  Peter Bartok  <pbartok@novell.com>
15944
15945         * Application.cs: Now calls registered message filters
15946         * DockStyle.cs: Fixed attribute
15947         * Form.cs: Fixed attribute
15948         * Menu.cs: Fixed attribute
15949         * ToolTip.cs: Fixed attribute
15950         * TreeNode.cs: Added missing attributes and arranged in regions
15951         * PropertyGrid.cs: Fixed signatures
15952         * TreeNodeCollection.cs: Added attributes
15953         * Splitter.cs: Added missing attributes; arranged into regions
15954         * TabPage.cs: Added missing attributes; arranged into regions
15955         * TextBoxBase.cs: Added missing attributes
15956         * TextBox.cs: Added missing attributes
15957         * ArrangeDirection.cs: Added missing attributes
15958         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15959         * ToolBarButton.cs: Fixed attributes
15960         * AnchorStyles.cs: Fixed attribute
15961         * TrackBar.cs: Fixed attributes
15962         * TabControl.cs: Added missing attributes and arranged into regions
15963         * ToolBar.cs: Fixed attribute
15964         * StatusBar.cs: Fixed signature, organized into regions and added
15965           attributes
15966         * StatusBarPanel.cs: Fixed attributes
15967         * ContentsResizedEventArgs.cs: Implemented
15968         * ContentsResizedEventHandler.cs: Implemented
15969         * DateBoldEventArgs.cs: Implemented
15970         * DateBoldEventHandler.cs: Implemented
15971         * UpDownEventArgs.cs: Implemented
15972         * UpDownEventHandler.cs: Implemented
15973         
15974 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15975
15976         * Form.cs: first Menu NC refactoring
15977         * MenuAPI.cs: first Menu NC refactoring
15978         
15979 2005-02-16  Peter Bartok  <pbartok@novell.com>
15980
15981         * ImeMode.cs: Added missing attributes
15982         * Menu.cs: Fixed attribute
15983         * GroupBox.cs: Fixed attribute
15984         * Label.cs: Fixed attribute
15985         * ColorDialog.cs (RunDialog): Removed TODO attribute
15986         * ComboBox.cs: Fixed attributes
15987         * ListControl.cs: Added missing attributes
15988         * PropertyGrid.cs: Fixed attributes
15989         * Control.cs: Fixed attributes
15990         * ListViewItem.cs: Added TypeConverter attribute
15991         * NotifyIcon.cs: Fixed attributes
15992         * ListView.cs: Fixed attributes
15993         * ButtonBase.cs: Fixed attribute
15994         * ImageList.cs: Added missing attributes
15995         * ContainerControl.cs: Fixed signature
15996         * CheckedListBox.cs: Fixed attribute; added missing attributes
15997         * Panel.cs: Fixed attributes
15998         * PropertyTabChangedEventArgs.cs: Added missing attribute
15999         * PropertyValueChangedEventArgs.cs: Added missing attribute
16000         * Binding.cs: Fixed attribute
16001         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16002         * ListBox.cs: Fixed attribute; added missing attributes;
16003         * ScrollableControl.cs: Added missing attributes
16004         * PictureBox.cs: Added missing attributes; implemented missing property
16005         * DateTimePicker.cs: Added missing attributes
16006         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16007         * MonthCalendar.cs: Fixed attributes
16008         * StatusBarPanel.cs: Added missing attributes
16009         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16010
16011 2005-02-16  Peter Bartok  <pbartok@novell.com>
16012
16013         * TextBoxBase.cs: The previous method to enforce height yet remember
16014           the requested high was less than ideal, this is an attempt to do
16015           it better.
16016         * Control.cs: Added comment about possible problem
16017         * Copyright: Updated format
16018         * GridItemType.cs: Fixed swapped values
16019
16020 2005-02-15  Jackson Harper  <jackson@ximian.com>
16021
16022         * BaseCollection.cs: Use property so we never access an
16023         uninitialized list. Also initialize the list in the property.
16024
16025 2005-02-15  Peter Bartok  <pbartok@novell.com>
16026
16027         * GroupBox.cs (ProcessMnemonic): Implemented
16028         * Label.cs (ProcessMnemonic): Implemented
16029         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16030           hotkeys
16031
16032 2005-02-15  Peter Bartok  <pbartok@novell.com>
16033
16034         * RadioButton.cs (ProcessMnemonic): Implemented
16035         * CheckBox.cs (ProcessMnemonic): Implemented
16036         * Control.cs:
16037           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16038             handling
16039           - Added internal method to allow calling ProcessMnemonic from other
16040             controls
16041         * ContainerControl.cs:
16042           - Started support for handling validation chain handling
16043           - Implemented ProcessMnemonic support
16044           - Added Select() call to Active, to make sure the active control
16045             receives focus
16046         * Form.cs: Setting toplevel flag for Forms (this was lost in the
16047           FormParent rewrite)
16048         * ThemeWin32Classic.cs:
16049           - DrawCheckBox(): Fixed stringformat to show hotkeys
16050           - DrawRadioButton(): Fixed stringformat to show hotkeys
16051         * CommonDialog.cs: Removed WndProc override, not needed
16052
16053 2005-02-14  Peter Bartok  <pbartok@novell.com>
16054
16055         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
16056           missed those in the rewrite
16057
16058 2005-02-14  Miguel de Icaza  <miguel@novell.com>
16059
16060         * NumericUpDown.cs (Increment, ToString): Add.
16061         (DecimalPlaces): implement.
16062         
16063         Add attributes.
16064         
16065         * UpDownBase.cs: Add the designer attributes.
16066
16067 2005-02-13  Peter Bartok  <pbartok@novell.com>
16068
16069         * Panel.cs: Removed border_style, now in Control
16070         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
16071           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
16072
16073 2005-02-13  Peter Bartok  <pbartok@novell.com>
16074
16075         * MouseButtons.cs: Added missing attributes
16076         * XplatUIStructs.cs: Added enumeration for title styles
16077         * LeftRightAlignment.cs: Added missing attributes
16078         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
16079           it compatible with Graphics.FromHwnd()
16080         * SelectedGridItemChangedEventArgs.cs: Fixed property type
16081         * Keys.cs: Added missing attributes
16082         * SelectionRange.cs: Added missing attributes
16083         * SelectionRangeConverter.cs: Added
16084         * XplatUI.cs:
16085           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
16086             ReleaseMenuDC methods
16087           - Renamed ReleaseWindow to UngrabWindow
16088           - Added proper startup notice to allow version identification
16089         * Form.cs:
16090           - Added missing attributes
16091           - Removed FormParent concept
16092         * Label.cs: Removed border_style field, now in Control
16093         * RadioButton.cs: Now properly selects RadioButton when focus is
16094           received
16095         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
16096         * Control.cs:
16097           - Added missing attributes
16098           - Added borderstyle handling
16099           - Removed FormParent concept support
16100           - Fixed calls to XplatUI to match changed APIs
16101           - Fixed bug that would case us to use disposed Graphics objects
16102           - Removed unneeded internal methods
16103           - PerformLayout(): Fixed to handle DockStyle.Fill properly
16104           - SelectNextControl(): Fixed to properly check common parents
16105         * TextBoxBase.cs: Removed border_style field (now in Control)
16106         * MessageBox.cs:
16107           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
16108             fixed calculations for form size
16109           - Added support for localized strings and icons
16110           - Improved form size calculations, added border
16111         * ListView.cs: Removed border_style field (now in Control)
16112         * X11Structs.cs: Moved several structs from X11 driver here
16113         * X11Keyboard.cs: Changed debug message
16114         * Application.cs: Removed FormParent concept support
16115         * CommonDialog.cs:
16116           - Resetting end_modal flag
16117           - Removed FormParent concept support
16118         * NativeWindow.cs: Removed FormParent concept support
16119         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
16120           Client area and Non-Client whole window to allow support for WM_NC
16121           messages
16122         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16123           prevent using it until it supports Hwnd as per Geoff Norton's request
16124         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16125         * PictureBox.cs: Removed border_style field, now in Control
16126         * XplatUIWin32.cs: Added new driver methods
16127
16128 2005-02-12  Peter Bartok  <pbartok@novell.com>
16129
16130         * OpacityConverter.cs: Implemented
16131         * Hwnd.cs: Internal class to support drivers that need to emulate
16132           client area/non-client area window behaviour
16133
16134 2005-02-11  Peter Bartok  <pbartok@novell.com>
16135
16136         * KeysConverter.cs: Implemented
16137
16138 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16139
16140         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16141         * LinkLabel: Added missing attributes
16142         * MainMenu.cs: fixes ToString
16143         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16144         * ListBox.cs: fixes event position
16145         * TrackBar.cs: adds missing attributes and events
16146         
16147 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16148
16149         * MenuItem.cs: Use SystemInformation and bug fixes
16150         * MenuAPI.cs: Use SystemInformation and bug fixes
16151
16152 2005-02-09  Jackson Harper  <jackson@ximian.com>
16153
16154         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16155         their keystate otherwise things like VK_MENU get stuck "on".
16156
16157 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16158
16159         * ListBox.cs: Fixes AddRange bug
16160         
16161 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16162
16163         * ProgressBar.cs
16164                 - Add missing attributes
16165                 - Add missing method
16166                 
16167         * CheckedListBox.cs: Added missing attributes
16168                 - Add missing attributes
16169                 - Remove extra method
16170         
16171         * ComboBox.cs: Added missing attributes
16172         * VScrollBar.cs: Added missing attributes
16173         * ScrollBar.cs:  Added missing attributes
16174         * ListBox.cs: Fixes signature, add missing consts
16175         * LinkArea.cs:   Added missing attributes
16176         
16177
16178 2005-02-08  Peter Bartok  <pbartok@novell.com>
16179
16180         * Menu.cs: Added missing attributes
16181         * MainMenu.cs: Added missing attributes
16182         * GroupBox.cs: Added missing attributes
16183         * Label.cs: Added missing attributes
16184         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16185         * ColorDialog.cs:
16186           - Added Instance and Options properties
16187           - Added missing attributes
16188         * Cursor.cs: Made Serializable
16189         * NotifyIcon: Added missing attributes
16190         * MenuItem.cs: Added missing attributes
16191         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16192         * Panel.cs: Added Missing attributes
16193         * MonthCalendar.cs: Fixed CreateParams
16194
16195 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16196         
16197         * LinkLabel.cs:
16198                 - Fixes signature
16199                 - Fixes issues with links
16200                 - Adds the class attributes
16201
16202 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16203         
16204         * ComboBox.cs:
16205                 - Fixes button when no items available in dropdown
16206                 - Fixes repainting problems
16207                 - Adds the class attributes
16208                 
16209 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16210
16211         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16212         the current theme.  Cache these on startup.
16213
16214 2005-02-07  Jackson Harper  <jackson@ximian.com>
16215
16216         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16217         the scrollbar buttons when they are depressed.
16218
16219 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16220
16221         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16222         Get the display size from the main displayid.  We currently dont
16223         support multiple display configurations.
16224
16225 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16226
16227         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16228
16229 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16230
16231         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16232
16233 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16234
16235         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16236
16237 2005-02-04  Jackson Harper  <jackson@ximian.com>
16238
16239         * ThemeWin32Classic.cs: Respect the clipping rect when
16240         drawing. Only fill the intersection of clips and rects so there
16241         isn't a lot of large fills.
16242         * ScrollBar.cs: Pass the correct clipping rect to the theme
16243         engine. Remove some debug code.
16244
16245 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16246         
16247         * DateTimePicker.cs:
16248                 - Fixed crash on DateTime.Parse, use Constructor instead
16249
16250 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16251         
16252         * MenuItem.cs:
16253         * MenuAPI.cs:
16254                 - Owner draw support (MeasureItem and DrawItem)
16255
16256 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16257         
16258         *  Menu.cs:
16259                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16260                 - Fixes MenuItems.Add range
16261         * MenuItem.cs:
16262                 - MergeMenu and Clone and CloneMenu functions
16263
16264 2005-02-03  Jackson Harper  <jackson@ximian.com>
16265
16266         * ScrollBar.cs: Make abstract
16267         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16268         is abstract.
16269
16270 2005-02-03  Jackson Harper  <jackson@ximian.com>
16271
16272         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16273         all the unneeded refreshes and uses invalidates with properly
16274         computed rects.
16275
16276 2005-02-03  Peter Bartok  <pbartok@novell.com>
16277
16278         * ComponentModel.cs: Added
16279         * IDataGridEditingService.cs: Added
16280         * Timer.cs: Added missing attributes
16281         * ToolTip.cs: Added missing attributes
16282
16283 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16284
16285         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16286
16287 2005-02-03  Peter Bartok  <pbartok@novell.com>
16288
16289         * ListBox.cs: Added missing attributes
16290
16291 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16292         
16293         * ListBox.cs:
16294                 - Fixes font height after font change
16295                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16296                 
16297 2005-02-02  Peter Bartok  <pbartok@novell.com>
16298
16299         * HandleData.cs: Introduced static methods to allow class
16300           to be more self-contained and track it's own HandleData objects
16301         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16302           HandleData to use new static methods
16303
16304 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16305
16306         * Combobox.cs:
16307                 - Fixes default size and PreferredHeight
16308                 - Missing events
16309                 - ObjectCollection.Insert implementation
16310                 
16311         * ListControl.cs
16312                 - Fixes signature
16313         * ListBox.cs:
16314                 - Several fixes
16315                 - ObjectCollection.Insert implementation
16316                 - No selection after clean
16317                 - Small fixes
16318
16319 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16320
16321         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16322
16323 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16324
16325         * Combobox.cs:
16326                 - Caches ItemHeight calculation for OwnerDrawVariable
16327                 - Handles dropdown properly
16328                 - Fixes several minor bugs
16329
16330 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16331
16332         * ListBox.cs:
16333                 - Fixes 71946 and 71950
16334                 - Fixes changing Multicolumn on the fly
16335                 - Fixes keyboard navigation on Multicolumn listboxes
16336
16337 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16338         
16339         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16340         crash reporter log.
16341
16342 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16343
16344         * XplatUIOSX.cs: Allow applications to actually exit.
16345
16346 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16347
16348         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16349         their parent at creation time rather than lazily later.  Fixes a major
16350         regression we were experiencing.
16351
16352 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16353
16354         * ThemeWin32Classic.cs: more date time picker painting fixes
16355         * DateTimePicker.cs: more monthcalendar drop down fixes
16356         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16357
16358 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16359
16360         * ScrollBar.cs:
16361                 - When moving the thumb going outside the control should stop the moving
16362                 - Adds the firing of missing events
16363                 - Fixes no button show if Size is not specified
16364                 - End / Home keys for keyboard navigation
16365
16366 2005-01-30  Peter Bartok  <pbartok@novell.com>
16367
16368         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16369           sanity check to prevent theoretical loop
16370         * XplatUIWin32.cs (SetVisible): Removed debug output
16371         * XplatUIX11.cs (SystrayChange): Added sanity check
16372         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16373         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16374           behaviour, valid until the X11 client window rewrite is done
16375         * TextBox.cs (ctor): Setting proper default foreground and background
16376           colors
16377
16378 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16379
16380         * Theme: Added DrawDateTimePicker to interface
16381         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16382         * DateTimePicker.cs: Created (still needs keys and painting code)
16383         * DateTimePickerFormat.cs: added
16384         * MonthCalendar.cs: fixed CreateParams for popup window mode
16385           
16386 2005-01-29  Peter Bartok  <pbartok@novell.com>
16387
16388         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16389           this should also the calculations for ligher/darker
16390         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16391
16392 2005-01-29  Peter Bartok  <pbartok@novell.com>
16393
16394         * ArrangeDirection.cs: Added
16395         * ArrangeStartingPositon.cs: Added
16396         * SystemInformation.cs: Implemented
16397         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16398           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16399           used by SystemInformation class
16400         * X11Strucs.cs: Added XSizeHints structure
16401         * MenuAPI.cs:
16402           - Fixed CreateParams to make sure the menu window is always visible
16403           - TrackPopupMenu: Added check to make sure we don't draw the
16404             menu offscreen
16405
16406 2005-01-29  Peter Bartok  <pbartok@novell.com>
16407
16408         * HandleData.cs: Added method for altering invalid area
16409         * TextBoxBase.cs: Implemented TextLength
16410
16411 2005-01-28  Peter Bartok  <pbartok@novell.com>
16412
16413         * XplatUIX11.cs: Improvement over last patch, not sending
16414           the WM_PAINT directly anymore, instead we scroll any pending
16415           exposed areas and let the system pick out the WM_PAINT later
16416
16417 2005-01-28  Peter Bartok  <pbartok@novell.com>
16418
16419         * SWF.csproj: Deleted, no longer used. Instead,
16420           Managed.Windows.Forms/SWF.csproj should be used
16421         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16422           directly, to avoid a potential race condition with the next
16423           scroll
16424
16425 2005-01-28  Peter Bartok  <pbartok@novell.com>
16426
16427         * XplatUI.cs: Made class internal
16428
16429 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16430
16431         * CheckedListBox.cs:
16432                 - Draw focus
16433                 - Fixed Drawing
16434                 - Missing methods and events
16435
16436 2005-01-27  Peter Bartok  <pbartok@novell.com>
16437
16438         * Application.cs (Run): Don't use form if we don't have one
16439
16440 2005-01-27  Peter Bartok  <pbartok@novell.com>
16441
16442         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16443
16444 2005-01-27  Peter Bartok  <pbartok@novell.com>
16445
16446         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16447         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16448         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16449         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16450         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16451         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16452         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16453         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16454         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16455         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16456         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16457         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16458
16459 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16460
16461         * Combobox.cs:
16462                 - Draw focus on Simple Combobox
16463                 - Fixes drawing issues
16464                 - fixes 71834
16465
16466 2005-01-27  Peter Bartok  <pbartok@novell.com>
16467
16468         * Form.cs:
16469           - Place window in default location, instead of hardcoded 0/0
16470           - Send initial LocationChanged event
16471         * Control.cs:
16472           - UpdateBounds after creation to find out where the WM placed us
16473           - Make sure that if the ParentForm changes location the Form
16474             is notified
16475         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16476             to the root, but to whatever the WM placed around us.
16477             Translate to root coordinates before returning toplevel
16478             coordinates
16479         * XplatUIWin32.cs: Removed debug output
16480         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16481           flag to GetWindowPos, to allow translation of coordinates on X11
16482
16483 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16484
16485         * ListBox.cs: connect LostFocus Event
16486
16487 2005-01-27  Peter Bartok  <pbartok@novell.com>
16488
16489         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16490           XplatUIX11.cs: Extended the Systray API
16491         * Form.cs: Removed debug output
16492         * Application.cs: Fixed focus assignment, always need to call
16493           XplatUI.Activate() since Form.Activate() has rules that may
16494           prevent activation
16495         * NotifyIcon.cs: Should be complete now
16496         * ToolTip.cs: Worked around possible timer bug
16497
16498 2005-01-27  Jackson Harper  <jackson@ximian.com>
16499
16500         * TabControl.cs:
16501         - Only invalidate the effected tabs when the
16502         selected index changes. This reduces drawing and gets rid of some
16503         flicker.
16504         - Only refresh if the tabs need to be shifted, otherwise only
16505         invalidate the slider button.
16506         - On windows the tabs are not filled to right if the slider is
16507         visible.
16508         
16509 2005-01-27  Jackson Harper  <jackson@ximian.com>
16510
16511         * TabControl.cs: Only refresh on mouseup if we are showing the
16512         slider. Also only invalidate the button whose state has changed.
16513
16514 2005-01-26  Peter Bartok  <pbartok@novell.com>
16515
16516         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16517         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16518           and SystrayRemove() methods
16519         * XplatUIOSX.cs: Stubbed Systray methods
16520         * XplatUIX11.cs:
16521           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16522             methods
16523           - Fixed broken XChangeProperty calls (marshalling messed up things)
16524         * X11Structs.cs: Added enums and structs required for Size hinting
16525         * NotifyIcon.cs: Added & implemented
16526
16527 2005-01-26  Jackson Harper  <jackson@ximian.com>
16528
16529         * TabControl.cs: Space vertically layed out tabs properly.
16530
16531 2005-01-26  Peter Bartok  <pbartok@novell.com>
16532
16533         * Form.cs (CreateClientParams): Always set the location to 0,0
16534           since we're a child window.
16535
16536         * Control.cs (SetVisibleCore): Always explicitly setting the location
16537           of a toplevel window, apparently X11 doesn't like to move windows
16538           while they're not mapped.
16539
16540 2005-01-26  Jackson Harper  <jackson@ximian.com>
16541
16542         * TabControl.cs: Implement FillToRight size mode with vertically
16543         rendered tabs.
16544
16545 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16546
16547         * ControlPaint.cs, ThemeWin32Classic.cs
16548                 - Fixes DrawFocusRectangle
16549
16550 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16551
16552         * MenuAPI.cs:
16553                 - MenuBar tracking only starts when item is first clicked
16554                 - Fixes menu hidding for multiple subitems
16555                 - Unselect item in MenuBar when item Executed
16556                 - Fixes bug 71495
16557
16558 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16559
16560         * ListControl.cs:
16561                 - IsInputKey for ListBox
16562         * ListBox.cs:
16563                 - Focus item
16564                 - Shift and Control item selection
16565                 - Implement SelectionMode.MultiExtended
16566                 - Fixes RightToLeft
16567         * ComboBox.cs:
16568                 - IsInputKey implemented
16569                 - Do not generate OnTextChangedEdit on internal txt changes
16570                 
16571 2005-01-23  Peter Bartok  <pbartok@novell.com>
16572
16573         * AccessibleObject.cs: Partially implemented Select()
16574         * MonthCalendar.cs: Added missing attributes and events
16575         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16576           form can properly override CreateParams.
16577         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16578           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16579           Control performs Invalidate & Update
16580         * NativeWindow (CreateHandle): Added special handling for Form
16581           and Form.FormParent classes to allow overriding of From.CreateParams
16582         * Control.cs:
16583           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16584             name 'owner'
16585           - ControlNativeWindow: Added Owner property
16586           - Removed usage of Refresh() on property changes, changed into
16587             Invalidate(), we need to wait until the queue is processed for
16588             updates, direct calls might cause problems if not all vars for
16589             Paint are initialized
16590           - Added call to UpdateStyles() when creating the window, to set any
16591             styles that CreateWindow might have ignored.
16592           - Added support for Form CreateParent overrides to UpdateStyles()
16593         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16594           CreateParams are now properly overridable
16595         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16596           CreateParams are now properly overridable
16597
16598 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16599
16600         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16601         OnTextBoxChanged.
16602
16603         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16604         recursive invocation that I have not figured out yet.
16605
16606         Reset the timer when not using (it was accumulating).
16607
16608
16609         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16610         user has made changes that require validation.
16611
16612         Reset changing to avoid loops.
16613
16614 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16615
16616         * NumericUpDown.cs: Display value at startup.
16617
16618         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16619         ValidateEditText.
16620
16621         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16622         filled in.  Added some basic parsing of text.
16623
16624         Still missing the OnXXX method overrides, and figuring out the
16625         events that must be emitted.
16626
16627         * UpDownBase.cs: Handle UserEdit on the Text property.
16628         
16629 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16630
16631         * ComboBox.cs:
16632           - Fixes IntegralHeight
16633           - ToString method
16634
16635 2005-01-21  Jackson Harper  <jackson@ximian.com>
16636
16637         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16638         is set so that the page visibility is updated and the tabs are
16639         sized correctly.
16640
16641 2005-01-21  Jackson Harper  <jackson@ximian.com>
16642
16643         * TabControl.cs: Use cliping rectangle for blitting. Give the
16644         theme the clipping rect so we can do clipping while
16645         drawing. Remove some debug code.
16646
16647 2005-01-21  Jackson Harper  <jackson@ximian.com>
16648
16649         * TabPage.cs: Add a new method so tab pages can force the tab
16650         control to recalculate the tab page sizes.
16651         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16652         sizes.
16653
16654 2005-01-20  Jackson Harper  <jackson@ximian.com>
16655
16656         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16657
16658 2005-01-20  Jackson Harper  <jackson@ximian.com>
16659
16660         * TreeView.cs: Set the bounds for nodes properly. They were
16661         getting screwed up when checkboxes were not enabled, but images
16662         were.
16663
16664 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16665
16666         * ListBox.cs:
16667                 - Owner draw support
16668                 - Fixes
16669                 
16670 2005-01-20  Jackson Harper  <jackson@ximian.com>
16671
16672         * XplatUIStructs.cs: More misc keys
16673         * X11Keyboard.cs: Ignore some control keys.
16674
16675 2005-01-20  Jackson Harper  <jackson@ximian.com>
16676
16677         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16678         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16679
16680 2005-01-19  Peter Bartok  <pbartok@novell.com>
16681
16682         * Control.cs: Un-selecting the control when it is loosing focus
16683
16684 2005-01-19  Jackson Harper  <jackson@ximian.com>
16685
16686         * TreeView.cs: Hook up to the text controls leave event so we can
16687         end editing when the users clicks outside the text box.
16688         
16689 2005-01-19  Jackson Harper  <jackson@ximian.com>
16690
16691         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16692         get set in the conversion array.
16693
16694 2005-01-19  Peter Bartok  <pbartok@novell.com>
16695
16696         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16697           focus is properly set
16698         * Button.cs:
16699           - Added missing attributes
16700           - removed styles, those are already set in the base class
16701         * ButtonBase.cs:
16702           - Added missing attributes
16703           - Added clip window styles
16704         * CheckBox.cs: Added missing attributes
16705         * CommonDialog.cs:
16706           - FormParentWindow.CreateParams: Added required clip styles
16707         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16708           also filters modifier keys
16709         * MessageBox.cs:
16710           - Added assignment of Accept and Cancel button to enable Enter
16711             and Esc keys in MessageBox dialogs
16712           - FormParentWindow.CreateParams: Added required clip styles
16713         * RadioButton.cs: Added missing attributes
16714         * TextControl.cs: No longer draws selection if control does not
16715           have focus
16716         * TextBoxBase.cs:
16717           - Now draws simple rectangle around test area to make it obvious
16718             there's a control. This is a hack until we properly support borders
16719           - A few simple fixes to support selections better, now erases selected
16720             text when typing, and resets selection when using movement keys
16721
16722 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16723
16724         * UpDownBase.cs: Added some new properties.
16725
16726         * DomainUpDown.cs: Implement a lot to get my test working.
16727
16728 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16729
16730         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16731
16732 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16733
16734         * OSXStructs (WindowAttributes): Fixed csc complaints
16735
16736 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16737
16738         * XplayUIOSX.cs:
16739           OSXStructs.cs: Initial refactor to move enums and consts into
16740           OSXStructs and use them in the driver for greater readability.
16741
16742 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16743
16744         * XplatUIOSX.cs: Initial support for Standard Cursors.
16745         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16746
16747 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16748
16749         * ComboBox.cs: ability to change style when the ctrl is already
16750         created, missing methods and events, bug fixes, signature fixes
16751
16752 2005-01-19  Peter Bartok  <pbartok@novell.com>
16753
16754         * Cursors.cs (ctor): Added ctor to fix signature
16755
16756 2005-01-18  Peter Bartok  <pbartok@novell.com>
16757
16758         * Button.cs: Implemented DoubleClick event
16759         * ButtonBase.cs:
16760           - Fixed keyboard handling to behave like MS, where the press of
16761             Spacebar is equivalent to a mousedown, and the key release is
16762             equivalent to mouseup. Now a spacebar push will give the same
16763             visual feedback like a mouse click.
16764           - Added missing attributes
16765           - Added ImeModeChanged event
16766           - Added support for generating DoubleClick event for derived classes
16767         * CheckBox.cs:
16768           - Implemented DoubleClick event
16769           - Added missing attributes
16770         * CommonDialog.cs: Added missing attribute
16771         * ContextMenu.cs: Added missing attributes
16772         * RadioButton.cs:
16773           - AutoChecked buttons do not allow to be unselected when clicked
16774             (otherwise we might end up with no selected buttons in a group)
16775           - Added missing attributes
16776           - Implemented DoubleClickEvent
16777         * ThreadExceptionDialog.cs: Enabled TextBox code
16778
16779 2005-01-18  Peter Bartok  <pbartok@novell.com>
16780
16781         * Form.cs: Removed debug output
16782         * Button.cs: Added support for DoubleClick method
16783
16784 2005-01-18  Peter Bartok  <pbartok@novell.com>
16785
16786         * Form.cs:
16787           - Added method to parent window that allows triggering size
16788             calculations when a menu is added/removed
16789           - set_Menu: Cleaned up mess from early days of Form and Control,
16790             now properly triggers a recalc when a menu is added/removed
16791           - Added case to select form itself as focused form if no child
16792             controls exist
16793           - Added PerformLayout call when showing dialog, to ensure properly
16794             placed controls
16795         * Control.cs:
16796           - Select(): Made internal so Form can access it
16797           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16798             status
16799         * Application.cs (Run): Removed hack and calls PerformLayout instead
16800           to trigger calculation when Form becomes visible
16801
16802 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16803
16804         * ComboBox.cs: fixes for ownerdraw
16805
16806 2005-01-18  Peter Bartok  <pbartok@novell.com>
16807
16808         * TextControl.cs:
16809           - Sentinel is no longer static, each Document gets it's own, this
16810             avoids locking or alternatively overwrite problems when more
16811             than one text control is used simultaneously.
16812           - Switched to use Hilight and HilightText brushes for text selection
16813
16814         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16815
16816 2005-01-18  Peter Bartok  <pbartok@novell.com>
16817
16818         * Control.cs:
16819           - Hooked up the following events:
16820                 o ControlAdded
16821                 o ControlRemoved
16822                 o HandleDestroyed
16823                 o ImeModeChanged
16824                 o ParentChanged
16825                 o TabStopChanged
16826                 o Invalidated
16827                 o SystemColorsChanged
16828                 o ParentFontChanged
16829                 o Move
16830           - Removed debug output
16831           - Added a call to the current theme's ResetDefaults when a color change
16832             is detected
16833         * Form.cs: Now setting the proper ImeMode
16834         * Theme.cs: Defined a method to force recreation of cached resources
16835           and rereading of system defaults (ResetDefaults())
16836         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16837
16838 2005-01-17  Peter Bartok  <pbartok@novell.com>
16839
16840         * Control.cs: Added missing attributes
16841
16842 2005-01-17  Jackson Harper  <jackson@ximian.com>
16843
16844         * TreeNode.cs: Implement editing. Add missing properties selected
16845         and visible.
16846         * TreeView.cs: Implement node editing. Also some fixes to use
16847         Invalidate (invalid area) instead of Refresh when selecting.
16848
16849 2005-01-17  Peter Bartok  <pbartok@novell.com>
16850
16851         * Control.cs:
16852           - Implemented InvokeGotFocus() method
16853           - Implemented InvokeLostFocus() method
16854           - Implemented InvokePaint() method
16855           - Implemented InvokePaintBackground() method
16856           - Implemented InvokeClick() method
16857           - Implemented FindForm() method
16858           - Implemented RectangleToClient() method
16859           - Implemented ClientToRectangle() method
16860           - Implemented ResetBackColor() method
16861           - Implemented ResetCursor() method
16862           - Implemented ResetFont() method
16863           - Implemented ResteForeColor() method
16864           - Implemented ResetImeMode() method
16865           - Implemented ResetLeftToRight() method
16866           - Implemented ResetText() method
16867           - Implemented Scale() methods
16868           - Implemented ScaleCore() method
16869           - Implemented Update() method
16870           - Removed unused variables
16871           - Stubbed AccessibilityNotifyClients and
16872             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16873             with those yet)
16874           - Now setting proper default for RightToLeft property
16875           - Fixed bug in SetClientSizeCore that would cause windows to get
16876             really big
16877           - Now sending Click/DoubleClick events
16878           - Now selecting controls when left mouse button is clicked on
16879             selectable control
16880         * AccessibleEvents.cs: Added
16881         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16882         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16883         * XplatUIWin32.cs: Implemented UpdateWindow() method
16884         * XplatUIX11.cs: Implemented UpdateWindow() method
16885         * Form.cs: Removed stray semicolon causing CS0162 warning
16886         * ThemeWin32Classic.cs: Fixed unused variable warnings
16887         * ScrollableControl.cs: Now calls base method for ScaleCore
16888         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16889           style to avoid interference with internal click handler (which is
16890           different than standard Control click handling)
16891         * RadioButton.cs:
16892           - Now unchecks all sibling radio buttons when control is
16893             selected (Fixes #68756)
16894           - Removed internal tabstop variable, using the one inherited from
16895             Control
16896
16897 2005-01-17  Jackson Harper  <jackson@ximian.com>
16898
16899         * NavigateEventArgs.cs: Fix base type.
16900         * LinkLabel.cs: Sig fix
16901         
16902 2005-01-17  Jackson Harper  <jackson@ximian.com>
16903
16904         * TreeView.cs: Only invalidate the effected nodes bounds when
16905         selecting nodes.
16906
16907 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16908
16909         * XplatUIWin32.cs: fixes Win32 marshaling
16910         * XplatUIX11.cs: fixes method signature
16911
16912 2005-01-17  Peter Bartok  <pbartok@novell.com>
16913
16914         * XplatUIX11.cs: Clean up resources when we no longer need them
16915
16916 2005-01-17  Peter Bartok  <pbartok@novell.com>
16917
16918         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16919           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16920           and DestroyCursor() methods.
16921         * Cursor.cs: Partially implemented, now supports standard cursors;
16922           still contains some debug code
16923         * Cursors.cs: Implemented class
16924         * Control.cs:
16925           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16926             appropriate cursor
16927           - Implemented Cursor property
16928           - Replaced break; with return; more straightforwar and possibly
16929             faster
16930           - Now properly setting the result for WM_HELP
16931         * X11Structs.cs: Added CursorFontShape enum
16932         * XplatUIStructs.cs:
16933           - Added StdCursor enum (to support DefineStdCursor() method)
16934           - Added HitTest enum (to support sending WM_SETCURSOR message)
16935         * XplatUIX11.cs:
16936           - Now sends the WM_SETCURSOR message
16937           - Implemented new cursor methods
16938         * XplatUIOSX.cs: Stubbed new cursor methods
16939         * XplatUIWin32.cs:
16940           - Implemented new cursor methods
16941           - Added GetSystemMetrics function and associated enumeration
16942
16943 2005-01-15  Peter Bartok  <pbartok@novell.com>
16944
16945         * Control.cs:
16946           - WndProc(): Now handles EnableNotifyMessage
16947           - SelectNextControl(): Fixed bug where if no child or sibling
16948             controls exist we looped endlessly
16949
16950 2005-01-14  Jackson Harper  <jackson@ximian.com>
16951
16952         * TreeView.cs: Recalculate the tab pages when a new one is added
16953         so that the proper bounding rects are created.
16954
16955 2005-01-14  Jackson Harper  <jackson@ximian.com>
16956
16957         * TreeView.cs: Draw a gray box instead of a grip in the lower
16958         right hand corner when there are both horizontal and vertical
16959         scroll bars.
16960
16961 2005-01-14  Jackson Harper  <jackson@ximian.com>
16962
16963         * Control.cs: When erasing backgrounds use FromHwnd instead of
16964         FromHdc when there is a NULL wparam. This occurs on the X driver.
16965         * XplatUIX11.cs: Set the wparam to NULL.
16966
16967 2005-01-13  Jackson Harper  <jackson@ximian.com>
16968
16969         * PictureBox.cs: Implement missing methods (except ToString, need
16970         to test that on windows) and events. When visibility is changed we
16971         need to redraw the image because the buffers are killed. When size
16972         is changed refresh if the sizemode needs it.
16973
16974 2005-01-13  Peter Bartok  <pbartok@novell.com>
16975
16976         * Control.cs (SelectNextControl): Was using wrong method to select
16977           a control
16978
16979 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16980
16981         * ComboBox.cs: fixes dropstyle
16982
16983 2005-01-13  Peter Bartok  <pbartok@novell.com>
16984
16985         * Form.cs:
16986           - Implemented Select() override
16987           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16988           - Now sets keyboard focus on startup
16989         * Control.cs (SelectNextControl): Now properly handles directed=true
16990         * TextBoxBase.cs:
16991           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16992           - Added (really bad) focus rectangle (mostly for testing)
16993         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16994           to enforce redraw on focus changes
16995         * ContainerControl.cs:
16996           - Fixed detection of Shift-Tab key presses
16997           - Fixed traversal with arrow keys
16998         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16999           gonna keep this or if it's complete yet
17000         
17001 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17002
17003         * ComboBox.cs: missing properties, fixes
17004
17005 2005-01-13  Peter Bartok  <pbartok@novell.com>
17006
17007         * Panel.cs (ctor): Setting Selectable window style to off
17008         * Splitter.cs (ctor): Setting Selectable window style to off
17009         * GroupBox.cs (ctor): Setting Selectable window style to off
17010         * Label.cs (ctor): Setting Selectable window style to off
17011
17012 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17013
17014         * UpDownBase.cs (InitTimer): If the timer has been already
17015         created, enable it.
17016
17017         Use a TextBox instead of a Label.
17018
17019 2005-01-12  Jackson Harper  <jackson@ximian.com>
17020
17021         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17022         draw the connecting node lines (when ShowLines is true).
17023         * TreeNode.cs: The nodes index can now be updated. This is used
17024         when a node collection is sorted.
17025         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17026         insert or an existing unsorted node collection can be sorted.
17027         
17028 2005-01-12  Peter Bartok  <pbartok@novell.com>
17029
17030         * ContainerControl.cs: Implemented ProcessDialogKeys()
17031
17032 2005-01-12  Peter Bartok  <pbartok@novell.com>
17033
17034         * Control.cs:
17035           - Implemented SelectNextControl() method
17036           - Several focus related bug fixes
17037           - Fixed Docking calculations to match MS documentation and
17038             behaviour
17039
17040 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17041
17042         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
17043         bug fixes
17044
17045 2005-01-12  Peter Bartok  <pbartok@novell.com>
17046
17047         * Control.cs:
17048           - Fixed broken Contains() method
17049           - Implemented GetNextControl() method. Finally. This is the pre-
17050             requisite for focus handling.
17051
17052 2005-01-12  Peter Bartok  <pbartok@novell.com>
17053
17054         * OSXStrucs.cs: Added
17055
17056 2005-01-12  Peter Bartok  <pbartok@novell.com>
17057
17058         * XplatUIWin32.cs:
17059           - Removed PeekMessageFlags
17060           - Implemented SetWindowStyle() method
17061         * XplatUIStructs.cs: Added PeekMessageFlags
17062         * X11Structs: Added missing border_width field to XWindowChanges struct
17063         * XplatUIX11.cs:
17064           - PeekMessage: Now throws exception if flags which are not yet
17065             supported are passed
17066           - Implemented SetWindowStyle() method
17067           - Fixed SetZOrder to handle AfterHwnd properly
17068         * XplatUI.cs: Added SetWindowStyle() method
17069         * XplatUIDriver.cs: Added SetWindowStyle() abstract
17070         * Control.cs:
17071           - Implemented UpdateStyles() method
17072           - Implemented UpdateZOrder() method
17073         * XplatUIOSX.cs: Added SetWindowStyle() stub
17074
17075 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
17076
17077         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
17078         button mouse).
17079
17080
17081 2005-01-11  Jackson Harper  <jackson@ximian.com>
17082
17083         * TreeView.cs: Still need to draw lines to siblings even if out of
17084         the current node is out of the clip.
17085
17086 2005-01-11  Jackson Harper  <jackson@ximian.com>
17087
17088         * TreeView.cs: When setting the hbar/vbar/grip position use
17089         SetBounds so that perform layout is only called once. Also suspend
17090         and resume layout so layout is only done once for all controls.
17091         - Removed some debug fluff
17092         * SizeGrip.cs: Call base implmentation in overriding methods.
17093         - When visibility is changed the drawing buffers are killed so we
17094         need to redraw.
17095
17096 2005-01-11  Jackson Harper  <jackson@ximian.com>
17097
17098         * TreeView.cs: Calculate the open node count while drawing. This
17099         saves us an entire tree traversal for every paint operation. Use
17100         a member var for the open node count so less vars are passed around.
17101
17102 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
17103
17104         * MonthCalendar.cs:
17105         - fixed selection to use mousemove, not mouse polling on timer
17106         * ThemeWin32Classic.cs
17107         - removed redundant unused variable "no_more_content"
17108         
17109 2005-01-11  Peter Bartok  <pbartok@novell.com>
17110
17111         * XplatUIX11.cs (DoEvents): Needs to return when no more events
17112           are pending, so it now calls PeekMessage instead of GetMessage;
17113           implemented a incomplete version of PeekMessage
17114         
17115 2005-01-11  Peter Bartok  <pbartok@novell.com>
17116
17117         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
17118           I18n issues
17119         * TextBoxBase.cs: Added sending of TextChanged event
17120
17121 2005-01-10  Jackson Harper  <jackson@ximian.com>
17122
17123         * TreeView.cs: Try not to draw outside the clipping rectangle on
17124         each node element.
17125
17126 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17127
17128         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17129
17130 2005-01-10  Jackson Harper  <jackson@ximian.com>
17131
17132         * TreeView.cs:
17133         - Implement fast scrolling. Now only the newly
17134         exposed nodes are drawn and the old image is moved using the
17135         XplatUI::ScrollWindow method.
17136         - Factor in height of nodes when calculating whether or not the
17137         node is in the clipping rect.
17138
17139 2005-01-10  Jackson Harper  <jackson@ximian.com>
17140
17141         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17142
17143 2005-01-10  Peter Bartok  <pbartok@novell.com>
17144
17145         * Application.cs: Added temporary hack to resolve all our resize
17146           required issues on startup. This will get fixed properly at
17147           some point in the future
17148
17149 2005-01-10  Jackson Harper  <jackson@ximian.com>
17150
17151         * SizeGrip.cs: New internal class that is used as a sizing
17152         grip control...hence the name.
17153
17154 2005-01-10  Peter Bartok  <pbartok@novell.com>
17155
17156         * Control.cs: Implemented proper TabIndex handling, now assigning
17157           a tabindex when a control is added to a container
17158         * GroupBox.cs (ctor): Now sets the Container style bit, required
17159           for Control.GetNextControl()
17160
17161 2005-01-09  Jackson Harper  <jackson@ximian.com>
17162
17163         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17164
17165 2005-01-09  Peter Bartok <pbartok@novell.com>
17166
17167         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17168           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17169           an overload for ScrollWindow to allow only scrolling a rectangle
17170
17171 2005-01-09  Peter Bartok <pbartok@novell.com>
17172
17173         * Form.cs:
17174           - Implemented SetDesktopBounds method
17175           - Implemented SetDesktopLocation method
17176
17177 2005-01-08  Jackson Harper  <jackson@ximian.com>
17178
17179         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17180         the node count has changed, this removes to VScroll::Refresh calls
17181         when drawing.
17182
17183 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17184
17185         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17186
17187 2005-01-07  Jackson Harper  <jackson@ximian.com>
17188
17189         * TreeNode.cs: Just update the single node when it is
17190         checked. Don't refresh after toggling, the Expand/Collapse already
17191         handles this.
17192         * TreeView.cs: Respect clipping a little more when drawing. Try
17193         not to redraw things that don't need to be redrawn. Just hide the
17194         scrollbars when they are no longer needed instead of removing
17195         them, so they don't have to be created again and again.
17196         
17197 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17198
17199         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17200         coordinates to window space to place the caret properly, FIXED.
17201         Implement GetWindowState & SetWindowState
17202
17203 2005-01-06  Peter Bartok <pbartok@novell.com>
17204
17205         * Form.cs:
17206           - Implemented ClientSize property
17207           - Implemented DesktopBounds property
17208           - Implemented DesktopLocation property
17209           - Implemented IsRestrictedWindow property
17210           - Implemented Size property
17211           - Implemented TopLevel property
17212           - Implemented FormWindowState property
17213         * Control.cs:
17214           - Implemented GetTopLevel() method
17215           - Implemented SetTopLevel() method
17216         * X11Structs.cs (Atom):
17217           - Added AnyPropertyType definition
17218           - Added MapState definiton and updated XWindowAttribute struct
17219         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17220         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17221         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17222         * XplatUIWin32.cs:
17223           - Implemented GetWindowState() and SetWindowState() methods
17224           - Fixed Win32GetWindowLong return type
17225         * XplatUIX11.cs:
17226           - Introduced central function for sending NET_WM messages
17227           - Implemented GetWindowState() and SetWindowState() methods
17228         * TextBoxBase.cs (set_Lines):
17229           - Now uses Foreground color for text added via Text property (Duh!)
17230           - Added code to remember programmatically requested size (fixes
17231             behaviour when Multiline is set after Size)
17232           - Added AutoSize logic
17233
17234 2005-01-06  Jackson Harper  <jackson@ximian.com>
17235
17236         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17237
17238 2005-01-06  Jackson Harper  <jackson@ximian.com>
17239
17240         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17241         set to less then 0.
17242
17243 2005-01-06  Jackson Harper  <jackson@ximian.com>
17244
17245         * ScrollableControl.cs: Lazy init the scrollbars.
17246         
17247 2005-01-06  Jackson Harper  <jackson@ximian.com>
17248
17249         * Theme.cs: Speed up getting pens and solid brushes, by using
17250         their ARGB as a hash instead of tostring and not calling Contains.
17251
17252 2005-01-06  Peter Bartok <pbartok@novell.com>
17253
17254         * Form.cs:
17255           - Implemented OnActivated and OnDeactivate event trigger
17256           - Implemented Activate() method
17257           - Fixed ShowDialog() to activate the form that was active before
17258             the dialog was shown
17259         * XplatUIX11.cs:
17260           - Added global active_window var that tracks the currently active
17261             X11 window
17262           - Now always grabs Property changes from the root window to always
17263             catch changes on the active window property
17264           - Added code to PropertyNotify handler to send Active/Inactive
17265             messages when state changes. This puts X11 and Win32 en par on
17266             WM_ACTIVATE notifications (except for double notifications when
17267             the user clicks away from our modal window to another one of our
17268             windows)
17269
17270 2005-01-05  Jackson Harper  <jackson@ximian.com>
17271
17272         * ImageList.cs: Implment ctor
17273
17274 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17275
17276         * XplatUIOSX.cs: Implement Activate/SetTopmost
17277
17278 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17279
17280         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17281
17282 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17283
17284         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17285
17286 2005-01-05  Peter Bartok <pbartok@novell.com>
17287
17288         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17289           XplatUIOSX.cs: Added GetActive method to return the currently
17290           active window for the application (or null, if none is active)
17291         * Form.cs:
17292           - Implemented ActiveForm
17293           - Commented out owner assignment for modal dialogs (causes problems
17294             on Win32, since the owner will be disabled)
17295           - Reworked some Active/Focus handling (still incomplete)
17296         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17297           (causes problems on Win32, since the owner will be disabled)
17298         * IWin32Window: Added ComVisible attribute
17299
17300 2005-01-05  Peter Bartok <pbartok@novell.com>
17301
17302         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17303           required XplatUI functions.
17304
17305 2005-01-05  Peter Bartok <pbartok@novell.com>
17306
17307         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17308           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17309           to implement focus and activation handling; still incomplete and
17310           with debug output
17311
17312 2005-01-04  Peter Bartok <pbartok@novell.com>
17313
17314         * TextBoxBase.cs: Changed access level for Document property to
17315           match switch to internal for TextControl
17316
17317 2005-01-04  Peter Bartok <pbartok@novell.com>
17318
17319         * AccessibleObject: Added ComVisible attribute
17320
17321 2005-01-04  Jackson Harper  <jackson@ximian.com>
17322
17323         * X11Keyboard.cs: Remove unneeded var.
17324
17325 2005-01-04  Jackson Harper  <jackson@ximian.com>
17326
17327         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17328         but PAINT.
17329         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17330         ClientMessage. This makes apps exit cleanly (more often).
17331         
17332 2005-01-04  Jackson Harper  <jackson@ximian.com>
17333
17334         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17335         handling focus, return correct colors and fonts,
17336         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17337         handle selection, horizontal scrolling, and mouse interaction.
17338
17339 2005-01-04  Peter Bartok <pbartok@novell.com>
17340
17341         * ICommandExecutor.cs: Added
17342         * IDataGridColumnStyleEditingNotificationService.cs: Added
17343         * IFeatureSupport.cs: Added
17344         * IFileReaderService.cs: Added
17345         * IDataObject.cs: Added ComVisible attribute
17346         * AmbientProperties.cs: Added
17347         * BaseCollection.cs: Added missing attributes
17348         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17349         * BaseCollection.cs: Added missing attributes
17350         * Binding.cs: Added TypeConverter attribute
17351         * BindingContext.cs: Added DefaultEvent attribute
17352         * BindingsCollection.cs: Added DefaultEvent attribute
17353         * Button.cs: Added DefaultValue attribute
17354         * DragEventArgs.cs: Added ComVisible attribute
17355         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17356         * KeyEventArgs.cs: Added ComVisible attribute
17357         * KeyPressEventArgs.cs: Added ComVisible attribute
17358         * MouseEventArgs.cs: Added ComVisible attribute
17359         * NavigateEventArgs.cs: Added
17360         * NavigateEventHandler.cs: Added
17361         * FeatureSupport.cs: Added
17362         * OSFeature.cs: Added
17363         * Theme.cs: Added abstract Version property to support OSFeature
17364         * ThemeWin32Classic.cs: Added Version property to
17365           support OSFeature.Themes
17366         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17367           the proper styles to avoid background drawing are set, also doesn't
17368           match MS signature
17369         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17370         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17371         * ScrollEventArgs.cs: Added ComVisible attribute
17372         * SplitterEventArgs.cs: Added ComVisible attribute
17373         * AccessibleSelection.cs: Added Flags attribute
17374         * Appearance.cs: Added ComVisible attribute
17375         * Border3DSide.cs: Added ComVisible attribute
17376         * Border3DStyle.cs: Added ComVisible attribute
17377         * BorderStyle.cs: Added ComVisible attribute
17378         * DragAction.cs: Added ComVisible attribute
17379         * ErrorBlinkStyle.cs: Added
17380         * ScrollEventType.cs: Added ComVisible attribute
17381         * AnchorStyles.cs: Added Editor attribute
17382         * DockStyle.cs: Added Editor attribute
17383         * HorizontalAlignment.cs: Added ComVisible attribute
17384         * HelpEventArgs.cs: Added ComVisible attribute
17385         * PaintEventArgs.cs: Added IDisposable
17386
17387 2005-01-04  Peter Bartok <pbartok@novell.com>
17388
17389         * TextControl.cs: Switched Line, LineTag and Document classes to
17390           internal
17391
17392 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17393
17394         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17395         Simple mode, fixes, IntegralHeight, etc.
17396
17397 2005-01-04  Peter Bartok <pbartok@novell.com>
17398
17399         * TextBoxBase.cs: Using proper font variable now
17400
17401 2005-01-04  Peter Bartok <pbartok@novell.com>
17402
17403         * Form.cs (ShowDialog): Set parent to owner, if provided
17404         * GroupBox.cs: Removed unused vars
17405         * TextControl.cs:
17406           - Added GetHashCode() for Document and LineTag classes
17407           - Removed unused variables
17408           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17409             to allow translation between continuous char position and line/pos
17410         * CheckBox.cs: Removed vars that are provided by base class
17411         * RadioButton.cs: Removed vars that are provided by base class, added
17412           new keyword where required
17413         * LinkLabel.cs: Added new keyword where required
17414         * Control.cs (WndProc): Removed unused variable
17415         * TextBoxBase.cs:
17416           - Finished SelectionLength property
17417           - Implemented SelectionStart property
17418           - Implemented Text property
17419           - Removed unused vars
17420         * MessageBox.cs: Added new keyword where required
17421         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17422           WndProc signature
17423         * MenuAPI.cs: Added new keyword where required
17424         * ButtonBase.cs: Removed vars that are provided by base class, added
17425           new keyword where required
17426         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17427           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17428           into this)
17429         * Application.cs (Run): Now triggers the ThreadExit event
17430         * CommonDialog.cs: Added new keyword where required; now properly sets
17431           parent (owner) for dialog
17432         * XplatUIX11.cs: Commented out unused vars
17433         * StatusBar.cs: Fixed signature for Text property
17434         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17435
17436 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17437
17438         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17439         TrackBar.cs, MonthCalendar.cs: remove unused vars
17440
17441 2005-01-03  Jackson Harper  <jackson@ximian.com>
17442
17443         * ThemeWin32Classic.cs:
17444         * X11Keyboard.cs: Remove unused vars.
17445
17446 2005-01-03  Peter Bartok  <pbartok@novell.com>
17447
17448         * TextBox.cs:
17449           - set_Text: Tied into TextControl
17450           - set_TextAlignment: Tied into TextControl
17451         * TextControl.cs:
17452           - Added alignment properties and implemented alignment handling
17453             and drawing (still has a bug, not generating proper expose events)
17454           - Added new Line() constructor to allow passing the line alignment
17455           - Fixed selection setting, properly handling end<start now
17456           - Added aligment considerations to RecalculateDocument()
17457         * TextBoxBase.cs:
17458           - Now properly enforces control height for single line controls
17459           - Added support for CharacterCasing
17460           - Added IsInputKey override
17461           - Fixed Keys.Enter logic
17462           - Added SetBoundsCore override
17463           - Fixed mouse selection handling
17464
17465 2005-01-03  Jackson Harper  <jackson@ximian.com>
17466
17467         * TreeView.cs:
17468           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17469           - Checkboxes are always aligned to the bottom of the node,
17470           regardless of item height.
17471           - Use the node bounds to draw the text so we can center it when
17472           the item height is greater then the font height.
17473           - Node::Bounds are only the text part of the node.
17474         * TreeNode.cs: New method to combine collapsing and unchecking all
17475           nodes recursively.
17476
17477 2005-01-02  Jackson Harper  <jackson@ximian.com>
17478
17479         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17480         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17481         tree when a check is changed. TODO: Only refresh the checked node.
17482
17483 2004-12-30  Jackson Harper  <jackson@ximian.com>
17484
17485         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17486         * TreeNode.cs: When collapsing make sure to never collapse the
17487         root node.
17488
17489 2004-12-29  Jackson Harper  <jackson@ximian.com>
17490
17491         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17492         
17493 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17494
17495         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17496
17497 2004-12-28  Peter Bartok  <pbartok@novell.com>
17498
17499         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17500           not yet assigned
17501
17502 2004-12-28  Peter Bartok  <pbartok@novell.com>
17503
17504         * Control.cs (WndProc): Added WM_HELP handler, now generates
17505           HelpRequested event
17506         * Form.cs: Added HelpButton property and required support code
17507         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17508
17509 2004-12-28  Peter Bartok  <pbartok@novell.com>
17510
17511         * CommonDialog.cs:
17512           - Made DialogForm.owner variable internal
17513           - Added check to ensure owner form is set before setting
17514             owner properties in CreateParams
17515
17516 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17517
17518         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17519           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17520           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17521           system to support borderless/titleless windows (implements menus).
17522           Fix GetWindowPos.  Implement initial background color support for
17523           views.
17524
17525 2004-12-28  Peter Bartok  <pbartok@novell.com>
17526
17527         * Form.cs (get_CreateParams): Make sure we have an owner before using
17528           the owner variable. Implement proper default if no owner exists
17529
17530 2004-12-28  Peter Bartok  <pbartok@novell.com>
17531
17532         * In preparation for making Managed.Windows.Forms the default build target
17533           for System.Windows.Forms, the following stubbed files were added.
17534           Dialogs are currently being implemented by contributors and are only
17535           short-term place holders.
17536         * ColorDialog.cs: Initial check-in (minmal stub)
17537         * DataGrid.cs: Initial check-in (minimal stub)
17538         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17539         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17540         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17541         * FontDialog.cs: Initial check-in (minimal stub)
17542         * FileDialog.cs: Initial check-in (minimal stub)
17543         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17544         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17545         * OpenFileDialog: Initial check-in (minimal stub)
17546         * IComponentEditorPageSite.cs: Initial check-in
17547         * Splitter.cs: Initial check-in (for Jackson)
17548         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17549         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17550         * TextBox.cs: Initial check-in; still needs some wiring to
17551           TextControl backend
17552         * Form.cs: Implemented ControlBox property
17553         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17554         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17555         * TextControl.cs: Added selection functionality; added todo header
17556         * TextBoxBase.cs:
17557           - Implemented Lines property
17558           - Implemented TextHeight property
17559           - Implemented SelectedText property
17560           - Implemented SelectionLength property
17561           - Implemented SelectAll method
17562           - Implemented ToString method
17563           - Removed and cleaned up some debug code
17564           - Implemented (still buggy) mouse text selection
17565
17566 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17567
17568         * ComboBox.cs: Complete DropDownList implementation, fixes.
17569
17570 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17571
17572         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17573         * ComboBoxStyle.cs: ComboBoxStyle enum
17574         * ComboBox.cs: Initial work on ComboBox control
17575
17576 2004-12-21  Peter Bartok  <pbartok@novell.com>
17577
17578         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17579           forward so that anything that creates a window gets the default,
17580           also no longer uses Visible property in CreateParams to avoid
17581           walking up the parent chain and possibly get the wrong visible
17582           status. Fixed IsVisible to no longer walk up to the parent.
17583
17584 2004-12-21  Peter Bartok  <pbartok@novell.com>
17585
17586         * Form.cs (ShowDialog): Unset modality for the proper window
17587  
17588 2004-12-20  Peter Bartok  <pbartok@novell.com>
17589
17590         * CommonDialog.cs: Initial check-in
17591
17592 2004-12-20  Peter Bartok  <pbartok@novell.com>
17593
17594         * Control.cs (Visible): Now uses the parent window instead of the
17595           client area window for the property
17596
17597         * Form.cs
17598           - ShowDialog(): Now uses the proper window for modality
17599           - The default visibility state for the form parent is now false. This
17600             will prevent the user from seeing all the changes to the form and
17601             its controls before the application hits Application.Run()
17602           - Removed some stale commented out code
17603
17604         * NativeWindow.cs:
17605           - Added FindWindow() method to have a method to check for existence
17606             of a window handle
17607           - Added ability to override default exception handling (for example
17608             when debugging with VS.Net; to do this the ExternalExceptionHandler
17609             define must be set
17610           - Removed some useless debug output
17611
17612         * XplatUIX11.cs:
17613           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17614             not working as expected
17615           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17616             property to allow switching back to the modal window if focus is
17617             given to another one of our windows (Application Modal)
17618           - Now only sets override_redirect if we create a window
17619             without WS_CAPTION
17620           - Moved EventMask selection before mapping of newly created window
17621             so we can catch the map event as well
17622           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17623           - Added various Atom related DllImports
17624           - Implemented Exit() method
17625           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17626             in the CreateParams
17627
17628         * MessageBox.cs: Now properly deals with the FormParent window by
17629           providing an override the FormParent CreateParams property to
17630           set as POPUP instead of OVERLAPPED window.
17631
17632 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17633
17634         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17635         Minor code cleanup.
17636
17637 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17638         
17639         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17640
17641 2004-12-18  Peter Bartok  <pbartok@novell.com>
17642
17643         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17644           implementing SetModal() method
17645
17646 2004-12-18  Peter Bartok  <pbartok@novell.com>
17647
17648         * X11Structs.cs (XGCValues): Fixed type of function element
17649         * XplatUI.cs: Added ScrollWindow() method
17650         * XplatUIDriver.cs: Added ScrollWindow() abstract
17651         * XplatUIWin32.cs: Implemented ScrollWindow() method
17652         * XplatUIX11.cs: Implemented ScrollWindow() method
17653         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17654
17655 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17656
17657         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17658         Some more keyboard support (INCOMPLETE)
17659
17660 2004-12-17  Peter Bartok  <pbartok@novell.com>
17661
17662         * TextControl.cs:
17663         - Added color attribute to line tags.
17664         - Added color argument to all functions dealing with tags
17665         - Added color argument support to various functions
17666         - Fixed miss-calculation of baseline/shift in certain circumstances
17667
17668         * TextBoxBase.cs: Added new color option to test code
17669
17670 2004-12-17  Jackson Harper  <jackson@ximian.com>
17671
17672         * TreeNode.cs:
17673         * MonthCalendar.cs: Signature fixes
17674
17675 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17676
17677         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17678         keyboard event moved it.  Create a new graphics context for each paint resolves this
17679
17680 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17681
17682         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17683         Make caret exist and go blink blink.  Initial keyboard support.
17684         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17685         works.
17686
17687 2004-12-17  Jackson Harper  <jackson@ximian.com>
17688
17689         * XplatUIStructs.cs: Updated set of virtual keycodes.
17690         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17691
17692 2004-12-17  Jackson Harper  <jackson@ximian.com>
17693
17694         * XplatUIX11.cs: Prune old keyboard code.
17695
17696 2004-12-17  Jackson Harper  <jackson@ximian.com>
17697
17698         * XplatUIX11.cs: When generating mouse wparams get the modifier
17699         keys from the ModifierKeys property.
17700
17701 2004-12-17  Jackson Harper  <jackson@ximian.com>
17702
17703         * X11Keyboard.cs: Send up/down input when generating
17704         messages. Remove some unused vars.
17705
17706 2004-12-17  Jackson Harper  <jackson@ximian.com>
17707
17708         * TabControl.cs:
17709         * TreeView.cs: get rid of warnings.
17710
17711 2004-12-17  Jackson Harper  <jackson@ximian.com>
17712
17713         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17714
17715 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17716
17717         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17718           CheckedListBox.cs: Implementation
17719
17720 2004-12-17  Peter Bartok  <pbartok@novell.com>
17721
17722         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17723
17724 2004-12-16  Peter Bartok  <pbartok@novell.com>
17725
17726         * TextControl.cs:
17727           - InsertCharAtCaret(): Fixed start pos fixup
17728           - CaretLine_get: No longer derives the line from the tag, the tag
17729             could be stale if lines in the document have been added or deleted
17730           - RebalanceAfterDelete(): Fixed bug in balancing code
17731           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17732           - Line.Streamline(): Now can also elminate leading empty tags
17733           - DumpTree(): Added a few more tests and prevented exception on
17734             uninitialized data
17735           - Added Debug section for Combining lines
17736           - Delete(): Now copies all remaining properties of a line
17737           
17738         * TextBoxBase.cs:
17739           - Left mousebutton now sets the caret (and middle button still acts
17740             as formatting tester, which must go away soon)
17741           - Added Debug section for Deleting/Combining lines
17742           - Fixed calculations for UpdateView after Combining lines
17743
17744 2004-12-16  Peter Bartok  <pbartok@novell.com>
17745
17746         * TextControl.cs: Now properly aligns text on a baseline, using the
17747           new XplatUI.GetFontMetrics() method. Simplified several calculations
17748         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17749           defined
17750
17751 2004-12-16  Peter Bartok  <pbartok@novell.com>
17752
17753         * XplatUI.cs: Added GetFontMetrics() method
17754         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17755         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17756           into libgdiplus, our private GetFontMetrics function
17757         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17758         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17759
17760 2004-12-16  Jackson Harper  <jackson@ximain.com>
17761
17762         * XplatUIStruct.cs: Add enum for dead keys
17763         * X11Keyboard.cs: Map and unmap dead keys.
17764
17765 2004-12-16  Jackson Harper  <jackson@ximian.com>
17766
17767         * X11Keyboard.cs: Detect and use the num lock mask.
17768
17769 2004-12-16  Peter Bartok  <pbartok@novell.com>
17770
17771         * Control.cs (CreateGraphics): Added check to make sure the
17772           handle of the window exists before calling Graphics.FromHwnd()
17773
17774 2004-12-16  Peter Bartok  <pbartok@novell.com>
17775
17776         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17777           contains a lot of code that's not supposed to be there for the
17778           real thing, but required for developing/testing the textbox
17779           backend.
17780
17781 2004-12-16  Peter Bartok  <pbartok@novell.com>
17782
17783         * TextControl.cs:
17784         - Fixed Streamline method
17785         - Added FindTag method to Line
17786         - Added DumpTree method for debugging
17787         - Added DecrementLines() method for deleting lines
17788         - Fixed UpdateView to update the cursor to end-of-line on single-line
17789           updates
17790         - Added PositionCaret() method
17791         - Fixed MoveCaret(LineDown) to move into the last line, too
17792         - Added InsertChar overload
17793         - Fixed InsertChar tag offset calculations
17794         - Added DeleteChar() method
17795         - Added Combine() method for folding lines
17796         - Fixed Delete() method, no longer allocates wasted Line object and
17797           now copies all properties when swapping nodes
17798         - Delete() method now updates document line counter
17799
17800 2004-12-15  Jackson Harper  <jackson@ximian.com>
17801
17802         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17803         * X11Keyboard.cs: Expose the currently selected modifier keys
17804         through a property.
17805
17806 2004-12-15  Peter Bartok  <pbartok@novell.com>
17807
17808         * TextControl.cs: Initial check-in. Still incomplete
17809
17810 2004-12-15  Jackson Harper  <jackson@ximian.com>
17811
17812         * TreeNode.cs:
17813         * TreeView.cs: Fix build on csc (second time today ;-))
17814
17815 2004-12-15  Jackson Harper  <jackson@ximian.com>
17816
17817         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17818         is calculated and use this for click testing.
17819         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17820
17821 2004-12-15  Jackson Harper  <jackson@ximian.com>
17822
17823         * TreeView.cs: Pass the nodes image index to the image list when
17824         drawing that image.
17825
17826 2004-12-15  Jackson Harper  <jackson@ximian.com>
17827
17828         * X11Keyboard.cs: Set messages hwnd.
17829         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17830         post_message calls.
17831
17832 2004-12-15  Jackson Harper  <jackson@ximian.com>
17833
17834         * X11Keyboard.cs: Fix to compile with csc.
17835         
17836 2004-12-15  Jackson Harper  <jackson@ximian.com>
17837
17838         * X11Structs.cs: Add key mask values
17839         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17840         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17841         down/up foo into WM_CHAR foo
17842         * KeyboardLayouts.cs: Common keyboard layouts
17843         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17844         post messages into the main queue.
17845
17846 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17847
17848         * Button.cs: implement ProcessMnemonic
17849         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17850           brushes everytime
17851         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17852         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17853
17854 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17855         
17856         * MonthCalendar.cs: Implemented click-hold for next/previous month
17857           and date selection
17858           
17859 2004-12-11  Peter Bartok  <pbartok@novell.com>
17860
17861         * X11Structs.cs:
17862           - Added XKeyboardState (moved from XplatUIX11.cs)
17863           - Added XCreateGC related enums and structures
17864           - Added GXFunction for XSetFunction
17865
17866         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17867
17868         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17869           CaretVisible() calls
17870
17871         * ToolTip.cs: Added code to prevent stealing focus from app windows
17872
17873         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17874           DestroyCaret, SetCaretPos and CaretVisible)
17875
17876         * XplatUIX11.cs:
17877           - Added implementation for caret functions
17878           - Moved hover variables into a struct, to make it a bit easier
17879             on the eyes and to debug
17880           - Removed XKeyboardState (moved to XplatUIX11.cs)
17881           - Moved Keyboard properties into the properties region
17882
17883         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17884           call to get a graphics context for our control
17885
17886         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17887
17888         * TreeView.cs: Fixed bug. No matter what color was set it would always
17889           return SystemColors.Window
17890
17891         * XplatUIWin32.cs: Implemented caret overrides
17892
17893 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17894
17895         * ListBox.cs: fire events, implement missing methods and properties,
17896         sorting.
17897
17898 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17899
17900         * MonthCalendar.cs: invalidation bug fixing
17901         * ThemeWin32Classic.cs: paint fixing
17902
17903 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17904
17905         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17906         prepare the CGContextRef there now.
17907
17908 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17909
17910         * MonthCalendar.cs:
17911           - optimisationL only invalidate areas that have changed
17912         * ThemeWin32Classic.cs:
17913           - only paint parts that intersect with clip_area
17914
17915 2004-12-09  Peter Bartok  <pbartok@novell.com>
17916
17917         * Application.cs: Undid changes from r37004 which cause problems
17918         on X11
17919
17920 2004-12-09  Ravindra  <rkumar@novell.com>
17921
17922         * ToolBar.cs: Added support for displaying ContextMenu
17923         attached to a button on ToolBar.
17924         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17925         property.
17926
17927 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17928
17929         * Label.cs: autosize works in text change and removes unnecessary
17930         invalidate
17931
17932 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17933
17934         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17935         remove warnings
17936
17937 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17938
17939         * XplatUIOSX.cs: Added mouse move/click/grab support
17940         Remove some debugging WriteLines not needed anymore.
17941         Add window resizing/positioning.
17942         Fix visibility on reparenting.
17943
17944 2004-12-08  Peter Bartok  <pbartok@novell.com>
17945
17946         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17947
17948 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17949
17950         * XplatUIOSX.cs: Initial checkin
17951         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17952
17953 2004-12-03  Ravindra <rkumar@novell.com>
17954
17955         * ListView.cs: Added some keybindings and fixed scrolling.
17956         ScrollBars listen to ValueChanged event instead of Scroll
17957         Event. This would let us take care of all changes being
17958         done in the scrollbars' values programmatically or manually.
17959         * ListView.cs (CanMultiselect): Added a check for shift key.
17960         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17961         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17962         of ListViewSubItemCollection as well.
17963
17964 2004-12-06  Peter Bartok <pbartok@novell.com>
17965
17966         * Control.cs (Parent): Added check and exception to prevent
17967         circular parenting
17968
17969 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17970
17971         * ListBox.cs: implemented clipping, selection single and multiple,
17972         bug fixing
17973
17974 2004-12-03  Ravindra <rkumar@novell.com>
17975
17976         * ListView.cs (ListView_KeyDown):
17977         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17978         when CTRL key is pressed.
17979         * ListViewItem.cs (Selected): Fixed setting the property.
17980
17981 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17982
17983         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17984
17985         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17986         MinimizeBox, ShowInTaskbar, TopMost properties.
17987
17988         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17989         will be implemented).
17990
17991 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17992
17993         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17994
17995         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17996         tests.
17997         
17998         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17999         
18000         * TreeView.cs: BackColor is Colors.Window.
18001
18002 2004-12-01  Jackson Harper  <jackson@ximian.com>
18003
18004         * TreeView.cs: When resizing the tree if the user is making it
18005         smaller we don't get expose events, so we need to handle adding
18006         the horizontal scrollbar in the size changed handler as well as
18007         the expose handler.
18008
18009 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18010
18011         * DrawItemState.cs: fixes wrong enum values
18012
18013 2004-12-01  Jackson Harper  <jackson@ximian.com>
18014
18015         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18016
18017 2004-12-01  Jackson Harper  <jackson@ximian.com>
18018
18019         * NodeLabelEditEventArgs.cs:
18020         * NodeLabelEditEventHandler.cs:
18021         * OpenTreeNodeEnumerator.cs:
18022         * TreeNode.cs:
18023         * TreeNodeCollection.cs:
18024         * TreeView.cs:
18025         * TreeViewAction.cs:
18026         * TreeViewCancelEventArgs.cs:
18027         * TreeViewCancelEventHandler.cs:
18028         * TreeViewEventArgs.cs:
18029         * TreeViewEventHandler.cs: Initial implementation.
18030
18031 2004-12-01  Ravindra <rkumar@novell.com>
18032
18033         * ListView.cs (CalculateListView): Fixed scrolling related
18034         calculations. Also, removed some debug statements from other
18035         places.
18036         * ListViewItem.cs: Changed access to 'selected' instance variable
18037         from private to internal.
18038         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18039
18040 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18041
18042         * ThemeWin32Classic.cs: remove cache of brush and pens for
18043         specific controls and use the global system, fixes scrollbutton
18044         bugs (for small sizes, disabled, etc)
18045         
18046         * ScrollBar.cs: does not show the thumb for very small controls
18047         (as MS) and allow smaller buttons that the regular size
18048
18049 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
18050
18051         * UpDownBase.cs: Add abstract methods for the interface.
18052         Add new virtual methods (need to be hooked up to TextEntry when it
18053         exists).
18054         Add override methods for most features.
18055         Computes the size, forces the height of the text entry.
18056
18057         * NumericUpDown.cs: Put here the current testing code.
18058
18059         * Set eol-style property on all files that do not have mixed line
18060         endings, to minimize the future problems.  There are still a few
18061         files with mixed endings, and someone should choose whether they
18062         want to move it or not.
18063
18064 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
18065
18066         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
18067         System.Colors
18068         
18069 2004-11-30  Ravindra <rkumar@novell.com>
18070
18071         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
18072         drawing and replaced use of SystemColors by theme colors.
18073         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
18074         * ListView.cs (ListViewItemCollection.Add): Throw exception when
18075         same ListViewItem is being added more than once.
18076
18077 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
18078
18079         * MonthCalendar.cs:
18080           - ControlStyles love to make the control not flicker
18081           
18082 2004-11-30  Peter Bartok  <pbartok@novell.com>
18083
18084         * CharacterCasing.cs: Added
18085
18086 2004-11-29  Peter Bartok  <pbartok@novell.com>
18087
18088         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18089           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
18090           I am removing these files as they conflict with already completed
18091           work. While it is fantastic to get contributions to MWF, I
18092           respectfully ask that everyone please coordinate their contributions
18093           through mono-winforms-list or #mono-winforms at this time. We're
18094           explicitly avoiding stubbing and don't want controls that don't have
18095           their basic functionality implemented in svn. Please also see
18096           http://www.mono-project.com/contributing/winforms.html
18097
18098
18099 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
18100
18101         * Application.cs (ModalRun): Don't hang after exit.
18102
18103         * Theme.cs: New TreeViewDefaultSize property.
18104
18105         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
18106         with less hardcoded SystemColors constant.
18107         Implemented TreeViewDefaultSize.
18108
18109         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
18110         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
18111
18112
18113 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
18114
18115         * MonthCalendar.cs:
18116           - Fix NextMonthDate and PrevMonthDate click moving calendar
18117
18118 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18119
18120         * MonthCalendar.cs:
18121           - Fix usage of ScrollChange Property when scrolling months
18122
18123 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18124
18125         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18126          - Fixes menu destroying
18127          - Support adding and removing items on already created menus
18128
18129 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18130
18131         * MonthCalendar.cs:
18132           - Re-worked all bolded dates handling to match win32
18133         * ThemeWin32Classic.cs:
18134           - Fixed rendering with bolded dates
18135
18136 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18137
18138         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18139         - Horizontal scroolbar
18140         - Multicolumn
18141         - Fixes
18142
18143
18144 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18145
18146         * MonthCalendar.cs:
18147           - Fix Usage of MaxSelectionCount from SelectionRange
18148           - Fixed Shift + Cursor Selection
18149           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18150           - Fixed normal cursor selection to be compat with win32
18151           - Fixed Shift + Mouse Click selection
18152
18153 2004-11-24  Peter Bartok <pbartok@novell.com>
18154
18155         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18156         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18157         * XplatUIX11.cs:
18158           - CreatedKeyBoardMsg now updates keystate with Alt key
18159           - Added workaround for timer crash to CheckTimers, Jackson will
18160             develop a proper fix and check in later
18161           - Implemented DispatchMessage
18162           - Removed calling the native window proc from GetMessage (call
18163             now moved to DispatchMessage)
18164
18165         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18166           the keydata (Fixes bug #69831)
18167
18168         * XplatUIWin32.cs:
18169           - (DispatchMessage): Switched to return IntPtr
18170           - Added DllImport for SetFocus
18171
18172 2004-11-24  Ravindra <rkumar@novell.com>
18173
18174         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18175         background drawing.
18176         * ListViewItem.cs: Fixed various properties, calculations
18177         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18178         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18179         and some internal properties. Fixed MouseDown handler and Paint
18180         method.
18181
18182 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18183
18184         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18185
18186 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18187
18188         * ContainerControl.cs: correct accidental check in of local changes
18189
18190 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18191
18192         * ThemeWin32Classic.cs:
18193                 - Fixed Drawing Last month in grid (sometimes not showing)
18194         * MonthCalendar.cs:
18195                 - Fixed title width calculation bug (makeing title small)
18196
18197 2004-11-23  Peter Bartok <pbartok@novell.com>
18198
18199         * XplatUIX11.cs:
18200           - Added generation of WM_MOUSEHOVER event
18201           - Added missing assignment of async_method atom
18202           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18203
18204 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18205
18206         * ThemeWin32Classic.cs:
18207                 - Fixed Drawing of today circle when showtodaycircle not set
18208                 - fixed drawing of first and last month in the grid (gay dates)
18209         * MonthCalendar.cs:
18210                 - Fixed Drawing of today circle
18211                 - Fixed drawing of grady dates
18212                 - Fixed HitTest for today link when ShowToday set to false
18213                 - Fixed DefaultSize to obey ShowToday
18214
18215 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18216
18217         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18218         * System.Windows.Forms/Theme.cs
18219         * MonthCalendar.cs: added for MonthCalendar
18220         * SelectionRange.cs: added for MonthCalendar
18221         * Day.cs: added for MonthCalendar: added for MonthCalendar
18222         * DateRangeEventArgs.cs: added for MonthCalendar
18223         * DateRangeEventHandler.cs: added for MonthCalendar
18224
18225 2004-11-22  Ravindra <rkumar@novell.com>
18226
18227         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18228         property.
18229
18230 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18231
18232         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18233         event handler.
18234         
18235         * NumericUpDown.cs: Added new implementation.
18236         * UpDownBase.cs: Added new implementation.
18237
18238         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18239         implementations.
18240         
18241         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18242         implementations.
18243
18244         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18245         methods.
18246
18247 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18248
18249         * Timer.cs  (Dispose): Should call the base dispose when
18250         overriding.
18251
18252 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18253
18254         * ScrollBar.cs: updates thumb position when max, min or increment
18255         is changed
18256
18257 2004-11-21  Ravindra <rkumar@novell.com>
18258
18259         * ListView.cs: Implemented item selection, activation and
18260         column header style. Fixed properties to do a redraw, if
18261         required. Added support for MouseHover, DoubleClick, KeyDown
18262         and KeyUp event handling and some minor fixes.
18263         * ListViewItem.cs: Fixed constructor.
18264         * ThemeWin32Classic.cs: Improved drawing for ListView.
18265
18266 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18267
18268         * ThemeWin32Classic.cs: initial listbox drawing code
18269         * DrawMode.cs: new enumerator
18270         * ListControl.cs: stubbed class
18271         * ListBox.cs: initial implementation
18272         * Theme.cs: new methods definitions
18273         * SelectionMode.cs: new enumerator
18274
18275 2004-11-17  Peter Bartok  <pbartok@novell.com>
18276
18277         * XplatUIWin32.cs: Added double-click events to the class style
18278         * Control.cs (WndProc):
18279           - Added handling of click-count to MouseDown/ MouseUp events.
18280           - Added handling of middle and right mouse buttons
18281           - Removed old debug code
18282
18283 2004-11-17  Jackson Harper  <jackson@ximian.com>
18284
18285         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18286
18287 2004-11-17  Ravindra <rkumar@novell.com>
18288
18289         * ListView.cs: Added event handling for MouseMove/Up/Down.
18290         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18291         * ThemeWin32Classic.cs: We need to clear the graphics context and
18292         draw column header in a proper state.
18293
18294
18295 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18296
18297         *  Menu.cs: fixes signature
18298
18299 2004-11-16  Peter Bartok  <pbartok@novell.com>
18300
18301         * XplatUIX11.cs (GetMessage): Implemented generation of
18302           double click mouse messages
18303
18304 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18305
18306         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18307         not by menu
18308
18309 2004-11-11  Peter Bartok  <pbartok@novell.com>
18310
18311         * HandleData.cs: Added Visible property
18312         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18313           HandleData
18314         * XplatUIX11.cs: Removed old debug leftovers
18315         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18316         * Control.cs (WndProc): Removed old debug leftovers,
18317           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18318           needed WM_SIZE handling
18319
18320 2004-11-11  Jackson Harper  <jackson@ximian.com>
18321
18322         * OwnerDrawPropertyBag.cs:
18323         * TreeViewImageIndexConverter.cs: Initial implementation
18324
18325 2004-11-10  Jackson Harper  <jackson@ximian.com>
18326
18327         * ThemeWin32Classic.cs:
18328         * TabControl.cs: instead of moving tabs by the slider pos just
18329         start drawing at the tab that is offset by the slider. This way
18330         scrolling always moves by exactly one tab.
18331
18332 2004-11-10  Jackson Harper  <jackson@ximian.com>
18333
18334         * TabControl.cs: You can only scroll left when the slider has
18335         already ben moved right.
18336         
18337 2004-11-10  Jackson Harper  <jackson@ximian.com>
18338
18339         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18340         the clip area.
18341         
18342 2004-11-10  Jackson Harper  <jackson@ximian.com>
18343
18344         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18345         clip area.
18346         
18347 2004-11-09  Jackson Harper  <jackson@ximian.com>
18348
18349         * TabControl.cs (CalcXPos): New helper method so we can determine
18350         the proper place to start drawing vertical tabs.
18351         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18352         
18353 2004-11-09  Jackson Harper  <jackson@ximian.com>
18354
18355         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18356         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18357         and Bottom, left and right are illegal values for this and
18358         multiline is enabled when the alignment is set to left or right.
18359         (DrawTab): Each alignment block should draw the text itself now
18360         because Left requires special love. Also add rendering for Left
18361         aligned tabs.
18362         
18363 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18364
18365         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18366         does not destroy the windows, removes debugging messages
18367
18368 2004-11-09  jba  <jba-mono@optusnet.com.au>
18369
18370         * ThemeWin32Classic.cs
18371         (DrawButtonBase): Fix verticle text rect clipping in windows
18372         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18373         rendering and incorrect text rect clipping
18374         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18375         rendering and incorrect text rect clipping
18376         
18377 2004-11-08  Jackson Harper  <jackson@ximian.com>
18378
18379         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18380         bottom when they are bottom aligned so the bottoms of the tabs get
18381         displayed.
18382         * TabControl.cs (DropRow): Move rows up instead of down when the
18383         tab control is bottom aligned.
18384
18385 2004-11-08 13:59  pbartok
18386
18387         * XplatUIX11.cs:
18388           - Added handling for various window styles
18389           - Added handling for popup windows
18390           - Added SetTopmost handling
18391
18392 2004-11-08 13:55  pbartok
18393
18394         * XplatUIWin32.cs:
18395           - Added argument to SetTopmost method
18396           - Fixed broken ClientToScreen function
18397
18398 2004-11-08 13:53  pbartok
18399
18400         * XplatUIStructs.cs:
18401           - Added missing WS_EX styles
18402
18403 2004-11-08 13:53  pbartok
18404
18405         * XplatUI.cs, XplatUIDriver.cs:
18406           - Added argument to SetTopmost
18407
18408 2004-11-08 13:52  pbartok
18409
18410         * X11Structs.cs:
18411           - Added XSetWindowAttributes structure
18412           - Improved XWindowAttributes structure
18413           - Added SetWindowValuemask enum
18414           - Added window creation arguments enum
18415           - Added gravity enum
18416           - Added Motif hints structure
18417           - Added various Motif flags and enums
18418           - Added PropertyMode enum for property functions
18419
18420 2004-11-08 13:50  pbartok
18421
18422         * Form.cs:
18423           - Fixed arguments for updated SetTopmost method
18424
18425 2004-11-08 13:49  pbartok
18426
18427         * ToolTip.cs:
18428           - Fixed arguments for updated SetTopmost function
18429           - Fixed usage of PointToClient
18430
18431 2004-11-08 13:44  pbartok
18432
18433         * MenuAPI.cs:
18434           - Added Clipping of children and siblings
18435
18436 2004-11-08 13:41  pbartok
18437
18438         * MainMenu.cs:
18439           - Removed SetMenuBarWindow call. We do this in Form.cs
18440
18441 2004-11-08 13:40  jackson
18442
18443         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18444           scrolling jimmi in the correct location with bottom aligned tabs
18445
18446 2004-11-08 13:36  pbartok
18447
18448         * ContainerControl.cs:
18449           - Implemented BindingContext
18450           - Implemented ParentForm
18451
18452 2004-11-08 12:46  jackson
18453
18454         * TabControl.cs: Put bottom rendered tabs in the right location
18455
18456 2004-11-08 07:15  jordi
18457
18458         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18459           removes dead code
18460
18461 2004-11-05 17:30  jackson
18462
18463         * TabControl.cs: When selected tabs are expanded make sure they
18464           don't go beyond the edges of the tab control
18465
18466 2004-11-05 14:57  jackson
18467
18468         * TabControl.cs: Reset show_slider so if the control is resized to
18469           a size where it is no longer needed it's not displayed anymore
18470
18471 2004-11-05 13:16  jackson
18472
18473         * TabControl.cs: Make tab pages non visible when added to the
18474           control
18475
18476 2004-11-05 12:42  jackson
18477
18478         * TabControl.cs: Implement SizeMode.FillToRight
18479
18480 2004-11-05 12:16  jackson
18481
18482         * Control.cs: Do not call CreateHandle if the handle is already
18483           created
18484
18485 2004-11-05 11:46  jackson
18486
18487         * TabControl.cs: Remove superflous call to CalcTabRows
18488
18489 2004-11-05 09:07  jackson
18490
18491         * XplatUIX11.cs: Update for Mono.Posix changes
18492
18493 2004-11-05 07:00  ravindra
18494
18495         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18496           scrolling.
18497
18498 2004-11-04 22:47  jba
18499
18500         * ThemeWin32Classic.cs:
18501           - Fix Button rendering for FlatStyle = Flat or Popup
18502           - Fix RadioButton and CheckBox rendering when Appearance = Button
18503             (normal and flatstyle).
18504           - Correct outer rectangle color when drawing focus rectangle
18505           - Adjust button bounds to be 1 px smaller when focused
18506           - Make button not draw sunken 3d border when pushed (windows compat)
18507           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18508           - Offset the text in RadioButton and Checkbox when being rendered as
18509           a button.
18510           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18511           radiobuttons
18512           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18513           - Fixed disabled text rendering for normally rendered radiobuttons
18514
18515 2004-11-04 10:26  jackson
18516
18517         * TabControl.cs: Recalculate tab rows when resizing
18518
18519 2004-11-04 07:47  jordi
18520
18521         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18522           collection completion, drawing issues, missing features
18523
18524 2004-11-04 05:03  ravindra
18525
18526         * ScrollBar.cs:
18527                 - We need to recalculate the Thumb area when
18528                 LargeChange/maximum/minimum values are changed.
18529           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18530                 than minimum. This is required to handle the case if large_change is
18531                 more than max, and use LargeChange property instead of large_change
18532                 variable.
18533           - We return max+1 when large_change is more than max, like MS does.
18534
18535 2004-11-04 04:29  ravindra
18536
18537         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18538                 - Changed default value signatures (prefixed all with ListView).
18539                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18540                 ListView.
18541           - Fixed calculations for ListViewItem and implemented Clone()
18542           method.
18543
18544 2004-11-04 04:26  ravindra
18545
18546         * Theme.cs, ThemeWin32Classic.cs:
18547                 - Changed default ListView values signatures (prefixed all with
18548                 ListView).
18549           - Fixed default size values for VScrollBar and HScrollBar.
18550                 - Fixed DrawListViewItem method.
18551
18552 2004-11-04 04:05  ravindra
18553
18554         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18555
18556 2004-11-04 04:04  ravindra
18557
18558         * ImageList.cs: Implemented the missing overload for Draw method.
18559
18560 2004-11-03 19:29  jackson
18561
18562         * TabControl.cs: Handle dropping rows on selection properly
18563
18564 2004-11-03 11:59  jackson
18565
18566         * TabControl.cs: remove debug code
18567
18568 2004-11-03 11:52  jackson
18569
18570         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18571           the scrolly widgerywoo
18572
18573 2004-11-02 13:52  jackson
18574
18575         * TabControl.cs: Resize the tab pages and tabs when the tab control
18576           is resized
18577
18578 2004-11-02 13:40  jackson
18579
18580         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18581           selected tab to the bottom
18582
18583 2004-11-02 13:39  jackson
18584
18585         * TabPage.cs: Store the tab pages row
18586
18587 2004-11-02 12:33  jordi
18588
18589         * MenuItem.cs: fixes handle creation
18590
18591 2004-11-02 11:42  jackson
18592
18593         * TabControl.cs: signature fix
18594
18595 2004-11-02 08:56  jackson
18596
18597         * TabControl.cs: Calculate whether the tab is on an edge properly.
18598           Remove top secret debugging code
18599
18600 2004-11-01 19:57  jackson
18601
18602         * TabControl.cs: Add click handling, and proper sizing
18603
18604 2004-11-01 19:47  jackson
18605
18606         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18607           tab controls
18608
18609 2004-11-01 19:39  jackson
18610
18611         * TabPage.cs: add internal property to store the bounds of a tab
18612           page
18613
18614 2004-10-30 04:23  ravindra
18615
18616         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18617           values.
18618
18619 2004-10-30 04:21  ravindra
18620
18621         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18622           fixed calculations.
18623
18624 2004-10-30 03:06  pbartok
18625
18626         * XplatUIX11.cs:
18627           - Removed extension of DllImported libs
18628
18629 2004-10-29 09:55  jordi
18630
18631         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18632           navigation, itemcollection completion, menu fixes
18633
18634 2004-10-27 22:58  pbartok
18635
18636         * XplatUIX11.cs:
18637           - Now throws a nice error message when no X display could be opened
18638
18639 2004-10-26 13:51  jordi
18640
18641         * ListView.cs: removes warning
18642
18643 2004-10-26 03:55  ravindra
18644
18645         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18646           ThemeWin32Classic.cs: Some formatting for my last checkins.
18647
18648 2004-10-26 03:36  ravindra
18649
18650         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18651           control and default values.
18652
18653 2004-10-26 03:35  ravindra
18654
18655         * Theme.cs: Added some default values for ListView control.
18656
18657 2004-10-26 03:33  ravindra
18658
18659         * ToolBar.cs: ToolBar should use the user specified button size, if
18660           there is any. Added a size_specified flag for the same.
18661
18662 2004-10-26 03:33  ravindra
18663
18664         * ColumnHeader.cs: Added some internal members and calculations for
18665           ColumnHeader.
18666
18667 2004-10-26 03:32  ravindra
18668
18669         * ListViewItem.cs: Calculations for ListViewItem.
18670
18671 2004-10-26 03:31  ravindra
18672
18673         * ListView.cs: Added some internal members and calculations for
18674           ListView.
18675
18676 2004-10-22 13:31  jordi
18677
18678         * MenuAPI.cs: speedup menus drawing
18679
18680 2004-10-22 13:16  jackson
18681
18682         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18683           expose event
18684
18685 2004-10-22 11:49  jackson
18686
18687         * Control.cs: oops
18688
18689 2004-10-22 11:41  jackson
18690
18691         * Control.cs: Check to see if the window should have its background
18692           repainted by X when drawing.
18693
18694 2004-10-22 11:31  jackson
18695
18696         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18697           clear is true, this way we do not get flicker from X repainting the
18698           background
18699
18700 2004-10-22 11:28  jackson
18701
18702         * XEventQueue.cs: Queue properly
18703
18704 2004-10-21 09:38  jackson
18705
18706         * XEventQueue.cs: Fix access modifier
18707
18708 2004-10-21 09:36  jackson
18709
18710         * XEventQueue.cs: Don't loose messages
18711
18712 2004-10-21 09:22  jackson
18713
18714         * XEventQueue.cs: Don't loose messages
18715
18716 2004-10-20 04:15  jordi
18717
18718         * BootMode.cs: enum need it by SystemInfo
18719
18720 2004-10-19 21:58  pbartok
18721
18722         * XplatUIWin32.cs:
18723           - Small sanity check
18724
18725 2004-10-19 21:56  pbartok
18726
18727         * Form.cs:
18728           - Added private FormParentWindow class which acts as the container
18729             for our form and as the non-client area where menus are drawn
18730           - Added/Moved required tie-ins to Jordi's menus
18731           - Fixed/Implemented the FormStartPosition functionality
18732
18733 2004-10-19 21:52  pbartok
18734
18735         * Control.cs:
18736           - Removed unneeded locals
18737           - Added code to all size and location properties to understand and
18738             deal with the parent container of Form
18739
18740 2004-10-19 21:33  pbartok
18741
18742         * Application.cs:
18743           - Fixed to deal with new Form subclasses for menus
18744
18745 2004-10-19 17:48  jackson
18746
18747         * XEventQueue.cs: commit correct version of file
18748
18749 2004-10-19 16:50  jackson
18750
18751         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18752
18753 2004-10-19 16:15  jordi
18754
18755         * MenuAPI.cs: MenuBarCalcSize returns the height
18756
18757 2004-10-19 08:31  pbartok
18758
18759         * Control.cs:
18760           - Added missing call to PreProcessMessage before calling OnXXXKey
18761           methods
18762
18763 2004-10-19 00:04  ravindra
18764
18765         * ToolTip.cs: Fixed constructor.
18766
18767 2004-10-18 09:31  jordi
18768
18769         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18770
18771 2004-10-18 09:26  jordi
18772
18773         * MenuItem.cs: fixes MenuItem class signature
18774
18775 2004-10-18 08:56  jordi
18776
18777         * MenuAPI.cs: prevents windows from showing in the taskbar
18778
18779 2004-10-18 00:28  ravindra
18780
18781         * ToolTip.cs: Suppressed a warning message.
18782
18783 2004-10-18 00:27  ravindra
18784
18785         * Control.cs: Default value of visible property must be true.
18786
18787 2004-10-17 23:19  pbartok
18788
18789         * ToolTip.cs:
18790           - Complete implementation
18791
18792 2004-10-17 23:19  pbartok
18793
18794         * XplatUIX11.cs:
18795           - Added EnableWindow method
18796           - Added SetModal stub
18797           - Added generation of WM_ACTIVATE message (still needs testing)
18798           - Added SetTopMost stub
18799           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18800
18801 2004-10-17 23:17  pbartok
18802
18803         * XplatUIWin32.cs:
18804           - Removed VirtualKeys to XplatUIStructs
18805           - Implemented SetTopMost method
18806           - Implemented EnableWindow method
18807           - Bugfix in ScreenToClient()
18808           - Bugfixes in ClientToScreen()
18809
18810 2004-10-17 22:51  pbartok
18811
18812         * XplatUIStructs.cs:
18813           - Added WS_EX styles to WindowStyles enumeration
18814
18815 2004-10-17 22:50  pbartok
18816
18817         * XplatUI.cs, XplatUIDriver.cs:
18818           - Added method for enabling/disabling windows
18819           - Added method for setting window modality
18820           - Added method for setting topmost window
18821
18822 2004-10-17 22:49  pbartok
18823
18824         * ThemeWin32Classic.cs:
18825           - Added ToolTip drawing code
18826
18827 2004-10-17 22:49  pbartok
18828
18829         * Theme.cs:
18830           - Added ToolTip abstracts
18831
18832 2004-10-17 22:47  pbartok
18833
18834         * Form.cs:
18835           - Fixed Form.ControlCollection to handle owner relations
18836           - Added Owner/OwnedForms handling
18837           - Implemented Z-Ordering for owned forms
18838           - Removed unneeded private overload of ShowDialog
18839           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18840             so I hope)
18841           - Fixed Close(), had wrong default
18842           - Added firing of OnLoad event
18843           - Added some commented out debug code for Ownership handling
18844
18845 2004-10-17 22:16  pbartok
18846
18847         * Control.cs:
18848           - Fixed/implemented flat list of controls
18849
18850 2004-10-17 22:14  pbartok
18851
18852         * Application.cs:
18853           - Added code to simulate modal dialogs on Win32
18854
18855 2004-10-17 16:11  jordi
18856
18857         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18858           mouse event
18859
18860 2004-10-17 13:39  jordi
18861
18862         * MenuAPI.cs: menu drawing fixes
18863
18864 2004-10-15 09:10  ravindra
18865
18866         * StructFormat.cs: General Enum.
18867
18868 2004-10-15 09:09  ravindra
18869
18870         * SizeGripStyle.cs: Enum for Form.
18871
18872 2004-10-15 09:08  ravindra
18873
18874         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18875           in Theme for ListView.
18876
18877 2004-10-15 09:06  ravindra
18878
18879         * ColumnHeader.cs: Flushing some formatting changes.
18880
18881 2004-10-15 09:05  ravindra
18882
18883         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18884           style.
18885
18886 2004-10-15 09:03  ravindra
18887
18888         * ListView.cs: Implemented Paint method and fixed coding style.
18889
18890 2004-10-15 07:34  jordi
18891
18892         * MenuAPI.cs: fix for X11
18893
18894 2004-10-15 07:32  ravindra
18895
18896         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18897                 - Renamed Paint() method to Draw() for clarity. Also, moved
18898                 DrawImage() to OnPaint().
18899
18900 2004-10-15 07:25  ravindra
18901
18902         * CheckBox.cs, RadioButton.cs:
18903                 - Removed Redraw (), we get it from ButtonBase.
18904                 - Implemented Paint (), to do class specific painting.
18905
18906 2004-10-15 07:16  ravindra
18907
18908         * ButtonBase.cs:
18909                 - Redraw () is not virtual now.
18910                 - Added an internal virtual method Paint (), so that
18911                 derived classes can do their painting on their own.
18912                 - Modified OnPaint () to call Paint ().
18913
18914 2004-10-15 06:43  jordi
18915
18916         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18917           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18918
18919 2004-10-15 00:30  ravindra
18920
18921         * MessageBox.cs:
18922                 - MessageBox on windows does not have min/max buttons.
18923                 This change in CreateParams fixes this on Windows. We
18924                 still need to implement this windowstyle behavior in
18925                 our X11 driver.
18926
18927 2004-10-14 05:14  ravindra
18928
18929         * ToolBar.cs:
18930                 - Changed Redraw () to do a Refresh () always.
18931                 - Fixed the MouseMove event handling when mouse is pressed,
18932                 ie drag event handling.
18933                 - Replaced the usage of ToolBarButton.Pressed property to
18934                 ToolBarButton.pressed internal variable.
18935
18936 2004-10-14 05:10  ravindra
18937
18938         * ToolBarButton.cs:
18939                 - Added an internal member 'inside' to handle mouse move
18940                 with mouse pressed ie mouse drag event.
18941                 - Changed 'Pressed' property to return true only when
18942                 'inside' and 'pressed' are both true.
18943                 - Some coding style love.
18944
18945 2004-10-14 00:17  ravindra
18946
18947         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18948           public method.
18949
18950 2004-10-14 00:15  ravindra
18951
18952         * ButtonBase.cs: Redraw () related improvements.
18953
18954 2004-10-14 00:14  ravindra
18955
18956         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18957           removed unnecessary calls to Button.Show () method.
18958
18959 2004-10-13 17:50  pbartok
18960
18961         * XplatUIX11.cs:
18962           - Formatting fix
18963           - Removed destroying of window until we solve the problem of X
18964             destroying the window before us on shutdown
18965
18966 2004-10-13 16:32  pbartok
18967
18968         * ButtonBase.cs:
18969           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18970
18971 2004-10-13 14:18  pbartok
18972
18973         * XplatUIX11.cs:
18974           - Added code to destroy the X window
18975
18976 2004-10-13 14:18  pbartok
18977
18978         * XplatUIWin32.cs:
18979           - Added code to destroy a window
18980
18981 2004-10-13 14:12  pbartok
18982
18983         * ButtonBase.cs:
18984           - Added the Redraw on Resize that got dropped in the last rev
18985
18986 2004-10-13 09:06  pbartok
18987
18988         * ThemeWin32Classic.cs:
18989           - Path from John BouAntoun:
18990             * Fix check rendering (centre correctly for normal style, offset
18991               correctly for FlatStyle).
18992             * Fix border color usage (use backcolor) for FlatStyle.Popup
18993             * Use checkbox.Capture instead of checkbox.is_pressed when
18994               rendering flatstyle states.
18995
18996 2004-10-12 21:48  pbartok
18997
18998         * ThemeWin32Classic.cs:
18999           - Removed all occurences of SystemColors and replaced them with the
19000             matching theme color
19001
19002 2004-10-12 21:41  pbartok
19003
19004         * ThemeWin32Classic.cs:
19005           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19006             him using the function for flatstyle drawing
19007           - Changed functions to use the new version of CPDrawBorder3D
19008
19009 2004-10-12 21:15  pbartok
19010
19011         * ControlPaint.cs:
19012           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19013             match MS documentation. They need to return defined colors if the
19014             passed color matches the configured control color. Thanks to John
19015             BouAntoun for pointing this out.
19016
19017 2004-10-12 20:57  pbartok
19018
19019         * Control.cs:
19020           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19021             color is changed
19022
19023 2004-10-12 20:46  pbartok
19024
19025         * CheckBox.cs:
19026           - Fix from John BouAntoun: Now properly sets the Appearance property
19027
19028 2004-10-12 20:45  pbartok
19029
19030         * ThemeWin32Classic.cs:
19031           - Fixes from John BouAntoun: now handles forecolors and backcolors
19032             for flatstyle rendered controls much better; It also fixes normal
19033             checkbox rendering when pushed or disabled.
19034
19035 2004-10-08 02:50  jordi
19036
19037         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19038           work
19039
19040 2004-10-07 08:56  jordi
19041
19042         * ThemeWin32Classic.cs: Removes deletion of cached brushes
19043
19044 2004-10-06 03:59  jordi
19045
19046         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
19047           XplatUIWin32.cs: removes warnings from compilation
19048
19049 2004-10-05 12:23  jackson
19050
19051         * RadioButton.cs: Fix ctor
19052
19053 2004-10-05 11:10  pbartok
19054
19055         * MessageBox.cs:
19056           - Partial implementation by Benjamin Dasnois
19057
19058 2004-10-05 10:15  jackson
19059
19060         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
19061           by John BouAntoun
19062
19063 2004-10-05 03:07  ravindra
19064
19065         * ToolBar.cs:
19066                 - Removed a private method, Draw ().
19067                 - Fixed the ButtonDropDown event handling.
19068                 - Fixed MouseMove event handling.
19069
19070 2004-10-05 03:04  ravindra
19071
19072         * ThemeWin32Classic.cs:
19073                 - Added DrawListView method and ListViewDefaultSize property.
19074                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
19075                 - Changed DOS style CRLF to Unix format (dos2unix).
19076
19077 2004-10-05 03:03  ravindra
19078
19079         * Theme.cs:
19080                 - Added DrawListView method and ListViewDefaultSize property.
19081
19082 2004-10-05 02:42  ravindra
19083
19084         * ToolBarButton.cs: Added an internal member dd_pressed to handle
19085           clicks on DropDown arrow.
19086
19087 2004-10-04 22:56  jackson
19088
19089         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
19090           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
19091           Control handle the buffers, derived classes should not have to
19092           CreateBuffers themselves.
19093
19094 2004-10-04 21:20  jackson
19095
19096         * StatusBar.cs: The control handles resizing the buffers now.
19097
19098 2004-10-04 21:18  jackson
19099
19100         * Control.cs: When resizing the buffers should be invalidated. This
19101           should be handled in Control not in derived classes.
19102
19103 2004-10-04 14:45  jackson
19104
19105         * TabPage.cs: oops
19106
19107 2004-10-04 02:14  pbartok
19108
19109         * LeftRightAlignment.cs:
19110           - Initial check-in
19111
19112 2004-10-04 01:09  jordi
19113
19114         * ThemeWin32Classic.cs: fixes right button position causing right
19115           button not showing on horizontal scrollbars
19116
19117 2004-10-02 13:12  pbartok
19118
19119         * XplatUIX11.cs:
19120           - Simplified the Invalidate method by using an X call instead of
19121             generating the expose ourselves
19122           - Added an expose when the window background is changed
19123           - Implemented ClientToScreen method
19124
19125 2004-10-02 13:08  pbartok
19126
19127         * XplatUIWin32.cs:
19128           - Added Win32EnableWindow method (test for implementing modal
19129           dialogs)
19130           - Added ClientToScreen method and imports
19131
19132 2004-10-02 13:07  pbartok
19133
19134         * XplatUI.cs, XplatUIDriver.cs:
19135           - Added ClientToScreen coordinate translation method
19136
19137 2004-10-02 13:06  pbartok
19138
19139         * KeyPressEventArgs.cs:
19140           - Fixed access level for constructor
19141
19142 2004-10-02 13:06  pbartok
19143
19144         * NativeWindow.cs:
19145           - Changed access level for the window_collection hash table
19146
19147 2004-10-02 13:05  pbartok
19148
19149         * Form.cs:
19150           - Added KeyPreview property
19151           - Added Menu property (still incomplete, pending Jordi's menu work)
19152           - Implemented ProcessCmdKey
19153           - Implemented ProcessDialogKey
19154           - Implemented ProcessKeyPreview
19155
19156 2004-10-02 13:02  pbartok
19157
19158         * Control.cs:
19159           - Added private method to get the Control object from the window
19160           handle
19161           - Implemented ContextMenu property
19162           - Implemented PointToScreen
19163           - Implemented PreProcessMessage
19164           - Implemented IsInputChar
19165           - Implemented IsInputKey
19166           - Implemented ProcessCmdKey
19167           - Completed ProcessKeyEventArgs
19168           - Fixed message loop to call the proper chain of functions on key
19169           events
19170           - Implemented ProcessDialogChar
19171           - Implemented ProcessDialogKey
19172           - Implemented ProcessKeyMessage
19173           - Implemented ProcessKeyPreview
19174           - Added RaiseDragEvent stub (MS internal method)
19175           - Added RaiseKeyEvent stub (MS internal method)
19176           - Added RaiseMouseEvent stub (MS Internal method)
19177           - Added RaisePaintEvent stub (MS Internal method)
19178           - Added ResetMouseEventArgs stub (MS Internal method)
19179           - Implemented RtlTranslateAlignment
19180           - Implemented RtlTranslateContent
19181           - Implemented RtlTranslateHorizontal
19182           - Implemented RtlTranslateLeftRight
19183           - Added generation of KeyPress event
19184
19185 2004-10-02 05:57  ravindra
19186
19187         * ListViewItem.cs: Added attributes.
19188
19189 2004-10-02 05:32  ravindra
19190
19191         * ListView.cs: Added attributes.
19192
19193 2004-10-01 11:53  jackson
19194
19195         * Form.cs: Implement the Close method so work on MessageBox can
19196           continue.
19197
19198 2004-09-30 14:06  pbartok
19199
19200         * XplatUIX11.cs:
19201           - Bug fixes
19202
19203 2004-09-30 11:34  jackson
19204
19205         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19206
19207 2004-09-30 07:26  ravindra
19208
19209         * ListViewItemConverter.cs: Converter for ListViewItem.
19210
19211 2004-09-30 07:26  ravindra
19212
19213         * SortOrder.cs: Enum for ListView control.
19214
19215 2004-09-30 07:25  ravindra
19216
19217         * ColumnHeader.cs: Supporting class for ListView control.
19218
19219 2004-09-30 07:24  ravindra
19220
19221         * ListView.cs, ListViewItem.cs: Initial implementation.
19222
19223 2004-09-30 07:20  ravindra
19224
19225         * ItemActivation.cs: Enum for ListView Control.
19226
19227 2004-09-29 20:29  pbartok
19228
19229         * XplatUIX11.cs:
19230           - Added lookup of pixel value for background color; tries to get a
19231             color 'close' to the requested color, it avoids having to create a
19232             colormap.  Depending on the display this could mean the used color
19233             is slightly off the desired color. Might have to change it to a more
19234             resource intensive colormap approach, but it will work as a
19235           workaround to avoid red screens.
19236
19237 2004-09-29 14:27  jackson
19238
19239         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19240
19241 2004-09-28 12:44  pbartok
19242
19243         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19244           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19245           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19246           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19247           TrackBar.cs, VScrollBar.cs:
19248           - Streamlined Theme interfaces:
19249             * Each DrawXXX method for a control now is passed the object for
19250               the control to be drawn in order to allow accessing any state the
19251               theme might require
19252
19253             * ControlPaint methods for the theme now have a CP prefix to avoid
19254               name clashes with the Draw methods for controls
19255
19256             * Every control now retrieves it's DefaultSize from the current
19257             theme
19258
19259 2004-09-28 12:17  jackson
19260
19261         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19262           drawing
19263
19264 2004-09-24 14:57  jackson
19265
19266         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19267           Gives us a nice little performance boost.
19268
19269 2004-09-24 12:02  jackson
19270
19271         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19272           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19273           Control and supporting classes. Initial checkin
19274
19275 2004-09-23 13:08  jackson
19276
19277         * Form.cs: Temp build fixage
19278
19279 2004-09-23 01:39  ravindra
19280
19281         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19282           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19283           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19284           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19285           EventHandlers needed by ListView Control.
19286
19287 2004-09-22 14:12  pbartok
19288
19289         * ScrollableControl.cs:
19290           - Implemented DockPadding property
19291           - Implemented AutoScroll property
19292           - Implemented AutoScrollMargin property
19293           - Implemented AutoScrollMinSize property
19294           - Implemented AutoScrollPosition property
19295           - Implemented DisplayRectangle property (still incomplete)
19296           - Implemented CreateParams property
19297           - Implemented HScroll property
19298           - Implemented VScroll property
19299           - Implemented OnVisibleChanged property
19300
19301 2004-09-22 14:09  pbartok
19302
19303         * Form.cs:
19304           - Added Form.ControllCollection class
19305           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19306             RemoveOwnedForm (still incomplete, missing on-top and common
19307             minimize/maximize behaviour)
19308           - Added StartPosition property (still incomplete, does not use when
19309             creating the form)
19310           - Added ShowDialog() methods (still incomplete, missing forcing the
19311             dialog modal)
19312
19313 2004-09-22 14:05  pbartok
19314
19315         * Application.cs:
19316           - Added message loop for modal dialogs
19317
19318 2004-09-22 14:02  pbartok
19319
19320         * GroupBox.cs:
19321           - Fixed wrong types for events
19322
19323 2004-09-22 14:00  pbartok
19324
19325         * Shortcut.cs, FormWindowState.cs:
19326           - Fixed wrong values
19327
19328 2004-09-22 12:01  jackson
19329
19330         * Control.cs: Text is never null
19331
19332 2004-09-20 22:14  pbartok
19333
19334         * XplatUIWin32.cs:
19335           - Fixed accessibility level for Idle handler
19336
19337 2004-09-20 18:54  jackson
19338
19339         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19340           XplatUIX11.cs: New message loop that uses poll so we don't get a
19341           busy loop
19342
19343 2004-09-17 10:43  pbartok
19344
19345         * ScrollBar.cs:
19346           - Fixed behaviour of arrow buttons. Now properly behaves like
19347             Buttons (and like Microsoft's scrollbar arrow buttons)
19348
19349 2004-09-17 10:14  pbartok
19350
19351         * ScrollBar.cs:
19352           - Added missing release of keyboard/mouse capture
19353
19354 2004-09-17 06:18  jordi
19355
19356         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19357           Theme.cs: Very early menu support
19358
19359 2004-09-16 17:45  pbartok
19360
19361         * XplatUIWin32.cs:
19362           - Fixed sending a window to the front
19363           - Added overload for SetWindowPos to avoid casting
19364
19365 2004-09-16 17:44  pbartok
19366
19367         * Control.cs:
19368           - Added SendToBack and BringToFront methods
19369
19370 2004-09-16 07:00  ravindra
19371
19372         * Copyright: Added Novell URL.
19373
19374 2004-09-16 07:00  ravindra
19375
19376         * ToolBar.cs: Invalidate should be done before redrawing.
19377
19378 2004-09-15 21:19  ravindra
19379
19380         * ColumnHeaderStyle.cs: Enum for ListView Control.
19381
19382 2004-09-15 21:18  ravindra
19383
19384         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19385           ListView Control.
19386
19387 2004-09-13 18:26  jackson
19388
19389         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19390           properly
19391
19392 2004-09-13 18:13  jackson
19393
19394         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19395           a second thread and post messages into the main threads message
19396           queue. This makes timing much more consistent. Both win2K and XP
19397           have a minimum timer value of 15 milliseconds, so we now do this
19398           too.
19399
19400 2004-09-13 15:18  pbartok
19401
19402         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19403           XplatUIX11.cs:
19404           - Added Z-Ordering methods
19405
19406 2004-09-13 10:56  pbartok
19407
19408         * Form.cs:
19409           - Fixed #region names
19410           - Moved properties and methods into their proper #regions
19411
19412 2004-09-13 10:51  pbartok
19413
19414         * Form.cs:
19415           - Added Accept and CancelButton properties
19416           - Added ProcessDialogKey() method
19417
19418 2004-09-13 08:18  pbartok
19419
19420         * IWindowTarget.cs:
19421           - Initial check-in
19422
19423 2004-09-10 21:50  pbartok
19424
19425         * Control.cs:
19426           - Added DoDragDrop() [incomplete]
19427           - Properly implemented 'Visible' handling
19428           - Added SetVisibleCore()
19429           - Implemented FindChildAtPoint()
19430           - Implemented GetContainerControl()
19431           - Implemented Hide()
19432
19433 2004-09-10 19:28  pbartok
19434
19435         * Control.cs:
19436           - Moved methods into their appropriate #regions
19437           - Reordered methods within regions alphabetically
19438
19439 2004-09-10 18:57  pbartok
19440
19441         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19442           - Added method to retrieve text from window
19443
19444 2004-09-10 18:56  pbartok
19445
19446         * Control.cs:
19447           - Moved some internal functions into the internal region
19448           - Implemented FontHeight
19449           - Implemented RenderRightToLeft
19450           - Implemented ResizeRedraw
19451           - Implemented ShowFocusCues
19452           - Implemented ShowKeyboardCues
19453           - Implemented FromChildHandle
19454           - Implemented FromHandle
19455           - Implemented IsMnemonic
19456           - Implemented ReflectMessage
19457           - All public and protected Static Methods are now complete
19458
19459 2004-09-10 16:54  pbartok
19460
19461         * Control.cs:
19462           - Implemented remaining missing public instance properties
19463           - Alphabetized some out of order properties
19464
19465 2004-09-10 05:51  ravindra
19466
19467         * PictureBox.cs: Added a check for null image.
19468
19469 2004-09-10 00:59  jordi
19470
19471         * GroupBox.cs: remove cvs tag
19472
19473 2004-09-09 05:25  ravindra
19474
19475         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19476
19477 2004-09-09 05:23  ravindra
19478
19479         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19480           parent redraw.
19481
19482 2004-09-09 02:28  pbartok
19483
19484         * ThemeWin32Classic.cs:
19485           - Improve disabled string look
19486
19487 2004-09-09 01:15  jordi
19488
19489         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19490           args and handler
19491
19492 2004-09-08 23:56  ravindra
19493
19494         * ItemBoundsPortion.cs: It's enum, not a class!
19495
19496 2004-09-08 23:47  ravindra
19497
19498         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19499           Enums for Form.
19500
19501 2004-09-08 21:13  ravindra
19502
19503         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19504           ListView control.
19505
19506 2004-09-08 21:03  ravindra
19507
19508         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19509           avoid crash.
19510
19511 2004-09-08 21:01  ravindra
19512
19513         * ScrollableControl.cs: Removed unreachable code.
19514
19515 2004-09-08 06:45  jordi
19516
19517         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19518
19519 2004-09-08 01:00  jackson
19520
19521         * XplatUIX11.cs: Only run the timers when updating the message
19522           queue. This effectively gives X messages a higher priority then
19523           timer messages. Timers still need love though
19524
19525 2004-09-07 14:01  jackson
19526
19527         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19528           this for us and the handle is no longer valid.
19529
19530 2004-09-07 13:59  jackson
19531
19532         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19533           loop that manages to not crash. TODO: Add poll and cleanup timers
19534
19535 2004-09-07 11:12  jordi
19536
19537         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19538
19539 2004-09-07 03:40  jordi
19540
19541         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19542           fixes, methods, multiple links
19543
19544 2004-09-06 06:55  jordi
19545
19546         * Control.cs: Caches ClientRectangle rectangle value
19547
19548 2004-09-05 02:03  jordi
19549
19550         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19551           certain situations
19552
19553 2004-09-04 11:10  jordi
19554
19555         * Label.cs: Refresh when font changed
19556
19557 2004-09-02 16:24  pbartok
19558
19559         * Control.cs:
19560           - Added sanity check to creation of double buffer bitmap
19561
19562 2004-09-02 16:24  pbartok
19563
19564         * ButtonBase.cs:
19565           - Fixed selection of text color
19566           - Fixed handling of resize event; now properly recreates double
19567             buffering bitmap
19568           - Added missing assignment of TextAlignment
19569           - Added proper default for TextAlignment
19570
19571 2004-09-02 14:26  pbartok
19572
19573         * RadioButton.cs:
19574           - Added missing RadioButton.RadioButtonAccessibleObject class
19575
19576 2004-09-02 14:26  pbartok
19577
19578         * Control.cs:
19579           - Added missing Control.ControlAccessibleObject class
19580           - Started to implement Select()ion mechanisms, still very incomplete
19581
19582 2004-09-02 14:25  pbartok
19583
19584         * AccessibleObject.cs:
19585           - Added missing methods
19586
19587 2004-09-02 14:23  pbartok
19588
19589         * AccessibleNavigation.cs, AccessibleSelection.cs:
19590           - Initial check-in
19591
19592 2004-09-02 10:32  jordi
19593
19594         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19595           pool for pens, brushes, and hatchbruses
19596
19597 2004-09-01 15:30  jackson
19598
19599         * StatusBar.cs: Fix typo
19600
19601 2004-09-01 14:44  pbartok
19602
19603         * RadioButton.cs:
19604           - Fixed state
19605
19606 2004-09-01 14:39  pbartok
19607
19608         * Button.cs, RadioButton.cs:
19609           - Functional initial check-in
19610
19611 2004-09-01 14:01  pbartok
19612
19613         * CheckBox.cs:
19614           - Added missing default
19615           - Added missing region mark
19616
19617 2004-09-01 09:10  jordi
19618
19619         * Label.cs: fixes method signatures, new methods, events, fixes
19620           autosize
19621
19622 2004-09-01 07:19  jordi
19623
19624         * Control.cs: Init string variables with an empty object
19625
19626 2004-09-01 04:20  jordi
19627
19628         * Control.cs: fires OnFontChanged event
19629
19630 2004-08-31 20:07  pbartok
19631
19632         * ButtonBase.cs:
19633           - Enabled display of strings
19634
19635 2004-08-31 20:05  pbartok
19636
19637         * Form.cs:
19638           - Added (partial) implementation of DialogResult; rest needs to be
19639             implemented when the modal loop code is done
19640
19641 2004-08-31 19:55  pbartok
19642
19643         * CheckBox.cs:
19644           - Fixed to match the removal of the needs_redraw concept
19645
19646 2004-08-31 19:55  pbartok
19647
19648         * ButtonBase.cs:
19649           - Removed the rather odd split between 'needs redraw' and redrawing
19650           - Now handles the events that require regeneration (ambient
19651             properties and size)
19652
19653 2004-08-31 19:41  pbartok
19654
19655         * Control.cs:
19656           - Added firing of BackColorChanged event
19657           - Added TopLevelControl property
19658           - Fixed handling of WM_ERASEBKGRND message
19659
19660 2004-08-31 12:49  pbartok
19661
19662         * ButtonBase.cs:
19663           - Removed debug
19664           - Minor fixes
19665
19666 2004-08-31 12:48  pbartok
19667
19668         * CheckBox.cs:
19669           - Finished (famous last words)
19670
19671 2004-08-31 04:35  jordi
19672
19673         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19674           scrolling bugs, adds new methods
19675
19676 2004-08-30 14:42  pbartok
19677
19678         * CheckBox.cs:
19679           - Implemented CheckBox drawing code
19680
19681 2004-08-30 14:42  pbartok
19682
19683         * ButtonBase.cs:
19684           - Made Redraw() and CheckRedraw() virtual
19685           - Improved mouse up/down/move logic to properly track buttons
19686
19687 2004-08-30 09:44  pbartok
19688
19689         * CheckBox.cs:
19690           - Updated to fix broken build. Not complete yet.
19691
19692 2004-08-30 09:28  pbartok
19693
19694         * CheckState.cs:
19695           - Initial checkin
19696
19697 2004-08-30 09:17  pbartok
19698
19699         * Appearance.cs:
19700           - Initial check-in
19701
19702 2004-08-27 16:12  ravindra
19703
19704         * ToolBarButton.cs: Added TypeConverter attribute.
19705
19706 2004-08-27 16:07  ravindra
19707
19708         * ImageIndexConverter.cs: Implemented.
19709
19710 2004-08-27 14:17  pbartok
19711
19712         * Control.cs:
19713           - Removed unneeded stack vars
19714           - First attempt to fix sizing issues when layout is suspended
19715
19716 2004-08-25 15:35  jordi
19717
19718         * ScrollBar.cs: more fixes to scrollbar
19719
19720 2004-08-25 14:04  ravindra
19721
19722         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19723           Added the missing divider code and grip for ToolBar Control.
19724
19725 2004-08-25 13:20  pbartok
19726
19727         * Control.cs:
19728           - Control now properly passes the ambient background color to child
19729             controls
19730
19731 2004-08-25 13:20  jordi
19732
19733         * ScrollBar.cs: small bug fix regarding bar position
19734
19735 2004-08-25 12:33  pbartok
19736
19737         * Timer.cs:
19738           - Now only calls SetTimer or KillTimer if the enabled state has
19739           changed
19740
19741 2004-08-25 12:33  pbartok
19742
19743         * XplatUIWin32.cs:
19744           - Fixed timer handling, now seems to work
19745           - Improved error message for window creation
19746
19747 2004-08-25 12:32  pbartok
19748
19749         * Control.cs:
19750           - Fixed generation of MouseUp message
19751
19752 2004-08-25 12:29  jordi
19753
19754         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19755           and fixes for progressbar
19756
19757 2004-08-24 18:43  ravindra
19758
19759         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19760           in ToolBar control.
19761
19762 2004-08-24 17:15  pbartok
19763
19764         * Panel.cs:
19765           - Added #region
19766           - Added missing events
19767           - Alphabetized
19768
19769 2004-08-24 17:14  pbartok
19770
19771         * StatusBar.cs, PictureBox.cs:
19772           - Now uses Control's CreateParams
19773
19774 2004-08-24 16:36  pbartok
19775
19776         * XplatUIX11.cs:
19777           - Fixed background color handling
19778           - Fixed sending of enter/leave events on a grab
19779
19780 2004-08-24 16:35  pbartok
19781
19782         * X11Structs.cs:
19783           - Refined definitions for CrossingEvent
19784
19785 2004-08-24 12:37  jordi
19786
19787         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19788           formmating, methods signature, and adds missing events
19789
19790 2004-08-24 12:24  jordi
19791
19792         * Control.cs: fire OnEnabledChanged event
19793
19794 2004-08-24 11:17  pbartok
19795
19796         * XplatUIWin32.cs:
19797           - Implemented SetTimer() and KillTimer()
19798
19799 2004-08-24 11:16  pbartok
19800
19801         * XplatUIX11.cs:
19802           - Now uses Remove instead of Add to kill the timer
19803
19804 2004-08-24 10:16  jackson
19805
19806         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19807           picture boxes in the theme now. Draw picture box borders and obey
19808           sizing modes
19809
19810 2004-08-24 05:49  jackson
19811
19812         * Timer.cs: Remove top secret debugging code
19813
19814 2004-08-24 05:34  jackson
19815
19816         * PictureBox.cs: Temp hack to make picture boxes draw their full
19817           image
19818
19819 2004-08-24 05:29  jackson
19820
19821         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19822           XplatUIX11.cs: Move timers to the driver level. On X they are
19823           queued by the driver and checked on idle.
19824
19825 2004-08-24 01:07  jackson
19826
19827         * XplatUIX11.cs: Use a queue for async messages instead of passing
19828           them as ClientMessages since that was totally broken. Also simply
19829           check for events and return an idle message if none are found. This
19830           gives us an idle handler, and prevents deadlocking when no messages
19831           are in the queue.
19832
19833 2004-08-23 18:19  ravindra
19834
19835         * XplatUIWin32.cs: Removed the unwanted destructor.
19836
19837 2004-08-23 17:27  pbartok
19838
19839         * ButtonBase.cs:
19840           - Finishing touches. Works now, just needs some optimizations.
19841
19842 2004-08-23 16:53  jordi
19843
19844         * ScrollBar.cs: small fix
19845
19846 2004-08-23 16:45  pbartok
19847
19848         * Application.cs:
19849           - Removed debug output
19850           - Simplifications
19851
19852 2004-08-23 16:43  jordi
19853
19854         * ScrollBar.cs: [no log message]
19855
19856 2004-08-23 16:10  pbartok
19857
19858         * Form.cs:
19859           - Fixed handling of WM_CLOSE message
19860           - Removed debug output
19861
19862 2004-08-23 16:09  pbartok
19863
19864         * Application.cs:
19865           - Added handling of Idle event
19866           - Added handling of form closing
19867           - Fixed reporting of MessageLoop property
19868           - Removed some unneeded code, should provide a bit of a speedup
19869
19870 2004-08-23 15:22  pbartok
19871
19872         * Control.cs:
19873           - Added InitLayout() method
19874           - Added code to properly perform layout when Anchor or Dock property
19875             is changed
19876           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19877             LAMESPEC, tried to do it in a way that makes sense
19878
19879 2004-08-23 14:10  jordi
19880
19881         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19882           properties and methods
19883
19884 2004-08-23 13:55  pbartok
19885
19886         * Control.cs:
19887           - Properly fixed Jordi's last fix
19888           - Now uses Cursor's Position property instead of calling XplatUI
19889           directly
19890
19891 2004-08-23 13:44  jordi
19892
19893         * PaintEventHandler.cs: Adding missing attribute
19894
19895 2004-08-23 13:39  pbartok
19896
19897         * Cursor.cs:
19898           - Implemented Position property
19899
19900 2004-08-23 13:39  pbartok
19901
19902         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19903           - Added method to move mouse cursor
19904
19905 2004-08-23 13:39  pbartok
19906
19907         * XplatUIX11.cs:
19908           - Fixed setting of background color
19909           - Added method to move mouse cursor
19910
19911 2004-08-23 13:16  jordi
19912
19913         * Control.cs: avoids null exception
19914
19915 2004-08-22 17:46  jackson
19916
19917         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19918           PictureBox
19919
19920 2004-08-22 17:40  jackson
19921
19922         * XplatUIX11.cs: Add some missing locks
19923
19924 2004-08-22 15:10  pbartok
19925
19926         * Control.cs, Form.cs:
19927           - Removed OverlappedWindow style from Control, instead it's default
19928             now is child
19929           - Made form windows OverlappedWindow by default
19930
19931 2004-08-22 13:34  jackson
19932
19933         * ScrollBar.cs: Update the position through the Value property so
19934           the OnValueChanged event is raised.
19935
19936 2004-08-22 12:04  pbartok
19937
19938         * SWF.csproj:
19939           - Added Cursor.cs and UserControl.cs
19940
19941 2004-08-22 12:03  pbartok
19942
19943         * Cursor.cs:
19944           - Started implementation, not usable yet
19945
19946 2004-08-22 12:00  pbartok
19947
19948         * UserControl.cs:
19949           - Implemented UserControl (complete)
19950
19951 2004-08-21 19:20  ravindra
19952
19953         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19954
19955 2004-08-21 18:49  ravindra
19956
19957         * ToolBar.cs: Probably this completes the missing attributes in
19958           toolbar control.
19959
19960 2004-08-21 18:03  ravindra
19961
19962         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19963           Fixed toolbar control signatures.
19964
19965 2004-08-21 16:32  pbartok
19966
19967         * LinkLabel.cs:
19968           - Signature Fixes
19969
19970 2004-08-21 16:30  pbartok
19971
19972         * Label.cs:
19973           - Signature fixes
19974
19975 2004-08-21 16:19  pbartok
19976
19977         * Control.cs, Label.cs:
19978           - Signature fixes
19979
19980 2004-08-21 15:57  pbartok
19981
19982         * ButtonBase.cs:
19983           - Added loads of debug output for development
19984           - Fixed typo in method name
19985
19986 2004-08-21 15:52  pbartok
19987
19988         * ToolBarButtonClickEventArgs.cs:
19989           - Added missing base class
19990
19991 2004-08-21 14:53  pbartok
19992
19993         * Control.cs:
19994           - Updated to match new GrabWindow signature
19995
19996 2004-08-21 14:51  pbartok
19997
19998         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19999           - Added method to get default display size
20000
20001 2004-08-21 14:23  pbartok
20002
20003         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20004           - Added method to query current grab state
20005           - Added argument to allow confining a grab to a window
20006
20007 2004-08-21 14:22  pbartok
20008
20009         * Keys.cs:
20010           - Added [Flags] attribute so that modifiers can be used in bitwise
20011           ops
20012
20013 2004-08-21 14:21  pbartok
20014
20015         * TrackBar.cs, ScrollBar.cs:
20016           - Replaced direct XplatUI calls with their Control counterpart
20017
20018 2004-08-21 13:32  pbartok
20019
20020         * Control.cs:
20021           - Implemented Created property
20022
20023 2004-08-21 13:28  pbartok
20024
20025         * Control.cs:
20026           - Implemented ContainsFocus
20027
20028 2004-08-21 13:26  pbartok
20029
20030         * Control.cs:
20031           - Implemented CausesValidation
20032
20033 2004-08-21 13:21  pbartok
20034
20035         * Control.cs:
20036           - Implemented CanFocus
20037           - Implemented CanSelect
20038           - Implemented Capture
20039
20040 2004-08-21 12:35  pbartok
20041
20042         * XplatUIWin32.cs:
20043           - Fixed bug with Async message handling
20044           - Implemented getting the ModifierKeys
20045
20046 2004-08-21 12:32  jackson
20047
20048         * AsyncMethodResult.cs: Make sure we have the mutex before we
20049           release it. Fixes BeginInvoke on windows
20050
20051 2004-08-21 11:31  pbartok
20052
20053         * XplatUIWin32.cs, XplatUIX11.cs:
20054           - Drivers now return proper mouse state
20055
20056 2004-08-21 10:54  jackson
20057
20058         * Control.cs: Implement EndInvoke
20059
20060 2004-08-21 10:48  jackson
20061
20062         * Timer.cs: Remove unneeded finalizer
20063
20064 2004-08-20 19:52  ravindra
20065
20066         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
20067           in mouse event handling in the ToolBar control.
20068
20069 2004-08-20 19:50  ravindra
20070
20071         * ImageList.cs: Changed draw method to use the arguments passed in
20072           to draw the image.
20073
20074 2004-08-20 18:58  pbartok
20075
20076         * XplatUIStructs.cs:
20077           - Added private message for async communication
20078
20079 2004-08-20 17:38  ravindra
20080
20081         * Control.cs: Made RightToLeft property virtual and removed a
20082           Console.WriteLine.
20083
20084 2004-08-20 14:39  jordi
20085
20086         * ThemeGtk.cs: use style_attach
20087
20088 2004-08-20 14:39  pbartok
20089
20090         * XplatUIWin32.cs:
20091           - Added jackson's Async code from X11 to Win32
20092
20093 2004-08-20 14:09  pbartok
20094
20095         * SWF.csproj:
20096           - Added all new files
20097
20098 2004-08-20 14:09  pbartok
20099
20100         * Control.cs:
20101           - Added call to set window background color
20102
20103 2004-08-20 14:03  pbartok
20104
20105         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20106           - Added method for setting the window background
20107
20108 2004-08-20 14:02  pbartok
20109
20110         * XplatUIWin32.cs:
20111           - Added method for setting the background color
20112           - Added handling for erasing the window background
20113
20114 2004-08-20 13:45  jordi
20115
20116         * TrackBar.cs: fixes timer, new properties and methods
20117
20118 2004-08-20 13:34  jackson
20119
20120         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
20121           correct thread
20122
20123 2004-08-20 13:22  jackson
20124
20125         * Timer.cs: Timer Tick events are now handed through Controls Async
20126           mechanism so the callbacks are executed in the same thread as X
20127
20128 2004-08-20 13:19  jackson
20129
20130         * XplatUIDriver.cs: Expose functionality to send async messages
20131           through the driver
20132
20133 2004-08-20 13:18  jackson
20134
20135         * Control.cs: Implement Begininvoke
20136
20137 2004-08-20 13:14  jackson
20138
20139         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20140           messages through the driver
20141
20142 2004-08-20 13:12  jackson
20143
20144         * XplatUIX11.cs: Lock before all X operations. Also added Async
20145           method functionality through XSendEvent
20146
20147 2004-08-20 13:11  jackson
20148
20149         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20150           This will screw up on 64 bit systems)
20151
20152 2004-08-20 13:10  jackson
20153
20154         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20155           Async messages through X/Win32
20156
20157 2004-08-19 19:39  pbartok
20158
20159         * XplatUIX11.cs:
20160           - Updated code to match new HandleData.DeviceContext type
20161
20162 2004-08-19 19:38  pbartok
20163
20164         * HandleData.cs:
20165           - Made DeviceContext a generic object to allow usage from various
20166           drivers
20167           - Added support for queueing Windows messages
20168
20169 2004-08-19 19:37  pbartok
20170
20171         * XplatUIWin32.cs:
20172           - Added generation of MouseEnter, MouseLeave and MouseHover events
20173           - Added cleanup on EndPaint
20174
20175 2004-08-19 19:17  pbartok
20176
20177         * Control.cs:
20178           - Added handling of WM_MOUSEHOVER
20179           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20180           code
20181
20182 2004-08-19 18:55  jordi
20183
20184         * ThemeGtk.cs: fixes button order
20185
20186 2004-08-19 18:12  jordi
20187
20188         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20189
20190 2004-08-19 17:09  pbartok
20191
20192         * Control.cs:
20193           - Added Right property
20194           - Added RightToLeft property
20195
20196 2004-08-19 16:27  jordi
20197
20198         * ThemeGtk.cs: experimental GTK theme support
20199
20200 2004-08-19 16:26  jordi
20201
20202         * ITheme.cs, Theme.cs: move themes from an interface to a class
20203
20204 2004-08-19 16:25  jordi
20205
20206         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20207           theme enhancaments
20208
20209 2004-08-19 16:04  pbartok
20210
20211         * XplatUIX11.cs:
20212           - Added colormap basics
20213           - Added a way to re-initialize with a different display handle
20214           - Fixed setting of the window background color
20215           - Added various X11 imports related to colors and colormaps
20216
20217 2004-08-19 15:51  pbartok
20218
20219         * X11Structs.cs:
20220           - Removed packing hints (Paolo suggested this a while back)
20221           - fixed colormap type
20222           - Added default Atom types
20223           - Added Screen and color structs and enums
20224
20225 2004-08-19 15:39  pbartok
20226
20227         * ImageList.cs:
20228           - Added missing Draw() method
20229           - Added missing RecreateHandle event
20230
20231 2004-08-19 15:30  pbartok
20232
20233         * Form.cs:
20234           - Added handling of WM_CLOSE
20235
20236 2004-08-18 13:16  jordi
20237
20238         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20239           a table
20240
20241 2004-08-18 09:56  jordi
20242
20243         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20244
20245 2004-08-17 15:31  ravindra
20246
20247         * SWF.csproj: Updated project.
20248
20249 2004-08-17 15:25  pbartok
20250
20251         * Control.cs:
20252           - Drawing improvement; don't call UpdateBounds if we are not visible
20253             (or have been minimized)
20254
20255 2004-08-17 15:24  pbartok
20256
20257         * XplatUIWin32.cs:
20258           - Finished IsVisible
20259           - Added Win32GetWindowPlacement
20260
20261 2004-08-17 15:08  jackson
20262
20263         * Panel.cs: Initial checkin of the Panel
20264
20265 2004-08-17 14:25  pbartok
20266
20267         * Control.cs:
20268           - Fixed broken handling of default window sizes
20269
20270 2004-08-17 13:29  jackson
20271
20272         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20273           has a large startup time.
20274
20275 2004-08-17 10:25  jackson
20276
20277         * HandleData.cs: union areas properly
20278
20279 2004-08-17 10:12  jackson
20280
20281         * HandleData.cs: union areas properly
20282
20283 2004-08-16 20:00  ravindra
20284
20285         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20286
20287 2004-08-16 18:48  ravindra
20288
20289         * ToolBar.cs: Added attributes.
20290
20291 2004-08-16 17:17  ravindra
20292
20293         * SWF.csproj: Updated project.
20294
20295 2004-08-16 17:16  jackson
20296
20297         * XplatUIX11.cs: Check for more expose events before sending a
20298           WM_PAINT so they can all be grouped together. This makes dragging a
20299           window across another window redraw in a sane way.
20300
20301 2004-08-16 15:47  pbartok
20302
20303         * Control.cs:
20304           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20305             support OnMouseEnter/Leave()
20306           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20307             exposure handling
20308
20309 2004-08-16 15:46  pbartok
20310
20311         * XplatUIStructs.cs, XplatUIX11.cs:
20312           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20313           OnMouseEnter/Leave()
20314
20315 2004-08-16 15:34  jackson
20316
20317         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20318           sure messages get the message field set to WM_NULL if they are not
20319           handled.
20320
20321 2004-08-16 15:24  jackson
20322
20323         * HandleData.cs: HandleData is used for storing message information
20324           for window handles
20325
20326 2004-08-15 17:23  ravindra
20327
20328         * ColorDepth.cs: Added attribute.
20329
20330 2004-08-15 17:23  ravindra
20331
20332         * SWF.csproj: Updated project for ToolBar Control.
20333
20334 2004-08-15 17:20  ravindra
20335
20336         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20337           control and also dos2unix format.
20338
20339 2004-08-15 17:13  ravindra
20340
20341         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20342           ToolBarButtonClickEventArgs.cs,
20343           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20344           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20345
20346 2004-08-15 15:31  pbartok
20347
20348         * ButtonBase.cs:
20349           - First (mostly) working version
20350
20351 2004-08-13 16:15  pbartok
20352
20353         * Control.cs:
20354           - Fixed Anchor default
20355
20356 2004-08-13 15:43  pbartok
20357
20358         * Control.cs:
20359           - Changed GetCursorPos signature
20360
20361 2004-08-13 15:42  pbartok
20362
20363         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20364           - Changed signature for GetCursorPos
20365
20366 2004-08-13 15:25  pbartok
20367
20368         * XplatUIX11.cs:
20369           - Cleanup
20370           - Fixed resizing/exposure handling
20371
20372 2004-08-13 15:22  jordi
20373
20374         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20375           with tickposition
20376
20377 2004-08-13 14:55  jordi
20378
20379         * TrackBar.cs: change from wndproc to events
20380
20381 2004-08-13 13:00  jordi
20382
20383         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20384           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20385
20386 2004-08-13 12:53  pbartok
20387
20388         * XplatUIWin32.cs:
20389           - Changed GetWindowPos to also provide client area size
20390           - Fixed broken prototypes for several win32 functions
20391
20392 2004-08-13 12:53  pbartok
20393
20394         * XplatUI.cs, XplatUIDriver.cs:
20395           - Changed GetWindowPos to also provide client area size
20396
20397 2004-08-13 12:52  pbartok
20398
20399         * XplatUIX11.cs:
20400           - Added generation of WM_POSCHANGED
20401           - Changed GetWindowPos to also provide client area size
20402
20403 2004-08-13 12:52  pbartok
20404
20405         * Control.cs:
20406           - Added Dispose() and destructor
20407           - Fixed resizing and bounds calculation
20408           - Fixed Layout
20409           - Added memory savings for invisible windows
20410
20411 2004-08-13 12:46  jordi
20412
20413         * TrackBar.cs: adds timer and grap window
20414
20415 2004-08-13 10:25  jackson
20416
20417         * Timer.cs: SWF Timer
20418
20419 2004-08-12 16:59  pbartok
20420
20421         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20422           - Implemented method to get current mouse position
20423
20424 2004-08-12 14:29  jordi
20425
20426         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20427           enhancement, fix mouse problems, highli thumb, etc
20428
20429 2004-08-12 13:31  pbartok
20430
20431         * Control.cs:
20432           - Fixed Anchoring bugs
20433
20434 2004-08-12 13:01  jackson
20435
20436         * StatusBar.cs: Don't forget things
20437
20438 2004-08-12 12:54  jackson
20439
20440         * ThemeWin32Classic.cs: Handle owner draw status bars
20441
20442 2004-08-12 12:54  jackson
20443
20444         * StatusBar.cs: Implement missing properties, events, and methods.
20445           Handle mouse clicking
20446
20447 2004-08-12 10:19  jackson
20448
20449         * StatusBarPanelClickEventArgs.cs,
20450           StatusBarPanelClickEventHandler.cs: Classes for handling status
20451           bar panel click events
20452
20453 2004-08-12 10:10  jackson
20454
20455         * Control.cs: Add missing properties
20456
20457 2004-08-12 09:46  pbartok
20458
20459         * BindingsManagerBase.cs:
20460           - Name changed to BindingManagerBase.cs
20461
20462 2004-08-12 09:25  jordi
20463
20464         * ScrollableControl.cs: calls ctrlbase instead of exeception
20465
20466 2004-08-11 16:28  pbartok
20467
20468         * InputLanguageChangingEventArgs.cs:
20469           - Never check in before compiling. Fixes the last check-in
20470
20471 2004-08-11 16:26  pbartok
20472
20473         * InputLanguageChangingEventArgs.cs:
20474           - More signature fixes
20475
20476 2004-08-11 16:20  pbartok
20477
20478         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20479           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20480           ImageListStreamer.cs, InputLanguage.cs,
20481           InputLanguageChangedEventArgs.cs,
20482           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20483           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20484           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20485           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20486           - Signature fixes
20487
20488 2004-08-11 16:16  pbartok
20489
20490         * Application.cs:
20491           - Fixed Signature
20492           - Added .Net 1.1 method
20493
20494 2004-08-11 15:25  pbartok
20495
20496         * SWF.csproj:
20497           - Fixed BindingManagerBase.cs filename
20498
20499 2004-08-11 15:22  pbartok
20500
20501         * BindingManagerBase.cs:
20502           - Was checked in with wrong filename
20503
20504 2004-08-11 14:50  pbartok
20505
20506         * SWF.csproj:
20507           - Updated
20508
20509 2004-08-11 13:41  jordi
20510
20511         * XplatUIWin32.cs: Fixes ClientRect
20512
20513 2004-08-11 13:19  pbartok
20514
20515         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20516           XplatUIX11.cs:
20517           - We had SetWindowPos and MoveWindow to set window positions and
20518             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20519             keep SetWindowPos as matching counterpart
20520           - Added some X11 sanity checking
20521
20522 2004-08-11 12:59  pbartok
20523
20524         * Control.cs:
20525           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20526             (It seems that SetBounds is just a front for SetBoundsCore and
20527              SetBoundsCore updates the underlying window system and
20528              UpdateBounds is responsible for updating the variables associated
20529              with the Control and sending the events)
20530           - Major cleanup of Size handling; we now have two sizes, client_size
20531             and bounds. Bounds defines the window with decorations, client_size
20532             without them.
20533
20534 2004-08-11 12:55  pbartok
20535
20536         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20537           - Added method to calculate difference between decorated window and
20538             raw client area
20539
20540 2004-08-11 12:54  pbartok
20541
20542         * Label.cs:
20543           - Forcing redraw on resize
20544
20545 2004-08-11 11:43  pbartok
20546
20547         * ImageList.cs:
20548           - Removed disposing of the actual images when the list is disposed
20549
20550 2004-08-11 09:13  pbartok
20551
20552         * Control.cs:
20553           - Now properly reparents windows
20554
20555 2004-08-11 08:37  pbartok
20556
20557         * Control.cs:
20558           - Duh!
20559
20560 2004-08-11 07:47  pbartok
20561
20562         * Control.cs:
20563           - Rewrote the collection stuff. Might not be as fast now, not
20564             keeping the number of children around and accessible directly, but
20565             it's more straightforward
20566
20567 2004-08-11 07:44  pbartok
20568
20569         * AccessibleObject.cs:
20570           - Fixed to match ControlCollection rewrite
20571
20572 2004-08-11 07:43  pbartok
20573
20574         * ImageList.cs:
20575           - Added missing creation of the collection list
20576
20577 2004-08-10 20:08  jackson
20578
20579         * StatusBar.cs: Get the paint message from WndProc
20580
20581 2004-08-10 19:31  jackson
20582
20583         * ThemeWin32Classic.cs: Create Brushes as little as possible
20584
20585 2004-08-10 19:20  jackson
20586
20587         * UICues.cs: Add Flags attribute
20588
20589 2004-08-10 19:19  jackson
20590
20591         * StatusBarPanel.cs: Signature cleanup
20592
20593 2004-08-10 19:10  jackson
20594
20595         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20596           Initial implementation of status bar item drawing
20597
20598 2004-08-10 17:27  jordi
20599
20600         * TrackBar.cs: add missing methods, properties, and restructure to
20601           hide extra ones
20602
20603 2004-08-10 16:24  jackson
20604
20605         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20606           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20607           attribute
20608
20609 2004-08-10 13:21  jordi
20610
20611         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20612           enhancements and standarize on win colors defaults
20613
20614 2004-08-10 12:52  jackson
20615
20616         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20617           ThemeWin32Classic.cs: Implement DrawItem functionality
20618
20619 2004-08-10 12:47  jordi
20620
20621         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20622
20623 2004-08-10 12:32  jordi
20624
20625         * Control.cs: throw ontextchange event
20626
20627 2004-08-10 11:43  pbartok
20628
20629         * Control.cs:
20630           - Added more to the still unfinished Dock/Anchor layout code
20631
20632 2004-08-10 11:39  pbartok
20633
20634         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20635           - Added GetWindowPos method
20636
20637 2004-08-10 11:36  pbartok
20638
20639         * XplatUIWin32.cs:
20640           - Implemented several methods
20641
20642 2004-08-10 09:47  jackson
20643
20644         * TrackBar.cs: Allow control to handle buffering
20645
20646 2004-08-10 09:41  jackson
20647
20648         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20649
20650 2004-08-10 09:24  jackson
20651
20652         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20653
20654 2004-08-10 09:09  jackson
20655
20656         * StatusBar.cs: Let Control handle all the buffering.
20657
20658 2004-08-10 09:08  jackson
20659
20660         * Control.cs: Control will now handle the buffering code, so each
20661           control does not have to implement this.
20662
20663 2004-08-10 08:34  jackson
20664
20665         * XplatUIDriver.cs: Use default colors from the theme
20666
20667 2004-08-09 17:12  pbartok
20668
20669         * ImageList.cs:
20670           - Fixed several bugs Ravindra pointed out
20671
20672 2004-08-09 16:11  pbartok
20673
20674         * Control.cs:
20675           - Added incomplete dock layout code
20676           - Added support for mouse wheel
20677
20678 2004-08-09 16:09  pbartok
20679
20680         * XplatUIX11.cs:
20681           - Added handling for middle and right mousebutton
20682           - Added handling for mouse wheel
20683           - Added handling for key state and mouse state and position
20684           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20685           messages
20686
20687 2004-08-09 15:40  jackson
20688
20689         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20690           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20691           checkin
20692
20693 2004-08-09 15:37  jackson
20694
20695         * StatusBar.cs: Initial implementation of StatusBar
20696
20697 2004-08-09 15:36  jackson
20698
20699         * ITheme.cs: Add support for drawing status bar and getting status
20700           bar item sizes
20701
20702 2004-08-09 15:35  pbartok
20703
20704         * MouseButtons.cs:
20705           - Fixed values
20706
20707 2004-08-09 15:34  jackson
20708
20709         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20710           status bar item sizes
20711
20712 2004-08-09 15:21  jackson
20713
20714         * ThemeWin32Classic.cs: Use known colors for default control
20715           colours
20716
20717 2004-08-09 15:12  jackson
20718
20719         * ThemeWin32Classic.cs: Make the default font static, it is static
20720           in control so this doesn't change functionality and creating fonts
20721           is sloooooow.
20722
20723 2004-08-09 14:56  pbartok
20724
20725         * X11Structs.cs:
20726           - Added GrabMode enum
20727
20728 2004-08-09 14:55  pbartok
20729
20730         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20731           - Removed Run method, was only required for initial development
20732
20733 2004-08-09 14:51  pbartok
20734
20735         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20736           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20737           capture
20738
20739 2004-08-09 13:48  pbartok
20740
20741         * XplatUIX11.cs:
20742           - Fixed default sizing for child windows
20743
20744 2004-08-09 12:56  pbartok
20745
20746         * XplatUIX11.cs:
20747           - Added generation of WM_DESTROY message
20748           - Added handling of window manager induced shutdown
20749
20750 2004-08-09 11:31  jackson
20751
20752         * ThemeWin32Classic.cs: New names for control properties
20753
20754 2004-08-09 11:25  jackson
20755
20756         * Control.cs: Use new color names
20757
20758 2004-08-09 11:02  jackson
20759
20760         * XplatUI.cs: Get default window properties from the theme
20761
20762 2004-08-09 11:01  jackson
20763
20764         * ITheme.cs: The theme engine now controls default window
20765           properties
20766
20767 2004-08-09 11:00  jackson
20768
20769         * ThemeWin32Classic.cs: Add default window color properties
20770
20771 2004-08-09 10:17  jackson
20772
20773         * ThemeWin32Classic.cs: Use correct default back color
20774
20775 2004-08-09 10:05  jackson
20776
20777         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20778           the theme now.
20779
20780 2004-08-09 09:56  jackson
20781
20782         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20783
20784 2004-08-09 09:54  jackson
20785
20786         * Control.cs: Get default properties from the theme.
20787
20788 2004-08-09 09:53  jackson
20789
20790         * ITheme.cs: Themes now handle default control properties
20791
20792 2004-08-09 09:53  jackson
20793
20794         * ThemeWin32Classic.cs: Themes now handle default control
20795           properties so coloring will be consistent
20796
20797 2004-08-08 16:54  jordi
20798
20799         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20800
20801 2004-08-08 15:08  jordi
20802
20803         * XplatUIX11.cs: fixes keyboard crash
20804
20805 2004-08-08 13:47  jordi
20806
20807         * Label.cs: add cvs header info
20808
20809 2004-08-08 12:09  jackson
20810
20811         * ThemeWin32Classic.cs: Add pen_buttonface
20812
20813 2004-08-08 11:52  jordi
20814
20815         * Label.cs, LinkLabel.cs: [no log message]
20816
20817 2004-08-08 11:34  jordi
20818
20819         * ThemeWin32Classic.cs: Use Windows Standard Colours
20820
20821 2004-08-07 17:32  jordi
20822
20823         * TrackBar.cs: throw exceptions of invalid enums values
20824
20825 2004-08-07 17:31  jordi
20826
20827         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20828           draw method name
20829
20830 2004-08-07 16:56  jackson
20831
20832         * HorizontalAlignment.cs: Initial checkin
20833
20834 2004-08-07 13:16  jordi
20835
20836         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20837           methods
20838
20839 2004-08-07 13:05  jordi
20840
20841         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20842           GetSysColor defines
20843
20844 2004-08-06 18:01  pbartok
20845
20846         * ThemeWin32Classic.cs:
20847           - Fixed some rounding issues with float/int
20848
20849 2004-08-06 18:00  jackson
20850
20851         * DockStyle.cs, AnchorStyles.cs:
20852
20853                   Add flags and serializable attributes.
20854
20855 2004-08-06 17:46  pbartok
20856
20857         * XplatUIX11.cs:
20858           - Implemented GetParent
20859
20860 2004-08-06 17:18  pbartok
20861
20862         * TrackBar.cs:
20863           - Fixed some rounding issues with float/int
20864
20865 2004-08-06 17:17  pbartok
20866
20867         * X11Structs.cs, XplatUIX11.cs:
20868           - Fixed Refresh and Invalidate
20869
20870 2004-08-06 15:30  pbartok
20871
20872         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20873           - Fixed recursive loop when resizing
20874           - Improved/fixed redrawing on expose messages
20875
20876 2004-08-06 09:53  jordi
20877
20878         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20879           keyboard navigation
20880
20881 2004-08-06 08:02  pbartok
20882
20883         * X11Structs.cs, XplatUIX11.cs:
20884           - Fixed reparenting
20885           - Fixed window border creation
20886
20887 2004-08-05 15:38  pbartok
20888
20889         * XplatUIX11.cs:
20890           - Attempted fix for reparenting problems
20891
20892 2004-08-04 15:14  pbartok
20893
20894         * Control.cs:
20895           - Fixed Invalidation bug (calculated wrong client area)
20896           - Added ClientSize setter
20897
20898 2004-08-04 15:13  pbartok
20899
20900         * Form.cs:
20901           - Added AutoScale properties
20902
20903 2004-08-04 15:13  pbartok
20904
20905         * SWF.csproj:
20906           - Added latest files
20907
20908 2004-08-04 14:11  pbartok
20909
20910         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20911           XplatUIX11.cs:
20912           - Added Invalidate handling
20913
20914 2004-08-03 17:09  jordi
20915
20916         * XplatUIDriver.cs: fixes spelling mistake
20917
20918 2004-07-27 09:53  jordi
20919
20920         * TrackBar.cs: fixes trackbar events, def classname, methods
20921           signature
20922
20923 2004-07-27 09:29  jordi
20924
20925         * ScrollBar.cs: fixes scrollbar events
20926
20927 2004-07-27 04:38  jordi
20928
20929         * Control.cs: changes to be able to run winforms samples
20930
20931 2004-07-26 11:42  jordi
20932
20933         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20934           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20935
20936 2004-07-26 05:41  jordi
20937
20938         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20939           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20940           implementation
20941
20942 2004-07-22 09:22  jordi
20943
20944         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20945           check link overlapping, implement events, and fixes
20946
20947 2004-07-21 10:28  jordi
20948
20949         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20950
20951 2004-07-21 10:19  jordi
20952
20953         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20954           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20955           LinkLabelLinkClickedEventArgs.cs,
20956           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20957           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20958           implementation
20959
20960 2004-07-19 13:09  jordi
20961
20962         * Control.cs, Label.cs: label control re-written: added missing
20963           functionlity, events, and properties
20964
20965 2004-07-19 10:49  jordi
20966
20967         * Control.cs: fixes SetBounds logic
20968
20969 2004-07-19 01:29  jordi
20970
20971         * Control.cs: Call RefreshWindow only if the window has created
20972
20973 2004-07-15 14:05  pbartok
20974
20975         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20976           - Implemented ImageList and ImageList.ImageCollection classes
20977           - Added ColorDepth enumeration
20978           - Updated SWF VS.Net project
20979
20980 2004-07-15 11:06  jordi
20981
20982         * XplatUIStructs.cs: added MsgButons enum
20983
20984 2004-07-15 11:03  jordi
20985
20986         * Control.cs: added basic mouse handeling events
20987
20988 2004-07-15 03:38  jordi
20989
20990         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20991           Vertical TrackBar control implementation
20992
20993 2004-07-13 09:33  jordi
20994
20995         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20996
20997 2004-07-13 09:31  jordi
20998
20999         * Control.cs, Form.cs: commit: new properties and fixes form size
21000           problems
21001
21002 2004-07-09 14:13  miguel
21003
21004         * ProgressBar.cs: Spelling
21005
21006 2004-07-09 11:25  pbartok
21007
21008         * ProgressBar.cs:
21009           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21010           faster
21011
21012 2004-07-09 11:17  miguel
21013
21014         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21015
21016                 * ProgressBar.cs: Fixed spelling for `block'
21017
21018                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21019                 style guidelines.
21020
21021                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21022
21023 2004-07-08 23:21  pbartok
21024
21025         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21026           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21027           BaseCollection.cs, Binding.cs, BindingContext.cs,
21028           BindingMemberInfo.cs, BindingsCollection.cs,
21029           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21030           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21031           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21032           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21033           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21034           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21035           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21036           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21037           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21038           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21039           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21040           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21041           InputLanguageChangedEventArgs.cs,
21042           InputLanguageChangedEventHandler.cs,
21043           InputLanguageChangingEventArgs.cs,
21044           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
21045           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
21046           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
21047           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
21048           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
21049           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
21050           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
21051           QueryAccessibilityHelpEventArgs.cs,
21052           QueryAccessibilityHelpEventHandler.cs,
21053           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
21054           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
21055           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
21056           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
21057           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
21058           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
21059           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
21060           XplatUIX11.cs, lang.cs:
21061           - Initial check-in
21062