* TabControl.cs: Change SetTab so it adds the tabpage to the list
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-04-27  Andreia Gaita  <avidigal@novell.com>
2
3         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4         of controls if it isn't already there - was blowing up when doing
5         tabcontrol.TabPages[i]=new TabPage(). 
6         SetTab now does a replace by removing the page at the index. 
7         Add a new InsertTab method that inserts a page in a given index 
8         instead of replacing. 
9         Implements TabPageCollection.Insert(int, TabPage).
10
11 2007-04-27  Chris Toshok  <toshok@ximian.com>
12
13         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
14         internal handler that can be invoked from our subclasses.)  Also,
15         add a comment to PushData about how we need to fix it.
16
17         * CurrencyManager.cs: tons of changes here.  trying to get things
18         matching the behavior of .net wrt event orders (ItemChanged,
19         CurrentChanged, PositionChanged.)  I've implemented a private .net
20         symbol (ChangeRecordState) that appears in stack traces because
21         it's actually easier to do this than to effective inline all its
22         various behaviors at every call site.
23
24         * RelatedPropertyManager.cs: guard against an exception here by
25         not using parent.Current if the position is set to -1 (if the
26         parent datasource is cleared, for instance).
27
28         * Binding.cs: don't parse data in PushData (this might be wrong,
29         but it jives with MS's behavior.)  Also, don't call PushData when
30         we get a CurrentChanged event.
31
32 2007-04-27  Andreia Gaita  <avidigal@novell.com>
33
34         * WebBrowser.cs,
35           WebBrowserBase.cs,
36           WebBrowserSiteBase.cs,
37           HtmlDocument.cs: Added stubbed out classes, no real implementations 
38           yet.
39
40 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
41
42         * MainMenu.cs: In draw method without parameters call draw method with 
43         PaintEvent, another one (just rect) adjust rectangle and we dont need it
44         as Rect property is already adjusted. Fixes #80694.
45
46 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
47
48         * Application.cs: Need to handle keyboard menu deselection here.
49         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
50         navigation, allowing keyboard to work on X11.
51         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
52
53 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
54
55         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
56         menu bar. It fixes some drawing issues in menu bar.
57
58 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
59
60         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
61         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
62         when <alt> key is pressed.
63
64 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
65
66         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
67         example just set visible to false and make this prevent from other problems.
68         In SystrayAdd always remove pending expose. Fixes #81072.
69
70 2007-04-26  Marek Safar  <marek.safar@gmail.com>
71
72         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
73         value is set.
74
75 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
76
77         * ListView.cs: Added three missing 2.0 events and corresponding
78         EventHandlers. Added the OwnerDraw property.
79         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
80
81 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
82
83         * DrawListViewItemEventArgs.cs
84         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
85
86 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
87
88         * TextControl.cs: Fixed typo in constructor
89
90 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
91
92         * Application.cs: Create a shortcut path so that currently selected
93         MenuStrips can intercept keyboard events without having focus.
94         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
95         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
96         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
97         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
98         generate WM_SYSCOMMAND message in X11 for other platforms.
99         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
100         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
101         * ToolStripSplitButton.cs: Add DefaultItem property.
102         
103 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
104
105         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
106         fixes some menu draw problem on Windows with border diferent from default
107         it also fixes #81403.
108
109 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
110
111         * Form.cs: Refactor WndProc into separate methods, just like Control is
112           doing it.
113
114 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
115
116         * Control.cs: set_Text: move the call to the driver into a seperate
117           virtual method so that Form can override it.
118         * MaskedTextBox.cs: Corcompare fixes.
119         * Form.cs: Override UpdateWindowText and only update the styles if the
120           form has been shown (fixes #81405).
121
122 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
123
124         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
125         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
126         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
127         the form lost focus or another control was clicked.
128
129 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
130
131         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
132         fixed.
133
134 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
135
136         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
137           DrawListViewItemEventHandler.cs,
138           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
139           Added.
140         * X11Structs.cs: More ToString implementation.
141
142 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
143
144         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
145         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
146
147 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
148
149         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
150           handle.
151         * FormCollection.cs: Don't add a form if it's already in the
152           collection.
153         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
154           according to behaviour and MSDN. The ownerWin32 is the active
155           window at the moment when we call ShowDialog, not the context's
156           main form (the context's main form may open another form that opens
157           a form with ShowDialog, the win32 owner is the second form). Add
158           and remove forms to the Application.OpenForms in other places to
159           better match MS behaviour. Add an IsActive property that raises
160           On(de)Activated only if the active state has changed (we were
161           raising OnDeactivated before OnActivated while creating forms).
162         * Application.cs: Refactor Enabling/Disabling of windows for modal
163           dialog loops out to separate methods, and restore the thread
164           context when we quit the method. Fixes #81407.
165
166 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
167
168         * ListView.cs: In ItemControl.HandleClicks, also fire 
169         2.0 MouseClick or MouseDoubleClick events on the parent,
170         not only the Click/DoubleClick events.
171
172 2007-04-24  Andreia Gaita  <avidigal@novell.com>
173
174         * TableLayoutSettings.cs: 
175         - Added a GetControls method and a support structure to help the 
176         TypeConverter to enumerate the controls for     serialization. 
177         - Added a new serialization constructor. 
178         - Added a isSerialized flag initialized to true on the 
179         serialization constructor so that the TableLayoutPanel.LayoutSettings 
180         setter does not throw the designed NotSupportedOperation exception
181         when the object is built through deserialization.
182         - Implemented GetObjectData
183         
184         * TableLayoutPanel.cs: Added check on LayoutSettings.
185
186 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
187
188         * ListView.cs: Report Click and DoubleClick events to the parent
189         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
190         from breaking the click count state when using dialog forms (Control
191         reports the clicks in a similar fashion). In the previous behaviour
192         the last WM_LBUTTONUP message in a  double click was sent to the
193         ListView's form, instead of the ListView, which was breaking the click
194         count for it. Fixes #80387.
195
196 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
197
198         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
199
200 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
201
202         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
203         us from created dropdowns for menu items that do not have subitems.
204         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
205         Check HasDropDownItems before calling DropDown so a dropdown will not be
206         created if it isn't needed.
207
208 2007-04-24  Jackson Harper  <jackson@ximian.com>
209
210         * TreeView.cs: Set the first node to the selected node when we get
211         focus if there is no selected node.
212
213 2007-04-24  Andreia Gaita  <avidigal@novell.com>
214
215         * MimeIcon.cs: remove using blocks so that image streams are
216         not disposed of. Fixes #80151
217
218 2007-04-24  Jackson Harper  <jackson@ximian.com>
219
220         * TextBoxBase.cs: Fixup the height of textboxes when the control
221         is created.
222
223 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
224
225         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
226         for each ToolStripItem when the parent's RightToLeftChanged is called.
227
228 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
229
230         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
231           Fixes #80163.
232         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
233           property, so that the setter can be overriden too.
234         * TextBox.cs: Change GetContextMenuInternal() to use
235           ContextMenuInternal.
236
237 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
238
239         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
240           #81406.
241
242 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
243
244         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
245           #81406.
246
247 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
248
249         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
250           avoid duplicate work. Mostily skeleton code, it's not working at
251           all yet.
252
253 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
254
255         * NotifyIcon.cs : stub for MouseClick event
256         * Application.cs: stub for SetUnhandledExceptionMode
257
258 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
259
260         * BindingNavigator.cs : Initial (partial) implementation
261
262 2007-04-23  Jackson Harper  <jackson@ximian.com>
263
264         * TreeView.cs: Do not create the treeview's handle when setting
265         the scroll position.
266         - ExpandAll needs to compute the scrollbars so it knows which
267         position to set the bar too.
268         * TreeNode.cs: 
269         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
270
271 2007-04-23  Jackson Harper  <jackson@ximian.com>
272
273         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
274         key. Fixes #81408.
275
276 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
277
278         * ToolStripItem.cs: Make GetImageSize internal.
279         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
280         need to draw an item.  Fixes a reported issue where images on menus
281         that were not 16x16 were drawing incorrectly.
282
283 2007-04-21  Miguel de Icaza  <miguel@novell.com>
284
285         * Padding.cs: Use the converter, fixes the resgen2 issue with
286         XMLNotePad. 
287
288 2007-04-21  Jackson Harper  <jackson@ximian.com>
289
290         * TreeView.cs: Dont try to unhighlight the selected node if there
291         isn't a selected node.
292
293 2007-04-21  Jackson Harper  <jackson@ximian.com>
294
295         * UpDownBase.cs:
296         * TextBoxBase.cs:
297         * ListView.cs:
298         * ListBox.cs:
299         * TreeView.cs: Use the InternalBorderStyle property to set the
300         initial border style, this forces the client rectangle to be sized
301         correctly.
302
303 2007-04-20  Jackson Harper  <jackson@ximian.com>
304
305         * TreeView.cs: Simplify scrolling to the last node after expanding
306         all.
307         - Fix some off by ones with setting the bottom.
308
309 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
310
311         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
312         that.  We were incorrectly doing it the other way around.  Also,
313         update ClientSize if we change the BorderStyle before the control
314         is created.
315
316 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
317
318         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
319         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
320         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
321         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
322         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
323         Caption to CaptionHeight.
324         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
325         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
326         and FixedFrameBorderSize to return value from current XplatUI driver.
327         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
328         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
329         and FixedFrameBorderSize using win32 API. Renamed Caption to
330         CaptionHeight.
331         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
332         * SystemInformation.cs: Fixed typo in BorderSize.
333
334 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
335
336         * XplatUI.cs: Added MenuAccessKeysUnderlined.
337         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
338         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
339         returning false.
340         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
341         value from XplatUI driver.
342         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
343         SystemParametersInfo.
344         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
345         override.
346         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
347         returning false.
348
349 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
350
351         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
352
353 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
354
355         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
356
357 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
358
359         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
360         MenuStrips that contain ToolStripSeparators.
361
362 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
363
364         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
365           DefineStdCursorBitmap.
366         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
367           has been created off a standard cursor. This is used to get a
368           bitmap of the standard cursor when Draw or DrawStretched is called
369           in order to draw the cursor.
370         * X11Structs.cs: Added XcursorImage and XcursorImages.
371         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
372           DefineStdCursorBitmap.
373         * Cursors.cs: Update all relevant creations of Cursor to use the new
374           internal constructor.
375
376 2007-04-19  Jackson Harper  <jackson@ximian.com>
377
378         * TextBox.cs: Move the has_been_focused into the base control, so
379         some of the text adding methods can manipulate it (probably time
380         for a better name for this flag too).
381         - Call a new version of selectall that doesn't scroll
382         * TextBoxBase.cs: When we append text, if the document is empty,
383         don't scroll.  If the document has text already, we scroll to the
384         end of the appended text.
385         - When the text is changed, we reset the has_been_focused, so the
386         next time the control gets focused, all the text is selected.
387
388 2007-04-19  Jackson Harper  <jackson@ximian.com>
389
390         * TextControl.cs: Move the margins to the document, add a method
391         so the margin sizes can be updated.
392         * TextBoxBase.cs: When the border style is changed, update the
393         border sizes.
394
395 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
396
397         * Control.cs: Respect DefaultPadding.
398         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
399         padding into account.
400         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
401
402 2007-04-19  Jackson Harper  <jackson@ximian.com>
403
404         * TextControl.cs: Oops, we need to use the ClientRect not the
405         bounds here.
406
407 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
408
409         * ListView.cs: In ItemControl.ItemsMouseDown, take into
410         account the double clicks when CheckBoxes are used and
411         the pointer is inside the checkbox. Fixes part of #81191.
412
413 2007-04-18  Jackson Harper  <jackson@ximian.com>
414
415         * TextControl.cs: Pressing the end key shouldn't move the caret
416         past the line ending.
417         * TextBoxBase.cs: We can still delete if we are in the line
418         ending and the combine will just kill the existing line ending.
419
420 2007-04-18  Jackson Harper  <jackson@ximian.com>
421
422         * TextControl.cs: We can't move lines, then invalidate their
423         bounds, we need to get the old bounds and combine that with the
424         new bounds.
425         * TextBoxBase.cs: Before combining two lines for a delete, we need
426         to invalidate the area of the old line, since that will be moved
427         in the combine operation.
428
429 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
430
431         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
432         with transparent background. Fixes #80482.
433
434 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
435
436         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
437         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
438         [Fixes bug #81391]
439
440 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
441
442         * CreateParams.cs: Add a couple of helper methods and do a less string
443           concatenation in ToString.
444         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
445           overload that takes a Control parameter, since this method may be
446           called before a control is assigned to the hwnd (from
447           CreateWindow), and update CreateWindow to use the new overload. In
448           GetMenuOrigin subtract the title bar from the y position if the
449           form has a window manager (since we're painting it and not X).
450         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
451           CreateParams to calculate the origin (since border sizes may vary).
452           In ScreenToMenu only subtract the title height if we actually have
453           a title.
454         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
455           mdi children never have menus of themselves.
456         * InternalWindowManager.cs: Implement menu handling like form does.
457           Added GetMenuOrigin to calculate the menu origin, can't use the
458           CreateParams from the form like normally since it's lying.
459         * Hwnd.cs: Implement GetBorderSize better (in the sense more
460           windows-like) and add Inflate and comparison operators to the
461           Borders type. When calculating MenuOrigin and it's a form with a
462           window manager, use the window manager to calculate it.
463
464 2007-04-17  Chris Toshok  <toshok@ximian.com>
465
466         * Control.cs (CreateControl): turns out in 2.0 we don't need this
467         OnBindingContextChanged thing here.  It's only generated from
468         ContainerControl.OnCreateControl.  Fixes a newly written unit test
469         - BindingTest.BindingContextChangedTest4.
470         
471 2007-04-17  Jackson Harper  <jackson@ximian.com>
472
473         * ScrollBar.cs: When setting values, make sure the current
474         position stays within the new values range.
475
476 2007-04-17  Chris Toshok  <toshok@ximian.com>
477
478         * Control.cs (CreateControl): talk about a bizarre corner case.
479         Don't emit OnBindingContextChanged here if we're a parentless
480         control (i.e. if we're a form.).  Fixes
481         BindingTest.BindingContextChangedTest2.
482
483 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
484
485         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
486         from win32. Fixes #81255.
487
488 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
489
490         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
491         already present in CalculateButtonTextAndImageLayout.
492
493 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
494
495         * XplatUIX11.cs: When setting min/max size for a window we need to
496           translate the coordinates to x coordinates. Create an overload of
497           SetWindowMinMax that takes a CreateParams handling this, and change
498           SetWMStyles to call this function (can't use Control.FromHandle in
499           the SetWindowMinMax to get the control/CreateParams from the handle
500           because the handle might not have been assigned to the control
501           yet). Fixes #81371.
502
503 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
504
505         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
506         if StateImageList is non-null and it has less than two items (match MS
507         behaviour). Also, in HandleNavKeys handle the Space key, calling
508         the new ToggleItemsCheckState method, which tries to change the
509         checked state of the selected items. Fixes part of #81191.
510
511 2007-04-16  Jackson Harper  <jackson@ximian.com>
512
513         * RichTextBox.cs: namespace cleanup.
514
515 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
516
517         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
518
519 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
520
521         [Fixes #79447]
522         * Control.cs: Call invalidate in set_Region.
523
524         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
525         it dont works here.
526
527 2007-04-16  Jackson Harper  <jackson@ximian.com>
528
529         * TextBoxBase.cs: When enter is pressed, we need to update all
530         lines below the current.
531
532 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
533
534         * MdiClient.cs: Implement implicit menu merging for MDI
535         children.  When a child form is active, if it has a menustrip
536         and the parent form has a MainMenuStrip, automatically merge
537         the menus.
538
539 2007-04-15  Andreia Gaita  <avidigal@novell.com>
540
541         * TabControl.cs: Refactored sizing methods to not repeat
542         code all over the place. Tab bounds are now calculated
543         as if alignment is top and single line, and only when 
544         setting the bounds are the positions adjusted according
545         to alignment. Replaced hardcoded positions, spacings and
546         paddings by getting the values the ThemeEngine. 
547         Fixes #79619.
548         
549         * Theme.cs: Change TabControl properties and methods so
550         that all start with TabControl*. Added more properties
551         to help remove hardcoded values on tabcontrol.
552         Add CPDrawBorder3D declaration so the Theming classes
553         can access it.
554         
555         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
556
557         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
558         on the Theming namespace, and call the appropriate methods here.
559         Change CPDrawBorder3D to public.
560
561 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
562
563         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
564         the control after firing the OnMouseUp event, instead of sending
565         the message before the mentioned event. This is so we can match the
566         MS behaviour. Fixes part of #80385.
567
568 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
569
570         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
571         RightToLeft property.
572
573 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
574
575         * ToolStrip.cs: Add properties and internal methods to support merging.
576         * ToolStripItem.cs: Add MergeAction and MergeIndex.
577         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
578         not trigger reparenting or layouts.
579         * ToolStripManager.cs: Add Merge and RevertMerge methods.
580         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
581         is hosting the overflow menu.
582
583 2007-04-13  Jackson Harper  <jackson@ximian.com>
584
585         * TextControl.cs: Set the line ending correctly for the first
586         inserted line.
587
588 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
589
590         * Theme.cs: Update GetMethod to get the new definition for 
591         KnownColors.Update (and fix theme color updates).
592
593 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
594
595         * MessageBox.cs: Fix some test and button position.
596
597 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
598
599         * Form.cs: Consider the implicit controls in
600         GetRealChildAtPoint. We need it since this method
601         is called on Form when handling the some messages in
602         WndProc, and need to consider those implicit ones too.
603         Fixes #80385.
604
605 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
606
607         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
608         if there are no ShortcutKeys set.
609         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
610         set, use it when painting.
611
612 2007-04-12  Jackson Harper  <jackson@ximian.com>
613
614         * TextControl.cs: Fix some off-by-one issues in line duplication
615         and insertion in the undo manager. Also, overwrite the first tag
616         of a line on insert, if it is just a zero lengthed tag. This
617         prevents us from getting an extra stranded tag at the beginning of
618         the first line.
619
620 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
621
622         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
623         to calculated proper size including when handle was not created yet.
624
625 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
626
627         * MdiWindowManager.cs: When moving a form, allow the form to be moved
628           when the mouse is outside of it's parent's client rectangle. Fixes
629           #79982 (take 3, part 2).
630
631 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
632
633         * X11Structs.cs: Add a few ToString() overrides.
634         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
635           the window location in a window-manager independent way. Reworked
636           FrameExtents, it now actually works. Reworked AddConfigureNotify
637           and ReparentNotify handling to use GetTopLevelWindowLocation
638           instead of the earlier, more hacky solution. Reworked SetWMStyles,
639           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
640           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
641           for all other windows (fixes #81281 part 1), a toolwindow is hidden
642           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
643           and generally refactored to do as few calculations as possible
644           inside the lock.
645
646 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
647
648         * Theme.cs: Change "reflective-contract" between MWF and SD to 
649         minimize # of calls, avoid Color serialization and avoid updating 
650         every "known colors" each time a single one is updated.
651
652 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
653
654         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
655         when not readonly and the text is explicitly set. Code style updates.
656         * DataGridTableStyle.cs: Removed extra line.
657         * DataGrid.cs: Code style updates. Removed extra whitespace.
658         * DataGridColumnStyle.cs: Code style updates. Removed extra 
659         whitespace.
660
661 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
662
663         * XplatUIX11.cs: Added comment that "fixes" #80021.
664
665 2007-04-09  Jackson Harper  <jackson@ximian.com>
666
667         * TextControl.cs: We don't need this -1 on the line count anymore.
668
669 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
670
671         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
672         entered value to underlying type, and convert it back to a string to
673         apply formatting. Modified GetFormattedValue to use TypeConverter
674         if available.
675
676 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
677
678         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
679         Use SubItems property when we want to ensure there's at least one
680         subitem. Modified SubItems property to ensure there's always at least
681         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
682         the NRE's reported by MS.
683
684 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
685
686         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
687         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
688         Spaces to tabs. Removed extra tabs.
689
690 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
691
692         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
693         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
694
695 2007-04-06  Jackson Harper  <jackson@ximian.com>
696
697         * TextBoxBase.cs: When a delete removes a line, recalculate all
698         lines below that line (they need to get offsets setup correctly)
699         and invalidate.
700
701 2007-04-05  Jackson Harper  <jackson@ximian.com>
702
703         * TextControl.cs: We need to invalidate across the width of the
704         document when we are invalidating multiple lines.
705         * TextBoxBase.cs: Don't delete into the line ending.
706
707 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
708
709         * ListView.cs: Restore the check for the MouseHover event
710         in ListView. It looks like the ListView fires more than one MouseHover
711         event when HoverSelection is true  _only_ in weird-corner scenarios, but
712         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
713         event.
714
715 2007-04-05  Mike Kestner  <mkestner@novell.com>
716
717         * ListView.cs : raise MouseDown before updating selection.
718         [Fixes #80373 tab 1&3]
719
720 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
721
722         * ToolStripRenderer.cs: Add static method to mirror image.
723         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
724         and RightToLeftAutoMirrorImage.
725         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
726
727 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
728
729         * ToolStripSplitStackLayout.cs: Support Alignment property.
730         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
731
732 2007-04-05  Jackson Harper  <jackson@ximian.com>
733
734         * TextControl.cs: Move around the line endings when crossing line
735         boundaries.
736         - When combining lines, strip the ending text off the first line.
737
738 2007-04-05  Jackson Harper  <jackson@ximian.com>
739
740         * TextControl.cs:
741         * TextBoxBase.cs: Try to never move the cursor into the line
742         ending.
743         
744 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
745
746         * ToolStripItem.cs: Make sure we aren't firing mouse events when
747         the item is disabled.  Also add a few missing methods.
748
749 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
750
751         * ListView.cs: We don't need the MouseEnter/MouseLeave check
752         to fire just one MouseHover event when HoverSelection is true, since
753         .Net does fire more than one MouseHover event in that scenario. Also,
754         fix the selection in HoverSelection, by invoking UpdateMultiSelect
755         if MultiSelect is true, instead of only setting ListViewItem.Selected.
756         Finally, we need to reset the Hover logic in MouseMove, even when we
757         don't have a selected item.
758
759 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
760
761         * ToolStrip.cs: Add several missing methods, properties, and events.
762
763 2007-04-04  Chris Toshok  <toshok@ximian.com>
764
765         * DataGridTextBoxColumn.cs: set the bounds of the text box to
766         (0,0,0,0) in Commit, as MS does.
767
768         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
769         make sure we set CurrentRow on a row header click *before* calling
770         Select.  This moves the current cell (and the textbox) to the new
771         row.  The call to Select then hides the textbox, giving us the
772         correct behavior.  Fixes #80362.
773
774         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
775         (ListChangedHandler): reorder the position/current changed events,
776         and call UpdateIsBinding in the ItemAdded case.
777
778         * GridColumnStylesCollection.cs: add some columns events, one of
779         which raises the CollectionChanged event.
780
781 2007-04-04  Jackson Harper  <jackson@ximian.com>
782
783         * TextControl.cs: When we delete multiple selection lines
784         invalidate the selection area, don't need to do that for single
785         lines because the final update view will handle it.
786
787 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
788
789         * Control.cs: When we CreateControl, we need to also create all of the
790         control's children.  The child's OnLoad must also fire before the parent's
791         OnLoad.  Fixes the toolbox size in PDN.
792
793 2007-04-04  Jackson Harper  <jackson@ximian.com>
794
795         * TextBoxBase.cs: When the user presses enter, insert a line
796         ending into the text. (Maybe this would be a good spot for
797         Environment.NewLine).
798         * TextControl.cs: Remove undo manager hack, line endings get
799         inserted properly now.
800         
801 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
802
803         * MenuAPI.cs: 
804         - Remove unneeded parameters in UpdateCursor.
805         - Fix UpdateCursor to check if menu is active.
806         - Call UpdateCursor when menu deactivate my click.
807         [Fixes remaining issues from #80410]
808
809 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
810
811         * Control.cs: GetRealChildAtPoint method added, it make an
812         recursive child control search for the point. 
813
814         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
815         menu.
816
817         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
818
819 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
820
821         * Form.cs: Fix mouse position when send back mouse event after closes
822         menu.
823
824 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
825
826         * Form.cs: Simplify the BUTTONDOWN for active tracker.
827
828 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
829
830         * Control.cs: Fix an issue where if a user resized a control inside
831         a sizing method like OnResize, we would overwrite their explicit
832         value.  Also, only call DefaultSize once in the constructor instead
833         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
834         nothing actually changed.
835
836 2007-04-03  Jackson Harper  <jackson@ximian.com>
837
838         * TextControl.cs: Don't attempt to copy text for lines with no
839         text in them (technically this shouldn't happen, but we aren't
840         always inserting line endings when we should be).
841
842 2007-04-03  Jackson Harper  <jackson@ximian.com>
843
844         * TextBoxBase.cs: Calculate the scrollbars before calculating the
845         document, because this sets some of the document size properties
846         that are needed.
847
848 2007-04-03  Jackson Harper  <jackson@ximian.com>
849
850         * TextBoxBase.cs: We need to calculate maximums even if this is
851         not a multiline control, because the maxs are used for scrolling.
852         - Display the caret after doing a page up/down, we need to
853         manually display it because a proper CaretMoved event isn't
854         triggered (this is because of the way the math is done to
855         determine how far to scroll).
856
857 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
858
859         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
860         (ToolBar was relying on SetBoundsCore to default the values sent 
861         base off of BoundsSpecified.)
862
863 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
864
865         * DateTimePicker.cs: Change Text so that when a null value or empty
866           string is assigned to the test we always raise ValueChanged and
867           TextChanged (earlier implementation would only raise ValueChanged
868           if the current date value was different from DateTime.Now).
869
870 2007-04-03  Andreia Gaita <avidigal@novell.com> 
871
872         * ButtonBase: Call update after invalidation, fixes #80194
873
874 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
875
876         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
877           #79335.
878
879 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
880
881         * XplatUIX11.cs: SetWMStyles: If the control is a form with
882           FormBorderStyle = None, don't give the window any decorations.
883           Fixes #81276.
884
885 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
886
887         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
888         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
889           to check for is a mix of several styles (such as WS_CAPTION for
890           instance).
891         * Control.cs: Don't paint an area bigger than the client area when
892           painting the background colour. Add an internal GetCreateParams.
893           Update calls to XplatUI.CalculateWindowRect due to API change.
894         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
895           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
896           the size if it hasn't been handled by any windows. When creating
897           and moving windows, X wants the location of the entire window, but
898           the size of the client window, so add
899           TranslateClientRectangleToXClientRectangle,
900           TranslateWindowSizeToXWindowSIze and
901           TranslatedXWindowSizeToWindowSize to cope with this, and call them
902           before every window creation and move. Update CalculateWIndowRect
903           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
904           In AddConfigureNotify don't do anything if the hwnd is a zombie
905           (fixes the BadWindow we were getting while running the tests),
906           always calculate the offsets when it's a parentless window, not
907           only when reparented, and translate the window size, since we're
908           getting the client size of the whole window, excluding entire
909           window.
910         * Theme.cs: Added BorderSizableSize.
911         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
912           anymore. Update calls to XplatUI.CalculateWindowRect due to API
913           chang
914         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
915           change. Fake the window styles here instead of in XplatUIWin32 so
916           that all back-ends get the same window styles (and it's Form that's
917           deciding when to use wm, not the Win32 backend anyways)
918         * Hwnd.cs: Completely reworked GetWindowRectangle and
919           GetClientRectangle - they are now passed a CreateParams and they
920           only use Style and ExStyle to determine the rectangles (they should
921           now work just like Win32AdjustWindowRectEx - though quite a few
922           special cases are probably missing). They should also be 100%
923           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
924           == rect), and all numbers (borders, menu sizes) are taken from the
925           current theme. Added a GetBorders helper function that will return
926           the borders for any given CreateParams (including captions and
927           menus), and GetBorderSize that returns the given border size only.
928         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
929           Hwnd.GetClientRectangle.
930
931 2007-04-02  Chris Toshok  <toshok@ximian.com>
932
933         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
934         logic between the values we present to the user and the values
935         which are stored in the column's property.  Also, don't call
936         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
937
938 2007-04-02  Jackson Harper  <jackson@ximian.com>
939
940         * TextBoxBase.cs: Scroll faster!
941
942 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
943
944         * StatusStrip.cs: Layout fixes for PDN.
945         * ToolStrip.cs: Set item's available to true, and placement to main when
946         added.
947         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
948         changing in setter before doing any work, add InternalVisible.
949         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
950         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
951         infinite loop.
952
953 2007-04-02  Jackson Harper  <jackson@ximian.com>
954
955         * TextBox.cs: LBUTTON does not make the textbox select all of it's
956         text on focus.
957
958 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
959
960         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
961           Makes ToolStripComboBoxes show up again.
962
963 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
964
965         * ListView.cs: Add a hover_pending field in ListView
966         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
967         cycle (we are resetting the MouseHover logic in XplatUI
968         to handle HoverSelection). Fixes #80429.
969
970 2007-04-02  Jackson Harper  <jackson@ximian.com>
971
972         * TextControl.cs: Make sure the attributes get set on the last
973         tag.
974         - Still have to do the end tag if we have stepped all the ways to
975         the end.
976
977 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
978
979         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
980         on an internal libgdiplus call when the information is already 
981         available via the public API.
982
983 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
984
985         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
986           control is removed from a control collecftion.
987         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
988           Fixes FormPropertyTest (failed on rare occasions).
989         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
990           of Win32SetParent (when changing from no parent to a parent it
991           might add the new parent's location in screen coordinates to this
992           window's location).
993         * Form.cs: Rework ChangingParent once again, now the handle is
994           recreated whenever a FormWindowManager is added or removed (that is
995           whenever a normal form is parented or abandoned). Also change
996           CreateParams so that all non-toplevel windows always get the
997           specified sice (StartupPosition is never considered for
998           non-TopLevel forms).
999         * ContainerControl.cs: Add ChildControlRemoved, the container control
1000           needs to be notified when a control is removed from it's
1001           collection, in the case the removed control is the active control.
1002
1003 2007-04-02  Jackson Harper  <jackson@ximian.com>
1004
1005         * RichTextBox.cs: Use the new methods for setting the font and
1006         color, these methods set the specified attribute without
1007         overriding the other attributes.
1008
1009 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
1010
1011         * ToolStripPanel.cs: Fixes for better layouts in PDN.
1012
1013 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
1014
1015         * TextBox.cs: Added internal ChangeBackColor method to special-case
1016         Color.Empty. Added check for invalid ScrollBars value.
1017         * TextBoxBase.cs: Added internal ChangeBackColor method.
1018         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
1019         internal ChangeBackColor method to special-case Color.Empty. Added
1020         check for invalid ScrollBars value.
1021
1022 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
1023
1024         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
1025
1026 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1027
1028         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
1029         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
1030         [Based on submitted patch from Olivier Duff.]
1031
1032 2007-03-30  Jackson Harper  <jackson@ximian.com>
1033
1034         * TextBox.cs: Only select all on initial focus if the user has not
1035         specified a selection area.
1036
1037 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
1038
1039         * UserControl.cs: Override CreateParams.
1040
1041 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1042
1043         [ Fixes #80995 ]
1044
1045         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
1046         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
1047           check for is a mix of several styles (such as WS_CAPTION for instance).
1048         * Control.cs: Don't paint an area bigger than the client area when painting
1049           the background colour. Add an internal GetCreateParams. Update calls to
1050           XplatUI.CalculateWindowRect due to API change.
1051         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
1052           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
1053           hasn't been handled by any windows. When creating and moving windows, X
1054           wants the location of the entire window, but the size of the client
1055           window, so add TranslateClientRectangleToXClientRectangle,
1056           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
1057           to cope with this, and call them before every window creation and move.
1058           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
1059           removing DeriveStyles). In AddConfigureNotify don't do anything if the
1060           hwnd is a zombie (fixes the BadWindow we were getting while running the
1061           tests), always calculate the offsets when it's a parentless window, not
1062           only when reparented, and translate the window size, since we're getting
1063           the client size of the whole window, excluding entire window.
1064         * Theme.cs: Added BorderSizableSize.
1065         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
1066           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
1067         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
1068           Fake the window styles here instead of in XplatUIWin32 so that all
1069           back-ends get the same window styles (and it's Form that's deciding when
1070           to use wm, not the Win32 backend anyways)
1071         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
1072           they are now passed a CreateParams and they only use Style and ExStyle
1073           to determine the rectangles (they should now work just like
1074           Win32AdjustWindowRectEx - though quite a few special cases are probably
1075           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
1076           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
1077           sizes) are taken from the current theme. Added a GetBorders helper
1078           function that will return the borders for any given CreateParams
1079           (including captions and menus), and GetBorderSize that returns the given
1080           border size only.
1081         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
1082           Hwnd.GetClientRectangle.
1083
1084 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1085
1086         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
1087           layout of the mdi children is handled by CreateParams. Fixes
1088           #79964,
1089
1090 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1091
1092         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
1093         processed.
1094
1095         * Form.cs: When active tracker mouse down is not processed, send event 
1096         back to control inside mouse position. [Fixes #81227]
1097
1098 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1099
1100         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
1101         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
1102         stealing focus from the active form on Windows.  (Control will be made
1103         visible in ShowWindow.)
1104
1105 2007-03-29  Mike Kestner  <mkestner@novell.com>
1106
1107         * ImageList.cs : add internal Changed event.
1108         * ListView.cs : hook up to StateImageList.Changed to perform
1109         invalidations when the the state icon list changes. [Fixes #81191]
1110
1111 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
1112
1113         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
1114         to prevent tooltips from stealing focus from the active form on Windows.
1115
1116 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1117
1118         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
1119
1120         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
1121
1122 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1123
1124         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
1125         balloons.
1126
1127 2007-03-29  Jackson Harper  <jackson@ximian.com>
1128
1129         * TextControl.cs: When deleting text from non multiline textboxes,
1130         we need to update the entire document, because line offsets will
1131         be shifting.
1132
1133 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
1134
1135         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
1136         added to theme, now we can create themes that uses diferent notify engines
1137         like notification-daemon from galago project or growl for Mac OS.
1138
1139 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1140
1141         * NotifyIcon.cs: Prevent Balloon to show in task bar.
1142
1143 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1144
1145         * XplatUIX11.cs: Prevent system to open more than one balloon.
1146
1147         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
1148         some compiler warning messages.
1149
1150 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
1151
1152         [Fixes #79149]
1153
1154         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
1155
1156         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
1157         implemented, this methods is used by NotifyIcon.BalloonWindow class.
1158
1159         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
1160         systems.
1161
1162 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1163
1164         * ListViewItem.cs: Forgot to make Invalidate internal.
1165
1166 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1167
1168         * ListView.cs: Add a InvalidateSelection method to
1169         invalidate methods which are currently selected, and call
1170         it when setting FullRowSelect and HideSelection, instead of
1171         calling Redraw.
1172
1173 2007-03-28  Chris Toshok  <toshok@ximian.com>
1174
1175         * XplatUIX11.cs (UnmapWindow): reindent this block.
1176
1177         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
1178         the selection_start if we're moving the selection (that is, not
1179         extending it). Fixes bug #80461.
1180
1181 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1182
1183         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
1184         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
1185         create private ControlCollection.
1186
1187 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1188
1189         * Control.cs: We need to call OnVisibleChanged for our implicit
1190         children as well as our normal children.  Fixes scrollbars in
1191         comboboxes not showing up.
1192
1193 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1194
1195         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
1196         the check for IsHandleCreated first.  The check in CreateHandle is not
1197         good enough because CreateHandle can be overriden, and the override 
1198         should not be called if the handle is already created.
1199
1200 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
1201
1202         * ToolStrip.cs: Remove MonoTODO for tooltips.
1203         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
1204         * ToolStripContainer.cs: Add custom ControlCollection class.
1205         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
1206         * ToolStripDropDown.cs: Add some missing properties/methods.
1207         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
1208         * ToolStripItem.cs: Remove MonoTODO for tooltips.
1209         * ToolStripManager.cs: Add IsShortcutDefined.
1210         * ToolStripOverflow.cs: Override LayoutEngine.
1211         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
1212         * ToolStripSeparator.cs: Add ImageKey.
1213
1214 2007-03-28  Jackson Harper  <jackson@ximian.com>
1215
1216         * TextControl.cs: If a char delete removes a line ending, we need
1217         to update the ending style.
1218         - Make sure the line ending calcs get called.
1219
1220 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1221
1222         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
1223           it was making the new code not work. Fixed a typo in the new code
1224           as well. Fixes #79826.
1225
1226 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1227
1228         * XplatUIWin32.cs:
1229         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
1230         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
1231         - SystrayBalloon method implemented.
1232         [Add support for notifyicon balloon on win32, #79149]
1233
1234 2007-03-27  Mike Kestner  <mkestner@novell.com>
1235
1236         * ThemeWin32Classic.cs : update StateImageList selection to mirror
1237         the ms behavior when only one image is added to the list.
1238         [Fixes #81191]
1239
1240 2007-03-27  Jackson Harper  <jackson@ximian.com>
1241
1242         * TextControl.cs: Improvements to non multiline line ending
1243         drawing/measuing.
1244
1245 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1246
1247         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
1248
1249 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1250
1251         * NotifyIcon.cs: 
1252         - Balloon message handling added.
1253         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
1254
1255         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1256         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
1257         to SystrayBalloon to me like other Systray method, also a
1258         handle parameter added.
1259
1260 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1261
1262         * ListView.cs: Show scrollbars even when items.Count == 0
1263         but the columns Width is bigger than the ListView.Width.
1264         Also, when columns.Count == 0 set layout_wd and layout_ht
1265         to the ClientRectangle values, so we don't show any scrollbar
1266         in that case.
1267
1268 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1269
1270         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
1271
1272 2007-03-27  Jackson Harper  <jackson@ximian.com>
1273
1274         * RichTextBox.cs: The RTF library decodes the text properly for us
1275         now.
1276
1277 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1278
1279         * ListView.cs: Display HeaderControl even when columns.Count == 0.
1280         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
1281         ListView header (HeaderControl), instead of Control.BackColor.
1282
1283 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1284
1285         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
1286         Fixes tab control issues where controls would not show up because they
1287         never received their OnVisibleChanged call.
1288
1289 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
1290
1291         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
1292         BalloonTipShown).
1293
1294 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
1295
1296         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
1297         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
1298         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
1299         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
1300         the handle.  Fix WindowState by using the internal variable until we are 
1301         sure that we've been shown.
1302         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
1303         max or min.
1304         [Fixes bug #81198]
1305
1306 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1307
1308         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
1309           (at least borders). Fixes #79386 on Linux (with a small difference
1310           in behaviour: when trying to resize a caption-less window metacity
1311           shows the sysmenu. Resizing is still possible though).
1312         * XplatUIWin32.cs: When setting window styles send request an extra
1313           WM_NCCALCSIZE when it's a form without title (due to no text and no
1314           caption), since Win32 seems to calculate it wrong the first time we
1315           get the message, though the second time things work as they should.
1316         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
1317           newly reparented window might show up unparented. Update
1318           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
1319           there's no title text. Fixes #79386.
1320
1321 2007-03-27  Mike Kestner  <mkestner@novell.com>
1322
1323         * ListBox.cs : don't perform invalidations if the handle hasn't been
1324         created.  [Fixes #80753]
1325
1326 2007-03-27  Mike Kestner  <mkestner@novell.com>
1327
1328         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
1329         [Fixes #80428]
1330
1331 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1332
1333         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
1334         needed to implement Balloon.
1335
1336 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1337
1338         * ListViewItem.cs: In the constructors that take
1339         an array of strings, don't use ListViewSubItemCollection.AddRange
1340         method to add items, since we need to have a different behaviour (in
1341         the constructors we add an item for each null string, opposed to
1342         the behaviour of AddRange, which adds nothing).
1343
1344 2007-03-26  Andreia Gaita  <avidigal@novell.com>
1345
1346         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
1347
1348 2007-03-26  Jackson Harper  <jackson@ximian.com>
1349
1350         * TextControl.cs: Draw and measure line endings when in non
1351         multiline mode.
1352         - When searching the text, count the end of the last line as a
1353         word boundary.
1354
1355 2007-03-26  Jackson Harper  <jackson@ximian.com>
1356
1357         * RichTextBox.cs: The selection_start and selection_end don't
1358         really track the correct tags for the selection. So we'll manually
1359         compute the correct tag here.
1360
1361 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1362
1363         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
1364           and Continuous styles. Fixes #79469.
1365
1366 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1367
1368         * ToolStrip.cs: Implement Tooltips.
1369         * ToolStripItem.cs: Create internal method for determining tooltip.
1370
1371 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
1372
1373         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
1374
1375 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1376
1377         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
1378         it prevents a problem thak keeps icon visible after application 
1379         closes on win32.
1380
1381 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
1382
1383         * NotifyIcon.cs: Balloon properties and methods created.
1384
1385         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
1386         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
1387
1388 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
1389
1390         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
1391
1392 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1393
1394         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
1395         parameter indicates which aspects were explicit/user-set.
1396         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
1397
1398 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
1399
1400         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
1401         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
1402         SmallChange, and Value (2.0).
1403         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
1404
1405 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1406
1407         * ListView.cs: Always set item_control.Width in LayoutDetails
1408         if View is Details. Setting it later in CalculateScrollBars
1409         in a not-so-corner scenario (the sum of columns width is
1410         not bigger than the ListView width when handle is created, and then
1411         that sum gets bigger by increasing the width of the columns)
1412         causes a very weird recursion path (which shouldn't be happening,
1413         since header_control sets it in CalculateScrollBars too). This bug
1414         appeared after Chris' fixes for handle created issues, so probably
1415         it's related to some handle-creation time.
1416
1417 2007-03-23  Chris Toshok  <toshok@ximian.com>
1418
1419         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
1420         case where there's an add row, just so we don't end up in a case
1421         where it's not displayed (this happens when the row is partially
1422         obscured).  Fixes bug #79574.
1423
1424 2007-03-23  Jackson Harper  <jackson@ximian.com>
1425
1426         * TextControl.cs:
1427         * TextBoxBase.cs:
1428         * RichTextBox.cs: Preserve line endings in the lines text buffer,
1429         also added an enum that represents the line ending type. 
1430
1431 2007-03-23  Andreia Gaita  <avidigal@novell.com>
1432
1433         * NumericUpDown.cs: Fix logic so Text and Value properties are not
1434         messed with in every method call, but only from DownButton, 
1435         UpButton, UpdateEditText() and ValidateText. Fixes #80346
1436
1437 2007-03-23  Chris Toshok  <toshok@ximian.com>
1438
1439         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
1440         format objects if the format spec is "".  Fixes bug #80889.
1441
1442 2007-03-22  Miguel de Icaza  <miguel@novell.com>
1443
1444         * ToolStripPanel.cs (Join): added stubs to build PDN3
1445
1446         * Control.cs (AutoScrollOffset): Add.
1447
1448         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
1449         property, its only implemented for Win32, on X11 it defaults to
1450         some hardcoded value.
1451
1452         * ToolStripItem.cs (AllowDrop): Add property
1453
1454 2007-03-22  Mike Kestner  <mkestner@novell.com>
1455
1456         * ListView.cs : in FullRowSelect Details mode, only enable box
1457         selection if the user clicks over the "item" column outside of the
1458         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
1459
1460 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1461
1462         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
1463           handle is not created yet.
1464         * Form.cs: Select: Don't call CreateHandle if the handle is already
1465           created, avoids a stack overflow on Windows when we are recreating
1466           controls.
1467         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
1468           they are made visible, and override AfterTopMostControl to keep
1469           them on top when other controls are brought to front.
1470           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
1471           or force_*scroll_visible is true (old implementation always shows
1472           scrollbars when needed, no matter what auto_scroll was set to).
1473         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
1474           IsHandleCreated check.
1475
1476 2007-03-22  Andreia Gaita  <avidigal@novell.com>
1477
1478         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
1479         row or col separator.
1480         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
1481
1482 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1483
1484         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
1485
1486 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1487
1488         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
1489         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
1490         every time. Fixes #80410.
1491
1492 2007-03-22  Chris Toshok  <toshok@ximian.com>
1493
1494         * BindingSource.cs (AddNew): partially implement.
1495
1496         remove a couple of NotImplementedException's
1497         to get bug #81148 closed.
1498
1499 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
1500
1501         [Fixes #80380]
1502         
1503         * Control.cs:
1504         - UpdateCursor method added to update the screen cursor.
1505         - GetAvailableCursor method added to return cursor for enabled tree,
1506         it searches for cursor on control and it's parent's for enabled control.
1507         - Call UpdateCursor method on setter of Cursor property.
1508         - On setter of Enabled call UpdateCursor when it is false, we need to
1509         change cursor to normal (or to this parent cursor) because cursor 
1510         setting theres no effect to disabled controls.
1511         - Some minor source changes to follow the coding style guidelines.
1512
1513         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
1514         controls.
1515
1516 2007-03-22  Chris Toshok  <toshok@ximian.com>
1517
1518         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
1519         generates.
1520
1521 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1522
1523         * XplatUIX11.cs: Implement default locations for forms.
1524         * Form.cs: Completely rework startup location for forms. Fixes #79964.
1525         * Hwnd.cs: Add previous_child_startup_location (to track the current
1526           startup location for any child forms of the current form) and
1527           previous_main_startup_location (to track the startup location for
1528           the current toplevel form).
1529
1530 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1531
1532         * Control.cs: Don't trigger a layout if an implicit control is added
1533         that isn't visible.  Also, don't notify the owner when an implicit control
1534         is added.  (Owners shouldn't even know about their implicit controls.)
1535
1536 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1537
1538         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
1539         to save some re-layouts.
1540
1541 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
1542
1543         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
1544         [Fixes #81203]
1545
1546 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
1547
1548         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
1549         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
1550
1551 2007-03-21  Mike Kestner  <mkestner@novell.com>
1552
1553         * ListView.cs : disable selection update for non-left button clicks
1554         with mods and over selected items.  [Fixes #80524]
1555
1556 2007-03-20  Jackson Harper  <jackson@ximian.com>
1557
1558         * TextControl.cs:
1559         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
1560         \r\r\n, \n.
1561
1562 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1563
1564         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
1565           very probably a more complicated calculation there. Update the
1566           textbox' ForeColor and BackColor when the ComboBox' colors are
1567           changed. Change the border change in LayoutComboBox to only affect
1568           the textbox, not all the calculations there. Seems to fix most of
1569           #79436.
1570
1571 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1572
1573         * ComboBox.cs: Handle Home and End keys as well as all combinations of
1574           modifiers + navigation keys as input keys, enables advanced text
1575           selection in the combobox (like Shift+Left Arrow for instance).
1576           ComboTextBox now overrides Focused and returns whatever
1577           ComboBox.Focused returns, since it really should be focused
1578           whenever the ComboBox is. Fixes #80795. Also make the border around
1579           the text box one pixel bigger, as mentioned in #79436.
1580
1581 2007-03-20  Jackson Harper  <jackson@ximian.com>
1582
1583         * TreeView.cs: Don't offset the images, this was causing some
1584         artifacts when expanding/collapsing with images that were the
1585         exact height of the treenode.
1586
1587 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1588
1589         * TrackBar.cs: Query the theme for the correct value when the mouse
1590           moves and the thumb is pressed. 
1591         * Theme.cs: Added TrackBarValueFromMousePosition
1592         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
1593           implementation was updating the trackbar value when drawing, now
1594           the drawing methods only draw. Fixes #80900. Refactored the
1595           calculations out to TrackBarValueFromMousePosition and
1596           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
1597           according to the mouse position whenever it wants to. Changed the
1598           light coloured pen when drawing the thumb from ControlLight to
1599           ControlLightLight, because the ControlLight is the same colour as
1600           the background so the 3D effect is lost. 
1601
1602 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1603
1604         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
1605         defined. Fixes #80784.
1606
1607 2007-03-20  Marek Habersack  <mhabersack@novell.com>
1608
1609         * ContextMenuStrip.cs: align with the change introduced in
1610         revision 74664.
1611
1612 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1613
1614         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
1615         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
1616         in SetTopmost.
1617
1618 2007-03-19  Chris Toshok  <toshok@ximian.com>
1619
1620         * Control.cs (WmPaint): don't make use of the Handle property
1621         after an event is emitted, as the user could have closed the
1622         form/destroyed the control.  Store the Handle in a local variable
1623         and make use of that.  Fixes bug #80768.
1624
1625 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1626
1627         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
1628         behavior in X11 environments.
1629
1630 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1631
1632         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
1633         because on setter of topmost we dont call SetTopmost when handle is not
1634         created.
1635
1636 2007-03-20  Jackson Harper  <jackson@ximian.com>
1637
1638         * TextControl.cs: Need to use SelectionLength () not
1639         selection_length, since that var is reset to -1.
1640         - Draw the caret when we don't have focus.
1641         * TextBox.cs: The selectall actually doesn't occur until the first
1642         focus.
1643         * TextBoxBase.cs: Need to update the caret position after a
1644         selectall.
1645         
1646 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1647
1648         * ListView.cs: Enable scrolling when using Tile view.
1649
1650 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
1651
1652         [Fixes #80902]
1653
1654         * XplatUIDriver.cs: Abstract SetOwner method created.
1655
1656         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
1657         must be implemented and was masked as todo.
1658
1659         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
1660         GWL_HWNDPARENT.
1661
1662         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
1663         cheking for null owner to remove transient. The SetTopmost will be change
1664         on a decond step.
1665
1666         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
1667         SetTopmost. Now owned forms will work properly in win32 and X11.
1668
1669 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1670
1671         * MdiWindowManager.cs: Update function name.
1672         * Form.cs: After closing a form MdiParent is always null.
1673         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
1674           better what it should do: necessary book-keeping when the form is
1675           closed, it should not close the form itself.
1676
1677 2007-03-19  Andreia Gaita  <avidigal@novell.com>
1678
1679         * ListViewItem.cs: Fix back and fore color. The subitems only
1680         use their own colors if they are set, otherwise use the listview's
1681         colors. Don't set default colors on constructor for subitem.
1682         Fixes #79315.
1683
1684 2007-03-19  Mike Kestner  <mkestner@novell.com>
1685
1686         * ListView.cs : make box selection for Details views with 
1687         FullRowSelect conform to MS behavior when clicking in the "item" 
1688         column and clicking outside the defined columns.
1689         [Fixes case 5-6 of #80374]
1690
1691 2007-03-19  Chris Toshok  <toshok@ximian.com>
1692
1693         * ScrollableControl.cs: create the controls from within the ctor,
1694         but don't actually add them until our handle is created.  this
1695         fixes a NRE possibility jpobst found (if you override OnLayout in
1696         a subclass, it's called before your ctor).  Also, add a
1697         IsHandleCreated guard to UpdateSizeGripVisibility as well.
1698
1699 2007-03-19  Jackson Harper  <jackson@ximian.com>
1700
1701         * TextBox.cs: Reduce the amount of invalidation we do.
1702         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
1703         some of them are true by default on MS.
1704         - Add some functions to reduce the amount of invalidates we do.
1705         * TextControl.cs: Less invalidation.
1706
1707 2007-03-19  Chris Toshok  <toshok@ximian.com>
1708
1709         [ Fixes #81773, and *seems* to fix #81553 as well ]
1710
1711         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
1712         AccumulateDestroyedHandles.  We need to do it *after* we send
1713         WM_DESTROY, as the user's code can access Control.Handle in
1714         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
1715         move the WM_DESTROY/zombie handling to before the call to
1716         XDestroyWindow.  For some reason without this ordering
1717         FormTest.RecreateHandle hangs.  This ordering is semantically
1718         equivalent, however, as XDestroyWindow is async anyway.
1719
1720 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
1721
1722         * RichTextBox.cs: Reset backcolor_set after setting default.
1723
1724 2007-03-19  Chris Toshok  <toshok@ximian.com>
1725
1726         * ScrollableControl.cs: the scroll position should not effect the
1727         canvas size.  commit patch from georgegiolfan@yahoo.com, which
1728         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
1729         
1730 2007-03-19  Chris Toshok  <toshok@ximian.com>
1731
1732         * ScrollableControl.cs: clean this up a bit.  create the
1733         scrollbars in the ctor and just show/hide them as needed.  Also,
1734         make hscroll_visible/vscroll_visible internal to Recalculate, and
1735         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
1736         everywhere else.  This seems to fix the scrollbars appearing
1737         beneath the content for me (i have *no* idea why that is,
1738         however.)
1739
1740 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
1741
1742         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
1743         some redundacy for stuff in Anchor and Dock that base will take care of.
1744         [Fixes #80762]
1745
1746 2007-03-19  Mike Kestner  <mkestner@novell.com>
1747
1748         * ListView.cs : make box selection for Details views without 
1749         FullRowSelect dependent on the text bounds, not item bounds.
1750         * ListViewItem.cs : add an internal property to obtain the TextBounds
1751         in Details view.  [Fixes case 1-4 of #80374]
1752
1753 2007-03-19  Andreia Gaita  <avidigal@novell.com>
1754
1755         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
1756         we're < 2.0. #78448 && #80316
1757
1758 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
1759
1760         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
1761         have the same style available as the previously selected one.  Also,
1762         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
1763
1764 2007-03-19  Jackson Harper  <jackson@ximian.com>
1765
1766         * TextControl.cs: Add an alignment property that all new lines
1767         will be given.
1768         - Make sure to use the align shift when calculating the line's X
1769         position.
1770         * TextBox.cs: Set the alignment on the document as well as on all
1771         the document lines.
1772
1773 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1774
1775         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
1776           throw if setting the parent of an mdichild that already has an
1777           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
1778           AssemblyProductAttribute in the assembly, use the type's namespace (as
1779           MS seems to do). CreateControl: don't create the handle if the control
1780           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
1781           create handle if the control is not a form. Change FocusInternal to
1782           virtual so that it can be overriden by Form.
1783         * TextBox.cs: Update call to FocusInternal.
1784         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
1785           form is not a toplevel form when it's a mdi child, so update is_toplevel
1786           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
1787           hasn't been created. Show (IWin32Window): Don't allow this overload for
1788           toplevel windows. CenterToParent/CenterToScreen/Select: create the
1789           handle as MS does. SetVisibleCore: if called on a MdiChild and the
1790           parent isn't visible yet, save the visibility and restore it when the
1791           parent is made visible.
1792         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
1793           methods, since the visibility of the scrollbars can be changed from
1794           several places, not only from AutoScroll.
1795           [Fixes #81179]
1796
1797 2007-03-19  Jackson Harper  <jackson@ximian.com>
1798
1799         * RichTextBox.cs: Enable shortcuts by default.
1800         * TextBoxBase.cs: Add conditional shortcuts.  
1801
1802 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1803
1804         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
1805
1806 2007-03-19  Chris Toshok  <toshok@ximian.com>
1807
1808         [ Fixes bug #80604]
1809         
1810         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
1811         swallow the message we're waiting on, instead of delivering it, as
1812         this is only used for the WM_SHOWWINDOW raised from
1813         MapWindow/UnmapWindow, and the message needs to be generated
1814         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
1815         before doing the Map/Unmap.  Also make sure that the Hwnd is still
1816         alive after the message has been handled.
1817
1818         *before* the window is shown.
1819
1820         * Control.cs (CreateControl): guard a few more things inside the
1821         if (!is_created) block, as we might end up being called again -
1822         yay .net.
1823         (WmShowWindow): call CreateControl if we're showing the control.
1824
1825 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1826
1827         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
1828           controls without a handle if they have any parent with a handle. In
1829           Dispose add a check whether the handle is created or not before
1830           calling BeginInvoke, this removes the need of the extra disposing
1831           parameter (which was bogus anyway since it didn't prevent the
1832           invoke from happening, it only skipped the check for an existing
1833           handle, meaning that the invoke would call on an inexistent
1834           handle).
1835
1836 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1837
1838         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
1839         appears in taskbar.
1840
1841 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
1842
1843         * MessageBox.cs:
1844         - Fixed a problem that dont show help button for messages with 3 buttons.
1845         - Refactory button size and position calculations, now dont use fixed 
1846         values, also fixed button sizes (#80043) and form's border space.
1847         - AddButton method created, now all other AddButton methods call this one.
1848         - Some other source code cosmetic changes.
1849
1850 2007-03-18  Jackson Harper  <jackson@ximian.com>
1851
1852         * RichTextBox.cs: Don't do this all fonts must match check if
1853         there is only one char selected.
1854
1855 2007-03-18  Jackson Harper  <jackson@ximian.com>
1856
1857         * TreeView.cs: ScrollWindow works properly now, so we don't need
1858         to screw around with the scroll area.  This fixes some artifacts
1859         when expanding and collapsing.
1860
1861 2007-03-18  Jackson Harper  <jackson@ximian.com>
1862
1863         * TextBoxBase.cs: Allow updating the selection position when the
1864         cursor is outside the textarea, but we have a capture.
1865         * TextControl.cs: A special case for when the cursor is outside
1866         the bounds of the TB.
1867         
1868 2007-03-18  Jackson Harper  <jackson@ximian.com>
1869
1870         * TextBoxBase.cs: Remove image pasting code for now.  There is no
1871         way to get an image on the clipboard right now anyways.
1872         * TextControl.cs:
1873         * RichTextBox.cs: Use the new RTF Picture class for pictures.
1874
1875 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
1876
1877         * MessageBox.cs:
1878         - Set window properties in constructor intead of on CreateParams.
1879         - Remove topmost from Window ExStyle.
1880         - Set ShowInTaskbar to false.
1881         - Set form border to FixedDialog.
1882         - Some cosmetic changes and remove unneeded comments.
1883         - It fixes itens 2,3 and 4 of bug #80043.
1884
1885 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
1886
1887         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
1888         none was explicitly set. Fixes part of bug #79949.
1889
1890 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
1891
1892         * ToolStripComboBox.cs: Add AutoComplete*.
1893
1894 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
1895
1896         * ToolStripComboBox.cs: Add FlatStyle.
1897
1898 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
1899
1900         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
1901         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
1902
1903 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1904
1905         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
1906           CheckBox.cs, RadioButton.cs, BindingSource.cs,
1907           DataGridColumnStyle.cs: Remove warnings.
1908
1909 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1910
1911         * Menu.cs: MergeMenu: Check menu argument for null before looping over
1912           it.
1913         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
1914           visibility of mdi child forms. FormSizeChangedHandler: update the
1915           maximized size if size has changed while maximized.
1916         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
1917           creating the handle.
1918         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
1919           avoid creating the handle if not created.
1920         * XplatUI.cs: Update debug output.
1921         * XplatUIStructs.cs: Added ToString's for a couple of structs.
1922
1923 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
1924
1925         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
1926         ProcessCmdKey().
1927         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
1928         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
1929         Implement keyboard shortcuts.
1930
1931 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
1932
1933         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
1934         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
1935         ColorDialog and all derived classes.
1936
1937 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
1938
1939         [ Fixes bug #79828 ]
1940
1941         * ToolBar.cs:
1942         - Rename ToolBarButtonInfor to ToolBarItem.
1943         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
1944         - Maintain an array of ToolBarItem, used instead of ToolBarButton
1945         collection to be able add same button more than one time on a toolbar.
1946         - Refactory all properties and methods to use ToolBarItem. 
1947
1948         * ToolBarButton.cs: 
1949         - Remove all propeties and methods that is now in ToolBarItem.
1950         - Rectangle propery now gets the rectangle from first ToolBarItem to
1951         mimic win32 behavior.
1952         - Size calculation and layout methods also removed.
1953
1954         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
1955         ToolBarItem instead of ToolBarButton to right drawing buttons when
1956         same button/separator was added more than one time to ToolBar.
1957
1958         * ThemeNice.cs: Same as above. 
1959
1960 2007-03-15  Andreia Gaita  <avidigal@novell.com>
1961
1962         * XplatUIX11.cs: Fire extra MouseMove events right after
1963         MouseDown and MouseUp, emulating win32's <censored> behaviour
1964         for apps that rely on it.
1965
1966 2007-03-15  Jackson Harper  <jackson@ximian.com>
1967
1968         * TextControl.cs:
1969         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
1970         it is drawn on the controls client window and there is no NC
1971         area.
1972         - Set the background color to gray on 2.0 when we are readonly.
1973
1974 2007-03-15  Chris Toshok  <toshok@ximian.com>
1975
1976         [ Fixes bug #81144 ]
1977         
1978         * XplatUIX11.cs: implement VirtualScreen independently of
1979         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
1980         property.
1981
1982 2007-03-15  Chris Toshok  <toshok@ximian.com>
1983
1984         * Hwnd.cs: add an internal field for the cached_window_state.
1985
1986         * XplatUIX11.cs: cache the window state, invalidating the cache
1987         (and thus re-querying the X server) only when we see an update to
1988         the _NET_WM_STATE property.
1989
1990 2007-03-15  Chris Toshok  <toshok@ximian.com>
1991
1992         * BindingSource.cs: get a lot of the unit tests working.
1993
1994 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
1995
1996         * Control.cs: Modify UpdateStyles to store distances when bounds >=
1997         0 instead of just bounds > 0.  [Fixes bug #80912]
1998
1999 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
2000
2001         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
2002         and methods.
2003
2004 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
2005         
2006         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
2007         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
2008         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
2009         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
2010
2011 2007-03-15  Chris Toshok  <toshok@ximian.com>
2012
2013         [ Fixes #81101 ]
2014         
2015         * Control.cs: add Ivan's fix for 81101, with a slight modification
2016         - you can set control.Target to null.
2017
2018 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
2019
2020         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
2021         HideDropDown, use Hide instead to prevent an NRE.
2022         [Fixes bug #81147]
2023
2024 2007-03-14  Jackson Harper  <jackson@ximian.com>
2025
2026         * TextBoxBase.cs: Mess with the creation stuff a little. We need
2027         to calculate the document before the handle is created, in some
2028         cases. (Actually just one case).
2029
2030 2007-03-14  Jackson Harper  <jackson@ximian.com>
2031
2032         * TextBoxBase.cs: Need to display the caret after letting the base
2033         wndproc handle the focus methods, because the caret display
2034         methods check the focus state.
2035         - Try to display the caret after updating it's position with SelectWord.
2036         - Don't need to do an immediate update on this recalc, since there
2037         will be an invalidate anyways.
2038
2039 2007-03-14  Jackson Harper  <jackson@ximian.com>
2040
2041         * TreeView.cs: Some workarounds so that we can match event order a
2042         little better.
2043
2044 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
2045
2046         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
2047         #80803. Avoid NullReferenceException when Control does not have
2048         parent. Fixed different blinkstyle issues. Only subscribe to Tick
2049         event a single time. Only draw error icon when control is created and
2050         visible. Fixes failing unit tests.
2051
2052 2007-03-14  Andreia Gaita  <avidigal@novell.com>
2053
2054         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
2055         Selecting events. Fire Leave and Enter events when changing tabs.
2056
2057 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
2058
2059         * TreeView.cs: Add TreeViewNodeSorter.
2060         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
2061
2062 2007-03-14  Chris Toshok  <toshok@ximian.com>
2063
2064         * Form.cs: go ahead and remove the RecreateHandles that jpobst
2065         removed earlier and I had him add back it.  It turns out metacity
2066         *does* in fact handle the MOTIF_WM_HINTS property changing, it
2067         just doesn't redraw the window titlebar until you resize the
2068         window.  This also means we aren't recreating the entire window
2069         hierarchy on X when you change this property.  And it looks better
2070         on windows, too.
2071
2072 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2073
2074         * ListViewItem.cs:
2075         * ListView.cs: Collecting selection information
2076         is now done in SelectedIndexCollection rather than in
2077         SelectedListViewItemCollection. This is done so we can
2078         have the selection information code in one single place
2079         (virtual mode selection information entirely depends on
2080         SelectedIndexCollection).
2081
2082 2007-03-13  Miguel de Icaza  <miguel@novell.com>
2083
2084         * ErrorProvider.cs: Add stubs for ISupportInitialize
2085
2086 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2087
2088         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
2089         in the right order with the right values, from the Checked property, 
2090         just as MS does (instead of triggering them from ListView).
2091
2092         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
2093
2094 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2095
2096         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
2097         the correct handler in OnItemCheck method (ItemCheckEventHandler 
2098         instead of EventHandler). This used to throw an InvalidCastException.
2099
2100 2007-03-13  Jackson Harper  <jackson@ximian.com>
2101
2102         * TextBoxBase.cs: Calculate the document before the handle is
2103         created, so there isn't an extra invalidate called.
2104
2105 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
2106
2107         * Form.cs: Don't set owner in ShowDialog until we are sure
2108         that we aren't going to throw an exception.  [Fixes bug #80773]
2109
2110 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
2111
2112         * TreeView.cs: Make it compile.
2113
2114 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2115
2116         * Control.cs: Another place we don't call SizeFromClientSize.
2117         * Form.cs: Another place we don't call SizeFromClientSize.
2118         [Fixes bug #81125]
2119
2120 2007-03-12  Jackson Harper  <jackson@ximian.com>
2121
2122         * TreeView.cs: Basically emulating some strangness here with
2123         exanding nodes and setting node positions when windows aren't
2124         created.
2125         - Also attempting to walk the node tree less than previously, and
2126         just use visible order calculations for determining offsets.
2127         - oops made scrolling backwards.
2128         * TreeNode.cs: We need to start nodes with a zero visible order,
2129         because the order calcs are based on the first nodes order.
2130
2131 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2132
2133         * Form.cs: Don't exit the program if RecreateHandle is called on
2134         the main form.
2135
2136 2007-03-12  Chris Toshok  <toshok@ximian.com>
2137
2138         * XEventQueue.cs: remove the use of PostQuitState.
2139
2140         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
2141         WM_QUIT message in GetMessage, return false (and if we're in the
2142         nested WaitForHwndMessage, repost the WM_QUIT message).
2143
2144 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2145
2146         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
2147         or the MaximizeBox properties.  [Part of bug #80640]
2148
2149 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
2150
2151         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
2152         no links.
2153
2154 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2155
2156         * ToolStripItem.cs: Fix some tests I broke by checking Visible
2157         instead of visible.
2158
2159 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
2160
2161         * FileDialog.cs: Use text of File name combobox to determine what
2162         files the user selected. Added tokenizer to parse the file names.
2163         Fixes bug #81123.
2164
2165 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
2166
2167         * Control.cs: We can't call SizeFromClientSize in the constructor,
2168         but we still need to do the same work, so make an internal version.
2169         [Fixes bug #80621]
2170
2171 2007-03-12  Jackson Harper  <jackson@ximian.com>
2172
2173         * TreeView.cs:
2174         * TreeNode.cs:
2175         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
2176         IsExpanded.
2177
2178 2007-03-12  Jackson Harper  <jackson@ximian.com>
2179
2180         * TextBoxBase.cs: Now that the handles are being created a little
2181         later, we need to make sure that the document is recalculated when
2182         the handle is created.
2183
2184 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
2185
2186         * Theme.cs: GetLinkFont abstract method added.
2187         
2188         * LinkLabel.cs: 
2189         - Remove CalcTrimRectangle, no longer needed.
2190         - Factor also remove, position issues must be fixed in libgdiplus.
2191         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
2192         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
2193         care about font used to draw links.
2194         - Set TabStop to true when control is "Selectable", control is selectable
2195         when have one or more links. Fixes #80501 (test case is also added).
2196         - Set the LinkArea values after links change, LinkArea values must be
2197         based in first link position and size, a test case was created.
2198         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
2199         the attribute must be true LinkArea.Length > 0. The same was applied to
2200         TabStop.
2201         
2202         * ThemeWin32Classic.cs: 
2203         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
2204         in draw method.
2205         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
2206         color change.
2207         - Draw focus rectangle for every parts focused, including parts that 
2208         is on another line, its because regions returns various rectangles
2209         and not only one. Needed to mimic W32 look.
2210         - Uses Graphics.Clip to delimite region painted, it mean that now 
2211         complete text is passed to DrawString, with this we solve layout
2212         issues without create another text renderer.
2213         - Uses Region.Intersect to fix some flickers problems, now only needed
2214         parts will redrawed.
2215         - This changes fixes #79614 and some other unreported issues, on Linux 
2216         some layout problems still remain, the problem is under 
2217         MeasureCharacterRanges but it is an libgdiplus bug.
2218
2219 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
2220
2221         * TextBox.cs: Set for foreground color.
2222         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
2223         this is already done in Control.
2224
2225 2007-03-10  Jackson Harper  <jackson@ximian.com>
2226
2227         * TextBox.cs: Set the background color, but reset the
2228         backcolor_set flag which is just for the user setting the
2229         background color.
2230
2231 2007-03-09  Chris Toshok  <toshok@ximian.com>
2232
2233         * Control.cs: really remove the call to XplatUI.SetVisible from
2234         CreateHandle(), like I said I did when I merged the branch.
2235
2236         * BindingSource.cs: implement some more of this stuff.
2237
2238 2007-03-09  Jackson Harper  <jackson@ximian.com>
2239
2240         * TextBox.cs: Don't explicitly set our background colors.
2241         * TextControl.cs:
2242         * TextBoxBase.cs: Draw readonly text.
2243         - Need to invalidate when backcolor or readonly are changed.
2244         
2245 2007-03-09  Jackson Harper  <jackson@ximian.com>
2246
2247         * TextBoxBase.cs: Don't set the forecolor until the handle is
2248         created.
2249         - Do not raise OnPaint, and removed some old debug code.
2250
2251 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
2252
2253         * ScrollableControl.cs: Fix mouse wheel scrolling.
2254
2255 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2256
2257         * Control.cs: Wire up MouseDoubleClick event.
2258
2259 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
2260
2261         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
2262         top or bottom.
2263         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
2264         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
2265         item is added.  This logic was moved to ToolStrip.OnItemAdded.
2266         [Fixes bug #81090]
2267
2268 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2269
2270         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
2271
2272 2007-03-08  Jackson Harper  <jackson@ximian.com>
2273
2274         * TreeView.cs: Show the correct image for selected node (this used
2275         to work, not sure how the code got deleted). Also implemented 2.0 feature
2276         SelectedImageKey.
2277
2278 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2279
2280         * ListView.cs:
2281         * ListViewItem.cs: Cache index in items when retrieving them
2282         in VirtualMode.
2283
2284 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2285
2286         * ToolStripItem.cs: Don't return the explicit_size if we are using 
2287         AutoSize.  Fixes invalidation issue when user has explicitly set a
2288         size and has AutoSize = true.
2289
2290 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2291
2292         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
2293
2294 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2295
2296         * DataGridView.cs: Remove event handler from DataView when a
2297         DataTable is used as DataSource.
2298
2299 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
2300
2301         * Control.cs: Create internal setter for client_size to allow it to be
2302         set without triggering resizing code.
2303         * Form.cs: Calculate client_size in constructor, only change client_size
2304         in FormBorderStyle property if Handle has been created.
2305         [Fixes #80574, #80791]
2306
2307 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
2308
2309         * SystemInformation.cs: Add TerminalServerSession.
2310
2311 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2312
2313         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
2314         TreeView code.
2315
2316 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2317
2318         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
2319         Handle before we were supposed to.  Now checks ActivateOnShow property
2320         in Control.
2321         * Control.cs: Add internal ActivateOnShow property.
2322         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
2323         for ActivateOnShow.
2324         * Hwnd.cs Remove no longer needed no_activate field.
2325
2326 2007-03-07  Jackson Harper  <jackson@ximian.com>
2327
2328         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
2329         2.0 properties
2330         * DrawTreeNodeEventHandler.cs: Add
2331         * DrawTreeNodeEventArgs.cs: Correct default value.
2332         
2333 2007-03-07  Chris Toshok  <toshok@ximian.com>
2334
2335         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
2336         to be called before NativeWindow.WndProc.  Put the HwndCreating
2337         magic there to hook up our Hwnd's to handles.
2338
2339 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
2340
2341         * DataGridView.cs: Comment out debug code.
2342
2343 2007-03-07  Chris Toshok  <toshok@ximian.com>
2344
2345         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
2346         to make the rest of the world happy]
2347
2348         * Control.cs (CreateHandle): there's no need to call
2349         XplatUI.SetVisible here, it's effectively done by
2350         XplatUI.CreateWindow on X now, and always was on windows.
2351
2352         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
2353         shortcircuit out of the loop if we have a message loop running on
2354         this thread.
2355
2356         [Changelog from merge]
2357
2358         2007-03-05  Chris Toshok  <toshok@ximian.com>
2359
2360                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
2361                 causes handle creation.
2362
2363         2007-02-28  Chris Toshok  <toshok@ximian.com>
2364
2365                 * ApplicationContext.cs: Add a flag to make sure we only raise the
2366                 ThreadExit event once (ExitThreadCore can be indirectly called
2367                 from a few places.)  I don't like the additional flag, but it
2368                 makes the event ordering/count correct.
2369
2370                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
2371                 without locking the collection.  An enumerator doesn't give us any
2372                 protection from modification anyway.  Lock the thread hash and
2373                 replace the complicated enumerator loop with a foreach.
2374                 (Application.CloseForms): make internal so it can be called from
2375                 ApplicationContext.  This should probably be moved to MWFThread.
2376                 (Application.ExitThread): don't call MWFThread.Current.Exit()
2377                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
2378                 when the runloop exits (in response to WM_QUIT.)
2379                 (Application.RunLoop): add a comment (and check) for
2380                 context.MainForm being null after setting context.MainForm.Visible
2381                 = true.  This is because you're perfectly free to dispose of a
2382                 form in VisibilityChanged.  Chalk this up to another case where we
2383                 need to synchronously generate WM_ACTIVATE from Control.Show.
2384                 Also, add handling for WM_QUIT here so we'll exit the loop.
2385                 
2386                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
2387                 fact that we don't wait if we're only unmapping the whole_window
2388                 makes me a bit nervous, but it doesn't seem to cause any problems
2389                 yet.
2390
2391                 also, add a comment about the stupid, broken and wrong resetting
2392                 of PostQuitState to false in GetMessage().
2393
2394                 In PostQuitMessage, we need to add a WM_QUIT message to the
2395                 thread's queue.  We use the FosterParent to get the right
2396                 handle/hwnd/queue.
2397
2398                 Lastly, in SetVisible, we need to unmap both windows, since the
2399                 waiting only happens when we're unmapping the client window.  So
2400                 now, the *only* time we unmap just the whole_window is in the hack
2401                 for resizing a control to 0,0.
2402                 
2403         2007-02-21  Chris Toshok  <toshok@ximian.com>
2404
2405                 * Application.cs (CloseForms): rewrite this so that we don't
2406                 modify the list while we're traversing it.
2407
2408         2007-02-20  Chris Toshok  <toshok@ximian.com>
2409
2410                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
2411                 of OnHandleCreated.
2412                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
2413                 handle is created.  otherwise we'll create it here.
2414                 (VerticalScrollEvent): same here.
2415
2416                 * Application.cs (CloseForms): call Form.Dispose, don't post
2417                 WM_CLOSE_INTERNAL.
2418
2419                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
2420                 here. Application should Dispose() of the Form's.
2421
2422                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
2423                 WM_DESTROY as well.
2424                 (MapWindow,UnmapWindow): only actually do the waiting for
2425                 SHOWWINDOW if the control we're dealing with is a Form.
2426                 (CreateWindow): if the control isn't a form, SendMessage
2427                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
2428
2429                 * Control.cs (SetVisibleCore): always use is_visible here, not
2430                 value.  If we use value, we can end up re-setting something
2431                 visible if, for instance, you do Control.Hide() in a delegate
2432                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
2433
2434         2007-02-20  Chris Toshok  <toshok@ximian.com>
2435
2436                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
2437                 the message we need.  PeekMessage returning false should not be a
2438                 condition under which we exit the loop.
2439
2440         2007-02-15  Chris Toshok  <toshok@ximian.com>
2441
2442                 * Control.cs (Refresh): only refresh if we've got a handle and are
2443                 visible.
2444                 (CreateAccessibilityInstance): CreateControl() here.
2445                 (UpdateChildrenZOrder): complicate the code loop even more by
2446                 taking into account controls that haven't had their handle
2447                 created, and those that aren't visible.  But on the flip side,
2448                 simplify the code by splitting it into two loops.  one which
2449                 builds up the list of child controls we're interested in, and the
2450                 other that sets the z order of those children.
2451
2452         2007-02-14  Chris Toshok  <toshok@ximian.com>
2453
2454                 * Control.cs: Control.AccessibilityObject causes the control to be
2455                 created, not just the handle.
2456
2457         2007-02-14  Chris Toshok  <toshok@ximian.com>
2458
2459                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
2460                 problem on X where a window might have its handle created (and be
2461                 visible) while the window is unmapped.  calling XConfigureWindow
2462                 on an unmapped window is bad, and generates X errors.
2463
2464         2007-02-13  Chris Toshok  <toshok@ximian.com>
2465
2466                 * Control.cs (CreateHandle): don't loop over our children setting
2467                 their parent here.  do it when in WndProc when we're shown.
2468                 (UpdateChildrenZOrder): make this internal so we can call it from
2469                 ScrollableControl.
2470                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
2471                 creating its handle.  Also, remove the calls to PerformLayout from
2472                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
2473                 OnVisibleChanged only seems to be called directly here for the
2474                 toplevel control.  It's propagated down the window hierarchy by
2475                 calls to child.OnParentVisibleChanged.
2476                 (OnVisibleChanged): don't do layout here - it's done (oddly
2477                 enough, according to a glance at stack traces on ms.net..) in
2478                 ScrollableControl.
2479                 
2480                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
2481                 z order of our children before calling PerformLayout.
2482
2483         2007-02-12  Chris Toshok  <toshok@ximian.com>
2484
2485                 [big change, fixes #80020]
2486                 
2487                 * AccessibleObject.cs: we need to make owner internal again to fix
2488                 some of ControlAccessibleObject.
2489
2490                 * Control.cs: lots of changes here.  add support for WM_CREATE,
2491                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
2492                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
2493                 we create child controls.  leave the MonoTODO's for the
2494                 accessibility calls, but fix the exceptions so the tests pass.
2495
2496                 Add the InvalidOperationExceptions to Invoke methods, and remove a
2497                 couple of InvokeInternal methods we aren't using.
2498                 
2499                 Also, add a couple of CreateHandle calls in places where we know
2500                 the handles are being created but our code doesn't reference
2501                 .Handle.
2502
2503                 Make SetVisibleCore call OnVisibleChange if the handle isn't
2504                 created.  If the handle is created, we rely on XplatUI.SetVisible
2505                 generating the event synchronously.
2506                 
2507                 Lastly, make sure we don't use this.Handle inside CreateHandle,
2508                 because we can call back into client (and that code can dispose of
2509                 the control).
2510
2511                 * XplatUIStructs.cs: misc/cleanup.
2512
2513                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
2514                 although we don't populate the wParam properly.
2515                 (CreateWindow): generate WM_CREATE.
2516                 (MapWindow,UnmapWindow): make these calls synchronous, at great
2517                 performance expense (particularly in the unmap case), to match
2518                 win32 behavior.
2519
2520                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
2521                 to call it.
2522                 (set_MdiParent): don't recreate the handle unless it's been
2523                 created already.
2524                 
2525                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
2526                 it's created.
2527
2528                 * NativeWindow.cs: this is probably the weirdest part of the
2529                 patch.  We need a way to link up the window being created to the
2530                 WM_CREATE message.  Since we can only be creating one window at a
2531                 time on a given thread, we keep track of a per-thread reference so
2532                 we can dispatch it properly.  We also need to keep track of the
2533                 Hwnd currently being created so that the win32 backend doesn't
2534                 have problems.
2535                 
2536                 * XplatUIWin32.cs: a similar change to the one we made in
2537                 NativeWindow.cs.
2538
2539 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
2540
2541         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
2542         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
2543         to draw the menu shortcut string.
2544
2545 2007-03-07  Jackson Harper  <jackson@ximian.com>
2546
2547         * TreeNode.cs: Add the 2.0 collapse method.
2548
2549 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2550
2551         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
2552
2553 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2554
2555         * DataGridView.cs: Change DataSource will clear column and row
2556         lists. Call Invalidate() to reflect DataSource change.
2557
2558 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2559
2560         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
2561         and a new row is added to it.
2562
2563 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
2564
2565         * DataGridView.cs: Add columns when DataSource is en empty list but
2566         is a System.Data.DataView (from a System.Data.DataTable).
2567
2568 2007-03-06  Andreia Gaita  <avidigal@novell.com>
2569
2570         * Label.cs: Implement AutoEllipsis (2.0)
2571
2572 2007-03-06  Jackson Harper  <jackson@ximian.com>
2573
2574         * TreeView.cs: Implement 2.0 TopNode setter property.
2575         - Use a local var instead of the skipped_nodes field for computing
2576         how many nodes to skip.  Otherwise we won't scroll because the
2577         valuechanged handler checks if skipped_nodes is equal to the new
2578         value.
2579         - Implement 2.0 Sort method.
2580         - Add useless 2.0 DoubleBuffer property
2581         - Implement 2.0 LineColors property.  Lets you change the color of
2582         the lines in the tree. Terribly useful for creating non cohesive
2583         desktops.
2584         - Implement 2.0 image key feature.
2585
2586 2007-03-06  Jackson Harper  <jackson@ximian.com>
2587
2588         * TreeView.cs: We can't get the bounds of the nodes before raising
2589         the AfterSelect event, because that event could change the node's
2590         bounds (scrolling, font change, etc).
2591
2592 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2593
2594         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
2595         * Form.cs: Don't recreate handle when creating FormWindowManager, just
2596           update window styles. In CreateParams us VisibleInternal instead of
2597           VIsible to get the actual visible flag set for this form.
2598         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
2599           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
2600           handle the case when the form is already maximized, in which case
2601           it should be restored. Fixes #81043.
2602
2603 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2604
2605         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
2606
2607 2007-03-05  Jackson Harper  <jackson@ximian.com>
2608
2609         * TreeViewHitTestInfo.cs: implement.
2610
2611 2007-03-05  Jackson Harper  <jackson@ximian.com>
2612
2613         * InternalWindowManager.cs: class status fix.
2614
2615 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2616
2617         * InternalWindowManager.cs: All windows that have a parent
2618         are confined to their parent when they're being moved.
2619         Fixes #80822.
2620
2621 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
2622
2623         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
2624         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
2625
2626 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2627
2628         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
2629           buttons invisible before deciding which ones should be visible
2630           (fixes minimize/maximize buttons showing up in toolwindows). Remove
2631           an unused variable.
2632         * InternalWindowManager.cs: Remove warning.
2633
2634 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2635
2636         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
2637         to throw an InvalidOperationException is virtual mode is being used.
2638
2639 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
2640
2641         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
2642         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
2643         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
2644         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
2645         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
2646         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
2647
2648 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2649
2650         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
2651           driver.KeyboardDelay from XplatUI.KeyboardDelay 
2652         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
2653           (patch by Sergey Volk)
2654
2655 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2656
2657         * ToolWindowManager.cs: Added, contains logic for
2658           tool windows.
2659         * CreateParams.cs: Add a few helper methods and an
2660           internal variable to know which control the CreateParams belongs
2661           to.
2662         * Control.cs: Call Form.ChangingParent when the
2663           parent is about to be changed.
2664         * XplatUIX11.cs: DeriveStyles (): Set
2665           caption_height for all windows that have captions and are children.
2666           Update to use ToolWindowManager instead of InternalWindowManager
2667           for ToolWindows.
2668         * XplatUIWin32.cs: Set fake window styles for all
2669           windows that have window managers.
2670         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
2671           now duplicated for mdi windows when they are
2672           maximized, first for the buttons the window itself has, then for
2673           the buttons that appear in the menu bar. Makes things a little
2674           easier). Updated UpdateWindowDecorations, SetWindowState and the
2675           mouse eventhandlers accordingly.
2676         * Form.cs: Add ChangingParent (), contains the
2677           logic of what should happen when the parent changes. In MdiParent
2678           don't set things that ChangingParent () is doing. When handling
2679           WM_CLOSE, we can close the form if there are any other modal forms
2680           and the current form is a descendent of the modal form.
2681         * InternalWindowManager.cs: A lot of refactoring,
2682           the title buttons are now extracted to a separate container class
2683           that takes care of all button code (clicks, tooltips, etc). Moved
2684           Iconic|Maximized|Normal Bounds properties to this class from
2685           MdiWindowManager, so that the window state logic can succeed for
2686           other than mdi wm's. Implemented general window state change logic.
2687           Moved CreateButtons to ThemeWin32Classic, since the theme might
2688           override which buttons are available when as well as the exact
2689           location.
2690         * FormWindowManager.cs: Added, contains logic for
2691           normal forms.
2692         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
2693           which buttons go where (and if they are at all visible). 
2694           Removed special handling of maximized windows, since they aren't special. 
2695           In DrawManagedWindowDecorations don't try to draw the text if it is
2696           empty.
2697         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
2698           use whatever the wm gives us.
2699
2700 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
2701
2702         * ButtonBase.cs: Add 2.0 properties.
2703         * Button.cs: Override Draw for 2.0.
2704         * Control.cs: Add Entered and Selected properties.
2705         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
2706         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
2707         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
2708         buttons.
2709         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
2710
2711 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
2712
2713         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
2714
2715 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
2716
2717         * XplatUIWin32.cs: Register a new class with Windows each time we get
2718         a new ClassStyle.  [Fixes bugs #79432, #80817]
2719         * Controls.cs: Set the correct ClassStyle in CreateParams.
2720         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
2721
2722 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
2723
2724         * ListView.cs: Add fireEvent argument to ReorderColumn since the
2725         ColumnReordered event must not be signaled when modifying DisplayIndex
2726         of a ColumnHeader. Added internal ReorderColumns method which takes
2727         care of drawing, and updating the internal DisplayIndex of the
2728         ColumnHeader. Added AddColumn method which is invoked from
2729         ColumnHeaderCollection when adding or inserting columns, and which
2730         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
2731         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
2732         Recalculated dispay indices after removing a ColumnHeader.
2733         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
2734         match MS. Allows last display index to be returned after ListView
2735         is disposed. Update actual location of ColumnHeader when DisplayIndex
2736         is modified.
2737
2738 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
2739
2740         * LinkLabel.cs: Improve CalcTrimRectangle.
2741         
2742         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
2743
2744 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
2745
2746         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
2747         get rectangle as a result value.
2748
2749 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
2750
2751         * LinkLabel.cs: Theres some diferences between rectangle return from 
2752         MeasureCharacterRanges and the area used for DrawString to fix this 
2753         CalcMeasurementFactor method was created, it calcules the diferences
2754         to be use later to adjust rectangle in draw operations. Fixes #80473.
2755         
2756         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
2757         to adjust draw rectangle.
2758
2759 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
2760
2761         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
2762         text and some other changes to reduce and optimize source code.
2763
2764 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
2765
2766         * RadioButton.cs: Implement 2.0 event.
2767         * RelatedImageListAttribute.cs: Implement new class.
2768
2769 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
2770
2771         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
2772
2773 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
2774
2775         * CheckBox.cs: Implement 2.0 functionality.
2776
2777 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2778
2779         * ListView.cs: Refactor Add and AddRange methods of
2780         ListViewItemCollection, to not update the ListView
2781         everytime an item is added in AddRange. Also move the update
2782         code to a new CollectionChanged method, and call it
2783         from other methods that need it as well (this should also fix some
2784         bugs when Sorting is used).
2785
2786 2007-02-27  Jackson Harper  <jackson@ximian.com>
2787
2788         * TextControl.cs: Try to never let the caret stay in a non-text
2789         tag.
2790         * TextBoxBase.cs: Update the caret.
2791
2792 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
2793
2794         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
2795         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
2796         delete POINT structure, duplicate of one in XplatUIStructs.
2797         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
2798
2799 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
2800
2801         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
2802         edit box since otherwise the Label would immediately be set (even if
2803         the user did not modify the label). In OnKeyDown set Handled to true
2804         if Return or Escape was pressed. In ColumnHeaderCollection unlink
2805         columns that are to be removed. In ListViewItemCollection unlink items
2806         that are to be removed.
2807
2808 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
2809
2810         * TextRenderer.cs: If we set a GDI clip region, we need to clear
2811         it when we are done.  [Fixes bug #80949]
2812
2813 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2814
2815         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
2816
2817 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2818
2819         * ListView.cs: I forgot to commit the changes for ListView 
2820         in my previous patch.
2821
2822 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2823
2824         * Clipboard.cs: Partially implement an overload of SetDataObject.
2825         * Form.cs: Implement ShowWithoutActivation.
2826         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
2827
2828 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2829
2830         This is a first set of changes to make the Virtual mode works,
2831         by avoiding the retrieval of ListViewItem instances until
2832         draw time.
2833
2834         * ListView.cs: Store item position in the ListView instead of the
2835         ListViewItem, this way we don't request the Bounds property of
2836         ListViewItem inside the ListView calculations, as well as cache the item
2837         size in item_size field. Store indexes instead of ListViewItem
2838         instances in the matrix used by icon view. Add a ItemMatrixLocation
2839         struct to hold the row and col info of the matrix info.
2840
2841         * ListViewItem.cs: Don't store the location anymore, and only cache
2842         the rectangles for GetBounds. Use the ListView.GetItemLocation
2843         method to retrieve the actual location.
2844
2845 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2846
2847         * TextRenderer.cs: Add clipping support, thanks to George.
2848         [Fixes bug #80949]
2849
2850 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2851
2852         * ListViewItem.cs: Cancel label edit when item is removed from 
2853         ListView.
2854         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
2855         event before the edit textbox is displayed.  Added CancelEdit method
2856         which is used end to editing while ignoring the value set by the
2857         user. In EndEdit, set focus to ListView to avoid losing focus to
2858         other controls. In ListViewItemCollection.Clear, cancel editing of
2859         any of the items.  In Remove, cancel editing of item being removed.
2860         Avoid udplicate code by modifing RemoveAt to invoke Remove.
2861
2862 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2863
2864         * FileDialog.cs: Update FSEntry when move is successful. Fixes
2865         bug #80948.  
2866
2867 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2868
2869         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
2870         compatible with non X11 systems. Fixes #80901.
2871
2872 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2873
2874         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
2875         whether the item should be unselected and reselect. We do no want this
2876         when we're starting to edit the label. Do not fire the 
2877         SelectedIndexChanged event from ListView when its already been fired
2878         by modifying ListViewItem.Selected. Fixes bug #80943.
2879
2880 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2881
2882         * TextRenderer.cs: Previos commit logic was backwards.
2883
2884 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2885
2886         * TextRenderer.cs: Don't add padding on MeasureText if we were
2887         sent the NoPadding flag.
2888
2889 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2890
2891         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
2892         after DrawButton. To prevent image overlaps button borders SetClip and 
2893         ResetClip added before and after draw image. Fixes #79129.
2894
2895 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2896
2897         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
2898         window size, it fix problem when you run under win32 that theres
2899         Size diferent than ClientSize. Also fix controls size and positions
2900         to mimic Win32. Fixes #80837.
2901
2902 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
2903
2904         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
2905         menu area to fix some problems for non X11 systems. Fixes #80613.
2906
2907 2007-02-22  Jackson Harper  <jackson@ximian.com>
2908
2909         * TreeNode.cs: When a node is expanded, set its is_expanded flag
2910         even if it doesn't have any children.
2911
2912 2007-02-22  Jackson Harper  <jackson@ximian.com>
2913
2914         * TreeView.cs: Calculate the top node 'on the fly', this
2915         eliminates issues where you need to click on the tree before
2916         scrolling it to get the top node computed correctly.
2917         * TreeNodeCollection.cs: We don't need to mess with the top node
2918         anymore.
2919
2920 2007-02-22  Jackson Harper  <jackson@ximian.com>
2921
2922         * DataGridViewRow.cs: Fix typo so height can actually be set.
2923         Patch by Peter Grimm.
2924
2925 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2926
2927         * FileDialog.cs: Fixed support for renaming files and directories.
2928         * ListView.cs: Do not lose focus when edit is canceled. Process
2929         Escape as regular key (to prevent closing of dialogs).
2930
2931 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2932
2933         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
2934         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
2935
2936 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2937
2938         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
2939         did not modify label.
2940         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
2941         modified the text. Reset Label when user presses Escape in edit mode.
2942         Move focus to ListView after having cancelled or finished editing the
2943         label.
2944
2945 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
2946
2947         * ComboBox.cs: Removed unnecessary initializations. Marked items field
2948         private. Clear textbox when Text is set to null and SelectedIndex is
2949         already -1.
2950         * FileDialog.cs: Removed unnecessary initializations. Removed 
2951         workarounds for ComboBox bugs that are now fixed. Modified
2952         DefaultExt, InitialDirectory and Title property to change null to
2953         zero-length string in getters. Avoid directly accessing fields.
2954
2955 2007-02-20  Jackson Harper  <jackson@ximian.com>
2956
2957         * TextControl.cs: Remove RecalAlignments call, that was some
2958         debugging leftovers.
2959         - Don't use the line indent when we shouldn't.
2960         * RichTextBox.cs: Add support for paragraph left indents.
2961
2962 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2963
2964         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
2965         Seems like the class status pages doesn't catch params differences.
2966
2967 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
2968
2969         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
2970
2971 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
2972
2973         * ComboBox.cs: Setting Text should have no effect if item text of
2974         selected item exactly matches value. First lookup text using
2975         case-sensitive comparison, and fallback to case-insensitive comparison.
2976         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
2977         allow startIndex to be last index. Changed ArgumentOutOfRangeException
2978         paramname to match MS. Restart from first item if string is not found
2979         after startIndex. Fixed paramname of ArgumentNullException that is
2980         thrown for null value in ObjectCollection.Contains.
2981
2982 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
2983
2984         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
2985
2986 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2987
2988         * ListControl.cs: In SelectedValue use value.Equals to compare for
2989         equality instead of ==, otherwise it will fail for strings.
2990         Fixes #80794.
2991
2992 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2993         
2994         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
2995         since the caret won't show up unless ShowSelection is true. 
2996         Fixes #80795.
2997
2998 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2999
3000         * Application.cs: When disabling all forms but the main form, do not
3001           disable any descendants of the main form (such as mdi children or
3002           other parented forms). Fixes #80822 on Windows.
3003         * Form.cs: If we have a parent, set the WS_CHILD style.
3004         * Control.cs: Update the window styles if the control whose parent has
3005           changed is a form (the WS_CHILD style has to be switched).
3006
3007 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
3008
3009         * XplatUIStructs.cs: MsgUIState structure added.
3010
3011 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3012
3013         * FileDialog.cs: Removed need for separate fileName field. On 2.0
3014         profile, do not check filename(s) for illegal character if filename(s)
3015         were set non-interactively but always check on 1.0 profile. Fixed NRE
3016          in DefaultExt and only strip off first leading dot. Improve exception
3017         message when invalid Filter is set. Do not ignore InitialDirectory if
3018         it does no exist. Store specified Title, and if empty use default
3019         title (depending on type of dialog). Added an internal DialogTitle 
3020         property for retrieving dialog title. Fixed logic of displayed dir to
3021         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
3022         string as its buggy.
3023         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
3024         FileName is a zero-length string (it can never be null). Override 
3025         DialogTitle property to set default title of dialog box.
3026         * SaveFileDialog.cs: Override DialogTitle property to set default
3027         title of dialog box.
3028
3029 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
3030
3031         * FileDialog.cs: Modify default text of filename and filetype labels
3032         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
3033         after we've updated the SelectedIndex. Fixes part of bug #80887.
3034         * SaveFileDialog.cs: Set text of filetype label.
3035
3036 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3037
3038         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
3039         label field. Needed by latest Jackson's fixes for ListView.
3040
3041 2007-02-16  Andreia Gaita  <avidigal@novell.com>
3042
3043         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
3044         print preview images.
3045
3046 2007-02-16  Jackson Harper  <jackson@ximian.com>
3047
3048         * ListView.cs: Make AfterLabelEdit work correctly.
3049         * FileDialog.cs: After changing the name of the folder, we have to
3050         make sure that it is created, or that we pop up an error because
3051         it already exists.
3052
3053 2007-02-16  Jackson Harper  <jackson@ximian.com>
3054
3055         * X11Dnd.cs: Implement aliases on mime handlers, so things like
3056         System.String are mapped to text.
3057         - Handle dataobjects, getting all the possible formats out of them
3058         - We dont need the drag event args before we give feedback. This
3059         allows feedback cursors to be immediate before selections have
3060         been converted.
3061
3062 2007-02-16  Jackson Harper  <jackson@ximian.com>
3063
3064         * TextBoxBase.cs: Modified the method for inserting images to
3065         taking a line and position instead of tag and position.
3066         * RichTextBox.cs: Handle PngBlip data by inserting the png image
3067         into the RTF file.
3068         * TextControl.cs: Allow images to be inserted as the first tag of
3069         a line.
3070         - Fix some off by one issues when we assume the first tag is a
3071         text tag, not an image tag.
3072
3073 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3074
3075         * ListView.cs: Set focus to ListView when ItemControl gets a
3076         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
3077         Fixes part of #80467.
3078
3079 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3080
3081         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
3082           validate Text input (if null or empty string reset Value to default
3083           value). Fixes #80830.
3084
3085 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3086
3087         * ListView.cs: Set owner as null for columns and items when
3088         Dispose is invoked. Fixes #80607.
3089
3090 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
3091
3092         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
3093         showing DropDowns, don't show a Grip when doing Flow layout.
3094         [This fixes the toolbox in PDN 2.72.]
3095         * ToolStripItem.cs: Add Anchor property and some internal properties to
3096         reduces needed changes to FlowLayout.
3097         * ToolStripOverflow.cs: Remove unused variable.
3098         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
3099         use it in the layout calculations.
3100
3101 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3102
3103         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
3104         reported in #79640.
3105         
3106         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
3107         size calculation.
3108
3109 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3110
3111         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
3112         MeasureString format, it can make button very large in some cases, it is
3113         strange but is what win32 do.
3114
3115 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3116
3117         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
3118         size calculation.
3119
3120         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
3121         rendering, the value is based on MenuAccessKeysUnderlined.
3122
3123 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
3124
3125         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
3126         for most themes.
3127         
3128         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
3129         
3130         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
3131         and use MenuAccessKeysUnderlined instead.
3132
3133 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3134
3135         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
3136         A selected control would not get a Focus call if:
3137                 - the default active control of the container is the same as
3138                   the one that was selected
3139                 - we are switching from one container to another
3140         Under these conditions, the container being selected already has
3141         an active_control, which is the same as the one being activated, 
3142         so set_ActiveControl would always return and not send the Focus
3143         call. Fix to check if the currently active control of the container
3144         is actually focused.
3145
3146 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
3147
3148         * StatusStrip.cs: Implement the spring layout.
3149         * ToolStripControlHost.cs: Make sure the hosted control's visibility
3150         always matches the host.
3151         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
3152         and TextAfterImage.
3153
3154 2007-02-13  Andreia Gaita  <avidigal@novell.com>
3155
3156         * Control.cs: Code reorganization only.
3157           - Reorganize the WndProc cases so that each case has it's own handling method, 
3158           to help with the no-line-numbering stack traces.
3159           - Formatting changes (it's vstudio's fault, really :p)
3160
3161 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3162
3163         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
3164           Thread.CurrentUICulture to match DateTimePicker's (and MS)
3165           behaviour.
3166
3167 2007-02-12  Jackson Harper  <jackson@ximian.com>
3168
3169         * RichTextBox.cs:
3170         * TextBox.cs: By default we have a non multiline document
3171         - use the multiline property instead of the internal variable
3172         * TextBoxBase.cs: Treat multiline and non multiline the same in
3173         most places.
3174         - Use the documents multiline flag instead of tracking it ourself
3175         * TextControl.cs: Attempt at getting multiline to match MS
3176         behavior.  Lines now track an offset, which is either their X or Y
3177         offset depending on whether or not we are in multiline mode.
3178         - Update all the methods to understand that lines have an X value.
3179         - Fix crash in Undo::Duplicate when empty lines are deleted.
3180
3181 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3182
3183         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
3184         code moved to properties PreferredHeight and PreferredWidth. It solve the
3185         all problems when preferred sizes must be recalculated. Fixes #80801.
3186
3187 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
3188
3189         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
3190         font height when compatible_text_rendering is false. Partially fix #80801.
3191
3192 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3193
3194         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
3195
3196 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3197
3198         * Form.cs: Improved exception messages in ShowDialog.
3199
3200 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
3201
3202         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
3203         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
3204         if not set. Fixes bug #80764. Avoid accessing current_settings field
3205         directly.
3206
3207 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
3208
3209         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
3210         false.
3211
3212         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
3213         public in 2.0 and for easy maintenance and dont break compatibility it is 
3214         internal in 1.1.
3215         
3216 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3217
3218         * ToolStripItem.cs: Implement using images from ImageList.
3219
3220 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3221
3222         * DateTimePicker.cs: Change default date-formatting culture from
3223           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
3224           seems to be the way MS does it.
3225
3226 2007-02-08  Andreia Gaita  <avidigal@novell.com>
3227
3228         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
3229         (the 6 was cut off on the right side)
3230
3231 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3232
3233         * Form.cs: Tell MenuStrips to close when the form is clicked.
3234         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
3235         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
3236         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
3237         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
3238         support for Overflow, where items that do not fit are automatically
3239         reparented to a drop down menu.
3240         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
3241         Also: fixes bug #80747.
3242
3243 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3244
3245         * ComboBox.cs: Remove warning (unused code).
3246         * ScrollableControl.cs: Remove warning for 1.1 profile.
3247
3248 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3249
3250         * Form.cs: Remove a warning.
3251
3252 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3253
3254         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
3255           'g' specifier, not documented anywhere, but seems to always show up
3256           as a single space (might have something to do with the DateTime 'g'
3257           specifier, which is the era format, but since DateTimePicker can't
3258           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
3259           won't crash if the format has an unmatched quote. Now shows
3260           single-character formats correctly. Fixes #80744.
3261
3262 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
3263
3264         * StatusStrip.cs: Stretch property needs to call base.Stretch,
3265         not this.Stretch to fix stack overflow. [Fixes bug #80760]
3266
3267 2007-02-07  Chris Toshok  <toshok@ximian.com>
3268
3269         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
3270         background color.  it overwrites the background image we've
3271         already painted.  Fixes #80599.
3272
3273 2007-02-07  Chris Toshok  <toshok@ximian.com>
3274
3275         * DataGrid.cs: return immediately from Edit() when there are no
3276         columns.  Fixes #80662.
3277
3278 2007-02-07  Chris Toshok  <toshok@ximian.com>
3279
3280         * MessageBox.cs: fix #80625.  don't always show the Help button in
3281         2.0.  use the displayHelpButton parameter to determine if we
3282         should show it. Also, make the internal show_help field private.
3283
3284 2007-02-07  Chris Toshok  <toshok@ximian.com>
3285
3286         * Control.cs (SetVisibleCore): check in the proposed patch for
3287         80604, and set is_visible before calling CreateControl.
3288
3289 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
3290
3291         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
3292         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
3293         on it.
3294
3295 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
3296
3297         * MenuAPI.cs: hotkey_active internal field added, it is required because
3298         we need to know when hotkeys must be draw, before this change a keystate
3299         Navigating was used but we can have menu in navigating state without
3300         hotkeys. Fixes #80694.
3301         
3302         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
3303
3304 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3305
3306         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
3307           corresponding events and methods to be internal for 1.1 profile and
3308           public for 2.0 profile (required by SizeGrip).
3309         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
3310           implicit control list). Don't set the size nor the location of the
3311           SizeGrip anymore as it's not needed.
3312         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
3313           draw directly on the captured control (fixes #80656). Removed
3314           ShowGrip (it wasn't used anywhere), redraw (always true), added
3315           GetDefaultSize and GetDefaultRectangle to calculate defaults.
3316         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
3317           be called from SizeGrip.
3318
3319 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3320
3321         * Timer.cs: Throw ArgumentException if Interval <= 0.
3322
3323 2007-02-05  Jackson Harper  <jackson@ximian.com>
3324
3325         * TreeView.cs: We need to check scrollbar visibility when window
3326         visibility is updated, because non visible trees don't ever add
3327         scrollbars.
3328         * Cursor.cs: We want the override cursor to be reset to NULL when
3329         we set current cursor to the default cursor.
3330
3331 2007-02-05  Jackson Harper  <jackson@ximian.com>
3332
3333         * TextControl.cs: Don't have crlfs when we are non multiline.
3334         - Consolidate the line position.
3335
3336 2007-02-05  Jackson Harper  <jackson@ximian.com>
3337
3338         * X11Keyboard.cs: BACK+CTRL gets a special char code.
3339
3340 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3341
3342         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
3343           handling LeaveNotify->NotifyUngrab in order to send
3344           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
3345           after calling XUngrabPointer, so we call WindowUngrabbed directly
3346           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
3347         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
3348           MouseCaptureChanged correctly. Also create handles if changing
3349           Capture (matches MS behaviour).
3350
3351 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3352
3353         * SizeGrip.cs: Make the last change 2.0 only.
3354
3355 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3356
3357         * SizeGrip.cs: If resizing and the capture is lost, revert any size
3358           changes to initial size (fixes #80597).
3359
3360 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3361
3362         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
3363
3364 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3365
3366         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
3367           background) and only allow dragging if enabled. This way the
3368           sizegrip can be used to fill the open square that otherwise would
3369           have been shown in the bottom right corner of ScrollableControl
3370           when ScrollableControl is not suppose to support sizing.
3371         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
3372           sizegrip is shown and enabled, and hook up with necessary events.
3373
3374 2007-02-01  Chris Toshok  <toshok@ximian.com>
3375
3376         * DataGridTextBoxColumn.cs: clean up the
3377         GetFormattedString/GetColumnValueAtRow combination of functions.
3378         Also fix UpdateUI, and the initial state of
3379         IsInEditOrNavigateMode.
3380
3381         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
3382         aren't supposed to scroll the textbox here, we're supposed to
3383         scroll the datagrid.
3384
3385 2007-02-01  Chris Toshok  <toshok@ximian.com>
3386
3387         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
3388         setting the position.
3389
3390 2007-02-01  Chris Toshok  <toshok@ximian.com>
3391
3392         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
3393         here, since the most recent focus fixes keep us from generating
3394         the Leave event when our textbox gets focus.
3395         (Edit): we should be passing null for the column style's
3396         instantText parameter.
3397         
3398 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
3399
3400         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
3401         raised.  Fixes menu text/icons not showing up in PDN.
3402
3403 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3404
3405         * Control.cs: Remove code in constructor that makes every
3406         control with WS_CHILD set have initial location -1, -1.
3407
3408 2007-01-31  Jackson Harper  <jackson@ximian.com>
3409
3410         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
3411         XplatUIX11.
3412         * XplatUIX11.cs: Give teh keyboard to teh dnd.
3413
3414 2007-01-31  Jackson Harper  <jackson@ximian.com>
3415
3416         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
3417         - Remove some debug code.
3418
3419 2007-01-31  Jackson Harper  <jackson@ximian.com>
3420
3421         * XplatUIX11.cs: If you set the override cursor during a grab, it
3422         should actually override the grab cursor.  This comes into play
3423         when you are setting custom cursors in a DND feedback method.
3424
3425 2007-01-31  Jackson Harper  <jackson@ximian.com>
3426
3427         * X11Dnd.cs: Add support for handling the QueryContinue and
3428         GiveFeedback events.
3429         - Cancel drag and drop actions when the escape key is clicked.
3430         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
3431         can handle the ESCAPE key.
3432         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
3433         done when dnd events are continued after the button is released.
3434         - Add a new helper method so that dnd can translate key events.
3435
3436 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
3437
3438         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
3439         make it more obvious what is happening.
3440
3441 2007-01-30  Jackson Harper  <jackson@ximian.com>
3442
3443         * XplatUIX11.cs: Don't break when handling button release in drag
3444         and drop operations. We need that BUTTONUP message to get through
3445         so capture is released.
3446         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
3447         this is handled automatically when the mouse is down.
3448
3449 2007-01-30  Jackson Harper  <jackson@ximian.com>
3450
3451         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
3452         is closed, so we need to make sure that we aren't changing the
3453         dialog result when the OK (Open or Save) button has been clicked
3454         and we are closing the window ourselves.  Note we don't need to
3455         worry about the cache being written in this case, because it was
3456         already done in the previous FilOk call.
3457
3458 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3459         
3460         * DateTimePicker.cs: Remove a warning.
3461         * ComboBox.cs: Remove a couple of warnings.
3462
3463 2007-01-29  Chris Toshok  <toshok@ximian.com>
3464
3465         * XplatUIX11.cs: don't crash, and remove the icon if the user has
3466         set one, if SetIcon is passed a null icon.
3467
3468 2007-01-29  Andreia Gaita  <avidigal@novell.com>
3469
3470         * TextBox.cs: Redraw when the password characters changes
3471         * TextControl.cs: Check if textbox has a password char and draw 
3472         a line of password chars instead of the text in the line. LineTag gets 
3473         an extra Draw() method which allows document.Draw to override the text 
3474         that will be drawn. Removes 1024 char limitation on length of passworded 
3475         lines.
3476
3477 2007-01-29  Jackson Harper  <jackson@ximian.com>
3478
3479         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
3480         single chars is not.
3481
3482 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
3483
3484         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
3485         one pixel.  Fix a StackOverflowException caused by an overload wrongly
3486         calling itself.
3487
3488 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
3489
3490         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
3491         also remove ProcessArrowKey and put the code inside ProcessKeys.
3492
3493 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
3494
3495         * PaddingConverter.cs: Added.
3496
3497 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3498         
3499         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
3500         ShowPanels is false (fixes #80600). Only draw up to 127 characters
3501         of text (fixes #80601). For panels clip the text to draw to the
3502         panel (fixes #80603).
3503
3504 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3505
3506         * ComboBox.cs: Fixed implementation of ResetText.
3507
3508 2007-01-25  Jackson Harper  <jackson@ximian.com>
3509
3510         * TextControl.cs: For the last char of a line we need to use the
3511         line size, not that chars width, since it won't actually be
3512         computed since the right side of a char is based on the start of
3513         the left side of the next char, and the next char does not exist.
3514
3515 2007-01-25  Chris Toshok  <toshok@ximian.com>
3516
3517         * Splitter.cs: fix the new unit tests, and reindent some switch
3518         statements.
3519
3520 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3521
3522         * ComboBox.cs: Implemented 2.0 methods and events.
3523         * TextBoxBase.cs: Added OnTextUpdate, so that
3524         ComboBox.ComboTextBox can inform ComboBox of it.
3525
3526 2007-01-25  Jackson Harper  <jackson@ximian.com>
3527
3528         * TextControl.cs: Respect ShowSelection when deciding whether or
3529         not to display the caret, this allows comboboxes to have carets
3530         when the combotextbox does not have focus.
3531
3532 2007-01-25  Jackson Harper  <jackson@ximian.com>
3533
3534         * TextControl.cs: Add a Suspend/Resume for updating, basically the
3535         same as the Suspend/Resume for recalc, except this will do actual
3536         Invalidates.
3537         - New Undo manager, works much like the MS version.
3538         - Implemented Redo
3539         * TextBoxBase.cs: The Cut operation is undoable.
3540
3541 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3542         
3543         * TextBoxBase.cs: Don't antialias text. Makes it look way better
3544         on Windows (no difference on Linux).    
3545
3546 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3547
3548         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
3549         we don't want to activate any windows. Fixes #79433.
3550
3551 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
3552
3553         - ButtonBase.cs: Fix capitalization of parameter: disposing.
3554         [Fixes bug #80609]
3555
3556 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
3557
3558         * FileDialog.cs:
3559         - Move to using System.ComponentModel.EventHandlerList
3560         - Replace Refresh with Invalidate
3561         - Clear the mime filecache on closing
3562         - Some other memory reducing work. After beeing closed FD now uses
3563           only about 300 KB for the fdo mime stuff plus the memory of the
3564           cached icons.
3565         * Mime.cs: Changed coding style and removed unnecessary commented
3566         code. Some more memory memory reducing work.
3567
3568 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3569
3570         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
3571         a few other missing 2.0 properties.
3572         * Theme.cs: Added DrawFlatStyleComboBox.
3573         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
3574
3575 2007-01-24  Chris Toshok  <toshok@ximian.com>
3576
3577         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
3578         wake_waiting flag, not just when there's data to be read.  if we
3579         don't, then future wakeup's won't reach us and we'll be doomed to
3580         wait for the entire 1 second timeout forever (unless there are X
3581         events to be had).
3582
3583 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3584
3585         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
3586         until you pass Items.Count, not Items.Count - 1 like 1.1.
3587
3588 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
3589
3590         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
3591
3592 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
3593
3594         * ToolStripContainer.cs: The recent Dock fix exposed that I was
3595         adding the panels in the wrong order.
3596
3597 2007-01-24  Jackson Harper  <jackson@ximian.com>
3598
3599         * TextBoxBase.cs: When we move the caret we also need to move the
3600         selection, this fixes some random crashing after doing select
3601         text, unselect, delete a char, paste.
3602
3603 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3604
3605         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
3606
3607 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3608
3609         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
3610         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
3611         * ToolBar.cs: Force redraw in BackgroundImageChanged.
3612
3613 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3614
3615         * ToolBar.cs:
3616         - Implement support for vertical toolbars. Fixes #80539;
3617         - Call LayoutToolBar when resize, it fix some other problems in layout.
3618         - Rename requested_height to requested_size, as we can have width on it
3619         when toolbar is vertical.
3620         - Create a private property "Vertical" that uses Dock to verify when 
3621         toolbar is vertical or not.
3622         - Set ControlStyles when change Dock property.
3623         - Refactory in LayoutToolBar to have better variables names and to support
3624         vertical toolbars.
3625         - Fixes default value for ButtonSize when button count is equal zero, size
3626         must be (39, 36) test case writed.
3627
3628 2007-01-23  Chris Toshok  <toshok@ximian.com>
3629
3630         * Control.cs: fix the checks so that they work correctly for mdi
3631         parents/children.
3632
3633 2007-01-23  Chris Toshok  <toshok@ximian.com>
3634
3635         * Control.cs: ControlCollection seems to have super-secret
3636         abstraction breaking knowledge of Mdi containers.  allow MdiClient
3637         to add toplevel controls.
3638
3639 2007-01-23  Chris Toshok  <toshok@ximian.com>
3640
3641         * Control.cs: throw an ArgumentException if a toplevel control is
3642         added to our control collection from ControlCollection.Add, as
3643         well as from ControlCollection.IList.Add.  This fixes the
3644         ControlSetTopLevelTest.TestTopLevelAdd unit test.
3645
3646         Also, in ControlCollection.IList.Add, don't through an
3647         ArgumentNullException, throw an ArgumentException, when value ==
3648         null.  This matches MS.
3649
3650 2007-01-23  Chris Toshok  <toshok@ximian.com>
3651
3652         * BindingSource.cs: initial, incomplete, implementation of
3653         BindingSource.
3654
3655 2007-01-23  Jackson Harper  <jackson@ximian.com>
3656
3657         * TextControl.cs:
3658         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
3659         that I can fix a broken unit test (TextBoxTest::ClearUndo)
3660         
3661 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
3662
3663         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
3664
3665 2007-01-23  Andreia Gaita  <avidigal@novell.com>
3666
3667         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
3668         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
3669         IndexOfKey() for 2.0
3670
3671 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3672
3673         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
3674         to prevent it from changing z-order.
3675         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
3676         leave UI updates in MdiWindowManager.
3677         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
3678         1 sized (NC handling goes weird on Linux otherwise).
3679         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
3680         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
3681         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
3682         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
3683         and SetWindowState(s) to allow for changing the size of an activated child
3684         before activating it (reduces a lot of flicker).
3685
3686 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
3687
3688         * Form.cs: Changing FormBorderStyle has different semantics based
3689         on whether the Form is visible or not.  If not visible, don't change
3690         the Size.  But InvalidateNC needs to be called to force the window
3691         to pick up the changes and redraw itself.  [Fixes bug #80574]
3692
3693 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
3694
3695         [Moma work]
3696         * ContainerControl.cs: ProcessCmdKey.
3697         * ErrorProvider.cs: new constructor.
3698         * Form.cs: fix AutoValidateEvent compiler warning.
3699         * Label.cs: fix OnAutoSizeChanged compiler warning.
3700         * MenuStrip.cs: fix CanOverflow compiler warning.
3701         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
3702         * TextBox.cs: Dispose.
3703         * ToolStrip.cs: CanOverflow, re-enable double buffering.
3704         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
3705         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
3706         * ToolStripItem.cs: Overflow, RightToLeft properties.
3707
3708 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3709
3710         * Form.cs: Move the layout of the main form to MdiWindowManager.
3711         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
3712         do a layout of the main window to update MdiClient's client area to
3713         the right area. Fixes #80533. Remove the calculation of nc size, 
3714         it was just wrong and the correct one is the same as for 
3715         InternalWindowManager. 
3716
3717 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
3718
3719         * Control.cs: Setting Anchor or Dock needs to reset the other
3720         to its default.  [Fixes bug #80556]
3721
3722 2007-01-20  Chris Toshok  <toshok@ximian.com>
3723
3724         * CheckedListBox.cs: class status changes.
3725
3726         * ScrollableControl.cs: same.
3727
3728         * RichTextBox.cs: same.
3729
3730         * ContainerControl.cs: same.
3731
3732         * ListView.cs: same.
3733
3734         * NotifyIcon.cs: same.
3735
3736         * MenuStrip.cs: same.
3737
3738         * RadioButton.cs: same.
3739
3740         * CheckBox.cs: same.
3741
3742         * PrintPreviewDialog.cs: same.
3743
3744         * Form.cs: same.
3745
3746 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
3747
3748         * TreeNode.cs: Apply Alan's patch for Name property.
3749
3750 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3751         
3752         * Form.cs: Implemented SizeGripStyle.
3753         * SizeGrip.cs: Check for minimum and maximum size for the
3754         control being resized and only resize if size has actually
3755         changed.
3756
3757 2007-01-19  Chris Toshok  <toshok@ximian.com>
3758
3759         * DataGridColumnStyle.cs: stop setting _readonly in the
3760         PropertyDescriptor setter.  fixes a unit test failure.
3761
3762         also, rename ParentReadOnly to TableStyleReadOnly, and have it
3763         just consult our table style (if we have one).  We don't need to
3764         consult the datagrid readonly attribute because that's passed in
3765         as the _ro arg to Edit.  this simplifies things a little.
3766         
3767         * DataGrid.cs: use CurrentColumn instead of
3768         current_cell.ColumnNumber just to simplify some of the code.
3769
3770         switch the order of some things in the CurrentCell setter to keep
3771         the previous cell from getting a textbox again -
3772         EnsureCellVisibility causes scrolling to happen, which calls Edit.
3773         So we need to set the new cell before calling it.
3774         
3775         call Edit in OnEnter, as does Microsoft.
3776         
3777         also, make sure the current table style isn't the one we create
3778         initially when checking to see if it's different than the one
3779         we're setting it to in BindColumns (this fixes #80421).
3780
3781         * GridTableStylesCollection.cs: table styles can have "" for a
3782         mapping name.  part of the fix for #80421.
3783
3784         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
3785         Edit significantly.
3786
3787 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3788
3789         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
3790         and less GDI object leaky-er.
3791
3792 2007-01-18  Andreia Gaita  <avidigal@novell.com>
3793
3794         * LinkLabel.cs: Add opaque control style
3795
3796 2007-01-18  Jackson Harper  <jackson@ximian.com>
3797
3798         * TextControl.cs: Calculate width properly.
3799         - Don't store the tag's X offset, this can be figured out very
3800         easily.
3801         - When getting the caret tag make sure to get the last empty tag.
3802
3803 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3804
3805         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
3806         [Fixes bug #79959]
3807
3808         * Control.cs: Color.Empty shouldn't count for previous transparent
3809         redraw changes.
3810
3811 2007-01-18  Jackson Harper  <jackson@ximian.com>
3812
3813         * TextBox.cs:
3814         * RichTextBox.cs:
3815         * TextControl.cs: Starting to merge in some pieces of my older
3816         undo work.  Basically just some slight cleanup of the undo API.
3817
3818 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3819
3820         * TrackBar.cs: Fix signature of RightToLeftLayout.
3821         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
3822         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
3823         * Application.cs: Implemented UseWaitCursor.
3824
3825 2007-01-18  Jackson Harper  <jackson@ximian.com>
3826
3827         * TextControl.cs: We can't skip tags if any part of the tag is
3828         visible.
3829
3830 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3831
3832         * ContainerControl.cs: Override OnLayout.
3833
3834 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3835
3836         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
3837
3838         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
3839         everything else.
3840
3841 2007-01-18  Chris Toshok  <toshok@ximian.com>
3842
3843         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
3844         (leftover from the container_selected days, I'd wager).  fixes bug
3845         #80546.
3846
3847 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3848
3849         * Control.cs: Apply patch from George to fix the new testcase on
3850         bug #80451.  We can't just check for Color.Transparent, we need 
3851         to check if the back color's alpha channel is < 255.
3852
3853 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3854
3855         * Form.cs: Move setting show_icon = true to before the constructor
3856         so that the base constructor has that information when it calculates
3857         the form's size.  Was causing forms to be (6, 6) bigger than they
3858         were supposed to be.  Thanks for catching this Rolf!
3859
3860 2007-01-18  Jackson Harper  <jackson@ximian.com>
3861
3862         * TextControl.cs: When replacing a selection we need to invalidate
3863         from the initial selection start, because selection start is moved
3864         to the end of the replacement.
3865
3866 2007-01-18  Andreia Gaita  <avidigal@novell.com>
3867
3868         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
3869
3870 2007-01-18  Chris Toshok  <toshok@ximian.com>
3871
3872         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
3873         I just added.
3874
3875 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
3876
3877         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
3878         layout methods and properties from ToolBarButton must be available
3879         into ToolBarButtonInfo.
3880
3881 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3882
3883         * Control.cs: If the control has a transparent background, we
3884         need to refresh it when it moves and when it's parent's background
3885         image changes.  [Fixes bug #80451]
3886
3887 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3888
3889         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
3890
3891 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3892
3893         * XplatUIWin32.cs: Implement proper double buffering for Windows.
3894         [Fixes bug #80447, and probably speeds up things as well]
3895
3896 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3897
3898         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
3899         * XplatUIWin32.cs: We need to recalculate NC size after changing 
3900         window style to toolwindow (otherwise the client rectangle will be
3901         3 pixels to small for some reason).
3902         * MdiWindowManager.cs: Revert NC size calculations to match how
3903         they are calculated only based on window styles (to match
3904         Win32AdjustWindowRectEx, since otherwise when setting size or 
3905         location, Control will call Win32AdjustWindowRectEx to update client 
3906         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
3907         calculate a different value of client size causing another paint 
3908         (and flickering))
3909         * InternalWindowManager.cs: When moving or resizing a window only
3910         update size or location if they actually changed.
3911         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
3912         (seems to match Windows behaviour better). Cleaned up 
3913         ManagedWindowDecorations to draw what's needed and nothing else
3914         (was drawing borders and lines where they shouldn't be)
3915         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
3916         (style = 0xFFFF) and takes into account caption height when 
3917         calculating window rectangle.   
3918
3919 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
3920
3921         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
3922         can be added to toolbar multiple times, we need to maintain a list of 
3923         button information for each positions.
3924
3925 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
3926
3927         * ToolBar.cs: Some small stetic changes.
3928
3929 2007-01-16  Jackson Harper  <jackson@ximian.com>
3930
3931         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
3932         that allow us to have nested recalc = false blocks.
3933         - Add paste support for images in the RichTextBox
3934         * RichTextBox.cs: flush the text after the color is changed, so
3935         the change takes effect.
3936         - Use SuspendRecalc
3937         - Some extra debugging info
3938         * TextControl.cs: Tags no longer track their length, it is just
3939         computed from the next tags length, this makes things a little
3940         simpler and reduces places that we have to track length changes.
3941         - Refactored the linetag class a little so we could make it
3942         a base class for different kinds of tags
3943         - Created a image tag, a tag that can have a single image inserted
3944         into it
3945         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
3946         that we can call suspend multiple times.
3947         - Add some debugging methods
3948
3949 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3950
3951         * MdiClient.cs: Add ActivatePreviousChild for 
3952         mdi child window navigation.
3953         * Form.cs: Use MdiClient.ActivateNextChild/
3954         ActivatePreviousChild instead of Form.SelectNextControl
3955         to select the next/previous child since 
3956         SelectNextControl doesn't do it in the same order
3957         as mdi children should do it.
3958
3959 2007-01-16  Chris Toshok  <toshok@ximian.com>
3960
3961         * Control.cs: remove container_selected field.
3962
3963 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3964
3965         * MdiClient.cs: Update main form's ActiveChild when
3966         updating keyboard focus for the mdi child.
3967
3968 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
3969
3970         * Control.cs: PreferredSize fix.
3971
3972         * Form.cs: Add several 2.0 events, properties, and methods.
3973
3974 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
3975
3976         * Form.cs: Provide meaningful message when MdiParent is assigned a
3977         Form that is not an MdiContainer.
3978
3979 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3980
3981         * MdiClient.cs: Update main form's ActiveChild when
3982         activating a mdi child.
3983
3984 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3985
3986         * MdiWindowManager.cs: Fix NRE when merging menus and main form
3987         doesn't have a menu.
3988
3989         * Form.cs: Request NCRecalc after creating a mdi child window.
3990         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
3991         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
3992         
3993         * MdiClient.cs: Add new method SendFocusToActiveChild that either
3994         sends keyboard focus to the active child, or to the MdiClient
3995         if there are no child forms.
3996         
3997 2007-01-15  Chris Toshok  <toshok@ximian.com>
3998
3999         * ListView.cs: drop the *Internal overrides, just do our work in
4000         ItemControl's WndProc instead.
4001
4002         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
4003         of the various controls, and forward the events properly (in the
4004         same manner as MS) from the textbox to the UpDown.  Also the
4005         ActiveControl of the UpDownBase gets set properly now.  Finally,
4006         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
4007
4008         * NumericUpDown.cs: set Text in the ctor.
4009
4010         * DomainUpDown.cs: call UpdateEditText in the ctor.
4011         
4012         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
4013         so even a Selectable = false textbox can be focused if you click
4014         in it.  Go figure.
4015
4016         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
4017         just add their handling in their respective WndProc's.  Also add
4018         an explicit FocusInternal method that doesn't consult CanFocus
4019         before calling Select(this).
4020
4021         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
4022         do our work in WndProc instead.
4023
4024         * TabControl.cs: same.
4025
4026         * ComboBox.cs: same.
4027
4028 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4029
4030         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
4031         Fixes #80006.
4032
4033 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4034
4035         * ListViewItem.cs:
4036         * ThemeWin32Classic.cs: Don't draw the item text outside
4037         item bounds in Details view, as well as use trimming.
4038         Fixes bug #80376.
4039
4040 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4041
4042         * Form.cs: Implement Form.ShowIcon.
4043         
4044         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
4045         null, which when combined with the DlgModalFrame window style removes
4046         the icon from the title bar.
4047
4048 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4049
4050         * Control.cs: Call OnMouseClick after OnClick. (2.0)
4051
4052 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4053
4054         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
4055         menu when mdi child windows theres a menu, uses insert to get icon
4056         at first position. Partially fix #80006.
4057
4058 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
4059
4060         * Clipboard.cs: Implement 2.0 methods.
4061
4062 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
4063
4064         * Menu.cs: Implement Insert method of MenuItemCollection class
4065         to fix MenuMerge.
4066
4067 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4068
4069         * ListView.cs: Implement 2.0 FindItemWithText method.
4070
4071 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4072
4073         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
4074         to calculate menu bar size. Fixes #80290.
4075
4076 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
4077
4078         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
4079
4080 2007-01-11  Chris Toshok  <toshok@ximian.com>
4081
4082         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
4083         initial form.
4084
4085 2007-01-11  Chris Toshok  <toshok@ximian.com>
4086
4087         * LinkLabel.cs: make sure to call base.Select in our Select method
4088         if it turns out we're going to be selected (i.e. if we have a link
4089         that is going to receive focus).  That way our container's
4090         ActiveControl is updated properly.
4091
4092 2007-01-11  Chris Toshok  <toshok@ximian.com>
4093
4094         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
4095         they have 1 or more links.  this fixes the crash gert reported.
4096
4097 2007-01-11  Andreia Gaita  <avidigal@novell.com>
4098
4099         * ContainerControl.cs: Remove ContainerSelected flag, not needed
4100         anymore.
4101
4102         * Control.cs (Controls.Add): Check if control to be added to the collection
4103         is a top level control, and throw an ArgumentException if it is.
4104         Remove ContainerSelectedFlag, not needed anymore.
4105
4106         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
4107         top most control doesn't activate the form. This fixes a problem in the
4108         MessageBox, where the default button wouldn't get focus because the form
4109         was activated before being Loaded - when the Owner is set, SetTopMost is
4110         called, and it would activate it.
4111
4112 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
4113
4114         * Button.cs: When clicked and setting the parent form's DialogResult,
4115         use FindForm instead of Parent, since parent could be a container
4116         control and not the Form.  Fixes bug #80495.
4117
4118 2007-01-10  Chris Toshok  <toshok@ximian.com>
4119
4120         * Form.cs: move the call to SendControlFocus into the same
4121         is_loaded check.
4122
4123 2007-01-10  Chris Toshok  <toshok@ximian.com>
4124
4125         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
4126         It breaks in the face of the new ActiveControl stuff, and should
4127         be unnecessary.
4128
4129         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
4130         activecontrol's focus if it's not already set, after we set
4131         ActiveControl, but before we call OnActivated.  Re-fixes #79667
4132         after the previous focus/active control fixes regressed it.
4133
4134         * Control.cs: reindent some code.
4135         
4136 2007-01-10  Chris Toshok  <toshok@ximian.com>
4137
4138         * Splitter.cs: clearing some outstanding changes from my tree.
4139         Replace all accesses (not writes) to the internal dock_style field
4140         with the Dock property.
4141
4142 2007-01-10  Chris Toshok  <toshok@ximian.com>
4143
4144         * Control.cs: make FireEnter, FireLeave, FireValidating, and
4145         FireValidated virtual.
4146
4147         * Form.cs: override and don't chain up calls to FireEnter and
4148         FireLeave.
4149
4150 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4151
4152         * ListView.cs: Add more text padding space when using
4153         auto resize for columns (the previous value didn't work fine).
4154
4155         * ThemeWin32Classic.cs: Update text position inside columns,
4156         to match the appeareance of .Net.
4157
4158         * ColumnHeader.cs: When using auto resize, only the Width should
4159         depend on the sub items, not the Height. Also, set width after
4160         auto resizing (the value of Width should never remain as -1 or -2).
4161
4162 2007-01-10  Chris Toshok  <toshok@ximian.com>
4163
4164         * Application.cs: fix compilation errors when debug is enabled.
4165
4166 2007-01-10  Chris Toshok  <toshok@ximian.com>
4167
4168         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
4169         add some nice ascii art pictures and explanation of the process).
4170         (GetMostDeeplyNestedActiveControl): new utility function we need
4171         because our ActiveControl can refer to a child container with its
4172         own ActiveControl.
4173
4174         * Form.cs (OnActivated): remove the call to SelectActiveControl
4175         from here, since you can override this method and not chain up,
4176         and winforms still sets the active control.
4177         (OnCreateControl): also remove the unnecessary SelectActiveControl
4178         call from here.
4179         (WndProc): it's actually called from the WM_ACTIVATE block, just
4180         before calling OnActivated.
4181
4182         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
4183         inside the else.  the ActiveControl setter will end up setting
4184         focus on @control.  This keeps us from setting it again (and
4185         generating an extra LostFocus/GotFocus pair).
4186         (Select (bool, bool)): reindent.
4187
4188 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
4189
4190         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
4191         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
4192         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
4193         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4194         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
4195         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
4196         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
4197         ToolStripTextBox.cs: Another wave of corcompare work.
4198
4199 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4200
4201         * ColumnHeader.cs: Implement 2.0 AutoResize method using
4202         the Width property.
4203
4204         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
4205         methods by callling Column.AutoResize method on columns.
4206
4207 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4208
4209         * Control.cs: Provide proper implementations of PreferredSize
4210         and GetPreferredSize (2.0).
4211
4212 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
4213
4214         * Form.cs: Remove one character (!) to make my previous OnClosing
4215         stuff work for modal windows like MessageBox.
4216
4217 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4218
4219         * ListView.cs:
4220         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
4221         ListView.Columns to get the last displayed column. Fixes #80452.
4222
4223 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
4224
4225         * Label.cs, LinkLabel.cs: Source code identation fixes.
4226
4227 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
4228
4229         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
4230         we dont need to invalidate only borders because when we invalidate four
4231         border lines the invalidate's generates a complete redraw of button, 
4232         because it now invalidate a complete rect some other redraws operations
4233         are fixed. Fixes #80196.
4234         
4235         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
4236         Remove ToolBarInvalidateEntireButton as it is not used.
4237
4238 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4239         
4240         * Form.cs: Make sure that both OnClosing and OnFormClosing are
4241         called for 2.0 profile.
4242         * CloseReason.cs: Make class internal for 1.1.
4243
4244 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
4245
4246         * ToolStripManager.cs: Implement FindToolStrip functionality.
4247         * ToolStrip.cs: Register and unregister with ToolStripManager.
4248
4249 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4250
4251         * Control.cs: This was messy.  2.0 moves much of ControlCollection
4252         to ArrangedElementCollection.  Implemented this with as few #if's as 
4253         possible (which is still too many).
4254
4255 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
4256
4257         * Control.cs: Implement SizeFromClientSize() [2.0].
4258
4259 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
4260
4261         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
4262         use Theme.BorderSize to calculate area instead of static value 1, 
4263         by the way use new BorderStaticSize instead     Border3DSize when 
4264         border_static is true. Fixes #79537.
4265         
4266         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
4267         
4268         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
4269         it is not needed.
4270
4271 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4272
4273         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
4274
4275 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
4276
4277         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
4278         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
4279         
4280         * Hwnd.cs: 
4281         - border_static field added, it will used to define when a control 
4282         theres 3D border but it must be static (thin).
4283         - In GetWindowRectangle use Theme.BorderSize to calculate area 
4284         instead of static value 1, by the way use new BorderStaticSize instead
4285         Border3DSize when border_static is true.
4286
4287         * XplatUIX11.cs, XplatUIOSX.cs: 
4288         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
4289         
4290         * Theme.cs: BorderStaticSize field added.
4291
4292 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4293
4294         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
4295
4296 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
4297
4298         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
4299         mimic same behavior than win32 that set border only in CreateParams,
4300         it fix problems under CreateParams overrides. Fix #79442 and partial
4301         fix #79537.
4302         
4303         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
4304         of thi control you must call recreate handle. 
4305         
4306         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
4307         need to do anything as RecreateHangle will take care about borders.
4308
4309 2007-01-05  Mike Kestner  <mkestner@novell.com>
4310
4311         * ListView.cs: hack to eliminate Lost/Got focus notifications on
4312         cycles between the ItemControl and parent.  Fixes #80388.
4313
4314 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
4315
4316         * Control.cs: Lazy init layout engine. Do not directly use 
4317         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
4318
4319 2007-01-05  Chris Toshok  <toshok@ximian.com>
4320
4321         * DataGrid.cs: don't forceably rebind columns in SetDataSource
4322         unless our list manager has changed (i.e. unless we have reason to
4323         believe our columns have changed).  Fixes #80422.
4324         
4325         also, disable the call do BindColumns in
4326         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
4327         1.1 the event isn't raised in response to a column addition on a
4328         table.)
4329
4330 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4331
4332         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
4333         that inheritors can not call it if they choose.  Fixes bug #80456.
4334
4335 2007-01-05  Andreia Gaita  <avidigal@novell.com>
4336
4337         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
4338         doesn't blow up with a null exception on marshalling.
4339         
4340 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
4341
4342         * Control.cs: Implement several 2.0 protected properties and methods.
4343         Ensure that all necessary events are being called when properties
4344         are set.
4345
4346 2007-01-05  Mike Kestner  <mkestner@novell.com>
4347
4348         * ListView.cs: implement PgUp/PgDn for Details view.  Also
4349         fixes First/LastVisibleIndex to use the item_control.ClientRect 
4350         instead of the parent control.  Fixes #80378.
4351
4352 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
4353
4354         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
4355           determine whether to use yard-pound or not (bug #78399).
4356
4357 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
4358
4359         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
4360         problems. So it is time to bring back the old popupbutton colors.
4361
4362 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4363
4364         * ColumnHeader.cs:
4365         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
4366         property by using the internal information of the
4367         columns order in ListView.
4368
4369 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
4370
4371         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
4372         Add 2.0 Tag properties.
4373
4374         * LinkArea.cs: Add 2.0 ToString method.
4375
4376 2007-01-03  Chris Toshok  <toshok@ximian.com>
4377
4378         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
4379         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
4380         when we're editing, which fixes #80047.
4381
4382 2007-01-03  Chris Toshok  <toshok@ximian.com>
4383
4384         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
4385         #80404.
4386
4387 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
4388
4389         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
4390         property and implementation.
4391
4392         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
4393         for MdiWindowListItem property.
4394
4395         * ToolStripDropDown.cs: Don't consider hidden menu items while
4396         laying out the menu.
4397
4398 2007-01-03  Andreia Gaita  <avidigal@novell.com>
4399
4400         * SendKeys.cs: window handle is not needed in win32, so just
4401         get the active window for X after parsing keys and don't use
4402         it when building the message; it is passed by parameter to the 
4403         Xplat method and used there to build the message instead. Also,
4404         wait for events to be processed on SendWait, as opposed to Send,
4405         which doesn't wait :) Playing with threads and Send() completely 
4406         hangs on ms.net, only SendWait() works.
4407         
4408         XplatUIX11.cs
4409         X11Display.cs: Check for valid window handle.
4410
4411 2007-01-03  Jackson Harper  <jackson@ximian.com>
4412
4413         * TextControl.cs: Need to prevent wrap calculations when replacing
4414         text (this was there before i removed it accidently).
4415         - Don't update the cursor during the positioning, just set it to
4416         selection_start at the end of the operaion.
4417
4418 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4419
4420         * Control.cs:
4421         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
4422         
4423 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4424
4425         * MonthCalendar.cs: Added Click and DoubleClick events again,
4426         but this time they only hide Control's Click and DoubleClick.
4427         
4428 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
4429
4430         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
4431         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
4432
4433 2007-01-02  Jackson Harper  <jackson@ximian.com>
4434
4435         * TextBoxBase.cs: We move the caret with the split now, so we
4436         don't need to explicitly move the caret after splitting.  This
4437         fixes the caret bumping down an extra line on Enter.
4438
4439 2007-01-02  Miguel de Icaza  <miguel@novell.com>
4440
4441         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
4442         2.72). 
4443
4444         * ScrollableControl.cs: Add Scroll event.
4445
4446 2007-01-02  Mike Kestner  <mkestner@novell.com>
4447
4448         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
4449         to fix all hdr height padding codepaths.  Fixes #80207.
4450
4451 2007-01-02  Chris Toshok  <toshok@ximian.com>
4452
4453         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
4454         setting it to the Control defaults anyway, and it being after the
4455         Dock set was screwing up layout.
4456         (set_Dock): don't short circuit out of setting base.Dock.  Also,
4457         no need to call UpdateStatusBar here, as it'll be re-layed out if
4458         it needs to be.
4459
4460 2007-01-02  Mike Kestner  <mkestner@novell.com>
4461
4462         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
4463         to header height for width == -1. Fixes the rest of #80207.
4464
4465 2007-01-02  Mike Kestner  <mkestner@novell.com>
4466
4467         * ListView.cs: rework the mouse event forwarding everaldo added
4468         to translate the coordinates to the parent control not
4469         raise the parent events until after we've done our work. Hover
4470         needs more work, in the case where HoverSelection is on, because
4471         the item control receives more than one MouseHover per Enter
4472         event, so we need to ensure only the "first" hover gets forwarded.
4473         Opening a minor bug for that.
4474
4475 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
4476
4477         * CheckedListBox.cs: Fixed SelectionMode to match MS.
4478         * ListControl.cs: Implemented AllowSelection property. Removed extra
4479         tabs.
4480         * ListBox.cs: Implemented AllowSelection property.
4481
4482 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4483
4484         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
4485         SelectedItem, it prevent for errors when you must disable item
4486         before perform click. Fixes #80409.
4487
4488 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4489
4490         * MenuAPI.cs: Prevent second level and beyond submenus to close
4491         until first level when move out side of popup.
4492         
4493 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4494
4495         * MenuAPI.cs:
4496         - Down submenu positin in three pixels.
4497         - Closes sub menu when mouse leaves from menu. Fixes #80402.
4498
4499 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
4500
4501         * ThemeWin32Classic.cs:
4502         - Fix popup menu size adding one pixel on the top.
4503         - Down menu item border from two to one to mimic Win32.
4504         - Some source identation fixes. 
4505
4506 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4507
4508         * ThemeWin32Classic.cs: Use float numbers to calculate size and
4509         position of menu arrows, it fix wrong arrow size.
4510
4511 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
4512
4513         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
4514         instead of line, it simplify draw operation and fix it using 3D
4515         borders to mimic Win32.
4516
4517 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
4518
4519         * StatusStrip.cs: Add implementation of the sizing grip.
4520
4521         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
4522         StatusStrip rendering.
4523
4524 2006-12-31  Chris Toshok  <toshok@ximian.com>
4525
4526         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
4527         override the layout style (anchor/dock) of the control.  assign to
4528         Dock instead.  Fixes bug #80416.
4529
4530         * ToolStrip.cs: same.
4531
4532 2006-12-31  Andreia Gaita  <avidigal@novell.com>
4533
4534         * ContainerControl.cs: Use ContainerSelected flag to check if 
4535         a Container is directly selected, or if Select is called on a 
4536         non-container. If a container is directly selected, focus events 
4537         should not be raised.
4538         Apply #80411 patch to throw exception on set_ActiveControl if 
4539         control is the same as the current one.
4540         
4541         * Control.cs: Use ContainerSelected flag (see above).
4542         Add invalidation check to raise event but not invalidate if 
4543         dimensions are 0.       
4544         Apply #80411 patch.
4545         
4546
4547 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
4548
4549         * MenuAPI.cs: After click, dont close popup menu when menu is
4550         ContextMenu. Fixes #80399.
4551
4552 2006-12-30  Chris Toshok  <toshok@ximian.com>
4553
4554         * ContainerControl.cs: make sure we throw the exception if the
4555         container control doesn't contain the control we're setting
4556         ActiveControl to.
4557
4558 2006-12-30  Chris Toshok  <toshok@ximian.com>
4559
4560         * Control.cs (SetTopLevel): fix the exception raised by
4561         SetTopLevel for child controls.
4562         (set_Anchor): call UpdateDistances when setting the anchor type.
4563         This fixes bug #80336.
4564
4565 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4566
4567         * Theme.cs: For now, revert back to 8pt font.
4568
4569 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
4570
4571         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
4572         Fixes #80395.
4573
4574 2006-12-29  Chris Toshok  <toshok@ximian.com>
4575
4576         * Control.cs: reorder the code in OnResize to give the same event
4577         ordering as MS.
4578
4579 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4580
4581         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
4582         TileHorizontally and TileVertically.
4583         
4584 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
4585
4586         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
4587         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
4588         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
4589         Corrected copyright and email adress.
4590
4591 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4592
4593         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
4594         of Exception in FullPath property if no TreeView is associated with
4595         the TreeNode.
4596
4597 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
4598
4599         * Theme.cs: Marked default_font as private, and initialize it in ctor
4600         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
4601         on 2.0 profile.
4602         * ThemeGtk.cs: Removed default_font intialization.
4603         * ThemeWin32Classic.cs: Removed default_font initialization.
4604
4605 2006-12-28  Chris Toshok  <toshok@ximian.com>
4606
4607         * Control.cs: fix a couple of place where we were creating handles
4608         more aggressively than we should be.  Fixes ControlRefresh unit
4609         tests.
4610
4611 2006-12-28  Chris Toshok  <toshok@ximian.com>
4612
4613         * Control.cs: contrary to what the comment said, Control.Dock does
4614         not supercede Control.Anchor - the last one you assign to decides
4615         the layout behavior.  so we need to keep track of which was the
4616         last set.  Also, fix some of the affected property arguments in
4617         PerformLayout calls, and remove an redundant parent.PerformLayout
4618         call in OnResized.
4619
4620         Add a VisibleInternal property, which returns is_visible.  We
4621         can/should get rid of all the usage of this field elsewhere.
4622
4623 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4624         
4625         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
4626         control style, not DoubleBuffer. Added UseDoubleBuffering property
4627         that indicates whether doublebuffering is enabled and supported.
4628         (comment from and code based on Gert Driesen's patch in #80324).
4629         Fixes #80324.
4630
4631 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4632         
4633         * Control.cs: Fixed a NRE.
4634
4635 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4636
4637         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
4638         for 2.0.
4639
4640 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4641
4642         * Control.cs: Rewrote double buffering, now a seperate
4643         class handles all the buffering, no Graphics is disposed of
4644         until the painting is finished (earlier implementation 
4645         would crash if the control was resized in the OnPaint, 
4646         since it would cause the double buffer to be recreated
4647         and the old one disposed), a separate Graphics is 
4648         created for every paint (MS behaviour and anyways the state
4649         of the Graphics would have to be saved and restored otherwise)
4650         
4651         * XplatUIDriver.cs: 
4652         * XplatUIX11.cs:
4653         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
4654         so that we can get the graphics for the back buffer without
4655         having to create a new one and remove the offscreen_dc parameter
4656         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
4657         
4658 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4659
4660         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
4661         Also make virtual all the key-related methods.
4662
4663         * ListViewItem.cs: Make virtual the key related methods for
4664         ListViewSubItemCollection.
4665
4666 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4667
4668         * ListView.cs:
4669         * ListViewItem.cs:
4670         * ThemeWin32Classic.cs:
4671         * Theme.cs: Initial support for Tile view in ListView,
4672         as well as the implementation of the required bits for it (Item
4673         and Subitem).
4674
4675 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4676
4677         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
4678         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
4679         Provide useful exception messages.
4680
4681 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4682
4683         * TrackBar.cs: Remove a warning.
4684         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
4685         when used by DateTimePicker, fixes #80287. This also requires that 
4686         MonthCalendar implements it's own drawing for the yearly updown control,
4687         otherwise the Capture tracking would be too complicated. Removed the Click 
4688         and DoubleClick events (according to comments they were hiding the base class
4689         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
4690         raise these events, not that they cannot be raised. It is possible to raise 
4691         them by calling OnClick and OnDoubleClick). Added two internal fields in 
4692         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
4693         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
4694         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
4695         event, no longer needed.
4696         
4697 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4698
4699         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
4700         true if new value differs from current value.
4701
4702 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4703
4704         * Control.cs: ControlCollection.Count must be public. Fixed build of
4705         unit tests.
4706
4707 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4708
4709         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
4710
4711 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
4712
4713         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
4714
4715 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
4716
4717         * Control.cs: Invalidates control including when Width and Height is 
4718         equal zero or is not visible, only Paint event must be care about 
4719         this. Fixes #79913.
4720
4721 2006-12-26  Chris Toshok  <toshok@ximian.com>
4722
4723         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
4724         more corcompare work.
4725
4726         * DataGridView.cs: fix compiler warning.
4727
4728         * ColumnHeader.cs: some corcompare work, and also take the
4729         opportunity to make the internal fields private.
4730
4731         * ListView.cs: fix the fallout from the above field change.
4732
4733 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
4734
4735         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
4736         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
4737         ToolStripTextBox.cs: Fixes to events and corcompare.
4738
4739 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
4740
4741         * ListView.cs: Call owner.OnMousexx event to propagate events from
4742         item to ListView. Fixes #80367.
4743
4744 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4745
4746         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
4747         if value is less than one. ItemHeight should not be set to a value
4748         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
4749         Removed extra tabs.
4750
4751 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
4752
4753         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
4754         * ToolStripStatusLabel.cs: Add Spring for Moma.
4755
4756 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4757
4758         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
4759         Fixed code formatting. Removed debug code.
4760         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
4761
4762 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
4763
4764         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
4765         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
4766         ArgumentOutOfRangeException if ColumnCount is negative. In 
4767         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
4768         less than 4 or higher than 32768.
4769         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
4770         Fixed FormatProvider to return CurrentCulture unless explicitly set.
4771         Fixed IsFormatProviderDefault to return true if FormatProvider has
4772         not been explicitly set.
4773
4774 2006-12-25  Chris Toshok  <toshok@ximian.com>
4775
4776         * Application.cs: add a couple of 2.0 events.
4777
4778 2006-12-25  Chris Toshok  <toshok@ximian.com>
4779
4780         * Control.cs: fix compiler warning.
4781
4782         * AxHost.cs: corcompare fixes.
4783
4784         * ApplicationContext.cs: corcompare fixes.
4785
4786 2006-12-25  Chris Toshok  <toshok@ximian.com>
4787
4788         * Control.cs: only update dist_right/dist_bottom if the
4789         width/height is > 0.  this fixes anchored controls being resized
4790         smaller until they disappear and then resized larger again.
4791
4792 2006-12-25  Chris Toshok  <toshok@ximian.com>
4793
4794         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
4795         since they're nothing more than X/Left and Y/Top, respectively.
4796
4797         Also, move back to a per-control Bitmap/Graphics for
4798         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
4799         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
4800         Height.
4801
4802 2006-12-25  Miguel de Icaza  <miguel@novell.com>
4803
4804         * MessageBox.cs: Implemented overload that takes a new "bool
4805         displayHelpButton" by adding a new internal field "show_help".
4806         When clicked this will raise the HelpRequested on the owner or the
4807         main form. 
4808
4809         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
4810         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
4811
4812         * ListView.cs: Add support ColumnWidthChanged and
4813         ColumnWidthChanging. 
4814
4815         Add support for ColumnReordered event.
4816         (ReorderColumn): Add NET_2_0 specific support for cancelling the
4817         reorder.
4818
4819         Very nice codebase!
4820
4821         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
4822
4823         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
4824
4825 2006-12-24  Chris Toshok  <toshok@ximian.com>
4826
4827         * GridTablesFactory.cs: 2.0 corcompare work.
4828
4829         * ToolStripContainer.cs: add "override" to
4830         ContextMenuStripChanged, and remove the local event object.
4831
4832         * ToolStripDropDown.cs: same with a couple properties.
4833
4834         * ToolStripPanel.cs: same with AutoSizeChanged event.
4835
4836         * TextBoxBase.cs: add "override" to AutoSizeChanged.
4837
4838         * Form.cs: add the remaining 2.0 events, and do some corcompare
4839         attribute work.
4840
4841         * DateTimePicker.cs: add "new" to padding.
4842
4843         * ButtonBase.cs: use Control's use_compatible_text_rendering.
4844
4845         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
4846
4847         * DataGridView.cs: PaddingChanged is overridden.
4848
4849 2006-12-24  Chris Toshok  <toshok@ximian.com>
4850
4851         * Control.cs: corecompare work here too.
4852
4853         * DataGridViewElement.cs, DataGridView.cs,
4854         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
4855         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
4856         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
4857         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
4858         work.
4859
4860 2006-12-24  Miguel de Icaza  <miguel@novell.com>
4861
4862         * Control.cs: Switched the error message on the console for a
4863         todo.  A review of the code will have to cope with this anyways
4864         (since its a large feature, it is in our radar) and it was
4865         producing too much output when running PDN.
4866
4867         * ToolStripComboBox.cs: Set the text when the SelectedIndex
4868         changes.  Applications depend on this (PDN 2.72)
4869
4870 2006-12-23  Chris Toshok  <toshok@ximian.com>
4871
4872         * TableLayoutSettings.cs: finish up the corcompare work for this
4873         class.
4874
4875 2006-12-23  Chris Toshok  <toshok@ximian.com>
4876
4877         * Control.cs: make SetImplicitBounds internal, do some futzing
4878         with LayoutEngine so that it's available in 1.1, and remove the
4879         entire duplicated code mess from PerformLayout.  Use
4880         System.Windows.Forms.Layout.DefaultLayout instead.
4881
4882         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
4883
4884 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
4885
4886         * Form.cs: Add MainMenuStrip property.
4887
4888 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
4889
4890         * Control.cs: Add ContextMenuStrip property and implementation.
4891         Fix ContextMenu implementation to show menu centered on control when
4892         activated using the keyboard instead of showing at screen (0,0).
4893
4894         * ToolStripDropDown.cs: Fix needed overload of Show ().
4895
4896 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4897
4898         * Menu.cs: Name property added for 2.0 profile.
4899         
4900 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4901
4902         * Menu.cs: Update information about FindMenuItem, method to be
4903         implemented soon.
4904
4905 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4906
4907         * MenuAPI.cs: When deselect items deselect also selected subitems.
4908         
4909 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4910
4911         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
4912         FindSubItemByCoord to found itens that is not active, also an
4913         cheking added to FindSubItemByCoord to search for items only 
4914         in visible popup windows. Fixes #80274.
4915
4916 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
4917
4918         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
4919         internal property, it be care about change ExStyle. 
4920
4921 2006-12-22  Andreia Gaita  <avidigal@novell.com>
4922
4923         * ContainerControl.cs: set activeControl for parent forms up the 
4924         tree when the new activecontrol is a container.
4925         When validating the active control, if it is a container, also
4926         raise up the validation for it's active control. Fixes #80280
4927         
4928         * Control.cs: Add internal property flag and check to prevent
4929         Focus events from getting raised when Select() is called for
4930         a ContainerControl. There are still too many focus events being
4931         raised at the moment though.
4932         Cleaned up the code a bit.
4933
4934 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4935
4936         * Control.cs: Added all missing 2.0 events.and
4937         fixed a couple of corcompare issues.
4938         * TrackBar.cs: Implemented missing 2.0 bits.
4939         * MonthCalendar.cs, 
4940         * DateTimePicker.cs, 
4941         * MdiClient.cs: Fixed some corcompare issues.
4942
4943 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4944
4945         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
4946         SplitterPanel.cs: corecompare work.
4947
4948 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4949
4950         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
4951         Clean up warnings for BackgroundImageChanged and PaddingChanged
4952         events now that they are implemented in Control.cs.
4953
4954 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4955
4956         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
4957         
4958         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
4959         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
4960         of TableLayoutPanel and supporting cast.
4961
4962 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4963
4964         * XplatUIWin32.cs: 
4965         - GrabWindow now confines the mouse pointer to the confine window.
4966         - Added Win32ClipCursor and Win32GetClipCursor.
4967
4968         * Control.cs: 
4969         - Added CaptureWithConfine to be able to capture and confine 
4970         mouse pointer.
4971         
4972         * InternalWindowManager.cs: 
4973         - Call CaptureWithConfine instead of Capture if we're an
4974         MdiChild (fixes #79982).
4975
4976 2006-12-21  Chris Toshok  <toshok@ximian.com>
4977
4978         * DataGrid.cs: guard against the initial state of selection, where
4979         selection_start == -1.  make sure we only select from index >= 0.
4980         Fixes bug #80291.
4981
4982 2006-12-21  Chris Toshok  <toshok@ximian.com>
4983
4984         * Control.cs: we don't need to be so draconian with
4985         UpdateDistances, and we thusly don't need to call it before
4986         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
4987
4988 2006-12-21  Daniel Nauck  <dna@mono-project.de>
4989
4990         * ComboBox.cs,
4991         TextBox.cs: Implemented AutoComplete properties.
4992
4993 2006-12-20  Chris Toshok  <toshok@ximian.com>
4994
4995         * DataGridView*.cs: some corecompare work.
4996
4997 2006-12-20  Jackson Harper  <jackson@ximian.com>
4998
4999         * XplatUIX11.cs: We need to hide the caret when deleting it,
5000         otherwise you get carets left lying around everywhere.
5001         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
5002         prevents getting some weird half drawn caret tracers when
5003         scrolling.
5004         * TextControl.cs: Attempt to reduce the number of times we need to
5005         recreate the caret.
5006
5007 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
5008
5009         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
5010
5011 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5012
5013         * DateTimePicker.cs:
5014         - Implemented missing 2.0 bits.
5015         - Changed some default values to match MS.
5016         
5017 2006-12-20  Jackson Harper  <jackson@ximian.com>
5018
5019         * TextBoxBase.cs: When changing the font across the document we
5020         can't recalculate after changing each line, since that will cahnge
5021         the line count.
5022         - PreferredHeight is a little different than i thought.
5023         - When backspacing, move the caret before we do the actual char
5024         delete, because when that delete crosses a wrap boundary the
5025         positional information will change.
5026
5027 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5028
5029         * Control.cs: Added some missing 2.0 bits: 
5030         BackgroundImageLayout, BackgroundImageLayoutChanged, 
5031         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
5032         add IBindableComponent and IDropTarget implementation.
5033         
5034         * MonthCalendar.cs: 
5035         - Added all missing 2.0 features:
5036         BackgroundImageLayout, RightToLeftLayout, 
5037         OnHandleDestroyed, RightToLeftLayoutChanged, 
5038         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
5039         PaddingChanged.
5040         - Rewrote all the BoldDate code, it was completely broken.
5041         - Fixed all the tests (the tests can now be re-enabled, the
5042         problems were not with the tests, but with the control, it was
5043         mostly broken).
5044         
5045         * DateTimePicker.cs: Changed the location where the 
5046         MonthCalendar is shown.
5047         
5048 2006-12-19  Chris Toshok  <toshok@ximian.com>
5049
5050         * DataGridView.cs: add IDropTarget implementation.
5051
5052         * ToolStripPanel.cs: add IDropTarget implementation.
5053
5054 2006-12-19  Jackson Harper  <jackson@ximian.com>
5055
5056         * TextControl.cs: soft now means something different than what it
5057         used to mean, we want to move the caret regardless of whether or
5058         not this break was soft (would we really have wanted the caret
5059         to not move with the break in the old context?)
5060         * TreeView.cs: Make sure we factor in the vert scrollbar when
5061         calculating the horizontal scrollbar's maximum.
5062
5063 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5064
5065         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
5066         check for keywords in alternate casing, close bug #80049.
5067
5068 2006-12-19  Chris Toshok  <toshok@ximian.com>
5069
5070         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
5071         methods (which all do nothing).
5072
5073         * IDropTarget.cs: add the 4 missing methods.
5074
5075 2006-12-19  Chris Toshok  <toshok@ximian.com>
5076
5077         * TableLayoutRowStyleCollection.cs: corcompare work.
5078         
5079         * TableLayoutSettings.cs: same.
5080
5081         * TableLayoutStyle.cs: same.
5082
5083         * TableLayoutColumnStyleCollection.cs: same.
5084
5085 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
5086
5087         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
5088         TableLayoutPanel I've had in my local tree for way too long.
5089
5090 2006-12-19  Miguel de Icaza  <miguel@novell.com>
5091
5092         * TableLayoutSettings.cs: Finish the public API (still needs all
5093         the logic to update on changes). 
5094
5095         * TableLayoutPanelCellPosition.cs: new file.
5096         
5097         * TableLayoutRowStyleCollection.cs,
5098         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
5099         TableLayoutSettings.cs: Track the final 2.0 table api.
5100
5101 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5102
5103         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
5104         and Image List 2.0 members for ColummnHeader.
5105         * ListView.cs: Add key-related 2.0 methods for
5106         ColumnHeaderCollection.
5107
5108 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5109
5110         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
5111         ArgumentNullException if items argument is null. Ignore null item in
5112         arrays. Removed extra tabs.
5113
5114 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
5115
5116         * MonthCalendar.cs: Fixed InvalidCastException.
5117
5118 2006-12-19  Jackson Harper  <jackson@ximian.com>
5119
5120         * TextControl.cs: Don't increment the position here.
5121         - When calculating char positions only add in the line break size
5122         for hard line breaks.
5123
5124 2006-12-19  Andreia Gaita  <avidigal@novell.org>
5125
5126         * SendKeys.cs: Changed some things to match ms.net behaviour
5127         when parsing shifted capital letters.
5128         
5129         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
5130         Add window handle as parameter to SendInput. X11 needs the 
5131         window handle, and the handle being passed      to it in the keys 
5132         queue is the active control handle (which windows needs), not 
5133         the window handle.
5134         
5135         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
5136         to support SendKeys on X.       
5137         
5138         * X11Keyboard: Implement helper method to lookup a linux keycode
5139         given the virtual keycode. Added table of keycode-2-virtualkey
5140         values to support this.
5141
5142 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5143
5144         * ListView.cs: Add support for SelectedIndexCollection
5145         and SelectedItemCollection 2.0 methods. Implement support
5146         for ImageKey too.
5147         * ListViewItem.cs: Add support for ListViewSubItemCollection
5148         2.0 methods. Also, fix an incorrect behavior of AddRange method
5149         (it shouldn't call Clear).
5150         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
5151
5152 2006-12-19  Jackson Harper  <jackson@ximian.com>
5153
5154         * RichTextBox.cs: 
5155         * TextBoxBase.cs: New args for FormatText
5156         * TextControl.cs: Rewrote the main drawing method, this version
5157         feels a little easier to understand and debug to me.  Hopefully it
5158         does to others also
5159         - Fix FormatText to OR in the new formating values.  Added
5160         FormatSpecified param, basically this works in the same way as
5161         BoundsSpecified in Control.
5162         - Set the caret properties when the caret is positioned.
5163         - When wrapping text make sure that we calculate the width of the
5164         last character
5165         - when calculating alignments we might have wrapped down to the
5166         next line, so don't search for an individual tag, search for the
5167         end of the line
5168         - We need to invalidate the selection area when we replace the
5169         selection.
5170         
5171 2006-12-19  Daniel Nauck  <dna@mono-project.de>
5172
5173         * Application.cs: add Restart () 2.0 support
5174
5175 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5176
5177         * MenuItem.cs: Invalidate menu item rectangle after change Enable
5178         property. Fixes #80268.
5179         
5180 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5181
5182         * MenuAPI.cs: Dont trigger select event when closes top menu
5183         item. Fixes #80270.
5184
5185 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5186
5187         * MenuAPI.cs: When you click on menuitem only trigger onselect
5188         event for top menu itens. Fixes #80271.
5189         
5190 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5191
5192         * MdiWindowManager.cs: Make IconicBounds depend on
5193         the bottom of MdiClient, not the top (fixes #80267)
5194         
5195 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5196
5197         * MdiClient.cs: Added missing 2.0 attribute
5198
5199 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5200
5201         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
5202         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
5203
5204 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
5205
5206         * MenuAPI.cs: Fix click when menuitem is not popup,
5207         this regression was caused by last commit (#80272).
5208
5209 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
5210
5211         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
5212         fire click event or close menu. Fixes #80272.
5213
5214 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5215
5216         * ListViewHitTestInfo.cs: add
5217
5218 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5219
5220         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
5221         * FlatButtonAppearance.cs: add
5222         * DockingAttribute.cs: add
5223
5224 2006-12-17  Chris Toshok  <toshok@ximian.com>
5225
5226         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
5227         and rebind our columns when it does - this way, if you make
5228         changes to the DataTable (or set the Table attribute on a DataView
5229         after setting it as the DataGrid's DataSource, the changes are
5230         made visible.)  Fixes bug #80107.
5231
5232 2006-12-17  Daniel Nauck  <dna@mono-project.de>
5233
5234         * ListViewGroup.cs: add internal Location property for layouting.
5235         * Theme.cs: add abstract ListViewGroupHeight function.
5236         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
5237
5238 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5239
5240         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
5241         Added reset of selected index to 0 when adding first tab page.
5242         Fixes #80264
5243         
5244         * NumericUpDown.cs: Fix NET_2_0 check
5245
5246 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5247
5248         * ListViewGroup.cs: fixed DefaultValueAttribute value
5249
5250 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5251
5252         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
5253
5254 2006-12-15  Miguel de Icaza  <miguel@novell.com>
5255
5256         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
5257         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
5258         ScrollableControl.cs: Add a handful of methods that are
5259         overwritten in 2.0 
5260
5261 2006-12-15  Chris Toshok  <toshok@ximian.com>
5262
5263         * XplatUIWin32.cs: initial implementation of the Reversible
5264         drawing functions.  there are some problems.  DrawReversibleFrame
5265         doesn't seem to work at all for Dashed FrameStyle, and in the
5266         Thick case there are drawing errors at the corners (we probably
5267         need to bind Rectangle instead of doing moveto/lineto's.)
5268
5269 2006-12-16  Andreia Gaita  <avidigal@novell.com>
5270         
5271         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
5272         to send blocks of key messages. Send accumulates keys to send with Flush, 
5273         while SendWait sends all keys immediately.
5274                 
5275         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
5276         XplatUIX11.cs,  XplatUIX11-new.cs:
5277         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
5278         to Win32 SendInput.
5279         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
5280         
5281         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
5282         testing for ms.net on this class is very tricky, as the tests run too fast 
5283         to allow the hook to release, essentially freezing the keyboard and the 
5284         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
5285         category :p
5286
5287 2006-12-16  Daniel Nauck  <dna@mono-project.de>
5288
5289         * Padding.cs: fixed serialization compability to MS ("_var" field names),
5290                         added missing attributes.
5291  
5292 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5293
5294         * ListViewGroup.cs: Added missing attributes.
5295         * ListViewGroupCollection.cs: Added missing attributes.
5296
5297 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5298
5299         * ListViewItem.cs: fixed ListViewSubItem text property.
5300
5301 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5302         
5303         * Control.cs: Added missing 2.0 attributes
5304         
5305 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5306         
5307         * MdiClient.cs: Added missing 2.0 attribute.
5308         * MonthCalendar.cs: Added some missing 2.0 attributes 
5309         and properties.
5310         
5311 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5312
5313         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
5314
5315 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
5316
5317         * MainMenu.cs: Add the new 2.0 constructor to help out people
5318         using the MainMenu in VS2005.
5319
5320 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5321         
5322         * MdiChildContext.cs: Removed it, no longer used.
5323         * MdiClient.cs: Added missing 2.0 attributes.
5324         
5325 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5326         
5327         * InternalWindowManager.cs: Fix a NullRef with previous 
5328         changes for toolwindows.
5329         
5330 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5331
5332         * Control.cs: 
5333         - Added AfterTopMostControl to allow for certain controls 
5334         to always stay on top when normal controls are brought to 
5335         front.
5336         
5337         * XplatUIWin32.cs: 
5338         - (DrawInversibleRectangle): Get window rectangle from Win32 
5339         in stead of from control, since Win32 doesn't calculate
5340         screen coords correctly from control's Location if it 
5341         have docked siblings.
5342         
5343         * MdiWindowManager.cs:
5344         - Correct the control menu popup location when clicked on
5345         the maximized form icon. (fixes #80223.1)
5346         - Don't show moving rectangle if mouse hasn't moved from
5347         the original clicked point.
5348         - Removed FormGotFocus handler (not used).
5349         - Calculate the control buttons location from the main
5350         window's size and not client size (fixes #79770).
5351         - Form is now closed when the form icon is double-clicked
5352         (fixes #79775). 
5353         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
5354         
5355         * InternalWindowManager.cs:
5356         - Moved some MDI-only methods to MdiWindowManager.
5357         - Removed unused properties and methods.
5358         - Unified method naming for methods handling wm messages.
5359         - Moved all message handling to seperate methods for
5360         each message.
5361         
5362         * ThemeWin32Classic.cs:
5363         - DrawManagedWindowDecorations now draws the title bar 
5364         with a gradient brush.
5365         - Add a CPDrawButtonInternal that allows us to specify
5366         light, normal and dark colors for the buttons (control 
5367         buttons for MDI children were drawn with the same light
5368         color as the background, therefore loosing the 3D effect).
5369         
5370         * SizeGrip.cs:
5371         - Add a CapturedControl property that is used to 
5372         determine the control to resize (defaults to parent). 
5373         Needed for MdiClient, since its SizeGrip's parent is
5374         MdiClient, but the control to resize is the main form.
5375         
5376         * MdiClient.cs:
5377         - Set SizeGrip's CapturedControl to the main form in order
5378         to resize the main form and not the MdiClient.
5379         - Override AfterTopMostControl to leave the scrollbars 
5380         always on top.
5381
5382 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5383
5384         * ListView.cs: fixed ListViewItemCollection AddRange and
5385                         implemented ListViewItemCollection AddRange 2.0 support.
5386
5387 2006-12-15  Daniel Nauck  <dna@mono-project.de>
5388
5389         * ListViewGroup.cs: Add.
5390         * ListViewGroupCollection.cs: Add
5391         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
5392         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
5393                                 stub for ImageKey 2.0 support.
5394
5395 2006-12-14  Mike Kestner  <mkestner@novell.com>
5396
5397         * ListView.cs: add text padding to the autocalculation for columns
5398         of width -2.  Fixes #80207.
5399  
5400 2006-12-14  Mike Kestner  <mkestner@novell.com>
5401
5402         * ListView.cs: add some index guarding for partial row navigation 
5403         logic.  Fixes #80250.
5404
5405 2006-12-14  Mike Kestner  <mkestner@novell.com>
5406
5407         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
5408         are added or inserted to the collection.  Fixes #81099.
5409
5410 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
5411
5412         * MenuAPI.cs: Closes menu when right click out side of popup
5413         it fix problem in ContextMenu and MainMenu. Fixes #80252.
5414
5415 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5416
5417         * ListViewItem.cs: Fix dumb error.
5418
5419         * ListView.cs: Add Find and ContainsKey methods in 
5420         ListViewItemCollection, and also return true for IsReadOnly
5421         and IsFixedSize (changes for 2.0). 
5422
5423 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
5424
5425         * Control.cs: Allow Region to be set to null.
5426
5427 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5428
5429         * MdiWindowManager.cs: Remove unused (commented out) code.
5430         * Form.cs: When the MdiChild is maximized, the form needs 
5431         WM_NCMOUSELEAVE, so request it.
5432         * InternalWindowManager.cs: 
5433         - Added tooltips to control buttons.
5434         - Removed duplicated control button handling code.
5435         - Removed unused (commented out) code.
5436         
5437 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
5438
5439         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
5440         was used because we must set cursor without trigger ChangeCursor event
5441         and without change Cursor control property. Fixes #79963.
5442
5443 2006-12-12  Andreia Gaita  <avidigal@novell.com>
5444         
5445         * Control.cs: Check if Region setter value is null, and ignore
5446
5447 2006-12-12  Jackson Harper  <jackson@ximian.com>
5448
5449         * TextControl.cs: We were almost always drawing one more line then
5450         needed, since the GetLineByPixel will return the last line found
5451         at that pixel. In most cases though, we were invalidating up to
5452         the junction between two lines.
5453         - Improve debug code.
5454
5455 2006-12-12  Chris Toshok  <toshok@ximian.com>
5456
5457         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
5458         and FillReversibleRectangle.
5459
5460         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
5461         and FillReversibleRectangle.
5462
5463         * XplatUIWin32.cs: add stubs which do nothing for
5464         DrawReversibleFrame, DrawReversibleLine, and
5465         FillReversibleRectangle.
5466
5467         * XplatUIOSX.cs: add stubs which raise NIE for
5468         DrawReversibleFrame, DrawReversibleLine, and
5469         FillReversibleRectangle.
5470
5471         * XplatUIX11.cs: add working implementation for
5472         DrawReversibleFrame, DrawReversibleLine, and
5473         FillReversibleRectangle.
5474         
5475         * ControlPaint.cs: implement DrawReversibleFrame,
5476         DrawReversibleLine, and FillReversibleRectangle, by calling into
5477         the appropriate XplatUI method.
5478
5479 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5480
5481         * Form.cs: Make MdiClient have the focus even if it's
5482         not selectable, since it should receive WM_KEY* and WM_MOUSE 
5483         messages. Fixes #79907.
5484         
5485 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5486
5487         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
5488         queried after the window is created.
5489         
5490         * XplatUIX11.cs: Added SendParentNotify to implement 
5491         WM_PARENTNOTIFY logic. Fixes #79965.
5492         
5493         * Control.cs: Added MakeParam.
5494         
5495 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5496
5497         * MdiClient.cs: Resume Layout before setting window
5498         states (fixes #80201).
5499
5500 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5501
5502         * MenuAPI.cs: Deselect a menu item after performing
5503         the click (fixes #80197).
5504
5505 2006-12-11  Jackson Harper  <jackson@ximian.com>
5506
5507         * TextBoxBase.cs: We need to cap this value, since Maximum -
5508         ViewPortHeight can be less than zero.
5509         - Only do selection with the left mouse button.
5510         * TextBox.cs: Don't tell the world that we have a context menu.
5511         * Control.cs: New method so that we can control whether or not the
5512         context menu is visible outside MWF.
5513
5514 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5515
5516         * ToolBarButton.cs: Fix text positon. 
5517
5518 2006-12-11  Miguel de Icaza  <miguel@novell.com>
5519
5520         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
5521
5522         * Control.cs (DoubleBuffered): Add implementation.
5523
5524         * Application.cs (OpenForms): Add.
5525
5526 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5527
5528         * Form.cs: Use opacity instead of Opactiy to determine if we need
5529         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
5530
5531 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
5532
5533         * Control.cs: Fix NRE if Control.Site was set to null.
5534
5535 2006-12-11  Chris Toshok  <toshok@ximian.com>
5536
5537         * Control.cs: ControlCollection.Remove should return if the arg is
5538         null, and ControlCollection.SetChildIndex should raise a ANE.
5539
5540 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
5541
5542         * Control.cs: Verify value set for Dock property. Code formatting
5543         updates.
5544
5545 2006-12-11  Jackson Harper  <jackson@ximian.com>
5546
5547         * TextControl.cs: Draw the caret and the selection when a flag is
5548         set on the owner.
5549         * TextBoxBase.cs: We want to draw the caret and the selection for
5550         TextBox but not for TextBoxBase.
5551         - If the window is resized and scrolling is no longer needed (the
5552         whole doc is visible) set the scroll position to zero.
5553         - The default SelectWord (the one TextBox uses) should move the
5554         caret to the end of the word.
5555         - SelectAll moves the caret to the end of the selection.
5556         * TextBox.cs: We don't selectall on focus, we just do it when the
5557         control is created.
5558         
5559 2006-12-11  Mike Kestner  <mkestner@novell.com>
5560
5561         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
5562
5563 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5564
5565         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
5566         2.0 support.
5567         * ListViewItem.cs: Add Name 2.0 property.
5568
5569 2006-12-11  Andreia Gaita  <avidigal@novell.com>
5570
5571         * TabControl.cs: Set visibility on selected or default tab 
5572         when tabcontrol handle is created, so that it's contents
5573         actually show up (duh). Fixes #80193
5574         Don't redraw the control if there is no handle created, as
5575         the selected index might be completely invalid. Added some tests
5576         to check for this.
5577
5578 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
5579
5580         * ToolBar.cs: Uses maximun width and height of all buttons as 
5581         button rectangle when ButtonSize specified, it looks strange but
5582         is what happens in Win32. Fixes #80189.
5583
5584 2006-12-11  Jackson Harper  <jackson@ximian.com>
5585
5586         * TextControl.cs: Need to track undo levels ourself, since
5587         compound actions will mess them up.
5588
5589 2006-12-10  Andreia Gaita  <avidigal@novell.com>
5590
5591         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
5592         SelectedIndex value is changed (even if it's not valid).
5593         Reset SelectedIndex to 0 when the handle is created and if
5594         the current index is invalid.
5595         Fixes SelectdeIndex unit tests and #80128
5596
5597 2006-12-08  Chris Toshok  <toshok@ximian.com>
5598
5599         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
5600         calls EndEdit, it needs to be called before we set current_cell to
5601         its new value.  Otherwise, we end up committing the value in the
5602         textbox to the new cell as well.  Fixes bug #80160.
5603
5604 2006-12-08  Chris Toshok  <toshok@ximian.com>
5605
5606         * Form.cs (set_CancelButton): if the button's DialogResult is
5607         None, set it to Cancel.  Fixes bug 80180.
5608
5609 2006-12-08  Jackson Harper  <jackson@ximian.com>
5610
5611         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
5612         to watch ourselves when setting the canvas size and setting the
5613         scrollbar values.
5614
5615 2006-12-08  Chris Toshok  <toshok@ximian.com>
5616
5617         * DataGrid.cs: comment out the two MakeTransparent calls for the
5618         time being so people using trunk (and not 1.2.2) on windows can
5619         actually use the datagrid.  This deals with bug #80151.
5620
5621 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
5622
5623         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
5624         Graphics.DrawImage (image, int, int, int, int) overload instead
5625         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
5626         the dpi difference and was blurring images it drew.
5627         [Fixes bug #79960]
5628
5629 2006-12-08  Chris Toshok  <toshok@ximian.com>
5630
5631         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
5632         rowcnt is 0 (such as with an empty datasource), and make sure we
5633         initialize not_usedarea.Y to cells.Y, so we don't draw over the
5634         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
5635
5636 2006-12-08  Chris Toshok  <toshok@ximian.com>
5637
5638         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
5639         grid.
5640
5641 2006-12-08  Chris Toshok  <toshok@ximian.com>
5642
5643         [ Fixes bug #80167 ]
5644         
5645         * ThemeWin32Classic.cs: don't draw the image if the button's flat
5646         style is FlatStyle.System.
5647
5648         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
5649         ButtonBase.flat_style private, and switch uses of it to the public
5650         property.
5651         
5652 2006-12-08  Chris Toshok  <toshok@ximian.com>
5653
5654         [ Fixes bug #80121 ]
5655         
5656         * ThemeWin32Classic.cs: center the caption text in the datagrid
5657         when we draw it.
5658
5659         * DataGrid.cs: lessen the amount we add to the caption height from
5660         6 to 2.  6 was making it huge.
5661
5662 2006-12-08  Andreia Gaita  <avidigal@novell.com>
5663
5664         * UpDownBase: Handle MouseWheel call directly instead of capturing
5665         the inner textbox's OnMouseWheel. Fixes #80166
5666
5667 2006-12-08  Jackson Harper  <jackson@ximian.com>
5668
5669         * TextControl.cs: We need to invalidate the textbox when we empty
5670         it (how had this not been discovered before?)
5671
5672 2006-12-08  Jackson Harper  <jackson@ximian.com>
5673
5674         * TextBoxBase.cs: Reworked the mouse down code so I could get it
5675         to behave like MS, we now ignore the eventargs.Click and just
5676         track state ourself, which we were already doing anyways.
5677         - Constrain the double click handler to the double click size.
5678         
5679 2006-12-08  Chris Toshok  <toshok@ximian.com>
5680
5681         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
5682         direction if that scrollbar isn't shown.  fixes bug #80158.
5683
5684 2006-12-08  Andreia Gaita  <avidigal@novell.com>
5685
5686         * NumericUpDown.cs: Update value on getter. Fixes #79950
5687
5688 2006-12-08  Chris Toshok  <toshok@ximian.com>
5689
5690         * MenuItem.cs: add back in the event cloning code.  I didn't know
5691         how to do it in the face of the EventHandlerList work i'd done
5692         last week.  Fixes bug #80183.
5693
5694 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
5695
5696         * Control.cs: Add an invalidate to the BackgroundImage setter.
5697         [Fixes 80184]
5698
5699 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
5700
5701         * ToolStrip*: Add some small properties reported by MoMA, fix event
5702         firing and default properties based off of unit tests, and add some
5703         attributes based off of the class status page.
5704
5705 2006-12-07  Jackson Harper  <jackson@ximian.com>
5706
5707         * TextBoxBase.cs: Take HideSelection into account when determining
5708         whether or not to show the selection.
5709         * RichTextBox.cs: After inserting the RTF into the document move
5710         the cursor to the beginning of the document.
5711
5712 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
5713
5714         * Control.cs: Remove static ArrayList "controls" which maintained
5715         a reference to every control created.
5716         * Application.cs: Create a static FormCollection to maintain a reference
5717         to every form created.  Use it in places that formerly enumerated through
5718         the controls one looking for forms.
5719         * Form.cs: Add and remove self from above FormCollection.
5720
5721 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
5722
5723         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
5724           not libgdk (though it makes me wonder why I didn't have any
5725           problems)
5726
5727 2006-12-07  Chris Toshok  <toshok@ximian.com>
5728
5729         [ you had to know this was coming after that last commit...]
5730         
5731         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
5732         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
5733         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
5734         XCopyArea).
5735
5736 2006-12-07  Chris Toshok  <toshok@ximian.com>
5737
5738         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
5739         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
5740         all the behavior we need for double buffering.
5741
5742         * XplatUIDriver.cs: implement the 3 double buffer methods using a
5743         client side Bitmap, just like the old Control-based double buffer
5744         code did.  The methods are virtual, so each XplatUI driver
5745         subclass can replace the implementation to use a faster, platform
5746         specific approach.
5747
5748         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
5749         double buffer code, and clean things up a bit in the process.
5750
5751 2006-12-06  Chris Toshok  <toshok@ximian.com>
5752
5753         * Control.cs: reindent WndProc.
5754
5755 2006-12-06  Chris Toshok  <toshok@ximian.com>
5756
5757         [ I wanna be like BenM when I grow up ]
5758         
5759         * Hwnd.cs: create a single static Graphics object on the static
5760         Bitmap we create.  use this for our text measurements.
5761
5762         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
5763         This was causing us to allocate a backbuffer for every control,
5764         even when it wasn't flagged as double buffered.  Instead use the
5765         single graphics instance.  This might have implications for
5766         multithreaded applications.  If we run into problems we can switch
5767         to creating 1 Graphics per control, on the static Hwnd bitmap.
5768
5769         this change nets us a 7M savings in private dirty mappings when
5770         running FormsTest.exe.
5771
5772 2006-12-06  Chris Toshok  <toshok@ximian.com>
5773
5774         * ListView.cs: the BackgroundImage override is just to set
5775         attributes.  chain up to base.BackgroundImage.
5776
5777         * RichTextBox.cs: same.
5778
5779         * ToolBar.cs: same, but we need to also redraw the toolbar when it
5780         changes, so instead a handler for BackgroundImageChanged.
5781         
5782         * Control.cs: make background_image private.
5783
5784 2006-12-06  Chris Toshok  <toshok@ximian.com>
5785
5786         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
5787         sure we even need this assignment, but roll with it for now.
5788
5789         * Control.cs: make the cursor field private.
5790
5791 2006-12-06  Chris Toshok  <toshok@ximian.com>
5792
5793         * Form.cs: we don't need to explicitly set ImeMode to
5794         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
5795         behavior in the face of ImeMode.Inherit.
5796
5797         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
5798         change the ctor's assignment to use ImeMode instead of ime_mode.
5799
5800         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
5801         ImeModeInherit.  Only check for the parent's imemode (and return
5802         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
5803         This fixes the button unit test, which sets both ImeMode and
5804         DefaultImeMode to ImeMode.Disable.
5805
5806         also make the ime_mode field private.
5807
5808 2006-12-06  Chris Toshok  <toshok@ximian.com>
5809
5810         * Control.cs: make control_style private.
5811
5812         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
5813         setting the styles to true, then setting them to false instead of
5814         reverting to their previous values.
5815
5816         also, call SetStyle on the scrollbars instead of using
5817         control_style directly.
5818
5819 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
5820
5821         * FormCollection.cs: Implement. [2.0]
5822
5823 2006-12-06  Chris Toshok  <toshok@ximian.com>
5824
5825         * Control.cs: make tab_stop private.
5826
5827         * Label.cs: set TabStop, not tab_stop.  reformat some event
5828         add/remove methods to make them more compact.
5829
5830 2006-12-06  Chris Toshok  <toshok@ximian.com>
5831
5832         * RadioButton.cs: fix TabStop handling.
5833
5834 2006-12-06  Chris Toshok  <toshok@ximian.com>
5835
5836         * TextBox.cs: remove the explicit assignments to has_focus.
5837         Control does that.
5838
5839         * ButtonBase.cs: remove the assignment to has_focus.  Control will
5840         manage that.
5841         
5842 2006-12-06  Chris Toshok  <toshok@ximian.com>
5843
5844         * ButtonBase.cs: remove all uses of is_enabled from this code.
5845         it's always true when any of the code containing the checks is
5846         executed.
5847
5848 2006-12-06  Chris Toshok  <toshok@ximian.com>
5849
5850         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
5851         with different semantics (some are present in both 1.1 and 2.0
5852         profiles) so that we match MS's behavior in our unit tests.
5853
5854 2006-12-06  Jackson Harper  <jackson@ximian.com>
5855
5856         * TextControl.cs: Make this operation undoable.
5857         * TextBoxBase.cs: Factor the border width into the preferred
5858         height.
5859         - implement Modified as per the spec.
5860
5861 2006-12-06  Chris Toshok  <toshok@ximian.com>
5862
5863         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
5864
5865 2006-12-06  Chris Toshok  <toshok@ximian.com>
5866
5867         * Control.cs: make right_to_left and context_menu fields private.
5868
5869 2006-12-06  Chris Toshok  <toshok@ximian.com>
5870
5871         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
5872         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
5873         Control.child_controls private.  switch all uses over to
5874         Control.Controls.
5875
5876 2006-12-06  Chris Toshok  <toshok@ximian.com>
5877
5878         * System.Windows.Forms/GroupBox.cs,
5879         System.Windows.Forms/AccessibleObject.cs,
5880         System.Windows.Forms/ErrorProvider.cs,
5881         System.Windows.Forms/Control.cs,
5882         System.Windows.Forms/UpDownBase.cs,
5883         System.Windows.Forms/ScrollBar.cs,
5884         System.Windows.Forms/DateTimePicker.cs,
5885         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
5886         System.Windows.Forms/ToolTip.cs,
5887         System.Windows.Forms/RadioButton.cs,
5888         System.Windows.Forms/LinkLabel.cs,
5889         System.Windows.Forms/Splitter.cs,
5890         System.Windows.Forms/TextBoxBase.cs,
5891         System.Windows.Forms/ToolStripTextBox.cs,
5892         System.Windows.Forms/ContainerControl.cs,
5893         System.Windows.Forms/ThemeWin32Classic.cs,
5894         System.Windows.Forms/SizeGrip.cs,
5895         System.Windows.Forms/ToolStripDropDown.cs,
5896         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
5897         private.  switch all uses over to Control.Parent.
5898
5899 2006-12-06  Chris Toshok  <toshok@ximian.com>
5900
5901         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
5902         Control does this before calling emitting these events.
5903
5904         * TabControl.cs: same.
5905
5906         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
5907         Control.client_rect.
5908
5909         * ButtonBase.cs: use the ClientSize property instead of the
5910         client_size field.
5911
5912         * ScrollableControl.cs: same.
5913
5914         * Control.cs: another pass at making properties private.  also,
5915         move the initialization of tab_stop to the ctor.
5916
5917 2006-12-05  Andreia Gaita <avidigal@novell.com>
5918
5919         * TabControl.cs: Let the selected index be set freely if the 
5920         control handle is not yet created.
5921
5922 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
5923
5924         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
5925         internal until I can rewrite DefaultLayout.
5926         * ToolStrip.cs: Fix build error and some general cleaning.
5927         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
5928         Fix build errors caused by making some of Control's fields private.
5929
5930 2006-12-05  Jackson Harper  <jackson@ximian.com>
5931
5932         * TextControl.cs: Redo Insert a little so that it use IndexOf
5933         instead of Split, this prevents it from messing up on things like
5934         \n\n\n. Also more effecient since the split array doesn't need to
5935         be created.
5936         * TextBoxBase.cs: AppendText doesnt handle multiline and non
5937         multiline text differently, this is the first of many fixes that
5938         will make multiline/non-multiline the same thing as far as the
5939         TextBoxBase is concerned.
5940         - Don't split the text and insert lines, this can lose some line
5941         endings (like is the last line a soft or hard break). Instead use
5942         the new Insert.
5943         - Fix an off by one when combining all the lines in the Text
5944         getter.
5945         - Remove separate multiline handling from the Text getter/setter.
5946
5947 2006-12-05  Chris Toshok  <toshok@ximian.com>
5948
5949         * ButtonBase.cs: a few changes:
5950
5951         - don't reinitialize internal Control fields in the ctor when they
5952         have the same values as Control sets them.
5953
5954         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
5955         this before calling those methods.
5956
5957         - we don't need to call Refresh for anything.  use Invalidate
5958         instead.
5959
5960         - OnEnabledChanged doesn't need to redraw at all - Control.cs
5961         calls Refresh in its OnEnabledChanged.
5962         
5963         - several of the events we were registered for in the ctor to
5964         redraw ourselves already include calls to Invalidate in the
5965         property setters that raise the events.  remove the extra
5966         invalidation.
5967
5968         - reformat a switch statement that was 83274658 columns wide.
5969         
5970 2006-12-05  Mike Kestner  <mkestner@novell.com>
5971
5972         * ComboBox.cs: fix a unit test regression from a TextBox
5973         SelectionLength return of -1 when there's no selection.  
5974
5975 2006-12-05  Chris Toshok  <toshok@ximian.com>
5976
5977         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
5978         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
5979         cleaning up some of the internal Control fields being used by
5980         subclasses.
5981
5982 2006-12-05  Mike Kestner  <mkestner@novell.com>
5983
5984         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
5985         listbox after AddImplicit calls since it defaults to hidden. Add a 
5986         hack to preserve requested heights across DropDownStyle changes.
5987
5988 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
5989
5990         * PropertyGrid.cs: Hide FindFirstItem method from public API.
5991
5992 2006-12-05  Chris Toshok  <toshok@ximian.com>
5993
5994         * DataGridView.cs: fix compiler warnings.
5995
5996         * PrintControllerWithStatusDialog.cs: same.
5997
5998         * ToolBar.cs: same.
5999
6000         * FolderBrowserDialog.cs: same.
6001
6002         * Splitter.cs: same.
6003
6004         * DataGridViewComboBoxCell.cs: same.
6005
6006         * XplatUIWin32.cs: same.
6007
6008         * PictureBox.cs: same.
6009
6010         * Win32DnD.cs: same.
6011
6012         * PageSetupDialog.cs: same.
6013
6014         * FileDialog.cs: same.
6015
6016         * PrintDialog.cs: same.
6017
6018         * DataGridTextBoxColumn.cs: same.
6019
6020         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
6021
6022 2006-12-05  Chris Toshok  <toshok@ximian.com>
6023
6024         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
6025         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
6026         System.ComponentModel.EventHandlerList work.
6027
6028 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
6029
6030         * DrawTreeNodeEventArgs.cs: Added.
6031
6032 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6033         
6034         * InternalWindowManager.cs: Remove an unused field.
6035         
6036 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6037
6038         * InternalWindowManager.cs:
6039         - Save the point where the title bar is clicked.
6040         
6041         * MdiWindowManager.cs:
6042         - Only allow moving of the window as long as the 
6043         clicked point on the title bar does not get out of
6044         MdiClient's rectangle. Fixes #79982.
6045         
6046         * MdiClient.cs:
6047         - Added Horizontal/VerticalScrollbarVisible.
6048         - Simplified the scrollbar sizing algorithm.
6049         - Cache the difference in scrolled value in
6050         H/VBarValueChanged and move the calculation out
6051         of the for loop.
6052
6053 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6054
6055         * Control.cs: Make the Console.WriteLine in WndProc 
6056         write more info.
6057
6058 2006-12-05  Chris Toshok  <toshok@ximian.com>
6059
6060         * ToolStripManager.cs, ToolStripButton.cs,
6061         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
6062         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
6063         ToolStripSplitButton.cs, ToolStripSeparator.cs,
6064         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
6065         ToolStripProgressBar.cs, ToolStripContainer.cs,
6066         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
6067         to using System.ComponentModel.EventHandlerList.
6068
6069 2006-12-04  Chris Toshok  <toshok@ximian.com>
6070
6071         * LinkLabel.cs: fix up compiler warnings.
6072
6073         * TableLayoutSettings.cs: same.
6074
6075         * TreeView.cs: same.
6076
6077         * ToolBar.cs: same.
6078
6079         * TabControl.cs: same.
6080
6081         * RichTextBox.cs: same.
6082
6083         * ListViewItem.cs: same.
6084
6085         * PropertyGrid.cs: same.
6086
6087         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
6088
6089         * ToolTip.cs same.
6090
6091         * TextRenderer.cs: fix up compiler warnings.
6092
6093         * Label.cs: same.
6094
6095         * Form.cs: corcompare fixes.
6096
6097         * PictureBox.cs: fix up compiler warnings.
6098
6099         * ImageListStreamer.cs: same.
6100
6101         * TrackBar.cs: corcompare fix.
6102
6103         * Control.cs: fix up compiler warnings.
6104
6105         * SplitterPanel.cs: same.
6106
6107         * NumericTextBox.cs: same.
6108
6109         * ImageList.cs: same.
6110
6111         * StatusStrip.cs: same.
6112
6113         * ProgressBar.cs: corcompare fix.
6114
6115         * ToolStripButton.cs: fix up compiler warnings.
6116
6117         * ToolStripStatusLabel.cs: same.
6118
6119         * ToolStripSplitButton.cs: same.
6120
6121         * ToolStripSeparator.cs: same.
6122
6123         * ToolStripProgressBar.cs: same.
6124
6125         * ToolStripDropDownMenu.cs: same
6126
6127         * ToolStripDropDown.cs: same.
6128
6129         * ToolStripDropDownButton.cs: same.
6130
6131         * ToolStrip.cs: same.
6132
6133         * ToolStripControlHost.cs: same.
6134
6135         * ToolStripContentPanel.cs: same.
6136
6137         * ToolStripDropDown.cs: same.
6138
6139         * ToolStripContainer.cs: same.
6140
6141         * ToolStripPanel.cs: same, and add "new" where we need it to work
6142         with the new ArrangedElementCollection.
6143
6144         * ToolStripItemCollection.cs: add "new" where we need it to work
6145         with the new ArrangedElementCollection.
6146
6147 2006-12-04  Andreia Gaita <avidigal@novell.com>
6148
6149         * TabControl.cs: Fix default tab selection to after TabControl
6150         gets focus and not before. Fixes #80128
6151
6152 2006-12-04  Chris Toshok  <toshok@ximian.com>
6153
6154         * DataGridTableStyle.cs: remove the gross calling of
6155         datagrid.Refresh from here.  It's a broken idea and it doesn't
6156         work anyway.
6157
6158         * DataGrid.cs: instead, just register/unregister from the
6159         DataGridTableStyle events in CurrentTableStyle.  we play it
6160         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
6161         even though some would most likely not require it.  Fixes bug
6162         #80115 (and one portion of #80117 as a side effect).
6163
6164 2006-12-04  Chris Toshok  <toshok@ximian.com>
6165
6166         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
6167         so the textbox (if any) goes away.  Fixes bug #80117.
6168
6169 2006-12-04  Chris Toshok  <toshok@ximian.com>
6170
6171         * DataGridColumnStyle.cs: set the column's readonly property
6172         initially based on the property descriptor's IsReadOnly.  Fixes
6173         bug #80044.
6174
6175 2006-12-04  Chris Toshok  <toshok@ximian.com>
6176
6177         * ComboBox.cs: wrap the dropdown style changing work in
6178         SuspendLayout/ResumeLayout.  Fixes bug #79968.
6179
6180 2006-12-04  Jackson Harper  <jackson@ximian.com>
6181
6182         * TextBoxBase.cs: Fix off by one, since these are one-based.
6183         * TextBox.cs: Select all the text when we get focus.  The TextBox
6184         does this but the RTB does not.
6185
6186 2006-12-04  Chris Toshok  <toshok@ximian.com>
6187
6188         * DataGridTextBoxColumn.cs: remove some spew.
6189
6190         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
6191         but some part of me is saying "it shouldn't be here.."  At any
6192         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
6193         setting the value.
6194
6195 2006-12-04  Chris Toshok  <toshok@ximian.com>
6196
6197         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
6198         to reassign the propertydescriptor.
6199
6200 2006-12-04  Jackson Harper  <jackson@ximian.com>
6201
6202         * TextBoxBase.cs:
6203         * TextControl.cs: Remove some unused variables.  Maybe this will
6204         patch things up between mike and I.
6205         - don't split lines less then one char wide, if the viewport is
6206         that small text won't be visible anyways.
6207         
6208 2006-12-04  Jackson Harper  <jackson@ximian.com>
6209
6210         * TextBoxBase.cs: Default selection length is -1, need to do some
6211         more testing on windows to see when this is used for the property.
6212         - Redid the Lines [] property to that we properly remove soft line
6213         breaks
6214         - added support for preserving carriage returns
6215         -  CanUndo is not a variable like 'is undo enabled' it just returns
6216         true if there is undo operations available.
6217         - AppendText doesn't need to grab the last tag itself anymore,
6218         this happens automatically when we move the cursor.
6219         * TextControl.cs: Add CompoundActions to the undo class. This
6220         allows combining the other operations into one big option.  ie a
6221         paste will combine { delete old, insert new, move cursor }
6222         - Add InsertString undo operation
6223         - New method for deleting multiline text
6224         - Add carriage returns to lines. So we can preserve carriage
6225         returns when text is 'roundtripped'
6226
6227 2006-12-04  Chris Toshok  <toshok@ximian.com>
6228
6229         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
6230         minimum 0.  Fixes the scrollbar exception in bug #80136.
6231
6232 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6233
6234         * MdiClient.cs: 
6235         * MdiWindowManager: Removed unused fields and methods.
6236         
6237 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6238         
6239         * StatusBar.cs: Update all panels when a AutoSize=Contents
6240         panel needs updating.
6241         
6242         * StatusBarPanel.cs: Remove twidth and only use initialize.
6243         Fixes #80031.
6244                 
6245 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6246
6247         * Form.cs: When a form's MdiParent is set add it directly
6248         on top of the z-order in stead of relying on MdiClient's
6249         ActivateChild to do it. Fixes #80135.
6250         
6251         * MdiClient.cs: 
6252         - Remove original_order, mdi_child_list is already doing
6253         the same thing.
6254         - Create mdi_child_list on construction in
6255         stead of first use (avoids a few null checks).
6256
6257         * MenuItem.cs: Use an already existing list of mdi children
6258         to get the correct order of children and remove the other
6259         redundant list.
6260
6261 2006-12-04  Chris Toshok  <toshok@ximian.com>
6262
6263         * PropertyGridView.cs: cached_splitter_location is only used in
6264         !DOUBLEBUFFER code.
6265
6266         * PropertyGrid.cs: implement the ComComponentNameChanged event
6267         using Events, hoping that would fix the warning.  Looks like a
6268         compiler bug instead (#80144).
6269
6270         * PropertyManager.cs: remove unused method.
6271
6272 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
6273
6274         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
6275         include parentesis to fix expression evaluation. Fixes #79634.
6276
6277 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
6278         
6279         * MenuAPI.cs:
6280         - Changes to fix behavior in Menu control, some reported in #80097
6281         and other detected during behavior refactory like a select event
6282         problems.
6283         - Remove unneded "if's" conditions.
6284         - Created an internal to flag when popup is active in control, we need 
6285         it because in .NET you can have menu active but without popup active
6286         when you active menu using popup without visible items.
6287         - Mimic win32 behavior for Select and Popup events.  
6288         - Dont open popup menu when you dont have visible subitems.
6289         - Do nothing when click on disabled menu item.
6290         - Some small changes to follow the coding style guidelines.
6291         - Unselect menu only when another control gives focus. Fixes #80097.
6292         - Remove unused code.
6293         
6294         * MenuItem.cs: internal VisibleItems method to check if menu
6295         theres visible subitems, it will be usefull to fix some 
6296         behavior in Menu control.
6297         
6298 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6299         
6300         * Timer.cs: Tag property for 2.0 profile.
6301         
6302 2006-12-01  Chris Toshok  <toshok@ximian.com>
6303
6304         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
6305         
6306         * Win32DnD.cs: comment out some unused fields.
6307
6308         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
6309         some unused properties/methods.
6310
6311         * XplatUIX11.cs: fix MousePosition so we override the base class's
6312         property instead of conflicting with it.
6313
6314         * PictureBox.cs: comment out some unused fields
6315
6316         * OSXStructs.cs: make some struct fields public.
6317
6318         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
6319         MousePosition so we override the base class's property instead of
6320         conflicting with it.
6321
6322         * X11Dnd.cs: comment out some unused fields
6323
6324         * X11DesktopColors.cs: fix some struct field visibility to quiet
6325         the compiler.
6326
6327         * X11Dnd.cs: remove some debug code.
6328
6329         * ThemeClearlooks.cs: comment out unused field.
6330
6331         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
6332
6333         * ThemeGtk.cs: comment out some unused pinvokes.
6334
6335         * Timer.cs: remove some unused fields.
6336
6337         * ThemeClearlooks.cs: comment out unused field.
6338
6339         * UpDownBase.cs: comment out unused field.
6340
6341         * DataObject.cs: comment out unused field.
6342
6343         * DataGridBoolColumn.cs: reomve unused field.
6344
6345         * DataGrid.cs: remove unused field.
6346
6347         * Cursor.cs: remove old ToBitmap code.
6348
6349         * ControlPaint.cs: remove unused method.
6350
6351         * ScrollBar.cs: remove unused fields.
6352
6353         * ComboBox.cs: remove unused field, and chain up to
6354         AccessibleObject ctor.
6355
6356         * ListBox.cs: remove unused field.
6357
6358         * ButtonBase.cs: wrap a couple fields in NET_2_0.
6359
6360         * GridEntry.cs: remove unused fields.
6361
6362         * Binding.cs: remove unused fields.
6363
6364         * AxHost.cs: remove unused method.
6365
6366         * ContainerControl.cs: remove unused field.
6367
6368         * ScrollableControl.cs: remove unused fields.
6369
6370 2006-12-01  Chris Toshok  <toshok@ximian.com>
6371
6372         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
6373         the Where/WhereString stuff.  it's easy enough to CWL
6374         Environment.StackTrace.
6375
6376         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
6377         unused private fields.
6378
6379 2006-12-01  Jackson Harper  <jackson@ximian.com>
6380
6381         * TextControl.cs: Do not update the view while inserting multiline
6382         text. If we update the view we might wrap lines, before entering
6383         the new lines, which causes the new line insertion calculations to
6384         be totally fubared.
6385         - Remove an old TODO
6386         - Make debug output a little nicer
6387         
6388 2006-12-01  Chris Toshok  <toshok@ximian.com>
6389
6390         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
6391
6392 2006-12-01  Chris Toshok  <toshok@ximian.com>
6393
6394         [ fix the majority of the CS0108 warnings we've been suppressing ]
6395         
6396         * TreeView.cs: mark BackgroundImageChanged as 'new'.
6397
6398         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
6399         to "LayoutToolBar" to quiet mcs.
6400         
6401         * TabControl.cs: mark our ControlCollection class as 'new'.
6402
6403         * TextBoxBase.cs: mark some events as 'new'.
6404
6405         * Splitter.cs: TabStop is 'new'.
6406
6407         * ControlBindingsCollection.cs: mark a few methods as new since
6408         they change the visibility from protected to public.
6409
6410         * RadioButton.cs: DoubleClick -> base class, and remove unused
6411         HaveDoubleClick.
6412
6413         * MonthCalendar.cs: ImeMode property -> base class, and mark many
6414         events as new.
6415
6416         * NumericUpDown.cs: TextChanged -> base class.
6417
6418         * CheckedListBox.cs: mark our ObjectCollection class as new to
6419         quiet mcs.
6420
6421         * FolderBrowserDialog.cs: make HelpRequest event new and have it
6422         muck with the base class.
6423
6424         * StatusBar.cs: fix some mcs warnings about Update being the same
6425         name as a base class method.
6426
6427         * RichTextBox.cs: mark some events as new, and make them do things
6428         to the base class impl.
6429
6430         * UserControl.cs: mark TextChanged as new, and have it manipulate
6431         base.TextChanged.
6432
6433         * UpDownBase.cs: mark some things new.
6434
6435         * CheckBox.cs: mark DoubleClick "new", and add some text about
6436         what we need to look at.
6437
6438         * Panel.cs: make the events "new", and manipulate the base
6439         version.  these are just here for attributes.
6440
6441         * AccessibleObject.cs: make owner private.
6442
6443         * Control.cs: deal with AccessibleObject.owner being private.
6444         cache our own copy if we need it.
6445
6446         * Button.cs: add "new" to the DoubleClickEvent.
6447
6448         * ListBox.cs: no need to track our own has_focus here.  let
6449         Control.has_focus do it for us.  Also some other work to clear up
6450         warnings about not overriding base class methods of the same name.
6451         
6452         * ComboBox.cs: clear up some warnings about not override base
6453         class methods of the same name.
6454
6455 2006-12-01  Chris Toshok  <toshok@ximian.com>
6456
6457         * Form.cs: flag a few things as "new" to quiet some of the mcs
6458         warnings.
6459
6460         * AxHost.cs: same.
6461
6462         * PrintPreviewDialog.cs: same.
6463
6464         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
6465         now DGV isn't so horrible on the class status page.  also, move
6466         all events to using System.ComponentModel.EventHandlerList.  my
6467         wrists hurt.
6468
6469 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6470
6471         * MdiWindowManager.cs:
6472         - Set form to active mdi child if shown,
6473         and update the active mdi child to the next 
6474         remaining child in the z-order if the form is hidden.
6475
6476         * Form.cs: 
6477         - Track if the form has been visible and if its 
6478         visibility is beeing changed, so that the MdiClient
6479         can properly decide the ActiveMdiChild. The MdiClient 
6480         cannot track this since the form can change visibility 
6481         before MdiClient is created.
6482
6483         * MdiClient.cs:
6484         - Don't activate anything of the parent form is changing
6485         its visibility.
6486         - Rework ActiveMdiChild to only return visible mdi 
6487         children and take into account several other corner 
6488         cases.
6489
6490 2006-12-01  Chris Toshok  <toshok@ximian.com>
6491
6492         * IBindableComponent.cs: new 2.0 interface.
6493
6494 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
6495
6496         * DataGrid.cs: Font for caption area is bold by default.
6497
6498 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
6499
6500         * Menu.cs: Tag property for 2.0.
6501         
6502 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
6503
6504         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
6505         
6506 2006-12-01  Chris Toshok  <toshok@ximian.com>
6507
6508         * TreeView.cs: doh, the Begin* events should be
6509         TreeViewCancelEventHandler.
6510
6511 2006-12-01  Chris Toshok  <toshok@ximian.com>
6512
6513         * Form.cs: Form.ControlCollection already stores off the
6514         form_owner field.  don't access the base class's internal "owner"
6515         field.
6516
6517         * Control.cs: make all the fields in Control.ControlCollection
6518         private.  there's no need for any internal fields here.
6519
6520 2006-12-01  Chris Toshok  <toshok@ximian.com>
6521
6522         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
6523         OnHandleCreated.  Fixes bug #80109.
6524
6525 2006-12-01  Chris Toshok  <toshok@ximian.com>
6526
6527         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
6528         SplitContainer.cs, Control.cs, StatusStrip.cs,
6529         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
6530         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
6531         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
6532         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
6533         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
6534         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
6535         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
6536         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
6537         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
6538         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
6539
6540         do most of the work to convert our code over to use
6541         System.ComponentModel.Component.Events for
6542         adding/removing/dispatching events.
6543
6544
6545 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6546
6547         * DataGridView.cs: Fix an ArgumentNullException reported 
6548         twice today in IRC.
6549
6550 2006-11-30  Mike Kestner  <mkestner@novell.com>
6551
6552         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
6553         grabbed listbox.  Fixes #80036 and #80101.
6554
6555 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6556
6557         * Message.cs: Changed ToString() to match MS.
6558         
6559 2006-11-30  Jackson Harper  <jackson@ximian.com>
6560
6561         * TextBoxBase.cs: You can still change the selected text on a read
6562         only textbox.
6563         * TextControl.cs: Lower magic number for wrap calculations. This
6564         lets text get closer to the right (far) edge.
6565
6566 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
6567
6568         * Control.cs: Tweak 2.0 layout properties.
6569         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
6570         * TextRenderer.cs: Add a new overload.
6571         * ToolStrip*: Huge amount of changes and new features.
6572
6573 2006-11-30  Mike Kestner  <mkestner@novell.com>
6574
6575         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
6576         scroll range correct.  Fixes #79994.
6577
6578 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
6579
6580         * MdiWindowManager.cs: Update main form's text when
6581         a form is closed. (fixes #80038)
6582         
6583 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
6584
6585         * ToolBar.cs:
6586         - Fix an regression in ButtonSize.
6587         - Get ImeMode default value change to "Disable".
6588         - Get ShowTooltips default value change to true, default value is 
6589         "false" but after make a test in .NET we get "true" result as default.
6590         
6591 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
6592
6593         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
6594
6595 2006-11-29  Chris Toshok  <toshok@ximian.com>
6596
6597         * XplatUIWin32.cs (GetWindowTransparency): check return value of
6598         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
6599         SetWindowTransparency hasn't been called.
6600
6601 2006-11-29  Chris Toshok  <toshok@ximian.com>
6602
6603         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
6604         if it's supported.
6605         (set_AllowTransparency): reorder things a little so that the
6606         WS_EX_LAYERED style is removed properly.
6607
6608 2006-11-29  Chris Toshok  <toshok@ximian.com>
6609
6610         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
6611         
6612         * Form.cs: only call the XplatUI transparency method (get/set) if
6613         SupportsTransparency says it's supported. Otherwise fallback to
6614         doing nothing (in the set case) or returning the instance field we
6615         cache (in the get case).
6616
6617         * XplatUIStructs.cs: add TransparencySupport flag enum.
6618         
6619         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
6620         change to SupportsTransparency.
6621
6622         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
6623         TransparencySupport.None from SupportsTransparency.
6624
6625         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
6626         TransparencySupport.Set from SupportsTransparency.
6627
6628         * XplatUIWin32.cs: implement GetWindowTransparency calling
6629         GetLayeredWindowAttributes, and implement SupportsTransparency by
6630         checking whether or not both
6631         GetWindowTransparency/SetWindowTransparency are available
6632         entrypoints.  We need to do this since SetWindowTransparency is
6633         available as of win2k, but GetWindowTransparency requires winxp.
6634         yay win32 api.
6635
6636         * XplatUI.cs: Add GetWindowTransparency, and change
6637         SupportsTransparency to allow for either/both Get/Set.
6638
6639 2006-11-29  Chris Toshok  <toshok@ximian.com>
6640
6641         * DataGrid.cs: keep from going into an infinite loop redrawing a
6642         datagrid that has no datasource.  Fixes bug #80033.
6643
6644 2006-11-29  Chris Toshok  <toshok@ximian.com>
6645
6646         * MenuItem.cs: fix the NRE when we assign text (and therefore call
6647         Invalidate) before the mainmenu has been assigned to a control.
6648
6649 2006-11-29  Chris Toshok  <toshok@ximian.com>
6650
6651         * DataGrid.cs: detect when we should be double the double click
6652         row/column autosize stuff, although that codepath has yet to be
6653         written.  part of the work for bug #79891.
6654
6655 2006-11-29  Chris Toshok  <toshok@ximian.com>
6656
6657         * Binding.cs (SetControl): fix unit test.
6658
6659 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6660
6661         * PageSetupDialog.cs: Validate the margins and set them in
6662         PageSettings. 
6663         * NumericTextBox.cs: New class to mimic the behavior of the
6664         textboxes used in the printing dialogs.
6665
6666 2006-11-29  Andreia Gaita  <avidigal@novell.com>
6667         
6668         * Form.cs: Revert previous change (remove call UpdateBounds
6669         from form constructor), because it messes with the handle creation
6670         order, and that one needs lots and lots of love.
6671         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
6672         for valid printer and throw InvalidPrinterException if document
6673         is set but printer not valid), adding a MonoTODO. Once 
6674         handle creation is done properly, we can put this back in.
6675
6676 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6677
6678         * MenuItem.cs: Create a invalidate method for menu item, to be
6679         calling from set text, it make text changes to imadiate update
6680         on screen. Fixes #80013. 
6681         
6682 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6683
6684         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
6685         fixes bug #80070 and some other problem on toolbar buttons
6686         layout.
6687
6688 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
6689
6690         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
6691         with dotted brush.      Fixes #79564
6692         
6693 2006-11-28  Andreia Gaita  <avidigal@novell.com>
6694
6695         * Form.cs: Removed call to UpdateBounds on Form
6696         constructor, it was causing a call to CreateHandle
6697         before it was supposed to.
6698         * PrintControllerWithStatusDialog: Applied patch
6699         by Chris Toshok to hide controller when there are
6700         no printers available.
6701         PrintDialog.cs: initialize printer settings to 
6702         null - correct DefaultValues test #5
6703         * PrintPreviewControl.cs: Move PrintController
6704         initialization to GeneratePreview
6705         * PrintPreviewDialog.cs: 
6706         - Remove Preview generation     from Document_set(). It is 
6707         called on OnPaint
6708         - Throw InvalidPrinterException on CreateHandle if
6709         a Document is set but there are no printers or 
6710         printer is not valid.
6711         * ThemeWin32Classic: don't paint PrintPreviewControl
6712         if there is nothing to paint    
6713
6714 2006-11-28  Miguel de Icaza  <miguel@novell.com>
6715
6716         * Form.cs: Add another popular method.
6717
6718         * TabPage.cs: ditto.
6719
6720 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6721
6722         * MenuItem.cs: Fixed a warning.
6723         * InternalWindowManager: Fixed a warning.
6724
6725 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6726
6727         * MenuItem.cs:
6728         - When cloning a menu also clone MdiList and clone the 
6729           window menu items properly (as the forms and menuitems
6730           are kept in an internal hashtable, these need updating 
6731           as well)
6732         - Rewrote the window menu code, menu items are added in the
6733           order the forms were added to their parent, and they are
6734           updated every time the window menu is shown (before the
6735           list was only generated once, in the current order of the
6736           forms, and would never be updated). A checkmark is shown
6737           next to the item corresponding to the active mdi child.
6738
6739 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6740
6741         * XplatUIStructs.cs: 
6742         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
6743         
6744         * XplatUIWin32.cs: 
6745         - Added TME_NONCLIENT to TMEFlags.
6746         - Handles WM_NCMOUSEMOVE in GetMessage to 
6747           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
6748
6749         * MdiWindowManager:
6750         - Now merges mdi child menu to parent menu when maximized.
6751         - Recalculate NC areas of both mdi child and mdi parent. 
6752           Fixes #79757 (4).
6753           on window state and size changes.Fixes #79844 (3).
6754         - Handle WM_NCCALCSIZE to properly calculate borders.
6755
6756         * Form.cs:
6757         - Add/remove to the mdi containers list of mdi children 
6758           in the order they are added.
6759         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
6760           to the maximized mdi child.
6761         
6762         * InternalWindowManager.cs:
6763         - Only execute a click on the control buttons on the mouse up,
6764           not on the mouse down. Show the state of the button 
6765           (was only showing Normal state, never Pressed state). The
6766           pressed button now follows the mouse (if you click the Close 
6767           button and move the mouse over the Maximize button, the 
6768           Maximize button will be shown as pressed). Since Win32 does
6769           not generate WM_NCLBUTTONUP if you release the button outside
6770           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
6771           it as a mouse up.
6772         
6773         * ThemeWin32Classic.cs:
6774         - Draw a missing border around mdi child forms. Fixes #79844 (2).
6775
6776         * MdiClient.cs:
6777         - Added a list of forms which contains the order the forms are
6778           added to the mdi parent.
6779         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
6780         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
6781         - If the active form changes set the scrollbars to the top
6782           of the Z order, otherwise the form could hide them.
6783         - Scrollbars are now sized according to ClientSize, not 
6784           to Size, and they take into account the other scrollbar
6785           to determine maximum.
6786         
6787 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
6788         
6789         * XplatUI.cs:
6790         * XplatUIDriver.cs:
6791         * XplatUIX11.cs:
6792         * XplatUIWin32.cs:
6793         * XplatUIOSX.cs:
6794         - Added RequestAdditionalWM_NCMessages for windows to 
6795           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
6796           Currently only implemented in XplatUIWin32.
6797
6798 2006-11-27  Chris Toshok  <toshok@ximian.com>
6799
6800         * Hwnd.cs: only add the hwnd to the windows hash in
6801         set_WholeWindow and set_ClientWindow if whole_window/client_window
6802         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
6803
6804 2006-11-27  Mike Kestner  <mkestner@novell.com>
6805
6806         * ComboBox.cs: remove redundant OnDropDown call.  It is called
6807         from the ComboListBox.ShowWindow code. Fixes #79969.
6808
6809 2006-11-27  Chris Toshok  <toshok@ximian.com>
6810
6811         * Hwnd.cs: remove the setters for ExposePending and
6812         NCExposePending - noone uses them.
6813
6814 2006-11-27  Jackson Harper  <jackson@ximian.com>
6815
6816         * TextControl.cs: new param for ReplaceSelection which determines
6817         whether we select the new selection, or set the cursor to the end
6818         of the new selection.
6819         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
6820         pasting, select the new text.
6821         * RichTextBox.cs: Use new param for ReplaceSelection.
6822
6823 2006-11-27  Jackson Harper  <jackson@ximian.com>
6824
6825         * TextBoxBase.cs: Set the selection to the caret after the caret
6826         is moved, otherwise they get out of sync.
6827
6828 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6829
6830         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
6831         it fixes #80015
6832
6833 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6834
6835         * ThemeWin32Classic.cs: 
6836         - Fix toolbar drop down arrow position.
6837         - Fix drop down appearance when ToolBar.Appearance is normal,
6838         it fixes #80018.
6839         
6840 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
6841
6842         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
6843         * Control.cs: Same.
6844         * UpDownBase.cs: Same.
6845         * ButtonBase.cs: Same.
6846         * ScrollBar.cs: Same.
6847         * TrackBar.cs: Same.
6848         * PictureBox.cs: Same.
6849         * UserControl.cs: Same.
6850         * Label.cs: Same.
6851         * ListControl.cs: Same.
6852         * TextBoxBase.cs: Same.
6853         * ListView.cs: Same.
6854         * RichTextBox.cs: Same.
6855         * TreeView.cs: Same.
6856
6857 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
6858
6859         * PrintDialog.cs:
6860         - Text label for where 
6861         - Text label comment was not shown
6862
6863 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
6864
6865         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
6866
6867 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6868
6869         * InternalWindowManager.cs: 
6870         - Handle WM_PARENTNOTIFY to activate the form
6871         if any child control is clicked.
6872         - The form is only sizable if not minimized.
6873
6874         * MdiWindowManager.cs:
6875         - Save the IconicBounds if the form is moved.
6876         - Rework SetWindowState, now the window bounds 
6877         are stored only if the old window state is Normal.
6878         
6879         * MdiClient.cs:
6880         - In SetWindowStates store the old window state if 
6881         the window is maximized and restore window state if
6882         the window looses focus.
6883         - Don't handle any scrollbar value changes if 
6884         initializing the scroll bars. Fixes #79771.
6885         - Reworked ArrangeIconicWindows. Current algorithm
6886         tests bounds agains all other minimized windows, if
6887         any intersections create new bounds (going left to 
6888         right, bottom to top) and then test again. When 
6889         successful the bounds are saved and never computed
6890         again. Fixes #79774.
6891
6892 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6893
6894         * InternalWindowManager.cs: Added HandleTitleBarUp.
6895
6896 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6897
6898         * NumericUpDown.cs: In .NET 1.1, user entered text is still
6899         hexadecimal in ParseUserEdit.
6900
6901         
6902 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6903
6904         * MdiWindowManager.cs: 
6905         - Handle a click on the form's icon to show the 
6906         system menu (when maximized). Fixes #79775.
6907         - Change the existing click handler for the form's
6908         icon when not maximized to show on MouseUp.
6909         Fixes #79776.
6910
6911         * Form.cs: In OnResize only layout the mdi child's
6912         parent if it actually has a parent. Might not if
6913         the window is closing.
6914
6915
6916 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6917
6918         * MdiClient.cs: Ignore active MDI client for text of parent, if
6919         child has no text set.
6920
6921 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6922
6923         * ToolBar.cs: Fixed ToString to match MS.
6924
6925 2006-11-22  Andreia Gaita  <avidigal@novell.com>
6926
6927         * NumericUpDown: 
6928         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
6929         update inner values on set. Fixes #79966.
6930         - Override OnLostFocus to update value on NET 2. Fixes #79950.
6931         - Fix hexadecimal parsing.
6932         
6933         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
6934         parent. Fixes #79957
6935
6936 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6937
6938         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
6939         the actual size has to be queried, since if height /
6940         width is negative Win32 changes it to 0. 
6941         Fixes #79999 on Windows.
6942         
6943         * XplatUIX11.cs: Set height / width to 0 if negative
6944         in SetWindowPos. Fixes #79999 on Linux.
6945         
6946 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
6947
6948         * ThemeWin32Classic.cs: Fix text redenring when button is
6949         pressed.
6950
6951 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
6952
6953         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
6954         and later navigate by mouse. Fixes #79528.
6955
6956 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
6957
6958         * ToolBar.cs: Set default value for TabStop to false in
6959         constructor, it fixes remaining behavior of bug #79863.
6960
6961 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6962
6963         * MdiWindowManager.cs:
6964         * InternalWindowManager.cs:
6965         - Moved a few methods specific to Mdi from 
6966         InternalWindowManager to MdiWindowManager.
6967         Fixes #79996.
6968         
6969 2006-11-21  Chris Toshok  <toshok@ximian.com>
6970
6971         * XplatUIOSX.cs: stub out InvalidateNC.
6972
6973         * XplatUIWin32.cs: implement InvalidateNC using the call I found
6974         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
6975
6976         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
6977
6978         * XplatUIDriver.cs: add InvalidateNC abstract method.
6979
6980         * XplatUI.cs: add InvalidateNC.
6981
6982 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
6983
6984         * ToolBar.cs: Invalidate complete button area when pressed status 
6985         was changed.
6986         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
6987         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
6988         by 1 when button is pressed.
6989
6990 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
6991
6992         * ToolButton.cs: Invalidate middle of DropDown button when
6993         ToolBar theres DropDownArrows.
6994         * ThemeWin32Classic.cs: Change position of DropDown arrow and
6995         fix DropDown drawing operations.
6996
6997 2006-11-20  Chris Toshok  <toshok@ximian.com>
6998
6999         * NativeWindow.cs: fix the formatting of functions ('{' on the
7000         following line), and enable the thread exception dialog.
7001
7002         * Application.cs: remove the duplicate exception catching from
7003         here.
7004
7005 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7006
7007         * Toolbar.cs: Triggers button click event when click on icon
7008         of dropdown ToolBarButton. Fixes #79912.
7009         
7010 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7011
7012         * Theme.cs:
7013         * ThemeWin32Classic.cs:
7014         - Added a property WindowBorderFont to enable themeing
7015           of mdi child windows' Text.
7016           
7017 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7018
7019         * InternalWindowManager.cs:
7020         * Form.cs:
7021         * MdiClient.cs:
7022         * MdiWindowManager.cs: 
7023         - If mdi child is maximized, set mdi parent's
7024           text to "Parent - [Child]". Fixes #79770.
7025         - If there is any maximized mdi child windows, only the active 
7026           window (and any new windows) is maximized, the rest are normal.
7027         - On a WindowState change only save mdi child's window bounds 
7028           if the old window state was normal. Fixes #79774.
7029         - The scroll bars are now calculated on hopefully all
7030           necessary events. Fixed #79771 / #79844->6 / #79906.
7031         - MdiClient.SizeScrollBars() now takes into account docked 
7032           controls in the parent when calculating available space.
7033         - InternalWindowManager now always repaints the entire title
7034           area. Fixes #79844->1/4/5.
7035         - Added RequestNCRecalc on mdi child windowstate changes.
7036           Fixes #79772.
7037
7038 2006-11-20  Mike Kestner  <mkestner@novell.com>
7039
7040         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
7041         in the MouseUp handler of the listbox and move the return handling
7042         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
7043
7044 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
7045
7046         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
7047
7048 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7049
7050         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
7051           working in 1.2.x anymore. So, updated.
7052
7053 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
7054
7055         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
7056         NumberGroupSeparator of current culture instead of assuming en-US.
7057         Fixed bug #79967.
7058
7059 2006-11-17  Mike Kestner  <mkestner@novell.com>
7060
7061         * Control.cs: Add the concept of implicit bounds setting so that
7062         dock/undock round trips preserve explicitly set size/locations.
7063         Fixes #79313.
7064
7065 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
7066
7067         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
7068           can't handle those filters. (Fixes bug #79961)
7069
7070 2006-11-17  Chris Toshok  <toshok@ximian.com>
7071
7072         [ fixes the exit/crashes associated with #79835.  it's clearly
7073         suboptimal though, we need to figure out a better way to solve
7074         this. ]
7075         
7076         * PrintPreviewControl.cs: deal with the new invalid printer
7077         exceptions.
7078
7079         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
7080         and return false (so CommonDialog.ShowDialog doesn't actually show
7081         the form.)
7082
7083         * PrintDialog.cs: enable/disable the Ok button depending on
7084         whether or not the printer is valid.
7085
7086         * CommonDialog.cs (ShowDialog): only actually show the form if
7087         RunDialog returns true.
7088
7089 2006-11-17  Jackson Harper  <jackson@ximian.com>
7090
7091         * TextControl.cs: When soft splitting a line, mark it as a soft
7092         split line. Also carry over the current line break to the next
7093         line.
7094
7095 2006-11-17  Chris Toshok  <toshok@ximian.com>
7096
7097         * XplatUIX11.cs: when scrolling a window with an invalid area, we
7098         only want to shift the part of the invalid area that overlaps the
7099         area we're scrolling.  we also don't want to clear the invalid
7100         area unless the invalid area was entirely contained within the
7101         scrolling area.
7102
7103 2006-11-16  Chris Toshok  <toshok@ximian.com>
7104
7105         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
7106         also make sure to free the memory returned by XGetWindowProperty
7107         in GetText().
7108
7109         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
7110
7111 2006-11-16  Chris Toshok  <toshok@ximian.com>
7112
7113         * XplatUI.cs: add a new super secret way to get at the totally
7114         unsupported X11 backend.
7115
7116 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
7117
7118         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
7119
7120 2006-11-16  Jackson Harper  <jackson@ximian.com>
7121
7122         * TreeView.cs: Allow more explicit setting of top node position
7123         for scrollbars. Slower algo, but more accurate.
7124         - CollapseAll should maintain the current top node.
7125         * TextBoxBase.cs: When positioning the caret, use the line, pos
7126         method, since the x, y method does not grab the correct tag, and
7127         the caret height never gets set correctly. (Maybe I should just do
7128         away with the caret having its own height, and always use the
7129         carets current tag for height).
7130
7131 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
7132
7133         [Fixes 79778, 79923]
7134
7135         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
7136         Parent to the FosterParent instead.
7137
7138 2006-11-16  Jackson Harper  <jackson@ximian.com>
7139
7140         * TreeView.cs: Need to recalc the topnode when we expand or
7141         collapse. The scrolling methods can't handle this on their own,
7142         since they use differences between the last scroll position, and
7143         those difference get completely messed up since we are expanding
7144         nodes.  This problem should probably be fixed in the scrolling
7145         methods, so they can figure out exactly where they are, but this
7146         will slow things down a little.
7147         * ThemeWin32Classic.cs: Special case for groupboxes with empty
7148         strings, makes nunit-gui look a lot nicer.
7149
7150 2006-11-16  Chris Toshok  <toshok@ximian.com>
7151
7152         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
7153         the broken multithreaded event handling we have in here.  File
7154         this entry under "Why we should move to the new X11 backend".
7155
7156         Any thread can make it into UpdateMessageQueue, which gets events
7157         from the X socket - some of which could belong to hwnds being
7158         managed by a different thread.  We can also have multiple threads
7159         in UpdateMessageQueue at the same time, with each one reading from
7160         the X socket.  This leads to many problems, with the following
7161         solutions:
7162
7163         We can't use hwnd.Queue.Enqueue anywhere in here and must use
7164         EnqueueLocked.
7165
7166         The MotionNotify compression we do can't work across threads
7167         (without locking the entire queue, perhaps) since we call
7168         hwnd.Queue.Peek, so we just punt and don't compress motion events
7169         unless the owning thread is the one which got the X event.
7170
7171         ConfigureNotify is another fun one, since it modifies the hwnd's
7172         bounds and then enqueues the event.  We add a lock to Hwnd which
7173         is held when setting configure_pending to true (and enqueuing the
7174         event).
7175
7176         There is a race wrt the wake socket.  we need to make sure that
7177         only 1 thread is waiting on that socket, or else a thread could
7178         sleep waiting for data that never comes.  It's difficult (but not
7179         impossible) to make happen, because it seems to require something
7180         like the following:
7181
7182             1. Thread 1 polls on wake_receive
7183         
7184             2. poll returns saying there's data to be read on
7185                wake_receive.
7186         
7187             3. Thread 2 polls on wake_receive and immediately returns
7188                saying there's data to be read.
7189
7190             4. Thread 2 reads the wakeup byte from wake_receive
7191
7192             5. Thread 1 attempts to read the wakeup byte from
7193                wake_receive.
7194
7195             6. Thread 2 exits (due to a form closing, perhaps).
7196
7197             7. Thread 1 blocks forever.
7198         
7199         Fun, eh?
7200
7201         Fixing the Expose handling isn't done yet, and the races inherent
7202         in that piece of code are responsible for the drawing mistakes you
7203         see when generating expose events in a MT app (like NPlot).  This
7204         one is the likely to be the hardest to bandaid, and it doesn't
7205         appear to cause anything but drawing problems.  The other issues
7206         caused apps to exit or hang.
7207
7208         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
7209         called from a different thread than the one that should be calling
7210         these functions.
7211
7212         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
7213
7214 2006-11-15  Chris Toshok  <toshok@ximian.com>
7215
7216         * Application.cs: null out the context's MainForm when we exit
7217         RunLoop.  Fixes a newly checked in unit test as well as the last
7218         ODE from bug #79933.
7219
7220 2006-11-15  Chris Toshok  <toshok@ximian.com>
7221
7222         * Form.cs (set_Owner): allow a null value so we can clear the
7223         form's owner.
7224         (Dispose): set all our owned_form's Owner properties to null, and
7225         clear the owned_forms collection.
7226         (WM_CLOSE): clean up this a little bit.. still not right though.
7227
7228         * ApplicationContext.cs: OnMainFormClosed should only call
7229         ExitThreadCore if the main form isn't recreating.  Fixes unit
7230         test.
7231
7232 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7233
7234         [Fixes 78346]
7235
7236         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
7237
7238 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7239
7240         [Fixes 79433]
7241
7242         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
7243         keep popup window types from stealing focus from the main form
7244         on Windows.
7245
7246         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
7247
7248         * MenuAPI.cs: Set above flag to true.
7249
7250 2006-11-15  Chris Toshok  <toshok@ximian.com>
7251
7252         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
7253         the button being released is not in wParam.
7254
7255 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
7256
7257         * Form.cs: Add the released button to MouseEventArgs.Button
7258         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
7259         on Win32.
7260
7261 2006-11-15  Chris Toshok  <toshok@ximian.com>
7262
7263         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
7264         GetText().  untested because it's unused in our implementation.
7265         Control.Text always caches the text, even if
7266         ControlStyles.CacheText is not set.
7267
7268         fixes bug #79939.
7269
7270 2006-11-15  Chris Toshok  <toshok@ximian.com>
7271
7272         [ fixes #79933 ]
7273         
7274         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
7275         message.  no hiding, no disposing.
7276
7277         in the WM_CLOSE handler, hide the form if it's modal.
7278
7279 2006-11-15  Chris Toshok  <toshok@ximian.com>
7280
7281         * XplatUIX11.cs: use AddExpose instead of sending a message.
7282         fixes textbox border drawing.
7283
7284 2006-11-15  Chris Toshok  <toshok@ximian.com>
7285
7286         * PropertyGridView.cs: keep from crashing on mouse move/down when
7287         the property grid is empty.
7288
7289 2006-11-14  Jackson Harper  <jackson@ximian.com>
7290
7291         * TextControl.cs: Make PageUp and PageDown more like the MS
7292         versions.
7293         * TextBoxBase.cs: When we set the text property position the
7294         cursor at the beginning of the document.
7295
7296 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7297
7298         * Form.cs: if a mdi child's WindowState has changed
7299         before it's creation, it would display wrong control
7300         buttons.
7301         
7302 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
7303
7304         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
7305           (Fixes bug #79927)
7306
7307 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7308
7309         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
7310         the window gets to paint its borders even if the window is
7311         getting smaller.
7312         
7313         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
7314         otherwise the old control buttons would still be painted 
7315         if the window gets bigger.
7316         
7317         * PaintEventArgs.cs: add an internal method so that the clip 
7318         rectangle can be changed.
7319         
7320 2006-11-13  Chris Toshok  <toshok@ximian.com>
7321
7322         [ fixes bug #79745 ]
7323         
7324         * NotifyIcon.cs: lots of cleanup.
7325
7326         * X11Structs.cs: add an enum for XEMBED messages.
7327
7328         * XplatUIX11.cs: reindent one of the giant switch statements, it
7329         was taking up an additional tab stop, and this file is already way
7330         too wide for my laptop's screen.
7331
7332         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
7333         we get it, resize the hwnd to the WMNormalHints max_width/height.
7334
7335 2006-11-13  Jackson Harper  <jackson@ximian.com>
7336
7337         * TextBoxBase.cs: Compute the value changes for the mouse wheel
7338         teh simple way.
7339
7340 2006-11-13  Chris Toshok  <toshok@ximian.com>
7341
7342         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
7343         #79898.  force a reference to the Region to stick around so the
7344         unmanaged object isn't collected (rendering our handle in the MSG
7345         stale).
7346
7347 2006-11-13  Chris Toshok  <toshok@ximian.com>
7348
7349         * XplatUIX11.cs: fix #79917 for window managers which support
7350
7351         using XStoreName on the raw utf8, and we need to convert to
7352         COMPOUND_TEXT if it's non-latin1.
7353
7354 2006-11-13  Chris Toshok  <toshok@ximian.com>
7355
7356         * Form.cs (set_DialogResult): we need to set closing to false if
7357         we're setting our result to None.  fixes bug #79908.
7358
7359 2006-11-13  Jackson Harper  <jackson@ximian.com>
7360
7361         * TextControl.cs: When formatting text, compute the adjusted tag
7362         lengths correctly, using FindTag for the end tag instead of trying
7363         to figure it out outselves.
7364         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
7365         the item, ItemHeight doesn't work, because trees with large
7366         imagelists use those for their height
7367         * TreeView.cs: ActualItemHeight factors in the image height
7368         - compute left edge of checkboxes correctly
7369         - when expanding/collapsing move the bottom down one pixel, so we
7370         aren't moving part of the node
7371
7372 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7373
7374         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
7375         stack in PaintEventStart so that it won't get disposed by the gc
7376         before reaching PaintEventEnd.
7377
7378 2006-11-13  Jackson Harper  <jackson@ximian.com>
7379
7380         * TextBoxBase.cs: Don't select the word if we are on a line with
7381         no text.
7382         - We don't need to position the caret on mouse up, since the mouse
7383         move handler should be doing this
7384         - When double clicking a blank line, the caret is advanced to the
7385         next line.
7386
7387 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
7388
7389         * TreeNodeCollection.cs: Avoid duplicating indexer code.
7390
7391 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
7392
7393         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
7394         Fixes part of bug #79910.
7395
7396 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
7397
7398         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
7399           (bug #79903). Some minor string updates to match ms.
7400
7401 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7402
7403         * FileDialog.cs: Don't add an extension if the filename
7404           already ends with that extension.
7405
7406 2006-11-10  Jackson Harper  <jackson@ximian.com>
7407
7408         * TreeView.cs: Use the currently highlighted node for the
7409         BeforeSelect event.
7410         * TextBoxBase.cs: There is no need to expand selection on
7411         MouseMove.
7412         - CanUndo means 'is there any undo operations', not 'is undo
7413         allowed on this textcontrol. Fixed ClearUndo unit test.
7414
7415 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
7416
7417         * Button.cs: only perform click when button is Selectable (so as 
7418         not to activate default buttons when they're disabled)
7419         
7420         * Control.cs: Rewrite of the SelectNextControl and related 
7421         methods. HandleClick now selects next control if the current one
7422         is being disabled.
7423         
7424         * Form.cs: OnActivated selects next active control only if Load 
7425         has already occurred. If Load hasn't run, there's no point in 
7426         selecting here, Load might change the state of controls.
7427         
7428         * FocusTest.cs: Tests marked as working again for these fixes
7429
7430 2006-11-10  Chris Toshok  <toshok@ximian.com>
7431
7432         * XplatUIX11.cs: a couple of fixes.
7433
7434         - use XInternAtoms with almost all the atoms we need to register,
7435         instead of many, many calls to XInternAtom.  should help a bit on
7436         startup time, at the expense of making the code look a little
7437         worse.
7438
7439         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
7440         isn't reparented (which seems to be a clue that we're running fon
7441         compiz) and they have an Owner form.  This fixes the tool windows
7442         in paint.net when running under compiz.
7443
7444         - when setting the opacity of a window, support both the case
7445         where the window has been reparented and also when it hasn't been.
7446         Since compiz/beryl doesn't seem to reparent windows, and these are
7447         the only window managers which support translucency, I'm not sure
7448         why we need the hwnd.reparented case at all.. but leave it in.
7449         now we get translucent windows in paint.net under compiz/beryl.
7450
7451 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7452
7453         * FileDialog.cs: Always return the value for FilterIndex that
7454           was set. Internally convert it to values that make sense.
7455
7456 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7457         
7458         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
7459
7460 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
7461
7462         * Toolbar.cs: Change default value of DropDownArrows to true, the 
7463         signature still using false to make it compatible with MS but the 
7464         initial value is true. Fixes #79855.
7465
7466 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
7467
7468         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
7469           only available on Linux.
7470
7471 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
7472
7473         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
7474         reduce number of calls to redraw method during toolbar creation.
7475
7476 2006-11-09  Mike Kestner  <mkestner@novell.com>
7477
7478         * ListView.cs : raise SelectedIndexChanged when an item is selected
7479         programmatically via the Item.Selected property.  Gert's nice 
7480         ListViewSelectedIndexChanged test fixture now runs clean.
7481
7482 2006-11-09  Mike Kestner  <mkestner@novell.com>
7483
7484         * ListView.cs : raise SelectedIndexChanged when a selected item is
7485         removed from the item collection using Remove or RemoveAt.
7486
7487 2006-11-09  Mike Kestner  <mkestner@novell.com>
7488
7489         * ListView.cs : raise SelectedIndexChanged once per selected item
7490         for compat with MS.  Fixes #79849+.
7491
7492 2006-11-09  Chris Toshok  <toshok@ximian.com>
7493
7494         * TabControl.cs: initialize row_count to 0, and set it to 1 when
7495         we need to (if we have any tab pages).  Fixes unit test.
7496
7497 2006-11-09  Chris Toshok  <toshok@ximian.com>
7498
7499         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
7500         width is 0, not 3.  Fixes a unit test.
7501
7502 2006-11-09  Mike Kestner  <mkestner@novell.com>
7503
7504         * ListView.cs : use Implicit scrollbars so that focus isn't 
7505         stolen from the listview when they are clicked. Fixes #79850.
7506
7507 2006-11-09  Chris Toshok  <toshok@ximian.com>
7508
7509         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
7510         have a root item.  Fixes #79879.
7511
7512 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
7513
7514         * FileDialog.cs:
7515           - Fix ToString ()
7516           - An ArgumentException is now thrown if a wrong filter
7517             is applied (matches ms). The previous filter doesn't change
7518             anymore if an exception is thrown.
7519           - Changing the FileName property also affects FileNames
7520         * ColorDialog.cs: The length of the CustomColors array is always
7521           16. It doesn't matter if we use a smaller array or null to update
7522           or change the custom colors property.
7523         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
7524           for RootFolder if we get a undefined value.
7525
7526 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7527
7528         * StatusBarPanel.cs: 
7529         - Width is set to MinWidth if Width is smaller than
7530         MinWidth. Fixes #79842.
7531         - MinWidth now always overrides Width (MSDN says MinWidth
7532         is set to Width when AutoSize = None, but they do not 
7533         behave like that).
7534         - Style has now the the correct default value.
7535         
7536 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7537  
7538         * TrackBar.cs: 
7539         - The control is completely invalidated on 
7540         Got/LostFocus to draw the focus rectangle correctly.
7541         - When AutoSize then height is always 45 (width for 
7542         vertical controls).
7543         
7544         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
7545         on the mouse when moved and it doesn't move when grabbed
7546         until the mouse moves as well. Also fixed some wrong 
7547         calculations when clicking on the thumb (control thought
7548         click was outside of thumb and didn't grab it).
7549         Fixes some of the issues in #79718.
7550
7551 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
7552
7553         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
7554
7555 2006-11-08  Chris Toshok  <toshok@ximian.com>
7556
7557         * PropertyGridView.cs: only call ToggleValue if the item is not
7558         readonly.
7559
7560 2006-11-08  Jackson Harper  <jackson@ximian.com>
7561
7562         * TextBoxBase.cs: The RichTextBox and textbox have very different
7563         word selection methods.  Implement the textbox's simple word
7564         selection here, and let the RichTextBox override and provide it's
7565         own.
7566         - Don't do extra selection on mouseup
7567         * RichTextBox.cs: Use the documents word selection algorithm, I
7568         think ideally, this function will be pulled into the
7569         RichTextBox.cs code someday.
7570
7571 2006-11-08  Chris Toshok  <toshok@ximian.com>
7572
7573         * RootGridEntry.cs: new class to represent GridItemType.Root.
7574
7575         * CategoryGridEntry.cs: reformat, and add boilerplate.
7576         
7577         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
7578         returns the UI parent anyway, and we need special handling to
7579         implement the GetTarget method in the face of it.  Also, implement
7580         Select().
7581
7582         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
7583         a root grid item, and use that instead of PropertyGrid.grid_items.
7584         Also, make use of TypeConverters (and add limitted support for
7585         ICustomTypeDescriptors) when initially populating the grid.
7586         Arrays now show up more or less properly.
7587
7588 2006-11-08  Chris Toshok  <toshok@ximian.com>
7589
7590         * Application.cs: set the modal dialog to non modal after we close
7591         it.  Fixes bug #79866.
7592
7593 2006-11-08  Jackson Harper  <jackson@ximian.com>
7594
7595         * TextControl.cs: When combining lines carry over the line end
7596         style from the end line.
7597         - Invalidate the selected area when setting it, if it is visible.
7598         * TextBoxBase.cs: Only rich text box can do full line selects.
7599         - Make sure to set the cursor position when there is a click,
7600         otherwise two clicks in separate areas could cause a large chunk
7601         to be selected.
7602
7603 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7604
7605         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
7606         Fixes #79863.
7607
7608 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7609
7610         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
7611         time. Remove tooltips when ToolButton click events.  Fixes #79856.
7612
7613 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7614
7615         * MenuAPI.cs: Ignore right click for menu actions and fixes
7616         menu border when clicked.  Fixes #79846.
7617
7618 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7619
7620         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
7621         MouseState after create wParam for message, this fixes mouse button 
7622         equal none in mouse up events.
7623         
7624 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
7625
7626         * Control.cs : Focus() now calls Select to set the Container's
7627         Active Control and to give it focus. To avoid infinite recursion
7628         (because ActiveControl also calls Focus at one point), a check 
7629         is made in Focus with the help of a new internal variable
7630         is_focusing.
7631
7632 2006-11-07  Mike Kestner  <mkestner@novell.com>
7633
7634         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
7635         if there's a selection.  Fixes #79849.
7636
7637 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
7638
7639         * PropertyGrid.cs: Avoid fixed height of help description label.
7640         Fixes part of bug #79829.
7641
7642 2006-11-07  Chris Toshok  <toshok@ximian.com>
7643
7644         * XplatUIX11.cs: fix #79790 again, by using the
7645         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
7646
7647 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7648
7649         * ToolBar.cs: Fix left click checking.
7650
7651 2006-11-07  Chris Toshok  <toshok@ximian.com>
7652
7653         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
7654
7655 2006-11-07  Chris Toshok  <toshok@ximian.com>
7656
7657         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
7658         PropertyManager unit tests.
7659
7660         * PropertyManager.cs: make property_name internal.
7661
7662 2006-11-07  Chris Toshok  <toshok@ximian.com>
7663
7664         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
7665         pass a unit test.  Also, don't set image_index to anything in
7666         response to setting the ImageList property.
7667
7668 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
7669
7670         * ToolBar.cs: Ignore click events when mouse button is not a
7671         left button, only accepts other button for dropdown menus.  
7672         Fixes #79854.
7673
7674 2006-11-07  Chris Toshok  <toshok@ximian.com>
7675
7676         * DataGrid.cs: make the back and parent row buttons a little less
7677         ugly.
7678
7679 2006-11-07  Jackson Harper  <jackson@ximian.com>
7680
7681         * TextBoxBase.cs: When converting to Text don't put line breaks in
7682         for soft line breaks.
7683         * TextControl.cs: There is an initial "fake" line in the document,
7684         this is now a soft break line, so that an extra line feed doesn't
7685         get added to the end of documents.
7686
7687 2006-11-07  Chris Toshok  <toshok@ximian.com>
7688
7689         [ fix bug #79778 ]
7690         
7691         * CurrencyManager.cs: if the list is readonly, don't bother
7692         checking if IBindingList.AllowNew is true.
7693
7694         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
7695         for non-DataRowView datasources..  or rather, make it not crash.
7696         (DataGridPaintRelationRow): make sure we limit the row painting to
7697         the area not covered by the row header, and make our cell width at
7698         least large enough to cover the relation area.  This allows grids
7699         that have relations but no rows to render correctly.
7700         (DataGridPaintRowContents): same type of changes here.
7701         (SetDataSource): move back to always calling
7702         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
7703         navigating back through relations.
7704         (HitTest): handle the case where we have no cells but have
7705         relations.  Right now we generate a hit in cell 0 of whatever the
7706         row is, not sure if this is strictly correct, but it works for our
7707         purposes.
7708         
7709         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
7710         bother doing anything.
7711
7712 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
7713
7714         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
7715         early version of StatusStrip.  Not responsible for eaten
7716         application or firstborn children.
7717
7718 2006-11-06  Chris Toshok  <toshok@ximian.com>
7719
7720         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
7721         call GetTabRect with a -1 index.  Fixes #79847.
7722
7723 2006-11-06  Jackson Harper  <jackson@ximian.com>
7724
7725         * TreeNodeCollection.cs: Update scrollbars after clearing.
7726
7727 2006-11-06  Chris Toshok  <toshok@ximian.com>
7728
7729         * NumericUpDown.cs: fix the ToString method for some unit test
7730         love.
7731
7732 2006-11-06  Chris Toshok  <toshok@ximian.com>
7733
7734         * PropertyGrid.cs:
7735         - set the initial SelectedGridItem if we can.
7736
7737         - Exclude non-mergable properties only if we're merging > 1
7738         object.  Merging 1 object isn't really merging, obviously.
7739
7740         - Handle PropertySort.NoSort just like Alphabetical, which is
7741         wrong of course, but at least gets things on the screen.
7742         
7743         * PropertyGridView.cs:
7744         - Add method "FindFirstItem" which finds the first property grid
7745         item, so we can select it by default.
7746
7747         - make use of GridEntry.CanResetValue.
7748
7749         - Don't call RedrawBelowItemOnExpansion here anymore, the
7750         individual GridEntry's will do that.
7751
7752         - Remove the ITypeDescriptorContextImpl internal class.
7753         
7754         * GridEntry.cs:
7755         - this class needs to implement ITypeDescriptorContext, as it's
7756         what MS's PropertyDescriptorGridEntry does, which means we can
7757         remove the ITypeDescriptorContextImpl internal class from
7758         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
7759
7760         - keep a reference to our PropertyGridView, and move the call to
7761         RedrawBelowItemOnExpansion here from PGV.  This means
7762         programmaticly setting Expanded actually does something visible.
7763
7764         - add a CanResetValue() function which takes into account our
7765         possibly multiple "selected_objects" in the merged case.  Shifting
7766         PropertyGridView to use this method fixes another unreported
7767         crasher found running the test for #79829.
7768
7769         - when Top or Bounds is updated, make sure the PropertyGridTextBox
7770         is updated to reflect this.
7771
7772         * CategoryGridEntry.cs: the ctor takes the PGV now.
7773         
7774 2006-11-06  Jackson Harper  <jackson@ximian.com>
7775
7776         * TextControl.cs: These are 1 based.
7777         * TextBoxBase.cs: When setting the selected text, don't change the
7778         selected text tags, this is done by ReplaceText, just position the
7779         cursor at the end of the new text.
7780
7781 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
7782
7783         * ListView.cs: Allow label edit only when, when LabelEdit is
7784           set to true.
7785
7786 2006-11-06  Jackson Harper  <jackson@ximian.com>
7787
7788         * TextControl.cs: If a suitable wrapping position isn't found,
7789         just wrap right in the middle of a word.
7790
7791 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
7792
7793         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
7794           bug #79820.
7795
7796 2006-11-06  Jackson Harper  <jackson@ximian.com>
7797
7798         * TreeView.cs: Can't use the VisibleCount property when setting
7799         scrollbar heights, because this doesn't take into account whether
7800         or not the horz scrollbar just came visible.
7801
7802 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
7803
7804         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
7805         activated.  Fixes #79369, #79832.
7806
7807 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
7808
7809         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
7810           had to remove support for links that point to a directory. FileInfo
7811           returns no usefull information (means, the directory they point to)
7812           for such links. Replaced some empty string ("") with String.Empty.
7813
7814 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7815
7816         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
7817         NullReferenceException when attempting to remove node that is not in
7818         collection. Throw NullReferenceException when null is passed to 
7819         Remove. Allow first element of the collection to be removed. Fixes
7820         bug #79831.  In GetEnumerator ().Current return null if positioned 
7821         before the first element of the collection. In GetEnumerator ().Reset,
7822         position before first element of the collection.
7823
7824 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7825
7826         * PropertyGrid.cs: To match MS, remove default title and description
7827         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
7828         buttons.
7829
7830 2006-11-04  Chris Toshok  <toshok@ximian.com>
7831
7832         * Theme.cs: add a Clamp method, just for kicks.
7833
7834         * ThemeWin32Classic.cs: clamp all color components to [0..255].
7835
7836 2006-11-04  Chris Toshok  <toshok@ximian.com>
7837
7838         * Form.cs: if the form isn't visible, Close() does nothing.
7839
7840 2006-11-03  Chris Toshok  <toshok@ximian.com>
7841
7842         * Form.cs (Close): if the form is modal, don't Dispose of it, only
7843         Hide it.
7844         (WndProc): don't Dispose after handling the WM_CLOSE message.
7845
7846         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
7847         them as such, instead of using casts from Control to Form.  Also,
7848         don't Dispose of the modal dialog when we fall out of the loop -
7849         Close() it instead.
7850
7851         fixes bug #79813.
7852
7853 2006-11-03  Chris Toshok  <toshok@ximian.com>
7854
7855         * Control.cs (Dispose): only go through the dispose thing if we're
7856         @disposing, and we haven't already been disposed.  Fixes bug
7857         #79814.
7858
7859         * Form.cs: no reason to call "base.Dispose()" here instead of
7860         "Dispose()".
7861
7862 2006-11-03  Mike Kestner  <mkestner@novell.com>
7863
7864         * ComboBox.cs : use ToString instead of casts in AddItem for
7865         sorting functionality.  Fixes #79812.
7866
7867 2006-11-03  Chris Toshok  <toshok@ximian.com>
7868
7869         * Application.cs: pave the way for actually using the thread
7870         exception dialog.  it's ifdefed out at the moment.
7871
7872 2006-11-03  Chris Toshok  <toshok@ximian.com>
7873
7874         * ThreadExceptionDialog.cs: until we get a better layout, actually
7875         hide the details textbox and label when we shouldn't see them.
7876
7877 2006-11-03  Jackson Harper  <jackson@ximian.com>
7878
7879         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
7880         multiline textboxes anymore.  This method also determines the
7881         width/height of a textboxes canvas area.
7882         - Sorta a revert of the last patch.  For multiline just position
7883         the controls, then bail.  This way the scrollbar width won't be
7884         altered.
7885
7886 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
7887
7888         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
7889         it dont need.  Fixes #79537.
7890
7891 2006-11-02  Jackson Harper  <jackson@ximian.com>
7892
7893         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
7894         send the status after firing the DndOver event.
7895
7896 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7897
7898         * TrackBar.cs: Now orientation only switches height / width if
7899         the control's handle is created (Win32 does it like this). Also 
7900         fixed a typo in ToString() for a test to pass, changed the 
7901         exception thrown in set_LargeChange and set_SmallChange to 
7902         match Win32 behaviour, and added TrackBar tests to the unit 
7903         tests.
7904
7905 2006-11-02  Chris Toshok  <toshok@ximian.com>
7906
7907         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
7908         not _NET_WM_STATE_NO_TASKBAR.
7909
7910 2006-11-02  Jackson Harper  <jackson@ximian.com>
7911
7912         * TextControl.cs: Increment count by one, since in the update view
7913         count - 1 is used.
7914
7915 2006-11-02  Jackson Harper  <jackson@ximian.com>
7916
7917         * TextBoxBase.cs: Use client rectangle not bounds for checking if
7918         the mouse is in the client rectangle (duh).
7919
7920 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7921         
7922         * TrackBar.cs: Fixed trackbar jumping around when clicking
7923         on it - the trackbar was not detecting correctly at which
7924         side of the thumb the click was done. (fixes #79718)
7925
7926 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
7927
7928         * ListBox.cs: scroll visible area when change SelectedIndex to
7929         a non visible area.  Fixes #79481.
7930
7931 2006-11-01  Jackson Harper  <jackson@ximian.com>
7932
7933         * TextControl.cs: When replacing the selection move the selection
7934         start/end/anchor to the end of the new text.
7935
7936 2006-11-01  Jackson Harper  <jackson@ximian.com>
7937
7938         * XplatUIWin32.cs: When setting the parent change the controls
7939         visibility to it's visibility flag, not to it's old parents
7940         visibility (.Visible walks the parent chain).
7941
7942 2006-11-01  Chris Toshok  <toshok@ximian.com>
7943
7944         * XplatUIX11.cs: revert the #79790 fix, as the simple.
7945         XSetTransientForHint fix breaks paint .net's tool windows.  more
7946         work needed for that one.
7947
7948 2006-11-01  Chris Toshok  <toshok@ximian.com>
7949
7950         * ScrollBar.cs: throw ArgumentException instead of Exception in
7951         LargeChange/SmallChange setters.  fixes unit tests.
7952
7953 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
7954
7955         * ContainerControl.cs: reverted rev.67183 (which was itself
7956         a reversion of rev.66853... eh).
7957         
7958         * Control.cs: Fixes Reflector hang by changing Focus() call
7959         to what it was before rev.66643 (calling Select() here sets 
7960         ActiveControl, which in some situations calls back Focus and 
7961         eventually does a stack overflow). Temp fix.    
7962         Changes to GetNextControl() to not look for children to select when
7963         parent cannot be selectable (so it looks for siblings instead)  
7964         
7965 2006-10-31  Mike Kestner  <mkestner@novell.com>
7966
7967         * CheckedListBox.cs : off by one error in returned index from
7968         ObjectCollection.Add.  Fixes #79758.
7969
7970 2006-10-31  Chris Toshok  <toshok@ximian.com>
7971
7972         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
7973         calls for the textbox/spinner, to keep from recursing to the point
7974         where we crash.  Fixes #79760.
7975
7976 2006-10-31  Chris Toshok  <toshok@ximian.com>
7977
7978         * ListControl.cs (set_SelectedValue): don't throw exceptions on
7979         null/"" value, just return.  matches ms's behavior and fixes some
7980         failing tests.
7981
7982 2006-10-31  Chris Toshok  <toshok@ximian.com>
7983
7984         * Control.cs (set_Capture): make a logic a little easier to
7985         follow.
7986
7987         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
7988         if it's being destroyed.  A necessary fix surely, but a bandaid
7989         also, to fix the stuck capture problem in bug #78413.
7990
7991 2006-10-31  Chris Toshok  <toshok@ximian.com>
7992
7993         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
7994         convention of clearing hwnd.ClientRect when we set the
7995         width/height (so it'll be recalculated by Hwnd).
7996
7997 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
7998
7999         * ContainerControl.cs: reversed Contains check from
8000         ActiveControl due to hanging problems. This fix
8001         partly regresses #79667 (button does not have
8002         initial focus), so this might be a symptom for 
8003         a larger parenting problem (set_ActiveControl
8004         is being called but the child control does
8005         not have the parent set yet?)   
8006         
8007 2006-10-31  Mike Kestner  <mkestner@novell.com>
8008
8009         * MenuAPI.cs : fix keynav when menu is click activated.
8010
8011 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
8012
8013         * ToolStrip*: Version 0.2.
8014
8015         * MenuStrip.cs: Version 0.1.
8016
8017         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
8018
8019 2006-10-30  Chris Toshok  <toshok@ximian.com>
8020
8021         [ fixes the oversized notify icon issue in bug #79745 ]
8022         
8023         * NotifyIcon.cs: scale the icon down to the size we're given by
8024         the XplatUI layer (this would be faster if we did it once instead
8025         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
8026         since it's never invoked.
8027
8028         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
8029         pixels high by default, so let's hardcode our systray icon to that
8030         size.  The SYSTEM_TRAY protocol should really have a way for
8031         client apps to query for the correct icon size.. but oh well.  A
8032         couple of patches to deal with the screwy client_window ==
8033         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
8034         instance, and also make sure we don't XSelectInput twice).
8035
8036 2006-10-30  Chris Toshok  <toshok@ximian.com>
8037
8038         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
8039         recreating forms.  Control recreation is the bane of my existence.
8040         Fix it in a way that keeps everyone happy.
8041
8042 2006-10-30  Chris Toshok  <toshok@ximian.com>
8043
8044         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
8045         just non-CHILD ones.  otherwise sometimes scrollbars end up with
8046         client_windows not being resized to the proper size (ReportBuilder
8047         shows this extremely well).
8048
8049 2006-10-30  Chris Toshok  <toshok@ximian.com>
8050
8051         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
8052         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
8053         showing up in the gnome taskbar.  Fixes bug #79790.
8054
8055 2006-10-30  Chris Toshok  <toshok@ximian.com>
8056
8057         * ApplicationContext.cs: guard against a NRE.
8058
8059         * Application.cs: null out the old MainForm for the context, so we
8060         don't try to use it again once it's disposed.  Fixes bug #79783.
8061
8062 2006-10-30  Chris Toshok  <toshok@ximian.com>
8063
8064         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
8065         BindingContext, set the data source directly, otherwise do the
8066         lazy approach - the actual ListManager will be created when we get
8067         a BindingContext. Fixes bug #79700.
8068
8069 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8070
8071         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
8072           XplatUIX11.cs: Remove old 2 parameter SetVisible.
8073
8074         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
8075
8076 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
8077
8078         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
8079         of SetVisible that allows a window to be shown, but not activated.
8080         This is needed on Windows for MenuStrip, and can probably be used
8081         with MainMenu and ComboBox to fix the focus stealing issues on
8082         Windows.
8083
8084         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
8085
8086 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
8087
8088         * PictureBox.cs: Fix the output of the ToString method.
8089
8090 2006-10-29  Chris Toshok  <toshok@ximian.com>
8091
8092         * Control.cs (get_TopLevelControl): fix bug #79781.
8093
8094 2006-10-29  Chris Toshok  <toshok@ximian.com>
8095
8096         * ListControl.cs (set_DataSource): throw Exception here, not
8097         ArgumentException, to match MS behavior.
8098
8099 2006-10-29  Chris Toshok  <toshok@ximian.com>
8100
8101         * Form.cs: remove the try-catch's around calls to GetWindowState.
8102         We can just check the return value.
8103
8104         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
8105         Instead return -1.
8106
8107         * XplatUI.cs: Add note about additional return value for
8108         GetWindowState.
8109
8110 2006-10-29  Chris Toshok  <toshok@ximian.com>
8111
8112         * Control.cs (CreateHandle): when we create our handle, we also
8113         create the handles of our child controls.  Fixes one of the
8114         Control unit tests (CH11).
8115
8116 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8117
8118         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
8119
8120 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
8121
8122         * ThemeClearlooks.cs: A little speedup.
8123
8124 2006-10-27  Chris Toshok  <toshok@ximian.com>
8125
8126         * Control.cs: implement Control.FromChildHandle in a way that
8127         matches the docs (and fixes the failed test.)
8128
8129 2006-10-27  Chris Toshok  <toshok@ximian.com>
8130
8131         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
8132         comments).
8133
8134         * DataGrid.cs: implement ResetForeColor such that the tests
8135         succeed.
8136         
8137 2006-10-27  Chris Toshok  <toshok@ximian.com>
8138
8139         * ToolBarButton.cs: setting text/tooltiptext to null results in it
8140         being set to "".  Fixes bug #79759.
8141
8142 2006-10-27  Jackson Harper  <jackson@ximian.com>
8143
8144         * TextControl.cs: We need to clear the entire selection area when
8145         setting the start, otherwise multiline selections are still
8146         visible.
8147
8148 2006-10-26  Chris Toshok  <toshok@ximian.com>
8149
8150         * PropertyGridView.cs: 
8151
8152         - ifdef all the code specific to the double
8153         buffer case, and provide some alternatives in the non-doublebuffer
8154         code, which makes heavy use of XplatUI.ScrollWindow to move things
8155         around without having to invalidate (and cause flicker).  There
8156         are still some drawing problems in the non-doublebuffered case, so
8157         DOUBLEBUFFER is defined by default.
8158
8159         - Fix the way dropdowns are handled.  now we explicitly watch for
8160         the events which might cause the dropdown to close, and break out
8161         of the nested event loop there.  This gets rid of all Capture
8162         code, at the expense of the Msg special casing.  Seems to work,
8163         though, and fixes bug #79743.
8164
8165 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
8166         * Control.cs: SetIsRecreating now recreates implicitly added
8167         child controls as well. Finally fixes #79629. The flag passed to 
8168         SetIsRecreating has also been removed since it wasn't used.
8169         
8170 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8171
8172         * PageSetupDialog.cs: Clean some code, fix some bits, 
8173         add some checks, and add a printer sub-dialog.
8174
8175 2006-10-26  Chris Toshok  <toshok@ximian.com>
8176
8177         * PropertyGrid.cs: make set_SelectedObject call
8178         set_SelectedObjects, and move the duplicate logic to the
8179         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
8180
8181         * PropertyGridView.cs: hide the textbox when we get a
8182         SelectedObjectsChanged event.
8183
8184         Fixes bug #79748.
8185
8186 2006-10-26  Chris Toshok  <toshok@ximian.com>
8187
8188         * PropertyGridView.cs: deal with the type converter not supporting
8189         GetStandardValues() or GetStandardValues() returning null, which
8190         is does in the default case.  Fixes #79742.
8191
8192 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8193
8194         * CheckedListBox.cs: nunit no longer crashes when selecting 
8195         Project/Edit menu option
8196         
8197 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
8198
8199         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
8200         is no menu selected. fixes #79739
8201
8202 2006-10-25  Chris Toshok  <toshok@ximian.com>
8203
8204         * PropertyGridView.cs: factor out the splitter invalidation code
8205         into the SplitterPercent setter, and for kicks implement the
8206         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
8207         amount in either direction.
8208
8209 2006-10-25  Chris Toshok  <toshok@ximian.com>
8210
8211         * PropertyGridView.cs: do some cleanup of the brush used to draw
8212         text - read only fields should be grayed out.  not sure how to do
8213         this with the textbox, though.  but the textbox's should also be
8214         readonly now at least.  Also, hide/show the textbox when resizing
8215         the control.
8216         
8217         * CursorConverter.cs: use System.Reflection when getting the
8218         properties of Cursors, as TypeDescriptor.GetProperties isn't
8219         returning static properties.
8220
8221 2006-10-25  Chris Toshok  <toshok@ximian.com>
8222
8223         * PropertyGridView.cs: factor out the up/down handling, and reuse
8224         it for page up/down.  also add End/Home support.
8225
8226 2006-10-25  Chris Toshok  <toshok@ximian.com>
8227
8228         * PropertyGridView.cs:
8229
8230         - ensure the selected grid item is visible in the scrolled area,
8231         fixes bug #79572.
8232
8233         - fix Keys.Down handling when you're on the last item in the
8234         propertygrid.
8235
8236 2006-10-25  Mike Kestner  <mkestner@novell.com>
8237
8238         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
8239         clicks too.  Fixes #79725.
8240
8241 2006-10-24  Chris Toshok  <toshok@ximian.com>
8242
8243         * PropertyGrid.cs: use property.Converter instead of
8244         TypeDescriptor.GetConverter(property.PropertyType), so we catch
8245         TypeConverters declared on the property as well as on the
8246         PropertyType.  Fixes bug #79678.
8247
8248 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
8249
8250         * MimeIcon.cs, Mime.cs:
8251           Fallback to the default platform handler if no shared mime info
8252           stuff exists (fixes #79693).
8253
8254 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8255         * ContainerControl.cs: Incorrect contains check in ActiveControl 
8256         from previous fix (duh).
8257
8258 2006-10-20  Chris Toshok  <toshok@ximian.com>
8259
8260         * PropertyGridView.cs: the dropdown should be MIN(number of items
8261         in list, 15).  Fixes #79551.
8262
8263 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
8264         Fixes #79384, #79394, #79652, #79667
8265         * Application.cs: 
8266         
8267         - Modal windows are now destroyed in the proper order for windows
8268         
8269         * ContainerControl.cs:
8270         
8271         - ActiveControl setter has more conditions on when to return:
8272                 - if we're reselecting the active control, but it actually
8273                 didn't have focus (window hidden or some such), it runs
8274                 - if the active control being selected doesn't actually 
8275                 exist in the container, it returns
8276         
8277         * Form.cs
8278         
8279         - The ShowDialog now gets the current form as the owner when
8280         invoking without parameters, and correctly activates the owner 
8281         when returning
8282         
8283         * MessageBox.cs
8284         
8285         - MessageBox now catches the Escape key to exit
8286
8287 2006-10-20  Chris Toshok  <toshok@ximian.com>
8288
8289         * PropertyGridView.cs: fix a number of issues (bug #78565, and
8290         most of bug #79676):
8291
8292         - you can navigate around the property grid with the arrow keys.
8293
8294         - the dropdown is sized properly when the pg has a vertical
8295         scrollbar.
8296
8297         - fix the indentation for subentries, and properly select the
8298         entire label rect.
8299
8300         - fix the gray bar's drawing (only draw it to the last element,
8301         not for the height of the control.  Also make sure we draw that
8302         last horizontal grid line.
8303
8304         - use the same mechanism the datagrid uses wrt the editing textbox
8305         when scrolling/resizing/etc.  Namely, we hide it first, do the
8306         operation, then show it again (if it's still visible).
8307         
8308         - aggressively remove a lot of unnecessary refreshes (and also
8309         calls to Invalidate(). call more limited variants, and only redraw
8310         what we need.)
8311         
8312         * PropertyGrid.cs:
8313
8314         - when we're populating the merged collection, fill in the UI
8315         parent with either the passed in item, or the category item we
8316         create.
8317
8318         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
8319
8320         * GridItem.cs: drop some fully qualified names.
8321         
8322         * GridEntry.cs: add a "UIParent", which is basically the parent
8323         treenode.
8324
8325         * GridItemCollection.cs: add an IndexOf method.
8326
8327 2006-10-20  Mike Kestner  <mkestner@novell.com>
8328
8329         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
8330         a working win32 NC invalidation mechanism, we can't invalidate
8331         menus.  [Fixes #79705]
8332
8333 2006-10-20  Mike Kestner  <mkestner@novell.com>
8334
8335         * ListBox.cs : don't update the VScrollbar if the list is empty,
8336         just hide it.  [Fixes #79692]
8337
8338 2006-10-20  Jackson Harper  <jackson@ximian.com>
8339
8340         * RichTextBox.cs: Handle some special chars better, and don't skip
8341         the entire group when we encounter a special char that we don't
8342         handle correctly.
8343
8344 2006-10-18  Chris Toshok  <toshok@ximian.com>
8345
8346         * PropertyGridView.cs: address a number of issues from bug #79676,
8347         mostly of the cosmetic variety.
8348
8349         - The highlight rectangle for indented items not extends all the
8350         way to the left.
8351
8352         - Indented items aren't indented so much.
8353
8354         - the dropdown is properly sized width-wise if the pg has a
8355         vertical scrollbar.
8356
8357 2006-10-18  Chris Toshok  <toshok@ximian.com>
8358
8359         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
8360         systray stuff is rather convoluted to begin with.
8361
8362         systray icons are a single window for some reason (that I haven't
8363         figured out yet), and for them, client_window == whole_window.
8364         Given the way the tests are structured elsewhere to determine
8365         which paints are pending (client vs. nc), that situation will
8366         always yield PAINT, not NCPAINT.  So, if we have a pending
8367         nc_expose and no pending expose, remove the hwnd from the paint
8368         queue, and also set nc_expose_pending to false, to keep us from
8369         blocking further expose's adding the hwnd to the paint queue.
8370
8371         phew.  like i said, a rather convoluted change.  Fixes the
8372         notifyicon repaint issues in bug #79645.
8373
8374 2006-10-18  Chris Toshok  <toshok@ximian.com>
8375
8376         * Form.cs: when getting the backcolor of the form, don't get
8377         base.BackColor, as this allows parents to influence the background
8378         color.  This breaks mdi forms.  Instead, if the background_color
8379         is empty, return the default.
8380
8381 2006-10-18  Chris Toshok  <toshok@ximian.com>
8382
8383         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
8384         to being private instead of internal static.
8385
8386         * Control.cs: remove all the stupid ParentWaitingOnRecreation
8387         crap, it wasn't working for more deeply nested controls anyway,
8388         and we already have the is_recreating flag - use that instead.
8389         Before calling DestroyHandle in RecreateHandle, recurse through
8390         the control tree setting it to true.  this returns the recreate
8391         code to much of its original simplicity, while now guaranteeing we
8392         actually recreate everything we're supposed to.  This change gets
8393         fyireporting actually showing mdi children.
8394
8395 2006-10-17  Chris Toshok  <toshok@ximian.com>
8396
8397         * Form.cs: remove some debug spew, and collapse some duplicate
8398         code at the end of SetClientSizeCore.
8399
8400         * XplatUIX11.cs: 
8401         - add some more debug spew here too wrt Destroy handling.
8402         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
8403         in Control's handling of WM_DESTROY.
8404         - Remove the handling of zombie window DestroyNotifies from the
8405         event loop - we don't need it.  Now the only DestroyNotifies we
8406         actually handle are ones generated by X.
8407         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
8408         match gtk's (functioning) handling of this. This keep metacity
8409         from leaving droppings in the form of wm borders with no window
8410         contents all over the place.
8411
8412         * Control.cs:
8413         - add a bunch of debug spew wrt control recreation.
8414         - fix a bug where we weren't tracking Visible properly on
8415         recreated hwnds.
8416         - fixed the WM_PAINT double buffer handling to support re-entrant
8417         calls (yes, i know it's gross, but it's happening to us).
8418
8419 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8420         * ThemeWin32Classic.cs: changed drawing of selected days
8421         to make them look better.
8422
8423 2006-10-16  Chris Toshok  <toshok@ximian.com>
8424
8425         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
8426         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
8427
8428         * XplatUIX11.cs: move away from using hwnd.client_dc and
8429         hwnd.non_client_dc and on to a stack of dc's (and in window's
8430         case, PAINTSTRUCT's), so we can deal with nested Paint calls
8431         without puking or not disposing of Graphics objects.
8432
8433         * XplatUIOSX.cs: same.
8434
8435         * XplatUIWin32.cs: same.
8436
8437 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
8438
8439         * FileDialog.cs: Don't call on_directory_changed inside
8440           OnSelectedIndexChanged (it changes the SelectedIndex too).
8441           Instead move it to OnSelectionChangeCommitted.
8442
8443 2006-10-13  Chris Toshok  <toshok@ximian.com>
8444
8445         * XplatUIX11.cs: more Destroy work.  the current code does the
8446         following things, in order:
8447
8448         1. Enumerates all handles of all controls at or below the one
8449         being destroyed, in pre-order.  As it is doing this, it marks the
8450         handles as zombie and clears all references to them.
8451         
8452         2. calls XDestroyWindow on the window passed in.
8453
8454         3. SendMessage's WM_DESTROY to all he handles in the accumulated
8455         list.
8456
8457 2006-10-13  Chris Toshok  <toshok@ximian.com>
8458
8459         * XplatUIX11.cs: set hwnd.zombie to true before calling
8460         SendMessage (WM_DESTROY).  this keeps us from marking the new
8461         window a zombie, and also keeps us from calling sendmessage at
8462         all.
8463
8464 2006-10-13  Jackson Harper  <jackson@ximian.com>
8465
8466         * TextControl.cs: Do not show the caret and selection at the same
8467         time.  Reduces ugliness by 35%.
8468
8469 2006-10-13  Chris Toshok  <toshok@ximian.com>
8470
8471         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
8472         zombie after we do the recursive call, so we actually do call
8473         SendMessage on the children controls.
8474         (GetMessage): if we find a pending paint event for a zombie hwnd,
8475         remove the hwnd from the paint queue, or else it will always be
8476         there (and we'll effectively loop infinitely)
8477
8478 2006-10-13  Mike Kestner  <mkestner@novell.com>
8479
8480         * MenuItem.cs : add Selected format under keynav too.
8481         Fixes #79528.
8482
8483 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
8484
8485         * PropertyGrid.cs: Fixed some NRE's and small difference between our
8486         implementation and that of MS.
8487
8488 2006-10-13  Chris Toshok  <toshok@ximian.com>
8489
8490         * Control.cs (OnInvalidated) only futz with the invalid_region if
8491         the control is double buffered.  this fixes the apparent hang in
8492         the ListView unit tests.  Someone needs to make the
8493         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
8494
8495 2006-10-13  Chris Toshok  <toshok@ximian.com>
8496
8497         * PropertyGridView.cs:
8498
8499         - do a little refactoring so that only one place calls
8500         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
8501         else call that.  Also make it Refresh, since there are redraw bugs
8502         otherwise (we should take a look at that...)
8503
8504         - do a little more refactoring work to share the body of code
8505         involved with the drop down.  it was duplicated in the code
8506         dealing with the listbox handling and in the code dealing with the
8507         UITypeEditors.
8508
8509         - add a Capture to the dropdown form's control once it's
8510         displayed, and add a MouseDown handler that checks to make sure
8511         the position is inside the control.  If it's not, close the
8512         dropdown.  This fixes #78190.
8513
8514         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
8515         if the value is different than the initial value.
8516         
8517 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
8518
8519         * Control.cs: see #78650
8520         - Fixed GetNextControl for several cases:
8521                 - Changed FindFlatForward to return 
8522                 correct sibling control when more than one
8523                 control has same TabIndex as the currently 
8524                 focused one.
8525                 - Changed FindFlatBackward to loop children
8526                 from last to first and apply same logic as in
8527                 FindFlatForward
8528                 - Changed FindControlForward to search for
8529                 children when control is not a container
8530                 but has children, or search for siblings if
8531                 control is a container...
8532                 - Changed FindControlBackward   to continue
8533                 searching for child controls when hitting 
8534                 Panel-like parents
8535                 
8536         - Fixed Focus method to update ActiveControl
8537         (FocusTest.FocusSetsActive failure)
8538         
8539         * TabControl.cs:
8540         - Focus rectangle now refreshes when gaining
8541         or losing focus
8542         - Removed grab for Tab key on IsInputKey that 
8543         was keeping tab navigation from working (#78650)
8544
8545 2006-10-13  Chris Toshok  <toshok@ximian.com>
8546
8547         * PropertyGridView.cs:
8548         - Rewrite SetPropertyValue to loop over SelectedGridItem's
8549         SelectedObjects.
8550
8551         - Deal with GridItem.Value == null a few places.
8552
8553         * PropertyGrid.cs: 
8554         - replace the PopulateGridItemCollection with a pair of methods
8555         which compute the intersection of all the properties in the
8556         SelectedObjects array.  Fixes #79615.
8557
8558         - Throw ArgumentException from set_SelectedObjects if there's a
8559         null in the array.
8560
8561         - Add GetTarget method which can be used to traverse up the
8562         GridItem.Parent chain.  It depends on the assumption that
8563         selected_objects for different GridEntries are always in the same
8564         order (a safe assumption).  Use this method and loop over all the
8565         selected objects in the entry when calling RemoveValueChanged and
8566         AddValueChanged.
8567         
8568         * GridEntry.cs: Make this handle multiple selected objects.
8569         .Value returns null if not all the selected objects share the same
8570         value.
8571
8572 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
8573         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
8574           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
8575           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
8576           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
8577           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
8578         add additional functionality.
8579
8580 2006-10-12  Mike Kestner  <mkestner@novell.com>
8581
8582         * ErrorProvider.cs : new ToolTipWindow ctor sig.
8583         * HelpProvider.cs : new ToolTipWindow ctor sig.
8584         * ToolTip.cs : remove ToolTip param from Window sig since it is
8585         not used.
8586         * ToolBar.cs : add tooltip support.  Fixes #79565.
8587
8588 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8589
8590         * ComboBox.cs: move the events in set_SelectedIndex to 
8591         after the call to HighlightIndex in order to avoid 
8592         possible recursion and subsequent problems with the call
8593         to HighlightIndex and include a range check in 
8594         set_HighlightIndex. Fixes #79588
8595         
8596 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8597
8598         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
8599         to ui thread's settings instead of sunday. 
8600         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
8601
8602 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
8603
8604         * DateTimePicker.cs
8605         * MonthCalendar.cs
8606         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
8607         and implement missing functionality (selecting different parts 
8608         of the date and edit them individually with the keyboard).
8609         
8610 2006-10-11  Chris Toshok  <toshok@ximian.com>
8611
8612         * Control.cs (OnInvalidated): fix NRE relating to last change.
8613
8614 2006-10-11  Chris Toshok  <toshok@ximian.com>
8615
8616         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
8617         atoms in _NET_WM_STATE here if the window is maximized.  We need
8618         to do this because we're *replacing* the existing _NET_WM_STATE
8619         property, so those atoms will be lost otherwise, and any further
8620         call to GetWindowState will return Normal for a window which is
8621         actually maximized.  Fixes #79338.
8622
8623 2006-10-11  Jackson Harper  <jackson@ximian.com>
8624
8625         * TextControl.cs: Special case for setting selection end to
8626         selection start, we basically kill the anchor.
8627         - some todo comments.
8628
8629 2006-10-11  Chris Toshok  <toshok@ximian.com>
8630
8631         * Control.cs: switch to using an "invalid_region" to track which
8632         parts of the image buffer need updating.  This is more code than
8633         the simple fix from r66532.  That version just attempted to always
8634         fill the entire buffer on redraw, which turns out to be
8635         inefficient when invalidating small rectangles.  This version
8636         simply adds the invalid rectangle to the invalid region.  When we
8637         get any WM_PAINT message we see if it can be filled using the
8638         image buffer, and if it can't (if the paint event's clip rectangle
8639         is visible in the invalid region) we first fill the image buffer.
8640         So, the image buffer is still a cache, we just fill it lazily.
8641
8642         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
8643         need it any longer.
8644
8645 2006-10-11  Chris Toshok  <toshok@ximian.com>
8646
8647         * XplatUIX11.cs (SetWindowPos): we need to update both position as
8648         well as size after calling XMoveResizeWindow.  This keeps us from
8649         ignoring future SetWindowPos calls.  Fixes the disappearing
8650         DateTimePicker in the ToolBarDockExample from bug #72499.
8651
8652 2006-10-11  Chris Toshok  <toshok@ximian.com>
8653
8654         * TextBoxBase.cs: reorder things a bit when it comes to
8655         resizing-causing-recalculation.  we were recalculating the
8656         document when our position was changed, which shouldn't happen.
8657         We only care about size changes.  Clear up some more redundant
8658         recalculation calls while I'm at it.  This makes the toolbar dock
8659         example snappy when you're just dragging toolbars around (since it
8660         causes a relayout whenever you move one.)
8661
8662 2006-10-11  Chris Toshok  <toshok@ximian.com>
8663
8664         * ToolBarButton.cs (get_Rectangle): this only returns
8665         Rectangle.Empty if Visible == false, or Parent == null.
8666         Parent.Visible doesn't matter.
8667
8668 2006-10-10  Chris Toshok  <toshok@ximian.com>
8669
8670         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
8671         by .net 1.1, so switch to an internal method instead.
8672
8673 2006-10-10  Chris Toshok  <toshok@ximian.com>
8674
8675         * Control.cs (WM_PAINT): when a control is double buffered we draw
8676         initially to the ImageBuffer and then copy from there.  But when a
8677         parent control which has child controls is double buffered, the
8678         initial drawing doesn't encompass the entire ClientRectangle of
8679         the parent control, so we end up with uninitialized bits (this is
8680         easily seen by dragging the top toolbar in
8681         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
8682         manually set the ClipRectangle of the paint_event (only the one we
8683         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
8684         of the nastiness in bug #72499.
8685
8686         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
8687         which we use in Control.cs's WM_PAINT handling.
8688
8689 2006-10-10  Jackson Harper  <jackson@ximian.com>
8690
8691         * TextBoxBase.cs: Finish off the autoscrolling stuff.
8692
8693 2006-10-10  Chris Toshok  <toshok@ximian.com>
8694
8695         * Cursor.cs: Apply a slightly different patch to the one suggested
8696         in #79609.
8697
8698 2006-10-10  Jackson Harper  <jackson@ximian.com>
8699
8700         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
8701         not the parent form.
8702         * TextControl.cs: use difference in old line count vs new count to
8703         calculate how many lines were added, this takes into account soft
8704         line breaks properly.
8705
8706 2006-10-10  Chris Toshok  <toshok@ximian.com>
8707
8708         * LinkLabel.cs: don't call MeasureCharacterRanges against a
8709         rectangle located at 0,0 and the size of the text.  Use
8710         ClientRectangle instead.  This fixes rendering of non-left aligned
8711         link labels.
8712
8713 2006-10-10  Jackson Harper  <jackson@ximian.com>
8714
8715         * TextBoxBase.cs: When we set the selection start position the
8716         caret.
8717         * TextControl.cs: Need to update the caret when we decrement it to
8718         zero.
8719         - Make sure that the selection_visible flag gets reset to false if
8720         the selection isn't visible.  Before this you could get it set to
8721         visible by changing the selection start, then changing the end to
8722         equal the start.
8723
8724 2006-10-09  Jackson Harper  <jackson@ximian.com>
8725
8726         * TreeView.cs: Don't update scrollbars when we aren't visible.
8727         * TreeNodeCollection.cs: Only need to update scrollbars if being
8728         added to an expanded visible node or the root node.
8729
8730 2006-10-09  Chris Toshok  <toshok@ximian.com>
8731
8732         * XplatUIX11.cs (SendMessage): fix NRE.
8733
8734 2006-10-09  Jackson Harper  <jackson@ximian.com>
8735
8736         * TextBoxBase.cs: Implement horizontal autoscrolling.
8737         * TextControl.cs: Add a movement types that allows moving forward
8738         and backwards without wrapping.
8739
8740 2006-10-09  Mike Kestner  <mkestner@novell.com>
8741
8742         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
8743         with focus "expansion" of labels.  Fixes #79532 and then some.
8744         * ThemeWin32Classic.cs : add LineLimit to ListView label format
8745         when wrapping.
8746
8747 2006-10-09  Jackson Harper  <jackson@ximian.com>
8748
8749         * TextBoxBase.cs: Set the default max values to MaxValue since
8750         we use the scrollbar for autoscrolling and the default value is
8751         100.  If we don't do this the caret won't keep up with typing
8752         after about 18 characters.
8753         * TextControl.cs: Make sure the selection is offset by the
8754         viewport x.  This fixes selection when using auto scrolling.
8755
8756 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
8757         
8758         * Form.cs: The active control should be selected after the 
8759         OnLoad so that any child control initialization that affects
8760         the selection is done. Fixes #79406
8761
8762 2006-10-06  Chris Toshok  <toshok@ximian.com>
8763
8764         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
8765         to have no evil effects.
8766
8767         - Stop selecting StructureNotifyMask on non-toplevel windows.
8768
8769           The only way children should be resized is by using the SWF api,
8770           and we already send WM_WINDOWPOSCHANGED messages in those cases.
8771           Toplevel windows can be interacted with via the window manager,
8772           and so we keep the input mask there.
8773
8774           The other event StructureNotifyMask gives us (that we care
8775           about) is DestroyNotify.  The code is already structured such
8776           that it assumes we won't be getting a DestroyNotify event for
8777           the window we pass to XDestroyWindow (which is what
8778           StructureNotifyMask is supposed to guarantee.)  So, that code
8779           shouldn't be affected by this either.
8780
8781         - Stop selecting VisibilityChangeMask altogether.
8782
8783           We weren't doing anything with the resulting events anyway.
8784         
8785         This vastly reduces the number of X requests and events we see
8786         when resizing/laying out a large ui.
8787
8788 2006-10-06  Chris Toshok  <toshok@ximian.com>
8789
8790         * ScrollableControl.cs (DisplayRectangle): we need to take into
8791         account the DockPadding regardless of whether or not auto_scroll
8792         == true.  rework this slightly to this effect, and fix bug #79606,
8793         and part of #72499 (you can now see the drag handles and drag
8794         toolbars around).
8795
8796 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
8797
8798         * ListViewItem.cs: Collections of selected and checked items are now
8799         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
8800         we mark the collection "dirty".
8801         * ListView.cs: Marked collections readonly. Modified UpdateSelection
8802         to only clear SelectedItems when a new item is selected and MultiSelect
8803         is enabled. CheckedItems and SelectedItems now subscribe to Changed
8804         event of ListViewItemCollection, and mark its list dirty whenever
8805         that event is fire. This allows us to return selected/checked items 
8806         in the same order as they are in the Items collection. This matches
8807         the MS behavior.
8808
8809 2006-10-06  Chris Toshok  <toshok@ximian.com>
8810
8811         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
8812         right mouse clicks.  Fixes bug #79593.
8813
8814 2006-10-06  Chris Toshok  <toshok@ximian.com>
8815
8816         * Splitter.cs: doh, fix splitters that don't want to cancel the
8817         movement when you drag them.  Also, impose the limits on the
8818         values we send to the SplitterMovingEvent.  Fixes #79598.
8819
8820 2006-10-06  Jackson Harper  <jackson@ximian.com>
8821
8822         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
8823         since we use this for auto scrolling also.
8824
8825 2006-10-05  Chris Toshok  <toshok@ximian.com>
8826
8827         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
8828         beginning to think that most datagrid column types don't need this
8829         method.  Fixes bug #79392.
8830
8831 2006-10-05  Chris Toshok  <toshok@ximian.com>
8832
8833         * DataGrid.cs: move back to a more lazy scheme for creating the
8834         CurrencyManager, so we aren't updating it every time you set
8835         either DataSource or DataMember.  Also, don't call
8836         RecreateDataGridRows if the currency manager hasn't changed.
8837
8838 2006-10-05  Chris Toshok  <toshok@ximian.com>
8839
8840         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
8841         emitted, SelectedIndex should already be updated.  Fixes bug
8842         #78929.
8843
8844 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
8845
8846         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
8847           ToolStripTextBox.cs: Initial commit.
8848         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
8849
8850 2006-10-05  Jackson Harper  <jackson@ximian.com>
8851
8852         * TabControl.cs: We need to invalidate the tab control area when
8853         new ones are added (duh).
8854
8855 2006-10-03  Chris Toshok  <toshok@ximian.com>
8856
8857         * Form.cs (ProcessDialogKey): if the focused control is in this
8858         form and is a button, call its PerformClick method here.  Fixes
8859         #79534.
8860
8861 2006-10-04  Jackson Harper  <jackson@ximian.com>
8862
8863         * TabPage.cs: Ignore setting of Visible, and add an internal
8864         method for setting the controls visibility.  TabPage's Visible
8865         property is a little strange on MS, this seems to make us
8866         compatible, and fixes cases where people set all the tab pages to
8867         visible.
8868         * TabControl.cs: Use the new internal setting on tab pages
8869         visibility.
8870
8871 2006-10-03  Mike Kestner  <mkestner@novell.com>
8872
8873         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
8874
8875 2006-10-03  Mike Kestner  <mkestner@novell.com>
8876
8877         * ListView.cs : use is_visible instead of Visible to check if 
8878         scrollbars should be placed/sized.  Also some max_wrap_width
8879         love for LargeIcon view.  [Fixes #79533]
8880
8881 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
8882
8883         * TextControl.cs :
8884           Make set_TextAlign() do actually update the align. Fixed #78403.
8885
8886 2006-10-03  Chris Toshok  <toshok@ximian.com>
8887
8888         * DataGrid.cs: fix a crash when switching datasources if the
8889         vertical scrollbar is at someplace other than Value = 0.  Also,
8890         reduce the number of recalculation passes we do in SetDataSource
8891         from 2 to 1.
8892
8893 2006-10-03  Jackson Harper  <jackson@ximian.com>
8894
8895         * TextBoxBase.cs: Move the if value the same bail check up, we
8896         don't want to empty the document if it is already empty, this
8897         seems to severly mess up the caret.  TODO: I should probably fix
8898         the empty statement to update teh caret somehow.
8899
8900 2006-10-03  Chris Toshok  <toshok@ximian.com>
8901
8902         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
8903         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
8904         reflection, an internal row type, properties on said type, etc.)
8905         will work with our datagrid.  Fixes #79531.
8906
8907 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
8908
8909         * FileDialog.cs: Don't crash if a path is not accessible
8910           (System.UnauthorizedAccessException). Fixes #79569.
8911         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
8912           a ':' too. Return unknown icon for those paths/files.
8913
8914 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
8915
8916         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
8917         GetContainerControl returns null.
8918
8919 2006-10-02  Chris Toshok  <toshok@ximian.com>
8920
8921         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
8922         call to XGetWindowAttributes instead of "handle".  fixes an X
8923         error using notifyicon after the NotifyIconWindow to Form base
8924         class switch.
8925
8926 2006-10-02  Chris Toshok  <toshok@ximian.com>
8927
8928         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
8929         server grab and looping we need to do to get down to the most
8930         deeply nested child window.
8931         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
8932         QueryPointer again after the WarpPointer so we can generate a
8933         proper (fake) MotionNotify event to be enqueued in the destination
8934         window's queue.
8935         (GetCursorPos): call QueryPointer.
8936
8937         Fixes #79556.
8938
8939 2006-10-02  Jackson Harper  <jackson@ximian.com>
8940
8941         * NotifyIcon.cs: Derive the notify icon from a form, so things
8942         like FindForm work on it.
8943         - Swallow the WM_CONTEXTMENU message, since that is generated on
8944         mouse down, and context menu is a mouse up kinda guy.  I believe
8945         the correct fix here is probably to make the notify icon entirely
8946         NC area, but this seems to work fine for anyone not manipulating
8947         WndProc.
8948
8949 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
8950
8951         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
8952           ToolStripItemCollection.cs, ToolStripLabel.cs,
8953           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
8954           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
8955           Initial implementation.
8956         * TextRenderer.cs: Provide padding to MeasureText.
8957
8958 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
8959
8960         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
8961         of ButtonBaseAccessibleObject. Fix bug #79552.
8962
8963 2006-10-02  Jackson Harper  <jackson@ximian.com>
8964
8965         * MdiWindowManager.cs: When maximizing use the containers client
8966         rect, not it's bounds, so nc area is accounted correctly.
8967         - Use the parent form's size for the menu position, since the
8968         client isn't always the full form size.
8969
8970 2006-10-01  Chris Toshok  <toshok@ximian.com>
8971
8972         * ScrollableControl.cs: make sure neither right_edge or
8973         bottom_edge are < 0, since they're used as LargeChange for the
8974         horiz/vert scrollbars respectively.  Fixes #79539.
8975
8976 2006-10-01  Chris Toshok  <toshok@ximian.com>
8977
8978         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
8979         the xplatuix11 code can cause us to destroy/recreate our handle.
8980
8981         * XplatUIX11.cs
8982         (SystrayAdd):
8983         - this code can be invoked many times for the same Hwnd.  Make
8984           sure we only destroy the client window once (the first time this
8985           method is called).  This fixes bug #79544.
8986         - Remove the call to the improperly bound XSync.  why we had two
8987           bindings to this, I will never know, but this call resulted in
8988           events being discarded from the queue(!).
8989         - correct a misunderstanding of _XEMBED_INFO - the second atom is
8990           not our current state but the state we wish to be in.  So, 0 if
8991           we don't want to be mapped.  Change it to 1.
8992         (SystrayRemove): The XEMBED spec makes mention of the fact that
8993         gtk doesn't support the reparent of client windows away from the
8994         embedder.  Looking at gtksocket-x11.c seems to agree with this.
8995         The only avenue we have for removing systray icons is to destroy
8996         them.  We don't want the handle to go away for good, though, so
8997         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
8998         #79545.
8999         
9000 2006-10-01  Chris Toshok  <toshok@ximian.com>
9001
9002         * Form.cs (WndProc): inline the native_enabled variable usage into
9003         the cases in which it's used.  Fixes #79536.
9004
9005 2006-09-29  Mike Kestner  <mkestner@novell.com>
9006
9007         * ListView.cs : toggle the selection state for ctrl clicks in 
9008         multiselect mode. [Fixes #79417]
9009
9010 2006-09-29  Mike Kestner  <mkestner@novell.com>
9011
9012         * ListView.cs : kill CanMultiSelect and refactor the selection
9013         code to support multiselection in the absence of mod keys. Steal
9014         arrow/home/end keys by overriding InternalPreProcessMessage to
9015         restore regressed keynav behavior.
9016         [Fixes #79416]
9017
9018 2006-09-29  Jackson Harper  <jackson@ximian.com>
9019
9020         * MdiClient.cs: Repaint the titlebars when the active window is
9021         changed.
9022
9023 2006-09-29  Chris Toshok  <toshok@ximian.com>
9024
9025         * Application.cs: when entering a runloop with a modal, make sure
9026         the hwnd is enabled.  Fixes #79480.
9027
9028 2006-09-29  Chris Toshok  <toshok@ximian.com>
9029
9030         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
9031         when ListManager.CanAddRows == false, bump us back one.
9032
9033         * DataGridColumnStyle.cs (ParentReadOnly): remove the
9034         listmanager.CanAddRows check.  This makes ArrayLists uneditable
9035         using a datagrid, which is not right.
9036         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
9037         is an IEditable, but call property_descriptor.SetValue regardless.
9038         fixes #79435.
9039
9040 2006-09-29  Chris Toshok  <toshok@ximian.com>
9041
9042         * DataGridBoolColumn.cs: we need to test equality in the face of
9043         possible null values (as is the case with the default NullValue).
9044         This patch keeps us from crashing in that case.
9045
9046 2006-09-29  Jackson Harper  <jackson@ximian.com>
9047
9048         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
9049         here, since it will get called for every node collection in the
9050         tree. This is now done in the treeview once the sorting is
9051         finished.
9052         * TreeView.cs: Recalculate the visible order, and update the
9053         scrollbars after sorting, set the top nope to the root so that the
9054         recalc actually works.
9055
9056 2006-09-29  Chris Toshok  <toshok@ximian.com>
9057
9058         * LinkLabel.cs: more handling of the default link collection in
9059         the face of LinkArea manipulation.  The default link collection
9060         contains 1 element (start=0,length=-1).  If the user sets LinkArea
9061         to anything and the links collection is the default, clear it.
9062         Then only add the link if its nonempty.  Fixes #79518.
9063
9064 2006-09-29  Chris Toshok  <toshok@ximian.com>
9065
9066         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
9067         piece correctly when we hit a '\n'.  Fixes #79517.
9068
9069 2006-09-29  Chris Toshok  <toshok@ximian.com>
9070
9071         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
9072         change the binding of gdk_init_check to take two IntPtr's, and
9073         pass IntPtr.Zero for both of them.  Fixes #79520.
9074
9075 2006-09-29  Mike Kestner  <mkestner@novell.com>
9076
9077         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
9078         [Fixes #78779]
9079
9080 2006-09-28  Jackson Harper  <jackson@ximian.com>
9081
9082         * XplatUIX11.cs: When translating NC messages make sure we go from
9083         whole window to screen, not client window to screen.
9084         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
9085         method doesn't exist
9086         - Skip over controls that aren't forms when arranging.
9087
9088 2006-09-28  Jackson Harper  <jackson@ximian.com>
9089
9090         * XplatUIWin32.cs: Clip the rect to the parent window.
9091         * XplatUIStructs.cs: Add clipping modes struct.
9092         * InternalWindowManager.cs: New private method that factors title
9093         bar heights in when calculating the pos of an NC mouse message.
9094         - Use SendMessage to force a paint when the form's size is changed
9095         instead of painting the decorations immediately.
9096         - Don't let the NC button click messages get to DefWndProc,
9097         because they will attempt to handle windowing themself, and this
9098         messes up z-order (it will put them in front of the scrollbars).
9099         * XplatUIX11.cs: Make sure that we don't reset window managers if
9100         we already have one (ie the window is an MDI window).
9101
9102 2006-09-28  Chris Toshok  <toshok@ximian.com>
9103
9104         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
9105         menu code really needs going over.
9106
9107 2006-09-27  Chris Toshok  <toshok@ximian.com>
9108
9109         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
9110         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
9111         window is maximizable.  So, we need to make sure that even if we
9112         clear the border/wm frame of those functions, they're still
9113         available (basically, we remove the decoration without removing
9114         the function).  Half the fix for #79338.
9115
9116 2006-09-27  Chris Toshok  <toshok@ximian.com>
9117
9118         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
9119         Fixes bug #79515.
9120
9121 2006-09-27  Chris Toshok  <toshok@ximian.com>
9122
9123         * Splitter.cs: reorder things a bit so that we don't actually
9124         draw/move the splitter until after calling OnSplitterMoving.  This
9125         lets users cancel/disallow the movement by explicitly setting
9126         event.SplitX/SplitY.  Fixes #79372.
9127
9128 2006-09-27  Jackson Harper  <jackson@ximian.com>
9129
9130         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
9131         because it is most likely on a window being destroyed, and that
9132         will give us an X11 error.
9133
9134 2006-09-27  Chris Toshok  <toshok@ximian.com>
9135
9136         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
9137         the dropdown button now toggles between showing and hiding the
9138         dropdown.  Also, get rid of dropdown_form_showing and just use
9139         dropdown_form.Visible.  We still don't do a grab, but I'll leave
9140         that part to someone who has handled Capture-fu before.
9141
9142 2006-09-27  Chris Toshok  <toshok@ximian.com>
9143
9144         * DataGrid.cs: return false if alt isn't pressed when '0' is
9145         pressed.  this keeps the '0' key from being swallowed, and fixes
9146         bug #79350.
9147
9148 2006-09-27  Chris Toshok  <toshok@ximian.com>
9149
9150         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
9151         Calling Refresh (in response to a scrollbar event) screws up the
9152         scrollbar painting.  Fixes bug #78923.
9153
9154 2006-09-27  Chris Toshok  <toshok@ximian.com>
9155
9156         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
9157         then insert into hashtable" blocks threadsafe.
9158
9159 2006-09-27  Chris Toshok  <toshok@ximian.com>
9160
9161         * MessageBox.cs (CreateParams): the styles should be |'ed with our
9162         baseclass's, since otherwise the
9163         ControlBox/MinimizeBox/MaximizeBox assignments above have no
9164         effect.  This gets the close button back in messageboxes.
9165
9166 2006-09-27  Chris Toshok  <toshok@ximian.com>
9167
9168         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
9169         flag, not just != 0.  this makes flags that are actually multiple
9170         bits (like WS_CAPTION) work.  fixes bug #79508.
9171
9172 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
9173
9174         * PageSetupDialog.cs: add support for getting and settings the 
9175         paper size, source and orientation.
9176
9177 2006-09-26  Chris Toshok  <toshok@ximian.com>
9178
9179         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
9180         and caption == "", we need to remove the resize handles as well as
9181         the title bar.
9182
9183         * Control.cs (set_Text): turns out that setting Text on a form
9184         should change the WM styles on the window, since if ControlBox ==
9185         false, the only way to get a window border is to have a non-""
9186         Text property.  check winforms/forms/text.cs for an example.  so,
9187         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
9188         update both window styles and title.  This fixes a lot of dialogs
9189         (including the preferences dialog in MonoCalendar.)
9190
9191 2006-09-26  Chris Toshok  <toshok@ximian.com>
9192
9193         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
9194         control isn't a Form), call Win32ShowWindow to hide the window,
9195         but don't update the control Visible property.  When we reparent
9196         back to a parent control, call SetVisible in order for the
9197         window's visibility to be reinstated.
9198
9199         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
9200         the FosterParent.
9201
9202         * Control.cs (ControlCollection.Remove): remove that value.Hide()
9203         call for good, since it breaks MonoCalendar (and other things I'm
9204         sure.) Also, set all_controls to null *after* the owner calls,
9205         which end up regenerating it.
9206         (ChangeParent): allow new_parent to be == null, passing
9207         IntPtr.Zero down to XplatUI.
9208
9209         this fixes #79294 the right way.
9210
9211 2006-09-26  Mike Kestner  <mkestner@novell.com>
9212
9213         * GridEntry.cs : internal SetParent method.
9214         * PropertyGrid.cs : attach to property changed on the proper
9215         target if we have a hierarchical grid with subobjects. Setup
9216         GridItem.Parent for hierarchical items.
9217         * PropertyGridView.cs : Set value on the correct target for
9218         hierarchical grids. [Fixes #78903]
9219
9220 2006-09-26  Chris Toshok  <toshok@ximian.com>
9221
9222         * Control.cs (ChildNeedsRecreating): this should return true if
9223         either we're being recreated and the child is in our list, or our
9224         parent is waiting for our recreation.
9225
9226 2006-09-26  Chris Toshok  <toshok@ximian.com>
9227
9228         * Control.cs (ControlCollection.Remove): reinstate the
9229         value.Hide() call as suggested in bug #79294.
9230
9231 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
9232
9233         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
9234         coordinates (versus a relative move).
9235
9236 2006-09-26  Chris Toshok  <toshok@ximian.com>
9237
9238         * Control.cs: rework child recreation a little bit.  It turns out
9239         that we race between the DestroyNotify the WM_DESTROY message.  If
9240         the parent gets its DestroyNotify before the child gets the
9241         WM_DESTROY message, the child ends up not recreating (since the
9242         parent finishes its recreation on DestroyNotify, and the child
9243         checks ParentIsRecreating.)
9244
9245         So, instead we store off a list of all the child controls which
9246         need to be recreated when the parent control starts to recreate
9247         itself.  Then, when child controls get their WM_DESTROY message we
9248         check to see if they're in the parent's pending recreation list,
9249         and if so, we recreate.  This removes all dependency on ordering
9250         from the code and fixes the initial MonoCalendar upgrade dialog.
9251         
9252 2006-09-26  Jackson Harper  <jackson@ximian.com>
9253
9254         * TextControl.cs: Use the Line to get the length of the line,
9255         since soft line breaks can change the end line.
9256
9257 2006-09-26  Chris Toshok  <toshok@ximian.com>
9258
9259         * Control.cs (ControlCollection.AddImplicit): don't add the
9260         control again if it's already in one of our lists.  This keeps us
9261         from adding controls over and over again for comboboxes when their
9262         handle gets recreated (as the combobox adds implicit controls in
9263         OnHandleCreated).  Fixes the X11 errors in bug #79480.
9264
9265 2006-09-26  Jackson Harper  <jackson@ximian.com>
9266
9267         * TextControl.cs: When deleting characters make sure that any
9268         orphaned zero lengthed tags get deleted.
9269         - Fix ToString for zero lengthed tags.
9270
9271 2006-09-25  Jackson Harper  <jackson@ximian.com>
9272
9273         * TextControl.cs: When getting a tag at the location there can be
9274         multiple tags at the same spot, these are 0-lengthed tags that
9275         appear when extra formatting has been stuck in a location.  We
9276         need to pull out the last of these 0 lengthed tags.
9277
9278 2006-09-25  Jackson Harper  <jackson@ximian.com>
9279
9280         * TextControl.cs: Fix print out in debug method.
9281         * TextBoxBase.cs: When text is set bail if we are setting to the
9282         previous value.
9283         
9284 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
9285
9286         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
9287           It is now possible to change the selected index in a FontXXXListBox
9288           with the up and down arrow keys from the FontXXXTextBoxes.
9289           Also, send the FontXXXTextBox mouse wheel event to the corresponding
9290           FontXXXListBoxes to match ms.
9291
9292 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
9293
9294         * SystemInformation.cs: Return a clone of the theme's MenuFont because
9295         anyone can dispose it, anytime. All other properties returns enums, 
9296         structs or basic types so they don't need such tricks.
9297
9298 2006-09-22  Jackson Harper  <jackson@ximian.com>
9299
9300         * XplatUI.cs:
9301         * XplatUIWin32.cs:
9302         * Clipboard.cs:
9303         * DataFormats.cs:
9304         * XplatUIOSX.cs:
9305         * XplatUIDriver.cs: Update interface to add a primary selection
9306         flag, so the driver can use the primary selection buffer if
9307         needed.
9308         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
9309
9310         * RichTextBox.cs: We need to supply the data object to paste now
9311         (so we can choose to supply CLIPBOARD or PRIMARY).
9312         * TextBoxBase.cs: Supply data object to paste (see above).
9313         - Middle click uses the primary selection data object.
9314         
9315 2006-09-21  Chris Toshok  <toshok@ximian.com>
9316
9317         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
9318         of SetWMStyles.  It's still a rat's nest and is largely
9319         order-dependent which I dislike immensely.  This also fixes the X
9320         button disappearing from toplevel forms.
9321
9322 2006-09-21  Mike Kestner <mkestner@novell.com>
9323
9324         * ListBox.cs: move Jordi's click/dblclick raising code to the
9325         mouse up handler.
9326
9327 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9328
9329         * ListBox.cs: Fixes 79450
9330
9331 2006-09-21  Mike Kestner <mkestner@novell.com>
9332
9333         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
9334         to deal with people updating the TreeNodeCollection after the tree
9335         is disposed.  "Fixes" 79330.
9336
9337 2006-09-20  Jackson Harper <jackson@ximian.com>
9338
9339         * TextControl.cs: Push the cursor record onto the undo stack
9340         before the delete action. This fixes 78651.
9341
9342 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
9343
9344         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
9345         CreateParams. Fixes 79329.
9346
9347 2006-09-19  Chris Toshok  <toshok@ximian.com>
9348
9349         * XplatUIX11.cs: a couple of blanket code massage passes to clean
9350         things up a bit.  First, get rid of the NetAtoms array (and the NA
9351         enum), and just embed the atoms as static fields.  Also, add a
9352         couple of functions (StyleSet and ExStyleSet) to clean up all the
9353         bitmask testing of styles.
9354
9355         * X11Structs.cs: remove the NA enum, not needed anymore.
9356         
9357 2006-09-19  Chris Toshok  <toshok@ximian.com>
9358
9359         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
9360         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
9361         added cleanup to get MessageBox titles appearing again, which were
9362         broken by my earlier fix for caption-less/ControlBox-less windows.
9363
9364 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
9365
9366         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
9367           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
9368           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
9369           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
9370           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
9371           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
9372           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
9373           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
9374           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
9375           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
9376           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
9377             Inital import.
9378         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
9379           ToolStripButton.cs: Stubs needed for above.
9380         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
9381
9382 2006-09-15  Chris Toshok  <toshok@ximian.com>
9383
9384         * XplatUIX11.cs:
9385         - make the MessageQueues hashtable Synchronized.
9386         
9387         - SendMessage: if the Hwnd is owned by a different thread, use the
9388         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
9389         thread.  Fixes bug #79201.
9390
9391 2006-09-15  Chris Toshok  <toshok@ximian.com>
9392
9393         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
9394         ControlBox == false, we disallow maximize/minimize/close.  If the
9395         form Caption is "" we also disallow move (and get rid of the Title
9396         decoration).  Unfortunately, regardless of how things are set,
9397         we're stuck with the Title and WM menu.
9398
9399 2006-09-15  Chris Toshok  <toshok@ximian.com>
9400
9401         * Application.cs: add locking around the static message_filters
9402         ArrayList, part of #79196.
9403
9404 2006-09-15  Chris Toshok  <toshok@ximian.com>
9405
9406         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
9407         Form.ControlBox == false, the window has no titlebar nor resize
9408         handles.  fixes bug #79368.
9409
9410 2006-09-15  Chris Toshok  <toshok@ximian.com>
9411
9412         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
9413         >= 0.  Fixes bug #79370.
9414
9415 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
9416         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
9417         * Control.cs:
9418             Add properties: LayoutEngine, Margin, DefaultMargin.
9419             Add method: GetPreferredSize.
9420             Move layout logic from PerformLayout to layout engines. 
9421
9422 2006-09-13  Chris Toshok  <toshok@ximian.com>
9423
9424         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
9425         fix for #79326 broke #78718, so this change addresses that.
9426
9427         - in SendWMDestroyMessages remove the call to
9428         CleanupCachedWindows, since we might be recreating the control and
9429         need to maintain the references to right Hwnd handles.  Also, set
9430         the zombie flag to true for each of the children in the hierarchy
9431         instead of calling hwnd.Dispose.  This will cause GetMessage to
9432         ignore all events for the window except for DestroyNotify.
9433
9434         - In GetMessage, ignore messages except for DestroyNotify for
9435         zombie hwnds.
9436         
9437         * Control.cs: revert the is_recreating fix from the last
9438         ChangeLog.  It's definitely "right", but it breaks switching from
9439         an MDI form to a non-MDI form.  Will need to revisit that.
9440
9441         * Hwnd.cs: add a zombie flag, which means "the
9442         client_window/whole_window handles are invalid, but we're waiting
9443         for the DestroyNotify event to come in for them".  Set the flag to
9444         false explicitly if setting WholeWindow/ClientWindow, and also
9445         when Disposing.
9446         
9447 2006-09-13  Chris Toshok  <toshok@ximian.com>
9448
9449         * XplatUIX11.cs: rework window destruction slightly.
9450
9451         - when destroying the windows associated with a control, we don't
9452         need 2 separate XDestroyWindow calls.  Just the one for the
9453         whole_window (or for client_window if whole_window is somehow
9454         IntPtr.Zero -- can this happen?) is enough.
9455
9456         - reworked SendWMDestroyMessages slightly, so we always dispose
9457         the child control hwnd's after sending the messages.
9458         
9459         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
9460         the two places it was used (one was even using hwnd.Handle and the
9461         other hwnd.client_window.  ugh), adding another call in
9462         SendWMDestroyMessages.  We need this new call because now the
9463         DestroyNotify events in the queue will be ignored for the child
9464         controls (as their hwnd's were disposed, and the window id's
9465         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
9466
9467         - this fixes bug #79326.
9468
9469 2006-09-13  Chris Toshok  <toshok@ximian.com>
9470
9471         * Control.cs: don't always set is_recreating to false at the end
9472         of RecreateHandle, since sometimes we're not done (and won't be
9473         until WndProc handles the WM_DESTROY message).  Also, set
9474         is_recreating to false in the WM_DESTROY handling code.  Part of
9475         the fix for bug #79326.
9476
9477 2006-09-13  Miguel de Icaza  <miguel@novell.com>
9478
9479         * X11DesktopColors.cs: Start the droppage of debugging messages.
9480
9481         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
9482
9483 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
9484
9485         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
9486
9487 2006-09-12  Chris Toshok  <toshok@ximian.com>
9488
9489         * DataGrid.cs (get_ListManager): if the list_manager is null, try
9490         to create it using SetDataSource.  Fixes bug #79151.
9491
9492 2006-09-11  Chris Toshok  <toshok@ximian.com>
9493
9494         * XEventQueue.cs: add a DispatchIdle property.
9495
9496         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
9497         either the queue is null, or the queue has DispatchIdle set to
9498         true.
9499         (DoEvents): set queue.DispatchIdle to false around the
9500         peek/translate/dispatch message loop in this method.  This keeps
9501         Application.Doevents from emitting idle events.  Part of the fix
9502         for #78823.
9503
9504 2006-09-11  Chris Toshok  <toshok@ximian.com>
9505
9506         * DataGrid.cs (set_DataSource): make this work for both the
9507         winforms/datagrid test and ReportBuilder.  It seems as though when
9508         we've created a ListManager (or maybe it's if we have a
9509         BindingContext?), when we set the DataSource it clears the
9510         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
9511         #79333.
9512
9513 2006-09-11  Chris Toshok  <toshok@ximian.com>
9514
9515         * XplatUIX11.cs: deal with queue being null, which happens in all
9516         the Clipboard functions.  Fixes one of the two problems mentioned
9517         in #78612.
9518
9519 2006-09-11  Chris Toshok  <toshok@ximian.com>
9520
9521         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
9522         button on various spots (including outside the menu) works closer
9523         to MS, and doesn't crash.  Fixes #79343.
9524
9525 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
9526
9527         * ListView.cs: Do not initialize item_sorter in init. To match MS,
9528         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
9529         and the internal comparer is set. When a new ListViewItemSorter is set,
9530         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
9531         was specified. No further processing is necessary if SortOrder is set
9532         to it's current value. If Sorting is modified to None, and View is
9533         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
9534         (either custom or our internal ItemComparer) to null, on 1.0 profile
9535         only set item_sorter to null if its our internal IComparer. If Sorting
9536         is modified to Ascending or Descending, then use our internal IComparer
9537         if none is set, and if the current IComparer is our internal one then:
9538         on 2.0 profile always replace it with one for new Sorting, and on 1.0
9539         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
9540         Enum.IsDefined to verify whether a valid View value is specified in
9541         its setter. Automatically sort listview items when listview is
9542         created. In Sort, do nothing if ListView is not yet created, or if
9543         no item_sorter is set (no Sorting was set, Sorting was explicitly set
9544         to None or ListViewItemSorter was set to null). Added Sort overload
9545         taking a bool to indicate whether the ListView should be redrawn when
9546         items are sorted (we use this in ListViewItemCollection to avoid double
9547         redraws). Modified our internal IComparer to take the sort order into
9548         account. In Add and AddRange methods of ListViewItemCollection, also
9549         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
9550         view), but use overload with noredraw option to avoid double redraw.
9551         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
9552         true when View is Tile, and do the same when attempting to set View to
9553         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
9554         for selected/checked indices, as it involves overhead when sorting is
9555         done while these collections are not used all that often. Instead
9556         we'll build the indices on demand. Modified IList implementation of
9557         CheckedIndexCollection to use public methods if object is int.
9558         Modified CheckedListViewItemCollection to hide checked items if
9559         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
9560         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
9561         IList implementation in SelectedIndexCollection to use public methods
9562         if object is int. Modified SelectedListViewItemCollection to hide
9563         selected items if listview is not yet created.
9564         * ListViewItem.cs: CheckedIndices list no longer needs to be
9565         maintained separately (see ListView changes). Also clone font, fixes
9566         test failure.
9567
9568 2006-09-11  Mike Kestner  <mkestner@novell.com>
9569
9570         * ComboBox.cs: if we are updating the contents of the currently
9571         selected index, refresh the control or the textbox selection.
9572         [Fixes #79066]
9573
9574 2006-09-11  Mike Kestner  <mkestner@novell.com>
9575
9576         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
9577         the 'specified' logic has been moved there.  This seems like a bug 
9578         in Control.cs, since our current SetBoundsCore completely ignores 
9579         the specified parameter.  Peter's commit seems to indicate that is 
9580         the way the MS control implementation works.  [Fixes #79325]
9581
9582 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
9583
9584         * XplatUI.cs: Set default_class_name to be composed
9585         of current domain id. This allows MWF to be loaded in multiple
9586         domains on Win32.
9587
9588 2006-09-09  Miguel de Icaza  <miguel@novell.com>
9589
9590         * X11Keyboard.cs: If we are unable to obtain the input method, do
9591         not call CreateXic to create the input context.   Should fix
9592         #78944/79276.
9593
9594 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
9595
9596         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
9597           Simplified gnome support by adding more pinvokes to get the
9598           icon for a file or mime type.
9599
9600 2006-09-08  Jackson Harper  <jackson@ximian.com>
9601
9602         * MenuAPI.cs: Deslect popup context menu items before closing the
9603         window, so that you don't see the previously selected item
9604         selected when you reopen the menu.
9605         * TextControl.cs: Update the cursor position even if we don't have
9606         focus.  This fixes typing in things like the ComboBox.  I'm not
9607         totally sure we should always set the visibility if we don't have
9608         focus, but couldn't find any corner cases where the cursor showed
9609         up when it shouldn't.
9610
9611 2006-09-08  Chris Toshok  <toshok@ximian.com>
9612
9613         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
9614         our arrays are length 256.  & 0xff before indexing.  Fixes the
9615         crash in bug #78077.
9616         
9617 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9618
9619         * ThemeWin32Classic.cs: 
9620         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
9621         is true. Handle that check box too.
9622
9623 2006-09-07  Chris Toshok  <toshok@ximian.com>
9624
9625         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
9626         79244.
9627
9628 2006-09-07  Chris Toshok  <toshok@ximian.com>
9629
9630         * Control.cs: in set_BackColor only do the work if
9631         background_color != value.
9632
9633         * XplatUIX11.cs: move the clearing of invalid areas (both client
9634         and nc) to the same block of code where we set (nc_)expose_pending
9635         to false.  That is, move it from PaintEventEnd to PaintEventStart,
9636         so things that cause invalidates from within OnPaint will trigger
9637         another call to OnPaint.  Fixes bug #79262.
9638
9639 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
9640
9641         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
9642         * FileDialog.cs: Fix typo
9643
9644 2006-09-07  Jackson Harper  <jackson@ximian.com>
9645
9646         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
9647         for tab pages if they have any.
9648
9649 2006-09-06  Mike Kestner  <mkestner@novell.com>
9650
9651         * Splitter.cs: use the "current" rect when finishing drag handle
9652         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
9653
9654 2006-09-06  Mike Kestner  <mkestner@novell.com>
9655
9656         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
9657         support offset splitters. [Fixes #79298]
9658
9659 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
9660
9661         * Mime.cs: Fixed a bug that could override the global mime type
9662           result.
9663
9664 2006-09-05  Jackson Harper  <jackson@ximian.com>
9665
9666         * TabControl.cs: Better calculation method for setting the slider
9667         pos. Prevents crashes on really wide tabs.
9668         - Draw Image on tab pages if an image list is used.
9669
9670 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9671
9672         * MonthCalendar.cs: When Font changes, the Size should be
9673         updated to fit the new font's space requirements.
9674
9675 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
9676
9677         * ListBox.cs: If the items are cleared with Items.Clear set
9678           top_index to 0.
9679
9680 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9681
9682         * MonthCalendar.cs: Handle arrow keys as input keys. Also
9683         fire DateChanged event instead of DateSelected event when
9684         the date was changed by keyboard interaction.
9685
9686 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9687
9688         * DateTimePicker.cs: Handle DateChanged for the associated
9689         month_calendar control, and set month_calendar.Font from 
9690         OnFontChanged method, as well as resize the height of the
9691         control when needed. Make PreferredHeight proportional.
9692
9693 2006-09-01  Chris Toshok  <toshok@ximian.com>
9694
9695         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
9696         properties.
9697
9698         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
9699
9700 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
9701
9702         * FileDialog.cs: Set ClientSize instead of window size, to allow space
9703           for decorations (Fixes #79219)
9704
9705 2006-09-01  Mike Kestner  <mkestner@novell.com>
9706
9707         * ComboBox.cs: first stab at sorting plus some selection handling
9708         fixes to bring us more in line with MS behavior.  Also switches back
9709         to index based selection.  Alternative patches for index-based 
9710         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
9711         and latency@gmx.de on bug 78848.  I assume they were similar to this
9712         code I've had simmering in my tree forever.
9713         [Fixes #78848]
9714
9715 2006-09-01  Chris Toshok  <toshok@ximian.com>
9716
9717         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
9718         when setting list position guard against ending up with a -1 index
9719         (the other part of the fix for #78812).  Should probably make sure
9720         we don't need the analogous fix in the ItemDeleted case.
9721
9722         * DataGrid.cs:
9723         - in SetDataSource, work around the fact that the way
9724         OnBindingContextChanged is invoked will cause us to re-enter this
9725         method.  I'll remove the hack once I investigate
9726         OnBindingContextChanged.
9727
9728         - fix the logic in set_DataSource and set_DataMember (basically
9729         what to do if the other of the two is null.)
9730         
9731         - in OnListManagerItemChanged, we need to take into account the
9732         edit row when deciding whether or not to call RecreateDataGridRows
9733         (part of the fix for #78812).
9734
9735 2006-09-01  Jackson Harper  <jackson@ximian.com>
9736
9737         * Splitter.cs: Don't do anything if there is no control to affect
9738         (prevents us from crashing in weird tet cases).
9739         * TreeView.cs: Bounding box for the mouse movement reverting
9740         focus/selection back to previously selected node.  This matches
9741         MS, and makes the tree a lot more useable.
9742         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
9743         use clipping so they are not drawn.  This fixes when the control
9744         is set to have a transparent background, or if it was over an
9745         image.
9746
9747 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
9748
9749         * MimeIcon.cs: Improved handling for reading default icons when
9750           using gnome (2.16 made it necessary). Check and read svg icons
9751           first, then 48x48 and then 32x32 icons.
9752
9753 2006-08-31  Chris Toshok  <toshok@ximian.com>
9754
9755         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
9756         visible.
9757
9758         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
9759         ProcessKeyPreview.  Fixes part of #77806.
9760
9761         * DataGrid.cs: big patch.
9762
9763         - revert the queueing up of DataSource/DataMember if inside
9764         BeginInit/EndInit calls.  That's not the way the datagrid achieves
9765         its delayed databinding.  Instead, call SetDataSource in
9766         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
9767         #78811.
9768
9769         - Also, it wasn't mentioned in #78811, but the test case exhibits
9770         behavior that was lacking in our datagrid implementation - Columns
9771         that have mapping names that don't exist in the datasource's
9772         properties aren't shown.  Yuck.  To fix this I added the bound
9773         field to the column style, and basically any calculation to figure
9774         out anything about columns uses a loop to find the bound columns.
9775         still need to investigate if I can cache an array of the bound
9776         columns or if the indices must be the same.
9777
9778         - When setting CurrentCell, we no longer abort if the cell being
9779         edited was in the add row.  This fixes the other part of #77806.
9780
9781         - The new code also fixes #78807.
9782         
9783         * ThemeWin32Classic.cs: perpetrate the same disgusting
9784         column.bound field hack, and only render bound fields.
9785
9786 2006-08-31  Chris Toshok  <toshok@ximian.com>
9787
9788         * DataGridColumnStyle.cs: add bound field.  this field is true if
9789         the datasource has a property corresponding to the mapping name.
9790
9791         * DataGridTableStyle.cs: set the bound field on the column styles
9792         depending on whether or not we have a column for that property.
9793
9794 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
9795
9796         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
9797           splitter control (fixes #79228)
9798
9799 2006-08-31  Chris Toshok  <toshok@ximian.com>
9800
9801         * DataGridColumnStyle.cs: we need to delay the assignment of
9802         property descriptor until the last possible moment due to the lazy
9803         databinding stuff in the datagrid.  Also, fix the exceptions
9804         thrown by CheckValidDataSource to match MS.
9805
9806 2006-08-31  Jackson Harper  <jackson@ximian.com>
9807
9808         * Form.cs: When activated select the active control, if there is
9809         no active control, we select the first control.
9810         * XplatUIX11.cs: If there is no focus control when we get a
9811         FocusIn event, find the toplevel form and activate it.  This
9812         occurs when you popup a window, it becomes the focus window, then
9813         you close that window, giving focus back to the main window.
9814
9815 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9816
9817         * MonthCalendar.cs: 
9818         * ThemeWin32Classic.cs: Cache Font in bold style, as well
9819         as StringFormat with Center alignments in MonthCalendar,
9820         instead of creating new ones when drawing the control. 
9821         Also, draw the month name in bold style.
9822
9823 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
9824
9825         * Control.cs:
9826           - PerformLayout(): It would seem MS performs the fill even if the 
9827             control is not visible (part of #79218 fix)
9828           - ResetBackColor(): Use the setter to reset the color, to allow
9829             overriders to catch the change.
9830         * Form.cs:
9831           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
9832           - CreateHandle(): dito (part of $79218 fix)
9833           - Don't set an icon if we have a dialog
9834         * ScrollableControl.cs:
9835           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
9836           - ScrollIntoView(): No need to scroll if control is already visible
9837             (resolves fixme and fixes #79218)
9838
9839 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9840
9841         * MonthCalendar.cs: Change proportions in SingleMonthSize
9842         to match the aspect of the original control.
9843
9844 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
9845
9846         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
9847           get updated when they get maximized.
9848
9849 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
9850
9851         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
9852
9853 2006-08-29  Chris Toshok  <toshok@ximian.com>
9854
9855         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
9856
9857 2006-08-29  Jackson Harper  <jackson@ximian.com>
9858
9859         * TreeView.cs: Need to track selected node and highlighted node,
9860         they aren't always the same thing, when the mouse is down on a
9861         node it is hilighted, but not selected yet.
9862         - Do the HideSelection stuff right
9863         - Need to focus on rbutton mouse down. And redraw selection when
9864         right click is mouse upped.
9865
9866 2006-08-29  Mike Kestner  <mkestner@novell.com>
9867
9868         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
9869         when SubItems.Count < Columns.Count.  [Fixes #79167]
9870
9871 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
9872
9873         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
9874
9875 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
9876
9877         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
9878           from X. Only send based on ConfigureNotify if we don't have the
9879           correct location in hwnd (if the window manager moved us)
9880
9881 2006-08-28  Mike Kestner  <mkestner@novell.com>
9882
9883         * ListView.cs: remove a TODO. 
9884         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
9885         [Fixes ListView part of #79166]
9886
9887 2006-08-28  Mike Kestner  <mkestner@novell.com>
9888
9889         * ListView.cs: move wheel handler to parent since it is focused
9890         instead of the item_control now.  [Fixes #79177]
9891
9892 2006-08-28  Mike Kestner  <mkestner@novell.com>
9893
9894         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
9895         when the control is focused. [Fixes #79171]
9896
9897 2006-08-28  Mike Kestner  <mkestner@novell.com>
9898
9899         * ListView.cs: size the item and header controls for empty and
9900         unscrollable views.
9901         * ThemeWin32Classic.cs: draw disabled backgrounds.
9902         [Fixes #79187]
9903
9904 2006-08-28  Chris Toshok  <toshok@ximian.com>
9905
9906         * Form.cs: remove unused "active_form" static field.
9907
9908         * Hwnd.cs: lock around accesses to static windows collection.
9909
9910         * Application.cs: lock threads in Exit ().
9911
9912 2006-08-28  Chris Toshok  <toshok@ximian.com>
9913
9914         * NativeWindow.cs: lock around accesses to window_collection.
9915         
9916 2006-08-28  Chris Toshok  <toshok@ximian.com>
9917
9918         * Control.cs: err, fix this the right way, by locking on controls
9919         when using it.  not by making it synchronized.
9920
9921 2006-08-28  Chris Toshok  <toshok@ximian.com>
9922
9923         * Control.cs: make the static "controls" field synchronized, as it
9924         gets updated from multiple threads.
9925
9926 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
9927
9928         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
9929           Prevent other threads from exiting when calling thread sets quit state.
9930         * XEventQueue.cs: Added PostQuitState property
9931
9932 2006-08-27  Chris Toshok  <toshok@ximian.com>
9933
9934         * AsyncMethodData.cs: add a slot for the window handle.
9935
9936         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
9937         window (the destination control's window, not the foster window).
9938
9939         * Control.cs (BeginInvokeInternal): store the window's handle in
9940         the AsyncMethodData.
9941         
9942
9943 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
9944
9945         * XplatUIX11.cs:
9946           - PostQuitMessage: Removed resetting S.D display handle, we might have
9947             another loop started after calling PostQuitMessage (Fixes #79119)
9948           - Created destructor to reset S.D handle
9949
9950 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
9951
9952         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
9953
9954 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9955
9956         * TextControl.cs (Insert): Update the caret position even if we don't
9957           have a handle yet, just don't call the driver in that case.
9958         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
9959           to the end of the new selection text (Fixes #79184)
9960
9961 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9962
9963         * Form.cs (Activate): Only activate if the handle is created)
9964         * Control.c:
9965           - Mark window as invisible when it's disposed
9966           - Check if window handle is created when setting window visible, 
9967             instead of relying just on the is_created variable
9968           - Check if object is disposed when creating the control (Fixes #79155)
9969
9970 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9971
9972         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
9973           when allowing layout again. Otherwise we re-generate the anchoring 
9974           distance to the border again and actually alter what the user wanted
9975           This is ugly, it'd be better if we used DisplayRectangle instead of
9976           ClientRectangle for Control.UpdateDistances, but that causes us to
9977           have other problems (initial anchoring positons would be wrong)
9978           (Fixes #78835)
9979
9980 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9981
9982         * Control.cs:
9983           - The size and location setters shouldn't go directly to 
9984             SetBoundsCore, but to SetBounds, which triggers layout on the
9985             parent, then calls SetBoundsCore. (Related to fix for #78835)
9986           - SetBounds: Moved actual location update code into this function
9987             from SetBoundsCore, to match MS. Added call to PerformLayout if
9988             we have a parent (to trigger resizing of anchored parents if the 
9989             child size has changed (see testcase for #78835) 
9990         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
9991           new control code
9992         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
9993
9994 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9995
9996         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
9997           System.Drawing when a toplevel window gets closed; there might
9998           be other toplevel windows belonging to the same app (Fixes #78052)
9999
10000 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
10001
10002         * FileDialog.cs: After reading FileDialog settings from mwf_config
10003           use Desktop prefix only if a real folder doesn't exist anymore.
10004         * FontDialog.cs: Added char sets.
10005           It is now possible to select the font, size or style with the
10006           textboxes.
10007
10008 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
10009
10010         * PrintPreviewDialog.cs: Use assembly name constants.
10011
10012 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10013
10014         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
10015           scrollbar from whacking it's buttons)
10016
10017 2006-08-24  Chris Toshok  <toshok@ximian.com>
10018
10019         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
10020         in this patch (aggregating setting Left/Top/Width/Height to
10021         setting Bounds on the scrollbars), but the crux of the fix is in
10022         Recalculate, where we scroll by the remaining scroll_position if
10023         we're hiding a scrollbar.  The 2*$5 reward in the comment is
10024         serious.
10025
10026 2006-08-24  Jackson Harper  <jackson@ximian.com>
10027
10028         * MdiClient.cs:
10029         * MdiWindowManager.cs: If the form is made a non-mdi window we
10030         need to remove the form closed event so that closing forms works
10031         correctly.
10032
10033 2006-08-24  Jackson Harper  <jackson@ximian.com>
10034
10035         * Control.cs: Make IsRecreating internal so that the driver can
10036         check it
10037         - Temporarily remove the Hide when controls are removed, its
10038         making a whole bunch of things not work because visibility isn't
10039         getting reset elsewhere correctly
10040         * Form.cs: Need to do a full handle recreation when the mdi parent
10041         is set.
10042         * XplatUIX11.cs: If we are recreating handles don't dispose the
10043         HWNDs.  What was happening is the handles were being recreated in
10044         SendWMDestroyMessages, but then flow continued on in that method
10045         and destroyed the new handles.
10046
10047 2006-08-23  Jackson Harper  <jackson@ximian.com>
10048
10049         * Form.cs: MdiClient is always at the back of the bus
10050         * Control.cs: When the order of items in the collection is changed
10051         we need to reset the all_controls array
10052         - do the same sorta setup thats done when adding a control when a
10053         control is set on the collection.
10054
10055 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
10056
10057         * TextBoxBase.cs (get_Text): Return an empty array if our document
10058           is empty (fixes #79052)
10059
10060 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10061
10062         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
10063           on WM_SYSCHAR messages (fixes #79053)
10064
10065 2006-08-23  Chris Toshok  <toshok@ximian.com>
10066
10067         * DataGrid.cs: fix flickering when scrolling vertically.
10068
10069 2006-08-23  Chris Toshok  <toshok@ximian.com>
10070
10071         * DataGrid.cs (EndEdit): only invalidate the row header when we
10072         need to.
10073
10074 2006-08-23  Chris Toshok  <toshok@ximian.com>
10075
10076         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
10077         methods.  fixes the flicker when scrolling around.
10078
10079 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10080
10081         * FileDialog.cs: Making sure the control is created before we get a 
10082           chance to use it with BeginInvoke (Fixes #79096)
10083
10084 2006-08-23  Chris Toshok  <toshok@ximian.com>
10085
10086         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
10087         width to use when painting the rows.
10088
10089 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
10090
10091         * TextBoxBase.cs:
10092           - Throw ArgumentException if a negative value is passed to SelectionLength
10093           - Update the selection end if start is moved. end needs to be always
10094             after start. (Fixes #79095)
10095           - Track selection length; MS keeps the selection length even if start
10096             is changed; reset on all other operations affection selection
10097
10098 2006-08-22  Jackson Harper  <jackson@ximian.com>
10099
10100         * TreeView.cs: Make sure both scrollbars get displayed and sized
10101         correctly when the other bar is visible.
10102         - Use the original clip rectangle for checking if the area between
10103         the two scrollbars is visible, not the viewport adjusted clipping
10104         rectangle.
10105
10106 2006-08-22  Jackson Harper  <jackson@ximian.com>
10107
10108         * Binding.cs: We don't use IsBinding because it requires the
10109         control to be created, which really shouldn't be necessary just to
10110         set a property on the control.
10111
10112 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10113
10114         * ComboBox.cs: Some CB.ObjectCollection methods must throw
10115         ArgumentNullReferenceException when the argument is null.
10116
10117 2006-08-21  Jackson Harper  <jackson@ximian.com>
10118
10119         * Timer.cs: Track the thread that the timer is started in (NOT
10120         CREATED), this way messages for it will only be triggered on its
10121         queue.
10122         * XEventQueue.cs: Track the timers here, this makes timers per
10123         thread, like MS.
10124         * XplatUIX11.cs: The timers are moved to the XEventQueue.
10125
10126 2006-08-19  Chris Toshok  <toshok@ximian.com>
10127
10128         * XplatUIX11.cs: after further communication with pdb, we get the
10129         best of both worlds.  SetZOrder working for un-Mapped windows, and
10130         no X errors for un-mapped windows.
10131
10132 2006-08-19  Chris Toshok  <toshok@ximian.com>
10133
10134         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
10135         as it was causing pdn toolbars to not have the correct stacking.
10136
10137 2006-08-18  Mike Kestner  <mkestner@novell.com> 
10138
10139         * ListView.cs : guard against negative ClientArea.Width in scrollbar
10140         calculation.  Not sure why control should ever be setting a negative
10141         width though.  Fixes #78931.
10142
10143 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10144
10145         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
10146         null items in ObjectCollection class.
10147         * ListBox.cs.: Likewise.
10148
10149 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
10150
10151         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
10152           as the base method in ThemeWin32Classic should work fine.
10153           Fixed bug #78607.
10154
10155 2006-08-18  Jackson Harper  <jackson@ximian.com>
10156
10157         * Binding.cs: When validating if the value entered doesn't convert
10158         properly reset to the old value.
10159         * RadioButton.cs: Don't fire click when we get focus.
10160
10161 2006-08-18  Jackson Harper  <jackson@ximian.com>
10162
10163         * FileDialog.cs: Paint the selection on the directory combobox the
10164         same way as on MS. 
10165
10166 2006-08-17  Jackson Harper  <jackson@ximian.com>
10167
10168         * ErrorProvider.cs: Don't allow the error control to be selected.
10169         * Control.cs: Don't send the SetFocus messages, the control
10170         activation will do this, and if we do it blindly here validation
10171         does not work.
10172
10173 2006-08-17  Jackson Harper  <jackson@ximian.com>
10174
10175         * Control.cs:
10176         * ContainerControl.cs: Make validation events fire in the correct
10177         order.  TODO: For some reason the first validation event is not
10178         getting fired.
10179
10180 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10181
10182         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
10183
10184 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10185
10186         * ComboBox.cs : implement scroll wheel support for popped-down
10187         state. Fixes #78945. 
10188
10189 2006-08-17  Jackson Harper  <jackson@ximian.com>
10190
10191         * TreeView.cs: Specify treeview actions (old patch that didn't get
10192         committed for some reason).
10193         - Don't let the mouse wheel scroll us too far.  Just want to make
10194         the bottom node visible, not scroll it all the ways to the top.
10195
10196 2006-08-17  Jackson Harper  <jackson@ximian.com>
10197
10198         * XplatUIX11.cs: Mouse wheel events go to the focused window.
10199
10200 2006-08-17  Mike Kestner  <mkestner@novell.com> 
10201
10202         * ComboBox.cs : don't do mouseover selection in simple mode.
10203
10204 2006-08-16  Jackson Harper  <jackson@ximian.com>
10205
10206         * Form.cs: Fire the closing events for all the mdi child windows
10207         when a window is closed.  If the cancel args are set to true, the
10208         main window still gets the event fired, but it doesn't not close.
10209         * MdiWindowManager.cs: Do this closing cleanup in a Closed
10210         handler, instead of when the button is clicked, so cancelling the
10211         close works correctly.
10212         * ComboBox.cs: Send the mouse down to the scrollbar.
10213
10214 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10215
10216         * ListBox.cs: When passing 'null' to SelectedItem,
10217         set SelectedIndex to -1, to unselect items. This is the
10218         observed behaviour in .Net.
10219
10220 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
10221
10222         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
10223           MS flags saying there won't be any. (fixes #78800)
10224         * Control.cs (HandleClick): Made virtual
10225
10226 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
10227
10228         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
10229           cultures. Fixed bug #78399.
10230
10231 2006-08-16  Jackson Harper  <jackson@ximian.com>
10232
10233         * Form.cs: Use the MdiClients MdiChildren property to access
10234         MdiChildren instead of creating the array from the child controls.
10235         * MdiClient.cs: Maintain a separate array of the mdi children, so
10236         that insertion order is maintained when the Z-order is changed.
10237
10238 2006-08-16  Mike Kestner  <mkestner@novell.com> 
10239
10240         * ListView.cs : add an ItemComparer and default to it for sorting.
10241         Fixes #79076, but sorting needs a complete overhaul to be compat with
10242         MS.
10243
10244 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10245
10246         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
10247
10248 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10249
10250         * Hwnd.cs (Mapped): Properly traverse the tree
10251
10252 2006-08-15  Chris Toshok  <toshok@ximian.com>
10253
10254         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
10255         pass manager.Current.GetType() to ParseData.  It has to be the
10256         property type.  So, hold off doing the ParseData until we're in
10257         SetPropertyValue where we know the type.  This fixes the crash in
10258         #78821 but the textbox is still empty.
10259
10260 2006-08-15  Chris Toshok  <toshok@ximian.com>
10261
10262         * DataGrid.cs:
10263         - when we're scrolling, only call Edit() again if the
10264         current cell is still unobscured. Fixes bug #78927.
10265         - when handling mousedown on a cell, ensure the cell is visible
10266         before calling Edit.
10267         - remove the properties from DataGridRow, and remove the
10268         DataGridParentRow class altogether.
10269         
10270
10271 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10272
10273         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
10274           fire OnTextChanged by ourselves. There's no point calling base,
10275           we don't set the base value anywhere else. Fixes #78773.
10276
10277 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10278
10279         * ListBox.cs: Call CollectionChanged when modifying
10280         an item from Items indexer, to update the actual items
10281         in the list box.
10282
10283 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10284
10285         * PrintDialog.cs: Small fixes for focus and a pair of checks,
10286         to match .Net behaviour.
10287
10288 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10289
10290         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
10291
10292 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
10293
10294         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
10295
10296 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
10297
10298         * MessageBox.cs: Prevent potential NRE exception.
10299         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
10300
10301 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10302
10303         * MessageBox.cs: Calculate the owner of a messagebox, also make
10304           it topmost. Fixes #78753
10305
10306 2006-08-14  Chris Toshok  <toshok@ximian.com>
10307
10308         * XplatUIX11.cs: A couple of fixes so that metacity will let us
10309         programmatically move windows.  first, set the PPosition hint as
10310         well as the USPosition hint.  Second include some code from pdb
10311         that sets the window type to NORMAL when we set the transient for
10312         hint.  This is because, in the absence of a window type, metacity
10313         thinks any window with TransientFor set is a dialog, and refuses
10314         to let us move it programmatically.  fascists.
10315
10316 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
10317
10318         * XplatUIX11.cs: When setting normal hints, take into consideration
10319           an different hints previously set so we don't delete them (fixes #78866)
10320
10321 2006-08-12  Chris Toshok  <toshok@ximian.com>
10322
10323         * ToolBarButton.cs: make Layout return a boolean, if something to
10324         do with the button's layout changed.
10325
10326         * ToolBar.cs:
10327         - add another parameter to Redraw, @force, which all existing
10328           calls set to true.
10329         - make the Layout function return a boolean which is true if the
10330           layout has actually changed.  Redraw now uses this (and @force)
10331           to determine when to invalidate.  At present the only place
10332           where @force can be false is the call from OnResize, when
10333           background_image == null.  So, resizing a toolbar when the
10334           layout doesn't change results in no drawing.
10335
10336 2006-08-12  Chris Toshok  <toshok@ximian.com>
10337
10338         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
10339         the VScrollBar and HScrollbar reversed.  oops.
10340
10341         * DataGrid.cs: fix the logic that assigns sizes to the implicit
10342         scrollbars.  we were assigning them twice (once in
10343         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
10344         therefore causing two scrollbar resizes (and redraws?) to happen
10345         per grid resize.
10346
10347 2006-08-12  Chris Toshok  <toshok@ximian.com>
10348
10349         * ToolBarButton.cs: redraw the entire button if the theme tells us
10350         to.
10351
10352         * Theme.cs: add ToolBarInvalidateEntireButton.
10353
10354         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
10355         buttons, just the border.
10356
10357         * ThemeNice.cs: redraw the entire toolbar button since we need to
10358         draw the highlight image.
10359
10360         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
10361         we need to redraw the entire button (not just the border).
10362
10363 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10364
10365         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
10366           for vertical bars. Fixes the mismatches shown by #78513
10367
10368 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
10369
10370         * FileDialog.cs: If a saved/remembered path doesn't exist
10371           anymore, fall back to "Desktop".
10372
10373 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
10374
10375         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
10376           parent. It's apparently legal to not have one
10377         * XplatUIX11.cs:
10378           - SetZOrder: Don't try to set Z-Order on an unmapped window
10379           - CreateWindow: 0,0 are legal coordinates for a window. don't move
10380             it unless the coordinates are negative
10381
10382 2006-08-10  Mike Kestner  <mkestner@novell.com>
10383
10384         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
10385         when setting to null per msdn docs.  Fixes #78854.
10386
10387 2006-08-10  Chris Toshok  <toshok@ximian.com>
10388
10389         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
10390         flickering by setting a clip rectangle on the Graphics when we
10391         need to redraw just a particular menuitem.  Also, rename "OnClick"
10392         to "OnMouseDown" to reflect what it actually is.
10393         
10394         * Form.cs: track the OnMouseDown change.
10395
10396 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
10397
10398         * CommonDialog.cs: Properly inherit the CreateParams from the form
10399           and only change what we need. Fixes #78865
10400
10401 2006-08-10  Chris Toshok  <toshok@ximian.com>
10402
10403         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
10404         flickering in flat mode (and most of the flickering in general) by
10405         only invalidating the button border (and not the entire rectangle)
10406         when the state changes.  A couple of cases still flicker:
10407         ToggleButtons, and the dropdown arrow case when the user mouse
10408         ups.
10409
10410 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
10411
10412         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
10413           for german keyboards. Numlock state shouldn't affect the behaviour
10414           of the Del key. Fixes bug #78291.
10415
10416 2006-08-10  Chris Toshok  <toshok@ximian.com>
10417
10418         * ListControl.cs: remove the items.Clear line from BindDataItems,
10419         as this is the first thing done by both subclasses in their
10420         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
10421         passed -1, refresh the list.  This gets databinding working when
10422         the datasource is set on the list before the datasource is
10423         populated (as in wf-apps/ReportBuilder.)
10424
10425         * ComboBox.cs: remove the argument to BindDataItems.  This call
10426         should really go away, and be initiated by the ListControl code.
10427
10428         * ListBox.cs: same.
10429
10430 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10431
10432         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
10433           if no data is in the document when the control is displayed
10434
10435 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
10436
10437         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
10438           yes (fixes #78806)
10439         * TextControl.cs: 
10440           - PositionCaret: Allow positioning of caret but don't call methods 
10441             requiring a handle if the window isn't created yet
10442           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
10443           - owner_HandleCreated: Don't position the caret, just update it's 
10444             location. User might have already set a different position
10445
10446 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
10447
10448         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
10449           windows. Screws up the returned coordinates for child windows. 
10450           Fixes #78825. I'm hoping this doesn't break something, since the
10451           code was explicitly put in 8 months ago, but no bug was attached.
10452           Menus still seem to work properly.
10453
10454 2006-08-08  Chris Toshok  <toshok@ximian.com>
10455
10456         * DataGrid.cs: make BeginInit/EndInit actually do what they're
10457         supposed to do - delay data binding until the EndInit call.  Also,
10458         make the table style collection's CollectionChangeAction.Refresh
10459         work properly.
10460
10461         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
10462         (with action = Refresh) when a consituent table's MappingName is
10463         changed.
10464
10465 2006-08-08  Chris Toshok  <toshok@ximian.com>
10466
10467         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
10468         Invalidate, since changing the text can change the size of the all
10469         toolbar buttons.
10470
10471 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10472
10473         * Form.cs (AddOwnedForm): Still need to add the form to our listif
10474           we don't have it yet
10475
10476 2006-08-08  Chris Toshok  <toshok@ximian.com>
10477
10478         * PrintControllerWithStatusDialog.cs: don't .Close() the status
10479         dialog, as this causes X errors later on, since we actually
10480         destroy the window.  Instead, .Hide() it.
10481
10482 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
10483
10484         * ComboBox.cs: Added focus reflection for popup window
10485         * XplatUIX11.cs: 
10486           - Removed transient setting for non-app windows for now, not sure it
10487             was needed
10488           - Fixed logic checking if we have captions when deciding 
10489             override_redirect, WS_CAPTION is two bits and a 0 check was not
10490             sufficient
10491           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
10492             complicated
10493         * Form.cs: 
10494           - AddOwnedForm: Don't just add the form to the list, call the property
10495             to ensure the driver is informed about the ownership as well
10496           - CreateHandle: Set the TopMost status in the driver if we have an owner
10497         * XplatUI.cs: Fixed debug statement
10498
10499 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
10500         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10501           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
10502           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
10503           TrackBarRenderer.cs: Make constructor private.
10504         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
10505         * ProfessionalColorTable.cs: Make properties virtual.
10506
10507 2006-08-06  Duncan Mak  <duncan@novell.com>
10508
10509         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
10510         is not changing.
10511
10512 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10513         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
10514           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
10515           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
10516           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
10517           Initial import of new 2.0 classes.
10518
10519 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10520         * Application.cs: Add 2.0 VisualStyles properties.
10521
10522 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
10523         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10524           XplatUIX11.cs: Create property to allow access to existing private
10525           variable "themes_enabled"
10526
10527 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10528
10529         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
10530         file size, as otherwise our class libraries fail using windows. Fixes
10531         bug #78759.
10532
10533 2006-08-04  Jackson Harper  <jackson@ximian.com>
10534
10535         * Form.cs:
10536         * XplatUIX11.cs: Move the toolwindow window manager creation into
10537         the X11 driver, this way on win32 we can let windows create/handle
10538         the toolwindows.
10539
10540 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10541
10542         * PrintDialog.cs: Remove some redundant checks, add some others,
10543         clean some code, and move the focus to the text boxes when the
10544         values are incorrect.
10545
10546 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
10547
10548         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
10549
10550 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10551
10552         * NumericUpDown.cs: Setting the Minimum and Maximum is now
10553           handled correctly. Fixes bug #79001.
10554
10555 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10556
10557         * PrintDialog.cs: The "Copies" numeric up down must have
10558         set the Minimum property to 1; only if the value is bigger
10559         than 1, activate "Collate" check box. This is the behaviour of .Net.
10560         Also modify the Document elements only if it is not null.
10561
10562 2006-08-03  Jackson Harper  <jackson@ximian.com>
10563
10564         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
10565         length. (We have a larger array then actual node count).
10566                 
10567 2006-08-03  Jackson Harper  <jackson@ximian.com>
10568
10569         * ComboBox.cs: Don't show selection by default.
10570         - The SelectAll isn't needed here, since the focus code should do
10571         that
10572         - DDL style lists to manual selection drawing, so when they
10573         get/lose focus they have to invalidate.
10574
10575 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
10576
10577         * TextBoxBase.cs: Don't always show all selections by default.
10578
10579 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
10580         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
10581           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
10582           Fixed various typos.
10583
10584 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
10585
10586         * Control.cs: Removing the controls in a ControlCollection with
10587           Clear now hides the controls as expected. Fixes bug #78804. 
10588
10589 2006-08-03  Jackson Harper  <jackson@ximian.com>
10590
10591         * Control.cs: Revert previous focus patch, it breaks reflector.
10592
10593 2006-08-03  Jackson Harper  <jackson@ximian.com>
10594
10595         * ComboBox.cs: Cleanup selection and focus with the combobox.
10596         This also eliminates some duplicated keyboard code, since now
10597         everything is handled by the main class.
10598         - Make list selection work on mouse up instead of down, to match
10599         MS.
10600
10601 2006-08-02  Jackson Harper  <jackson@ximian.com>
10602
10603         * Control.cs: Setting focus needs to go through the whole
10604         selection mechanism.
10605
10606 2006-08-02  Chris Toshok  <toshok@ximian.com>
10607
10608         * PrintPreviewDialog.cs: change MinimumSize to use
10609         base.MinimumSize so it works.
10610
10611 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
10612
10613         * TextControl.cs:
10614           - UpdateCaret: Added sanity check in case caret isn't defined yet
10615           - Line.Delete: Now updating selection and caret markers if we're
10616             transfering a node (Properly fixes #78323)
10617           - SetSelectionEnd: Added sanity check
10618         * TextBoxBase.cs: Removed broken attempt to fix #78323
10619
10620 2006-08-01  Chris Toshok  <toshok@ximian.com>
10621
10622         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
10623         Close() call is handled in Form, not here.
10624
10625 2006-08-01  Chris Toshok  <toshok@ximian.com>
10626
10627         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
10628         layout/rendering.
10629
10630         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
10631         for sizes < 100% zoom.  The code now aggressively attempts to keep
10632         from calling document.Print (), and tries not to use the scaling
10633         g.DrawImage whenever possible (it still does if you scale to >
10634         100%, since usually that involves huge images).
10635
10636         * PrintPreviewControl.cs: hook up the close button.
10637
10638 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
10639         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
10640           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
10641           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
10642           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
10643           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
10644           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
10645           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
10646           Removed [Serializable] for 2.0 Event Handlers.
10647
10648 2006-07-31  Jackson Harper  <jackson@ximian.com>
10649
10650         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
10651         * TextControl.cs: Uncomment out the body of this method.
10652
10653 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
10654
10655         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
10656           standard cursors.
10657
10658 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10659
10660         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
10661           that embed TextBox and need selections visible even if textbox is not
10662           focused to enforce that behaviour.
10663         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
10664           selection drawing
10665
10666 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10667
10668         * TextControl.cs:
10669           - Added new SetSelectionStart/SetSelectionEnd overloads
10670           - Fixed viewport width assignment to be accurate
10671           - Adjusted alignment line shift calculations to allow cursor on right
10672             aligned lines to be always visible at the right border (like MS)
10673         * TextBoxBase.cs:
10674           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
10675           - TextBoxBase_SizeChanged: recalculating canvas on size changes
10676           - CalculateScrollBars: Use ViewPort size instead of window size, to
10677             properly consider space occupied by the border and scrollbars 
10678             (Fixes #78661)
10679           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
10680             calculations; no longer leaves artifacts
10681           - CaretMoved: Adjusted window scrolling to match MS and fixed several
10682             calculation bugs (Still missing right/center align calculations)
10683
10684 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
10685
10686         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
10687           use of both scroll rect and clip rect, as they do the same.
10688
10689 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
10690
10691         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
10692           in the event handler (fixes #78912)
10693
10694 2006-07-31  Chris Toshok  <toshok@ximian.com>
10695
10696         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
10697         grid.ListManager.Count, since grid.ListManager might be null.
10698         This of course begs the question "why are we drawing rows for a
10699         grid with no list manager (and therefor no rows)?"  Fixes the
10700         crash in bug #78929.
10701
10702 2006-07-31  Chris Toshok  <toshok@ximian.com>
10703
10704         * RelatedPropertyManager.cs: Don't always chain up to the parent
10705         ctor.  instead, call SetDataSource if the parent's position is !=
10706         -1.  Fixes the crash in #78822.
10707
10708 2006-07-31  Chris Toshok  <toshok@ximian.com>
10709
10710         * DataGrid.cs (get_ListManager): use field instead of property
10711         accessors for datasource and datamember.
10712         (RowsCount): make internal again.
10713         (OnMouseDown): end edits before resizing columns/rows.
10714         (OnMouseUp): restart edits after resizing columns/rows.
10715
10716 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
10717
10718         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
10719           This fixes the situation where the last set cursor is displayed
10720           whenever the mouse is over scrollbars.
10721
10722 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10723
10724         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
10725         Document properties, as well as initial values.
10726
10727 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
10728
10729         * XplatUIWin32.cs (SetBorderStyle): Setting both border
10730           and ClientEdge results in a 3-pixel border, which is
10731           wrong.
10732
10733 2006-07-28  Jackson Harper  <jackson@ximian.com>
10734
10735         * TreeNodeCollection.cs: Fix the clear method.
10736         - Fix the Shrink also
10737
10738 2006-07-27  Jackson Harper  <jackson@ximian.com>
10739
10740         * TreeView.cs: Make sure the visible order is computed when we
10741         attempt to size the scrollbars (for trees that mess with the
10742         scrolling when they shouldn't.
10743         - Make sure to give the scrollbars valid values.
10744
10745 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
10746
10747         * XplatUIX11.cs: Move motion compression code to where it
10748           has less performance impact
10749
10750 2006-07-26  Jackson Harper  <jackson@ximian.com>
10751
10752         * UpDownBase.cs: When the control is selected make the child
10753         controls non selectable, so that a click on them won't do a
10754         focus/unfocus cycle.
10755         - Don't give focus to the text box when the spinner is selected.
10756         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
10757
10758 2006-07-26  Chris Toshok  <toshok@ximian.com>
10759
10760         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
10761         satisfied with this solution.  If the bitmaps are small, we should
10762         just cache them in the PrintPreviewDialog and draw them here.
10763         Also, the layout is broken for the 2-up and 3-up cases.
10764
10765         * Theme.cs: add PrintPReviewControlPaint.
10766
10767         * PrintPreviewDialog.cs: first pass implementation.
10768
10769         * PrintPreviewControl.cs: first pass implementation.  No
10770         scrollbars yet.
10771
10772         * PrintDialog.cs: only validate fields if that particular portion
10773         of the UI is enabled.  Also, set the document's controller to a
10774         PrintControllerWithStatusDialog wrapping the document's print
10775         controller.
10776
10777         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
10778         bring up a SaveFileDialog (i hope we don't want to match the
10779         behavior of the crappy windows file entry) and set the
10780         PrinterSettings.PrintFileName accordingly.
10781
10782 2006-07-26  Jackson Harper  <jackson@ximian.com>
10783
10784         * ContainerControl.cs: Add a field that disables auto selecting
10785         the next control in a container when the container is activated.
10786         * UpDownBase.cs: Don't select the text box when the up down is
10787         selected.
10788
10789 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
10790
10791         * XEventQueue.cs: Added methods for peeking (used for compression
10792           of successive events)
10793         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
10794           mouse move events (fixes #78732)
10795
10796 2006-07-25  Jackson Harper  <jackson@ximian.com>
10797
10798         * UpDownBase.cs: Use an internal class for the textbox so that we
10799         can control focus.  the updown control should always have focus,
10800         if either the text area or the buttons are clicked.
10801         - Send the key messages to the textbox, since it never actually
10802         has focus
10803         - Activate and decativate the textbox caret.
10804
10805 2006-07-24  Jackson Harper  <jackson@ximian.com>
10806
10807         * Control.cs: Use the directed select when selecting a control,
10808         this way the container controls override will get called and the
10809         whole ActiveControl chain will get triggered.  TODO: probably need
10810         to make sure this gets done everywhere instead of the old
10811         Select(Control).
10812         * ContainerControl.cs: Implement the directed Select method to
10813         find and activate the correct child control.    
10814         
10815 2006-07-22  Mike Kestner  <mkestner@novell.com>
10816
10817         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
10818         menu handling code so that clicks without a grab work too.
10819         [Fixes #78914]
10820
10821 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
10822
10823         * FileDialog.cs: Enable the BackButton when dirstack has one element.
10824           Added some small optimizations.
10825
10826 2006-07-21  Matt Hargett  <matt@use.net>
10827
10828         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
10829
10830 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
10831
10832         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
10833           tests pass and match MS in some strange border cases.
10834
10835 2006-07-21  Chris Toshok  <toshok@ximian.com>
10836
10837         * ThemeWin32Classic.cs: handle drawing of the relation links and
10838         parent row buttons.
10839
10840         * Theme.cs: change args to DataGridPaintParentRow.
10841
10842         * DataGrid.cs: Don't use controls for the relation links and
10843         parent buttons, so we have to handle all their interactions in
10844         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
10845         when we're navigating through child tables, so we can reinstate
10846         selection, expanded state, current cell, etc.
10847
10848 2006-07-20  Chris Toshok  <toshok@ximian.com>
10849
10850         * ToolBar.cs: When we redraw a button, for whatever reason,
10851         there's no reason to redraw the entire toolbar.  Also, don't call
10852         Control.Refresh from within Redraw, as it's much heavier than
10853         Invalidate (which is really what we want).
10854
10855 2006-07-20  Chris Toshok  <toshok@ximian.com>
10856
10857         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
10858         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
10859         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
10860         traces from within a debug IBindingList datasource
10861         (in mono/winforms/datagrid) for *days*, I've finally gotten things
10862         to work in a similar fashion.
10863
10864 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10865
10866         * ListBox.cs: Don't call Sort () when setting 
10867         the Sorted property to false (avoid an unnecessary sort).
10868
10869 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10870
10871         * ListControl.cs: DataSource should throw an ArgumentException
10872         instead of a normal exception when the argument is not of the 
10873         correct type.
10874
10875 2006-07-20  Mike Kestner  <mkestner@novell.com>
10876
10877         * Control.cs: add InternalPreProcessMessage to allow us to steal
10878         key events before MWF gets its paws on them.  Adapted from a
10879         suggestion by eno.
10880         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
10881         up/down/left/right navigation. Override the new internal control
10882         method to steal the events since they never make it to WndProc.
10883         * ToolBarButton.cs: don't worry about pushed when setting hilight
10884         since the drawing code prefers pushed to hilight. Invalidate on 
10885         Hilight changes. Fixes #78547 and #78525.
10886
10887 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
10888
10889         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
10890           the canvas size. Fixes #78868
10891
10892 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
10893
10894         * Splitter.cs: Track requested split position until first layout
10895           is performed. Fixes #78871
10896
10897 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
10898
10899         * Application.cs: Removed code that forces 1.x for the version
10900           number if the version started with 0. Not sure why that code was
10901           there and I couldn't find any bugs that indicated we needed it.
10902           Fixes #78869
10903
10904 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
10905
10906         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
10907           ResetDefaults(), just write some output to the console until it's
10908           implemented. Fixes bug #78907 for now. Eliminated two warnings.
10909
10910 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
10911
10912         * PropertyGridView.cs: set StartPosition of drop down forms
10913         so they appear in correct initial spot.  Fixes #78190.
10914
10915 2006-07-19  Mike Kestner  <mkestner@novell.com>
10916
10917         * ThemeWin32Classic.cs: use parent background color when drawing
10918         flat toolbars.  Restructure the conditionals to make sure non-flat
10919         non-Divider toolbars are filled too.  Fixes #78837.
10920
10921 2006-07-19  Mike Kestner  <mkestner@novell.com>
10922
10923         * ListBox.cs: Sort on collection changes even if the handle
10924         isn't created yet.  Fixes #78813.
10925
10926 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10927
10928         * ListControl.cs: DisplayMember should never be null,
10929         and now we assign String.Empty when null is passed to it (this
10930         is the .Net way).
10931
10932 2006-07-17  Mike Kestner  <mkestner@novell.com>
10933
10934         * ListViewItem.cs: restructure Font and subitem Font handling 
10935         to hold a specific font and refer back to owner on null.
10936         Fixes #78761.
10937
10938 2006-07-17  Mike Kestner  <mkestner@novell.com>
10939
10940         * ToolBar.cs: bandaid for side-effect of previous patch which was
10941         discarding explicit heights for non-AutoSize toolbars.  Need to
10942         extend my format tester to deal with AutoSize=false. Fixes #78864.
10943
10944 2006-07-15  Jackson Harper  <jackson@ximian.com>
10945
10946         * LabelEditTextBox.cs:
10947         * TreeView.cs: Use a new LabelEdit class for node editing, this
10948         class automatically 'closes' itself when it gets the enter key or
10949         loses focus.
10950         - Use the client rectangle when setting the trees scrollbars, so
10951         border style is taken into account.
10952         
10953 2006-07-14  Jackson Harper  <jackson@ximian.com>
10954
10955         * TreeNode.cs:
10956         * TreeView.cs: Make the editing work similar to MSs, firing the
10957         events correctly and ending edits correctly.
10958
10959 2006-07-14  Mike Kestner  <mkestner@novell.com>
10960
10961         * ToolBarButton.cs:
10962         * ToolBar.cs: layout restructuring and redraw enhancements to support
10963         formatting changes gracefully, like setting TextAlign, ImageList, 
10964         ButtonSize, and Appearance.  Handles explicit button sizing quirks
10965         of the MS controls.  Things like flat toolbars ignoring button size
10966         but becoming constant sized at the largest button's size.  Normal
10967         toolbars with an image set cannot be shrunk smaller than the image,
10968         but text can be clipped/ignored.
10969         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
10970         is zero.  Seems like DrawString should be smart enough to not put
10971         anything on screen though. Also trim labels and ellipsize at the char
10972         boundary, not word.
10973         Fixes #78711 and #78483.
10974
10975 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10976
10977         * FolderBrowserDialog.cs: Disable "New Folder" button and
10978           "New Folder" contextmenu menuitem if a folder like "My Computer"
10979           is selected.
10980
10981 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10982
10983         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
10984         * FolderBrowserDialog.cs:
10985           - Use MWFConfig to store and read size and position settings
10986           - Added code to create a new folder (button or context menu).
10987             Use TreeView labeledit to change the name of the new folder.
10988
10989 2006-07-14  Jackson Harper  <jackson@ximian.com>
10990
10991         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
10992         when the tree is scrolled we end editing.
10993
10994 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10995
10996         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
10997           Down arrows
10998
10999 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
11000
11001         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
11002         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
11003         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
11004         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
11005         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
11006         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
11007         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
11008         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
11009         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
11010         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
11011         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
11012         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
11013         ListViewItemSelectionChangedEventHandler.cs,
11014         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
11015         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
11016         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
11017         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
11018         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
11019         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
11020         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
11021         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
11022         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
11023         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
11024         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
11025         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
11026         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
11027         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
11028         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
11029         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
11030         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
11031         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
11032         WebBrowserNavigatingEventHandler.cs, 
11033         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
11034
11035 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
11036
11037         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
11038         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
11039         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
11040         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
11041         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
11042         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
11043         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
11044         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
11045         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
11046         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
11047         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
11048         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
11049         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
11050         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
11051         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
11052         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
11053         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
11054         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
11055         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
11056         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
11057         ListViewItemStates.cs, MaskFormat.cs: Added
11058
11059 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
11060
11061         * PropertyGridView.cs: Fix keyboard navigation of drop down.
11062         Patch from eno for bug 78558.
11063         
11064 2006-07-13  Jackson Harper  <jackson@ximian.com>
11065
11066         * TreeView.cs: When an edit is finished make sure that the
11067         selected node is visible.
11068         - When setting the top/bottom use the scrollbars is_visible, so
11069         everything will be set correctly even if the tree isn't visible
11070         yet.
11071
11072 2006-07-13  Jackson Harper  <jackson@ximian.com>
11073
11074         * ComboBox.cs: Revert the item->index part of my previous patch.
11075         * TreeView.cs: Use LostFocus instead of Leave for detecting when
11076         the edit box has lost focus (duh).
11077         - Just make the edit box not visible when we get return, that will
11078         take the focus, which will call EndEdit
11079         * TreeNode.cs When we start editing, notify the treeview.
11080
11081 2006-07-12  Jackson Harper  <jackson@ximian.com>
11082
11083         * ComboBox.cs: Clear out old items before setting the item list.
11084         This prevents databound controls from having their items added
11085         twice.
11086         - Switch the combobox to use indices whereever possible instead of
11087         using Item's.  This allows usto navigate through lists that have
11088         more then one item with the same string value (ie a, b, b, a).
11089         - Scroll the listboxes scrollbar when a non visible item is
11090         highlighted
11091         - Allow keypress to cycle through all the possible values. For
11092         example if you have b1, b2, b3 and hold down the B key all the
11093         values will be cycled through.
11094         
11095 2006-07-12  Jackson Harper  <jackson@ximian.com>
11096
11097         * TextBoxBase.cs:
11098         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
11099         this using the internal methods.
11100         * Control.cs: Add OnGotFocusInternal.  A new method that allows
11101         controls to "override" OnGotFocus and change focus behavior if
11102         needed.
11103         - Same thing for LostFocus
11104         * ComboBox.cs: Pass off focus to the text control properly.
11105
11106 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
11107
11108         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
11109         * FolderBrowserDialog.cs: Almost a complete rewrite.
11110           - Better support for Environment.Specialfolders
11111           - Added support for MWFVFS
11112           - Made setting SelectedPath work
11113
11114 2006-07-12  Jackson Harper  <jackson@ximian.com>
11115
11116         * Control.cs: Optimze getting all the controls.
11117
11118 2006-07-11  Jackson Harper  <jackson@ximian.com>
11119
11120         * ContainerControl.cs: Override SETFOCUS in the container control,
11121         so that it is not selected on mouse click.
11122
11123 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
11124
11125         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
11126           Hopefully we will have a better way once all of focus is complete.
11127
11128 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
11129
11130         * ThemeWin32Classic.cs: Commented out some debug code and fixed
11131           a compile error with csc.
11132
11133 2006-07-11  Jackson Harper  <jackson@ximian.com>
11134
11135         * Control.cs: When hiding a control only select the next control
11136         if the current control was focused.
11137         - Don't handle enter/leave when setting/killing focus, this is
11138         done by the container control.
11139         - Remove is_selected, it's not needed anymore.
11140         - Add utility methods for selecting a child control, and for
11141         firing the Enter/Leave events.
11142         * ContainerControl.cs: When a control is activated fire the
11143         enter/leave events.
11144         - Don't wrap when processing the tab key, so that focus can be
11145         moved outside of the container.
11146         - Use the correct active control
11147
11148 2006-07-11  Jackson Harper  <jackson@ximian.com>
11149
11150         * ComboBox.cs: Remove some debug code that was blinding me.
11151         * UpDownBase.cs: These controls actually aren't implicit, they are
11152         visible to the user.
11153
11154 2006-07-10  Chris Toshok  <toshok@ximian.com>
11155
11156         * DataGrid.cs: move back to the is_adding boolean field.  god i
11157         hate this is_editing/is_adding/is_changing stuff.
11158
11159 2006-07-10  Chris Toshok  <toshok@ximian.com>
11160
11161         * DataGridTableStyle.cs: just check if the property type is bool.
11162         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
11163         Don't use CanRenderType.
11164
11165         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
11166         if our text == NullText.  Remove CanRenderType.
11167
11168         * DataGridBoolColumn.cs: nuke CanRenderType.
11169
11170         * DataGrid.cs: reenable some code to end the current edit inside
11171         of set_CurrentCell.  This fixes the other 1.1.16 regression.
11172         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
11173         Also, remove the visible_row_count arg from CalcRowHeaders, since
11174         we don't need to worry about the actual height of the area.
11175
11176 2006-07-10  Chris Toshok  <toshok@ximian.com>
11177
11178         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
11179         mode, just return.
11180
11181         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
11182         the real sense of the IsInEditOrNavigateMode property (true =
11183         navigate, false = edit).  Also, update OnKeyPress to reflect this.
11184
11185         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
11186         column style exists, we still need to set its property descriptor
11187         to match up with our list manager.
11188
11189 2006-07-10  Chris Toshok  <toshok@ximian.com>
11190
11191         * ThemeWin32Classic.cs: implement the new row/header painting
11192         approach.  The parent row painting will likely go away and
11193         replaced with label controls, but the rest seems to work ok (and
11194         efficiently).
11195
11196         * Theme.cs: change the way we draw datagrid rows.  we don't draw
11197         the row headers as a block now.  Instead we draw them in the
11198         normal draw-row loop.  Add some calls for drawing parent rows and
11199         relation rows.
11200
11201         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
11202         a default table style.  Set the defaults from ThemeEngine.Current,
11203         not SystemColors.  Fix lots of misc issues with property setters.
11204
11205         * DataGrid.cs: move loads of style information out of this class
11206         as it's being duplicated with DataGridTableStyle.  keep track of a
11207         special DataGridTableStyle for the properties we used to mirror
11208         here.  Switch all the style properties to access this table style
11209         instead of instance fields of this class.  Also add a internal
11210         class to represent parent rows (more needs to be stored here, like
11211         the selection state from the parent table, as well as the
11212         expansion state.)  Also, for datasources with relations, do the
11213         right thing for collapse/expand, and add support for the
11214         navigation/parent row buttons.
11215
11216         Lastly, fix the crash in the 1.1.16 build.
11217
11218         * GridTableStylesCollection.cs: make the explicit interface
11219         implementations call the class's methods as opposed to duplicating
11220         them.
11221
11222         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
11223         0 so the text doesn't jump around when we move the cursor.
11224
11225 2006-07-10  Jackson Harper  <jackson@ximian.com>
11226
11227         * TextBoxBase.cs:
11228         * ListBox.cs: Match MS's ToString (this makes debugging focus
11229         stuff infinitely easier).
11230
11231 2006-07-10  Jackson Harper  <jackson@ximian.com>
11232
11233         * Control.cs (SelectNextControl): When checking the control's
11234         parent use this instead of ctrl.parent so that null can be passed
11235         to SelectNextControl. (I have unit tests for this).
11236         - Remove unused var.
11237
11238 2006-07-10  Chris Toshok  <toshok@ximian.com>
11239
11240         * CurrencyManager.cs: correct one regression, the removal of the
11241         finalType field.  Also, add a MonoTODO on CanAddRows, implement
11242         Refresh() correctly, and fix some event emission in
11243         ListChangedHandler.
11244
11245 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11246
11247         * FileDialog.cs: Don't use brackets for new folders if they exist
11248           under *nix. Instead use -(number of existing folders +1).
11249
11250 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
11251
11252         * FileDialog.cs:
11253           - Fixed really nasty bug #78771
11254           - Don't block the whole GUI when reading directories with a lot of
11255             entries. Use an other thread instead and call BeginInvoke to
11256             update the ListView in MWFFileView
11257
11258 2006-07-07  Chris Toshok  <toshok@ximian.com>
11259
11260         * Control.cs (Dispose): release any Capture when disposing.
11261
11262 2006-07-07  Chris Toshok  <toshok@ximian.com>
11263
11264         * LinkLabel.cs (Select): if we chain up to the parent, set
11265         focused_index to -1 so we'll search for the first available link
11266         the next time the user tabs into us.  Also, if the direction is
11267         backward and focused_index == -1, start the search from the last
11268         element.
11269
11270 2006-07-07  Chris Toshok  <toshok@ximian.com>
11271
11272         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
11273         is beyond the end of the text, don't do anything.
11274         (CreateLinkPieces): set our ControlStyles.Selectable based on
11275         whether or not we have any links.
11276         (Link.Invalidate): use a loop instead of foreach.
11277         (Link.set_Start): null out owner.sorted_links so it'll be
11278         recreated by CreateLinkPieces.
11279
11280 2006-07-06  Chris Toshok  <toshok@ximian.com>
11281
11282         * LinkLabel.cs: revert the SetStyle change.
11283
11284 2006-07-06  Chris Toshok  <toshok@ximian.com>
11285
11286         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
11287         (OnEnableChanged): s/Refresh/Invalidate
11288         (OnGotFocus): if we have a focused index already, refocus it (so
11289         if we mouse out/in to the window it'll focus the right link).
11290         (OnKeyDown): move the tab handling out of here.
11291         (OnLostFocus): don't set focused_index to -1, so we can refocus it
11292         when we lose focus.
11293         (OnMouseDown): don't Capture here - Control handles it.  Also,
11294         focus the active link.
11295         (OnMouseUp): don't deal with Capture.
11296         (OnPaintBackgroundInternal): remove.
11297         (OnTextAlignChanged): CreateLinkPieces before calling the
11298         superclass's method.
11299         (OnTextChanged): call CreateLinkPieces before calling superclass's
11300         method.
11301         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
11302         move around.
11303         (Select): implement this, moving the selection between different
11304         links, and call parent.SelectNextControl if we don't have another
11305         link to focus in the given direction.
11306         (CreateLinkPieces): call Invalidate instead of Refresh.
11307         
11308 2006-07-06  Chris Toshok  <toshok@ximian.com>
11309
11310         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
11311         new LinkLabel internals.
11312
11313         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
11314         over pieces looking for active/focused/etc links.  also, deal with
11315         runs of text (and links) with embedded \n's in them, and use
11316         MeasureCharacterRanges instead of MeasureString to figure out the
11317         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
11318         two-step.
11319
11320 2006-07-04  Jackson Harper  <jackson@ximian.com>
11321
11322         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
11323         XKB or key auto repeat, do it manually.  Without key auto repeat,
11324         when a key is held down we get key press, key release, key press,
11325         key release, ... with auto repeat we get key press, key press, key
11326         press ..., and then a release when the key is actually released.
11327
11328 2006-07-03  Jackson Harper  <jackson@ximian.com>
11329
11330         * TabControl.cs:
11331         * ThemeWin32Classic.cs: Tabs do not obey normal background color
11332         rules, they are always control color regardless of the background
11333         color.
11334
11335 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
11336
11337         * FileDialog.cs: Added internal class MWFConfig.
11338           Removed Registry support and replaced it with support for the new
11339           MWFConfig class. See MWFConfig comments for more information.
11340
11341 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
11342
11343         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
11344           rectangle. Added some patches from eno from bug #78490 and fixed
11345           the arrow position for small up and down CPDrawScrollButtons.
11346
11347 2006-06-30  Jackson Harper  <jackson@ximian.com>
11348
11349         * InternalWindowManager.cs: Remove some debug code.
11350         * Form.cs: When an MdiParent is set to null, the window is
11351         "detatched" and becomes a normal window.
11352         * MdiClient.cs: Don't bring the new child form to the front until
11353         it is activated (setting it as active does this), this makes the
11354         previously active forms titlebar get redrawn as inactive.
11355
11356 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
11357
11358         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
11359           with later controls
11360
11361 2006-06-29  Mike Kestner  <mkestner@novell.com>
11362
11363         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
11364         arrow in keynav state.  Fixes #78682.
11365
11366 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11367
11368         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
11369           order (fixes #78393)
11370
11371 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
11372
11373         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
11374           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
11375           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
11376           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
11377           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
11378           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
11379           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
11380           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
11381           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
11382           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
11383           enumerations (FlagsAttribute, SerializableAttribute, added/removed
11384           values)
11385
11386 2006-06-28  Mike Kestner  <mkestner@novell.com>
11387
11388         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
11389
11390 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
11391
11392         * PropertyGrid.cs,
11393           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
11394           item lines from other area (It also makes BackColor consistent and
11395           compatible with .NET). Fixed bug #78564.
11396
11397 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
11398
11399         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
11400         Patch from Eno for #78555.
11401
11402 2006-06-27  Chris Toshok  <toshok@ximian.com>
11403
11404         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
11405
11406         * DataGridColumnStyle.cs: same.
11407
11408         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
11409         
11410         * DataGridDrawingLogic.cs: nuke.
11411
11412 2006-06-27  Chris Toshok  <toshok@ximian.com>
11413
11414         * DataGridTableStyle.cs: clean up the constructors, and build the
11415         list of child relations for this table.  I have no idea if this is
11416         where we should be doing it (it probably isn't), but since we're
11417         already iterating over the properties..
11418
11419         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
11420         struct and array for keeping track of row information, similar to
11421         what's shown in a hack on
11422         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
11423
11424         * Theme.cs: be consistent about the naming of DataGrid methods,
11425         prefering ColumnWidths and RowHeights over columnsWidths and
11426         RowsHeights.
11427
11428         * ThemeWin32Classic.cs: same, and also add support for variable
11429         sized rows (and the +/- expansion icons for related rows).
11430
11431 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11432
11433         * TextBoxBase.cs: Applied Eno's patch from #78660
11434
11435 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11436
11437         * Form.cs (ScaleCore): We don't want to scale our form if it's
11438           state is minimized or maximized, but we still need to scale our
11439           child windows. Also, added try/finally block to ensure layout
11440           gets reset (Fixes #78697)
11441
11442 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
11443
11444         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
11445
11446 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
11447
11448         * Form.cs: Fixed c+p error and added check to resize form if minimum
11449           size is bigger than current size (Fixes #78709)
11450
11451 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
11452
11453         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
11454
11455 2006-06-26  Mike Kestner  <mkestner@novell.com>
11456
11457         * ComboBox.cs: only do Keypress handling in the combo when there  
11458         are items in the collection. Fixes #78710.
11459
11460 2006-06-26  Chris Toshok  <toshok@ximian.com>
11461
11462         * Binding.cs: make this work bi-directionally.  also, clear up
11463         other mixups between Push/Pull Data (e.g. we're supposed to pull
11464         data when validating).
11465
11466         * BindingManagerBase.cs: trim some fully qualified collection
11467         types.
11468
11469         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
11470
11471 2006-06-23  Chris Toshok  <toshok@ximian.com>
11472
11473         * PropertyManager.cs: It appears (according to the unit tests)
11474         that PropertyManager doesn't use
11475         PropertyDescriptor.AddValueChanged to track propery value changes
11476         in its datasource, but uses the same scheme as Binding, where it
11477         looks for a <Property>Changed event and binds to it.
11478
11479         Also, according to the docs, IsSuspended always returns false for
11480         a property manager with a non-null datasource.
11481
11482 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
11483
11484         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
11485           need to update the actual DialogResult. (Fixes #78613)
11486
11487 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
11488
11489         * Form.cs (ShowDialog): Release any captures before running the
11490           new message pump (fixes #78680)
11491
11492 2006-06-22  Mike Kestner  <mkestner@novell.com>
11493
11494         * ListView.cs: Layout column widths properly in details mode even 
11495         if HeaderStyle.None is set.  Fixes #78691.
11496
11497 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
11498
11499         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
11500
11501 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
11502
11503         * Control.cs (ContainsFocus): Using new driver method to get focused
11504           window, instead of trying to use internal tracking var, which can
11505           recursion issues (Fixes #78685)
11506         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11507           XplatUIWin32.cs: Added GetFocus method to return focused window
11508
11509 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11510
11511         * ColorDialog.cs: when the mouse button is pressed inside the color
11512         matrix, don't let the cursor move out of it until the button is
11513         released, which is the behavior on windows. Changed 'colours' by
11514         'colors' to use the same word consistently.
11515
11516 2006-06-21  Chris Toshok  <toshok@ximian.com>
11517
11518         * DataGrid.cs: add in some basic navigation stuff (navigating to a
11519         child relation and back, using a stack).  Also, remove
11520         GetDataSource and the code that calls it - it's not needed.  Also,
11521         track CurrencyManager.ListName's removal.
11522
11523 2006-06-21  Chris Toshok  <toshok@ximian.com>
11524
11525         * CurrencyManager.cs: push some of the original type checking from
11526         BindingContext.CreateBindingManager to here, and remove some of
11527         the finalType stuff.  Need more tests to make sure I've got the
11528         ListName part right, and we might need more in SetDataSource.
11529
11530         * PropertyManager.cs: add a ctor that takes just the datasource,
11531         and no property name.  Make SetDataSource work with a null
11532         property_name, and make Current return the data_source if the
11533         property descriptor is null.  this makes 'string foo = "hi";
11534         BindingContext[foo].Current' return "hi" as it should.
11535
11536         * RelatedCurrencyManager.cs: make this code more generic - there's
11537         no reason the parent manager has to be CurrencyManager, and
11538         there's no reason to pass the DataRelation.  It suffices to use a
11539         BindingManagerBase and PropetyDescriptor.
11540
11541         * RelatedPropertyManager.cs: make a similar change here.
11542         
11543         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
11544         flower I knew it could be.
11545
11546 2006-06-20  Chris Toshok  <toshok@ximian.com>
11547
11548         * PropertyManager.cs: the PropertyChangedHandler is invoked when
11549         data in the source has changed and we need to update the control,
11550         so s/PullData/PushData.
11551
11552         * CurrencyManager.cs: Refresh is meant to update the control from
11553         data in the datasource.  So, s/PullData/PushData.
11554
11555         * BindingContext.cs: add more ugliness (we weren't handling the
11556         case where data_source = DataTable and data_member = column_name).
11557
11558         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
11559         from the perspective of the datasource.  PullData pulls from the
11560         control, PushData pushes to the control.
11561
11562 2006-06-20  Chris Toshok  <toshok@ximian.com>
11563
11564         * BindingContext.cs: rewrite the CreateBindingManager code to
11565         handle navigation paths more or less properly.  This could
11566         definitely stand some more work, in particular to push the
11567         recursion up to the toplevel.  But that relies on fixes in other
11568         places (System.Data comes to mind).
11569
11570         Also, move to a flat hashtable (and encode the twolevel nature of
11571         the dictionary into the hash key).  This lets us implement the
11572         IEnumerable.GetEnumerator method.
11573
11574         * RelatedCurrencyManager.cs: new class.  Update our view based on
11575         our relation and our parent CurrencyManager's position.
11576
11577         * CurrencyManager.cs: split out some logic from the ctor into
11578         SetView, so it can be called from the new RelatedCurrencyManager
11579         subclass.
11580
11581         * RelatedPropertyManager.cs: new class.  Update our datasource
11582         based on the position of our parent CurrencyManager.
11583
11584         * PropertyManager.cs: split out some logic from the ctor into
11585         SetDataSource, so it can be called from the new RelatedDataSource
11586         subclass.  Also, make the Current getter return the value
11587         of the PropertyDescriptor, not the data_source.
11588
11589         * Binding.cs: no need to duplicate the string splitting code here.
11590
11591 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11592
11593         * Control.cs:
11594           - set_Enabled: OnEnabledChanged is not called if the inherited state 
11595             of the control is not altered, even though  we might be changing the
11596             internal state of the control (#78458)
11597           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
11598             OnEnabledChanged, to allow easy altering of any child window state
11599           - OnEnabledChanged: Added code to enable/disable driver window state
11600           - OnParentEnabledChanged: Instead of firing the event, call 
11601             OnEnabledChanged, which will fire the event and also a) set driver
11602             window state and pass the enabled state to any grandchildren (#78458)
11603
11604 2006-06-19  Jackson Harper  <jackson@ximian.com>
11605
11606         * InternalWindowManager.cs: We don't set the cursor explicitly
11607         thats done via the response to NCHITTESTs.
11608         - Don't need to adjust for titlebar heights anymore, the
11609         coordinates are coming in the correct coordinates now (see peters
11610         last patch).
11611
11612
11613 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
11614
11615         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
11616           being translated relative to whole window, instead of client window.
11617           That caused broken offsets on mouseclick (and caused gas for our
11618           InternalWindowManager)
11619
11620 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
11621
11622         * TextControl.cs:
11623           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
11624           - Undo(): Added replay of cursor move on DeleteChars action; added
11625             calling Undo() again if a recorded cursor move is invalid (to
11626             ensure that some action is performed on Undo)
11627         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
11628
11629 2006-06-16  Jackson Harper  <jackson@ximian.com>
11630
11631         * MdiClient.cs: Instead of just sizing maximized windows when
11632         there is a resize we also have to adjust the Y of minimized
11633         windows, so they stay pinned to the bottom of the mdi container.
11634         - Eliminate separate tracking of the active control, we can just
11635         get this from the controls collection.
11636         - Paint the decorations for the newly activated titlebar so we get
11637         a pretty blue bar.
11638         * InternalWindowManager.cs:
11639         * ThemeWin32Classic.cs: Minimized windows get all three buttons
11640         even if they are a tool window.
11641         
11642 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
11643
11644         * TextControl.cs (Undo): Handle non-existent cursor locations in the
11645           undo buffer, these can happen when text was deleted and the cursor
11646           was recorded first. Since we will also have a recorded cursor
11647           after the delete this is not an issue. (Fixes #78651)
11648
11649 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
11650
11651         * AccessibleObject.cs: Remove dependence on Control.is_selected;
11652           instead properly track control states internally (allows us to
11653           remove is_selected from Control)
11654
11655 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11656
11657         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
11658         whose width is not a multiple of 8.
11659
11660 2006-06-13  Jackson Harper  <jackson@ximian.com>
11661
11662         * MdiClient.cs:  Only maximize the next child if the current one
11663         is maximized.
11664
11665 2006-06-13  Chris Toshok  <toshok@ximian.com>
11666
11667         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
11668         modified.  Also, guard against grid or grid_drawing being null in
11669         Invalidate.
11670
11671         * DataGrid.cs: Reformat tons of getters/setters.  In the
11672         DataMember setter, just call SetNewDataSource instead of
11673         duplicating some of its functionality.  In SetNewDataSource, don't
11674         check ListManager for null, since the property getter creates the
11675         object if needed.
11676
11677         * DataGridTableStyle.cs: don't set TableStyle or call
11678         SetDataGridInternal on the column here, it's done in
11679         GridColumnStylesCollection.Add.
11680
11681         * GridColumnStylesCollection.cs: fix all the explicit interface
11682         implementations to just call our methods.  Nuke AddInternal() and
11683         move the body of it to Add().  Also, add a call to
11684         column.SetDataGridInternal to Add().
11685
11686         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
11687         base()+duplicate code.  Also, use the Format property instead of
11688         format to generate an Invalidate ala MS.  Lastly, create the
11689         textbox here, unconditionally.
11690         (set_Format): call Invalidate.
11691         (get_TextBox): no need to call EnsureTextBox.
11692         (Commit): remove the message box.
11693         (Edit) remove the call to EnsureTextBox.
11694         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
11695         (EnterNullValue): no need to check textbox for null.
11696         (HideEditBox): no need to check textbox for null.
11697         (SetDataGridInColumn): add the textbox to the grid's controls.
11698         (EnsureTextBox): nuke.
11699         
11700 2006-06-13  Jackson Harper  <jackson@ximian.com>
11701
11702         * MdiWindowManager.cs: Hook up to the maximized menus paint event
11703         and redraw the buttons when needed. Unhook when the window is
11704         unmaximized.
11705         * MainMenu.cs: Add an internal Paint event, the mdi window manager
11706         needs this so that it can redraw its buttons when the menu is
11707         repainted.
11708         * InternalWindowManager.cs:
11709         * Form.cs: The method order has changed for DrawMaximizedButtons,
11710         so that it can be a PaintEventHandler.
11711         
11712 2006-06-13  Jackson Harper  <jackson@ximian.com>
11713
11714         * MdiClient.cs: When we close a maximized mdi window, the next mdi
11715         window is activated and maximized, even if it wasn't before.
11716         - When  a new window is activated repaint the decorations of the
11717         old one, so that it no longer has the Active "look" (the blue
11718         titlebar).
11719         * InternalWindowManager.cs: Open up CreateButtons to base classes
11720         so they can recreate the buttons on state changes.
11721         - If a window is maximized give it all three buttons
11722         * MdiWindowManager.cs: Create the titlebar buttons when the state
11723         is changed, this is needed because a toolwindow will not have all
11724         three buttons until it is maximized.
11725
11726 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
11727
11728         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
11729           Fixed bug #78609.
11730
11731 2006-06-12  Jackson Harper  <jackson@ximian.com>
11732
11733         * KeysConverter.cs: Make sure we handle the Ctrl special case
11734         if its the only key.
11735         
11736 2006-06-12  Jackson Harper  <jackson@ximian.com>
11737
11738         * Theme.cs: Add a method to get the size of a managed window
11739         toolbar button.
11740         * InternalWindowManager.cs: Remove the ButtonSize property, this
11741         should be retrieved from the theme.
11742         * MdiWindowManager.cs: Get the button size from the theme
11743         * ThemeWin32Classic.cs: Make the method to get the managed window
11744         titlebar button size public.
11745         - Handle the different button sizes of maximized toolwindows
11746         (should match any maximized window).
11747         - Get the titlebar height from the theme, not the WM (which gets
11748         it from the theme).
11749
11750 2006-06-12  Jackson Harper  <jackson@ximian.com>
11751
11752         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
11753         event down to the mdi window manager.
11754         - Expose some extra stuff to base classes
11755         - Make sure to end the Capture on an NC Mouse up, so that we can
11756         get double clicks properly, and the sizing doens't stick.
11757         - When doing PointToClient contain it in the workable desktop
11758         area, this prevents windows from changing size when the cursor is
11759         pulled outside of the working area while sizing.
11760         * MdiWindowManager.cs: When we get a double click maximize the
11761         window.
11762         - Reset the cursor after handling mode changes.
11763
11764 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
11765
11766         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
11767           current desktop, instead of just assuming a 0, 0 origin. This
11768           is needed for our internal window manager, to know the top
11769           margin of the desktop
11770
11771 2006-06-12  Chris Toshok  <toshok@ximian.com>
11772
11773         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
11774         we need this to get rid of the selected background in the bool
11775         column.
11776         (CancelEditing): move the ConcedeFocus call to above the Abort
11777         call.  Also, set is_changing to false and invalidate the row
11778         header if we were changing before.
11779         (ProcessKeyPreviewInternal): remove, since noone outside this
11780         class calls it anymore.  Roll the code into ProcessKeyPreview.
11781         (EndEdit): remove the internal version.
11782         (InvalidateCurrentRowHeader): make private.
11783
11784         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
11785         Keys.Escape handling (and with it the last call to
11786         DataGrid.EndEdit from outside the class.)
11787
11788
11789 2006-06-12  Chris Toshok  <toshok@ximian.com>
11790
11791         * DataGridTextBox.cs (.ctor): isedit defaults to false.
11792         (OnKeyPress): set isedit to true.
11793         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
11794         already handled by the grid.
11795
11796         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
11797         right.  ugh.
11798         (set_DataSource): SetDataSource always returns true, so stop
11799         putting it in an if statement.
11800         (EndEdit): get rid of some {}'s
11801         (ProcessGridKey): return true in case Keys.Escape.
11802         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
11803         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
11804         PositionChanged, stopped connecting to CurrentChanged.
11805         (GetDataSource): simplify this a bunch.
11806         (SetDataSource): change return type from bool to void.
11807         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
11808         to this, and make sure we don't set ListManager.Position inside
11809         set_CurrentCell.
11810         (OnListManagerItemChanged): if we're passed an actual index,
11811         redraw that row.
11812
11813         * CurrencyManager.cs (set_Position): don't call PullData here.
11814
11815 2006-06-09  Jackson Harper  <jackson@ximian.com>
11816
11817         * TreeNode.cs:  Recalculate the visible order before doing the
11818         Expand/Collapse Below calls, because those calls generate an
11819         expose.
11820         - Reduce calls to the TreeView property, which is mildly expensive
11821         by using a local var.
11822         * Form.cs: Layout the MDI child windows when creating the parent
11823         form.
11824         - Don't use the internal constructor anymore
11825         * MdiClient.cs: use the parent form width/height (if available)
11826         when laying out the child windows, we do this because the
11827         mdiclient isn't docked yet when the initial layout is done.
11828         - Don't need an internal constructor anymore.
11829
11830 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11831
11832         * FileDialog.cs: handle access errors when trying to create a folder
11833         or changing to a directory. No need to initialize out parameters.
11834
11835 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11836
11837         * FileDialog.cs: Append a number when creating a new folder if the
11838           folder already exists (use parenthesis instead of square brackets)
11839
11840 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11841
11842         * FileDialog.cs:
11843           - Disabled registry support for windows and added better registry
11844             error checking for other systems (need to investigate why it
11845             works perfectly on my system)
11846           - If a folder already exist show an error MessageBox instead of
11847             trying to create an indexed name.
11848           - Fixed a non intentional typo.
11849
11850 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11851
11852         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
11853
11854 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11855
11856         * FileDialog.cs: When creating a new folder don't crash if the
11857           folder already exists.
11858
11859 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11860
11861         * FileDialog.cs: Allmost a complete rewrite.
11862           - added a "virtual" file system that handles the differences
11863             between unix and windows file systems (especially the directory
11864             structure). Moved most of the directory and file handling code
11865             into the vfs.
11866             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
11867             UnixFileSystem and FSEntry.
11868           - Recently used folder/directory, size, location and used file names
11869             (file name ComboBox) are now stored in the registry and get read
11870             before the dialog shows up (fixes part 6 of bug #78446).
11871           - Creation of new folders/directories is now possible (context menu
11872             or ToolBar). Added TextEntryDialog for this that fills in the gap
11873             until ListView.LabelEdit works.
11874           - Fixed cursor handling (bug #78527) and focus handling for
11875             PopupButtonPanel
11876           - Various "Search in" ComboBox enhancements. The content of the
11877             dropdown listbox now almost matches ms.
11878           - Changed the behaviour when the user switches to SpecialFolder
11879             Recent to show the ListView in View.Details.
11880           - Beside using the ToolBar to change the View property of the
11881             file ListView it is now possible to use the context menu too.
11882
11883 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11884
11885         * ComboBox.cs: Don't create a new ObjectCollection when an item
11886           gets inserted. Just insert the item in the existing object_items
11887           ArrayList.
11888
11889 2006-06-08  Jackson Harper  <jackson@ximian.com>
11890
11891         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
11892         that the treeview and root node checks are done also, this fixes a
11893         regression i caused in the unit tests.
11894
11895 2006-06-07  Wade Berrier <wberrier@novell.com> 
11896
11897         * RichTextBox.cs: More ISO8859-1 -> unicode
11898
11899 2006-06-07  Mike Kestner  <mkestner@novell.com>
11900
11901         * ComboBox.cs : use items to hold highlight/selection so that
11902         collection insertions don't require synchronization.
11903
11904 2006-06-07  Jackson Harper  <jackson@ximian.com>
11905
11906         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
11907         routine.  We now always keep the sized edge at the cursor instead
11908         of computing movement and adjusting rects.  There is one buglet
11909         with this method though when the cursor is moved over area that
11910         the window can not expand too (such as the toolbars on the desktop).
11911
11912 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11913
11914         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
11915         here. Fixes crash on startup in AlbumSurfer.
11916
11917 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
11918
11919         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
11920           values
11921
11922 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11923
11924         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
11925         statement to avoid calling XNextEvent which will block if another thread
11926         took the event that we were expecting. Fixes bug #78605.
11927
11928 2006-06-07  Mike Kestner  <mkestner@novell.com>
11929
11930         * ListView.cs : isolated checkbox clicking from the selection logic.
11931         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
11932
11933 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11934
11935         * Form.cs: Check that the value passed to Form.DialogResult
11936         is a valid enum value.
11937
11938 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11939
11940         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
11941         Computer'. Clicking it in the network view goes to 'My Computer'.
11942         Added CIFS filesystem type. Display the mount point of filesystems.
11943         Avoid duplicate mount points (happens for me with CIFS);
11944
11945 2006-06-06  Jackson Harper  <jackson@ximian.com>
11946
11947         * InternalWindowManager.cs: Draw the maximized windows buttons
11948         when resizing.
11949
11950 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11951
11952         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
11953         all other dialogs. Fixes bug #78585.
11954
11955 2006-06-06  Mike Kestner  <mkestner@novell.com>
11956
11957         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
11958         Only invalidate checkbox on checkstate changes to avoid flicker.
11959         * ListBox.cs : avoid unselect/select when clicking selected item.
11960         avoid reselection flicker for already multiselected items.
11961         Fixes #78382.
11962
11963 2006-06-06  Jackson Harper  <jackson@ximian.com>
11964
11965         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
11966         the parent form so that the menu is removed if needed.
11967
11968 2006-06-06  Mike Kestner  <mkestner@novell.com>
11969
11970         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
11971         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
11972
11973 2006-06-06  Mike Kestner  <mkestner@novell.com>
11974
11975         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
11976
11977
11978 2006-06-06  Jackson Harper  <jackson@ximian.com>
11979
11980         * Control.cs: Use the property (instead of the field) to get the
11981         default cursor so it is instantiated correctly.
11982         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
11983         resizes so we need to manually repaint the window decorations here.
11984         - Set the titlebar button locations as soon as they are created,
11985         otherwise they are not set correctly on win32.
11986         
11987 2006-06-06  Chris Toshok  <toshok@ximian.com>
11988
11989         * CurrencyManager.cs (set_Position): call PullData before
11990         OnCurrentChanged.
11991         (AddNew): after calling IBindingList.AddNew, update our
11992         listposition, and call OnCurrentChanged/OnPositionChanged (without
11993         calling PullData).
11994         (OnCurrentChanged): remove the call to PullData from here.
11995         (OnItemChanged): remove the call to PushData from here.
11996         (OnPositionChanged): change the test from == null to != null to
11997         match the other methods.
11998         (ListChangedHandler): the grossest part of the patch.  Implement
11999         this such that it passes the unit tests in CurrencyManagerTest and
12000         the output more or less matches that of MS's implementation.
12001  
12002 2006-06-06  Mike Kestner  <mkestner@novell.com>
12003
12004         * ListView.cs : only update check state on single click.
12005         * ThemeWin32Classic.cs : fix focus drawing for details view without
12006         fullrowselect.  Fixes #78454.
12007         * XplatUIX11.cs : fix for double click emission.
12008
12009 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
12010
12011         * PropertyGridView.cs : Applied Atsushi's patch to fix
12012         font dialog bug  (#78197).
12013
12014 2006-06-05  Jackson Harper  <jackson@ximian.com>
12015
12016         * TreeNode.cs: Compute the next node for expanding/collapsing
12017         correctly. We now factor in nodes without a NextNode
12018         correctly. (Fixes somes cases in nunit-gui).
12019         * InternalWindowManager.cs: Set the bounds when updating the
12020         virtual position of a tool window.
12021         
12022 2006-06-05  Chris Toshok  <toshok@ximian.com>
12023
12024         * DataGrid.cs: rename cached_currencymgr to list_manager.
12025         (set_CurrentCell): move SetCurrentCell code here, and clean it up
12026         some.
12027         (CurrentRow, CurrentColumn): single accessors so we can make the
12028         cursor movement code a lot easier to understand.
12029         (CurrentRowIndex): implement this in terms of CurrentRow.
12030         (BeginEdit): clean this up a bit.
12031         (CancelEditing): sort out the is_editing/is_changing/is_adding
12032         stuff a little.
12033         (EndEdit): minor changes.
12034         (OnKeyDown): add a comment about a (most likely) unnecessary
12035         check.
12036         (OnMouseDown): cancel editing when we click on a row header.  And
12037         use the CurrentRow setter, not CurrentCell.
12038         (ProcessDialogKey): directly call ProcessGridKey.
12039         (UpdateSelectionAfterCursorMove): factor out this common block of
12040         code (it's used everywhere that we move the cursor by updating row
12041         or column).
12042         (ProcessGridKey): pretty substantial overhaul.  Use the
12043         CurrentRow/CurrentColumn properties to make the code a lot more
12044         readable.  Only use the CurrentCell property when we have to
12045         modify both row and column at once.  Tab behavior is still broken,
12046         and Delete is untested.
12047         (Select): if we have no selected rows, set selection_start to
12048         @row.
12049         (EditCurrentCell): rename EditCell this.  It was only ever invoked
12050         with CurrentCell as the arg, so drop the arg and rename it.
12051
12052         * DataGridColumnStyle.cs: clean up the constructors a little, and
12053         drop CommonConstructor().
12054
12055         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
12056         actually get notified when the user hits it.
12057         (ProcessKeyMessage): *substantially* simplify this method.
12058         There's no reason (that I can see) for the textbox to be making
12059         calls into the datagrid at all.  Remove all of them but the ones
12060         for Enter handling.  those will take some more work.
12061
12062         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
12063         calling HideEditBox.
12064         (HideEditBox): if we have an active textbox, render it invisible
12065         without causing a re-layout of the datagrid.
12066
12067 2006-06-05  Mike Kestner  <mkestner@novell.com>
12068
12069         * ListView.cs : fix NRE crasher when focuseditem is cleared by
12070         collection changes by resetting it to Items[0].  Fixes #78587.
12071
12072 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12073
12074         * MessageBox.cs: if the height of the text is larger than the icon_size,
12075         use that. Fixes bug #78575.
12076
12077 2006-06-05  Jackson Harper  <jackson@ximian.com>
12078
12079         * TreeView.cs: Fix line drawing when scrolling.  To do this each
12080         node is basically responsible for drawing its entire horizontal
12081         area.  When drawing a node it draws its parent node lines if
12082         needed.
12083         - Adjust the clip area to the viewport rectangle
12084         - Fix Left/Right key handling to match MS. (It expand/collapses
12085         and moves to parents/first child but does not move selection to
12086         sibling nodes).
12087         - Fix SetTop to work with new bound calculation code
12088         - When scrollbars are no longer needed we need to reset scrolling
12089         vars and recalculate the visible order so the redraw is correct
12090         * TreeNode.cs: We can't expand/collapse nodes with no children.
12091
12092 2006-06-03  John Luke  <john.luke@gmail.com> 
12093
12094         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
12095         so the colors work without dev packages
12096         
12097 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
12098
12099         * Control.cs 
12100           - Select: Implemented to just use activate. Seems to match MS 
12101             behaviour closest. Documented to only do actual control walking 
12102             based on it's parameters if in a container control so I moved 
12103             the code there.
12104           - Removed selection check logic from our internal Select() method
12105         * ContainerControl.cs:
12106           - Select: Moved selection logic from Control here, since MS documents
12107             that containers obey the bool arguments. No longer calling base
12108
12109 2006-06-02  Jackson Harper  <jackson@ximian.com>
12110
12111         * TreeView.cs: If the selected node isn't changed when we get
12112         focus update the previously selected node so that we see the
12113         selection box.
12114
12115 2006-06-02  Mike Kestner  <mkestner@novell.com>
12116
12117         * ComboBox.cs: restructure grab and general mouse event handling.
12118         Make the composite control raise mouse events like it was a single
12119         control for leaves/enters/motion/up/down events.  fix dropdown list
12120         coordinate mangling and refactor it into the scrollbar subclass to
12121         reduce code duplication.  Fixes #78282 #78361 and #78457.
12122
12123 2006-06-02  Mike Kestner  <mkestner@novell.com>
12124
12125         * ScrollBar.cs: remove Capture setting/clearing, as it happens
12126         automatically in the Control.WndProc.
12127
12128 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12129
12130         * FileDialog.cs: fix crash when running SharpChess, which sets the
12131         FilterIndex to 2 with only one Filter.
12132
12133 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12134
12135         * ToolBar.cs: add SizeSpecified property.
12136         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
12137         try to figure out our real size, otherwise fallback to what the
12138         container says.
12139
12140 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12141
12142         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
12143         * Control.cs (WndProc): MS always calls the DefWndProc to pass
12144           up the event
12145
12146 2006-06-01  Mike Kestner  <mkestner@novell.com>
12147
12148         * ListView.cs: revamp the focus management in ListView.  It still
12149         causes churn of LostFocus/GotFocus emissions on clicks, but it's
12150         better than not handling focus at all.  Will revisit when pdb feels
12151         the general focus handling is solid.  Fixes #78526.
12152
12153 2006-06-01  Jackson Harper  <jackson@ximian.com>
12154
12155         * TreeView.cs: Set the default border style in the constructor.
12156         - Move painting to use OnPaintInternal instead of capturing
12157         WM_PAINT, this is the correct way of doing things
12158         - UpdateBelow shouldn't invalidate the scrollbar area
12159         - Cap the top on update below in case the node was above the top
12160         of the viewport rectangle.
12161         - ExpandBelow and Collapse below need to obey Begin/End Update.
12162         * TreeNode.cs: Make is_expanded internal so the treenode
12163         collection can change it without firing the whole event chain.
12164         * TreeNodeCollection.cs: When clearing all the child nodes make
12165         sure to recalc the visible order.
12166         - Improve algo for remove the top node
12167
12168 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
12169
12170         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
12171           SendMessage directly calling window procedures, which in turn might
12172           call SetFocus()
12173
12174 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
12175
12176         * Control.cs: Don't handle WM_SETFOCUS if the same window already
12177           has focus (works around X11 sending a FocusIn after our SetFocus)
12178         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
12179
12180 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
12181
12182         * Mime.cs: Fix for the NET_2_0 build.
12183           NameValueCollection needs StringComparer now.
12184
12185 2006-05-31  Chris Toshok  <toshok@ximian.com>
12186
12187         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
12188         return (via an out parameter) the starting X of the column.
12189         (UpdateVisibleColumn): track change to FromPixelToColumn.
12190         (HitTest): add a ColumnResize case here.
12191         (DrawResizeLine): new function, probably poorly named.
12192
12193         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
12194         only need to keep one reference.
12195         (set_ListManager): same.
12196         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
12197         Also, add support for HitTestType.ColumnResize.
12198         (OnMouseMove): add column resize behavior here, and change the
12199         cursor to the correct one as we move around the datagrid.
12200         (OnMouseUp): terminate the column resize if we're resizing.
12201         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
12202         for the current cell.
12203         (ConnectListManagerEvents): use cached_currencymgr.
12204         (DisconnectListManagerEvents): fill this in, using
12205         cached_currencymgr.
12206         (SetCurrentCell): remove cached_currencymgr_events handling.
12207         (SetDataMember): only call DisconnectListManagerEvents if
12208         cached_currencymgr is != null.
12209         (SetDataSource): same.
12210         (OnListManagerCurrentChanged): cached_currencymgr_events ->
12211         cached_currencymgr.
12212
12213 2006-05-31  Jackson Harper  <jackson@ximian.com>
12214
12215         * BindingManagerBase.cs: Remove somedebug code that creeped into
12216         SVN.
12217         * TreeNode.cs: We get the indent level dynamically right now, so
12218         don't track it as a member.
12219         * TreeNodeCollection.cs: Make sure all nodes added to the list
12220         have parents, treeviews/topnodes setup properly.
12221         - Don't attempt to track indent level.
12222
12223 2006-05-30  Jackson Harper  <jackson@ximian.com>
12224
12225         * BindingContext.cs: Create the currency manager tables here.
12226         This allows us to more easily create null tables (when bad data
12227         members are used), and more easily create related currency
12228         managers.
12229         * CurrencyManager.cs: All the table creation stuff is done by the
12230         binding context now.
12231         - Current should throw an exception if listposition is -1.
12232         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
12233         been bound yet.
12234
12235 2006-05-30  Mike Kestner  <mkestner@novell.com>
12236
12237         * ListView.cs: allow reexpansion of zero-width column headers.
12238         Fixes #78528.
12239
12240 2006-05-28  Chris Toshok  <toshok@ximian.com>
12241
12242         * CurrencyManager.cs (get_Current): after the late binding
12243         listposition = -1 fix, we need to guard against it here and return
12244         null, otherwise we raise an exception (which is swallowed
12245         elsewhere, and breaks datagrid databinding.)
12246
12247 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12248
12249         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
12250           than WM_SYSKEY, don't throw if get something unexpected (#78507)
12251
12252 2006-05-26  Jackson Harper  <jackson@ximian.com>
12253
12254         * ControlPaint.cs:
12255         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
12256         values, it's faster and it's all we care about (we don't care if
12257         the names aren't equal).
12258         * KeyboardLayouts.cs: Eliminate some dead code.
12259         - Lazy init things
12260         * X11Keyboard.cs: Lazy init keyboard detection.
12261         - Cleanup access modifiers a little.
12262
12263 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
12264
12265         * XplatUIX11.cs: Once again, attempting to get layout just right.
12266
12267 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
12268
12269         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
12270           the sizes of each link section, that will result in sizes that
12271           match DrawString's layout (Fixes #78391)
12272
12273 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
12274
12275         * FileDialog.cs: If AddExtension property is true autocomplete the
12276           extensions in SaveFileDialog correctly. Fixes bug #78453.
12277           Set MyNetwork and MyComputer to "C:\" for windows. This should
12278           fix part 8 of bug #78446 for now.
12279
12280 2006-05-26  Chris Toshok  <toshok@ximian.com>
12281
12282         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
12283         invalidate the current row header if we need to, but presumably
12284         we'll invalidate the row corrsponding to the bounds or
12285         editingControl.
12286         (GridHScrolled): switch back to this method, as it's part of the
12287         public api.  *sigh*.
12288         (GridVScrolled): same.
12289         (OnMouseWheel): hack up something that more or less works.  Call
12290         GridHScrolled/GridVScrolled directly, instead of duplicating much
12291         of their code here.
12292         (EnsureCellVisibility): reinstate a bunch of this code, since we
12293         can't just set the scrollbar Value and expect to do all the work
12294         in the ValueChanged handler.  Also, Call Update() after scrolling
12295         in one direction so the other XplatX11.ScrollWindow call has the
12296         proper stuff in the proper places.
12297         (EditCell): set is_editing to true before calling .Edit.
12298
12299         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
12300         don't bother comparing first.
12301         (OnKeyPress): call grid.ColumnStartedEditing before calling
12302         base.OnKeyPress.  this will set is_changing and invalidate the row
12303         header if necessary.
12304         (ProcessKeyMessage): for WM_CHAR messages, call
12305         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
12306         and WM_KEYDOWN.
12307         
12308         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
12309         it's done in the DataGrid.
12310         (NextState): call grid.ColumnStartedEditing, which takes care of
12311         invalidating the row header (and setting is_changing).
12312
12313         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
12314         here.  it's done in the DataGrid.
12315
12316 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12317
12318         * Control.cs: allow changing the cursor when the mouse position is
12319         out of bounds but Capture is set.
12320         * LinkLabel.cs: handle the case when the mouse button is pressed on the
12321         linklabel but released somewhere else.
12322
12323 2006-05-25  Jackson Harper  <jackson@ximian.com>
12324
12325         * TreeView.cs: When we get focus if there is no selected node make
12326         it the top node
12327         - Remove some uneeded setup code from Draw.
12328         * TreeNodeCollection.cs: If the tree doesn't have a top node when
12329         a new node is inserted make the new node the top.
12330         * XplatUIX11.cs:
12331         * Timer.cs: Use Utc time so that no local time zone stuff needs to
12332         be used (should be faster).
12333         
12334 2006-05-25  Chris Toshok  <toshok@ximian.com>
12335
12336         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
12337         problem with the last commit.
12338
12339 2006-05-25  Chris Toshok  <toshok@ximian.com>
12340
12341         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
12342         need the invalidate call here, while scrolling right-to-left via
12343         the left arrow key (i.e. moving the editing cell while scrolling).
12344
12345         * DataGrid.cs (.ctor): remove the initialization of
12346         ctrl_pressed/shift_pressed.  We no longer track them using key
12347         up/down handlers, but by using Control.ModifierKeys.  Also, switch
12348         to using ValueChanged handlers on the scrollbars instead of
12349         Scrolled event handlers.  This simplifies a bunch of the scrolling
12350         code.
12351         (GridHValueChanged): rename from GridHScrolled, and change it to
12352         work with the new event args.
12353         (GridVValueChanged): same.
12354         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
12355         (OnMouseWheel): actually scroll the datagrid.  Don't change the
12356         selected cell.
12357         (ProcessGridKey): correct all the keyboard navigation stuff I
12358         could find.  Ctrl up/down/left/right/home/end work now.
12359         (EnsureCellVisibility): correct method name spelling.  Also,
12360         simplify this a touch by not explicitly calling the
12361         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
12362         scrollbar value.
12363         (OnKeyUpDG): no need for this method now.
12364         
12365 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12366
12367         * LinkLabel.cs: display the OverrideCursor when hovering the label.
12368         Fixes bug #78392.
12369
12370 2006-05-25  Chris Toshok  <toshok@ximian.com>
12371
12372         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
12373         r61019.
12374
12375 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12376
12377         * Application.cs: Moved setting of is_modal and closing to before
12378           we create the control, to allow the event handlers called as a
12379           result of creation affect closing. Also removed Gonzalo's previous
12380           change to setting DialogResult, the behaviour has been moved to 
12381           Form.ShowDialog()
12382         * Form.cs: 
12383           - ShowDialog(): Removed explicit creation of the form, let RunLoop
12384             handle it instead
12385           - ShowDialog(): If no dialog result is set, we need to return Cancel
12386           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
12387             the close is cancelled
12388
12389 2006-05-25  Jackson Harper  <jackson@ximian.com>
12390
12391         * StatusBar.cs: We only need to update the sizes of the other
12392         panels when we have auto size contents.  Also we are only updating
12393         the contents of the panel, not the borders, so compensate for the
12394         border width (TODO: get this width from the theme somehow).
12395         * TreeView.cs: Scrollable is true by default
12396         - Use invalidate instead of refresh where needed
12397         - Factor the scrollable value into scrollbar updating
12398         - Update the scrollbars if the Scrollable property is altered
12399         - Update the selected node if its ImageIndex is changed
12400         - Handle null nodes in UpdateNode (mainly so we don't have to
12401         check if selected is null when updating it
12402         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
12403         are factored into the visible count
12404         - Use VisibleCount for clarity in the code
12405         - When the font is changed we need to recurse through all the
12406         nodes and invalidate their sizes
12407         
12408 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12409
12410         * Application.cs: set the DialogResult to fixed when the main form is
12411         hidden or destroyed while being modal.
12412
12413 2006-05-25  Miguel de Icaza  <miguel@novell.com>
12414
12415         * Theme.cs: Use Tangoified messagebox icons. 
12416
12417         (GetSizedResourceImage): Also cope with width = 0 and do not
12418         trigger a warning in that case (0 means "give me your icon from
12419         the resouce, no special size needed).
12420
12421 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
12422
12423         * Application.cs: Leave runloop if the the main modal form is 
12424           hidden (fixes #78484)
12425
12426 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12427
12428         * BindingContext.cs : reject null datasource in Contains() and
12429           Item[].
12430         * CurrencyManager.cs : check data_member validity when data_source
12431           is dataset. When it is late binding, the initial position is -1.
12432
12433 2006-05-24  Jackson Harper  <jackson@ximian.com>
12434
12435         * TreeNodeCollection.cs: Dont't recalculate the visible order on
12436         inserted nodes that aren't visible.  This changes the
12437         max_visible_order which confuses scrollbar settings.
12438         - Use the enumerator to get the prev node instead of duplicating
12439         code.
12440         * TreeView.cs: Use new method for setting scrollbar values
12441         - Don't set the bounds every time the scrollbar is updated
12442         - When updating below the root node use an invalidate instead of a
12443         refresh to prevent the child controls (scrollbars) from being
12444         refreshed. (UpdateBelow still needs to be reworked anyways).
12445         - Reenable SetBottom now that visible orders are set correctly,
12446         added some debug code incase we ever get bad values there again.
12447         - Set the scrollbar max to 2 less then the max value, this
12448         compensates for the max value being one above the node count, and
12449         for scrollbars adding one extra "notch".
12450         - When drawing image nodes if there is an imagelist we draw the
12451         first image in the list if the supplied image index is out of the
12452         image list's bounds.
12453         
12454 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12455
12456         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
12457           we receive a size change from the WM (Fixes #78503)
12458
12459 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
12460
12461         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
12462           rectangle (Fixes #78501)
12463
12464 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
12465
12466         * ButtonBase.cs: 
12467           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
12468             as a bitfield.
12469           - Fixed MouseMove to no longer switch pressed state unless the left
12470             mouse button is pressed. Atsushi provided the original patch (#78485)
12471           
12472 2006-05-24  Jackson Harper  <jackson@ximian.com>
12473
12474         * ScrollBar.cs: New internal methods that allow us to change a
12475         couple values on the scrollbar (the most common case is maximum
12476         and large change) without getting multiple invalidates.
12477
12478 2006-05-24  Chris Toshok  <toshok@ximian.com>
12479
12480         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
12481         (Edit): save off the original state in oldState, and set
12482         grid.is_editing to true.
12483         (OnKeyDown): abort editing if escape is pressed.  also, call
12484         NextState if space is pressed.
12485         (OnMouseDown): call NextState.
12486         (NextState): factor out shared code from OnKeyDown and OnMouseDown
12487         here.  Also, only invalidate the row header once (on the initial
12488         is_changing switch) to save on redraws.
12489
12490 2006-05-24  Chris Toshok  <toshok@ximian.com>
12491
12492         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
12493         if the value in the cell is different than it was before.  This
12494         keeps us from triggering a layout when we move around a datarid
12495         with a highlighted cell.
12496         (Edit): suspend layout when creating/positining the text box, and
12497         resume passing false so we don't ever actually re-layout.
12498         (ReleaseHostedControl): same.
12499         (EnsureTextBox): reformat slightly, and set WordWrap to false.
12500
12501         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
12502         control-key sequences should go to the datagrid - remove that
12503         lock.  Also, modify the conditions under which we move between
12504         cells when moving the cursor within a cell, and remove the "this"
12505         and "base" from field accesses.  We weren't even consistent, given
12506         they all were in the base class.
12507
12508 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
12509
12510         * Binding.cs : (.ctor)
12511           An obvious NRE fix for BindingTest.CtorNullTest().
12512
12513 2006-05-23  Chris Toshok  <toshok@ximian.com>
12514
12515         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
12516         them between lines.  This fixes some quirks editing cells in the
12517         datagrid.
12518
12519 2006-05-23  Jackson Harper  <jackson@ximian.com>
12520
12521         * TreeView.cs: Use begin/end update when doing expand/collapse all
12522         so that we don't get flicker on the scrollbar.
12523
12524 2006-05-23  Jackson Harper  <jackson@ximian.com>
12525
12526         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
12527         treenode calculations to be independant of the painting code. To
12528         do this nodes track a visible order which is calculated by the
12529         treeview.
12530         - Call new methods for expanding/collapsing nodes.  These methods
12531         use scrollwindow so we don't have to update everything below the
12532         node.
12533         * TreeView.cs: Refactored drawing and scrolling code.  We don't
12534         need to update nodes when drawing anymore or calculate scrollbar
12535         stuff.
12536         - Added new methods for expanding/collapsing nodes. These methods
12537         use ScrollWindow so as to not have to redraw all the nodes below.
12538         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
12539         we add/remove nodes or sort.
12540         - Handle removing the selected and the top node properly.
12541
12542 2006-05-23  Chris Toshok  <toshok@ximian.com>
12543
12544         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
12545         maybe this should actually happen in the datagrid code?
12546         (EndEdit): no need to invalidate anything, given that
12547         ReleaseHostedControl causes the datagrid to relayout, which
12548         invalidates everything anyway.
12549
12550         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
12551         in SetCurrentCell).
12552         (set_SelectionBackColor): call InvalidateSelection instead of
12553         Refresh.
12554         (set_SelectionForeColor): same.
12555         (BeginEdit): Flesh this out a bit.
12556         (CancelEditing): only do any of this if we're editing/adding.
12557         (EndEdit): same.
12558         (OnMouseDown): there's no need to cancel editing here, it's done
12559         in SetCurrentCell.
12560         (SetCurrentCell): only invalidate the current row header if it's a
12561         different row than the new one.
12562         (ShiftSelection): fix this to work like MS does.
12563         (ResetSelection): factor out the invalidation of selected_rows to
12564         InvalidateSelection.
12565         (SetDataSource): cancel any editing that's going on.
12566
12567         * DataGridColumnStyle.cs
12568         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
12569         call the non-interface version.
12570
12571         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
12572         header rectangle with the clip rectangle so we don't redraw the
12573         entire header for just a small area.  Gets rid of the last flicker
12574         when horizontally scrolling.
12575         (DataGridPaintRow): same.
12576
12577 2006-05-23  Mike Kestner  <mkestner@novell.com>
12578
12579         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
12580         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
12581         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
12582         Critical bug report.
12583
12584 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12585
12586         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
12587           and this fixes #78493
12588
12589 2006-05-23  Miguel de Icaza  <miguel@novell.com>
12590
12591         * Theme.cs (GetSizedResourceImage): Scale images if the proper
12592         size is not found.  
12593         
12594         * FileDialog.cs: Do not change the background for the side bar as
12595         it wont work nicely with the theme, and also reduces the artifacts
12596         in rendering the icons (which I want to fix too).
12597
12598         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
12599         resources, not resgen resources. 
12600
12601         (PlatformDefaultHandler): Pull images using the new API.
12602
12603 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
12604
12605         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
12606           a reference to the hwnd and will not remove it unless there are
12607           no pending exposures (fixes #78341)
12608         * XplatUI.cs: Improved debug
12609
12610 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
12611
12612         * MenuAPI.cs : don't handle OnClick event when it was not the left
12613           button. Fixed bug #78487.
12614
12615 2006-05-23  Mike Kestner  <mkestner@novell.com>
12616
12617         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
12618         prefer submenus to the top menu for item lookup, to avoid popping down
12619         top-row items.
12620
12621 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
12622
12623         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
12624           Graphics.FillRectangle as the visual results are really bad (even
12625           on win). We now draw perfect arrows (and perfect shadows when the
12626           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
12627           Pen.DashPattern to draw the dots of each line.
12628
12629 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
12630
12631         * FileDialog.cs: Update the filename combobox when navigating through
12632           the ListView with the cursor keys. Fixes part 7 of bug #78446.
12633
12634 2006-05-22  Mike Kestner  <mkestner@novell.com>
12635
12636         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
12637         Fixes #78463.
12638
12639 2006-05-22  Mike Kestner  <mkestner@novell.com>
12640
12641         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
12642         requests. Fix a misspelled parameter and a copy paste exception error
12643         in Select.
12644
12645 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
12646
12647         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
12648           to get the same width/height (5/13) on X11 as the default font has on
12649           win32. This means that our DefaultFont emSize is smaller than the 
12650           the MS SWF equivalent (even thought the width/height stays the same)
12651
12652 2006-05-20  Jackson Harper  <jackson@ximian.com>
12653
12654         * MdiClient.cs:
12655         * MdiWindowManager.cs:
12656         * InternalWindowManager.cs: Make sure to use the border width from
12657         the theme.
12658
12659 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
12660
12661         * PrintDialog.cs: Implements printer details
12662
12663 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
12664
12665         * FileDialog.cs: Added focus handling for PopupButtonPanel.
12666           Fixes part 1 and 2 of bug #78446
12667
12668 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
12669
12670         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
12671           instead of sticking to the first ever calculated value
12672
12673 2006-05-19  Mike Kestner  <mkestner@novell.com>
12674
12675         * ComboBox.cs: fix mouse motion selection to use MousePosition and
12676         PointToClient, since Capture is set. Fixes #78344.
12677
12678 2006-05-19  Mike Kestner  <mkestner@novell.com>
12679
12680         * ListView.cs: match MS behavior in Details view where items are not
12681         drawn if Columns.Count == 0. 
12682         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
12683         Use a separate pen to draw the check, since changing the width affects
12684         the box as well.  Fixes #78454.
12685
12686 2006-05-18  Miguel de Icaza  <miguel@novell.com>
12687
12688         * ListView.cs: ArgumentOutOfRangeException, single versions of the
12689         exception should throw the name of the invalid argument.
12690
12691         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
12692         there are no files listed. 
12693
12694 2006-05-18  Jackson Harper  <jackson@ximian.com>
12695
12696         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
12697         up.
12698
12699 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
12700
12701         * Control.cs: Brought back our old UpdateZOrder method as a private
12702           function and switched our calls from UpdateZOrder to the new one.
12703           This fixes the Paint.Net canvas disappearing bug.
12704
12705 2006-05-18  Jackson Harper  <jackson@ximian.com>
12706
12707         * Theme.cs:
12708         * ThemeWin32Classic.cs:
12709         * InternalWindowManager.cs: Move the drawing into the theme,
12710         expose everything the theme should need from the window manager.
12711
12712 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
12713
12714         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
12715           from the call to NativeWindow to avoid walking up the parent chain
12716           further than needed (speeds up setting cursors and avoids setting
12717           the wrong cursor if a parent has another cursor defined)
12718         * Cursor.cs: When loading an icon as cursor, MS uses the center of
12719           the icon as hotspot, not what's contained as hotspot in the icon
12720           file. This fixes the perceived drawing offset seen with Paint.Net
12721         
12722 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
12723
12724         * XplatUIX11.cs: 
12725           - Store the calculated rectangle in Hwnd object and use it when 
12726             setting the client size
12727           - Force Toolwindows to always be type Dock, to ensure they're on top
12728
12729 2006-05-18  Mike Kestner  <mkestner@novell.com>
12730
12731         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
12732         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
12733         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
12734         Substantial refactoring to remove confusing nested classes. Coding
12735         standard and Get+Set->property refactorings.  Shift to index based
12736         highlighting in ComboListBox instead of constantly using IndexOf and
12737         Items[]. Add invalidations on resize for DropDownList to fix ugliness
12738         in FileDialog growth.  Draw borders manually since Simple mode needs
12739         to look like two independent controls.  Make listbox border
12740         conditional to DropDownStyle.  Improved OwnerDraw support.
12741
12742 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
12743
12744         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
12745         Don't set the disposed graphics to null, so we can throw the "right"
12746         exception if the graphics is reused later (added a flag to avoid 
12747         double disposing). Some behaviours are different under 2.0 and are
12748         filled under bug #78448.
12749
12750 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
12751
12752         * Control.cs: When double-buffering is enabled, we need to reset
12753           our graphics context between paint calls. Otherwise, any 
12754           transformations and other alterations on the context will 
12755           become cumulative (#77734)
12756
12757 2006-05-18  Mike Kestner  <mkestner@novell.com>
12758
12759         * ListView.cs: do focused item selection like MS on clicks. 
12760         Rework focus handling for ItemControl so LostFocus invalidates as
12761         well.
12762         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
12763         the ListView ItemControl has focus.
12764
12765 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
12766
12767         * XplatUIX11.cs: If client_window ends up being width or height zero
12768           due to border settings, move it off window inside whole_window (#78433)
12769
12770 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
12771
12772         * Mime.cs: Shrink the mime file cache correctly.
12773
12774 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
12775
12776         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
12777
12778 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12779
12780         * XplatUIX11.cs (AddExpose): More sanity checks
12781
12782 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12783
12784         * XplatUIX11.cs:
12785           - AddExpose: Don't add expose ranges outside the size of our
12786             window
12787           - Cast opacity values to Int32 to avoid crashes with certain
12788             values
12789           - Added disabled code paths that protect against illegal cross-
12790             thread painting (Developers.exe)
12791
12792 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12793
12794         * ProgressBar.cs: Invalidate the control when it's resized
12795           since block size is based on control size. (#78388)
12796
12797 2006-05-16  Miguel de Icaza  <miguel@novell.com>
12798
12799         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
12800         of setting the incoming argument to the "reset" value, we set the
12801         this.datamember to string.empty (before we were invalidating the
12802         incoming data).   
12803
12804         Fixes 78420
12805
12806 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12807
12808         * Form.cs: Only apply transparency settings after the form
12809           is created. (Fixes #77800)
12810
12811 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12812
12813         * ApplicationContext.cs: Grab the HandleDestroyed event so
12814           we know when to fire OnMainFormClosed 
12815
12816 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12817
12818         * Application.cs: Introduced sub-class to allow tracking of
12819           threads and centralized triggering of the event mess for
12820           ThreadExit, AppExit, etc..  (#76156)
12821
12822 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
12823
12824         * MimeIcon.cs:
12825           - Do not return a null icon index value for a mime subclass.
12826             Instead try the main mime type class too.
12827           - Seems that some newer distributions don't have a link to some
12828             gnome default icons anymore. So check the default gnome dir too.
12829           
12830
12831 2006-05-16  Jackson Harper  <jackson@ximian.com>
12832
12833         * MdiClient.cs: Don't paint the parent background image if we have
12834         our own background image.
12835
12836 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12837
12838         * Control.cs:
12839           - PerformLayout: Do not shrink space filled by DockStyle.Fill
12840             controls, all filled controls are supposed to overlap (#78080)
12841           - UpdateZOrder is supposed to update the control's z-order in the
12842             parent's z-order chain. Fixed to behave like that
12843           - BringToFront: Removed obsolete code
12844           - SendToBack: Simplyfied
12845           - SetChildIndex: Trigger layout calculations when Z-order changes
12846             since layout is done by z-order
12847
12848 2006-05-16  Chris Toshok  <toshok@ximian.com>
12849
12850         [ fixes bug #78410 ]
12851         * DataGrid.cs (set_AlternatingBackColor): use
12852         grid_drawing.InvalidateCells instead of Refresh().
12853         (set_BackColor): call grid_drawing.InvalidateCells.
12854         (set_BackgroundColor): use Invalidate instead of Refresh.
12855
12856         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
12857         invalidate the cell area.
12858
12859 2006-05-15  Chris Toshok  <toshok@ximian.com>
12860
12861         [ fixes bug #78011 ]
12862         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
12863         on to DataGridPaintRow.
12864         (DataGridPaintRow): take a clip argument, and only draw the cells
12865         which intersect it.  same with the not_usedarea.
12866
12867         * Theme.cs (DataGridPaintRow) add @clip parameter.
12868
12869         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
12870         XplatUI.ScrollWindow.
12871         (ScrollToRow): same.
12872
12873         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
12874         with last column which was causing a gray swath to appear with the
12875         XplatUI.ScrollWindow code.
12876
12877 2006-05-15  Chris Toshok  <toshok@ximian.com>
12878
12879         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
12880         use XplatUI.ScrollWindow.
12881         (VerticalScrollEvent): use XplatUI.ScrollWindow.
12882
12883 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
12884
12885         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
12886
12887 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
12888
12889         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
12890           file since there are no equivalent X11 cursors
12891
12892 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
12893
12894         * MonthCalendar.cs : DateTimePicker should reflect selected date
12895           on mouse*up*, not mouse*down*. Fixed originally reported part of
12896           bug #76474.
12897
12898 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
12899
12900         * TabControl.cs : When argument index is equal or more than tab
12901           count, just ignore. Fixed bug #78395.
12902
12903 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
12904
12905         * Control.cs: Dispose all child controls when control is diposed (#78394)
12906
12907 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12908
12909         * ColorDialog.cs: Finally it is possible to select the color with
12910           the text boxes
12911
12912 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12913
12914         * PrintDialog.cs: Fix typo
12915
12916 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12917
12918         * PrintDialog.cs: PrintDialog is not resizable
12919         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
12920           color. Made some ToolBar drawing methods protected virtual.
12921
12922 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
12923
12924         * PrintDialog.cs: Implementation of the PrintDialog
12925
12926 2006-05-12  Chris Toshok  <toshok@ximian.com>
12927
12928         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
12929         thumb, instead use MoveThumb.  This has the side effect of making
12930         most of the other thumb moving machinery use MoveThumb as well.
12931         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
12932         need to actually invalidate the rectangle where the new thumb will
12933         go.
12934         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
12935         We force an Update() after, so it's not as fast as it could be,
12936         but at least there's zero flicker and no droppings.
12937         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
12938         (UpdateThumbPos): add another argument (dirty), which says whether
12939         or not to calculate/add dirty regions which we later invalidate.
12940         For cases where we know we're going to use MoveThumb, we pass
12941         false for this.  Otherwise, pass true.
12942
12943 2006-05-12  Jackson Harper  <jackson@ximian.com>
12944
12945         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
12946         the status bar.
12947         
12948 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
12949
12950         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
12951           and GetClipRegion methods and UserClipWontExposeParent property.
12952         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
12953           overriding UserClipWontExposeParent property, setting to false, since
12954           Win32 handles the required expose messages to draw our clipped parent
12955           areas internally
12956         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
12957           PaintEventStart to set the user clip region if set.
12958         * Control.cs: 
12959           - Now internally tracking the Region for the control since we need to
12960             store it if the handle is not yet created and only set it when it
12961             becomes created. Before setting the region forced handle creation
12962           - Added code to draw the parents underneath a user-clipped region
12963         * Hwnd.cs: Added UserClip property
12964
12965 2006-05-12  Chris Toshok  <toshok@ximian.com>
12966
12967         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
12968         (set_Maximum): same.
12969         (set_Minimum): same.
12970         (set_SmallChange): same.
12971         (OnMouseUpSB): remove the call to refresh when releasing the
12972         thumb.  We shouldn't need it.
12973         
12974 2006-05-12  Miguel de Icaza  <miguel@novell.com>
12975
12976         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
12977         AutoSize set to None, we do not need to relayout everything, we
12978         just need to invalidate the current region.
12979
12980         (Draw): Do not draw the entire ClientArea, just redraw the
12981         clip area being passed.
12982
12983         * MdiClient.cs: Make MdiClient constructor with the Form argument
12984         internal. 
12985
12986 2006-05-12  Jackson Harper  <jackson@ximian.com>
12987
12988         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
12989         parents background image,  but strangely not their own.
12990         - (DrawStatusBarPanel): Take into account horizontal alignment
12991         when drawing the strings and icons.
12992
12993 2006-05-12  Mike Kestner  <mkestner@novell.com>
12994
12995         * ListBox.cs: avoid invalidations for focus when the collection is
12996         empty. 
12997
12998 2006-05-12  Chris Toshok  <toshok@ximian.com>
12999
13000         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
13001         invalidate the entire thumb area.  Call InvalidateDirty which
13002         limits the redraw to the thumb itself and surrounding pixels.
13003
13004         * XplatUIX11.cs (ScrollWindow): optimize copying.
13005         
13006 2006-05-12  Chris Toshok  <toshok@ximian.com>
13007
13008         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
13009         Figure out the positioning/layout in a single pass instead of
13010         multiple recursive invocations.  Speeds up the initial display of
13011         the data grid.  Also, make many things private that were
13012         originally public but unused outside this class.
13013
13014 2006-05-11  Jackson Harper  <jackson@ximian.com>
13015
13016         * MdiClient.cs: Improved layout code.
13017
13018 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
13019
13020         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
13021           not SelectedObject.
13022
13023 2006-05-11  Chris Toshok  <toshok@ximian.com>
13024
13025         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
13026         union of that will always be {0,0,width,height}.
13027
13028 2006-05-11  Jackson Harper  <jackson@ximian.com>
13029
13030         * Form.cs: Match MS's DefaultSize for forms (they must have
13031         changed the size in sp2).
13032
13033 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13034
13035         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
13036
13037 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
13038
13039         * TextControl.cs : Fixed bug #78109. This incorrect position
13040           comparison caused crash on automatic line split.
13041         * TextBoxBase.cs : reduce duplicate code.
13042
13043 2006-05-10  Jackson Harper  <jackson@ximian.com>
13044
13045         * MdiClient.cs: Active form is only sent to the back when using
13046         the Next form functionality, when a form is clicked the current
13047         active shouldn't be sent to the back.
13048         - Layout the mdi windows when the container is first made visible.
13049         * Form.cs: Give the MdiClient a ref to the containing form when we
13050         create it.
13051         
13052 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13053
13054         * LinkLabel.cs : link_font could be uninitialized, so populate one
13055           before actual use. Fixed bug #78340.
13056
13057 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
13058
13059         * XplatUIX11.cs : clipboard format native value is IntPtr.
13060           Fixed bug #78283.
13061
13062 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13063
13064         * Control.cs: 
13065           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
13066             which is passed up the parent chain by DefWndProc
13067           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
13068             to DefWndProc (#77956)
13069         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
13070
13071 2006-05-10  Jackson Harper  <jackson@ximian.com>
13072
13073         * MdiClient.cs: We need to remove the controls from the mdi
13074         collection, when we close the window.
13075         * MdiWindowManager.cs: Special handling of closing mdi windows.
13076         * InternalWindowManager.cs: Make the close method virtual so the
13077         mdi window manager can handle it specially.
13078
13079 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
13080
13081         * DataGrid.cs:
13082           - Recalculate grid when the data source has changed
13083           - Matches styles provided by user from all data sources types
13084         * DataGridTableStyle.cs: For columns that provided by the user set the
13085         with the preferred value is there was unassigned.
13086         * CurrencyManager.cs: throw OnItemChanged event
13087
13088 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
13089
13090         * PictureBox.cs: Don't animate until handle is created. Start animation
13091           when handle is created.
13092
13093 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13094
13095         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
13096           current codebase.
13097         * XEventQueue.cs: We don't need to provide the extra info
13098
13099 2006-05-10  Jackson Harper  <jackson@ximian.com>
13100
13101         * MdiClient.cs: If the mdi clients parent form has a background
13102         image set, we draw that background image for the mdi area's
13103         background.
13104
13105 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
13106
13107         * TextBoxBase.cs: Set IBeam cursor (#78347)
13108
13109 2006-05-10  Mike Kestner  <mkestner@novell.com>
13110
13111         * ToolBar.cs: fix some text padding issues with ButtonSize
13112         calculation. Update the default size to match MS documentation.
13113         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
13114         button size. Fixes #78296.
13115
13116 2006-05-10  Mike Kestner  <mkestner@novell.com>
13117
13118         * ListBox.cs: use is_visible for scrollbar positioning in case the
13119         control isn't on screen yet.  Fix off by one with Right vs Width
13120         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
13121         
13122 2006-05-10  Jackson Harper  <jackson@ximian.com>
13123
13124         * X11Dnd.cs: Drop to a control with another control on top of it.
13125         * ToolBar.cs: Work on a copy of the buttons list, so that it can
13126         be modified in click handlers. TODO: Look for similar problems in
13127         other controls.
13128
13129 2006-05-09  Jackson Harper  <jackson@ximian.com>
13130
13131         * Form.cs: Window managers need the old window state when setting
13132         window state now.
13133         * InternalWindowManager.cs: Allow the base mdi window manager to
13134         handle more of the MDI only stuff (like maximize buttons).
13135         * MdiWindowManager.cs: Fix some snafus in changing the window
13136         state.  Add all the menu functionality, for both popup and
13137         maximized menus.
13138         * MdiClient.cs: When a new form is selected the currently
13139         activated form is sent to the back, this matches MS.
13140         - Implement a new method to activate the next mdi child window.
13141
13142 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
13143
13144         * Control.cs: 
13145           - Added new InternalCapture method to allow controls to prevent
13146             the capture behaviour on the click handlers
13147           - Switched to use InternalCapture
13148         * ComboBox.cs:
13149           - Using InternalCapture to prevent mouse captures from being released
13150             on mouse button release (Fixes #78100)
13151         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
13152           returns Form borders if a caption is present. (Fixes #78310)
13153
13154 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
13155
13156         * TreeNode.cs: Changed serialization .ctor to not require every field
13157           to be present. (#78265)
13158         * OwnerDrawPropertyBag.cs: Added serialization .ctor
13159
13160 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
13161
13162         * MimeIcon.cs: for is faster than foreach for strings.
13163
13164 2006-05-05  Mike Kestner  <mkestner@novell.com>
13165
13166         * CheckedListBox.cs: update check handling code to not use selected.
13167         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
13168         behavior for visual feedback, motion response, shift/ctrl handling,
13169         and properly deal with all 4 selection modes. Updates to bounds
13170         handling logic.  Add scroll wheel support. [Fixes #77842]
13171
13172 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13173
13174         * ListView.cs:
13175           - Moved adding of Implicit controls into .ctor. That way, subsequent
13176             creation of the controls will not cause them to think they are 
13177             toplevel windows (fixes #78200 header problem)
13178           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
13179           - Switched visibility setting of header control to use internal field
13180             to avoid triggering handle creation
13181           - Now checking if handle is created before causing a refresh when items
13182             are added (This makes us now match handle creation time with MS)
13183         * Splitter.cs: Removed loading of private splitter cursor, switched to
13184           Cursors version now that that is loading the right ones
13185         * Cursors.cs: Load proper splitter cursors from resources
13186         * Cursor.cs: Added second method of loading resource cursors for the 
13187           VS.Net users amongst us
13188
13189 2006-05-05  Mike Kestner  <mkestner@novell.com>
13190
13191         * ListView.cs: give header_control a minimum size based on the
13192         ListView size.
13193
13194 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
13195
13196         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
13197           window seems to do that with metacity, so set that type. (#78120)
13198
13199 2006-05-05  Mike Kestner  <mkestner@novell.com>
13200
13201         * ListViewItem.cs: fix Details mode checkbox layout bug.
13202         * ThemeWin32Classic.cs: draw a ListView column header for unused space
13203         at the end of the header, if it exists. [Fixes for #78200]
13204
13205 2006-05-04  Jackson Harper  <jackson@ximian.com>
13206
13207         * MdiClient.cs: Add a helper property to get the container form.
13208         * MdiWindowManager.cs: We have to make sure to use the menu origin
13209         when drawing the icons and buttons, this fixes maximized window
13210         icons/buttons on win32.
13211         * InternalWindowManager.cs: Reset the restore captions when a
13212         window goes from Maximized to Minimized and vice versa. Move the
13213         DrawMaximizedButtons into the MdiWindowManager source, tool
13214         windows can't be maximized. NOTE: This could use a little
13215         refactoring if time ever permits.
13216         
13217 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13218
13219         * TextBox.cs: Add MWFCategoryAttributes
13220         * TextBoxBase.cs: Add MWFCategoryAttributes
13221         * Form.cs: Add MWFCategoryAttributes
13222
13223 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
13224
13225         * Control.cs: Add MWFCategoryAttributes
13226         * ScrollableControl.cs: Add MWFCategoryAttributes
13227
13228 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
13229
13230         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
13231           Divider is true. Fix a little glitch in PropertyToolBar
13232           drawing code
13233
13234 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
13235
13236         * Control.cs:
13237           - Dispose: Call base.Dispose, this causes the disposed event
13238             to be fired (and probably other, more important stuff)
13239           - SetVisibleCore: Set is_visible to true after creating the
13240             window so that the window still gets created invisible (if
13241             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
13242             to generate a WM_ACTIVE message
13243         * Form.cs: Call Dispose when we want to destroy the window, instead of
13244           just destroying the handle (Dispose will do that for us)
13245         * XplatUIX11.cs:
13246           - RootWindow also needs a queue, so we can properly process the
13247             property change events from RootWindow (like Activate)
13248           - Generatic synthetic WM_ACTIVE message when the active window is
13249             being destroyed
13250
13251 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13252
13253         * LinkLabel.cs: Trigger a recalc of our label dimensions when
13254           bounds are changed
13255
13256 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
13257
13258         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
13259           for determining width and height (image might not be assigned if
13260           we're drawing an imagelist)
13261
13262 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
13263
13264         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
13265         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
13266           height from system
13267         * Theme.cs: No longer returns hardcoded menu height, instead calls
13268           new driver method
13269         * Form.cs (OnLoad): Scaling happens before triggering Load events 
13270           on MS (# 78257)
13271
13272 2006-05-01  Mike Kestner  <mkestner@novell.com>
13273
13274         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
13275
13276 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
13277
13278         * TextBoxBase.cs: Removed Fixme
13279         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
13280
13281 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
13282
13283         * XplatUIX11.cs:
13284           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
13285             the rectangle relative to the parent, considering borders. We
13286             don't really want that.
13287           - ScrollWindow: Fixed warning to be more understandable
13288         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
13289           scrollbars and scroll only the visible area
13290         * RichTextBox.cs: Removed debug output
13291
13292 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13293
13294         * NumericUpDown.cs (Text): Just use base
13295         * UpDownBase.cs: Ensure txtView is created before using it
13296
13297 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13298
13299         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
13300           casting to IntPtr to avoid 64bit overflow errors
13301
13302 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13303
13304         * Control.cs:
13305           - AllowDrop: Don't force handle creation.
13306           - CreateHandle: Added call to tell driver if we're allowed to drop
13307
13308 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13309
13310         * FileDialog.cs: Remember the last directory not only for the
13311           current instance but also for new FileDialog instances.
13312
13313 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
13314         
13315         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
13316           broke sending async messages
13317
13318 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
13319
13320         * XplatUIX11.cs:
13321           - ScrollWindow: Fixed method. We finally generate expose events again
13322             for scrolled areas. This was causing 'garbage' when scrolling
13323             textbox and other controls that used ScrollWindow
13324           - Switched from using the regular queue for paint events to the MS 
13325             model of 'generating' paint events when the queue is empty.
13326             We use the new XQueueEvent.Paint subclass to store which windows
13327             need painting.
13328           - AddExpose now takes the x/y/width/height of the exposed area
13329             and inserts the window into the paint queue if not already there
13330           - InvalidateWholeWindow: Switched to use new AddExpose method
13331           - UpdateMessageQueue: Added which queue to monitor for paint events
13332           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
13333             the unlikely case nothing above handles it. We reset the expose
13334             pending states to get them off the queue.
13335           - GetMessage: Now pulls a paint event if no other events are in the
13336             queue
13337           - Invalidate: Switched to new AddExpose method
13338           - PeekMessage: Updated to understand pending paint events
13339           - UpdateWindow: Fixed logic bug. We were only updating if the window
13340             didn't need updating. Also switched to sending WM_PAINT directly,
13341             like MS does.
13342         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
13343           and random access Remove(). The random access is needed to handle
13344           UpdateWindow() where a WM_PAINT is sent directly without accessing
13345           the queue.
13346         * ScrollBar.cs: Added Update() calls to cause immediate updates to
13347           allow for better feedback when scrolling. Scrollbars are small and
13348           the immediate update should make it 'feel' more responsive without
13349           slowing things down. ScrollBar still needs it's invaliate logic
13350           updated to not always invalidate the whole bar on certain changes.
13351
13352 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13353
13354         * Control.cs:
13355         (BackColor): if the control does not support a transparent background,
13356         return the default backcolor when the parent backcolor is transparent.
13357
13358 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
13359
13360         * Application.cs: Updated to new StartLoop/GetMessage API
13361         * RichTextBox.cs: Provide some output on RTF parsing errors
13362         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
13363           new queue_id argument to GetMessage and PeekMessage to allow faster
13364           handling of per-thread queues in drivers.
13365         * Hwnd.cs: Added Queue tracking and property
13366         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
13367         * XEventQueue.cs: Added thread trackingA
13368         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
13369         * XplatUIX11.cs:
13370           - Implemented new per-thread queue
13371           - GetMessage: Fixed return/break behaviour on several cases. We were
13372             returning stale messages in some cases, instead of just processing
13373             the next message
13374
13375 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13376
13377         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
13378
13379 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
13380
13381         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
13382           fixed off-by-one comparisons between Width/Height and Right/Bottom.
13383
13384 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
13385
13386         * PropertyGridView.cs: Fix drop down width.
13387
13388 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13389
13390         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
13391           a mess in DrawToolBar, so I removed one of them.
13392
13393 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
13394
13395         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
13396           needed (clip). Otherwise we get artifacts.
13397
13398 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13399
13400         * FixedSizeTextBox.cs: Added constructor to allow specifying which
13401           dimension is fixed
13402         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
13403           and switched FixedSizeTextBox to only be fixed vertical (#78116)
13404         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
13405           if it matches the scale base font (avoids unneeded scaling)
13406
13407 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13408
13409         * X11DesktopColors.cs: One gtk_init_check should be enough
13410
13411 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
13412
13413         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
13414           match MS behaviour
13415
13416 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
13417
13418         * TextBoxBase.cs: 
13419           - Generate OnTextChanged for Backspace even if we're only deleting
13420             the current selection
13421           - When setting the Text property, only select all text if the
13422             control does not have focus when it is being set. Otherwise
13423             just place the cursor at the beginning of the control
13424
13425 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
13426
13427         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
13428           Added a little helper to draw PropertyGrid ToolBar with a different
13429           border and a different BackColor.
13430         * PropertyGrid.cs: Some background parts didn't get painted with the
13431           correct background color. Added a class that helps us to draw the
13432           correct border for PropertyGridView and a class that helps us to
13433           draw ToolBars with a different backcolor
13434         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
13435
13436 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
13437
13438         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
13439         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
13440
13441 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13442
13443         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
13444           into the palette entries. Also, since we're working on a copy
13445           we needed to copy the palette back onto the bitmap.
13446         * Cursor.cs: Same fix as XplatUIWin32.cs.
13447
13448 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
13449
13450         * ImageListStreamer.cs: Need to read the var (or we're off)
13451
13452 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
13453
13454         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
13455           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
13456           TextBoxBase.cs: Unused var fixes
13457         * AxHost.cs: Small 2.0 fix
13458         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
13459           as it seems that is what at least Metacity expects. This will make
13460           icons show up on 64bit platforms. We still have some 64bit size
13461           issues, though, since the startup app window size still won't match.
13462
13463 2006-04-25  Mike Kestner  <mkestner@novell.com>
13464
13465         * *.cs: cleanup newly reported exception var unused warnings.
13466
13467 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13468
13469         * ThemeWin32Classic.cs: Button image alignment now matches exactly
13470           ms
13471
13472 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13473
13474         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
13475           image. The image position is always the same, no matter if the
13476           button is pressed or not.
13477
13478 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
13479
13480         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
13481           selection and set the correct filename for SaveFileDialog.
13482           Patch by Emery Conrad.
13483
13484 2006-04-24  Mike Kestner  <mkestner@novell.com>
13485
13486         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
13487         check for item.X outside the ClientRect instead of item.Y. Fixes
13488         #78151.
13489
13490 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13491
13492         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
13493         trust that value blindly and do some sanity check. Fixes bug #77814.
13494
13495 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13496
13497         * ImageListStreamer.cs: save the mask as a 1bpp image.
13498
13499 2006-04-21  Mike Kestner  <mkestner@novell.com>
13500
13501         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
13502         pass Checked and Indeterminate to the Theme Engine. Improve
13503         encapsulation with ListBox.
13504         * ListBox.cs: Keep a StringFormat instead of calculating it every item
13505         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
13506         nested types.  Move all CheckState functionality to CheckedListBox.
13507         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
13508         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
13509         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
13510         single base list. Fix scrollbar sizing and placement to mirror MS.
13511         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
13512         used.
13513         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
13514         for CheckedListBox by using new DrawItemState info.  Center the
13515         checkboxes on the items. Use new StringFormat property.
13516
13517 2006-04-18  Jackson Harper  <jackson@ximian.com>
13518
13519         * Form.cs: MdiChildren don't do default locations the same way as
13520         regular forms.  This prevents a crash when trying to position the
13521         mdi windows.
13522
13523 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
13524
13525         * PropertyGridTextBox.cs: Formatting, copyright
13526         * PropertiesTab.cs: Formatting
13527         * PropertyGrid.cs: Formatting
13528         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
13529           click toggling of values
13530           
13531 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
13532
13533         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
13534         * Control.cs (.ctor): verify_thread_handle is static, don't reset
13535           every time a control is created
13536         * Application.cs: Removed obsolete EnableRTLMirroring method
13537
13538 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
13539
13540         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
13541         SelectedIndex to -1. Fixes bug #78121.
13542
13543 2006-04-17  Jackson Harper  <jackson@ximian.com>
13544
13545         * Binding.cs: Handle null values for Current and BindingContext.
13546         This occurs when binding is a little delayed.
13547         * CurrencyManager.cs: return null for Current when there are no
13548         items in the list.
13549         - Hookup to the listchanged event on the DataView and update
13550         bindings when the list is changed.  This fixes late binding of
13551         controls.
13552
13553 2006-04-17  Jackson Harper  <jackson@ximian.com>
13554
13555         * X11Dnd.cs:
13556         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
13557         Ringenbach.
13558
13559 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
13560
13561         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
13562           place
13563         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
13564           with the correct ButtonState
13565
13566 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
13567
13568         * XplatUIX11.cs: Improved distinguishing between window types to
13569           tell the WM a type closer to what the app wants (Fixes #78107)
13570
13571 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13572
13573         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
13574           GrabHandle
13575
13576 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
13577
13578         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
13579           drawing code to reflect the size grip changes
13580
13581 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13582
13583         * ImageListStreamer.cs: fix handling of the mask that follows the main
13584         bitmap when deserializing and serialize it properly. The generated mask
13585         should better be a 1bpp image, but I'll do that later.
13586
13587 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13588
13589         * FileDialog.cs: Show something in the DirComboBox on *nix if the
13590           path doesn't fit into some of our Current.Places
13591
13592 2006-04-13  Jackson Harper  <jackson@ximian.com>
13593
13594         * ComboBox.cs: Use borders instead of drawing our own decorations,
13595         try to obey correct rules for heights.
13596         * Theme.cs:
13597         * ThemeNice.cs:
13598         * ThemeClearLooks.cs:
13599         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
13600         this is now handled by borders.
13601         - Remove unused DrawListBoxDecorationSize method.
13602         
13603 2006-04-13  Mike Kestner  <mkestner@novell.com>
13604
13605         * MenuAPI.cs: null guarding for the disbled click check fixes crash
13606         reported by Alex.
13607
13608 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
13609
13610         * ThemeWin32Classic.cs: 
13611           - Fixed CPDrawStringDisabled
13612           - Corrected drawing of disabled menu items
13613           - Fixed drawing of disabled radio buttons (bug #78095)
13614           - Draw check in a disabled CheckBox with color ControlDark 
13615
13616 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13617
13618         * Form.cs: Use the provided width when calculating the menu size;
13619           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
13620           and ClientSize.Width won't be updated yet
13621         * Application.cs: Use Visible instead of Show() to make form visible,
13622           this way we create the handle later and menusize is considered
13623
13624 2006-04-12  Mike Kestner  <mkestner@novell.com>
13625
13626         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
13627         reporting.
13628
13629 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13630
13631         * TextBox.cs: Implemented context menu
13632
13633 2006-04-12  Mike Kestner  <mkestner@novell.com>
13634
13635         * ListView.cs: implement box selection. fixes #77838.
13636         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
13637
13638 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
13639
13640         * XplatUIX11.cs: Added setting of window type when transient window
13641           is created (metacity would move it otherwise)
13642         * X11Structs.cs: Added WINDOW_TYPE atoms
13643         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
13644           background (the control is Opaque but still wants transparent
13645           backgrounds)
13646
13647 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13648
13649         * Control.cs: Added OnPaintBackgroundInternal to allow controls
13650           that set Opaque but don't mean it (like all ButtonBase-derived
13651           controls) to still draw their background
13652         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
13653           the background
13654
13655 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
13656
13657         * Control.cs (PaintControlBackground): Set the graphics object
13658           on our PaintEvent to null to prevent it from being disposed
13659           when the PaintEvent gets disposed
13660
13661 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
13662
13663         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
13664         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
13665
13666 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
13667
13668         * Control.cs: 
13669           - Added transparency check to BackColor property. Transparent
13670             backgrounds are only allowed if the control styles permit it
13671           - Added recursive painting of parent control background and
13672             foreground if a control with a transparent backcolor is drawn
13673             (Thanks to Tim Ringenback for providing his 'hack' as a base
13674              for this patch) Fixes #77985 and #78026.
13675           - Added Opaque style check before calling OnPaintBackground, no
13676             need to draw the background if the control is opaque
13677           - Removed ControlAccessibleObject owner variable (inherited from
13678             base, no need to define again)
13679           - Added some documentation links explaining the drawing events
13680             and styles
13681
13682 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
13683
13684         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
13685           that the affected control is the located at the left border of our
13686           parent (Fixes #77936)
13687
13688 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13689
13690         * TextBoxBase.cs: When rendering disabled or readonly controls,
13691           draw the background with 'Control' instead of 'Window' color as
13692           long as the user hasn't specifically set a color
13693
13694 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
13695
13696         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
13697           since that won't be updated if the user types text (only if it's
13698           programatically set)
13699
13700 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13701
13702         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
13703           layout changes do to app-triggered resizes will have the proper
13704           display rectangle for layout
13705
13706 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
13707
13708         * ThemeWin32Classic.cs:
13709           - Make use of the SystemBrushes and SystemPens wherever possible
13710           - Corrected some highlight colors
13711           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
13712             drawing
13713         * Theme.cs: Added Empty field to CPColor struct
13714
13715 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
13716
13717         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
13718           is displayed when calculating the display rectangle. Thanks to Mike
13719           for teaching me the err of my ways.
13720
13721 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
13722
13723         * ScrollableControl.cs:
13724           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
13725             (instead of 0,0) and we now return the real width/height instead of
13726             just the clientrectangle, adjusted for padding. The rectangle is
13727             now cached and created by the new CalculateDisplayRectangle method.
13728           - Created new CalculateDisplayRectange method, which basically does
13729             what get_DisplayRectangle() did originally, but now using the 
13730             right edge instead of DisplayRectangle to determine the size of
13731             our scrollbars
13732           - get_Canvas(): Fixed it to properly calculate canvas for 
13733             right/bottom controls which seem to be placed to the right/bottom
13734             of any controls that have a fixed location
13735           - Removed TODO that's taken care of
13736           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
13737             and SetDisplayRectLocation according to new MSDN2 docs
13738           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
13739             event when that is called, this is added for compatibility
13740           - ScrollControlIntoView(): Implemented.
13741           - Switched scrollbars to be implicit, they shouldn't be selectable
13742         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
13743           call it when the active control is set/changed
13744         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
13745         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
13746           implicit_control variable (used for native Win32 message generation)
13747         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
13748           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
13749         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
13750         * XplatUIStructs.cs: Added ScrollBarCommands enum
13751
13752 2006-04-10  Jackson Harper  <jackson@ximian.com>
13753
13754         * ButtonBase.cs:
13755         * CheckedListBox.cs:
13756         * ComboBox.cs:
13757         * DataGrid.cs:
13758         * DataGridView.cs:
13759         * Form.cs:
13760         * GroupBox.cs:
13761         * ListBox.cs:
13762         * PrintPreviewControl.cs:
13763         * ProgressBar.cs:
13764         * PropertyGrid.cs:
13765         * Splitter.cs:
13766         * StatusBar.cs:
13767         * TrackBar.cs:
13768         * UpDownBase.cs: Fixup base event overrides.
13769         
13770 2006-04-06  Mike Kestner  <mkestner@novell.com>
13771
13772         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
13773         all user-initiated value changes to min <= value <= max-thumbsz+1.
13774         (set_Value): check for vert/horiz when calculating new thumb position.
13775         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
13776         like MS does.
13777         (OnMouseMoveSB): refactor the thumb dragging code and refine
13778         invalidation logic to reduce flicker.
13779         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
13780         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
13781         (UpdateThumbPosition): small code readability cleanup
13782
13783 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
13784
13785         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
13786           different
13787
13788 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13789
13790         * ThemeNice.cs: Use a better graphics effect when a button is pressed
13791
13792 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13793
13794         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
13795         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
13796           This dramatically reduces the number of Pen.Dispose calls. 
13797           Where possible call ResPool methods only once instead of calling it
13798           over and over again (for example for the same color).
13799
13800 2006-04-06  Mike Kestner  <mkestner@novell.com>
13801
13802         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
13803         Also remove an unused private field on the collection. Fixes #77972.
13804
13805 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13806
13807         * ThemeNice.cs: Added ToolBar drawing code
13808
13809 2006-04-06  Mike Kestner  <mkestner@novell.com>
13810
13811         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
13812         I'm assuming that means we need to look up the toplevel for the
13813         provided control. Fixes the crash trace in #77911 but exposes another
13814         crash in some strange reflection usage in NDocGui.
13815
13816 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13817
13818         * ThemeNice.cs: Gave it a little silver touch and added Images
13819           method
13820         * FontDialog.cs: FontDialog is not resizable
13821         * FileDialg.cs: Added SizeGripStyle.Show
13822
13823 2006-04-05  Jackson Harper  <jackson@ximian.com>
13824
13825         * KeyboardLayouts.cs: Remove warning.
13826
13827 2006-04-05  Jackson Harper  <jackson@ximian.com>
13828
13829         * Control.cs: Enable OnPaintInternal so we can use it for drawing
13830         all of our controls instead of Paint +=.
13831         * ListBox.cs:
13832         * ListView.cs:
13833         * MenuAPI.cs:
13834         * MessageBox.cs:
13835         * NotifyIcon.cs:
13836         * ProgressBar.cs:
13837         * ScrollBar.cs:
13838         * Splitter.cs:
13839         * StatusBar.cs:
13840         * TabControl.cs:
13841         * TextBoxBase.cs:
13842         * ToolBar.cs:
13843         * TrackBar.cs:
13844         * UpDownBase.cs:
13845         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
13846         use OnPaintInternal. Remove Width/Height and Visible checks in
13847         paint handler, this is done at a higher level now.
13848         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
13849         * PaintEventArgs.cs: Add a handled flag so controls that don't
13850         want anymore painting after OnPaintInternal can make sure OnPaint
13851         isn't called.
13852
13853 2006-04-05  Mike Kestner  <mkestner@novell.com>
13854
13855         * Form.cs: fix the menu WndProc hacks to respect the native enabled
13856         state of the form, so that we don't process events when Modal dialogs
13857         are up. Fixes #77922.
13858
13859 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
13860
13861         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
13862           checking is done.
13863
13864 2006-04-05  Mike Kestner  <mkestner@novell.com>
13865
13866         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
13867
13868 2006-04-05  Mike Kestner  <mkestner@novell.com>
13869
13870         * ListView.cs (HeaderMouseMove): null guarding for the over column
13871         when setting up the drag_to_index.  Fixes #78015.
13872
13873 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
13874
13875         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
13876           in the taskbar. Transient windows seem to accomplish that.
13877
13878 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
13879
13880         * Form.cs:
13881           - Re-enabled CreateParams.X/Y code for FormStartPosition
13882           - Added code for manual placement when creating the Control
13883           - Incomplete patch to treat MDI forms differently when
13884             setting the ClientSizeCore. (Still need to figure out handling
13885             x/y coords there)
13886         * XplatUIX11.cs:
13887           - When we're explicitly setting the X/Y position of a non-Child
13888             window, let the WM know. Metacity really wants this.
13889
13890 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13891
13892         * ThemeNice.cs: Added CPDrawButton
13893
13894 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13895
13896         * ThemeNice.cs: Changed the color for focused buttons and activated
13897           the arrows for small scroll buttons.
13898
13899 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13900
13901         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
13902           anymore. Changed some method modifiers to protected (virtual)
13903         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
13904           changes
13905         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
13906           Updated drawing of menus, buttons and progressbars; added
13907           CPDrawBorder3D 
13908
13909 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13910
13911         * ImageListStreamer.cs: implemented serialization/deserialization
13912         of the images.
13913
13914 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
13915
13916         * ThemeWin32Classic.cs:
13917           - Removed all the DrawFrameControl stuff; CPDrawButton,
13918             CPDrawCheckBox and CPDrawRadioButton are now handled directly
13919             inside the methods
13920           - Updated and corrected the drawing code of CPDrawButton,
13921             CPDrawCheckBox and CPDrawRadioButton to better match ms
13922           - Updated theme checkbox and radiobutton code to use the CP*
13923             methods
13924
13925 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
13926
13927         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
13928           bug is fixed
13929
13930 2006-03-31  Jackson Harper  <jackson@ximian.com>
13931
13932         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
13933         sometimes.
13934         * UpDownBase.cs: Don't CreateGraphics manually, use a
13935         Refresh. Ideally we would invalidate the correct areas here.
13936
13937 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
13938
13939         * XplatUIX11.cs: 
13940           - We now track the mapping state of windows. If a window (or 
13941             one of it's parents) is not mapped we no longer permit
13942             WM_PAINT messages to be generated since we'd otherwise get 
13943             lots of BadMatch X errors. Jackson did all the work figuring
13944             out the problem.
13945           - Destroying the caret if the window it's contained in is 
13946             destroyed. Can't use regular DestroyCaret method since it
13947             might fall into a drawing function (trying to remove the
13948             caret) and with that generate new BadMatch errors. Again,
13949             Jackson tracked this down.
13950           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
13951             make sure we send the messages to all windows. (The old code
13952             would send the WM_DESTROY to the window, and then all child
13953             windows would be 'gone' because the WM_DESTROY handle lookup
13954             would no longer find the destroyed window)
13955         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
13956         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
13957
13958 2006-03-31  Jackson Harper  <jackson@ximian.com>
13959
13960         * ScrollableControl.cs: Dont recalc if we are not visible.
13961
13962 2006-03-31  Mike Kestner  <mkestner@novell.com>
13963
13964         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
13965         the visibility branch.
13966
13967 2006-03-31  Jackson Harper  <jackson@ximian.com>
13968
13969         * ScrollBar.cs: Cap values when incrementing/decrementing.
13970
13971 2006-03-31  Mike Kestner  <mkestner@novell.com>
13972
13973         * MenuAPI.cs: setup menu.tracker for popup/context menus.
13974         * ToolTip.cs: guard against timer expirations with no active control.
13975         Not sure why it happened.
13976
13977 2006-03-31  Mike Kestner  <mkestner@novell.com>
13978
13979         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
13980         text.
13981         * ToolTip.cs: Position the tooltip based on where the cursor is at
13982         popup time, not at MouseEnter time.  Add a Down state so that we don't
13983         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
13984         positioning offset. Lookup DisplaySize at positioning time, since it
13985         can theoretically change during invocation.
13986         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
13987         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
13988
13989 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
13990
13991         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
13992           Fixes behaviour when the Text property of the box is String.Empty
13993
13994 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
13995
13996         * XplatUIX11.cs: Only send mouseleave for our client windows, not
13997           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
13998           a window)
13999
14000 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14001
14002         * FileDialog.cs: Visual enhancement for the popup buttons in 
14003           PopupButtonPanel
14004
14005 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
14006
14007         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
14008           code
14009
14010 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
14011
14012         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
14013           highlighted menu items to match ms
14014
14015 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
14016
14017         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
14018
14019 2006-03-30  Mike Kestner  <mkestner@novell.com>
14020
14021         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
14022         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
14023         go active to account for HotLight to Selected transition.
14024         * MenuItem.cs: add internal Selected prop. Fill out the Status
14025         property by calculating it from item info. Add HotLight,
14026         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
14027
14028 2006-03-30  Mike Kestner  <mkestner@novell.com>
14029
14030         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
14031
14032 2006-03-29  Jackson Harper  <jackson@ximian.com>
14033
14034         * Form.cs: Implement TODO.
14035
14036 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
14037
14038         * PrintPreviewDialog.cs: Implemented missing methods and events; still
14039           missing proper dialog setup in the constructor
14040
14041 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
14042
14043         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
14044         * Control.cs:
14045           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
14046           - Fixed ResetBindings and removed TODO
14047           - Added check for cross-thread calls to get_Handle()
14048           - Added Marshaller attribute for set_Font to satisfy class status
14049         * FontDialog.cs: Removed TODOs that seemed implemented
14050         * UpDownBase.cs: Removed unneeded TODO and Fixme
14051         * MessageBox.cs: Implemented support for Default button and removed TODO
14052         * FileDialog.cs: Removed obsolete TODO
14053         * DomainUpDown.cs: Removed obsolete TODO
14054         * ButtonBase.cs: Removed obsolete TODO
14055         * XplatUIWin32.cs: Removed obsolete TODO
14056         * Form.cs:
14057           - Removed obsolete TODO
14058           - Calling CheckAcceptButton when the acceptbutton is changed to allow
14059             internal status updates
14060           - Making sure the active control is selected when the control is created
14061         * CurrencyManager.cs: Removed obsolete TODO
14062
14063 2006-03-29  Mike Kestner  <mkestner@novell.com>
14064
14065         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
14066         of PrintPreviewDialog and RichTextBox.
14067
14068 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14069
14070         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
14071           DarkDark, Light and LightLight colors for a specific color
14072         * ThemeWin32Classic.cs:
14073           - Use Button drawing code to draw RadioButtons and CheckBoxes with
14074             Appearance = Button 
14075           - Make use of the new ResPool helper CPColor
14076           - Draw ProgressBar and StatusBar with correct 3D borders
14077
14078 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
14079
14080         * ColorDialog.cs: Return selected color. Fixes bug #77940.
14081
14082 2006-03-28  Mike Kestner  <mkestner@novell.com>
14083
14084         * ListView.cs: fix Icon layout to plan for scrollbar widths when
14085         calculating col/row counts.
14086
14087 2006-03-28  Mike Kestner  <mkestner@novell.com>
14088
14089         * ColumnHeader.cs:
14090         * ListView.cs:
14091         * ListViewItem.cs:
14092         * Menu.cs: 
14093         switch to explicit interface method implementation for some methods
14094         corcompare identifies as inconsistent with MS.
14095
14096 2006-03-28  Mike Kestner  <mkestner@novell.com>
14097
14098         * MainMenu.cs: 
14099         * Menu.cs:
14100         add a few missing methods from the class status output.
14101
14102 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
14103
14104         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
14105           correct.
14106
14107 2006-03-28  Mike Kestner  <mkestner@novell.com>
14108
14109         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
14110
14111 2006-03-27  Mike Kestner  <mkestner@novell.com>
14112
14113         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
14114         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
14115
14116 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
14117
14118         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
14119
14120 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14121
14122         * ThemeWin32Classic.cs:
14123           - GroupBox: Inserted a little gap between the text and the lines
14124             on the right side
14125           - Made the code in CPDrawBorder3D more readable
14126           - Corrected the drawing location of the up and down arrows in 
14127             CPDrawScrollButton
14128
14129 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14130
14131         * ControlPaint.cs: Corrected line widths in DrawBorder for
14132           ButtonBorderStyle Inset and Outset
14133
14134 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14135
14136         * ThemeWin32Classic.cs:
14137           - Rewrote the totally broken CPDrawBorder3D method. That was
14138             one of the main problems for the terrific ThemeWin32Classic
14139             look
14140           - Updated and corrected Button drawing
14141           - Correct the dimensions of the SizeGrip to match ms ones
14142           - Removed a small drawing glitch in DrawComboBoxEditDecorations
14143         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
14144           Border3DStyle.Sunken to match ms.
14145
14146 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
14147
14148         * ThemeWin32Classic.cs: First small part of the "de-uglify
14149           ThemeWin32Classic" effort, SizeGrip
14150
14151 2006-03-24  Jackson Harper  <jackson@ximian.com>
14152
14153         * XplatUIX11.cs: Give a max idle time of one second, this matches
14154         MS and forces an Idle event every second when there are no other
14155         events in the queue.
14156
14157 2006-03-24  Mike Kestner  <mkestner@novell.com>
14158
14159         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
14160         * ListView.Item.cs: fix layout issues with null image lists and images
14161         smaller than checkbox size.
14162         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
14163         mode like MS does.  It's weird, but consistent.  ;-)
14164         Fixes #77890.
14165
14166 2006-03-24  Mike Kestner  <mkestner@novell.com>
14167
14168         * ListView.cs: Scroll wheel support for the item control.  Fixes
14169         #77839.
14170
14171 2006-03-23  Jackson Harper  <jackson@ximian.com>
14172
14173         * ScrollableControl.cs: Special case negative sized areas, not
14174         zero.
14175         * MonthCalendar.cs: Save the rect of the clicked date so we can
14176         use it for invalidation.
14177         - Try to cut down on the number of invalidates
14178         - Invalidate the rect the mouse is over and was over when moving
14179         the mouse, so we get the focus box following the cursor.
14180
14181 2006-03-23  Mike Kestner  <mkestner@novell.com>
14182
14183         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
14184         focus rectangle drawing. Fixes #77835.
14185
14186 2006-03-23  Mike Kestner  <mkestner@novell.com>
14187
14188         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
14189         the if and else if and reverting back to the original == check on the
14190         None conditional.
14191
14192 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14193
14194         * FontDialog.cs: Update the example panel if the selected index of
14195           the fontListBox changes.
14196
14197 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
14198
14199         * FileDialog.cs: Make FileDialog remember which directory it was in
14200           last in the same execution.
14201
14202 2006-03-22  Mike Kestner  <mkestner@novell.com>
14203
14204         * FileDialog.cs: make the DropDownMenu on the toolbar display
14205         RadioChecks since they are mutually exclusive and that's what MS does.
14206
14207 2006-03-22  Mike Kestner  <mkestner@novell.com>
14208
14209         * Theme.cs: add Color param to CPDrawMenuGlyph.
14210         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
14211         checks and radio marks and arrows are visible on highlighted items.
14212         * ControlPaint.cs: update to use new Theme signature.
14213
14214 2006-03-22  Mike Kestner  <mkestner@novell.com>
14215
14216         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
14217         is active. Fixes #77870.
14218
14219 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14220
14221         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
14222           to be focused/selected after startup
14223
14224 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
14225
14226         * ColorDialog.cs: 
14227           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
14228             CustomColors and ShowHelp properties
14229           - Some internal rewrites to get better results when using the
14230             ColorMatrix
14231
14232 2006-03-22  Mike Kestner  <mkestner@novell.com>
14233
14234         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
14235         HoverSelection.  Fixes #77836.
14236
14237 2006-03-22  Mike Kestner  <mkestner@novell.com>
14238
14239         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
14240         ToggleButtons.  (De)Sensitize the Back button around a stack count of
14241         1, not 0.  Update ButtonSize based on a pixel count of the win32
14242         control.  Adjust the toolbar size/location for new button size.
14243
14244 2006-03-22  Jackson Harper  <jackson@ximian.com>
14245
14246         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
14247         true.
14248         * ScrollBar.cs: When doing increments and decrements we need to
14249         set the Value property so that ValueChanged gets raised. A
14250         possible optimization here would be to make an internal SetValue
14251         that doesn't invalidate immediately.
14252         * ToolTip.cs: Tooltips get added to their container (when
14253         supplied) so they get disposed when the container is disposed.
14254         - Don't create tooltips for String.Empty. This prevents all these
14255         little 2-3 pixel windows from showing up when running nunit-gui
14256         and driving me mad.
14257         * Form.cs: Don't set topmost when setting the owner if the handles
14258         haven't been created yet.  The topmost set will happen when the
14259         handles are created.
14260
14261 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
14262
14263         * XplatUIX11.cs:
14264           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
14265           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
14266             visible (to allow them to recalculate their sizes)
14267
14268 2006-03-21  Mike Kestner  <mkestner@novell.com>
14269
14270         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
14271         methods. Removed a ton of redundant code.  Still not really happy with
14272         the border rendering, but I think that's mainly because of the
14273         ControlDarkDark being black instead of a dark grey. Depending on how 
14274         close we want to be, we might want to revisit those color choices.
14275         Among the new features added during the refactor were DropDownArrow
14276         pressed rendering, Disabled image rendering.  Proper flat appearance
14277         boundary rendering.  Removed the Divider and Wrapping dividers since I
14278         can't figure out any combination of themes and conditions to make the
14279         MS control draw a horizontal line on a toolbar despite what the
14280         Divider property docs indicate.
14281         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
14282         conditions and incorrect layout.  Updated to coding standard.
14283         * ToolBarButton.cs: refactored layout and positioning code from
14284         ToolBar to here.  Invalidate wherever possible instead of forcing
14285         redraws of the whole toolbar. 
14286         (Known remaining issues: explicit ButtonSize smaller than provided
14287         images.)
14288
14289 2006-03-21  Mike Kestner  <mkestner@novell.com>
14290
14291         * ContextMenu.cs (Show): use the position parameter instead of just
14292         showing at the MousePosition.
14293
14294 2006-03-21  Jackson Harper  <jackson@ximian.com>
14295
14296         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
14297         control handle this.
14298         * TreeNodeCollection.cs: If we are clearing the root node we need
14299         to reset top_node so calcs can still happen.
14300         * ThemeWin32Classic.cs: This is a Flags so we need to check
14301         properly.
14302         
14303 2006-03-21  Jackson Harper  <jackson@ximian.com>
14304
14305         * DataGrid.cs: Create columns when the binding context has been
14306         changed.
14307         * X11Structs.cs: Keysyms are uints.
14308         - Add size to fix build.
14309
14310 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
14311
14312         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
14313           XplatUIOSX.cs: 
14314           - Added ResetMouseHover method to allow controls to retrigger
14315             hovering if they need it more than once
14316           - Implemented MouseHoverTime and MouseHoverSize properties
14317         * Timer.cs: Start() must reset the interval
14318         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
14319           properties
14320
14321 2006-03-21  Jackson Harper  <jackson@ximian.com>
14322
14323         * X11Keyboard.cs: improved layout detection. Move the nonchar
14324         tables into this file.
14325         * KeyboardLayouts.cs: Move the tables into resource files.
14326
14327 2006-03-21  Mike Kestner  <mkestner@novell.com>
14328
14329         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
14330
14331 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
14332
14333         * Mime.cs: Various speed optimizations. Looking up mime types
14334           is now 2 times faster than before
14335
14336 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
14337
14338         * CreateParams.cs: Added internal menu field
14339         * Control.cs: 
14340           - Switched call order for UpdateBounds; now we always call
14341             the one that also takes ClientSize, and we're calculating the 
14342             client size via driver method in the others. The previous
14343             method of tracking client size by difference wasn't working
14344             for forms where even the starting client size wouldn't match
14345             the overall form size (due to borders) (Part of fix for #77729)
14346           - CreateParams(): Do not use parent.Handle unless the handle is
14347             already created. Causes havoc with Nexxia and throws off our
14348             creation of controls
14349         * XplatUIX11.cs:
14350           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
14351           - Switched handling of ConfigureNotify over to new PerformNCCalc 
14352             method (consolidates code)
14353           - Changed RequestNCRecalc to use new PerformNCCalc method
14354           - Added calls to RequestNCRecalc when menus and borders are changed
14355             to allow app to set NC size. (Part of fix for #77729) This matches
14356             when MS send a WM_NCRECALC on Win32 windows.
14357           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
14358             (Part of fix for #77729). This matches what MS does, they also
14359             send that message when the form is made visible.
14360           - XException.GetMessage: Improved usability of X errors by including
14361             a translation of the window into Hwnd and Control class
14362           - Improved debug info for window creation, reparenting and destruction
14363           - Created helper method WindowIsMapped() [Currently not used]
14364         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
14365         * Form.cs:
14366           - CreateParams: Now setting our menu on the new internal menu field
14367           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
14368             avoid calculating the same property twice
14369         * Hwnd.cs:
14370           - Improved usability of ToString() for debugging purposes
14371           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
14372             determine the height of the menu, instead of just the font. This
14373             required to also create a graphics context and to keep a bmp 
14374             around (for performance reasons)
14375
14376 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
14377
14378         * MenuAPI.cs: Added OnMouseUp method
14379         * Form.cs:
14380           - Now remembering the requested client size, avoids size errors
14381           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
14382             instead of base if the menu is active. This is required due to
14383             control now capturing and releasing on down/up and it would
14384             prematurely release our menu capture
14385
14386 2006-03-17  Jackson Harper  <jackson@ximian.com>
14387
14388         * KeyboardLayouts.cs: Add the czech layouts.
14389
14390 2006-03-16  Jackson Harper  <jackson@ximian.com>
14391
14392         * Control.cs: Use the viewport space when sizing not the controls
14393         client size, so things like ScrollableControl that effect the
14394         viewport size (when scrollbars are added) are computed correctly.
14395         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
14396         of ManagerEntrys.
14397         - Handle creating BindingManagers for null data sources.
14398         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
14399         source, otherwise when rows are added they are added to the 'fake'
14400         datasource and we will crash when trying to set the position in
14401         those rows.
14402         - Use Implicit scrollbars on the datagrid so they arent
14403         selectable.
14404         
14405 2006-03-16  Jackson Harper  <jackson@ximian.com>
14406
14407         * Binding.cs:
14408         * InternalWindowManager.cs:
14409         * MdiWindowManager.cs:
14410         * X11Keyboard.cs: I really want Mike to love me again (fix
14411         compiler warnings).
14412
14413 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
14414
14415         * DataGrid.cs:
14416           - OnMouseDown: Switch to editing mode when clicking on the cell
14417                          even if we're clicking on the cell that's currently 
14418                          selected
14419           - ProcessGridKey: Left/Right now wrap like MS.Net does
14420           - ProcessGridKey: Tab now knows to add a new row when tab is
14421                             pressed in the cell of the last column of the 
14422                             last row
14423           - ProcessGridKey: Enter now adds another row  if pressed in the last
14424                             row and selectes the new row, same column cell
14425           - ProcessGridKey: Home/End navigate columns, not rows, like 
14426                             originally implemented
14427           - Broke ProcessKeyPreview code out into an extra Internal method
14428             so it can be called from the edit code
14429         * DataGridTextBox.cs (ProcessKeyMessage):
14430           - Switched to accept Tab keypresses
14431           - Added F2 handling to allow jumping to the end of the edited cell
14432           - Added logic to allow moving caret left/right inside edited cell
14433             and making the edited cell jump when the caret hits cell borders
14434           - Tab and Enter are now passed to the datagrid after being handled
14435         * TextBoxBase.cs:
14436           - Removed capture code now that Control handles it
14437           - set_SelectionStart now ensures caret is visible
14438
14439 2006-03-16  Jackson Harper  <jackson@ximian.com>
14440
14441         * TrackBar.cs: Debackwards the increment/decrement for handling
14442         mouse clicks on the bar with vertical trackbars.
14443         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
14444         bottom to match MS.
14445
14446 2006-03-16  Mike Kestner  <mkestner@novell.com>
14447
14448         * ListView.cs: make shift/ctrl keyboard and mouse selection 
14449         consistent with the MS control. Fix a bug in
14450         SelectedListViewItemCollection.Clear that was pissing me off for the
14451         better part of a day because the collection was being altered
14452         underneath us as we walked the list.
14453
14454 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
14455
14456         * Control.cs: Not sure how we could miss this so long, but it seems
14457           that MS.Net has Capture set all the way from before calling 
14458           OnMouseDown through sending the mouse events until after
14459           OnMouseUp. This will fix DataGrid's selection being set to end
14460           at the location of the MouseUp.
14461
14462 2006-03-15  Jackson Harper  <jackson@ximian.com>
14463
14464         * BindingContext.cs: Check the binding after its added so that it
14465           can initialize the binding managers and hookup to events.
14466         * Binding.cs: Data members seem to sometimes include rows/cols in
14467           the format Row.Column we now take this into account.
14468           - Hookup to the position changed event so we can update the
14469           control when the position has changed in the data set.
14470         * CurrencyManager.cs: Take into account the row/col naming
14471           convention when creating dataset tables.
14472         * BindingContext.cs: Using a newer better way of storing
14473           datasource/datamember pairs.  Hopefully this better matches MS for
14474           looking up binding managers.
14475
14476
14477 2006-03-15  Jackson Harper  <jackson@ximian.com>
14478
14479         * BindingContext.cs: The currency manager needs the data member
14480         name, if the member is a data set we use the name to find the
14481         correct table.
14482         * CurrencyManager.cs: When creating the list prefer an IList over
14483         an IListSource.
14484         - Attempt to create a DataTable from a DataSet (TODO: might need
14485         some better error checking here, although MS doesn't seem to have much)
14486         - If we have a DataTable create a view and use it as our list.
14487
14488 2006-03-15  Mike Kestner  <mkestner@novell.com>
14489
14490         * ListView.cs: keep a matrix of the icon mode layout to facilitate
14491         keyboard navigation. Support Up/Down/Left/Right selection correctly
14492         for all 4 View modes.
14493         * ListViewItem.cs: add internal row/col fields for icon layouts.
14494
14495 2006-03-15  Jackson Harper  <jackson@ximian.com>
14496
14497         * TabControl.cs: Redraw the tabs when we resize so their newly
14498         calculated sizes are drawn on screen.
14499         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
14500         composite characters.
14501         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
14502         - filter events so that composite characters can be created
14503         patches by peter
14504         * X11Structs.cs: Add XIMProperties enum.
14505
14506 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14507
14508         * Control.cs (BringToFront, SendToBack): Don't use window or handle
14509           unless it's created
14510
14511 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14512
14513         * Control.cs (PerformLayout): We don't need to consider visiblity
14514           for anchoring, only for docking. This fixes 'whacky' alignment
14515           in listbox and other controls that use implicit scrollbars after
14516           the previous PerformLayout patch
14517         * ListBox.cs: Switched to use implicit scrollbars
14518           
14519 2006-03-14  Mike Kestner  <mkestner@novell.com>
14520
14521         * ToolBar.cs: 
14522         * VScrollBar.cs:
14523         - chain up the "new event" overrides to base and use
14524         OnEvent to raise them.  Part of fix for bug #76509.
14525
14526 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
14527
14528         * FileDialog.cs: Do not select an item in the parent directory
14529           on backspace
14530
14531 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
14532
14533         * Control.cs (PerformLayout): It would seem that we considered
14534           invisible windows for our layout. Not quite the right thing
14535           to do. Now we don't any longer, thereby fixing bug #76889.
14536
14537 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
14538
14539         * Control.cs (CanFocus): I goofed. A control can have focus 
14540           even though it's not selectable. Made it match MS docs.
14541
14542 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14543
14544         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
14545           center by default (fixes #76895)
14546         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
14547           all uses of Border3DSides.All with the explicit ORd together
14548           Left|Right|Top|Bottom because I assume that nobody was aware 
14549           that All also implies a center fill. Most places I checked had
14550           a fill right above.
14551         * ProgressBarStyle.cs: Added
14552
14553 2006-03-13  Mike Kestner  <mkestner@novell.com>
14554
14555         * ListView.cs: fix breakage in drag shadow header positioning 
14556         from Peter's csc compilation fix.
14557
14558 2006-03-13  Mike Kestner  <mkestner@novell.com>
14559
14560         * ListView.cs: fix NRE produced by backspacing twice in a focused
14561         FileDialog.
14562
14563 2006-03-13  Mike Kestner  <mkestner@novell.com>
14564
14565         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
14566
14567 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14568
14569         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
14570           be changed
14571         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
14572           the allowed size before making programmatic size changes
14573
14574 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
14575
14576         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
14577           set, metacity is broken and will still use the emty sizes in 
14578           the struct. (Fix for #77089)
14579
14580 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
14581
14582         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
14583           WindowExStyles and marked both enums as Flags
14584         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
14585           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
14586           to match WindowStyles split
14587         * XplatUIX11.cs:
14588           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
14589           - Updated to match WindowStyles split
14590         * XplatUIWin32.cs:
14591           - Fixed FosterParent creation, was using ExStyle on the Style field
14592             (This should help with Popup focus issues)
14593           - Updated to match WindowStyles split
14594
14595 2006-03-13  Jackson Harper  <jackson@ximian.com>
14596
14597         * MdiWindowManager.cs: Use the system menu height. Fixes some
14598         strange sizing issues.
14599
14600 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14601
14602         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
14603         * TextBoxBase.cs:
14604           - Scroll to caret after inserting text (#77672)
14605           - Make scroll range one pixel higher, fixes off-by-one error (and
14606             makes underlines visible on the last line)
14607
14608 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
14609
14610         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
14611           the keyboard state from being stuck with keys in 'pressed' state when
14612           focus is switched away via keyboard
14613         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
14614           reset the keyboard if no X11 KeyUp events are expected to come
14615         * X11Structs.cs: Switched type of Visible to bool to match driver
14616
14617 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
14618
14619         * TextControl.cs:
14620           - Switched caret to be just 1 pixel wide, matches MS and looks less
14621             clunky
14622           - Moved caret display 1 pixel down from the top of the control
14623             to improve view
14624           - InsertCharAtCharet: Update the selection start if moving the caret
14625             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
14626           - No longer always creating the caret when the caret methods are
14627             called. Only the actual ShowCaret/HideCaret will do that now
14628           - Only setting caret visible if the owner control has focus
14629           - UpdateView: Added invalidation-shortcut logic for center and right 
14630             aligned text. Previously we'd update all according to the left
14631             logic which caused drawing errors. Also fixed height of invalidated
14632             areas, now properly invalidating the whole area (was off-by-one)
14633           - owner_HandleCreated: Always generate the document when the
14634             handle is created; this ensures that 
14635         * TextBoxBase.cs:
14636           - Fixed situation where caret would disappear under the right
14637             window border, also improved scrolling behaviour on left-
14638             aligned textboxes
14639           - Fixed right-aligned textboxes to have a border to the
14640             right instead of the caret being under the right border
14641         * XplatUIX11.cs:
14642           - Switched from 'nested' to simple visible/not visible tracking 
14643             for caret (part of fix for #77671)
14644           - No longer passing through translated FocusIn/FocusOut messages
14645             since we were notifying too often and the wrong windows. Instead
14646             we just notify our focussed window of receiving or loosing focus
14647         * XplatUIWin32.cs: Switched from 'nested' show/hide 
14648           counting for caret to simple visible yes/no behaviour (part of 
14649           fix for #77671)
14650
14651 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
14652
14653         * Mime.cs: Remove debug code...
14654
14655 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
14656
14657         * MimeGenerated.cs: Removed
14658         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
14659           and subclasses) from /usr/(local/)share/mime and
14660           $HOME/.local/share/mime.
14661
14662 2006-03-10  Jackson Harper  <jackson@ximian.com>
14663
14664         * MdiWindowManager.cs: Recalc the NC area when a window is
14665         maximized/restored so that the menu area is drawn on forms that
14666         don't have a menu.
14667
14668 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14669
14670         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14671           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
14672           us to force a WM_NCCALCRESIZE message being sent. This is needed
14673           for MDI maximizing.
14674
14675 2006-03-10  Jackson Harper  <jackson@ximian.com>
14676
14677         * Form.cs: We need to use the ActiveMenu when calculating menu
14678         height.
14679         - Fix nullref when the window manager hasn't been created yet.
14680         * Control.cs: Fix nullref when we try to bring a control to the
14681         front that has no parent.
14682         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
14683         height.
14684         - Add a dummy item to the maximized menu so it always has the
14685         correct height. Otherwise when there are no menus we don't get our
14686         icon and buttons.
14687         
14688
14689 2006-03-10  Jackson Harper  <jackson@ximian.com>
14690
14691         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
14692         stuff.
14693         * Form.cs: Make the window_state internal so the window managers
14694         can track it.
14695         - When an MDI child is maximized let its window manager create the
14696         main menu (so it can add its icon).
14697         - Notify the window managers of state changes
14698         - Let the window manager paint its buttons and handle button
14699         clicks on the menu when it is maximized.
14700         * InternalWindowManager.cs: Move the prev_bounds into the mdi
14701         window manager, since tool windows don't use it, only mdi windows.
14702         - Tell the main form that we don't want it to handle NCPAINT
14703         itself to avoid extra painting.
14704         - Handle clicks on a maximized windows menu.
14705         - Handle window state changes
14706         - Handle minimize/maximize clicks correctly by setting the window state.
14707         * MdiWindowManager.cs: Add an icon menu that (the menu you get
14708         when clicking on the forms icon).
14709         - New method to create a forms maximized menu. This is its normal
14710         menu + an icon.
14711         - Handle window state changes.
14712         - Handle sizing of maximized windows.  Maximized windows are just
14713         drawn bigger then the parent visible area. All controls are still
14714         there, they are just outside the visible area (this matches windows).
14715         * MdiClient.cs: No scrollbars when a child window is maximized.
14716         - Let the children windows figure out how big they should be when
14717         sizing maximized windows.
14718         - Implement a version of ArrangeIconicWindows somewhat similar to
14719         Windows version.  There are some little differences, but I don't
14720         think any app will rely on the layout of minimized mdi windows.
14721
14722 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14723
14724         * Padding.cs: Several fixes to allow compiling with csc 2.0
14725
14726 2006-03-09  Jackson Harper  <jackson@ximian.com>
14727
14728         * Menu.cs:
14729         * MenuItem.cs: Cheap hack so we can add items to the list without
14730         the events being raised.  This allows adding mdi items during
14731         drawing. TODO: Should probably find a better time to add the items.
14732
14733 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14734
14735         * ThemeWin32Classic.cs:
14736           - CheckBox_DrawText: Added logic to not wrap if not enough space
14737             is available (Fix for bug #77727)
14738           - RadioButton_DrawText: Added logic not to wrap if not enough
14739             space is available (Fix for bug #77727). Also removed some
14740             duplicate code, DrawString always drawing the regular text
14741             before hitting the if statement.
14742
14743 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
14744
14745         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
14746
14747 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
14748
14749         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
14750         * ContainerControl.cs: Partial implementation of some 2.0 scaling
14751           methods. Moved the new 2.0 properties into alphabetical order with
14752           other properties and added MonoTODO tags
14753
14754 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14755
14756         * AutoScaleMode.cs: Added. Fix build.
14757
14758 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14759
14760         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
14761           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
14762           and was requiring premature handle creation for calls from above
14763         * Form.cs, Control.cs: Removed handle arguments from calls to
14764           CalculateClientRect()
14765
14766 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14767
14768         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
14769           drag_column.column_rect is MarshalByRef and can't be used that way
14770
14771 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14772
14773         * AxHost.cs: Added deserialization constructor for 
14774           AxHost+State (fixes 77743)
14775
14776 2006-03-09  Mike Kestner  <mkestner@novell.com>
14777
14778         * ListView.cs: 
14779         - Added column drag reordering for details view.
14780         - fixed behavior when mouse is dragged off column and
14781         AllowColumnReorder is false.
14782         * ColumnHeader.cs: clone the format too in Clone.
14783         * Theme.cs: add DrawListViewHeaderDragDetails method.
14784         * ThemeWin32Classic.cs:
14785         - impl new method for drawing drag column shadows and targets.
14786         - support column offset for details mode in DrawListViewItem.
14787
14788 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14789
14790         * TextControl.cs: Reset the char_count when the document is cleared
14791           (Fixes bug reported on mono-winforms mailing list)
14792
14793 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14794
14795         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
14796           of calling base we simply process the key ourselves, since both
14797           DefWindowProc and the handled method would set m.Result. 
14798           (Fixes #77732)
14799
14800 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14801
14802         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
14803           method also moves the window; instead implemented a copy of
14804           Control.ScaleCore (Part of fix for #77456)
14805         * TextBoxBase.cs: 
14806           - Created new CreateGraphicsInternal method to allow providing
14807             a graphics context when no handle is created without triggering
14808             handle creation. (Part of fix for #77456)
14809           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14810         * TextControl.cs: 
14811           - Switched Constructor to require TextBoxBase instead of Control (to
14812             allow uncast access to CreateGraphicsInternal)
14813           - Safeguarded use of owner.Handle property. No longer accessing it
14814             unless the handle is already created.
14815           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14816           - Now triggering a recalc when owning control becomes visible
14817         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
14818           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
14819           premature handle creation (Part of fix for #77456)
14820         * Control.cs:
14821           - We now only destroy our double-buffering buffers when the
14822             control is resized or disposed, but not when visibility
14823             changes. (The code even re-created them twice every time)
14824           - Now requiring a redraw of the buffer on visibility changes
14825             (fixes bug 77654 part 2)
14826           - Not passing OnParentVisibleChanged up unless the control
14827             is visible
14828           - CanFocus: Fixed to match MS documentation
14829           - Focus: Fixed to return actual focus state and to check if
14830             setting focus is legal before setting it
14831
14832 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
14833
14834         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
14835           when to draw focus rectangle by looking at parent focus and
14836           selected state instead. This fixes TabPages on Linux sometimes
14837           having none or multiple focus rectangles.
14838         * XplatUIX11.cs (SetFocus): 
14839           - Don't set the focus if the same window already has focus
14840           - Use SendMessage instead of PostMessage (like it's Win32
14841             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
14842             to match MS behaviour
14843         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
14844           are not selectable.
14845
14846 2006-03-07  Jackson Harper  <jackson@ximian.com>
14847
14848         * PictureBox.cs: Revert line I accidently committed last week.
14849
14850 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
14851
14852         * Control.cs: 
14853           - Added new IsRecreating and ParentIsRecreating properties to
14854             allow testing if RecreateHandle has been called on ourselves
14855             or one of our parents
14856           - WndProc(WM_DESTROY): If our control handle is being recreated
14857             we immediately need to create the handle when receiving the
14858             destroy, that way our child windows find a valid parent handle
14859             when they themselves are being recreated upon WM_DESTROY receipt
14860             (fix for bug #77654 part 1)
14861         * XplatUIX11.cs:
14862           - DestroyWindow: WM_DESTROY must be sent to our own window before
14863             notifying any child windows. MS documents that child windows
14864             are still valid when WM_DESTROY is received. (Control now relies on
14865             this behaviour)
14866           - Added some fine-grain debug options
14867
14868 2006-03-06  Jackson Harper  <jackson@ximian.com>
14869
14870         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
14871         box and base calculations off this.
14872         * MdiChildContext.cs:
14873         * MdiWindowManager.cs: Don't need to ensure scrollbars here
14874         anymore.
14875         
14876 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
14877
14878         * Splitter.cs: In situations where the affected control is added
14879           to the parent's control list after the splitter, we would not
14880           populate affected. Now we try populating it on mousedown, if
14881           it's not already set, and force it to be re-set whenever our
14882           parent changes.
14883
14884 2006-03-03  Matt Hargett  <matt@use.net>
14885
14886         * Control.cs: implement Control.Padding
14887         * Padding.cs: -Padding.All returns -1 when constructing with the
14888         implicit default ctor
14889         -Padding.ToString() matches MS.NET
14890         * ContainerControl.cs: implement
14891         ContainerControl.AutoScaleDimensions
14892         * ListControl.cs: implement ListControl.FormattingEnabled
14893         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
14894         * ButtonBase.cs:
14895         * TabPage.cs: Implement UseVisualStyleBackColor.
14896         * PictureBox.cs: Implement PictureBox.InitialImage.
14897
14898 2006-03-03  Mike Kestner  <mkestner@novell.com>
14899
14900         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
14901         event declarations to proxy to base event.
14902         * ListViewItem.cs: update to use ItemControl.
14903         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
14904         * ThemeWin32Classic.cs: update to new ListView theme API and fix
14905         column header label rendering for 0 width columns.
14906
14907 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
14908
14909         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
14910           that causes the control to be created. Fixes #77476.
14911
14912 2006-03-02  Jackson Harper  <jackson@ximian.com>
14913
14914         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
14915         expose_pending.
14916
14917 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
14918
14919         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
14920           passed in for the EventArgs (fixes #77690)
14921
14922 2006-03-01  Jackson Harper  <jackson@ximian.com>
14923
14924         * ScrollBar.cs: Refresh afterbeing resized.
14925
14926 2006-02-28  Mike Kestner  <mkestner@novell.com>
14927
14928         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
14929         Clean up a tracker compile warning.
14930         * MenuItem.cs: add internal PerformPopup method.
14931         [Fixes #77457]
14932
14933 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
14934
14935         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
14936           implicit expose) when the text is set to null
14937
14938 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
14939
14940         * RichTextBox.cs (FlushText): When newline is true, we always
14941           need to split the line, even if no text is on it and we may
14942           never eat newlines. (Fixes #77669)
14943
14944 2006-02-28  Mike Kestner  <mkestner@novell.com>
14945
14946         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
14947         and set Selected instead.
14948         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
14949         collections.
14950
14951 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
14952
14953         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
14954
14955 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
14956
14957         * FontDialog.cs:
14958           - Got rid of the panel. All controls are now directly added to
14959             the dialog form
14960           - It is now possible to set a font with the Font property
14961           - MinSize and MaxSize property do now what they should
14962           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
14963           - Searching and selecting a font with the font textbox works now,
14964             the same applies to the style and size textbox
14965           - Draw the correct 3D border in the example panel
14966           - Fixed a little mem leak (unused fonts didn't get disposed)
14967           - Many other internal updates/rewrites...
14968           - Fix typo
14969
14970 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
14971
14972         * TextControl.cs: 
14973           - InsertRTFFromStream: Added 'number of characters inserted' argument
14974           - set_SelectedRTF: Now using the number of characters to calculate
14975             the new location for the selection and cursor (x/y cannot be used
14976             due to potentially already wrapped text)
14977
14978 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
14979
14980         * TextControl.cs: Added property and implemented means to allow 
14981           disabling recalculation of a document (can be used to speed up
14982           multiple inserts and is needed to make RTF inserts predictable, see
14983           bug #77659)
14984         * RichTextBox.cs: Using the new NoRecalc property of Document to
14985           keep x/y insert locations predictable. Also makes it faster inserting
14986           large chunks of RTF
14987
14988 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
14989
14990         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
14991           it's easier for a child control to handle the other messages without
14992           having to duplicate the special functionality
14993         * TextBoxBase.cs
14994           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
14995             code to handle processing the key ourselves, in order to get 
14996             access to the result of KeyEventArgs.Handled. We now only call 
14997             ProcessKey if they key hasn't been handled already. Fixes #77526.
14998           - set_Text: If null or empty string is given, just clear the 
14999             document. Fixes part of #77526
15000
15001 2006-02-27  Jackson Harper  <jackson@ximian.com>
15002
15003         * SizeGrip.cs: Paint the background color before painting the grip
15004         so things look right.
15005         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
15006
15007 2006-02-27  Mike Kestner  <mkestner@novell.com>
15008
15009         * ListView.cs:
15010           - Restructure layout and invalidation model to remove a ton of
15011           flicker from the control and speed up performance in general.
15012           - Add manual column resize, flickers like crazy, but I already have
15013           some ideas on how I'll fix that. (#76822)
15014           - Merge the three Icon-based views into a single layout method.
15015           - Move item selection interaction logic from the item since 
15016           interaction with the collections is more appropriate to the view.
15017           - Deselection on non-item clicks.
15018         * ListViewItem.cs:
15019           - Encapsulate most of the layout. Add some internal props to trigger
15020           layout.  Move to a model where Items invalidate themselves instead
15021           of just invalidating the whole control every time something changes.
15022           - Invalidate on Text/Caption changes.
15023           - switch to an offset based layout model to avoid having to absolute
15024           position every element on item moves.
15025           - correct checkbox layout to conform to MS layout.
15026         * ThemeWin32Classic.cs:
15027           - refactor some column header drawing code.
15028           - fix string justification for column headers (#76821)
15029           - make SmallIcon labels top justified for compat with MS impl.
15030         * ThemeClearlooks.cs:
15031           - adjust to new ListViewItem internal checkbox bounds api.
15032
15033 2006-02-27  Jackson Harper  <jackson@ximian.com>
15034
15035         * Control.cs:  Change where implicit controls fall in the zorder.
15036         They are now on top of all children.
15037         - Synced AddImplicit code with Add
15038         - Removed unused enumerator.
15039         * SizeGrip.cs: Remove the TODO as its been TODONE.
15040
15041 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
15042
15043         * TextControl.cs(Insert): Combine the last lines unless the insertion
15044           string ends with \n\n, otherwise we leave one line too many (Fixes
15045           something I noticed with the testapp for #77526; the bug itself was
15046           already fixed in the previous checkin)
15047
15048 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
15049
15050         * RichTextBox.cs:
15051           - SelectionColor and SelectionFont methods no longer set absolute
15052             styles. Instead, the keep font or color respectively (This 
15053             resolves a long-standing FIXME in the code)
15054           - When flushing RTF text, the insert code now considers text trailing
15055             behind the insertion point (Fixes the bug where when replacing
15056             the selected text via SelectedRTF the remainder of the line behind 
15057             the selection would stay on the first insertion line)
15058         * TextBoxBase.cs:
15059           - AppendText now updates the selection points after inserting text
15060           - AppendText now ensures that the last tag (sometimes 0-length) of
15061             the document is used for the style information (Fixes part of 
15062             bug #77220)
15063         * TextControl.cs:
15064           - Created new FontDefiniton class to allow describing partial style
15065             changes
15066           - StreamLine() now takes a lines argument, to allow it to decide
15067             whether an encountered zero-length tag is the last in the document
15068             (which must be kept to not loose the font/color contained in it,
15069             for later appends)
15070           - Created Combine() and Split() methods for Marker structs, to 
15071             support marker updates due to reformatted documents (soft line
15072             wraps)
15073           - Implemented Document.CaretTag setter
15074           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
15075             of the last line (Not the cause, but also exposed by bug #77220)
15076           - Added LineTag argument to InsertString method, to allow callers
15077             to force a certain tag to be used (required to force use of the
15078             trailing zero-length tag of a document)
15079           - Now updating markers in Combine(), to avoid stale tag markers
15080           - Added some method descriptions to aid maintenance
15081           - Implemented new FormatText concept, allowing additive/subtractive
15082             formatting by only specifying the components that are to be 
15083             changed. This was needed for resolving the RTB.SelectedColor/
15084             RTB.SelectedFont fixmes
15085           - Added Break() support method to allow breaking up linetags (used
15086             for partial formatting)
15087           - Added GenerateTextFormat() method. It is used for partial 
15088             formatting and allows to generate a full font/color from given
15089             attributes and an existing tag.
15090
15091 2006-02-26  Jackson Harper  <jackson@ximian.com>
15092
15093         * XplatUIX11.cs:  Use the correct caption height.
15094         - Translate hittest coordinates to screen coords to match MS.
15095         * XplatUIWin32.cs: When we create MDI windows we need to reset
15096         some of the style flags, so we get a nice blank window, and can
15097         draw all the decorations ourselves.
15098         - Set a clipping rectangle on the non client paint event, the
15099         window manager drawing code needs one.
15100         * Form.cs: The window manager needs to know when the window state
15101         has been updated.
15102         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
15103         don't need to factor in border and title sizes in these
15104         methods. TODO: Remove the args and fix the call points.
15105         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
15106         properly.
15107         - Let the driver set the cursors.
15108         - Improve active window handling
15109         - Correct sizes for title bars and buttons.
15110         - Match MS drawing better
15111         * MdiWindowManager.cs: We don't need to handle border style
15112         updates specially anymore.
15113         - Check for scrollbars when windows are done moving
15114         - Handle Active properly.
15115         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
15116         correctly. I am spewing the exception though, so we don't hide the
15117         bugs.
15118         
15119 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
15120
15121         * DataGridViewRowPostPaintEventArgs.cs,
15122           DataGridViewCellPaintingEventArgs.cs,
15123           DataGridViewRowCollection.cs,
15124           DataGridViewRowPrePaintEventArgs.cs,
15125           DataGridViewCell.cs: Clear a few warnings and implement a few
15126           exceptions that should be thrown.
15127
15128 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15129
15130         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
15131           'inheriting' our parent's (non-default) cursor. (Part of
15132            the fix for #77479)
15133
15134 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
15135
15136         * XplatUIX11.cs: Fixed cast to make csc happy
15137
15138 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
15139
15140         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
15141           it's for the client area (part of fix for #77479 and needed
15142           for MDI window cursor handling)
15143         * XplatUIX11.cs
15144           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
15145             the appropriate default cursors and also passing the message
15146             up the parent chain 
15147           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
15148             for non-client areas
15149
15150 2006-02-15  Jackson Harper  <jackson@ximian.com>
15151
15152         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
15153         is a real MDI window
15154
15155 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
15156
15157         * X11DesktopColors.cs: Instead of checking the desktop session
15158           string for "KDE" check if it starts with "KDE"
15159
15160 2006-02-10  Jackson Harper  <jackson@ximian.com>
15161
15162         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
15163         systems).
15164
15165 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15166
15167         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
15168           errors
15169         * ColorDialog.cs:
15170           - Got rid of the panel. All controls are now directly added to
15171             the dialog form
15172           - Changed to mono coding style
15173
15174 2006-02-10  Jackson Harper  <jackson@ximian.com>
15175
15176         * InternalWindowManager.cs: We don't need the set visibility to
15177         false hack anymore now that peter has written beautiful shutdown
15178         code.
15179
15180 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
15181
15182         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
15183           where already explicitly destroyed
15184
15185 2006-02-10  Jackson Harper  <jackson@ximian.com>
15186
15187         * MdiClient.cs: Handle the case where windows are too high or to
15188         the left and we need scrollbars.
15189
15190 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
15191
15192         * MimeIcon.cs: Added some icons
15193         * FileDialog.cs:
15194           - Fixed bug #77477
15195           - Got rid of the panel. All controls are now directly added to
15196             the dialog form
15197           - Changed to mono coding style
15198           - On Linux "My Computer" and "My Network" will now show some
15199             more usefull information. A new class, MasterMount, gathers
15200             this information from /proc/mount. Updated MWFFileView to make
15201             use of this information
15202           - Fixed a bug that caused FileDialog to crash when
15203             ".recently_used" file had a zero size
15204           - FilterIndex does now what it should
15205           - Some Refactoring
15206         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
15207             FileDialog changes
15208
15209 2006-02-09  Jackson Harper  <jackson@ximian.com>
15210
15211         * ComboBox.cs: Don't touch if null.
15212
15213 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
15214
15215         * Cursor.cs: 64bit safeness fix
15216         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
15217
15218 2006-02-09  Jackson Harper  <jackson@ximian.com>
15219
15220         * Form.cs: If a form is made into an MDI form update the styles so
15221         all the props can get set correctly.
15222         - Kill the mdi_container when we dont need it anymore.
15223         * InternalWindowManager.cs: Add missing NOT
15224
15225 2006-02-08  Jackson Harper  <jackson@ximian.com>
15226
15227         * InternalWindowManager.cs: Respek clipping when drawing MDi
15228         decorations.
15229
15230 2006-02-08  Jackson Harper  <jackson@ximian.com>
15231
15232         * Hwnd.cs: Add bits to track non client expose events.
15233         * XplatUIX11.cs: Track non client expose events on the hwnd. This
15234         gives us a proper invalid rect and will allow for some nice
15235         optimizations with NC client drawing
15236         - MDI windows are children windows, so move their style handling
15237         into the child window block.
15238         * InternalWindowManager.cs: Remove a state reset that was
15239         getting invoked at the wrong time. Fixes managed windows getting
15240         into a 'stuck' captured state.
15241
15242 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15243
15244         * TextControl.cs (Document.ctor): Now initializing 
15245           selection_anchor. Fixes #77493
15246
15247 2006-02-07  Jackson Harper  <jackson@ximian.com>
15248
15249         * TrackBar.cs: The increment/decrements were backwards.
15250
15251 2006-02-07  Mike Kestner  <mkestner@novell.com>
15252
15253         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
15254         to the instance itself.
15255
15256 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
15257
15258         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
15259           on ulongs and pointers, the size differs between 32bit and 64bit
15260           systems. 
15261
15262 2006-02-07  Mike Kestner  <mkestner@novell.com>
15263
15264         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
15265         for 64 bit platforms to work around a metacity bug. 
15266
15267 2006-02-07  Jackson Harper  <jackson@ximian.com>
15268
15269         * TrackBar.cs: Process the input keys we need, and hookup to
15270         KeyDown instead of using WndProc, so we get key messages.
15271
15272 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
15273
15274         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
15275           machine we're on. 
15276         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
15277           we need to translate the XdndVersion atoms array before sending it
15278
15279 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
15280
15281         * XplatUIX11.cs: 
15282           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
15283             number of bits for the property, not the number of bytes. The
15284             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
15285             but would not crash since it specified 8 bits instead of 4 bits)
15286           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
15287             defined as XID -> long in the C headers)
15288           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
15289             references since those are now IntPtr to begin with
15290           - Switched all Atom.XXX 'int' casts to IntPtr casts
15291           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
15292           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
15293           - Added XChangeActivePointerGrab DllImport (for X11DnD)
15294         * X11Structs.cs:
15295           - Changed 'int' type for Atoms in XEvent structures to IntPtr
15296           - Changed atom in HoverStruct to be IntPtr
15297         * X11DnD.cs:
15298           - Removed local DllImports, switched code to use those from XplatUIX11
15299           - Removed/fixed casts related to the switch of Atom to be a IntPtr
15300
15301 2006-02-06  Mike Kestner  <mkestner@novell.com>
15302
15303         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
15304         method signatures in the import region.  There may still be some
15305         lingering struct marshaling issues, as I didn't drill down into those.
15306         Yet.
15307
15308 2006-02-06  Jackson Harper  <jackson@ximian.com>
15309
15310         * ComboBox.cs: Dont manually set the top_item, this is computed
15311         when the scrollbar position is set.
15312
15313 2006-02-06  Mike Kestner  <mkestner@novell.com>
15314
15315         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
15316         startup crashes on amd64.  There's other fixes needed.  All pinvoke
15317         usage of Atom needs to be mapped to IntPtr for example.  And there are
15318         likely other int/long issues to be addressed.
15319
15320 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
15321
15322         * FileDialog.cs: One more...
15323
15324 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15325
15326         * FileDialog.cs: Next try
15327
15328 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15329
15330         * FileDialog.cs: First part of fix for #77464
15331
15332 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
15333
15334         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
15335           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
15336           AcceptButton border drawing.
15337
15338 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
15339
15340         * Form.cs: Moved positioning of form after auto scaling is applied,
15341           otherwise it would possibly use wrong form size.
15342
15343 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
15344
15345         * Control.cs (RecreateHandle): No need to re-create any child
15346           controls, the child windows will get destroyed automatically by
15347           the windowing system or driver, and re-created when the handle
15348           is being accessed the first time. Fixes #77456
15349         * Form.cs: No longer setting the form to closing if the handle is 
15350           being recreated. This seems like the right thing to do, don't
15351           have a bug or testcase for this, though.
15352
15353 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15354
15355         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
15356           controls to avoid unwanted side effects
15357
15358 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
15359
15360         * Control.cs: 
15361           - ScaleCore needs to scale the bounds, not the ClientSize of the 
15362             control. Fixes #77416.
15363           - DefaultSize is 0,0 for control
15364         * TextBoxBase.cs: 
15365           - DefaultSize is 100, 20
15366           - SetBoundsCore: Now enforcing the height, no matter if the provided
15367             height is more or less than the preferred one, as long as AutoSize
15368             is on
15369         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
15370
15371 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
15372
15373         * Control.cs:
15374           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
15375             call unless both performLayout is true *and* we have a pending
15376             layout change
15377           - ResumeLayout: MS does not completely nest Suspend and Resume,
15378             they bottom out at 0, fixed our code to match that.
15379           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
15380             SetBoundsCore, we were updating even when we shouldn't. This fixes
15381             swf-anchors mis-anchoring when resizing the app fast and lots.
15382           - UpdateDistances: Now only setting the left and top distance if 
15383             we have a parent and are not suspended, this is based on
15384             a suggestion by Don Edvaldson in bug #77355.
15385           - OnVisibleChanged: Fixed logic when to create the control. We may
15386             not create the control if we have no parent or if it's not visible;
15387             switched to using Visible property instead of is_visible field 
15388             since the property also considers parent states. This fixes a bug
15389             when starting Paint.Net
15390
15391 2006-02-02  Jackson Harper  <jackson@ximian.com>
15392
15393         * Form.cs: If the forms handle hasn't been created yet don't call
15394         into xplatui to make it top most, just set the topmost flag on the
15395         form in CreateParams
15396         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
15397
15398 2006-02-01  Jackson Harper  <jackson@ximian.com>
15399
15400         * ScrollableControl.cs: Refactored the Recalculate method a
15401         little, this wasn't handling all the variants of bottom and right
15402         bars needed to be added and added/removed based on their
15403         counterparts being added/removed (which changes the drawable
15404         size). Also we special case client widths and heights of 0 and
15405         don't add the scrollbar for those.
15406
15407 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
15408
15409         * XplatUIX11.cs: 
15410           - Added method to get AbsoluteGeometry(); currently unused, but might
15411             be used in the future, if we try again to figure out toplevel
15412             coordinates with some more crappy window managers
15413           - Added FrameExtents() method to retrieve the WM set decoration size
15414           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
15415             to deal with at least KDE, FVWM and metacity (Fixes #77092)
15416         * Hwnd.cs: 
15417           - Added whacky_wm tracking var for metacity
15418           - Added logic to have default menu height if the actual menu height
15419             has not yet been calculated (part of fix for #77426)
15420         * Form.cs: Keep track whether client size has been set and re-set 
15421           it if a menu is added/removed afterwards (Fixes #77426)
15422
15423 2006-01-31  Jackson Harper  <jackson@ximian.com>
15424
15425         * Control.cs: When a new Site is set on the component attempt to
15426         pull the AmbientProperties from it.
15427
15428 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
15429
15430         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
15431           in the background of the owning form. Fixes #77332
15432
15433 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15434
15435         * MimeIcon.cs: Fix for #77409
15436
15437 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
15438
15439         * XplatUIX11GTK.cs: Initial import
15440
15441 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
15442
15443         * FixedSizeTextBox: fixes class signature
15444
15445 2006-01-30  Jackson Harper  <jackson@ximian.com>
15446
15447         * FixedSizeTextBox.cs: New internal class that represents a
15448         textBox that will not be scaled.
15449         * TreeView.cs:
15450         * ComboBox.cs:
15451         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
15452         standard TextBox.
15453                 
15454 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
15455
15456         * XplatUIX11.cs: Retrieve default screen number instead of
15457           assuming 0. Attempted fix for #77318
15458
15459 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
15460
15461         * XplatUIWin32.cs: 
15462           - GetWindowPos: When a window is parented by FosterParent, use 
15463             the desktop instead of FosterParent as the base to get coordinates
15464           - CreateWindow: Don't make FosterParent the parent window for Popups
15465             if we don't want a taskbar entry, Popups automatically don't get one
15466         * Hwnd.cs: Need to call remove to actually remove the key from the
15467           hash table
15468
15469 2006-01-30  Mike Kestner  <mkestner@novell.com>
15470
15471         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
15472
15473 2006-01-30  Jackson Harper  <jackson@ximian.com>
15474
15475         * TreeView.cs:
15476         * TreeNode.cs: Raise events no matter how the treenode is
15477         checked. Patch by Don Edvalson.
15478
15479 2006-01-30  Jackson Harper  <jackson@ximian.com>
15480
15481         * TreeNode.cs: Signature fix.
15482
15483 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
15484
15485         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
15486
15487 2006-01-20  Mike Kestner  <mkestner@novell.com>
15488
15489         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
15490         event forwarding when menus are active.
15491         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
15492         Most of the patch is pdb's with a little rework.
15493
15494 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15495
15496         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
15497           Removed GetMenuDC and ReleaseMenuDC methods; replaced
15498           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
15499         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
15500         * InternalWindowManager.cs: Added use of PaintEventStart/End to
15501           handling of WM_NCPAINT message, now passing the PaintEventArgs to
15502           the PaintWindowDecorations method
15503         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
15504         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
15505         * MenuAPI.cs: Made tracker window invisible
15506         * XplatUIWin32.cs:
15507           - Removed GetMenuDC and ReleaseMenuDC methods
15508           - Implemented the client=false path for PaintEventStart and
15509             PaintEventEnd
15510
15511 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15512
15513         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
15514         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
15515           styles
15516         * Form.cs: 
15517           - MaximizeBox, MinimizeBox: Recreate the handle when setting
15518             the style
15519           - CreateParams: Reworked the styles to match MS look'n'feel,
15520             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
15521             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
15522
15523 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
15524
15525         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
15526           window is not mapped, since otherwise every form that's being 
15527           created is considered minimized, which is wrong.
15528         * Form.cs: Catching the exception and returning our internal value
15529           instead
15530
15531 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
15532
15533         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
15534           SetWindowMinMax() to have means to tell the driver about the minimum,
15535           maximum and maximized state window sizes. (Part of the fix for #76485)
15536         * Form.cs:
15537           - Implemented tracking of minimum and maximum window size, now calling
15538             new SetWindowMinMax() driver method to tell the driver (Part of the
15539             fix for #76485)
15540           - Finished handling of WM_GETMINMAXINFO method, now setting all values
15541             (Completes fix for #76485)
15542           - Calling new SetWindowMinMax driver method when the handle for a 
15543             form is created, to make sure the driver knows about it even if
15544             the values have been set before the window was created
15545           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
15546             to avoid messing up our anchoring calculations (partial fix
15547             for #77355)
15548         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
15549         * XplatUIX11.cs:
15550           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
15551           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
15552             (and presumably other freedesktop.org compliant WMs). Left the
15553             assumption unmapped=minimized, needed for SetVisible to work.
15554           - Now setting the window state when creating windows
15555           - Fixed SetVisible to consider/set the window state when mapping
15556             a Form. We cannot set the state before it's mapped, and we cannot
15557             use Form.WindowState once it's mapped (since it would ask the
15558             driver and get 'normal'. Therefore, we grab the state before
15559             mapping, map, and then set state.
15560           - Implmemented SetWindowMinMax method; Metacity does not seem to
15561             honor the ZoomHints, though.
15562         * XplatUIWin32.cs:
15563           - Removed MINMAXINFO (moved to XplatUIStructs)
15564           - Added SetWindowMinMax stub (on Win32 the only way to set that
15565             information is in response to the WM_GETMINMAXINFO message, which
15566             is handled in Form.cs)
15567           - Added logic to SetVisible to set the proper window state when a 
15568             form is made visible (fixes #75720)
15569
15570 2006-01-26  Jackson Harper  <jackson@ximian.com>
15571
15572         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
15573         same way we handle them with Invoke.
15574
15575 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
15576
15577         * Form.cs:
15578           - Added tracking of window state so CreateParams can return
15579             the appropriate style
15580           - Moved setting of WS_CAPTION style in CreateParams to allow
15581             styles without caption
15582         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
15583           control if the TextBox property is accessed. Fixes #77345
15584         * Control.cs:
15585           - get_Created: now uses is_disposed and is_created to determine
15586             return value (suggested by Jackson)
15587           - CreateHandle: No longer exits if the handle is being recreated
15588           - RecreateHandle: If the handle is not yet created call the 
15589             appropriate method to create either control or handle. If the
15590             control is already created CreateHandle will simply exit instead
15591             of just creating the handle
15592         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
15593           now SendMessage WM_DESTROY directly to the control when DestroyWindow
15594           is called.
15595         * XplatUIX11.cs: 
15596           - When DestroyWindow is called, instead of waiting for the 
15597             DestroyNotification from X11, we directly post it to the WndProc
15598             and immediately dispose the hwnd object.
15599             Same applies to DestroyChildWindows, and this obsoletes the
15600             expose_pending tracking. Contrary to Win32 behaviour we destroy our
15601             child windows before our own, to avoid X11 errors.
15602           - Removed the direct sending of WM_PAINT on UpdateWindow
15603         * XplatUIWin32.cs:
15604           - Reworked DoEvents and GetMessage to allow access to internal queue
15605             even when trying non-blocking access to the queue.  Fixes #77335. 
15606             Based on a patch suggestion by Don Edvalson. The new private
15607             GetMessage can now also be used as a backend for a PeekMessage
15608             frontend version.
15609         * XplatUI.cs: Improved debug output for CreateWindow
15610
15611 2006-01-25  Jackson Harper  <jackson@ximian.com>
15612
15613         * Help.cs: Allow param to be null. Patch by Don Edvalson.
15614
15615 2006-01-24  Jackson Harper  <jackson@ximian.com>
15616
15617         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
15618         when we have a MaxDropItems lower then the selected index.
15619
15620 2006-01-24  Jackson Harper  <jackson@ximian.com>
15621
15622         * Control.cs: Don't allow selection of non visible controls, allow
15623         selection of controls without parents.
15624
15625 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
15626
15627         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
15628         * DataGridDrawingLogic.cs: Add editing row only when is necessary
15629
15630 2006-01-23  Jackson Harper  <jackson@ximian.com>
15631
15632         * UpDownBase.cs: Make the textbox handle all the selection and
15633         tabbing. This fixes tabing to updown controls.
15634
15635 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
15636
15637         * TextBoxBase.cs: fixes exception thown the object was null
15638
15639 2006-01-23  Jackson Harper  <jackson@ximian.com>
15640
15641         * ButtonBase.cs: Just use the base CreateParams. They set
15642         visibility and enabled correctly.
15643         * ComboBox.cs:
15644         * TrackBar.cs:
15645         * MonthCalendar.cs: Lets let the base set as much of the
15646         createparams as possible so we don't have duplicate code all over
15647         the place.
15648
15649 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
15650
15651         * ThemeGtk.cs: Added TrackBar and some experimental code to
15652           get double buffering back
15653
15654 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
15655
15656         * DataGrid.cs: Allows row number set internally higher than the last
15657         when creating a new row. Restores the editing functionality.
15658
15659 2006-01-20  Mike Kestner  <mkestner@novell.com>
15660
15661         * MimeIcon.cs: delay Image creation until the icons are accessed
15662         instead of creating 190 scaled images on GnomeHandler startup.
15663
15664 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
15665
15666         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
15667           first call base before processing the event. Fixes #77279
15668
15669 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
15670
15671         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
15672           that the stride for the GDI bitmap would match the stride of
15673           a DIB or a Cursor.
15674
15675 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
15676
15677         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
15678
15679 2006-01-19  Jackson Harper  <jackson@ximian.com>
15680
15681         * ComboBox.cs: Hookup the text controls keydown event so we get
15682         those when the text control has the focus.
15683
15684 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
15685
15686         * Label.cs: Now using the base events instead of defining new ones;
15687           this allows us to just call the base properties without having to
15688           duplicate all base property logic 
15689
15690 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
15691
15692         * Label.cs: A label by default is not a tabstop (Fixes one of our
15693           failing nunit tests)
15694
15695 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
15696
15697         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
15698         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
15699
15700 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
15701
15702         * Cursor.cs: Reimplemented creating cursor bitmaps without using
15703           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
15704           This fixes #77218
15705         * XplatUIWin32.cs: 
15706           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
15707             constructor creates images that can't be saved. Part of the fix
15708             for #76103
15709           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
15710           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
15711             bug fix for handling window state in forms properly)
15712
15713 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15714
15715         * ThemeGtk.cs: Simplify ScrollBar drawing
15716
15717 2006-01-18  Jackson Harper  <jackson@ximian.com>
15718
15719         * Splitter.cs: Set the default dock style for the splitter control
15720         in the constructor.
15721
15722 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15723
15724         * ThemeGtk.cs: Corrected StateType and ShadowType for
15725           gtk_paint_box
15726
15727 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15728
15729         * Control.cs: Make use of Theme.DoubleBufferingSupported
15730         * ThemeGtk.cs:
15731           - Added drawing for flat style buttons
15732           - Added ScrollBar drawing
15733
15734 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
15735
15736         * ThemeClearlooks.cs: Removed some unneeded code.
15737         * ThemeGtk.cs: First part of ThemeGtk enhancements.
15738
15739 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
15740
15741         * LinkLabel.cs: We need to update the hover drawing when
15742           leaving the control as well.
15743
15744 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
15745
15746         * DataGrid.cs: Clicking on non empty areas in the columns
15747            area was giving an exception
15748
15749 2006-01-17  Jackson Harper  <jackson@ximian.com>
15750
15751         * ThemeWin32Classic.cs:
15752         * ListView.cs: Do not draw/clip the headers when the header style
15753         is None.
15754
15755 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
15756
15757         * DataGrid.cs: Fixes 77260
15758         
15759 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
15760
15761         * DataGrid.cs: Clicking on a column on a empty grid was giving
15762           an exception
15763
15764 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
15765
15766         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
15767           or any keypress will crash the grid.
15768
15769 2006-01-17  Mike Kestner  <mkestner@novell.com>
15770
15771         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
15772         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
15773         invisible/previously-visible items.
15774         [Fixes #76909]
15775
15776 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
15777
15778         * ThemeClearlooks.cs:
15779         - Added CL_Draw_Button method; now other theme controls that are 
15780           not derived from button or do not have a button can draw buttons
15781           too
15782         - Updated ComboBox drawing
15783         - Beautified RadioButton drawing
15784         - Corrected drawing of bottom and left tabs
15785         - Beautified DateTimePicker and MonthCalendar
15786         - Added CPDrawButton and CPDrawRadioButton
15787
15788 2006-01-16  Jackson Harper  <jackson@ximian.com>
15789
15790         * ComboBox.cs: Set the initial value of the scrollbar to the
15791         current index. Reduce the numbers of refreshs and IndexOfs called.
15792
15793 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
15794
15795         * FileDialog.cs: When the file listview is focused hitting the
15796           backspace key moves the fileview to the parent directory
15797
15798 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15799
15800         * Form.cs: 
15801           - Added RecreateHandle call when changing taskbar visibility to 
15802             trigger reparenting in Win32 driver (Fixes #75719)
15803           - If a window has minimize or maximize buttons, it cannot have
15804             a help button
15805         * XplatUIWin32.cs:
15806           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
15807             the toplevel form with FosterParent (A toolwindow not on the
15808             taskbar) (Fixes #75719)
15809           - Made FosterParent a toolwindow
15810
15811 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15812
15813         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
15814
15815 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15816
15817         * ToolTip.cs: If SetToolTip is called from a control and the mouse
15818           is currently over that control, make sure that tooltip_window.Text
15819           gets updated
15820
15821 2006-01-13  Mike Kestner  <mkestner@novell.com>
15822
15823         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
15824
15825 2006-01-13  Jackson Harper  <jackson@ximian.com>
15826
15827         * TreeView.cs: On MS GetNodeAt never actually factors in the X
15828         value passed.  Also redraw the selected node when we recieve
15829         focus, so tabbing between trees works correctly.
15830
15831 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15832
15833         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
15834           ~/.gconf/%gconf-tree.xml, so use
15835           .gconf/desktop/gnome/interface/%gconf.xml
15836
15837 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15838
15839         * TextControl.cs: Draw text in gray if control is disabled
15840
15841 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15842
15843         * TreeView.cs: Draw the focus rectangle outside the highlight, to
15844           make sure it's always visible. Fixes #76680.
15845
15846 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15847
15848         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
15849
15850 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
15851
15852         * PageSetupDialog.cs: Added.
15853         * PrintDialog.cs: Attributes.
15854         * PrintPreviewControl.cs: Updates.
15855         * PrintPreviewDialog.cs: Updates.
15856         
15857 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15858
15859         * Control.cs: Undid my selection check fix, since it's not needed
15860         * TextBoxBase.cs:
15861           - Now considering the presence of hscroll/vscroll when sizing
15862             vscroll/hscroll respectively. Fixed bug #77077
15863           - Added Left/Up/Down/Right to IsInputKey list to prevent
15864             ContainerControl from stealing them. This fixes what I broke
15865             with my last checkin.
15866
15867 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
15868
15869         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
15870           I finally understand how the property can be set without a setter :-)
15871
15872 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15873
15874         * Application.cs:
15875           - Switched RunLoop to use static Message.Create to create a 
15876             Message object
15877           - Added PreProcessMessage call in runloop for keyboard events; this
15878             is part of the fix for #77219, I overlooked this originally in the
15879             MSDN doc for PreProcessMessage
15880         * Control.cs:
15881           - Removed call to PreProcessMessage from handling of keyboard 
15882             messages; it's supposed to be done in the message pump
15883           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
15884             per MSDN documentation.
15885           - IsInputChar: All chars are input chars by default; removed the 
15886             parent calling chain, MS does not document that
15887           - PreProcessMessage: If IsInputChar is true, we want to return false
15888             to allow dispatching of the message
15889           - When selecting the next control, now also check that we're not
15890             selecting ourselves again and therefore return a false positive.
15891         * TextBoxBase.cs:
15892           - Tried to match return values for IsInputKey and ProcessDialogKey
15893             to what MS returns; moved processing of our special keys outside
15894             ProcessDialogKey since MS does not seem to return true on those.
15895           - Moved code that previously was in ProcessDialogKey into new private
15896             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
15897           - Reworked handling of WM_CHAR to not have to duplicate code from
15898             Control.cs anymore, instead we simply call down to base.
15899            
15900 2006-01-12  Jackson Harper  <jackson@ximian.com>
15901
15902         * ComboBox.cs: We always need to refresh the text area when
15903         EndUpdate is called. Fixes the combobox in the file dialog.
15904         * Control.cs: Don't create the creator_thread until the controls
15905         handle is created.  Also in InvokeRequired we check if the
15906         creator_thread is null. This gives the effect of InvokeRequired
15907         returning true if the controls handle is not created yet, and
15908         matches MS.
15909
15910 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15911
15912         * XplatUI.cs:
15913           - Added StartLoop() driver method. This is used to allow drivers to
15914             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
15915             loop for a particular thread
15916           - Added EndLoop() driver method. This is called once the message
15917             pump for the thread is shut down
15918           - Added SupportsTransparency method to allow the driver to indicate
15919             opacity support for windows
15920         * Form.cs:
15921           - Removed TODO attribute, completed AllowTransparency property
15922           - Added documented logic to Opacity
15923         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
15924           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
15925           versions of CompatibleTextRendering
15926         * X11Structs.cs: Added opacity atom to our atom enumeration
15927         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
15928           of a form might be set before it's reparented by the WM, and we need
15929           the opacity value without calling up to Form)
15930         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
15931           SupportsTransparency() driver methods
15932         * Application.cs: Now calling StartLoop and EndLoop driver methods
15933         * XplatUIX11.cs:
15934           - Added opacity atom registration
15935           - Added StartLoop()/EndLoop() methods. They're empty right now but
15936             will need to get implemented when we switch to a per-thread queue
15937           - Implemented SupportsTransparency() method
15938           - Implemented SetWindowTransparency() method
15939           - Added support for setting the opacity value when a window is
15940             reparented (since the opacity needs to be set on the WM frame)
15941         * XplatUIOSX.cs, XplatUIWin32.cs:
15942           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
15943
15944 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
15945
15946         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
15947
15948 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
15949
15950         * FileDialog.cs: Added ToolTip for MWFFileView
15951         * MimeIcon.cs: Rewrote GnomeHandler.
15952           - Get currently used gnome icon theme from
15953             ($HOME)/.gconf/%gconf-tree.xml
15954           - Make use of inherited icon themes
15955           - Support SVG icon themes like Tango via librsvg
15956
15957 2006-01-12  Miguel de Icaza  <miguel@novell.com>
15958
15959         Revert's Jackson's revert which broke 2.0 builds.   Fix both
15960         builds. 
15961         
15962         * Application.cs: Move the use_compatible_text_rendering outside
15963         the NET_2_0 define.  If we ever need to use the
15964         use_compatible_text_rendering on the individual controls they will
15965         access the variable from the common shared code paths.
15966
15967 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15968
15969         * XplatUI.cs:
15970           - Added more granular debug options
15971           - Added method to print both window text and id
15972           - Switched debug output to use new Window() debug method
15973           - Added IsEnabled() driver method
15974           - Added EnableWindow() driver method
15975         * Form.cs:
15976           - Removed end_modal; no longer needed, new loop handles termination
15977             via 'closing' variable
15978           - If form is modal, setting DialogResult will now initiate loop
15979             termination via 'closing' variable
15980           - Added support for is_enabled/WS_DISABLED to CreateParams
15981           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
15982             does all the work
15983           - Removed code that's now in RunLoop from ShowDialog()
15984           - Added various documented sanity checks to ShowDialog()
15985           - Added handling of WM_DESTROY message; we set 'closing' on getting
15986             the message to indicate the message pump to terminate
15987           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
15988             send by the Application.ExitThread method. (We send the message
15989             to destroy the window after all other events have been
15990             processed through the queue, instead of destroying the handle 
15991             directly)
15992           - Moved code from Close() method to WM_CLOSE handler; added logic
15993             to only send close-related events if the form is not displayed
15994             modal
15995         * Splitter.cs (..ctor): Fixed typo in resource name
15996         * Control.cs:
15997           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
15998             brush now
15999           - set_Cursor: Now only setting calling into XplatUI if the handle for
16000             the control is already created; this avoids implict handle creation
16001             or crashes if it's not created
16002           - set_Enabled: Now setting the enabled state via the new driver method
16003             instead of just tracking it
16004           - CreateParams: Added logic to set WS_DISABLED based on enabled state
16005           - CreateControl: Reordered event firing and method calls to more
16006             closely fire events in the order MS does. Now setting the
16007             enabled state in the driver when creating the control.
16008           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
16009             match MS order
16010         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
16011           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
16012         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
16013         * Hwnd.cs:
16014           - Added tracking of window enabled state (get_Enabled/set_Enabled)
16015           - Added EnabledHwnd property to easily allow a driver to find the
16016             handle of the first enabled window in the parent chain (this is
16017             used by drivers to pass up input events of disabled windows)
16018         * XplatUIDriver.cs: Added IsEnabled() method
16019         * Application.cs:
16020           - Removed crude and obsolete exiting tracking variable
16021           - Removed internal ModalRun(); replaced by RunLoop()
16022           - Implemented private CloseForms() method to allow closing all 
16023             windows owned by a particular (or all) threads
16024           - Exit() now properly closes all windows without forcing the message
16025             pump to quit
16026           - Removed obsolete InternalExit() method
16027           - Changed Run() methods to use new RunLoop() message pump
16028           - Implemented new RunLoop() method for both modal and non-modal forms
16029         * CommonDialog.cs:
16030           - get_CreateParams: Added setting of WS_DISABLED
16031           - Simplified ShowDialog(); now all the work is done in RunLoop(),
16032             invoked via Form.ShowDialog()
16033         * NativeWindow.cs: We don't remove the window from the collection when
16034           the handle is destroyed; there might still be messages for it in the
16035           queue (mainly the resulting WM_DESTROY); instead it will be removed
16036           when Control calls InvalidateHandle in the WM_DESTROY handler
16037         * XplatUIX11.cs:
16038           - CreateWindow: Added logic to handle the WS_DISABLED window style
16039           - EnableWindow: Implemented based on Hwnd.Enabled
16040           - GetMessage: Reset PostQuitState so the method can be called again
16041           - Implemented support for disabled windows (passing messages to the
16042             first enabled parent) in handling all input messages
16043           - Added optimizations for handling Expose events
16044           - Implemeted new driver method IsEnabled()
16045           - Now always resetting paint pending tracking vars when we start paint
16046           - Re-implemented UpdateWindow via just sending a WM_PAINT message
16047         * XplatUIOSX.cs: Added IsEnabled method stub
16048         * XplatUIWin32.cs: Implemented new IsEnabled() method
16049
16050 2006-01-11  Jackson Harper  <jackson@ximian.com>
16051
16052         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16053         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
16054         variables a little.
16055         * ColorDialog.cs: Clear out the old form before adding the new
16056         panel.  
16057
16058 2006-01-11  Jackson Harper  <jackson@ximian.com>
16059
16060         * X11Dnd.cs: Make sure to add all the text formats when adding
16061         strings to the data object.
16062         * TreeNodeCollection.cs: When adding to a sorted tree we need to
16063         do some redrawing too.  Also change the UpdateNode to an
16064         UpdateBelow so the newly added node gets painted.
16065         
16066 2006-01-11  Miguel de Icaza  <miguel@novell.com>
16067
16068         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
16069         LinkLabel.cs, PropertyGrid.cs: Implement the
16070         UseCompatibleTextRendering property for 2.x
16071
16072         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
16073
16074 2006-01-11  Jackson Harper  <jackson@ximian.com>
16075
16076         * TreeView.cs: Use the property for setting the selected node so
16077         the correct events get raised.
16078         * TreeNode.cs: Update the tree when the fore/back colours of a
16079         node are set.
16080
16081 2006-01-10  Jackson Harper  <jackson@ximian.com>
16082
16083         * TreeView.cs: Allow setting SelectedNode to null.
16084
16085 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16086
16087         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
16088
16089 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16090
16091         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
16092
16093 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16094
16095         * PrintDialog.cs: Added attributes and set default property values.
16096
16097 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16098
16099         * PrintControllerWithStatusDialog.cs: 
16100         Added PrintControllerWithStatusDialog.
16101
16102 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16103
16104         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16105         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
16106
16107 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
16108
16109         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
16110
16111 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16112
16113         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
16114         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
16115
16116 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16117
16118         * MimeIcon.cs: Added internal class SVGUtil.
16119
16120 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
16121
16122         * FileDialog.cs: Don't crash if there are two files with the
16123           same name but different locations.
16124
16125 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
16126
16127         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
16128         dates across multiple month grids. Used to not highlight entire 
16129         month, but does now.
16130         
16131 2006-01-06  Jackson Harper  <jackson@ximian.com>
16132
16133         * MonthCalendar.cs: Removed DoEvents call to prevent a running
16134         message loop. Change timer intervals to numbers that seem more
16135         natural.
16136
16137 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
16138
16139         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
16140           object for location info since screen object is now implemented.
16141
16142 2006-01-05  Jackson Harper  <jackson@ximian.com>
16143
16144         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
16145         * AsyncMethodResult.cs: We no longer use a WeakReference for the
16146         AsyncMethodResult, this is because we ALWAYS want the
16147         ManualResetEvent to get set.
16148         * Control.cs: When disposing use an async invoke to call shutdown
16149         code, so that thigns don't block on the finalizer thread.  Also
16150         check if we even have a message loop before trying to send
16151         messages, if we don't then don't bother sending messages.
16152         - No more weak references for async methods
16153         * XplatUIDriver.cs: No more weak references for async methods.
16154
16155 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16156
16157         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
16158           returns two FontFamily with the same name
16159
16160 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16161
16162         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
16163           drawing disabled text. Instead using the ColorGrayText color
16164
16165 2006-01-04  Jackson Harper  <jackson@ximian.com>
16166
16167         * TreeNode.cs: redraw the node when its image index is changed.
16168
16169 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
16170
16171         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
16172           time I checked there are no others like it.
16173
16174 2006-01-04  Jackson Harper  <jackson@ximian.com>
16175
16176         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
16177         this gives the behavoir I was looking for.
16178         * Control.cs: Special case Invoking EventHandlers, this matches MS
16179         and fixes part of bug #76326.
16180
16181 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16182
16183         * ThemeClearlooks.cs, FileDialog.cs:
16184           - Reflect the latest Theme class changes
16185           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
16186             with DateTime
16187             
16188 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
16189
16190         * Theme.cs: Cache UI resource images and resize them if needed
16191
16192 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16193
16194         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
16195           is called. This fixes the crash in Nexxia when setting the font
16196           attributes in the chat. [However, RTF needs a look-over to make sure
16197           that all SelectionXXX methods handle the special case that selection
16198           is empty and therefore the change must be applied to all text starting
16199           at the cursor/selection start]
16200
16201 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
16202
16203         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
16204           XplatUIOSX.cs: Added SendMessage and PostMessage methods
16205         * X11Keyboard.cs: Switched to new way of calling PostMessage
16206
16207 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
16208
16209         * Theme.cs: Added theme interface for images to allow the theme to
16210           control what images are used for things like FileDialog, MessageBox
16211           icons, etc.
16212         * MessageBox.cs: Now uses the new Theme icon/image interfaces
16213
16214 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
16215
16216         * FileDialog.cs:
16217           - Removed some dead code
16218           - Opening a recently used file does work now
16219           - Small UI enhancements
16220           - Refactoring
16221
16222 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16223
16224         * FileDialog.cs: Forgot too add __MonoCS__
16225
16226 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
16227
16228         * FileDialog.cs: We are able to read recently used files now let's
16229           go on and write them.
16230
16231 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
16232
16233         * FileDialog.cs: Breathe some life into "last open"/"recently used"
16234           button
16235         * MimeIcon.cs: Do a check for the top level media type also
16236
16237 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16238
16239         * ThemeClearlooks.cs:
16240           - Added CPDrawStringDisabled
16241           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
16242             some chars if the text doesn't fit into text_rect
16243           - DrawListViewItem: If View = View.LargeIcon center the image;
16244             rewrote the drawing of ListViewItem.Text if View = 
16245             View.LargeIcon
16246
16247 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
16248
16249         * MimeIcon.cs: Use default KDE icon theme if there is no
16250           "48x48" directory for the current icon theme, fixes #77114
16251         * Mime.cs: Disable not working and actually not used code. 
16252         * ThemeWin32Classic.cs:
16253           - Replace "new SolidBrush" in GetControlBackBrush and
16254             GetControlForeBrush with ResPool.GetSolidBrush
16255           - Changed DrawListViewItem from private to protected virtual
16256         * FileDialog.cs:
16257           - Added form.MaximizeBox = true
16258           - Don't throw an exception if there is a broken symbolic link
16259
16260 2005-12-23  Jackson Harper  <jackson@ximian.com>
16261
16262         * TabControl.cs: Give the panels focus, keyboard navigation is
16263         fixed so this works correctly now.
16264         - We need these key events also.
16265         * ToolBar.cs: Remove some of the poor mans double buffering.
16266         
16267 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
16268
16269         * ComboBox.cs: The internal TextBox now returns the focus.
16270
16271 2005-12-23  Jackson Harper  <jackson@ximian.com>
16272
16273         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
16274
16275 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16276
16277         * Control.cs: Removed debug code
16278         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
16279           implicit children
16280
16281 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
16282
16283         * Control.cs: When creating the control, update the Z-order after
16284           all it's children are created, too. (Fixes nexxia not showing
16285           picturebox bug)
16286
16287 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
16288
16289         * Control.cs: Do not update the anchoring distances if layout is
16290           suspended, instead do it once layout is resumed
16291
16292 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
16293
16294         * Control.cs: 
16295           - After many hours of debugging, for both Jackson and
16296             myself, it turns out that it helps to set the parent of a control
16297             if you want to actually see it onscreen. In the spirit of that
16298             discovery, we're now setting the parent of the control and
16299             it's children when the control's handle is created. This fix
16300             will make Lutz Roeder's Reflector run happily. 
16301           - now just creating the handle instead of the whole control when
16302             getting a graphics context for the control.
16303
16304 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16305
16306         * ScrollableControl.cs: When calculating the canvas, don't consider
16307           the scrollbar widths. Instead, predict if horizontal scrollbar
16308           will affect canvas when deciding on vertical display and vice versa.
16309
16310 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
16311
16312         * RichTextBox.cs: Set default RTF font for documents that don't
16313           have a font table (Fixes #77076)
16314
16315 2005-12-22  Jackson Harper  <jackson@ximian.com>
16316
16317         * TextBoxBase.cs: It's difficult to do, but you can have an empty
16318         clipboard. This prevents a NullRef in that case.
16319         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
16320         clipboard. PRIMARY is for the currently selected text only. (We
16321         should implement PRIMARY at some point.
16322
16323 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16324
16325         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
16326           a Unicode function with a structure that was defined in Ansi way.
16327           This fixes #76942.
16328
16329 2005-12-21  Jackson Harper  <jackson@ximian.com>
16330
16331         * StatusBar.cs: Statusbar handles its fore/back colours on it's
16332         on. Because thats how it rolls. (and this avoids it using ambient
16333         colours).
16334         * ThemeWin32Classic.cs: Use the proper back color for filling.
16335         * Menu.cs: Use the system menu bar color for drawing menu
16336         bars. Using the window back color will bring ambient colours into
16337         the picture.
16338
16339 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
16340
16341         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
16342           Bitmaps were created and not disposed.
16343
16344 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16345
16346         * Control.cs (CreateControl): Don't do anything if the control is
16347           already created, otherwise we'd fire the OnCreated event more than
16348           once
16349
16350 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16351
16352         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
16353           will always match. Instead return -1. Fixes #76464.
16354
16355 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
16356
16357         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
16358           neither the beginning nor the end of the line (Fixes bug #76479)
16359
16360 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
16361
16362         * Control.cs:
16363           - ControlNativeWindow.ControlFromHandle(): Now handling situation
16364             where handle is invalid
16365           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
16366             instead of slower linear search
16367         * NativeWindow.cs: Don't remove the window from the hashtable until
16368           after the driver has destroyed it (since the driver might use
16369           Control.FromHandle to lookup the control object
16370         * Hwnd.cs: Added DestroyPending property to track if a window is 
16371           already destroyed as far as the driver is concerned and only hasn't
16372           yet notified the control
16373         * XplatUIX11.cs:
16374           - Activate(): Check if the window is still valid before using the 
16375             handle
16376           - Implemented DestroyChildWindow() method to mark child windows as
16377             destroyed when a window is destroyed. This prevents situations 
16378             where we might call an X method based on queued events for a
16379             window that already has been destroyed but we haven't yet pulled
16380             the destroy method from the queue.
16381           - Added a call to the new DestroyChildWindow() method to the drivers
16382             DestroyWindow code. Also now marking the destroyed window itself
16383             as pending
16384
16385 2005-12-20  Jackson Harper  <jackson@ximian.com>
16386
16387         * StatusBar.cs:
16388         * StatusBarPanel.cs: Don't calculate panel sizes on draw
16389         anymore. Just do them when needed, also track the rects of panels
16390         so that we can optimize refreshing more in the future.
16391
16392 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
16393
16394         * ColorDialog.cs: Fixed focus drawing in small color controls
16395
16396 2005-12-19  Jackson Harper  <jackson@ximian.com>
16397
16398         * InternalWindowManager.cs:
16399         * MdiWindowManager.cs: Cleanup some coordinate system changes so
16400         moving windows works properly.
16401
16402 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
16403
16404         * Control.cs: 
16405           - Removed call to InitLayout() from SetBoundsCore(); doc says
16406             it's only called when a control is added to a container
16407           - Split InitLayout logic, moved to separate UpdateDistances() method
16408             since we need to perform those calculations more often than just
16409             when adding the control to a container. (Needed to fix #77022)
16410           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
16411           - Reduced the OnBindingContextChanged events count, don't send them
16412             unless the control is created, we still aren't totally matching
16413             MS, but I can't quite figure out some of their rules
16414
16415 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16416
16417         * ThemeClearlooks.cs: Corrected distance between ProgressBar
16418           stripes
16419
16420 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16421
16422         * ThemeClearlooks.cs:
16423           - Updated ProgressBar drawing
16424           - Corrected drawing of ScrollBars and scroll buttons
16425           - Some temporary fixes for minor pixel artefacts
16426
16427 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
16428
16429         * Control.cs:
16430           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
16431             cause events to be sent in the same order as MS does.
16432           - Added ChangeParent() method to trigger various OnXXXChanged events
16433             that need to be fired when a parent changes (This is a reworking
16434             of the patch from r54254, with the X11 errors fixed)
16435           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
16436             since on MS we get OnLayoutChanged events when calling Clear()
16437           - Changed Enabled property to consider parent state as well, if a
16438             parent is not enabled, the control will not be either
16439           - Changed Parent property to simply call Controls.Add() since that
16440             now does all the work required, this way we avoid code duplication
16441           - Threw in a few OnBindingsContextChanged calls to try and match
16442             when MS sends them. We seem to send a few too many, though.
16443           - Added call to CreateControl when adding the control to a parent.
16444             We were never calling CreateControl. Still needs some work, in
16445             some places we treat HandleCreated and ControlCreated as equal, 
16446             which is wrong
16447           - Removed obsolete commented out code from UpdateZOrder()
16448
16449 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
16450
16451         * ThemeClearlooks.cs: Updated TrackBar drawing.
16452
16453 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16454
16455         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
16456
16457 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
16458
16459         * FileDialog.cs: Add the Help button and the open readonly
16460           checkbox only if needed
16461
16462 2005-12-16  Jackson Harper  <jackson@ximian.com>
16463
16464         * Control.cs: Make sure we have an active menu before trying to
16465         process commands on it. Prevents menu-less forms from crashing
16466         when Alt is pressed.
16467         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
16468         Dieter Bremes.
16469         * RichTextBox.cs: Expand statement to help out gmcs and fix the
16470         2.0 build.
16471
16472 2005-12-16  Jackson Harper  <jackson@ximian.com>
16473
16474         * InternalWindowManager.cs: Don't translate tool windows screen
16475         coordinates. This fixes windows 'bouncing' around when being moved.
16476
16477 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16478
16479         * TextBoxBase.cs:
16480           - MaxLength now treats 2^31-1 equal to unlimited length (this is
16481             not quite MS compatible, MS uses that number only for single line
16482             and 2^32-1 for multi-line, but I figure it won't hurt keeping
16483             the limit at 2GB)
16484           - Now enforcing the MaxLength limit when entering characters
16485           - Added argument to internal Paste() method to track if it's called
16486             from programatically or via keyboard, since keyboard driven pastes
16487             need to enforce max-length
16488           - Added logic to Paste to only paste as many chars as MaxLength 
16489             allows
16490         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
16491         * TextControl.cs:
16492           - Added Length property to return number of characters in document
16493           - Added private CharCount property which only tracks actual chars
16494             in the document (no linefeeds) and fires event when CharCount
16495             changes
16496           - Added tracking of character count to all methods that alter it
16497           - Added LengthChanged event to allow applications to subscribe
16498             to any changes to the document
16499
16500 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
16501
16502         * TextBox.cs: 
16503           - Removed local password_char field (moved to TextBoxBase)
16504           - Now setting the document's password var when password is
16505             set
16506         * TextBoxBase.cs:
16507           - Added password_char field (needed here so MultiLine can
16508             access it)
16509           - Added logic to MultiLine property setter to set the document's
16510             variable when password display is allowed
16511           - Removed debug code and made some debug code conditional
16512         * TextControl.cs:
16513           - Added RecalculatePasswordLine() method to handle special password
16514             char only lines
16515           - Added PasswordChar property, also added related tracking vars
16516           - Draw() method now uses local text var for grabbing text to draw,
16517             this var is set to line.text unless we're doing password display,
16518             then it is set to the pre-generated all-password-chars line
16519           - Added calling RecalculatePasswordLine() method for password lines
16520
16521 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16522
16523         * Hwnd.cs: 
16524           - Added Reparented property to allow tracking of Window Manager
16525             reparenting actions (which affect X/Y calculations of toplevel 
16526             windows)
16527           - Made ToString() print window handles in hex
16528         * XplatUIX11.cs:
16529           - AddConfigureNotify(): Now uses reparented state off Hwnd to
16530             determine if X/Y needs offsetting
16531           - AddConfigureNotify(): Fixed offset calculations
16532           - Now adds ReparentNotify messages into the queue
16533           - Now processes ReparentNotify messages and causes a 
16534             WM_WINDOWPOSCHANGED message to be sent upstream if a window
16535             is reparented (as most likely it's X/Y coordinates are changed
16536             due to that)
16537
16538 2005-12-14  Jackson Harper  <jackson@ximian.com>
16539
16540         * XplatUIX11.cs: Tool windows still need to respek focus.
16541
16542 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
16543
16544         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
16545           have a working release
16546
16547 2005-12-13  Jackson Harper  <jackson@ximian.com>
16548
16549         * Form.cs: Update styles after setting the border style regardless
16550         of whether or not the window is using a window manager.
16551
16552 2005-12-13  Jackson Harper  <jackson@ximian.com>
16553
16554         * Form.cs: We now hook into an internal window manager instead of just an
16555         MDI subsystem, this is so we can have properly behaving tool windows.
16556         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
16557         * InternalWindowManager.cs: New internal class that acts as a
16558         window manager for tool windows and as a base for mdi windows.
16559         * MdiWindowManager.cs: New class that acts as a window manager for
16560         mdi windows.
16561
16562 2005-12-12  Jackson Harper  <jackson@ximian.com>
16563
16564         * Control.cs: Updates so we match behavoir for for implicit
16565         controls. Fixes explosions in MDI.
16566
16567 2005-12-12  Jackson Harper  <jackson@ximian.com>
16568
16569         * Control.cs: Implement Invalidate (Region).
16570
16571 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
16572
16573         * Control.cs: 
16574           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
16575             the same events as MS does. MS fires events for each property 
16576             except, for unknown reasons, Cursor, when the control is reparented. 
16577             I can't seem to totally match add/remove since MS also fires some 
16578             VisibleChanged events, which makes no sense. Consolidated the
16579             parenting code into a separate method so it can be called from
16580             both Add and Remove. set_Parent no longer needs any special logic
16581             as it calls the parent's add method which implicitly fires
16582             all events
16583           - Removed some obsolete code and debug output
16584           - Enabled state is inherited from parents, if this is enabled
16585
16586 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
16587
16588         * Form.cs: Removed commented out code
16589
16590 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
16591
16592         * Control.cs:
16593           - Added internal version of Invoke, with additional argument 
16594             indicating if we're calling it from a Dispose() handler. That
16595             way we can avoid BeginInvoke throwing an exception if we're
16596             calling for an already destroyed window.
16597           - Added a dispose argument to BeginInvokeInternal, and made the
16598             check if a valid window handle chain exists conditional on
16599             it not being a dispose call
16600           - Removed code in DestroyHandle to destroy our children. Since we
16601             now handle the WM_DESTROY message we will catch all our children
16602             being destroyed.
16603           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
16604         * Form.cs:
16605           - Added a field to track the application context of the form.
16606           - No need to set closing variable as response to WM_CLOSE, instead
16607             we destroy the window. We also call PostQuitMessage if the form
16608             has an application context (which makes it the main app form,
16609             which, when closed terminates the app)
16610         * XplatUI.cs:
16611           - Dropped Exit() method, it's naming was confusing
16612           - Added PostQuitMessage() which causes GetMessage to return false
16613             once the message queue is empty
16614         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
16615           PostQuitMessage()
16616         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
16617           no longer a valid XplatUI method, but left it in since it's used
16618           internally. Added empty PostQuitMessage() method.
16619         * MenuAPI.cs: Replaced call to Exit() with call to
16620           PostQuitMessage, even though this is probably no longer needed.
16621         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
16622         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
16623         * Application.cs:
16624           - Replaced call to XplatUI.Exit() with PostQuitMessage()
16625           - Removed old debug code that would call XplatUI for exception
16626             display, enabled standard exception handling (Still not enabled
16627             though, until NativeWindow's ExternalExceptionHandler define
16628             is removed
16629         * NativeWindow.cs:
16630           - Added internal method to allow control to update NativeWindow
16631             after a window has been destroyed
16632           - Added handling of already destroyed windows when calling i
16633             DestroyWindow
16634           - Added removal of handle from list on ReleaseHandle
16635         * XplatUIX11.cs:
16636           - Dropped GetMessageResult var and related code
16637           - Added PostQuitState to field to track if PostQuitMessage has been
16638             called
16639           - Dropped Exit() method
16640           - Added PostQuitMessage() method
16641           - GetMessage now will return false if PostQuitState is set and no
16642             more messages are in the queue.
16643           - Expose handler will no longer generate WM_PAINT messages if we are
16644             in PostQuitState since it's very likely any windows have already
16645             been destroyed, and since Hwnd won't get updated until we have
16646             processed the DestroyNotify we'd be causing X errors.
16647         
16648 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16649
16650         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
16651           Thanks to Mike for pointing out the err of my ways.
16652
16653 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16654
16655         * Control.cs(PreProcessMessage): Moved menu handling back, but
16656           after all other key handling, to match MS (who handles Menu in
16657           DefWndProc)
16658         * Menu.cs (WndProc): Removed my brainfart
16659
16660 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16661
16662         * Control.cs(PreProcessMessage): Removed special menu handling 
16663         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
16664
16665 2005-12-07  Mike Kestner  <mkestner@novell.com>
16666
16667         * Control.cs : special case SYSKEYUP so that we can adjust keynav
16668         state according in tracker.
16669         * Menu.cs : promote tracker field to base class and provide a tracker
16670         lookup capability.  Add/Remove shortcuts dynamically if the top menu
16671         has a tracker. Unparent items that are removed from the collection.
16672         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
16673         * Theme*.cs: add always_show_hotkeys field to support configurability
16674         of mnemonic display.  win32 doesn't show mnemonics until Alt is
16675         pressed.
16676
16677 2005-12-07  Jackson Harper  <jackson@ximian.com>
16678
16679         * MdiChildContext.cs: Use Control.ResetCursor.
16680         * Control.cs: ResetCursor needs to set the property so that the
16681         correct XplatUI call gets made.
16682
16683 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16684
16685         * Control.cs: More fixes to make our key events match MS. We
16686           were not setting the modifier state on KeyData, and we were
16687           not generating any events when Alt was pressed with a key
16688           since handling of WM_SYSxxx was missing for the OnKey methods.
16689
16690 2005-12-07  Jackson Harper  <jackson@ximian.com>
16691
16692         * MdiChildContext.cs: reenable the sizing code.
16693         - When the mouse leaves a window reset its cursor.
16694
16695 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
16696
16697         * ThemeClearlooks.cs: Reflect latest Hwnd changes
16698
16699 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
16700
16701         * Hwnd.cs: Now using the theme 3d bordersize to calculate
16702           widths of Fixed3D borders
16703
16704 2005-12-07  Jackson Harper  <jackson@ximian.com>
16705
16706         * MdiClient.cs: Fix warnings. Earn Mike's love.
16707
16708 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
16709
16710         * ThemeClearlooks.cs:
16711           - Adjusted mouse over button color
16712           - Added first parts of CheckBox drawing
16713           - Added correct color for selected text background
16714           - Fixed ComboBox drawing
16715           - Added CPDrawBorder3D and CPDrawBorder
16716
16717 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
16718
16719         * XplatUIX11.cs: Added call to XBell for AudibleAlert
16720
16721 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
16722
16723         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
16724           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
16725           alert users via sound. We could add an enum arg with different
16726           types of alerts in the future
16727
16728 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
16729
16730         * Control.cs: Fix behaviour problems pointed out by Mike
16731
16732 2005-12-05  Mike Kestner  <mkestner@novell.com>
16733
16734         * StatusBarPanel.cs: add Invalidate method and hook it into all the
16735         prop setters.  Calls parent.Refresh for now, but could be maybe be
16736         optimized with an internal method on StatusBar at some point.
16737         [Fixes #76513]
16738
16739 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
16740
16741         * RichTextBox.cs: Implemented get_SelectionColor
16742
16743 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
16744
16745         * ThemeClearlooks.cs:
16746           - Removed dead code
16747           - Draw black button border only if button is Form.AcceptButton
16748           - Draw correct button color for pressed RadioButton if the mouse 
16749             has entered the button
16750           - Updated ProgressBar drawing!
16751           - Updated CPDrawSizeGrip drawing
16752           - Updated StatusBarPanel drawing
16753
16754 2005-12-05  Mike Kestner  <mkestner@novell.com>
16755
16756         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
16757         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
16758
16759 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
16760
16761         * ThemeClearlooks.cs: Initial check-in, activate with
16762           export MONO_THEME=clearlooks
16763         * ThemeEngine.cs: Added ThemeClearlooks
16764
16765 2005-12-03  Mike Kestner  <mkestner@novell.com>
16766
16767         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
16768         [Fixes #76897]
16769
16770 2005-12-02  Jackson Harper  <jackson@ximian.com>
16771
16772         * Form.cs: If the child form has no menu the default main menu is
16773         used as the active menu.
16774
16775 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
16776
16777         * ListBox.cs: Check if any items exist before trying to resolve 
16778           coordinates into items
16779
16780 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
16781
16782         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
16783           as the second color for the background hatch
16784
16785 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
16786
16787         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
16788         * RichTextBox.cs: FormatText position arguments are 1-based, now making
16789           sure that what we pass to FormatText is always 1-based. Fixes #76885
16790
16791 2005-11-29  Miguel de Icaza  <miguel@novell.com>
16792
16793         * NumericUpDown.cs (EndInit): When we are done initializing,
16794         reflect any updates on the UI.
16795
16796 2005-12-02  Jackson Harper  <jackson@ximian.com>
16797
16798         * ImplicitHScrollBar.cs:
16799         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
16800         their container controls.
16801         * TreeView.cs: Use the new implicit scrollbars.
16802
16803 2005-12-02  Jackson Harper  <jackson@ximian.com>
16804
16805         * TreeView.cs: Make top_node internal so the TreeNodeCollections
16806         can play with it.
16807         * TreeNodeCollection.cs: If we remove the topnode we need to
16808         update topnode to the next node in line.
16809         - When clearing nodes go through the same process as removing
16810         them, so they get depareneted and checked if they are top node.
16811
16812 2005-12-01  Jackson Harper  <jackson@ximian.com>
16813
16814         * TreeView.cs: When imagelists are used the image area is
16815         selectable as well as the text.
16816         - If there are no selected nodes select the first one.
16817         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
16818         so don't do it more then we need to.
16819
16820 2005-12-01  Jackson Harper  <jackson@ximian.com>
16821
16822         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
16823         that arrows can be scaled.
16824
16825 2005-12-01  Jackson Harper  <jackson@ximian.com>
16826
16827         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
16828         fail. Patch by Dieter Bremes
16829
16830 2005-11-30  Jackson Harper  <jackson@ximian.com>
16831
16832         * Form.cs: Property is 2.0 only
16833         * PrintDialog.cs: Signature fix.
16834
16835 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
16836
16837         * TextControl.cs: 
16838           - No longer artificially moves text 2 pixels down (now that we have
16839             borders this is no longer needed)
16840           - Added calcs for left, hanging and right indent
16841
16842 2005-11-23  Mike Kestner  <mkestner@novell.com>
16843
16844         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
16845
16846 2005-11-30  Jackson Harper  <jackson@ximian.com>
16847
16848         * MdiChildContext.cs: Set the cloned menus forms, as these don't
16849         get cloned as part of CloneMenu ().
16850         * Menu.cs: Make sure the parent of the items get set correctly
16851         when they are added.  And the owners are notified of the changes.
16852         * Form.cs: Create an ActiveMenu property, so that when MDI is used
16853         we can change the menu being displayed/handled by the form without
16854         changing the menu assosciated with the form.
16855         - Don't let Mdi children draw/handle menus.
16856         
16857 2005-11-30  Jackson Harper  <jackson@ximian.com>
16858
16859         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
16860         a MenuChanged event. Just to make the API a little more
16861         consistent.
16862         * MainMenu.cs:
16863         * MenuItem.cs: Use the new OnMenuChanged
16864         * MdiChildContext.cs: Handle menu merging.
16865         * Form.cs: Implement MergedMenu.
16866         
16867 2005-11-30  Jackson Harper  <jackson@ximian.com>
16868
16869         * Menu.cs: We were misusing Add. Add goes behind the specified
16870         index according to the docs, and does not replace the specified
16871         index. So I added an Insert method.
16872
16873 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
16874
16875         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
16876           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
16877           is for Jackson
16878         * RichTextBox.cs: Added calls to base for DnD events
16879
16880 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
16881
16882         * TextControl.cs:
16883           - Fixed drag-selection related crash; style fixes
16884           - Implemented undo class
16885             o Implemented method to capture document state for specified
16886               range in document tree
16887             o Implemented method to restore captured document state
16888             o Implemented cursor tracking
16889             o Implemented basic undo stack
16890           - Added undo cursor tracking to methods altering cursor location
16891           - Added undo tracking to selection deletion (still missing
16892             other text-altering hookups)
16893         * RichTextBox.cs:
16894           - Added SelectionLength property
16895           - Implemented CanPaste()
16896           - Implemented Paste()
16897           - Added missing protected methods
16898           - Fixed RTF->Document conversion; now uses font index 0 and color 
16899             index 0 as the default font for the parsed text
16900           - Fixed RTF<->Document font size translation
16901           - Fixed RTF generation, now properly handles cross-tag boundaries
16902             for single line selection
16903           - No longer always appends blank line to generated RTF
16904           - Removed TODOs
16905           - Added missing attributes
16906           - Hooked up undo-related methods
16907         * TextBoxBase.cs:
16908           - Implemented Copy()
16909           - Implemented Paste()
16910           - Implemented Cut()
16911           - Fixed caret mis-behaviour on backspace across line-boundaries
16912
16913 2005-11-29  Jackson Harper  <jackson@ximian.com>
16914
16915         * MdiClient.cs: Add a method for activating mdi children. Very
16916         basic right now. I imagine someday it might need more girth.
16917         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
16918         children windows names are added to the menu item.
16919         * ThemeWin32Classic.cs: Draw the arrow if the item is an
16920         mdilist. This happens regardless of whether or not there are any
16921         mdi windows to see in the list, and according to my tests happens
16922         before the items are even added. Also happens if there isn't even
16923         an mdi client to get windows from.
16924
16925 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
16926
16927         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
16928         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
16929
16930 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
16931
16932         * DataGridTableStyle.cs:
16933           - Create always the styles for the missing columns even if they are
16934             provided by the user (not default table style)
16935         * DataGrid.cs:
16936           - Fixes bug 76770
16937           - Fixes SetDataBinding (always re-attach source)
16938           - Fixes SetNewDataSource (only clear styles if they are not for 
16939             this source)
16940          -  Expands OnTableStylesCollectionChanged to handle style refresh 
16941             and remove properly
16942
16943 2005-11-29  Jackson Harper  <jackson@ximian.com>
16944
16945         * FileDialog.cs: Implement missing bits, remove some dead
16946         code.
16947         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
16948         creation of the panel so that the options set on the dialog are
16949         seen when the panel is created.
16950         * TreeView.cs: raise a click when items are clicked.
16951         
16952 2005-11-29  Jackson Harper  <jackson@ximian.com>
16953
16954         * MdiClient.cs: Pass some signature methods through to base.
16955
16956 2005-11-28  Jackson Harper  <jackson@ximian.com>
16957
16958         * ListView.cs: Raise the click event when items are clicked.
16959
16960 2005-11-28  Jackson Harper  <jackson@ximian.com>
16961
16962         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
16963         a nullref.
16964
16965 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
16966
16967         * ThemeNice.cs: - Removed 1 pixel bitmaps
16968           - Use SmoothingMode.AntiAlias where it makes sense
16969             (ScrollButton arrow for example)
16970           - Enhanced Button focus drawing
16971           - Fixed ComboBox drawing (no artefacts anymore, focus
16972             rectangle is back again, reduced size of ComboButton, etc.)
16973           - Fixed RadioButton focus drawing for Appearence.Button
16974           - Slight ScrollButton redesign
16975           - Some LinearGradientBrush size fixes
16976           - GroupBoxes have now rounded edges
16977           - Fixed StatusBar drawing
16978
16979 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
16980
16981         * ThemeNice.cs: - Remove dead code
16982           - use correct background colors for menus, etc.
16983           - Fake pixel drawing with 1 pixel bitmaps
16984
16985 2005-11-24  Jackson Harper  <jackson@ximian.com>
16986
16987         * MdiClient.cs: Size the scrollbars when resizing the window.
16988         - Resize the maximized windows when the client is resized
16989         * Form.cs: Make the child context available
16990         
16991 2005-11-23  Jackson Harper  <jackson@ximian.com>
16992
16993         * MdiChildContext.cs: Don't size windows if they are maximized.
16994
16995 2005-11-23  Mike Kestner  <mkestner@novell.com>
16996
16997         * ContextMenu.cs: use MenuTracker.
16998         * Control.cs: remove menu handle usage.
16999         * Form.cs: remove menu handle usage.
17000         * Hwnd.cs: remove menu handle usage.
17001         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
17002         motion and clicks to the new Tracker handlers.
17003         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
17004         and handle usage.
17005         * MenuAPI.cs: refactored to combine popup and menubar event handling.
17006         Killed the MENU and MENUITEM data types and associated collections
17007         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
17008         MenuTracker class that exposes the leftovers from the old MenuAPI
17009         static methods. Restructured Capture handling so that only one grab is
17010         done for the entire menu hierarchy instead of handing off grabs to
17011         submenus. Tracker now has an invisible control to Capture when active.
17012         * MenuItem.cs: add sizing accessors, kill Create
17013         and handle usage.
17014         * Theme.cs: remove menu handle and MENU(ITEM) usage.
17015         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
17016         MENU(ITEM). remove menu handle usage, use Menu directly.
17017         * XplatUIDriver.cs: remove menu handle usage.
17018         * XplatUIOSX.cs: remove menu handle usage.
17019         * XplatUIWin32.cs: remove menu handle usage.
17020         * XplatUIX11.cs: remove menu handle usage.
17021
17022 2005-11-22  Jackson Harper  <jackson@ximian.com>
17023
17024         * Hwnd.cs: Don't compute the menu size for
17025         DefaultClientRectangle.
17026         - Reenable menu sizes being computed for GetClienRectangle.
17027         * Form.cs: Remove comment of trechery
17028         
17029 2005-11-22  Jackson Harper  <jackson@ximian.com>
17030
17031         * Hwnd.cs: The adjustments for the menu bar are made when it is
17032         attached to the form.
17033
17034 2005-11-19  Jackson Harper  <jackson@ximian.com>
17035
17036         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
17037         (just like on windows).
17038
17039 2005-11-19  Jackson Harper  <jackson@ximian.com>
17040
17041         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
17042         use real buttons anymore because they are in non client area. The
17043         one TODO here is that I need to somehow invalidate a section of
17044         the non client area.
17045
17046 2005-11-18  Jackson Harper  <jackson@ximian.com>
17047
17048         * Control.cs: Put the enum check back in now that MDI doesnt have
17049         to use this to set border styles.
17050         * Form.cs: Only set mdi child windows borders if the handle has
17051         been created.
17052         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
17053         this directly on to the driver.
17054         - Get the move start position before adjusting for the titlebar
17055         height, this fixes the windows "skipping" when they are first
17056         moved.
17057
17058 2005-11-18  Jackson Harper  <jackson@ximian.com>
17059
17060         * XplatUIX11.cs: Just compute the mdi borders separately as they
17061         don't totally match up with normal form borders.
17062
17063 2005-11-18  Jackson Harper  <jackson@ximian.com>
17064
17065         * Control.cs: Set WS_ styles for borders, so that the driver does
17066         not have to retrieve the control instance to figure out what kind
17067         of borders it should have.
17068         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
17069         driver can know its an mdi child easily.
17070         * XplatUIX11.cs: Get the border styles and whether the window is
17071         MDI from the Styles and ExStyles params instead of having to get a
17072         control. This prevents a chicken and egg problem.       
17073
17074 2005-11-18  Jackson Harper  <jackson@ximian.com>
17075
17076         * MdiClient.cs: Fix typo so scrollbars show up correctly.
17077
17078 2005-11-18  Jackson Harper  <jackson@ximian.com>
17079
17080         * MdiClient.cs: Calculate when to add and remove scrollbars
17081         correctly.
17082         * MdiChildContext.cs: Adjust the y position to take the titlebar
17083         into account.
17084         - No height for FormBorderStyle.None
17085
17086 2005-11-18  Jackson Harper  <jackson@ximian.com>
17087
17088         * Control.cs: Allow non enum values to be used for
17089         InternalBorderStyle.  MDI does this to set a special border style.
17090         - New utility methods for converting points to/from client coords
17091         - Add the newly created control to the Controls collection before
17092         updating its style. This way UpdateStyle can walk the control
17093         heirarchy to find the control if needed.
17094         so I don't need to create a new Point object all the time.
17095         * Form.cs: Let MDI windows handle their border styles.
17096         - Set styles on MDI windows so the correct title style is derived.
17097         * MdiChildContext.cs: Move all the painting and window handling
17098         into the non client area.
17099         - Use correct sizing and put correct buttons on frames based on
17100         the FormBorderStyle.
17101         - Notify the mdi client about scrolling
17102         - Need to handle the buttons ourselves now, because they are all
17103         in non client areas and we can't add controls there.
17104         * MdiClient.cs: Halfway to scrolling, this implementation is
17105         somewhat broken though, we need to check to make sure other
17106         windows aren't causing scrolling before removing the bars. Also
17107         the bars need to be drawn on top, maybe I can switch implicit
17108         controls to be on top.
17109         * Hwnd.cs: caption_height and tool_caption_height are now
17110         properties of an hwnd, this way they can be set by the driver
17111         based on the type of window they are.  In X11 the window manager
17112         handles the decorations so caption_height is zero unless its an
17113         MDI window.
17114         - Add 3 pixel borders for MDI windows (0xFFFF).
17115         - Get rid of some code duplication, have DefaultClientRectanle
17116         just call GetClientRectangle.
17117         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
17118         Hwnd now.
17119         - Set border styles differently for mdi windows.
17120         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
17121         Hwnd now.
17122         
17123 2005-11-15  Mike Kestner  <mkestner@novell.com>
17124
17125         * Menu.cs: when adding an item to the collection, if item is already 
17126         parented, remove it from the parent.
17127
17128 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
17129
17130         * X11DesktopColors.cs: Added KDE support
17131
17132 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
17133
17134         * XplatUIWin32.cs: 
17135           - Clipboard methods now can translate Rtf format
17136           - No longer removes clipboard contents whenever a new format is added
17137             to allow placing multiple formats on the clipboard
17138         * Clipboard.cs: Clipboard now supports getting a IDataObject and
17139           will place all formats contained in it onto the clipboard. Also
17140           now cleans the clipboard before placing a new object onto it
17141         * RichTextBox.cs:
17142           - Implemented set_Rtf
17143           - Implemented set_SelectedRtf
17144           - Created InsertRTFFromStream() method to allow single code base
17145             for all properties and methods that insert RTF into document
17146           - Removed debug output
17147         * TextControl.cs:
17148           - Fixed Delete(int) to fix up line numbers
17149           - Fixed ReplaceSelection to combine start and end line
17150           - Fixed serious DeleteChars bug that would leave the document tree
17151             broken
17152           - Improved DumpTree with several logic checks to detect broken
17153             document trees
17154           - Removed debug lines
17155           - Fixed Caret.WordForward/WordBack moving code, now always also 
17156             updates caret.tag (fixes crash when word-selecting across tag
17157             boundaries via keyboard)
17158           - Added Insert() method for inserting multiline text into documents
17159           - Fixed DeleteChars() calculation errors that would cause a broken
17160             tag chain with multiple tag lines
17161           - DeleteChars() no longer crashes on multi-tag lines if not all tags
17162           - Split() no longer moves caret if split is at caret location
17163           - ReplaceSelection() now updates the cursor and re-displays it
17164           - ReplaceSelection() now uses new Insert() method to avoid code
17165             duplication
17166           - FormatText() can now handle formatting partial lines
17167         * TextBoxBase.cs:
17168           - Append now uses new TextControl.Insert() method (this avoids 
17169             duplicate code)
17170           - Implemented Ctrl-X (Cut) (
17171           - Implemented Ctrl-C (Copy)
17172           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
17173             regeneration when pasting text; roundtripping Copy&Paste within
17174             edit control still fails due to some calculation bugs in GenerateRTF)
17175           - The Delete key will now remove the current selection if it is visible
17176         * TextBox.cs: Removed debug lines
17177         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
17178           driver to be initialized and can't therefore be done via a static ctor)
17179
17180 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
17181
17182         * TextControl.cs: Added backend code for finding char arrays and strings
17183         * TextBoxBase.cs:
17184           - Added mouse wheel scroll support
17185           - Added support for VScroll and HScroll events
17186         * RichTextBox.cs:
17187           - Implemented all seven Find() variants
17188           - Implemented GetCharFromPosition()
17189           - Implemented GetCharIndexFromPosition()
17190           - Implemented GetLineFromIndex()
17191           - Implemented GetPositionFromCharIndex();
17192           - Implemented SaveFile for PlainText and UnicodeText
17193           - Fixed set_Font, now setting a new font applies that font to
17194             the whole document
17195           - Implemented generic Document to RTF converter
17196           - Implemented SaveFile for RichText format (still missing unicode
17197             conversion for non-ansi chars)
17198           - Implemented get_Rtf
17199           - Implemented get_SelectedRtf
17200
17201 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
17202
17203         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
17204           to allow any captures to be released before triggering OnClick. This
17205           way a click handler may capture the mouse without interference.
17206         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
17207           This way we send them even though X may not allow a grab (if the window
17208           isn't visible, for example)
17209
17210 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
17211
17212         * DataGridViewRowEventArgs.cs: DataGridView implementation
17213         * DataGridViewElement.cs: DataGridView implementation
17214         * DataGridViewComboBoxCell.cs: DataGridView implementation
17215         * DataGridViewDataErrorContexts.cs: DataGridView implementation
17216         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
17217         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
17218         * ImageLayout.cs: DataGridView implementation
17219         * DataGridViewComboBoxColumn.cs: DataGridView implementation
17220         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
17221         * DataGridViewSelectionMode.cs: DataGridView implementation
17222         * IDataGridViewEditingControl.cs: DataGridView implementation
17223         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
17224         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
17225         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
17226         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
17227         * DataGridViewColumnSortMode.cs: DataGridView implementation
17228         * DataGridView.cs: DataGridView implementation
17229         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
17230         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
17231         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
17232         * Padding.cs: DataGridView implementation
17233         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
17234         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
17235         * DataGridViewRowEventHandler.cs: DataGridView implementation
17236         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
17237         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
17238         * DataGridViewButtonCell.cs: DataGridView implementation
17239         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
17240         * DataGridViewEditMode.cs: DataGridView implementation
17241         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
17242         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
17243         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
17244         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
17245         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
17246         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
17247         * DataGridViewCellEventHandler.cs: DataGridView implementation
17248         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
17249         * DataGridViewCellStyleConverter.cs: DataGridView implementation
17250         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
17251         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
17252         * DataGridViewColumnEventArgs.cs: DataGridView implementation
17253         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
17254         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
17255         * QuestionEventArgs.cs: DataGridView implementation
17256         * IDataGridViewEditingCell.cs: DataGridView implementation
17257         * DataGridViewTriState.cs: DataGridView implementation
17258         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
17259         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
17260         * DataGridViewColumnCollection.cs: DataGridView implementation
17261         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
17262         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
17263         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
17264         * DataGridViewColumn.cs: DataGridView implementation
17265         * DataGridViewCellBorderStyle.cs: DataGridView implementation
17266         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
17267         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
17268         * DataGridViewRow.cs: DataGridView implementation
17269         * DataGridViewImageCellLayout.cs: DataGridView implementation
17270         * DataGridViewImageCell.cs: DataGridView implementation
17271         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
17272         * DataGridViewCheckBoxCell.cs: DataGridView implementation
17273         * DataGridViewHeaderCell.cs: DataGridView implementation
17274         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
17275         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
17276         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
17277         * DataGridViewTextBoxColumn.cs: DataGridView implementation
17278         * QuestionEventHandler.cs: DataGridView implementation
17279         * DataGridViewCellStyleScopes.cs: DataGridView implementation
17280         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
17281         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
17282         * DataGridViewCell.cs: DataGridView implementation
17283         * DataGridViewCellEventArgs.cs: DataGridView implementation
17284         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
17285         * DataGridViewCellStyle.cs: DataGridView implementation
17286         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
17287         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
17288         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
17289         * TextFormatFlags.cs: DataGridView implementation
17290         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
17291         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
17292         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
17293         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
17294         * DataGridViewButtonColumn.cs: DataGridView implementation
17295         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
17296         * HandledMouseEventArgs.cs: DataGridView implementation
17297         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
17298         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
17299         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
17300         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
17301         * DataGridViewRowCollection.cs: DataGridView implementation
17302         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
17303         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
17304         * DataGridViewHitTestType.cs: DataGridView implementation
17305         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
17306         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
17307         * DataGridViewColumnEventHandler.cs: DataGridView implementation
17308         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
17309         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
17310         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
17311         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
17312         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
17313         * DataGridViewContentAlignment.cs: DataGridView implementation
17314         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
17315         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
17316         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
17317         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
17318         * DataGridViewPaintParts.cs: DataGridView implementation
17319         * DataGridViewCellCollection.cs: DataGridView implementation
17320         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
17321         * DataGridViewImageColumn.cs: DataGridView implementation
17322         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
17323         * DataGridViewElementStates.cs: DataGridView implementation
17324         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
17325         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
17326         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
17327         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
17328         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
17329         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
17330         * DataGridViewRowHeaderCell.cs: DataGridView implementation
17331         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
17332         * DataGridViewTextBoxCell.cs: DataGridView implementation
17333         * DataGridViewBand.cs: DataGridView implementation
17334         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
17335         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
17336         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
17337         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
17338         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
17339         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
17340         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
17341         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
17342         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
17343         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
17344         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
17345
17346 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
17347
17348         * ThemeWin32Classic.cs: 
17349           - Draw the outside focus rectangle around buttons
17350           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
17351             doesn't use end caps for every dash of a line anymore. This
17352             workaround ignores the forecolor.
17353
17354 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
17355
17356         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
17357           endian safe.
17358
17359 2005-11-07  Jackson Harper  <jackson@ximian.com>
17360
17361         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
17362
17363 2005-11-07  Jackson Harper  <jackson@ximian.com>
17364
17365         * ScrollableControl.cs: Calculate the maximum and change vars
17366         (more) correctly so that scrollbars appear as a sensible size.
17367
17368 2005-11-04  Jackson Harper  <jackson@ximian.com>
17369
17370         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
17371         collection.
17372         * TreeView.cs: When the tree is sorted null out the top_node so
17373         that it is recalculated.
17374         - Use dotted lines instead of dashed lines to match MS better.
17375
17376 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
17377
17378         * ListView.cs: 
17379           - Implements key search for items. Useful when browsing files with FileDialog
17380           - When changing view mode or when clear the items reset scrollbar positions
17381
17382 2005-11-04  Jackson Harper  <jackson@ximian.com>
17383
17384         * CurrencyManager.cs: Implement the MetaDataChanged event, the
17385         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
17386         as to what the method may do as there is no real way of creating a
17387         derived CurrencyManager and calling the method. 
17388
17389 2005-11-03  Jackson Harper  <jackson@ximian.com>
17390
17391         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
17392         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
17393         method which seems to just be used internally to refresh the tabs.
17394
17395 2005-11-03  Jackson Harper  <jackson@ximian.com>
17396
17397         * TabControl.cs: Implement the remove method. Fix some broken
17398         comments.
17399
17400 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17401
17402         * DateTimePicker.cs:
17403           - Added missing DateTimePickerAccessibleObject class
17404           - Added missing events
17405           - Added OnFontChanged method
17406         * Form.cs: Added missing attributes
17407         * TreeView.cs: Added missing attributes
17408
17409 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
17410
17411         * GridItemCollection.cs: Fix signatures
17412
17413 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17414
17415         * XplatUI.cs: Updated build rev/date
17416         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
17417           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
17418         * Application.cs: Trigger context-specific ExitThread events
17419
17420 2005-11-03  Jackson Harper  <jackson@ximian.com>
17421
17422         * Menu.cs:
17423         * MainMenu.cs:
17424         * GridTableStylesCollection.cs:
17425         * Timer.cs:
17426         * TabPage.cs:
17427         * HelpProvider.cs:
17428         * StatusBar.cs:
17429         * MonthCalendar.cs: Signature fixes
17430
17431 2005-11-03  Jackson Harper  <jackson@ximian.com>
17432
17433         * TreeNodeCollection.cs: Remove should not be virtual.
17434         * TreeView.cs: Implement the last of the missing methods.
17435
17436 2005-11-03  Jackson Harper  <jackson@ximian.com>
17437
17438         * TreeNodeConverter.cs: Implement to get off my class-status back.
17439
17440 2005-11-03  Jackson Harper  <jackson@ximian.com>
17441
17442         * TreeView.cs: Hookup the bits for drag and drop.
17443         * TreeNode.cs: Don't cache the tree_view or index anymore, now
17444         that nodes can be moved from tree to tree easily this just causes
17445         all sorts of problems.
17446         * TreeNodeCollection: Don't need to give treenodes an index and
17447         treeview anymore when they are added, these are computed on the
17448         fly. Also make sure to remove a node before its added.
17449
17450 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
17451
17452         * TextControl.cs:
17453           - Added CaretSelection enum
17454           - Added comparison methods to Marker struct, makes selection code
17455             more readable
17456           - Added SelectionStart and SelectionEnd as 'moveable' location for
17457             the CaretDirection enum and handler
17458           - Added selection_prev variable to track optimized invalidation for
17459             word and line selection
17460           - Added SelectionVisible property (returns true if there is a valid 
17461             selection)
17462           - Switched CaretHasFocus to only display the caret if there is no
17463             visible selection
17464           - Avoiding StringBuilder.ToString to retrieve a single char, instead
17465             using the direct character index; should be much faster
17466           - Added various conditional debug statements
17467           - Fixed invalidation calculation for selection ranges
17468           - Added ExpandSelection() method to support word and line selection
17469           - Switched SetSelectionToCaret to use new Marker compare overloads
17470           - Added central IsWordSeparator() method to determine word 
17471             separators/whitespace and FindWordSeparator() to streamline common
17472             usage of IsWordSeparator()
17473         * TextBoxBase.cs:
17474           - Removed unneeded grabbed variable, it was just mirroring
17475             Control.Capture
17476           - No longer firing OnTextChanged event when Text setter is called,
17477             since the base will fire the event for us
17478           - Added handling of Ctrl-Up/Down selection
17479           - Added handling of Shift-Cursorkey selection
17480           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
17481             words
17482           - Added handling of Shift and Ctrl-Shift-Home/End selection
17483           - Removed some debug output
17484           - Added handling for single/double/tripple-click to place caret/
17485             select word/select line respectively (Fixes bug #76031)
17486           - Added support for drag expansion of word/line selection
17487         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
17488           current selection
17489
17490 2005-11-02  Jackson Harper  <jackson@ximian.com>
17491
17492         * X11Dnd.cs: If the drag is going to and from a MWF window just
17493         copy the data instead of sending it out through the X Selection
17494         mechanism.
17495
17496 2005-11-02  Jackson Harper  <jackson@ximian.com>
17497
17498         * X11Dnd.cs:
17499         * XplatUIX11.cs: When in a drag we don't want motion notify
17500         messages to get passed on to the other controls. This prevents
17501         mouse move messages from showing up in the drag source.
17502
17503 2005-11-02  Jackson Harper  <jackson@ximian.com>
17504
17505         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
17506         the correct button is release to end a drag.
17507         * XplatUIX11.cs: Make the button state internal so the drag system
17508         can access it.  Dragging needs to know about all button releases,
17509         not just left button.
17510
17511 2005-11-02  Miguel de Icaza  <miguel@novell.com>
17512
17513         * Form.cs (Icon): If the icon is null, reset the icon to the
17514         default value. 
17515
17516         * Cursor.cs: When writing the AND-mask bitmap do not include the
17517         number of colors, but hardcode those to two (black and white),
17518         fixes the loading of color cursors (Paint Dot Net).
17519
17520         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
17521         turn off autoscaling.
17522
17523         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
17524
17525 2005-11-02  Jackson Harper  <jackson@ximian.com>
17526
17527         * X11Dnd.cs: Make sure to send a status message if the pointer
17528         enters a control that can not accept a drop, otherwise the cursor
17529         isn't updated correctly. Also tried to compress the lines of code
17530         a bit.
17531
17532 2005-11-02  Jackson Harper  <jackson@ximian.com>
17533
17534         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
17535         set actions correctly.  This isn't perfect as XDND and win32 have
17536         some differences on how you allow actions. I'll clear this up by
17537         adding a path for drag from MWF to MWF windows.
17538         * XplatUIX11.cs: Hook into the dnd system.
17539
17540 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
17541
17542         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
17543         previously shown but they are no longer need it. Very obvious when 
17544         browsing files with FileDialog.
17545
17546 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
17547
17548         * Control.cs: We always need to call OnPaintBackground. We pretty much
17549           ignore AllPaintingInWmPaint and always do the painting there, whether 
17550           it's set or not, since we always ignore the WM_ERASEBKGND message 
17551           (which we don't generate on X11). This fixes #76616.
17552         * Panel.cs: Removed unneeded background painting. This happens properly
17553           in Control.cs already
17554
17555 2005-10-31  Mike Kestner  <mkestner@novell.com>
17556
17557         * Menu.cs: Add items to collection before setting their index.
17558         * MenuItem.cs : add range checking with ArgumentException like MS.
17559         [Fixes #76510]
17560
17561 2005-10-31  Jackson Harper  <jackson@ximian.com>
17562
17563         * ListBox.cs: Invalidate if the area is visible at all not just
17564         contained in the visible rect. Fixes unselection of semi visible
17565         items.
17566
17567 2005-10-31  Jackson Harper  <jackson@ximian.com>
17568
17569         * Control.cs: Consistently name the dnd methods. Make them
17570         internal so we can override them to match some MS behavoir
17571         internally.
17572         * Win32DnD.cs: Use the new consistent names.
17573
17574 2005-10-31  Jackson Harper  <jackson@ximian.com>
17575
17576         * TreeView.cs: Don't draw the selected node when we lose focus.
17577
17578 2005-10-31  Jackson Harper  <jackson@ximian.com>
17579
17580         * X11Dnd.cs: We still need to reset the state even though a full
17581         reset isn't being done, otherwise status's still get sent all over
17582         the place.
17583
17584 2005-10-31  Jackson Harper  <jackson@ximian.com>
17585
17586         * Control.cs: Make the dnd_aware flag internal so the dnd
17587         subsystem can check it. Catch exceptions thrown in dnd handlers to
17588         match MS behavoir.
17589         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
17590         * X11Dnd.cs: Handle null data in the converters. Set the XDND
17591         version when sending a XdndEnter. Use the control/hwnd dnd_aware
17592         flags to reduce the number of dnd enters/status's sent.
17593
17594 2005-10-31  Jackson Harper  <jackson@ximian.com>
17595
17596         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
17597
17598 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
17599
17600         * PictureBox.cs: Fixes 76512
17601
17602 2005-10-28  Jackson Harper  <jackson@ximian.com>
17603
17604         * X11Dnd.cs: Early implementation to support winforms being a drag
17605         source for data on X11. Also restructured the converters so they
17606         can go both ways now.
17607         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
17608         
17609 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
17610
17611         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
17612           clipboard requests
17613
17614 2005-10-27  Jackson Harper  <jackson@ximian.com>
17615
17616         * TreeNode.cs: Implement serialization so my DnD examples will work.
17617
17618 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
17619
17620         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
17621           TreeView.cs: Don't dispose objects that are not owned.
17622           
17623 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
17624
17625         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
17626           should retrieve the current cursor and report that, but XplatUI
17627           doesn't (yet) have an interface for that (and I'm not sure I even
17628           can, on X11)
17629         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
17630           until any message loop processing is done (and the WM_SETCURSOR
17631           replaces the cursor to the proper one)
17632         * XplatUIX11.cs: 
17633           - Fixed override behaviour, we can't set the cursor globally on X11, 
17634             just for our windows.
17635           - Invalidating the System.Drawing X11 display handle when we are
17636             shutting down
17637         * Control.cs: Fix to make csc happy
17638
17639 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
17640
17641         * TextBoxBase.cs: 
17642           - get_Text: Add last line (without trailing newline) to returned
17643             value (Fixes 76212)
17644           - get_TextLength: Count last line in returned length
17645           - ToString: Call Text property instead of duplicating code
17646
17647 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
17648
17649         * ImageList.cs: Dispose ImageAttributes objects.
17650
17651 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
17652
17653         * ImageList.cs: Use attribute constructors with less arguments where
17654           possible.
17655
17656 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
17657
17658         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
17659           Use typeof instead of strings when assembly is referenced. Added
17660           some more comments.
17661
17662 2005-10-21  Jackson Harper  <jackson@ximian.com>
17663
17664         * ListView.cs: Raise a double click event. Also tried to somewhat
17665         fix when the selectedindexchanged event is raised. Its still
17666         broken though.
17667
17668 2005-10-21  Jackson Harper  <jackson@ximian.com>
17669
17670         * TreeView.cs: New method to invalidate the plus minus area of a
17671         node without invalidating the whole node (maybe this can be used
17672         in some more places).
17673         * TreeNodeCollection.cs: When adding to an empty node we need to
17674         invalidate its plus minus area so the little block shows up.
17675         
17676 2005-10-21  Jackson Harper  <jackson@ximian.com>
17677
17678         * TreeView.cs: Make sure that when we invalidate a node the bounds
17679         are big enough to cover the selected box and the focus
17680         rectangle. Use a different colour for the lines connecting nodes
17681         so they show up with all themes.
17682
17683 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
17684
17685         * NativeWindow.cs: Don't call anything that could call into the driver,
17686           we might be on a different thread.
17687
17688 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
17689
17690         * Control.cs(Dispose): Since Dispose might run on a different thread,
17691           make sure that we call methods that could call into the driver via
17692           invoke, to avoid thread issues
17693
17694 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
17695
17696         * XplatUI.cs: Removed finalizer
17697         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
17698           not allowing to be called on the finalizer thread.
17699
17700 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
17701
17702         * ImageList.cs:
17703           - Reverted r51889 and r51891.
17704           - Added ImageListItem class that stores unmodified image items and image
17705             properties required to create list images until handle is created.
17706           - Added AddItem and moved image creation logic to AddItemInternal.
17707           - Added CreateHandle method that creates images based on unmodified items.
17708           - Added DestroyHandle that changes state to store unmodified items.
17709           - Add and AddStrip methods no more create handle.
17710           - ReduceColorDepth has no return value.
17711           - Dispose destroys handle.
17712           - Modified other methods to reflect the above changes.
17713           - Implemented key support.
17714           - Added profile 2.0 members and attributes.
17715           - Added private Reset and ShouldSerialize methods that provide the same
17716             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
17717             them as they are private.
17718           - Added some more comments about implementation details.
17719
17720 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17721
17722         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
17723
17724 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17725
17726         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
17727
17728 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
17729
17730         * DataGridDrawingLogic.cs: Fixes column hit calcultation
17731         * DataGridColumnStyle.cs: Remove debug message
17732
17733 2005-10-20  Jackson Harper  <jackson@ximian.com>
17734
17735         * TreeView.cs: We can always get input keys regardless of whether
17736         or not editing is enabled. They are used for navigation.
17737
17738 2005-10-20  Jackson Harper  <jackson@ximian.com>
17739
17740         * TreeNode.cs: Use the viewport rect for determining if a node
17741         needs to be moved for visibility. Don't use Begin/End edit. This
17742         calls a full refresh when its done.
17743         * TreeView.cs: New SetBottom works correctly.  Make the viewport
17744         rect property internal so the treenodes can see it. When clicking
17745         on a node we need to ensure that its visible because it might just
17746         be partly visible when clicked.
17747
17748 2005-10-20  Jackson Harper  <jackson@ximian.com>
17749
17750         * TreeNodeCollection.cs: Remove debug code.
17751
17752 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
17753
17754         * Datagrid.cs: Implements column sorting in Datagrid
17755         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
17756
17757 2005-10-20  Jackson Harper  <jackson@ximian.com>
17758
17759         * TreeNodeCollection.cs: Remove items properly. Update the correct
17760         area after removing them.
17761
17762 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
17763
17764         * Datagrid.cs: Should not call base.OnPaintBackground
17765
17766 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
17767
17768         * XplatUIX11.cs (GetMessage):
17769           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
17770             window instead of client window
17771           - Now properly calculates NC_xBUTTONUP message coordinates
17772           - ScreenToMenu now properly calculates it's coordinates of whole 
17773             window, since menus are in the whole window, not in the client
17774             window
17775           - Added WholeToScreen coordinate translation method
17776
17777 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
17778
17779         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
17780           want to return a message, loop back to the beginning of the function
17781           and grab the next real message to process instead.
17782
17783 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
17784
17785         * Splitter.cs: Properly set limits if no filler control is used
17786
17787 2005-10-19  Jackson Harper  <jackson@ximian.com>
17788
17789         * ColorDialog.cs: Don't show the help button if it is not enabled
17790         instead of disabling it (this is what MS does). Don't create the
17791         panel until the dialog is run, otherwise the vars (such as
17792         ShowHelp) are not set yet.
17793
17794 2005-10-19  Jackson Harper  <jackson@ximian.com>
17795
17796         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
17797         are reduced when adding nodes.
17798         * TreeNode.cs:
17799         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
17800         tree.
17801         
17802 2005-10-19  Jackson Harper  <jackson@ximian.com>
17803
17804         * FolderBrowserDialog.cs: End editing our treeview so the window
17805         actually gets refreshed.
17806
17807 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17808
17809         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
17810           Obsoleted handling of WM_ERASEBKGND, now always draws our background
17811           inside of WM_PAINT
17812
17813 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17814
17815         * MenuAPI.cs: Returns after Hidding window
17816         * XplatUIX11.cs: Added TODO found while debugging menu issues
17817
17818 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17819
17820         * XplatUIX11.cs: Do not re-map the whole window when it's size
17821           becomes non-zero unless it's supposed to be actually visible
17822
17823 2005-10-18  Jackson Harper  <jackson@ximian.com>
17824
17825         * TreeView.cs: We don't need to keep a count anymore.
17826         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
17827         use the Grow method.
17828
17829 2005-10-18  Jackson Harper  <jackson@ximian.com>
17830
17831         * TreeNodeCollection.cs: Insert is not supported on arrays, so
17832         implement it manually here.
17833
17834 2005-10-18  Jackson Harper  <jackson@ximian.com>
17835
17836         * ImageList.cs: Dont kill the list when the colour depth is
17837         changed, just change the colour depth of all the images.
17838         - Same goes for setting the image size. Just resize them all
17839         instead of killing the list softly.
17840
17841 2005-10-18  Jackson Harper  <jackson@ximian.com>
17842
17843         * Control.cs: Don't invalidate empty rectangles.
17844
17845 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17846
17847         * ListViewItem.cs:
17848           - Adds checked item to the Checked/Item lists (where empty before)
17849           - Do not add items to the Selected lists if they are already present
17850         * ListView.cs:
17851           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
17852           - When deleting items make sure that we delete them for the Selected
17853           and Checked list also.
17854
17855 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17856
17857         * Label.cs: Dispose objects no longer used
17858         * ThemeWin32Classic.cs: Dispose objects no longer used
17859
17860 2005-10-18  Jackson Harper  <jackson@ximian.com>
17861
17862         * TabControl.cs: Don't refresh the whole control when the tabs are
17863         scrolled, we just need to refresh the tab area.
17864
17865 2005-10-17  Jackson Harper  <jackson@ximian.com>
17866
17867         * XplatUIX11.cs: Compress code a little bit. Only calculate the
17868         after handle when we need it.
17869
17870 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
17871
17872         * Control.cs: When the parent size changes, recalculate anchor 
17873           positions. Partial fix for #76462
17874
17875 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
17876
17877         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
17878           drawn. Fixes #76462
17879
17880 2005-10-17  Jackson Harper  <jackson@ximian.com>
17881
17882         * MonthCalendar.cs: Don't create the numeric up down until our
17883         handle is created. Otherwise our handle is created in the
17884         constructor and we don't know if we are a WS_CHILD or WS_POPUP
17885         yet.
17886
17887 2005-10-17  Jackson Harper  <jackson@ximian.com>
17888
17889         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
17890         correctly.
17891
17892 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17893         * TreeNode.cs : small logical fix (was using local var instead of field)
17894         
17895 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
17896
17897         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
17898
17899 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
17900
17901         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
17902
17903 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
17904
17905         * Control.cs: 
17906           - Re-implemented anchoring code. My first version was really broken.
17907             This fixes bug #76033. Unlike the previous implementation we will
17908             no longer have round errors since all numbers are calculated from
17909             scratch every time. Removed various anchor-related obsolete vars.
17910           - InitLayout no longer causes layout event firing and layout to be 
17911             performed
17912
17913 2005-10-16  Jackson Harper  <jackson@ximian.com>
17914
17915         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
17916         which was broken).
17917
17918 2005-10-16  Jackson Harper  <jackson@ximian.com>
17919
17920         * TabControl.cs: Remove debug code.
17921
17922 2005-10-16  Jackson Harper  <jackson@ximian.com>
17923
17924         * XEventQueue.cs: Increase the default queue size (very simple
17925         apps needed to grow the queue).
17926         * Hwnd.cs: No finalizer so we don't need to suppress
17927         finalization. Compute the invalid area manually so a new rectangle
17928         does not newto be created.
17929         * ScrollableControl.cs: Don't set any params (otherwise visibility
17930         isn't set correctly).
17931         * MdiChildContext.cs: New constructor takes the mdi parent so it
17932         doesn't have to be computed and avoids a crash on windows. Draw
17933         the window icon properly, and allow the text to be seen.
17934         * Form.cs: Use new MdiChildContext constructor. Make sure the
17935         child context isn't null in wndproc.
17936         * TabControl.cs: Don't set focus, this is muddling keyboard
17937         behavoir. Expand the tab rows when a window size increase will
17938         allow extra tabs to be seen. Don't allow tabs smaller than the
17939         width of a window to be scrolled out of view.
17940         * TreeNode.cs:
17941         * TreeView.cs: Use measure string to calculate a nodes width, the
17942         width is cached and only updated when the text or the font is
17943         changed. Don't check for expand/collapse clicks on the first level
17944         nodes if root lines are disabled.
17945         
17946 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
17947
17948         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
17949
17950 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
17951
17952         * DataGridBoolColumn.cs: fixes warning
17953
17954 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
17955
17956         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
17957         to match more to match more precisely the MS Net behavior
17958
17959 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
17960
17961         * Hwnd.cs: Added field to track if window is mapped
17962         * XplatUIX11.cs: 
17963           - Unmap windows if they become 0-size, re-map when 
17964             they are >0 again; fixes #76035
17965           - Re-set our error handler after initializing X11Desktop
17966             to override any error handlers Gtk or whatever was called
17967             may have set.
17968
17969 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
17970
17971         * CheckedListBox.cs: Removed unused vars
17972         * ListView.cs: Fixed signatures
17973         * RichTextBox.cs: Removed unused vars
17974         * TextBoxBase.cs: Removed unused vars
17975         * XplatUIWin32.cs: Removed unused vars
17976         * XplatUIX11.cs: Removed unused vars
17977         * XplatUI.cs: Updated version and date to latest published
17978
17979 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
17980
17981         * Cursor.cs: Added private .ctor to work around a bug in
17982           resourceset (Thanks to Geoff Norton for the help on this)
17983         * SplitterEventArgs.cs: Made fields accessible so we don't
17984           waste boatloads of objects and can reuse the same one
17985           in Splitter
17986         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
17987           any captions and borders when generating screen coordinates
17988         * Splitter.cs: Reimplemented control, now fully complete, uses
17989           rubberband drawing, supports and obeys all properties, has
17990           proper cursors
17991
17992 2005-10-13  Miguel de Icaza  <miguel@novell.com>
17993
17994         * Form.cs (Form): Setup default values for autoscale and
17995         autoscale_base_size;  Make these instance variables, not static
17996         variables. 
17997
17998         (OnLoad): on the first load, adjust the size of the form.
17999
18000 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
18001
18002         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
18003           width argument to DrawReversibleRectangle()
18004         * XplatUIWin32.cs, XplatUIX11.cs: 
18005           - Implemented width for DrawReversibleRectangle()
18006           - Added logic to DrawReversibleRectangle that recognizes a zero
18007             width or height and only draws a line in that situation
18008         
18009 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
18010
18011         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
18012         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
18013         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
18014           method (it uses our FosterParent window to get a graphics context)
18015
18016 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
18017
18018         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
18019           and SetWindowBackground methods
18020         * Control.cs:
18021           - Setting proper ControlStyles
18022           - We no longer call XplatUI.SetWindowBackground and XplatUI.
18023             EraseWindowBackground, instead we draw the window background
18024             ourselves in PaintControlBackground. This behaviour is
18025             required to match MS, where, when OnPaintBackground is not
18026             called, the background is not drawn.
18027           - Removed unneeded Refresh() in set_Text
18028         * Hwnd.cs: Dropped the ErasePending support. No longer needed
18029         * XplatUIX11.cs:
18030           - Created DeriveStyles method to translate from CreateParams to
18031             FormBorderStyle and TitleStyle, also handles BorderStyle (which
18032             matches FormBorderStyle enum values)
18033           - Consolidated SetHwndStyles and CalculateWindowRect border/title
18034             style calculations into single DeriveStyles method
18035           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
18036             from redrawing the whole window on any resize or expose.
18037           - Fixed CreateWindow usage of SetWindowValuemask. Before not
18038             all styles were applied to our whole/client window appropriately
18039           - Removed EraseWindowBackground() and SetWindowBackground() methods
18040           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
18041             no longer clear/redraw the background through X
18042           - Removed handling of erase_pending bit, we have no use for it (or
18043             so it seems)
18044         * XplatUIOSX.cs:
18045           - Removed generation and handling of WM_ERASEBKGND message
18046           - Removed EraseWindowBackground() and SetWindowBackground() methods
18047           - Removed handling of hwnd.ErasePending flag
18048         * XplatUIWin32.cs:
18049           - Removed EraseWindowBackground() and SetWindowBackground() methods
18050           - We no longer call EraseWindowBackground on PaintEventStart, we 
18051             ignore the fErase flag, erasing is handled in Control in the
18052             background handler
18053         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
18054           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
18055           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
18056           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
18057           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
18058           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
18059           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
18060
18061 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
18062
18063         * PropertyGrids.cs: Get sub properties
18064         * PropertyGridView.cs: Fix drawing code
18065
18066 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18067
18068         * ListBox.cs: Fixes 76383
18069
18070 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18071
18072         * DataGridTextBoxColumn.cs: Sets location and size before attachment
18073         * ThemeWin32Classic.cs: Fixes border drawing and calculations
18074         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
18075
18076
18077 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18078
18079         * ComboBox.cs: Fixes border drawing
18080
18081 2005-10-10  Miguel de Icaza  <miguel@novell.com>
18082
18083         * MimeIcon.cs: Ignore errors if the file can not be read.
18084
18085 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
18086
18087         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
18088          - Fixed border calculations
18089          - Fixed horizontal scrolling in single column listboxes
18090          - Fixed drawing issues
18091
18092 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
18093
18094         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
18095           FormBorderStyle enum
18096         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
18097           code to determine FormBorderStyles from CreateParams
18098         * Form.cs:
18099           - Fixed bug where we'd set the wrong window styles if we were
18100             not creating an MDI window
18101           - Added call to XplatUI.SetBorderStyle when form borders are set
18102         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
18103         * Hwnd.cs:
18104           - Removed obsolete edge style
18105           - Switched from BorderStyle to FormBorderStyle
18106         
18107 2005-10-10  Jackson Harper  <jackson@ximian.com>
18108
18109         * Form.cs: Use the property to get the window handle instead of
18110         accessing it directly. Prevents a null reference exception.
18111
18112 2005-10-10  Jackson Harper  <jackson@ximian.com>
18113
18114         * TreeView.cs: Don't adjust the rect given to DrawString now that
18115         our libgdiplus draws correctly.
18116
18117 2005-10-08  Jackson Harper  <jackson@ximian.com>
18118
18119         * TreeView.cs: Don't try to find the clicked on node if there are
18120         no nodes in the tree.
18121
18122 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18123
18124         * RichTextBox.cs:
18125
18126           restore
18127
18128 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
18129
18130         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
18131           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
18132           ErrorProvider.cs:
18133           Use ResPool for brushes and dispose System.Drawing objects that
18134           are not used anymore.
18135
18136 2005-10-07  Jackson Harper  <jackson@ximian.com>
18137
18138         * MdiChildContext.cs: Use the new borders instead of drawing them
18139         ourselves.
18140
18141 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18142
18143         * Calling UpdateBounds after changing the window's BorderStyle 
18144         since the style can change the ClientSize
18145
18146 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18147
18148         * Control.cs: Made PaintControlBackground virtual
18149         * Panel.cs: Overriding PaintControlBackground instead of using paint
18150           event; paint event method was interfering with 'real' users of the
18151           event.
18152
18153 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
18154
18155         * ThemeWin32Classic.cs: remove border drawing since it is handled
18156         by the base control class now and was causing double border drawing.
18157
18158 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18159
18160         * Panel.cs: Redraw our background on paint. Not a pretty solution,
18161           but it does seem to match MS behaviour. This fixes bug #75324
18162
18163 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18164
18165         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
18166           somewhat hackish looking
18167
18168 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18169
18170         * TextBoxBase.cs:
18171           - We now accept Enter even if AcceptEnter is false, if the containing
18172             form does not have an AcceptButton configured (fixes bug #76355)
18173           - Calculations are now fixed to no longer use Width/Height, but
18174             ClientSize.Width/Height, since we now support borders (this was
18175             a result of fixing borders and therefore bug #76166)
18176           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
18177             true (fixes bug #76354)
18178         
18179 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18180
18181         * Control.cs: 
18182           - Defaulting BorderStyle and setting it in XplatUI when our window 
18183             is created
18184           - Added enum check to InternalBorderStyle setter
18185         * XplatUIX11.cs: 
18186           - Added drawing of window borders
18187           - Now properly calculates WM decorations offset for toplevel 
18188             windows (fixes bug #74763)
18189         * XplatUIWin32.cs: 
18190           - Implemented BorderStyles for windows (we're letting win32 draw 
18191             the border for us)
18192           - Fixed the signature for SetWindowLong
18193         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
18194           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
18195           setting borders
18196         * UpDownBase.cs: Remove drawing of borders, this is handled by
18197           the driver, outside the client area
18198         * ListView.cs: Removed bogus border calculations. The control should
18199           be oblivious to borders, since those are not part of the client
18200           area. 
18201         * X11DesktopColors.cs: Commented out (currently) unneeded variables
18202         * ThemeWin32Classic.cs: Removed border calculations from ListView 
18203           drawing code
18204
18205 2005-10-06  Jackson Harper  <jackson@ximian.com>
18206
18207         * MdiChildContext.cs: Clear out the old virtual position remove
18208         all the unneeded calls to CreateGraphics.
18209
18210 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18211
18212         * TextControl.cs: Use proper color for highlighted text; fixes #76350
18213
18214 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
18215
18216         * Form.cs: 
18217           - Added loading and setting of our new default icon
18218           - Only set icon if window is already created
18219
18220 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
18221
18222         * Label.cs:
18223           - Do not explicitly set the foreground and background colors, to
18224             allow inheriting from parents (fixes #76302)
18225           - Use Control's InternalBorderStyle property to deal with borders
18226
18227 2005-10-06  Jackson Harper  <jackson@ximian.com>
18228
18229         * MdiChildContext.cs: Use the new xplatui function to draw a
18230         reversible rect.
18231
18232 2005-10-06  Jackson Harper  <jackson@ximian.com>
18233
18234         * Form.cs: Add the parent before creating the child context cause
18235         we need the parent when setting up the child.
18236
18237 2005-10-06  Jackson Harper  <jackson@ximian.com>
18238
18239         * FolderBrowserDialog.cs: redo the tree population code so a
18240         second thread isn't used. Should be a lot faster and more stable
18241         now.
18242
18243 2005-10-05  Jackson Harper  <jackson@ximian.com>
18244
18245         * TreeView.cs: There are no expand/collapse boxes if the node has
18246         no children.
18247
18248 2005-10-05  Jackson Harper  <jackson@ximian.com>
18249
18250         * X11DesktopColors.cs: Get menu colours for the gtk theme.
18251
18252 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
18253
18254         * FileDialog.cs: Fix InitialDirectory
18255
18256 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18257
18258         * ComboBox.cs:
18259                 - Fixes changing between styles
18260                 - Fixes simple mode
18261                 - Fixes last item crashing when navigating with keyboard
18262
18263 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
18264
18265         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
18266
18267 2005-10-05  Jackson Harper  <jackson@ximian.com>
18268
18269         * TreeView.cs: If updating the root node do a full refresh.
18270         * TreeNode.cs: The root node should be expanded by default. Also
18271         added a utility prop to tell if we are the root node.
18272         * TreeNodeCollection.cs: Only refresh if the node we are being
18273         added to is expanded. Also added a comment on a potential
18274         optimization.
18275         
18276 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
18277
18278         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
18279           in dispose method. Fixes #76330
18280
18281 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
18282
18283         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
18284
18285                 - Implements vertical and horizontal scrolling using XplatUI
18286                 - Fixes keyboard navagation
18287                 - Fixes EnsureVisible
18288                 - Drawing fixes
18289                 - Handles and draws focus properly
18290
18291
18292 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
18293
18294         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
18295           Create handle. NET_2_0: Destroy handle when value is null.
18296
18297 2005-10-03  Jackson Harper  <jackson@ximian.com>
18298
18299         * ScrollBar.cs: My last scrollbar patch was broken. This is a
18300         revert and a new patch to prevent the thumb from refreshing so
18301         much.
18302
18303 2005-10-02  Jackson Harper  <jackson@ximian.com>
18304
18305         * ScrollBar.cs: Don't update position if it hasn't actually
18306         changed. This occurs when you hold down the increment/decrement
18307         buttons and the thumb gets to the max/min.
18308
18309 2005-10-01  Jackson Harper  <jackson@ximian.com>
18310
18311         * Form.cs:
18312         * MdiChildContext.cs:
18313         * MdiClient.cs: Implement ActiveMdiChild in Form.
18314
18315 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
18316
18317         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
18318
18319 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
18320
18321         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
18322           be found
18323
18324 2005-09-30  Jackson Harper  <jackson@ximian.com>
18325
18326         * ListBox.cs: Don't do a full refresh unless some data has
18327         actually changed.
18328
18329 2005-09-30  Jackson Harper  <jackson@ximian.com>
18330
18331         * TreeView.cs: Make sure that the checkboxes size is factored in
18332         even when not visible.
18333
18334 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18335
18336         * FileDialog.cs: Fix Jordi's build break
18337
18338 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18339
18340         * FileDialog.cs: 
18341                 - Use standard the Windows colours for the combobox as espected
18342                 - Dispose objects that use resouces when no longer need them
18343
18344 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
18345
18346         * X11DesktopColors.cs: Initial incomplete implementation
18347         * XplatUIX11.cs: Added call to initialize X11DesktopColors
18348
18349 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
18350
18351         * Theme.cs: 
18352           - Switched Theme color names to match the names defined in 
18353             System.Drawing.KnownColors. Life's hard enough, no need to make 
18354             it harder.
18355           - Added setters to all theme color properties so themes can set
18356             their color schemes. The setters also propagate the color changes
18357             to System.Drawing.KnownColors via reflection
18358         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
18359           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
18360           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
18361           use the new, more logical theme color names
18362         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
18363           post-NT colors
18364         * ThemeWin32Classic.cs:
18365           - Removed code to set the old classic Windows colors. Instead it
18366             now relies on the colors returned by System.Drawing.KnownColors
18367             which will be either modern static colors (Unix) or colors
18368             read from the user's configuration (Win32)
18369           - Updated to use the new, more logical theme color names
18370           - Switched DataGrid drawing code to use only Theme colors instead of
18371             a mix of System.Drawing.KnownColors and Theme colors
18372           - DrawFrameControl(): Removed code that fills the button area, the
18373             fill would overwrite any previous fill done by a control. This
18374             fixes bug #75338 
18375           - Added DrawReversibleRectangle() stub
18376         * ScrollableControl.cs: Set visible state to false when scrollbars
18377           are removed (pdn fix)
18378         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
18379           DrawReversibleRectangle() method to allow drawing primitive 
18380           'rubber bands'
18381         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
18382
18383 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18384
18385         * ImageList.cs: Add(Icon): Create handle.
18386
18387 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
18388
18389         * ListView.cs:
18390         * ThemeWin32Classic.cs:
18391                 - Fixes detail mode
18392                 - Sets clippings
18393                 - Issues with drawing
18394
18395 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18396
18397         * ImageList.cs: Moved RecreateHandle back to ImageList as event
18398           source has to be the ImageList.
18399
18400 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18401
18402         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
18403
18404 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18405
18406         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
18407
18408 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18409
18410         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
18411
18412 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
18413         * GridItem.cs: Fixed TODOs
18414         * GridItemCollection.cs: Added ICollection interface
18415
18416 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
18417
18418         * ImageList.cs: Resize icons when needed.
18419
18420 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
18421
18422         * ListViewItem.cs
18423                 - Fixes GetBounds and returns on screen rects
18424         * ListView.cs:
18425                 - Fixes vertical and horzintal scrolling of items
18426         * ThemeWin32Classic.cs:
18427                 - Fixes drawing
18428                 
18429 2005-09-29  Raja R Harinath  <harinath@gmail.com>
18430
18431         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
18432
18433 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
18434
18435         * ImageList.cs: Added comments about handle creation. Moved Handle,
18436           HandleCreated and OnRecreateHandle implementations to ImageCollection.
18437           Handle is created in Add methods.
18438
18439 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18440          
18441         * DataGridDrawingLogic.cs: 
18442                 - Takes rows into account on Colum calculations
18443                 - Returns the column when clickig
18444         * DataGrid.cs:
18445                 - Fixes default HitTestInfo values
18446                 - Fixes HitTestInfo.ToString
18447                 - Fixes ResetBackColor          
18448         
18449 2005-09-28  Jackson Harper  <jackson@ximian.com>
18450
18451         * MdiChildContext.cs: Obey rules for fixed sized windows (no
18452         sizing or cursor changes). Also added some temp code to draw the
18453         titlebars text (Makes dev a little easier).
18454
18455 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18456
18457         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
18458
18459 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
18460          
18461         * ListBox.cs: Fixes bug 76253
18462
18463 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
18464
18465         * ImageList.cs: Added comments about the current implementation. Added
18466           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
18467           Format32bppArgb to preserve transparency and can use Graphics.FromImage
18468           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
18469           with Bitmap.LockBits for better performance. Revised the whole file to
18470           match MS.NET behaviour and provide better performance. Non-public
18471           interface members are calling public members even when they throw
18472           NotSupportedException for better maintainability. Moved ColorDepth,
18473           ImageSize, ImageStream and TransparentColor implementations to
18474           ImageCollection for better performance as these properties are not used
18475           by ImageList.
18476         * ImageListStreamer.cs: Added a new internal constructor that takes an
18477           ImageList.ImageCollection and serializes Images based on
18478           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
18479           match ImageList property name.
18480
18481 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
18482
18483         * ListBox.cs: Fixes IndexFromPoint for last item
18484
18485 2005-09-27  Jackson Harper  <jackson@ximian.com>
18486
18487         * Form.cs: Set the position of new mdi children correctly.
18488
18489 2005-09-27  Jackson Harper  <jackson@ximian.com>
18490
18491         * MdiClient.cs: New mdi children need to be added to the back of
18492         the controls collection so the zorder is set correctly. Also add a
18493         count of all the child windows that have been created.
18494
18495 2005-09-27  Jackson Harper  <jackson@ximian.com>
18496
18497         * Form.cs (CreateParams): Setup MDI forms correctly.
18498
18499 2005-09-27  Jackson Harper  <jackson@ximian.com>
18500
18501         * MdiChildContext.cs:
18502         * MonthCalendar.cs:
18503         * UpDownBase.cs:
18504         * ListBox.cs:
18505         * ListView.cs:
18506         * TextBoxBase.cs:
18507         * TreeView.cs:
18508         * ScrollableControl.cs:
18509         * ComboBox.cs: Add implicit controls using the new implict control
18510         functionality in ControlCollection. Also try to block multiple
18511         control add in a suspend/resume layout to save some cycles.
18512         
18513 2005-09-27  Jackson Harper  <jackson@ximian.com>
18514
18515         * Control.cs: Add functionality to the controls collection to add
18516         'implicit controls' these are controls that are created by the
18517         containing control but should not be exposed to the user. Such as
18518         scrollbars in the treeview.
18519         * Form.cs: The list var of the ControlsCollection is no longer
18520         available because of the potential of implicit controls getting
18521         ignored by someone accessing the list directly.
18522
18523 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
18524
18525         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
18526           loose it's parent. (Fixed bug introduced in r49103 when we added
18527           setting the child parent to null on Remove)
18528
18529 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
18530
18531         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
18532         * Splitter.cs: Added missing attributes for BorderStyle property.
18533         * TextBoxBase.cs: Marked Calculate* methods internal.
18534         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
18535         MS.NET.
18536
18537 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
18538          
18539         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
18540
18541 2005-09-25  Jackson Harper  <jackson@ximian.com>
18542
18543         * TreeView.cs: Update the node bounds correctly regardless of
18544         whether the node is visible.
18545
18546 2005-09-25  Jackson Harper  <jackson@ximian.com>
18547
18548         * ImageList.cs: Don't dispose the image after it is added to the
18549         image list. Only reformat images that need to be resized.
18550
18551 2005-09-25  Jackson Harper  <jackson@ximian.com>
18552
18553         * ImageList.cs: Don't set the format when changing the image.
18554
18555 2005-09-25  Jackson Harper  <jackson@ximian.com>
18556
18557         * TreeView.cs: We can't just assume the node has a font. Use the
18558         treeviews font if no node font is available.
18559
18560 2005-09-25  Jackson Harper  <jackson@ximian.com>
18561
18562         * TreeView.cs: Allow the scrollbars to be reset with negative
18563         values.
18564         - Don't add scrollbars to negative sized windows.
18565
18566 2005-09-23  Jackson Harper  <jackson@ximian.com>
18567
18568         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
18569         old Mono.Posix. Also remove some stray code that shouldn't have
18570         been committed.
18571
18572 2005-09-23  Jackson Harper  <jackson@ximian.com>
18573
18574         * TreeView.cs: Attempt at proper sizing of the horizontal
18575         scrollbar. Also don't resize the scrollbars unless they are
18576         visible.
18577
18578 2005-09-23  Jackson Harper  <jackson@ximian.com>
18579
18580         * TreeView.cs: We don't need to expand the invalid area when the
18581         selection changes, as this is all drawn in the node's bounding
18582         box. The area needs to be expanded (previous typo was contracting
18583         it) when the focus rect moves.
18584
18585 2005-09-23  Jackson Harper  <jackson@ximian.com>
18586
18587         * TreeView.cs: Display the selection box under the correct
18588         circumstances. We were rendering white text with no selection box
18589         before.
18590
18591 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
18592
18593         * TextControl.cs(Split): Now updates selection start/end if it points 
18594           into a line that's being split. Fixes a FIXME and bug #75258
18595
18596 2005-09-23  Jackson Harper  <jackson@ximian.com>
18597
18598         * Binding.cs:
18599         * ListControl.cs: Don't use the path when retrieving binding
18600         managers from the binding context. My bat sense tells me that the
18601         path is only used on insertion.
18602
18603 2005-09-22  Jackson Harper  <jackson@ximian.com>
18604
18605         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
18606
18607 2005-09-22  Jackson Harper  <jackson@ximian.com>
18608
18609         * Splitter.cs: There are special cursors used for splitting.
18610         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
18611
18612 2005-09-22  Jackson Harper  <jackson@ximian.com>
18613
18614         * Splitter.cs: Change the cursor appropriately when the splitter
18615         is moused over, so the user actually knows there is a splitter
18616         there.
18617
18618 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
18619
18620        * Label.cs : Fix ToString method to give same output as MS.NET
18621
18622 2005-09-22  Jackson Harper  <jackson@ximian.com>
18623
18624         * TreeView.cs: Create the scrollbars when the handle is created
18625         and add them right away, just make them invisble. Also account for
18626         the window being shrunk vertically to the point that the vert
18627         scrollbar needs to be added.
18628         - Remove some 0.5 adjustments to get around anti aliasing issues.
18629         
18630 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
18631          
18632         * MainMenu.cs: Fixes default value
18633         * MenuItem.cs: Fixes default value
18634
18635 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
18636
18637         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
18638
18639 2005-09-21  Jackson Harper  <jackson@ximian.com>
18640
18641         * Control.cs: Don't try to set the border style on the window if
18642         it hasn't been created. When the window is created the border
18643         style will be used.
18644
18645 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
18646
18647         * Control.cs (Update): Don't call XplatUI if we don't have a
18648           window handle yet
18649
18650 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
18651
18652         * ContainerControl.cs: Instead of throwing an exception, print
18653           a one-time warning about Validate not being implemented
18654         * XplatUIWin32.cs: Removed debug output
18655
18656 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
18657
18658         * Control.cs: Only set XplatUI background if we expect the windowing
18659           system to handle the background. This stops controls that draw their
18660           own background from flickering
18661
18662         * XplatUIX11.cs: Support custom visuals and colormaps for window 
18663           creation. This allows, amongst other things, using MWF X11 windows 
18664           with OpenGL.
18665
18666 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
18667
18668         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
18669           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
18670           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
18671           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
18672           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
18673           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
18674           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
18675           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
18676           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
18677           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
18678           GridColumnStylesCollection.cs, 
18679           IDataGridColumnStyleEditingNotificationService.cs,
18680           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
18681           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
18682           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
18683           TreeNodeCollection.cs, AmbientProperties.cs, 
18684           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
18685           DataObject.cs, ErrorProvider.cs, Splitter.cs,
18686           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
18687           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
18688           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
18689           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
18690           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
18691           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
18692           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
18693           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
18694           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
18695           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
18696           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
18697           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
18698           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
18699           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
18700           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
18701           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
18702           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
18703           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
18704           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
18705           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
18706           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
18707           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
18708           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
18709           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
18710           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
18711           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
18712           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
18713           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
18714           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
18715           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
18716           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
18717           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
18718           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
18719           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
18720           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
18721
18722 2005-09-21  Jackson Harper  <jackson@ximian.com>
18723
18724         * TreeNode.cs: Call Before/After Expand not Collapse when
18725         expanding.
18726
18727 2005-09-20  Jackson Harper  <jackson@ximian.com>
18728         
18729         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
18730
18731 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
18732          
18733         * ListViewItem.cs:
18734                 - Fixes bug 76120
18735                 - Fixes proper storing of subitems
18736                 - Fixes not updated items
18737
18738 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
18739
18740         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
18741           things if our window handle isn't created yet. Also disabled 
18742           debug for TextBoxBase
18743
18744 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
18745
18746         * MenuAPI.cs: Remove filtering of events to allow menu usage
18747
18748 2005-09-20  Miguel de Icaza  <miguel@novell.com>
18749
18750         * Cursor.cs: Allow null to be passed to Cursor.Current.
18751
18752 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
18753
18754         * ThemeWin32Classic.cs:
18755           - Change some private methods/fields to protected virtual so that 
18756             they can be accessed and overriden in derived classes
18757           - First refactoring of some methods. Derived themes now don't 
18758             need to duplicate the complete code from ThemeWin32Classic
18759         * ThemeNice.cs:
18760           - Added nice StatusBar
18761           - Derive from ThemeWin32Classic and not Theme
18762           - Removed duplicate ThemeWin32Classic code
18763
18764 2005-09-20  Miguel de Icaza  <miguel@novell.com>
18765
18766         * Control.cs (ControlCollection.Add): If the value null is passed
18767         the control is ignored. 
18768
18769         Optimize this loop.
18770
18771 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
18772
18773         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
18774           PostQuitMessage state.
18775         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
18776
18777 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
18778
18779         * Application.cs: Our constructor will never get called, move 
18780           initialization to fields; fixes bug #75933
18781
18782 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
18783
18784         * FileDialog.cs :
18785                 - Allow files to be selected properly using file name
18786                 combo box.
18787                 - Add ability to change diretory (absolute / relative)
18788                 using file name combo box.
18789
18790 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
18791          
18792         * ListBox.cs: 
18793                 - Fixes Multicolumn listboxes item wrong calculations
18794                 - Allows to click when only one item is in the listbox
18795                 - Fixes crash when no items using keyboard navigation
18796
18797 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
18798
18799         * ComboBox.cs: Reverted almost everything from the latest patch which
18800           broke ComboBox
18801
18802 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
18803         
18804         * ToolTip.cs:
18805                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
18806         * ComboBox.cs:
18807                 - When DropDownStyle is Simple, it does not show scrollbar 
18808                 to the last item of the list.
18809                 - When DropDownStyle is Simple, it crashed when the list was 
18810                 scrolled down with the down cursor key.
18811                 - Fixed a bug that when DropDownStyle is DropDownList, the 
18812                 selected item was not shown.
18813                 - The position of the selected item was not preserved when 
18814                 the next dropdown happened.
18815         * ThemeWin32Classic.cs:
18816                 - Items were wrapped at the right end.
18817         * CheckedListBox.cs:
18818                 - Fixed Add method
18819         * ListBox.cs:
18820                 - Items should be fully shown.
18821                 - When resizing and vertical scrollbar disappeared, the item 
18822                 of index 0 should be on the top of the list.
18823                 - GetItemRectangle should consider the size of ver. scrollbar
18824         * StatusBar.cs:
18825                 - SizingGrip area should not be allocated when it is not 
18826                 displayed.
18827                 - Now it reflects MinWidth of the containing panel and 
18828                 fixed a crash that happens when its width becomes so small.
18829
18830 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18831
18832         * CheckedListBox.cs: Fixes bug 76028
18833         * ListBox.cs: Fixes bug 76028
18834
18835 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18836
18837         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
18838         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
18839
18840 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
18841
18842         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
18843
18844 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18845
18846         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
18847
18848 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18849
18850         * IRootGridEntry.cs: Added
18851         * PropertyGridCommands.cs: Added
18852         * PropertiesTab.cs: Added missing methods and property
18853         * PropertyGridView.cs: Made class internal
18854         * PropertyGridTextBox.cs: Made class internal
18855
18856 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18857
18858         * MimeIcon.cs: Try to check some other environment variables
18859           if "DESKTOP_SESSION" returns "default"
18860
18861 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18862
18863         * ThemeNice.cs: Corrected background colors (e.g. menus)
18864         * ColorDialog.cs: Use correct background colors for controls
18865
18866 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18867
18868         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
18869
18870 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
18871
18872         * RichTextBox.cs: Added initial implementation
18873         * lang.cs: Removed. Was accidentally checked in long time ago
18874         * TODO: Removed. Contents were obsolete
18875
18876 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
18877                                                                                 
18878         * PropertiesTab.cs : Added
18879
18880 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
18881                                                                                 
18882         * PropertyGrid.cs : Update
18883         * PropertyGridView.cs : Update
18884         * System.Windows.Forms.resx : Added images and strings
18885
18886 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
18887
18888         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
18889  
18890 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
18891
18892         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
18893           a busy loop right after the Ungrab the X11 display is otherwise 
18894           blocked
18895
18896 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
18897
18898         * ThemeWin32Classic.cs: Optimise the use of clipping
18899
18900 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
18901
18902         * DataGrid.cs: fixes recursion bug
18903
18904 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
18905
18906         * ThemeNice.cs: 
18907           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
18908           - Cleanup
18909
18910 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
18911
18912         * ThemeNice.cs: Draw nice ProgressBars
18913
18914 2005-09-01  Miguel de Icaza  <miguel@novell.com>
18915
18916         * VScrollBar.cs: Another buglet found by Aaron's tool. 
18917
18918         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
18919         bug finder.
18920
18921 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
18922
18923         * ThemeNice.cs:
18924           - Added nicer menu drawing
18925           - Updated DrawTab
18926           - some refactoring
18927
18928 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
18929
18930         * CreateParams.cs (ToString): Made output match MS
18931         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
18932             handle is already created (to avoid forcing window creation)
18933         * XplatUIX11.cs: Set window text to caption after creating window,
18934           in case Text was set before window was created
18935         * Form.cs: Use this.Text instead of a static string as caption
18936
18937 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
18938
18939         * NotifyIcon.cs: Don't set the window to visible; this screws
18940           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
18941           OnPaint without a bitmap)
18942         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
18943           happen very often anyway; we could add the check to the WM_PAINT 
18944           event generation code
18945
18946 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
18947
18948         * NotifyIcon.cs: Fill the icon area with a background color, to 
18949           avoid 'residue' when transparent icons are drawn
18950         * XplatUIX11.cs:
18951           - Handle whole_window == client_window when destroying windows
18952           - SystrayAdd(): Set client_window to whole_window value to
18953             get mouse and other events passed to NotifyIcon
18954
18955 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
18956
18957         * Form.cs: Set proper default for Opacity property
18958         * NotifyIcon.cs:
18959           - ShowSystray(): Don't bother creating telling the OS
18960             about the systray item if no icon is provided
18961           - Now handles WM_NCPAINT message to deal with whole/client window
18962             split
18963           - Create window as visible to not get caught by Expose optimization
18964         * Hwnd.cs: Removed debug message
18965         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
18966           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
18967             PaintEventStart/End to use new client argument
18968         * TextBoxBase.cs:
18969           - Commented out debug messages
18970           - Switched PaintEventStart/End to use new client argument
18971         * XplatUI.cs: Added client window bool to PaintEventStart()/
18972           PaintEventEnd() calls, to support drawing in non-client areas
18973         * XplatUIDriver.cs: 
18974           - Added client window bool to PaintEventStart()/PaintEventEnd() 
18975             calls, to support drawing in non-client areas
18976           - Added conditional compile to allow using MWF BeginInvoke 
18977             on MS runtime
18978         * XplatUIX11.cs:
18979           - Added some conditional debug output
18980           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
18981             whole/client window split
18982           - Implemented handling of client argument to PaintEventStart()/End()
18983         * Control.cs:
18984           - Throw exception if BeginInvoke() is called and the window handle
18985             or one of the window's parent handles is not created
18986           - Added conditional compile to allow using MWF BeginInvoke on
18987             MS runtime
18988           - get_Parent(): Only sets parent if handle is created. This avoids
18989             forcing window handle creation when parent is set.
18990           - Now fires Layout and Parent changed events in proper order
18991           - Switched to use Handle instead of window.Handle for Z-Order setting,
18992             the get_Parent() patch above causes us to possibly get null for 'window'
18993           - Implemented handling of client argument to PaintEventStart()/End()
18994           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
18995             default handling)
18996           - Now sends a Refresh() to all child windows when Refresh() is called
18997
18998 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
18999
19000         * Form.cs: Added (non-functional) Opacity property
19001         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
19002
19003 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
19004         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
19005           use export MONO_THEME=nice to activate it.
19006           Currently supported controls:
19007           - Button
19008           - ComboBox
19009           - ScrollBar
19010           - TabControl (TabAlignment.Top only, other will follow)
19011         * ThemeEngine.cs: Add theme nice
19012         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
19013           if enabled
19014
19015 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
19016
19017         * Splitter.cs: Resize docked control and its neighbor.
19018
19019 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19020         -- Making Windows with Menus layout correctly --
19021         * Form.cs : The first leg of the fix
19022                 Menu setter - adjust Client Size as needed to make space for the menu
19023                 SetClientSizeCore - doesn't call base version to be able to pass the 
19024                         menu handle to XplatUI.CalculateWindowRect
19025         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
19026         * XplatUIX11.cs: The critical second leg of the fix
19027                 GetWindowPos needs to use a recalculated client_rect
19028                 so that resizing the window doesn't break layout of child controls. 
19029                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
19030                 Lots of \t\n killed
19031
19032 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
19033
19034         * Label.cs: Now properly recalculates width and height on Font and Text
19035           changes if AutoSize is set
19036
19037 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19038         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
19039
19040 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
19041
19042         * ImageList.cs: Makes ToString method compatible with MS
19043
19044 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
19045
19046         * MenuAPI.cs: fixes bug 75716
19047
19048 2005-08-11 Umadevi S <sumadevi@novell.com>
19049         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
19050
19051 2005-08-11 Umadevi S <sumadevi@novell.com>
19052         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
19053
19054 2005-08-10  Umadevi S <sumadevi@novell.com>
19055         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
19056
19057 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
19058
19059         * Menu.cs: fixes bug 75700
19060         * MenuAPI.cs: fixes navigation issues
19061
19062 2005-08-09  Umadevi S <sumadevi@novell.com>
19063         * CheckedListBox.cs - simple fix for GetItemChecked.
19064
19065 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
19066
19067         * ComboBox.cs: Serveral fixes
19068         * ListBox.cs: Serveral fixes
19069
19070 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19071
19072         * ComboBox.cs: Fixes FindString methods and GetItemHeight
19073         * ListBox.cs: Fixes FindString methods
19074
19075 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
19076
19077         * DataGrid.cs: fixes bugs exposed by new tests
19078
19079 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
19080
19081         * Mime.cs: Compile Mono assembly references only if compiling
19082           with Mono (Allows to build with VS.Net again)
19083
19084 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
19085
19086         * Control.cs (PaintControlBackground): Draw background image
19087         corrrectly.
19088         (CheckForIllegalCrossThreadCalls): Stubbed.
19089         
19090         * Form.cs (OnCreateControl): Center when should be centered.
19091         
19092         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
19093
19094 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
19095
19096         * Binding.cs: Binding to properties should be case unsensitive
19097
19098 2005-07-18 vlindos@nucleusys.com
19099
19100         * DataGrid.cs: fixes setmember order
19101
19102 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
19103
19104         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
19105         * FileDialog.cs: FileDialog is now resizable and uses the new
19106           MimeIconEngine
19107
19108 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
19109
19110         * DataGridTextBoxColumn.cs: default value
19111         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
19112         * GridTableStylesCollection.cs: fixes checking MappingName
19113         * DataGridDrawingLogic.cs: fixes drawing logic issues
19114         * DataSourceHelper.cs: rewritten to make compatible with more data sources
19115         * DataGrid.cs: fixes    
19116
19117 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
19118
19119         * MimeGenerated.cs: Use case sensitive comparer for
19120           NameValueCollections
19121
19122 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
19123
19124         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
19125         * ThemeWin32Classic.cs: bug fixes, code refactoring
19126         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
19127         * DataGrid.cs: bug fixes, code refactoring
19128         * DataGridTextBox.cs: bug fixes, code refactoring
19129         * DataGridColumnStyle.cs:  bug fixes, code refactoring
19130         * Theme.cs:  bug fixes, code refactoring
19131
19132 2005-07-01  Peter Bartok  <pbartok@novell.com> 
19133
19134         * TextControl.cs: Quick fix for the reported crash on ColorDialog
19135           and other text box usage
19136
19137 2005-07-01  Jackson Harper  <jackson@ximian.com>
19138
19139         * TabControl.cs: Make sure the bottom of the tab covers the pages
19140         border.
19141
19142 2005-06-30  Peter Bartok  <pbartok@novell.com> 
19143
19144         * Form.cs (ShowDialog): Assign owner of the dialog
19145         * TextBoxBase.cs: Always refresh caret size when deleting, caret
19146           might have been moved to a tag with different height
19147
19148 2005-06-30  Jackson Harper  <jackson@ximian.com>
19149
19150         * Form.cs: Don't create an infinite loop when setting focus
19151         * MenuItem.cs: Don't dirty the parents if we don't have any
19152
19153 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
19154
19155         * LibSupport.cs: Rename
19156
19157 2005-06-29  Peter Bartok  <pbartok@novell.com>
19158
19159         * TextBoxBase.cs: Re-align caret after deleting a character
19160         * TextControl.cs:
19161           - DeleteChars(): Ensure that tag covers the provided position
19162           - StreamLine(): Drop reference for dropped tag
19163
19164 2005-06-29  Peter Bartok  <pbartok@novell.com> 
19165
19166         * TextControl.cs: 
19167           - Selections now work properly, anchoring at the initial location
19168             and properly extending in either direction (SetSelectionToCaret(),
19169             SetSelectionStart() and SetSelectionEnd())
19170           - No longer redraws the whole control on selection change, now
19171             calculates delta between previous and new selection and only
19172             invalidates/redraws that area
19173           - Fixed FindPos() math off-by-one errors
19174           - Changed DeleteChars() to verify the provided tag covers the
19175             provided position, selections may have a tag that doesn't cover
19176             the position if the selection is at a tag border
19177           - Fixed off-by-one errors in DeleteChars()
19178           - Added missing streamlining check in DeleteChars() to remove
19179             zero-length tags
19180           - Implemented Invalidate() method, now properly calculates exposures
19181             between two given lines/positions
19182           - Implemented SetSelection()
19183           - Obsoleted and removed FixupSelection()
19184           - Improved RecalculateDocument() logic, removing code duplication
19185
19186 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19187
19188         * LibSupport.cs: changes to match different input/output arguments.
19189
19190 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19191
19192         * LibSupport.cs: added libsupport.so init routine.
19193
19194 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
19195         
19196         * ControlBindingsCollection.cs
19197                 - Throws an exception on null datasource when adding
19198                 - Checks for duplicated bindings when adding
19199
19200 2005-06-28  Jackson Harper  <jackson@ximian.com>
19201
19202         * TreeView.cs (OnKeyDown): Support left and right properly
19203         (navigates as well as expanding and collapsing.
19204         - Add support for Multiply, this expands all the selected nodes
19205         children.
19206         - Fix some tabbing.
19207
19208 2005-06-28  Jackson Harper  <jackson@ximian.com>
19209
19210         * TreeView.cs: Implement keyboard navigation, currently supports,
19211         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
19212         support for toggling checkboxes with the space bar.
19213
19214 2005-06-28  Jackson Harper  <jackson@ximian.com>
19215
19216         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
19217         tree.
19218
19219 2005-06-28  Jackson Harper  <jackson@ximian.com>
19220
19221         * TreeView.cs: Add missing event.
19222
19223 2005-06-27  Peter Bartok  <pbartok@novell.com> 
19224
19225         * TextControl.cs:
19226           - Made line ending size configurable (now allows for counting 
19227             lineendings as \n or \r\n)
19228           - Added margin to viewport to keep caret visible on right side
19229           - Fixed translation routines for line/pos to documentpos to consider
19230             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
19231           - Fixed some line-endings to be unix style
19232           - Fixed Document.FormatText to perform it's calculations 1-based
19233           - Added descriptions for a few methods that might otherwise get 
19234             used wrong
19235           - Added NOTE section with some basic conventions to remember at 
19236             the top of the file
19237           - Major fixup for RichTextBox selection drawing:
19238             * Fixed crashes when multiple tags on a single line were selected
19239             * fixed selection box drawing not overlaying text
19240             * fixed bogus offset calculation for tags not starting at index 1
19241             * Switched behaviour from using multiple Substrings of a 
19242               StringBuilder.ToString() to using multiple 
19243               StringBuilder.ToString(start, length) statements, hoping this is
19244               faster (kept original version commented out in the code, in case
19245               original version was faster)
19246         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
19247           alignment != Left
19248         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
19249           call it as well
19250
19251 2005-06-27  Jackson Harper  <jackson@ximian.com>
19252
19253         * TabControl.cs: Move to the left and right with the arrow
19254         keys. These keys don't cycle beyond first and last like
19255         tab. Refresh all the tabs when scrolling them to the left or
19256         right.
19257
19258 2005-06-27  Jackson Harper  <jackson@ximian.com>
19259
19260         * TabControl.cs:
19261           - ToString: Added method
19262           - CreateParams: Remove TODO and comment
19263           - OnKeyDown: Cycle through bounds properly.
19264           - SelectedIndex: Scroll to the right or left if we need to
19265           display the newly selected tab.
19266
19267 2005-06-23  Jackson Harper  <jackson@ximian.com>
19268
19269         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
19270         set.
19271
19272 2005-06-23  Jackson Harper  <jackson@ximian.com>
19273
19274         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
19275         CTRL-SHIFT-TAB, and HOME, END are there any others?
19276
19277 2005-06-23  Jackson Harper  <jackson@ximian.com>
19278
19279         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
19280
19281 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19282         
19283         * DataGridTextBoxColumn.cs: fixes and enhancements
19284         * ThemeWin32Classic.cs: fixes and enhancements
19285         * DataGridBoolColumn.cs:  fixes and enhancements
19286         * DataGridDrawingLogic.cs:  fixes and enhancements
19287         * CurrencyManager.cs: fixes and enhancements
19288         * DataGrid.cs: fixes and enhancements
19289         * DataGridColumnStyle.cs:  fixes and enhancements
19290
19291 2005-06-22  Jackson Harper  <jackson@ximian.com>
19292
19293         * TabControl.cs: Add some missing methods that just call into the
19294         base. Make the TabPageCollection's IList interface behave in the
19295         same manner as the MS implementation.
19296
19297 2005-06-22  Peter Bartok  <pbartok@novell.com> 
19298
19299         * TextControl.cs: Added sanity check
19300         * TextBoxBase.cs: 
19301           - Fixed wrapping behaviour, don't set wrap on single line controls
19302             (this fixes the breakage of colordialog introduced in an earlier
19303              checkin)
19304           - Added rudimentary support for autoscrolling right-aligned controls
19305             (still needs fixing, also, center alignment scroll is missing)
19306
19307 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
19308         
19309         * ScrollBar.cs: Fixes thumbpos on Maximum values
19310
19311 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
19312         
19313         * PropertyGridView.cs: Pass context information to UITypeEditors 
19314
19315 2005-06-21  Peter Bartok  <pbartok@novell.com> 
19316
19317         * TextBoxBase.cs:
19318           - Now calling PositionCaret with absolute space coordinates
19319           - Enabled vertical scrolling
19320           - Better tracking of scrollbar changes, tied into WidthChange
19321             event
19322           - Improved cursor tracking
19323           - Removed debug output
19324         * TextControl.cs:
19325           - PositionCaret coordinates are now works in absolute space, not 
19326             the canvas
19327           - Improved tracking of document size
19328           - Added events for width and height changes
19329
19330 2005-06-21  Peter Bartok  <pbartok@novell.com>
19331
19332         * Form.cs: Set focus to active control when form is activated
19333         * TextControl.cs: 
19334           - Added word-wrap functionality to RecalculateLine() 
19335           - Added some short function descriptions for VS.Net to aid in
19336             writing dependent controls
19337           - Added Caret property, returning the current coords of the caret
19338           - Added ViewPortWidth and ViewPortHeight properties
19339           - Added Wrap property
19340           - Added CaretMoved event
19341           - Removed some old debug code
19342           - Split() can now create soft splits
19343           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
19344           - Added method to format existing text
19345           - Fixed size/alignment calculations to use viewport
19346           - RecalculateDocument now can handle changing line-numbers while
19347             calculating lines
19348
19349         * TextBox.cs:
19350           - Added some wrap logic, we don't wrap if alignment is not left
19351           - Added casts for scrollbar var, base class switched types to
19352             also support RichTextBoxA
19353           - Implemented handling of scrollbar visibility flags
19354
19355         * TextBoxBase.cs:
19356           - Switched scrollbars type to RichTextBoxScrollBars to support
19357             RichTextBox
19358           - Added tracking of canvas width/height
19359           - Switched scrollbars to be not selectable (to keep focus on text)
19360           - Added central CalculateDocument() method to handle all redraw
19361             requirements
19362           - Added ReadOnly support
19363           - Added WordWrap support
19364           - Fixed handling of Enter key (we now treat it as a DialogKey)
19365           - Fixed caret positioning when h or v scroll is not zero
19366           - Fixed placing/generation of vertical scrollbar
19367           - Added CalculateScrollBars() method to allow updating scrollbar
19368             limits and visibility
19369           - Fixed handling of horizontal scroll
19370           - Added handling of vertical scroll
19371           - Implemented auto-'jump' when caret moves to close to a left or
19372             right border and there is text to be scrolled into view (currently
19373             there's the potential for a stack overflow, until a bug in
19374             scrollbar is fixed)
19375
19376 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
19377         
19378         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
19379
19380 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
19381
19382         * Mime.cs:
19383         - added inodes.
19384         - return application/x-zerosize for files with size zero
19385           (if no extension pattern matches).
19386         - check matches collection for strings too.
19387         - return only the first mime type if the name value
19388           collection has more than one mime type.
19389
19390 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
19391         
19392         * PropertyGrid.cs: Cleaned up some TODOs
19393         * PropertyGridView.cs: Added support for UITypeEditors
19394
19395 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19396         
19397         * DataGrid.cs: clears cached value
19398
19399 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
19400
19401         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
19402         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
19403         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
19404         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
19405         
19406 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
19407
19408         * ThemeWin32Classic.cs: fixes colour
19409
19410 2005-06-15  Peter Bartok  <pbartok@novell.com>
19411
19412         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
19413         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
19414         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
19415         * Control.cs: Added some MWFCategory and MWFDescription attributes
19416         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
19417
19418 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
19419
19420         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
19421         usage
19422
19423 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
19424
19425         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
19426         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
19427         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
19428         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
19429         * DataGrid.cs: default datagrid settings for Default Styles, fixes
19430         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
19431
19432 2005-06-13  Jackson Harper  <jackson@ximian.com>
19433
19434         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
19435         isn't printed when the user enables dropping. (X11 does accept
19436         drops).
19437         
19438 2005-06-13  Jackson Harper  <jackson@ximian.com>
19439
19440         * TreeView.cs: Remove some TODOS.
19441
19442 2005-06-13  Jackson Harper  <jackson@ximian.com>
19443
19444         * Form.cs: Hook into the mdi framework.
19445         * MdiClient.cs: Use the base control collections add method so
19446         parents get setup correctly. Set the default back colour and dock
19447         style.
19448         * MdiChildContext.cs: New class, this bad actor handles an
19449         instance of an MDI window. Right now there is only basic
19450         support. You can drag, close, and resize windows. Minimize and
19451         Maximize are partially implemented.
19452
19453 2005-06-13  Jackson Harper  <jackson@ximian.com>
19454
19455         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
19456         freaky when both vals are negative. NOTE: There are probably other
19457         places in XplatUIX11 that this needs to be done.
19458
19459 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
19460
19461         * DataGrid.cs: implement missing methods, move KeyboardNavigation
19462         * DataGridColumnStyle.cs: fixes signature
19463
19464 2005-06-12  Jackson Harper  <jackson@ximian.com>
19465
19466         * XplatUIX11.cs: Use sizing cursors similar to the ones on
19467         windows.
19468
19469 2005-06-11  Jackson Harper  <jackson@ximian.com>
19470
19471         * StatusBarPanel.cs: Signature cleanups. Implement
19472         BeginInit/EndInit.
19473
19474 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
19475
19476         * DataGridTextBoxColumn.cs: Honors aligment
19477         * GridColumnStylesCollection.cs: Contains is case unsensitive
19478         * GridTableStylesCollection.cs: several fixes
19479         * DataGridTableStyle.cs: default column creation
19480         * DataGridDrawingLogic.cs: fixes
19481         * CurrencyManager.cs: ListName property
19482         * DataGrid.cs: multiple styles support
19483         * DataGridColumnStyle.cs: fixes
19484         
19485
19486 2005-06-10  Peter Bartok  <pbartok@novell.com>
19487
19488         * Control.cs(Select): Moved SetFocus call to avoid potential
19489           loops if controls change the active control when getting focus
19490         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
19491           the up/down buttons
19492
19493 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
19494
19495         * ImageListConverter.cs: Implemented
19496
19497 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19498
19499         * MonthCalendar.cs: Wired in NumericUpDown control for year
19500
19501 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
19502
19503         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
19504           DoubleClick events, since they are not meant to be fired.
19505
19506 2005-06-09  Peter Bartok  <pbartok@novell.com>
19507
19508         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
19509           Jonathan's standalone controls into MWF, implemented missing
19510           events, attributes and methods; added xxxAccessible classes
19511         * AccessibleObject.cs: Made fields internal so other classes
19512           can change them if needed
19513
19514 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
19515
19516         * UpDownBase.cs: Complete implementation
19517         * NumericUpDown.cs: Complete implementation
19518         * DomainUpDown.cs: Complete implementation
19519
19520 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
19521
19522         * DataGridTextBoxColumn.cs: drawing fixes
19523         * DataGridCell.cs: fixes ToString method to match MSNet
19524         * DataGridTableStyle.cs: fixes
19525         * DataGridBoolColumn.cs: fixes, drawing
19526         * DataGridDrawingLogic.cs: fixes, new methods
19527         * DataGridTextBox.cs: Keyboard and fixes
19528         * DataGrid.cs:
19529                 - Keyboard navigation
19530                 - Scrolling fixes
19531                 - Row selection (single, multiple, deletion, etc)
19532                 - Lots of fixes
19533         
19534 2005-06-07  Jackson Harper  <jackson@ximian.com>
19535
19536         * ThemeWin32Classic.cs: Clear the background area when drawing
19537         buttons.
19538
19539 2005-06-06  Peter Bartok  <pbartok@novell.com>
19540
19541         * ImageListStreamer.cs: Fixed signature for GetData
19542         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
19543         * ComboBox.cs:
19544           - Added missing ChildAccessibleObject class
19545           - Added missing OnXXXFocus overrides, switched to using those
19546             instead of the event handler
19547         * Control.cs:
19548           - Added Parent property for ControlAccessibleObject
19549           - Fixed signatures
19550           - Fixed attributes
19551           - Added ResetBindings()
19552         * ListBindingConverter.cs: Implemented some methods
19553         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
19554         * ImageList.cs: Implemented basic handle scheme, removed TODOs
19555         * ContainerControl.cs: Fixed signature, now subscribing to the
19556           ControlRemoved event instead of overriding the handler, LAMESPEC
19557         * CurrencyManager.cs: Added missing attribute
19558         * MonthCalendar.cs: Added missing properties
19559
19560 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19561
19562         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
19563         
19564 2005-06-06  Gaurav Vaish and Ankit Jain
19565
19566         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
19567         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
19568         
19569 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
19570
19571         * Control.cs: fixes CreateParams Width / Height.
19572
19573 2005-06-05  Peter Bartok  <pbartok@novell.com>
19574
19575         * Win32DnD.cs: Removed compilation warnings
19576
19577 2005-06-05  Peter Bartok  <pbartok@novell.com>
19578
19579         * Control.cs (CreateParams): Since we don't know if one of the
19580           properties we use is overridden, lets make sure if we fail accessing
19581           we continue with a backup plan
19582
19583 2005-06-05  Peter Bartok  <pbartok@novell.com>
19584
19585         * Win32DnD.cs:
19586           - Removed debug output
19587           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
19588             struct
19589           - Plugged resource leak
19590         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
19591           MS size
19592
19593 2005-06-05  Peter Bartok  <pbartok@novell.com>
19594
19595         * XplatUIWin32.cs: Removed DnD code
19596         * Win32DnD.cs: Implemented drop source and drop target functionality
19597
19598 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19599
19600         * UpDownBase.cs: remove duplicate addition of event, enable some code
19601         that was commented out.
19602         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
19603         Validate input when a key is pressed. It works fine now for every
19604         combination of Hexadecimal. Only missing some drawing love when sharing
19605         space with other controls.
19606
19607 2005-06-04  Peter Bartok  <pbartok@novell.com>
19608
19609         * Control.cs:
19610           - We need to pass a window for DragDrop, so enable callback events
19611           - Added DnD callback events when being a DragSource
19612         * XplatUI.cs (StartDrag): Added window handle argument
19613         * XplatUIDriver.cs (StartDrag): Added window handle argument
19614         * QueryContinueDragEventArgs: Made fields internally accessible so
19615           drivers can set them
19616         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
19617           can set them
19618
19619 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
19620
19621         * DataGridTextBoxColumn.cs: column text editing
19622         * DataGridTableStyle.cs: Respect columns styles created by the user
19623         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
19624         * DataGridBoolColumn.cs: bool column editing
19625         * DataGrid.cs: fixes to scrolling, properties, etc
19626         * DataGridTextBox.cs: handle keyboard
19627         * DataGridColumnStyle.cs: fixes
19628
19629 2005-06-02  Jackson Harper  <jackson@ximian.com>
19630
19631         * ImageListStreamer.cs: Somewhat broken implementation of
19632         GetObjectData. The RLE needs some work to match MS properly.
19633
19634 2005-06-02  Jackson Harper  <jackson@ximian.com>
19635
19636         * X11Dnd.cs: Attempting to keep at least one file in MWF
19637         monostyled.
19638
19639 2005-06-02  Peter Bartok  <pbartok@novell.com>
19640
19641         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
19642           that way
19643
19644 2005-06-02  Peter Bartok  <pbartok@novell.com>
19645
19646         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
19647         * XplatUI.cs: Added DoDragDrop() method
19648         * XplatUIDriver.cs: Added DoDragDrop() method
19649
19650 2005-06-02  Jackson Harper  <jackson@ximian.com>
19651
19652         * Splitter.cs: Implement BorderStyle.
19653
19654 2005-06-02  Jackson Harper  <jackson@ximian.com>
19655
19656         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
19657         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
19658         X11 using XDND.
19659
19660 2005-06-02  Peter Bartok  <pbartok@novell.com>
19661
19662         * DataObject.cs:
19663           - Added Data setter
19664           - Fixed broken insertion code for SetData, now also
19665             overwrites any existing entry of the same format name
19666         * Hwnd.cs: Added list of pointers that automatically gets
19667           freed when the window is disposed
19668         * XplatUI.cs: Call driver initialization method when loading
19669           a driver
19670         * Control.cs:
19671           - OnDragLeave takes EventArgs, not DragEventArgs
19672           - Added setting of WS_EX_ACCEPTFILES style when dropping is
19673             supported
19674           - Forces style update when drop state changes
19675         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
19676           not perfect since we cannot (yet) call the IDataObject.GetData()
19677           method, we keep getting 0x80004005 error, dunno why)
19678
19679 2005-06-02  Peter Bartok  <pbartok@novell.com>
19680
19681         * DragEventArgs.cs: Make fields internal so we can cache the
19682           object and re-set the fields from XplatUI
19683
19684 2005-06-02  Jackson Harper  <jackson@ximian.com>
19685
19686         * Control.cs: Add some internal methods so the DnD subsystem can
19687         raise DnD events. Also call into the driver when AllowDrop is set.
19688         * XplatUI.cs:
19689         * XplatUIDriver.cs: New method for setting whether or not a window
19690         is allowed to accept drag and drop messages.
19691                 
19692 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
19693         
19694         * ScrollBar.cs: Make sure that values sent in Scroll events
19695         are always between Maximum and Minimum.
19696
19697 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
19698
19699         * Menu.cs: Call MenuChanged when menuitem visibility has been
19700         changed.
19701         * MenuItem.cs: Rebuild menu when item is (not) visible.
19702         * MainMenu.cs: MainMenu has special MenuChanged.
19703         * Theme.cs: Caption and FrameBorderSize are not fixed.
19704         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
19705         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
19706         * XplatUIX11.cs,
19707         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
19708         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
19709
19710 2005-05-30  Jackson Harper  <jackson@ximian.com>
19711
19712         * DataFormat.cs: We can't statically initialize this stuff because
19713         it calls into the xplatui and could create a loop. So we lazy init
19714         it.
19715
19716 2005-05-28  Jackson Harper  <jackson@ximian.com>
19717
19718         * Control.cs: Proper implementation of Product(Name/Version).
19719
19720 2005-05-27  Jackson Harper  <jackson@ximian.com>
19721
19722         * DataObject.cs: Dont crash if no data is found.
19723
19724 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
19725         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
19726                 as per status page, guessing it should be set to true
19727
19728 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
19729
19730         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
19731         * DataGridTableStyle.cs: set proper formatting text, def header text
19732         * ThemeWin32Classic.cs: new themable paramaters
19733         * DataGridBoolColumn.cs: paint check box, get data, fixes
19734         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
19735         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
19736         * DataGridColumnStyle.cs: fixes
19737         * Theme.cs: new themable paramaters
19738                 
19739 2005-05-26  Peter Bartok  <pbartok@novell.com>
19740
19741         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
19742
19743 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19744         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
19745
19746 2005-05-24  Peter Bartok  <pbartok@novell.com>
19747
19748         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
19749           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
19750           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
19751           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
19752           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
19753           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
19754           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
19755           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
19756           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
19757           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
19758           missing attributes, etc
19759         * DataGridPreferredColumnWidthTypeConverter.cs: Added
19760
19761 2005-05-24  Peter Bartok  <pbartok@novell.com>
19762
19763         * Help.cs: Added, implemented trivial functions, throws up MessageBox
19764           when user tries to get help
19765         * DataObject.cs, DataFormats.cs, LinkArea.cs,
19766           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
19767           to suppress warnings
19768         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
19769           avoid unreachable code warning
19770
19771 2005-05-20  Peter Bartok  <pbartok@novell.com>
19772
19773         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
19774
19775 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19776
19777         * DataGridTextBoxColumn.cs: Basic painting methods
19778         * DataGridTableStyle.cs: Set table style in the column
19779         * ThemeWin32Classic.cs: Use Theme for colors
19780         * DataGridDrawingLogic.cs: Implement more drawing
19781         * DataGrid.cs: drawing, theming, enhacements, fixes
19782         * DataGridColumnStyle.cs: fixes, drawing
19783         * Theme.cs: theming for Datagrid
19784
19785 2005-05-20  Peter Bartok  <pbartok@novell.com>
19786
19787         * Cursor.cs: Implemented GetObjectData() method
19788
19789 2005-05-20  Peter Bartok  <pbartok@novell.com>
19790
19791         * Cursors.cs: Added setting of cursor name
19792         * Cursor.cs:
19793           - Implemented constructors
19794           - Implemented Draw and DrawStretched
19795           - Implemented Current property
19796           - Implemented == and != operators
19797           - Implemented Dispose()
19798           - Implemented ToString
19799           - Added missing attributes
19800         * XplatUIX11.cs:
19801           - Added missing reset for OverrideCursor when DoEvents is called
19802           - Fixed creation of cursor, logic was wrong
19803         * XplatUIWin32.cs:
19804           - Added missing reset for OverrideCursor when DoEvents is called
19805           - Fixed creation of cursor, bit arrays were swapped
19806         * Clipboard.cs: Removed obsolete MonoTODO attribute
19807
19808 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19809
19810         * ComboBox.cs: fixes OnSelectedItemChanged
19811         * ControlBindingsCollection.cs: fixes item range check
19812
19813 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19814
19815         * UpDownBase.cs:
19816                 - Calc preferred height properly
19817                 - Implement missing properties
19818                 
19819         * NumericUpDown.cs: Implement missing events
19820
19821 2005-05-19  Jackson Harper  <jackson@ximian.com>
19822
19823         * TabControl.cs: New method that resizes the tab pages before
19824         redrawing them. This as needed as the control is double buffered
19825         and sizing will not be recalculated unless ResizeTabPages is
19826         called.
19827         * TabPage.cs: Set base.Text instead of Text in the constructor so
19828         that UpdateOwner does not get called. Use the new Redraw method of
19829         TabControl instead of Refresh so the sizing is recalculated.
19830         * ThemeWin32Classic.cs: Draw the text for button tabs.
19831
19832 2005-05-19  Jackson Harper  <jackson@ximian.com>
19833
19834         * Control.cs: Paint control background images. Fix typo where
19835         PaintControlBackground was not getting called correctly.
19836
19837 2005-05-19  Peter Bartok  <pbartok@novell.com>
19838
19839         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
19840           I can investigate, apparently I broke FileDialog
19841
19842 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
19843
19844         * AxHost.cs: Some simple properties.
19845         * Control.cs: window must be accessible after ctor.
19846         * Form.cs: Added TransparencyKey property.
19847         * TextBoxBase.cs: Implemented Clear. Text property can be null.
19848         * XplatUIWin32.cs: SetBorderStyle implemented.
19849
19850 2005-05-18  Peter Bartok  <pbartok@novell.com>
19851
19852         * DataObject.cs: Entries are not global but particular to the
19853           DataObject, now it behaves that way
19854         * XplatUIWin32.cs: Implemented Clipboard methods
19855         * Clipboard.cs: Implemented
19856         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
19857         * XplatUIOSX.cs: Updated to final clipboard prototypes
19858         * XplatUIX11.cs: Implemented Clipboard methods
19859         * XplatUIDriver.cs: Updated to final clipboard prototypes
19860         * XplatUIStructs.cs:
19861           - Added BITMAPINFOHEADER struct
19862           - Added ClipboardFormats enum
19863         * X11Structs.cs:
19864           - Added ClipboardStruct
19865           - Added Atom enum items for clipboard types
19866           - Fixed atom types for Selection event structures
19867         * DataFormats.cs:
19868           - Added internal properties and methods for drivers to enumerate
19869             all known formats
19870           - Switched initialization method to allow drivers to assign their
19871             own IDs even for the MS predefined clipboard IDs
19872         * XplatUI.cs: Updated to final clipboard interface
19873
19874 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19875         * PropertyGridView.cs: Fixed compiler warnings.
19876
19877 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19878         * PropertyGrid.cs: Added some event calls
19879         * PropertyGridView.cs: Change drawing code to use double buffering
19880         * PropertyGridTextBox.cs: Changed Text property name
19881         * GridItem.cs: Added Bounds property.
19882         * GridEntry.cs: Added Bounds property.
19883
19884 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
19885
19886         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
19887         since GetType() may not return the correct type if the object is
19888         a remoting proxy.
19889
19890 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
19891
19892         * TreeNodeCollection.cs: fixes get/set item ranges
19893         
19894 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
19895
19896         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
19897                 
19898 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
19899
19900         * ComboBox.cs: Fix item range comparation
19901         * ListView.cs: Fix item range comparation
19902
19903 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
19904
19905         * FontDialog.cs:
19906           - Clear example panel when OnPaint is called
19907           - Better solution for displaying the example panel text
19908           - Select default indexes in the ListBoxes
19909
19910 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
19911
19912         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
19913
19914 2005-05-11  Peter Bartok  <pbartok@novell.com>
19915
19916         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
19917         * SelectionRangeConverter.cs: Implemented
19918         * PropertyGrid.cs: Fixed attribute value
19919         * Control.cs:
19920           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
19921           - Added Sebastien Pouliot's CAS Stack Propagation fixes
19922         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
19923           that's common to all drivers. First methods to go there are
19924           Sebastien Pouliot's CAS Stack Propagation helper methods
19925         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
19926           Sebastien Pouliot for CAS Stack Propagation
19927
19928 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
19929
19930         * OSXStructs.cs:
19931           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
19932
19933 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
19934
19935         * DataGridTextBoxColumn.cs: fixed some members
19936         * GridColumnStylesCollection.cs: indexed column is case insensitive
19937         * DataGridTableStyle.cs: fixes
19938         * ThemeWin32Classic.cs: add new theme parameter
19939         * Theme.cs: add new theme parameter
19940         * DataGridDrawingLogic.cs: Datagrid's drawing logic
19941         * DataGrid.cs: fixes, new internal properties, etc.
19942         * DataGridColumnStyle.cs: allows to set grid value
19943         *
19944
19945 2005-05-10  Peter Bartok  <pbartok@novell.com>
19946
19947         * AccessibleObject.cs:
19948           - Removed MonoTODO attribute on help, method is correct
19949           - Fixed Bounds property
19950         * AxHost.cs: Moved MonoTODO
19951         * ButtonBase.cs: Now setting AccessibleObject properties
19952         * RadioButton.cs: Setting proper AccessibleObject role
19953         * CheckBox.cs: Setting proper AccessibleObject role
19954         * ControlBindingsCollection.cs: Added properties, methods and attributes
19955         * DataFormats.cs: Fixed awkward internal API, and changed to enable
19956           userdefined DataFormats.Format items as well
19957         * ListControl.cs: Removed data_member from the public eye
19958         * OpenFileDialog.cs:
19959           - Made class sealed
19960           - Added missing attributes
19961         * SaveFileDialog.cs: Added missing attributes
19962         * ImageListStreamer.cs: Fixed code that caused warnings
19963         * LinkLabel.cs: Removed unreachable code
19964         * TreeView.cs: Fixed code that caused warnings
19965         * PropertyGridView.cs: Fixed code that caused warnings
19966         * GridColumnStylesCollection.cs: Added missing attributes
19967         * GridTableStylesCollection: Added missing attribute
19968         * PropertyManager: Added .ctor
19969         * SecurityIDType: Added
19970         * DataObject.cs: Implemented class
19971         * LinkArea.cs: Added missing attribute
19972
19973 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
19974
19975         * RadioButton.cs: call base method to allow to fire OnClick event
19976         * UpDownBase.cs: OnMouseUp call base method
19977         * CheckedListBox.cs: call base method before returning
19978         * TrackBar.cs: call base method before returning
19979         
19980
19981 2005-05-10  Peter Bartok  <pbartok@novell.com>
19982
19983         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
19984           for messages
19985
19986 2005-05-10  Peter Bartok  <pbartok@novell.com>
19987
19988         * DataFormats.cs: Implemented
19989         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
19990           XplatUIX11.cs: Added Clipboard APIs
19991         * XplatUIWin32.cs: Implemented Clipboard APIs
19992         * FolderBrowserDialog.cs: Added missing event, attributes
19993
19994 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
19995
19996         * CheckBox.cs: call base method to allow to fire OnClick event
19997
19998 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
19999
20000         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
20001
20002 2005-05-06  Peter Bartok  <pbartok@novell.com>
20003
20004         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
20005         * Screen.cs: Implemented
20006         * HelpNavigator.cs: Added
20007         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
20008           property
20009         * HelpProvider.cs: Implemented all we can do until we have a CHM
20010           help library (which means that "What's This" does work now)
20011
20012 2005-05-06  Jackson Harper  <jackson@ximian.com>
20013
20014         * XplatUIX11.cs: Fix waking up the main loop.
20015                 
20016 2005-05-05  Peter Bartok  <pbartok@novell.com>
20017
20018         * XplatUI.cs: Updated revision
20019         * Form.cs: Removed enless loop
20020         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
20021         * Label.cs (OnPaint): Added call to base.OnPaint()
20022         * ToolTip.cs: Made ToolTipWindow reusable for other controls
20023         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
20024         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
20025         * AxHost.cs: Added
20026         * ButtonBase.cs: Moved base.OnPaint() call to end of method
20027         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
20028           to ToolTip.ToolTipWindow for drawing and size methods; this allows
20029           reuse of ToolTipWindow by other controls
20030         * SizeGrip.cs: Moved base.OnPaint() call to end of method
20031         * XplatUIX11.cs: Now clipping drawing area (experimental)
20032         * PictureBox.cs: Moved base.OnPaint() call to end of method
20033         * Theme.cs: Fixed ToolTip abstracts to match new format
20034         * ErrorProvider.cs: Implemented
20035
20036 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
20037
20038         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
20039         * LinkLabel.cs:
20040                 - Adds cursors
20041                 - Handles focus
20042                 - Implements LinkBehavior
20043                 - Fixes many issues
20044
20045 2005-05-03  Jackson Harper  <jackson@ximian.com>
20046
20047         * ListView.cs: Calculate the scrollbar positioning on resize and
20048         paint, so they get put in the correct place.
20049
20050 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
20051
20052         * ColorDialogs.cs: The small color panels are now handled by
20053           SmallColorControl. This fixes drawing of the focus rectangle
20054           and adds a 3D border.
20055
20056 2005-05-03  Peter Bartok  <pbartok@novell.com>
20057
20058         * Control.cs: Modified version of Jonathan Chamber's fix for
20059           double-buffering
20060
20061 2005-05-03  Jackson Harper  <jackson@ximian.com>
20062
20063         * ListView.cs: Remove redraw variable. Control now handles whether
20064         or not a redraw needs to be done, and will only raise the paint
20065         event if redrawing is needed.
20066
20067 2005-05-03  Jackson Harper  <jackson@ximian.com>
20068
20069         * Splitter.cs: No decorations for the splitter form. Cache the
20070         hatch brush.
20071
20072 2005-05-03  Jackson Harper  <jackson@ximian.com>
20073
20074         * TreeView.cs: Use dashed lines to connect nodes. Use the
20075         ControlPaint method for drawing the focus rect instead of doing
20076         that in treeview.
20077
20078 2005-05-02  Peter Bartok  <pbartok@novell.com>
20079
20080         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
20081
20082 2005-04-29  Jackson Harper  <jackson@ximian.com>
20083
20084         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
20085         entire image buffer. Just clear the clipping rectangle.
20086
20087 2005-04-29  Jackson Harper  <jackson@ximian.com>
20088
20089         * ThemeWin32Classic.cs: Don't draw list view items that are
20090         outside the clipping rectangle.
20091
20092 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
20093
20094         * ListBox.cs: added horizontal item scroll
20095
20096 2005-04-29  Jackson Harper  <jackson@ximian.com>
20097
20098         * ThemeWin32Classic.cs: Remove some old debug code that was
20099         causing flicker with the new double buffering code.
20100
20101 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
20102
20103         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
20104         behave like combobox and comboboxlist (still not sure if this is
20105         correct though).
20106
20107 2005-04-28  Jackson Harper  <jackson@ximian.com>
20108
20109         * ThemeWin32Classic.cs: Don't fill the middle of progress
20110         bars. This fills areas outside of the clip bounds that don't need
20111         to be filled.
20112
20113 2005-04-28  Jackson Harper  <jackson@ximian.com>
20114
20115         * Control.cs: Don't expose functionality to touch the image buffers.
20116         * ProgressBar.cs:
20117         * ListView.cs: We do not need to (and no longer can) manipulate
20118         the image buffers directly. All of this is handled by Control.
20119
20120 2005-04-28  Peter Bartok  <pbartok@novell.com>
20121
20122         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
20123           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
20124           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
20125
20126 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20127
20128         * Combobox:
20129                 - Adjust control's height for non-simple comboboxes (bug fix)
20130                 - Remove dead code
20131         * MenuAPI.cs: remove unused var
20132         * ScrollBar.cs: remove unsed var
20133                  
20134         * ListBox.cs: unselect items when clearing
20135
20136 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
20137
20138         * ListControl.cs: honors OnPositionChanged and default Selected Item
20139         * ListBox.cs: unselect items when clearing
20140
20141 2005-04-27  Jackson Harper  <jackson@ximian.com>
20142
20143         * X11Keyboard.cs: Initialize a default keyboard and give a warning
20144         if a "correct" keyboard is not found. This will make us not crash,
20145         but might give some users bad keyboard layouts...seems to be the
20146         same thing rewind does.
20147
20148 2005-04-27  Jackson Harper  <jackson@ximian.com>
20149
20150         * BindingManagerBase.cs: Attach the current/position changed
20151         handlers to their respective events.
20152
20153 2005-04-27  Jackson Harper  <jackson@ximian.com>
20154
20155         * Control.cs: Make sure that the first WM_PAINT does a full draw,
20156         not just a blit.
20157         * ThemeWin32Classic.cs: Don't fill the background for picture
20158         boxes. This could overright user drawing.
20159         * ComboBox.cs: Just fill the clipping rect not the entire client
20160         rect when drawing the background. This prevents pieces of the
20161         image buffer from getting overwritten and is theoretically faster.
20162
20163 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
20164
20165         * ComboBox.cs: Databinding support fixes, fire missing events
20166         * ListControl.cs: implement missing methods and properties, fixes
20167         * ThemeWin32Classic.cs: Databiding support on Drawing
20168         * CheckedListBox.cs: Databinding support fixes, fire missing events
20169         * ListBox.cs: Databinding support fixes, fire missing events
20170         
20171 2005-04-25  Peter Bartok  <pbartok@novell.com>
20172
20173         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
20174
20175 2005-04-25  Jackson Harper  <jackson@ximian.com>
20176
20177         * TreeView.cs: Use the horizontal scrollbars height not width when
20178         determining how much of the client area is available.
20179
20180 2005-04-25  Jackson Harper  <jackson@ximian.com>
20181
20182         * Control.cs: Double buffering is handled differently now. As per
20183         the spec, the extra buffer is created in the WM_PAINT message and
20184         passed down to the control's drawing code.
20185         * GroupBox.cs:
20186         * Label.cs:
20187         * CheckBox.cs:
20188         * ProgressBar.cs:
20189         * RadioButton.cs:
20190         * ColorDialog.cs:
20191         * ComboBox.cs:
20192         * PropertyGridView.cs:
20193         * UpDownBase.cs:
20194         * MessageBox.cs:
20195         * MenuAPI.cs:
20196         * ListView.cs:
20197         * ButtonBase.cs:
20198         * SizeGrip.cs:
20199         * ScrollBar.cs:
20200         * ListBox.cs:
20201         * TrackBar.cs:
20202         * ToolBar.cs:
20203         * PictureBox.cs:
20204         * DateTimePicker.cs:
20205         * StatusBar.cs:
20206         * TreeView.cs: Update to new double buffering system.
20207         * MonthCalendar.cs: Uncomment block, as Capture is now
20208         working. Update to new double buffering
20209         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
20210         * PaintEventArgs.cs: New internal method allows us to set the
20211         graphics object. This is used for double buffering.
20212         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
20213         rectangle. The internal paint_area var has been removed from
20214         StatusBar. The clipping rect should be used instead.
20215         * Theme.cs: Give the PictureBox drawing method a clipping rect.
20216         * TabPage.cs: The RefreshTabs method was removed, so just call the
20217         tab controls Refresh method now.
20218         * TabControl.cs: Update to new double buffering. Make sure the
20219         handle is created before sizing the tab pages, otherwise we will
20220         get stuck in a loop.
20221
20222 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
20223
20224         * LinkLabel.cs: Fix typo, bug #74719; patch
20225           from Borja Sanchez Zamorano
20226
20227 2005-04-22  Jackson Harper  <jackson@ximian.com>
20228
20229         * TreeNode.cs: Implement Handle stuff.
20230         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
20231
20232 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
20233
20234         * DataGridTextBoxColumn.cs: call base constructors, fixes
20235         * GridColumnStylesCollection.cs: missing events, methods, and functionality
20236         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
20237         * DataGridTableStyle.cs: implements create default column styles
20238         * DataGridBoolColumn.cs: which types can handle
20239         * DataGrid.cs: missing methods, fixes, new functionality
20240         * DataGridColumnStyle.cs: fixes
20241
20242 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
20243         * FolderBrowserDialog.cs:
20244         - Use a thread to fill the TreeView
20245         - Adjusted some sizes
20246
20247 2005-04-19  Peter Bartok  <pbartok@novell.com>
20248
20249         * LinkLabel.cs: (Re-)create the pieces when setting the Text
20250           property. Fixes #74360.
20251
20252 2005-04-19  Jackson Harper  <jackson@ximian.com>
20253
20254         * XEventQueue.cs: Lock when getting the lockqueue size.
20255         * PictureBox.cs: Call base OnPaint
20256         
20257 2005-04-19  Peter Bartok  <pbartok@novell.com>
20258
20259         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
20260           messages were no longer being processed (this broke BeginInvoke)
20261
20262           
20263 2005-04-18  Jackson Harper  <jackson@ximian.com>
20264
20265         * TreeView.cs: buglet that caused node images to get drawn
20266         regardless of whether or not they were in the clipping rectangle.
20267
20268 2005-04-18  Jackson Harper  <jackson@ximian.com>
20269
20270         * CurrencyManager.cs: There are four rules for GetItemProperties:
20271         - If the type is an array use the element type of the array
20272         - If the type is a typed list, use the type
20273         - If the list contains an Item property that is not an object, use
20274         that property
20275         - use the first element of the list if there are any elements in
20276         the list.
20277         
20278 2005-04-17  Jackson Harper  <jackson@ximian.oom>
20279
20280         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
20281         click. This handles offsets for scrolling properly and reduces
20282         memory. Also fixed GetNode to not offset now that TopNode works
20283         properly.
20284         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
20285         
20286 2005-04-17  Jackson Harper  <jackson@ximian.com>
20287
20288         * CursorConverter.cs: Initial implementation.
20289
20290 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20291
20292         * ListControl.cs: work towards complex data binding support on ListControl
20293         * CurrencyManager.cs: work towards complex data binding support on ListControl
20294         * ListBox.cs: work towards complex data binding support on ListControl
20295
20296
20297 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
20298
20299         * GridTableStylesCollection.cs: fixes name and constructor
20300         * DataGridTableStyle.cs: fixes
20301         * DataGridBoolColumn.cs: fixes names and constructors
20302         * DataGrid.cs: define methods and properties. Some init implementations
20303         * DataGridCell.cs: define methods and properties. Some init implementations
20304         * GridTablesFactory.cs: Define methods and properties
20305
20306 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
20307
20308         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
20309         graphics port changes.  We still want the coordinates in global screen
20310         coordinates.
20311
20312 2005-04-14  Jackson Harper  <jackson@ximian.com>
20313
20314         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
20315         check plus minus or checkbox clicks unless those features are enabled.
20316
20317 2005-04-14  Jackson Harper  <jackson@ximian.com>
20318
20319         * TreeView.cs: Add methods for setting the top and bottom visible
20320         nodes. TreeNode::EnsureVisible uses these methods.
20321         * TreeNode.cs: Implement EnsureVisible
20322
20323 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
20324
20325         * Form.cs: Pospone menu assignation if the window has not been created yet
20326         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
20327         size and position
20328
20329 2005-04-12  Jackson Harper  <jackson@ximian.com>
20330
20331         * TreeView.cs: Set the TopNode properly when scrolling
20332         occurs. This has the added benifit of reducing the amount of
20333         walking that needs to be done when drawing. Also removed an old
20334         misleading TODO.
20335         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
20336         
20337 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
20338
20339         * Timer.cs: fixes interval setting when the timer is already enabled
20340         
20341 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
20342
20343         * FolderBrowserDialog.cs: First approach
20344
20345 2005-04-09  Peter Bartok  <pbartok@novell.com>
20346
20347         * FolderBrowserDialog: Added
20348
20349 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
20350
20351         * LinkLabel.cs: move drawing code into the theme
20352         * ThemeWin32Classic.cs: drawing code and painting background bugfix
20353         * Theme.cs: define DrawLinkLabel method
20354
20355 2005-04-05  Jackson Harper  <jackson@ximian.com>
20356
20357         * BindingContext.cs: Use weak references so these bad actors don't
20358         stay alive longer then they need to.
20359
20360 2005-04-05  Jackson Harper  <jackson@ximian.com>
20361
20362         * ListControl.cs: Basic implementation of complex databinding.
20363         * ComboBox.cs:
20364         * ListBox.cs: Add calls to ListControl databinding methods.
20365
20366 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
20367
20368         * FileDialog.cs:
20369           - Don't change PopupButtonState to Normal when the
20370             PopupButton gets pressed several times.
20371           - Renamed ButtonPanel to PopupButtonPanel
20372
20373 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
20374
20375         * ColorDialog.cs: Use cached objects instead of creating them
20376         * LinkLabel.cs: Use cached objects instead of creating them
20377         * Splitter.cs: Use cached objects instead of creating them
20378         * FontDialog.cs: Use cached objects instead of creating them
20379         * PropertyGridView.cs: Use cached objects instead of creating them
20380         * MessageBox.cs: Use cached objects instead of creating them
20381         * FileDialog.cs: Use cached objects instead of creating them
20382         * ThemeWin32Classic.cs: Use cached objects instead of creating them
20383         * TreeView.cs: Use cached objects instead of creating them
20384         
20385 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
20386
20387         * Control.cs: use Equals to compare the font since no == op
20388         * ScrollBar.cs: use Equals to compare the font since no == op
20389
20390 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
20391
20392         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
20393
20394 2005-04-01  Jackson Harper  <jackson@ximian.com>
20395
20396         * Binding.cs: Implement IsBinding.
20397         * BindingManagerBase.cs:
20398         * PropertyManager.cs:
20399         * CurrencyManager.cs: Add IsSuspended property.
20400
20401 2005-04-01  Jackson Harper  <jackson@ximian.com>
20402
20403         * Binding.cs: Had some IsAssignableFrom calls backwards.
20404
20405 2005-04-01  Jackson Harper  <jackson@ximian.com>
20406
20407         * Binding.cs: Handle null data members when pulling data.
20408         * PropertyManager.cs: Handle the data member being a property that
20409         does not exist.
20410
20411 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20412
20413         * DataGridTextBoxColumn.cs: fixes signature
20414         * DataGrid.cs: calls right constructor
20415
20416 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
20417
20418         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
20419         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
20420         * GridTableStylesCollection.cs: implements GridTableStylesCollection
20421         * DataGridTableStyle.cs: implements DataGridTableStyle
20422         * DataGridBoolColumn.cs: implements DataGridBoolColumn
20423         * DataGridTextBox.cs: implements DataGridTextBox
20424         * DataGridColumnStyle.cs: implements DataGridColumnStyle
20425
20426 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
20427
20428         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
20429
20430 2005-03-29  Peter Bartok  <pbartok@novell.com>
20431
20432         * Application.cs:
20433           - Properly implemented CompanyName property
20434           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
20435             returns a path that includes CompanyName, ProductName and
20436             Version (fixes bug #70330)
20437
20438 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
20439
20440         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
20441           fixes bug #72588.
20442
20443 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20444
20445         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
20446         
20447           - Added ReadOnly CheckBox
20448           - Further refactoring: moved some code from Open-/SaveFileDialog
20449             to FileDialog
20450
20451 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
20452
20453         * OpenFileDialog.cs: Fixed CheckFileExists
20454         * FileDialog.cs:
20455           Moved FileView and DirComboBox outside FileDialog class.
20456           They can now be used outside FileDialog
20457
20458 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20459
20460         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
20461         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
20462
20463 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
20464
20465         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20466           - Added missing CreatePrompt property in SaveDialog
20467           - Overall SaveDialog handling should be better now
20468           - Added non standard ShowHiddenFiles property
20469           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
20470           - Added InitialDirectory and RestoreDirectory support
20471
20472 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
20473
20474         * FileDialog.cs: Made dirComboBox usable
20475
20476 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
20477
20478         * FileDialog.cs: Added Filter support (case sensitiv)
20479
20480 2005-03-24  Jackson Harper  <jackson@ximian.com>
20481
20482         * TabControl.cs: Need a couple more pixels for the lines.
20483
20484 2005-03-23  Jackson Harper  <jackson@ximian.com>
20485
20486         * TabControl.cs: Give the tab page focus when it is selected.
20487
20488 2005-03-23  Jackson Harper  <jackson@ximian.com>
20489
20490         * TabControl.cs: Account for the drawing of tabs borders when
20491         invalidating. If the slider was clicked dont do click detection on
20492         the tabs.
20493
20494 2005-03-23  Jackson Harper  <jackson@ximian.com>
20495
20496         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
20497
20498 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
20499
20500         * CategoryGridEntry.cs: Added
20501         * GridItem.cs: Added helper properties
20502         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
20503         * GridEntry.cs: Updated code for collection
20504         * PropertyGrid.cs: Cleaned up some formatting
20505         * PropertyGridView.cs: Added drop down functionality for enums.
20506         * GridItemCollection.cs: Added enumerator logic
20507         * PropertyGridEntry.cs: Added
20508
20509 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20510
20511         * FileDialog.cs:
20512           - Removed unnecessary commented code
20513           - Fixed handling for entering the filename manually in the combobox
20514
20515 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
20516
20517         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
20518
20519 2005-03-18  Peter Bartok  <pbartok@novell.com>
20520
20521         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
20522           them being touching the border
20523
20524 2005-03-18  Peter Bartok  <pbartok@novell.com>
20525
20526         * TextControl.cs: Quick hack to center text better
20527
20528 2005-03-18  Peter Bartok  <pbartok@novell.com>
20529
20530         * ControlPaint.cs:
20531           - Don't throw NotImplemented exceptions, just print a notice once
20532             instead (requested by Miguel). This makes running existing SWF
20533             apps a bit easier
20534         * Control.cs:
20535           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
20536           - Added context menu trigger on right click
20537         * Panel.cs: Trigger invalidate on resize
20538         * StatusBar.cs:
20539           - Removed old double-buffer drawing
20540           - Added ResizeRedraw style to force proper update of statusbar
20541         * ListView.cs:
20542           - Removed debug output
20543         * ThemeWin32Classic.cs:
20544           - Fixed drawing of status bar, now draws Text property if there
20545             are no defined panels
20546
20547 2005-03-18  Jackson Harper  <jackson@ximian.com>
20548
20549         * ImageList.cs: When the image stream is set pull all the images
20550         from it.
20551         * ImageListStreamer.cs: Implement reading image list streams.
20552
20553 2005-03-18  Peter Bartok  <pbartok@novell.com>
20554
20555         * ThemeWin32Classic.cs (DrawPictureBox):
20556           - Fixed calculations for centered drawing
20557           - Fixed drawing for normal mode, not scaling the image on normal
20558
20559 2005-03-18  Peter Bartok  <pbartok@novell.com>
20560
20561         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
20562           textbox
20563         * FileDialog.cs:
20564           - Made Open/Save button the accept button for FileDialog
20565           - Tied the cancel button to the IButtonControl cancel button
20566           - Save/Open now properly builds the pathname
20567           - Now handles user-entered text
20568           - Preventing crash on right-click if no item is selected
20569           - Fixed Text property, now uses contents of textbox
20570           - Fixed SelectedText property, now just returns the text part that
20571             is selected in the text box
20572
20573 2005-03-18  Jackson Harper  <jackson@ximian.com>
20574
20575         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
20576         rect, make sure to de-adjust the interior rect after drawing the
20577         tab text.
20578
20579 2005-03-18  Peter Bartok  <pbartok@novell.com>
20580
20581         * MenuAPI.cs: Remove menu *before* executing selected action to
20582           prevent the menu from 'hanging around'
20583           
20584 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
20585
20586         * XplatUIOSX.cs: Implemented WorkingArea property
20587
20588 2005-03-17  Peter Bartok  <pbartok@novell.com>
20589
20590         * XplatUIX11.cs: Fixed menu coord calculations
20591         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
20592           for calculating offsets
20593
20594 2005-03-17  Peter Bartok  <pbartok@novell.com>
20595
20596         * Hwnd.cs: Do not consider menu presence for default client
20597           rectangle location/size
20598         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
20599           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
20600           translation functions
20601         * FileDialog.cs: Fixed (what I presume is a) typo
20602
20603 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
20604
20605         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
20606           X access (avoids X-Async errors)
20607
20608 2005-03-16  Jackson Harper  <jackson@ximian.com>
20609
20610         * TabControl.cs: Raise the SelectedIndexChanged event.
20611
20612 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
20613
20614         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
20615           - Removed vertical ToolBar and replaced it with a custom panel
20616             (desktop and home button already work)
20617           - Added Help button (some controls get resized or relocated then)
20618           - Draw correct text depending on Open or Save.
20619           - Fixed some typos...
20620
20621 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
20622
20623         * ScrollBar.cs:
20624           - Only change Maximum and Minimum when need it (bug fix)
20625
20626 2005-03-15  Peter Bartok  <pbartok@novell.com>
20627
20628         * Form.cs: Use Handle for icon, to trigger creation if
20629           the window does not yet exist
20630         * Control.cs:
20631           - CanSelect: Slight performance improvement
20632           - Focus(): Preventing possible recursion
20633           - Invalidate(): Removed ControlStyle based clear flag setting
20634           - WM_PAINT: fixed logic for calling OnPaintBackground
20635           - WM_ERASEBKGND: Fixed logic, added call to new driver method
20636             EraseWindowBackground if the control doesn't paint background
20637         * XplatUIWin32.cs:
20638           - Moved EraseWindowBackground() method to internal methods
20639           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
20640             is sent via SendMessage on BeginPaint call on Win32
20641         * XplatUIX11.cs:
20642           - Added EraseWindowBackground() method
20643           - No longer sends WM_ERASEBKGND on .Expose, but on call to
20644             PaintEventStart, which more closely matches Win32 behaviour
20645           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
20646           - Fixed SetFocus() to properly deal with client and whole windows
20647         * Hwnd.cs: Added ErasePending property
20648         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
20649         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
20650
20651 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
20652
20653         * XplatUIOSX.cs:
20654           - Fix hard loop when timers exist.
20655           - Fix bugs with middle and right click for 3 button mice.
20656
20657 2005-03-11  Peter Bartok  <pbartok@novell.com>
20658
20659         * XplatUIX11.cs:
20660           - get_WorkingArea: Need to call X directly, GetWindowPos only
20661             returns cached data now
20662           - Added sanity check to GetWindowPos hwnd usage
20663
20664 2005-03-11  Jackson Harper  <jackson@ximian.com>
20665
20666         * BindingManagerBase.cs: This method isn't used anymore as
20667         PullData now updates the data in the control.
20668
20669 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
20670
20671         * Form.cs: fixes menu drawing on X11
20672         * MenuAPI.cs:  fixes menu drawing on X11
20673
20674 2005-03-11  Peter Bartok  <pbartok@novell.com>
20675
20676         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
20677           from Jonathan Gilbert; should fix bug #73606
20678         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
20679           in Screen coordinates. Thanks, Jordi.
20680         * Form.cs: Added missing attribute
20681
20682 2005-03-11  Peter Bartok  <pbartok@novell.com>
20683
20684         * Form.cs:
20685           - Rudimentary Mdi support
20686           - Removed outdated FormParent code
20687           - Implemented lots of missing properties and methods, still missing
20688             transparency support
20689           - Added missing attributes
20690           - Implemented support for MaximumBounds
20691           - Added firing of various events
20692         * XplatUI.cs: Added SetIcon() method
20693         * XplatUIDriver.cs: Added SetIcon() abstract
20694         * XplatUIOSX.cs: Stubbed out SetIcon() method
20695         * XplatUIX11.cs:
20696           - Implemented SetIcon() support
20697           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
20698           - Switched to unix line endings
20699         * XplatUIWin32.cs:
20700           - Made POINT internal so for can access it as part of MINMAX
20701           - Implemented SetIcon() support
20702           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
20703             native Mdi support again, might have to go managed)
20704         * Control.cs: Now fires the StyleChanged event
20705         * MdiClient.cs: Added; still mostly empty
20706
20707 2005-03-10  Peter Bartok  <pbartok@novell.com>
20708
20709         * SaveFileDialog.cs: Added emtpy file
20710
20711 2005-03-08  Peter Bartok  <pbartok@novell.com>
20712
20713         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
20714           in turn triggers OnCreateContro) when creating a handle for the
20715           first time.
20716         * TextControl.cs: Fixed endless loop in certain cases when
20717           replacing the current selection
20718
20719 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
20720
20721         * ScrollBar.cs:
20722           - Honors NewValue changes in Scroll events allowing apps to change it
20723           - Adds First and Last Scroll events
20724           - Fixes Thumb events
20725
20726 2005-03-07  Peter Bartok  <pbartok@novell.com>
20727
20728         * Hwnd.cs: Added DefaultClientRectangle property
20729         * XplatUI.cs: Now using the X11 driver Where() method, which provides
20730           more detailed debug information
20731         * XplatUIX11.cs:
20732           - Fixed size-change feedback loop, where we would pull an old size
20733             off the queue and mistakenly change our window's size to an
20734             earlier value
20735           - Now compressing ConfigureNotify events, to reduce looping and
20736             redraw issues
20737         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
20738           is called
20739
20740 2005-03-07  Jackson Harper  <jackson@ximian.com>
20741
20742         * Binding.cs: Push data pushes from data -> property. Check if the
20743         property is readonly when attempting to set it.
20744
20745 2005-03-07  Jackson Harper  <jackson@ximian.com>
20746
20747         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
20748         instead of IsSubclassOf. Pulling data now sets the value on the
20749         control.
20750         * PropertyManager.cs:
20751         * CurrencyManager.cs: Just need to pull data when updating now,
20752         because PullData will set the value on the control.
20753
20754 2005-03-04  Jackson Harper  <jackson@ximian.com>
20755
20756         * Binding.cs: Implement data type parsing and converting on pulled
20757         data. TODO: Are there more ways the data can be converted?
20758
20759 2005-03-04  Jackson Harper  <jackson@ximian.com>
20760
20761         * Binding.cs: Support <Property>IsNull checks. Also bind to the
20762         controls Validating method so we can repull the data when the
20763         control loses focus.
20764
20765 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
20766
20767         * ColumnHeader.cs:
20768           - Fixes null string format
20769           
20770         * ListView.cs:
20771           - Adds enum type checks
20772           - Fixes redrawing and recalc need after changing some properties
20773           - Fixes on focus_item set after the event
20774           - Fixes adding columns after the control has been created
20775           
20776         * ThemeWin32Classic.cs:
20777           - Fixes CheckBox focus rectangle
20778           - Fixes ColumnHeader drawing
20779
20780
20781 2005-03-03  Jackson Harper  <jackson@ximian.com>
20782
20783         * Binding.cs: Bind to <Property>Changed events so we can detect
20784         when properties are changed and update the data.
20785
20786 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
20787
20788         * ImageList.cs:
20789           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
20790           - Fixes ImageList constructor with ImageList container
20791           - Fixes image scaling (wrong parameters at DrawImage)
20792
20793 2005-02-02  Jackson Harper  <jackson@ximian.com>
20794
20795         * Binding.cs: Make property searches case-insensitive. Eliminate
20796         some duplicated code.
20797
20798 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
20799
20800         * ComboBox.cs:
20801                 - Handle focus event
20802                 - Fix scrollbar events
20803                 - Discard highlighted item if remove it
20804                 - Fixes SelectedItem with strings
20805
20806 2005-03-01  Peter Bartok  <pbartok@novell.com>
20807
20808         * Control.cs:
20809           - Fixed Visible property, now follows (once again) parent chain
20810             to return false if any control in the chain is visible=false
20811           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
20812           - Fixed several places where is_visible instead of Visible was used
20813           - Implemented FIXME related to focus selection when setting focused
20814             control to be invisible
20815
20816         * XplatUIWin32.cs: Now using proper method to find out if window is
20817           visible. Thanks to Jordi for pointing it out
20818
20819 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
20820
20821         * ComboBox.cs: show/hide scrollbar instead of creating it
20822
20823 2005-02-27  Jackson Harper  <jackson@ximian.com>
20824
20825         * CurrencyManager.cs: Add PositionChanged stuff.
20826
20827 2005-02-27  Peter Bartok  <pbartok@novell.com>
20828
20829         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
20830         * XplatUIOSX.cs: Added GetMenuOrigin() stub
20831         * XplatUIWin32.cs: Implemented GetMenuOrigin()
20832         * XplatUIX11.cs:
20833           - Implemented GetMenuDC()
20834           - Implemented GetMenuOrigin()
20835           - Implemented ReleaseMenuDC()
20836           - Implemented generation of WM_NCPAINT message
20837           - Implemented generation and handling of WM_NCCALCSIZE message
20838         * Form.cs: Added debug helper message for Jordi's menu work
20839         * Hwnd.cs:
20840           - Modified ClientRect property; added setter, fixed getter to handle
20841             setting of ClientRect
20842           - Added MenuOrigin property
20843
20844 2005-02-26  Peter Bartok  <pbartok@novell.com>
20845
20846         * XplatUIX11.cs:
20847           - Destroys the caret if a window that's being destroyed contains it
20848           - Ignores expose events coming from the X11 queue for windows that
20849             already are destroyed
20850           - Now uses the proper variable for handling DestroyNotify, before we
20851             marked the wrong window as destroyed
20852           - Improved/added some debug output
20853
20854 2005-02-26  Peter Bartok  <pbartok@novell.com>
20855
20856         * X11Keyboard.cs: Fixes to work on 64bit systems
20857
20858 2005-02-26  Peter Bartok  <pbartok@novell.com>
20859
20860         * Control.cs:
20861           - Now calling OnHandleDestroyed from DestroyHandle()
20862             instead of Dispose()
20863           - Removed bogus call to controls.Remove() from DestroyHandle()
20864
20865 2005-02-26  Peter Bartok  <pbartok@novell.com>
20866
20867         * Control.cs: Properly destroy child windows when our handle is
20868           destroyed
20869
20870 2005-02-25  Peter Bartok  <pbartok@novell.com>
20871
20872         * XplatUI.cs:
20873           - Added 'DriverDebug' define to allow tracing XplatUI API calls
20874           - Alphabetized Static Methods and Subclasses
20875
20876         * XplatUIX11.cs:
20877           - Added XException class to allow custom handling of X11 exceptions
20878           - Created custom X11 error handler, tied into XException class
20879           - Added support for MONO_XEXCEPTIONS env var to allow the user
20880             to either throw an exception on X errors or continue running
20881             after displaying the error
20882           - Added handling of DestroyNotify message
20883           - Added handler for CreateNotify message (still disabled)
20884           - Improved (tried to at least) Where method to provide file and lineno
20885         * X11Structs.cs:
20886           - Added XErrorHandler delegate
20887           - Added XRequest enumeration (to suppor translation of errors)
20888
20889 2005-02-25  Jackson Harper  <jackson@ximian.com>
20890
20891         * PropertyManager.cs: Implement editing features
20892         * CurrencyManager.cs:
20893         * Binding.cs: First attempt at UpdateIsBinding
20894         * BindingManagerBase.cs: Call UpdateIsBinding before
20895         pushing/pulling data.
20896
20897 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
20898
20899         * MenuAPI.cs: Respect disabled items
20900         * ThemeWin32Classic.cs
20901                 - Caches ImageAttributes creation for DrawImageDisabled
20902                 - Fixes vertical menu line drawing
20903                 - Draws disabled arrows in disable menu items
20904
20905 2005-02-24  Peter Bartok  <pbartok@novell.com>
20906
20907         * Hwnd.cs:
20908           - Added UserData property to allow associating arbitrary objects
20909             with the handle
20910           - Fixed leak; now removing Hwnd references from static windows array
20911         * XplatUIWin32.cs:
20912           - Fixed Graphics leak in PaintEventEnd
20913           - Removed usage of HandleData, switched over to Hwnd class
20914         * HandleData.cs: Removed, obsoleted by Hwnd.cs
20915
20916 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
20917
20918         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
20919         * ScrollBar.cs: Fixes bug
20920         * TrackBar.cs: removes death code, clipping, mimize refreshes,
20921          keyboard navigation enhancements
20922
20923 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
20924
20925         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
20926         * GroupBox.cs: Add control styles
20927         * Label.cs: Add control styles
20928         * UpDownBase.cs: Add control styles
20929         * ListBox.cs: Add control styles
20930         * XplatUIWin32.cs: Fixes wrong parameter order
20931
20932
20933 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
20934
20935         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
20936
20937 2005-02-23  Jackson Harper  <jackson@ximian.com>
20938
20939         * PropertyManager.cs: Implement property binding. This doesn't
20940         seem to work yet though as (I think) there are some bugs in
20941         System.ComponentModel.PropertyDescriptor.
20942         * BindingContext.cs: Use new PropertyManager constructor.
20943
20944 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
20945
20946         * ProgressBar.cs: use clip region in ProgressBar
20947         * ThemeWin32Classic.cs: use clip region in ProgressBar
20948
20949 2004-02-22  Jackson Harper  <jackson@ximian.com>
20950
20951         * BindingsCollection.cs: Remove some debug code.
20952
20953 2005-02-22  Jackson Harper  <jackson@ximian.com>
20954
20955         * BindingContext.cs:
20956         * ControlBindingsCollection.cs:
20957         * CurrencyManager.cs:
20958         * Binding.cs:
20959         * BindingManagerBase.cs: Initial implementation
20960         * BindingsCollection.cs: Add an internal contains method that the
20961         BindingManagerBase uses to ensure bindings aren't added twice to
20962         the collection.
20963         * PropertyManager.cs: Stubbed out.
20964         * Control.cs:
20965         * ContainerControl.cs: Hook up databinding
20966         
20967 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
20968
20969         * XplatUIOSX.cs:
20970           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
20971           Fixed Invalidate/Update chain.
20972           Fixed tons of other minor bugs (this is almost a complete rewrite).
20973
20974 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
20975
20976         * ComboBox.cs: do subcontrol creation when the control is created
20977
20978 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
20979
20980         * Label.cs: fixes image drawing (image and imagelist)
20981         * ThemeWin32Classic.cs: cache brushes
20982         
20983 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
20984
20985         * Form.cs: Move menu drawing code to Theme class
20986         * ComboBox.cs: Move ComboBox drawing code to Theme class
20987         * MenuItem.cs: Move menu drawing code to Theme class
20988         * MenuAPI.cs: Move menu drawing code to Theme class
20989         * ThemeWin32Classic.cs: New methods
20990         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
20991         * ListBox.cs: Move Listbox drawing code to Theme class
20992         * Theme.cs: New methods
20993
20994 2005-02-20  Peter Bartok  <pbartok@novell.com>
20995
20996         * Control.cs:
20997           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
20998             only process mnemonics on those)
20999           - Fixed event sequence for key handling; first calling
21000             ProcessKeyEventArgs now
21001         * TextBoxBase.cs:
21002           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
21003             for processing non-character keys
21004           - Fixed WM_CHAR to generate proper event sequence before processing
21005         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
21006           generation
21007
21008 2005-02-19  Peter Bartok  <pbartok@novell.com>
21009
21010         * UserControl.cs: Added TextChanged event; added attributes
21011         * SizeGrip.cs: Implemented resizing and optional display of grip
21012         * Form.cs: Fixed attribute
21013         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21014           Changed meaning of ScrollWindow bool argument; instead of the
21015           clear attribute (which will be true usually anyway), it gives the
21016           option of moving child controls as well.
21017         * XplatUIX11.cs:
21018           - Changed to match new ScrollWindow argument
21019           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
21020             now handles the implicit parent window a WM puts around us
21021         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
21022           to work)
21023         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
21024         * TreeView.cs: Adjusted to new ScrollWindow arguments
21025
21026 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
21027
21028         * Form.cs: Menu integration with non-client area
21029         * MenuItem.cs: Menu integration with non-client area
21030         * MenuAPI.cs: Menu integration with non-client area
21031
21032 2005-02-18  Peter Bartok  <pbartok@novell.com>
21033
21034         * MethodInvoker.cs: Added
21035         * MdiLayout.cs: Added
21036         * SendKeys.cs: Started implementation
21037         * ErrorIconAlignment.cs: Added
21038
21039 2005-02-18  Peter Bartok  <pbartok@novell.com>
21040
21041         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
21042         * Form.cs: Added handling for Menu-related Non-client messages
21043
21044 2005-02-17  Peter Bartok  <pbartok@novell.com>
21045
21046         * UpDownBase.cs: Fixed typo, compilation errors
21047         * DomainUpDown.cs: Fixed attribute value
21048
21049 2005-02-16  Miguel de Icaza  <miguel@novell.com>
21050
21051         * UpDownBase.cs: Attach entry events.
21052         Propagate events.
21053         Add ForeColor property, Focused, InterceptArrowKeys (interception
21054         does not work yet).
21055
21056 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
21057
21058         * Form.cs:
21059                 - Redraw non client are on Setmenu
21060                 - Calc proper menu starting point
21061
21062 2005-02-17  Peter Bartok  <pbartok@novell.com>
21063
21064         * Application.cs: Fixed message_filter check
21065
21066 2005-02-17  Peter Bartok  <pbartok@novell.com>
21067
21068         * Application.cs: Now calls registered message filters
21069         * DockStyle.cs: Fixed attribute
21070         * Form.cs: Fixed attribute
21071         * Menu.cs: Fixed attribute
21072         * ToolTip.cs: Fixed attribute
21073         * TreeNode.cs: Added missing attributes and arranged in regions
21074         * PropertyGrid.cs: Fixed signatures
21075         * TreeNodeCollection.cs: Added attributes
21076         * Splitter.cs: Added missing attributes; arranged into regions
21077         * TabPage.cs: Added missing attributes; arranged into regions
21078         * TextBoxBase.cs: Added missing attributes
21079         * TextBox.cs: Added missing attributes
21080         * ArrangeDirection.cs: Added missing attributes
21081         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
21082         * ToolBarButton.cs: Fixed attributes
21083         * AnchorStyles.cs: Fixed attribute
21084         * TrackBar.cs: Fixed attributes
21085         * TabControl.cs: Added missing attributes and arranged into regions
21086         * ToolBar.cs: Fixed attribute
21087         * StatusBar.cs: Fixed signature, organized into regions and added
21088           attributes
21089         * StatusBarPanel.cs: Fixed attributes
21090         * ContentsResizedEventArgs.cs: Implemented
21091         * ContentsResizedEventHandler.cs: Implemented
21092         * DateBoldEventArgs.cs: Implemented
21093         * DateBoldEventHandler.cs: Implemented
21094         * UpDownEventArgs.cs: Implemented
21095         * UpDownEventHandler.cs: Implemented
21096         
21097 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
21098
21099         * Form.cs: first Menu NC refactoring
21100         * MenuAPI.cs: first Menu NC refactoring
21101         
21102 2005-02-16  Peter Bartok  <pbartok@novell.com>
21103
21104         * ImeMode.cs: Added missing attributes
21105         * Menu.cs: Fixed attribute
21106         * GroupBox.cs: Fixed attribute
21107         * Label.cs: Fixed attribute
21108         * ColorDialog.cs (RunDialog): Removed TODO attribute
21109         * ComboBox.cs: Fixed attributes
21110         * ListControl.cs: Added missing attributes
21111         * PropertyGrid.cs: Fixed attributes
21112         * Control.cs: Fixed attributes
21113         * ListViewItem.cs: Added TypeConverter attribute
21114         * NotifyIcon.cs: Fixed attributes
21115         * ListView.cs: Fixed attributes
21116         * ButtonBase.cs: Fixed attribute
21117         * ImageList.cs: Added missing attributes
21118         * ContainerControl.cs: Fixed signature
21119         * CheckedListBox.cs: Fixed attribute; added missing attributes
21120         * Panel.cs: Fixed attributes
21121         * PropertyTabChangedEventArgs.cs: Added missing attribute
21122         * PropertyValueChangedEventArgs.cs: Added missing attribute
21123         * Binding.cs: Fixed attribute
21124         * ListViewItemConverter: Implemented ListViewSubItemConverter class
21125         * ListBox.cs: Fixed attribute; added missing attributes;
21126         * ScrollableControl.cs: Added missing attributes
21127         * PictureBox.cs: Added missing attributes; implemented missing property
21128         * DateTimePicker.cs: Added missing attributes
21129         * Theme.cs (ToolWindowCaptionHeight): Fixed type
21130         * MonthCalendar.cs: Fixed attributes
21131         * StatusBarPanel.cs: Added missing attributes
21132         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
21133
21134 2005-02-16  Peter Bartok  <pbartok@novell.com>
21135
21136         * TextBoxBase.cs: The previous method to enforce height yet remember
21137           the requested high was less than ideal, this is an attempt to do
21138           it better.
21139         * Control.cs: Added comment about possible problem
21140         * Copyright: Updated format
21141         * GridItemType.cs: Fixed swapped values
21142
21143 2005-02-15  Jackson Harper  <jackson@ximian.com>
21144
21145         * BaseCollection.cs: Use property so we never access an
21146         uninitialized list. Also initialize the list in the property.
21147
21148 2005-02-15  Peter Bartok  <pbartok@novell.com>
21149
21150         * GroupBox.cs (ProcessMnemonic): Implemented
21151         * Label.cs (ProcessMnemonic): Implemented
21152         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
21153           hotkeys
21154
21155 2005-02-15  Peter Bartok  <pbartok@novell.com>
21156
21157         * RadioButton.cs (ProcessMnemonic): Implemented
21158         * CheckBox.cs (ProcessMnemonic): Implemented
21159         * Control.cs:
21160           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
21161             handling
21162           - Added internal method to allow calling ProcessMnemonic from other
21163             controls
21164         * ContainerControl.cs:
21165           - Started support for handling validation chain handling
21166           - Implemented ProcessMnemonic support
21167           - Added Select() call to Active, to make sure the active control
21168             receives focus
21169         * Form.cs: Setting toplevel flag for Forms (this was lost in the
21170           FormParent rewrite)
21171         * ThemeWin32Classic.cs:
21172           - DrawCheckBox(): Fixed stringformat to show hotkeys
21173           - DrawRadioButton(): Fixed stringformat to show hotkeys
21174         * CommonDialog.cs: Removed WndProc override, not needed
21175
21176 2005-02-14  Peter Bartok  <pbartok@novell.com>
21177
21178         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
21179           missed those in the rewrite
21180
21181 2005-02-14  Miguel de Icaza  <miguel@novell.com>
21182
21183         * NumericUpDown.cs (Increment, ToString): Add.
21184         (DecimalPlaces): implement.
21185         
21186         Add attributes.
21187         
21188         * UpDownBase.cs: Add the designer attributes.
21189
21190 2005-02-13  Peter Bartok  <pbartok@novell.com>
21191
21192         * Panel.cs: Removed border_style, now in Control
21193         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
21194           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
21195
21196 2005-02-13  Peter Bartok  <pbartok@novell.com>
21197
21198         * MouseButtons.cs: Added missing attributes
21199         * XplatUIStructs.cs: Added enumeration for title styles
21200         * LeftRightAlignment.cs: Added missing attributes
21201         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
21202           it compatible with Graphics.FromHwnd()
21203         * SelectedGridItemChangedEventArgs.cs: Fixed property type
21204         * Keys.cs: Added missing attributes
21205         * SelectionRange.cs: Added missing attributes
21206         * SelectionRangeConverter.cs: Added
21207         * XplatUI.cs:
21208           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
21209             ReleaseMenuDC methods
21210           - Renamed ReleaseWindow to UngrabWindow
21211           - Added proper startup notice to allow version identification
21212         * Form.cs:
21213           - Added missing attributes
21214           - Removed FormParent concept
21215         * Label.cs: Removed border_style field, now in Control
21216         * RadioButton.cs: Now properly selects RadioButton when focus is
21217           received
21218         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
21219         * Control.cs:
21220           - Added missing attributes
21221           - Added borderstyle handling
21222           - Removed FormParent concept support
21223           - Fixed calls to XplatUI to match changed APIs
21224           - Fixed bug that would case us to use disposed Graphics objects
21225           - Removed unneeded internal methods
21226           - PerformLayout(): Fixed to handle DockStyle.Fill properly
21227           - SelectNextControl(): Fixed to properly check common parents
21228         * TextBoxBase.cs: Removed border_style field (now in Control)
21229         * MessageBox.cs:
21230           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
21231             fixed calculations for form size
21232           - Added support for localized strings and icons
21233           - Improved form size calculations, added border
21234         * ListView.cs: Removed border_style field (now in Control)
21235         * X11Structs.cs: Moved several structs from X11 driver here
21236         * X11Keyboard.cs: Changed debug message
21237         * Application.cs: Removed FormParent concept support
21238         * CommonDialog.cs:
21239           - Resetting end_modal flag
21240           - Removed FormParent concept support
21241         * NativeWindow.cs: Removed FormParent concept support
21242         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
21243           Client area and Non-Client whole window to allow support for WM_NC
21244           messages
21245         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
21246           prevent using it until it supports Hwnd as per Geoff Norton's request
21247         * ToolBar.cs: Fixed drawing, was not doing proper drawing
21248         * PictureBox.cs: Removed border_style field, now in Control
21249         * XplatUIWin32.cs: Added new driver methods
21250
21251 2005-02-12  Peter Bartok  <pbartok@novell.com>
21252
21253         * OpacityConverter.cs: Implemented
21254         * Hwnd.cs: Internal class to support drivers that need to emulate
21255           client area/non-client area window behaviour
21256
21257 2005-02-11  Peter Bartok  <pbartok@novell.com>
21258
21259         * KeysConverter.cs: Implemented
21260
21261 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
21262
21263         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
21264         * LinkLabel: Added missing attributes
21265         * MainMenu.cs: fixes ToString
21266         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
21267         * ListBox.cs: fixes event position
21268         * TrackBar.cs: adds missing attributes and events
21269         
21270 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
21271
21272         * MenuItem.cs: Use SystemInformation and bug fixes
21273         * MenuAPI.cs: Use SystemInformation and bug fixes
21274
21275 2005-02-09  Jackson Harper  <jackson@ximian.com>
21276
21277         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
21278         their keystate otherwise things like VK_MENU get stuck "on".
21279
21280 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
21281
21282         * ListBox.cs: Fixes AddRange bug
21283         
21284 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
21285
21286         * ProgressBar.cs
21287                 - Add missing attributes
21288                 - Add missing method
21289                 
21290         * CheckedListBox.cs: Added missing attributes
21291                 - Add missing attributes
21292                 - Remove extra method
21293         
21294         * ComboBox.cs: Added missing attributes
21295         * VScrollBar.cs: Added missing attributes
21296         * ScrollBar.cs:  Added missing attributes
21297         * ListBox.cs: Fixes signature, add missing consts
21298         * LinkArea.cs:   Added missing attributes
21299         
21300
21301 2005-02-08  Peter Bartok  <pbartok@novell.com>
21302
21303         * Menu.cs: Added missing attributes
21304         * MainMenu.cs: Added missing attributes
21305         * GroupBox.cs: Added missing attributes
21306         * Label.cs: Added missing attributes
21307         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
21308         * ColorDialog.cs:
21309           - Added Instance and Options properties
21310           - Added missing attributes
21311         * Cursor.cs: Made Serializable
21312         * NotifyIcon: Added missing attributes
21313         * MenuItem.cs: Added missing attributes
21314         * TextBoxBase.cs: Implemented AppendText() and Select() methods
21315         * Panel.cs: Added Missing attributes
21316         * MonthCalendar.cs: Fixed CreateParams
21317
21318 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21319         
21320         * LinkLabel.cs:
21321                 - Fixes signature
21322                 - Fixes issues with links
21323                 - Adds the class attributes
21324
21325 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
21326         
21327         * ComboBox.cs:
21328                 - Fixes button when no items available in dropdown
21329                 - Fixes repainting problems
21330                 - Adds the class attributes
21331                 
21332 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21333
21334         * XplatUIOSX.cs: Detect the menu bar and title bar height from
21335         the current theme.  Cache these on startup.
21336
21337 2005-02-07  Jackson Harper  <jackson@ximian.com>
21338
21339         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
21340         the scrollbar buttons when they are depressed.
21341
21342 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21343
21344         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
21345         Get the display size from the main displayid.  We currently dont
21346         support multiple display configurations.
21347
21348 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
21349
21350         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
21351
21352 2005-02-07  Miguel de Icaza  <miguel@novell.com>
21353
21354         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
21355
21356 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
21357
21358         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
21359
21360 2005-02-04  Jackson Harper  <jackson@ximian.com>
21361
21362         * ThemeWin32Classic.cs: Respect the clipping rect when
21363         drawing. Only fill the intersection of clips and rects so there
21364         isn't a lot of large fills.
21365         * ScrollBar.cs: Pass the correct clipping rect to the theme
21366         engine. Remove some debug code.
21367
21368 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
21369         
21370         * DateTimePicker.cs:
21371                 - Fixed crash on DateTime.Parse, use Constructor instead
21372
21373 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21374         
21375         * MenuItem.cs:
21376         * MenuAPI.cs:
21377                 - Owner draw support (MeasureItem and DrawItem)
21378
21379 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
21380         
21381         *  Menu.cs:
21382                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
21383                 - Fixes MenuItems.Add range
21384         * MenuItem.cs:
21385                 - MergeMenu and Clone and CloneMenu functions
21386
21387 2005-02-03  Jackson Harper  <jackson@ximian.com>
21388
21389         * ScrollBar.cs: Make abstract
21390         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
21391         is abstract.
21392
21393 2005-02-03  Jackson Harper  <jackson@ximian.com>
21394
21395         * ScrollBar.cs: First part of my scrollbar fixups. This removes
21396         all the unneeded refreshes and uses invalidates with properly
21397         computed rects.
21398
21399 2005-02-03  Peter Bartok  <pbartok@novell.com>
21400
21401         * ComponentModel.cs: Added
21402         * IDataGridEditingService.cs: Added
21403         * Timer.cs: Added missing attributes
21404         * ToolTip.cs: Added missing attributes
21405
21406 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
21407
21408         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
21409
21410 2005-02-03  Peter Bartok  <pbartok@novell.com>
21411
21412         * ListBox.cs: Added missing attributes
21413
21414 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
21415         
21416         * ListBox.cs:
21417                 - Fixes font height after font change
21418                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
21419                 
21420 2005-02-02  Peter Bartok  <pbartok@novell.com>
21421
21422         * HandleData.cs: Introduced static methods to allow class
21423           to be more self-contained and track it's own HandleData objects
21424         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
21425           HandleData to use new static methods
21426
21427 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
21428
21429         * Combobox.cs:
21430                 - Fixes default size and PreferredHeight
21431                 - Missing events
21432                 - ObjectCollection.Insert implementation
21433                 
21434         * ListControl.cs
21435                 - Fixes signature
21436         * ListBox.cs:
21437                 - Several fixes
21438                 - ObjectCollection.Insert implementation
21439                 - No selection after clean
21440                 - Small fixes
21441
21442 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21443
21444         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
21445
21446 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
21447
21448         * Combobox.cs:
21449                 - Caches ItemHeight calculation for OwnerDrawVariable
21450                 - Handles dropdown properly
21451                 - Fixes several minor bugs
21452
21453 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21454
21455         * ListBox.cs:
21456                 - Fixes 71946 and 71950
21457                 - Fixes changing Multicolumn on the fly
21458                 - Fixes keyboard navigation on Multicolumn listboxes
21459
21460 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21461         
21462         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
21463         crash reporter log.
21464
21465 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21466
21467         * XplatUIOSX.cs: Allow applications to actually exit.
21468
21469 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
21470
21471         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
21472         their parent at creation time rather than lazily later.  Fixes a major
21473         regression we were experiencing.
21474
21475 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
21476
21477         * ThemeWin32Classic.cs: more date time picker painting fixes
21478         * DateTimePicker.cs: more monthcalendar drop down fixes
21479         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
21480
21481 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
21482
21483         * ScrollBar.cs:
21484                 - When moving the thumb going outside the control should stop the moving
21485                 - Adds the firing of missing events
21486                 - Fixes no button show if Size is not specified
21487                 - End / Home keys for keyboard navigation
21488
21489 2005-01-30  Peter Bartok  <pbartok@novell.com>
21490
21491         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
21492           sanity check to prevent theoretical loop
21493         * XplatUIWin32.cs (SetVisible): Removed debug output
21494         * XplatUIX11.cs (SystrayChange): Added sanity check
21495         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
21496         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
21497           behaviour, valid until the X11 client window rewrite is done
21498         * TextBox.cs (ctor): Setting proper default foreground and background
21499           colors
21500
21501 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
21502
21503         * Theme: Added DrawDateTimePicker to interface
21504         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
21505         * DateTimePicker.cs: Created (still needs keys and painting code)
21506         * DateTimePickerFormat.cs: added
21507         * MonthCalendar.cs: fixed CreateParams for popup window mode
21508           
21509 2005-01-29  Peter Bartok  <pbartok@novell.com>
21510
21511         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
21512           this should also the calculations for ligher/darker
21513         * Theme.cs: Fixed defaults for ScrollBar widths/heights
21514
21515 2005-01-29  Peter Bartok  <pbartok@novell.com>
21516
21517         * ArrangeDirection.cs: Added
21518         * ArrangeStartingPositon.cs: Added
21519         * SystemInformation.cs: Implemented
21520         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
21521           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
21522           used by SystemInformation class
21523         * X11Strucs.cs: Added XSizeHints structure
21524         * MenuAPI.cs:
21525           - Fixed CreateParams to make sure the menu window is always visible
21526           - TrackPopupMenu: Added check to make sure we don't draw the
21527             menu offscreen
21528
21529 2005-01-29  Peter Bartok  <pbartok@novell.com>
21530
21531         * HandleData.cs: Added method for altering invalid area
21532         * TextBoxBase.cs: Implemented TextLength
21533
21534 2005-01-28  Peter Bartok  <pbartok@novell.com>
21535
21536         * XplatUIX11.cs: Improvement over last patch, not sending
21537           the WM_PAINT directly anymore, instead we scroll any pending
21538           exposed areas and let the system pick out the WM_PAINT later
21539
21540 2005-01-28  Peter Bartok  <pbartok@novell.com>
21541
21542         * SWF.csproj: Deleted, no longer used. Instead,
21543           Managed.Windows.Forms/SWF.csproj should be used
21544         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
21545           directly, to avoid a potential race condition with the next
21546           scroll
21547
21548 2005-01-28  Peter Bartok  <pbartok@novell.com>
21549
21550         * XplatUI.cs: Made class internal
21551
21552 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
21553
21554         * CheckedListBox.cs:
21555                 - Draw focus
21556                 - Fixed Drawing
21557                 - Missing methods and events
21558
21559 2005-01-27  Peter Bartok  <pbartok@novell.com>
21560
21561         * Application.cs (Run): Don't use form if we don't have one
21562
21563 2005-01-27  Peter Bartok  <pbartok@novell.com>
21564
21565         * TextBoxBase.cs (get_Lines): Fixed index off by one error
21566
21567 2005-01-27  Peter Bartok  <pbartok@novell.com>
21568
21569         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
21570         * GridItem.cs: Added; Patch by Jonathan S. Chambers
21571         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
21572         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
21573         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
21574         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
21575         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21576         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21577         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21578         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21579         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
21580         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
21581
21582 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21583
21584         * Combobox.cs:
21585                 - Draw focus on Simple Combobox
21586                 - Fixes drawing issues
21587                 - fixes 71834
21588
21589 2005-01-27  Peter Bartok  <pbartok@novell.com>
21590
21591         * Form.cs:
21592           - Place window in default location, instead of hardcoded 0/0
21593           - Send initial LocationChanged event
21594         * Control.cs:
21595           - UpdateBounds after creation to find out where the WM placed us
21596           - Make sure that if the ParentForm changes location the Form
21597             is notified
21598         * XplatUIX11.cs: XGetGeometry will not return the coords relative
21599             to the root, but to whatever the WM placed around us.
21600             Translate to root coordinates before returning toplevel
21601             coordinates
21602         * XplatUIWin32.cs: Removed debug output
21603         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
21604           flag to GetWindowPos, to allow translation of coordinates on X11
21605
21606 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
21607
21608         * ListBox.cs: connect LostFocus Event
21609
21610 2005-01-27  Peter Bartok  <pbartok@novell.com>
21611
21612         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
21613           XplatUIX11.cs: Extended the Systray API
21614         * Form.cs: Removed debug output
21615         * Application.cs: Fixed focus assignment, always need to call
21616           XplatUI.Activate() since Form.Activate() has rules that may
21617           prevent activation
21618         * NotifyIcon.cs: Should be complete now
21619         * ToolTip.cs: Worked around possible timer bug
21620
21621 2005-01-27  Jackson Harper  <jackson@ximian.com>
21622
21623         * TabControl.cs:
21624         - Only invalidate the effected tabs when the
21625         selected index changes. This reduces drawing and gets rid of some
21626         flicker.
21627         - Only refresh if the tabs need to be shifted, otherwise only
21628         invalidate the slider button.
21629         - On windows the tabs are not filled to right if the slider is
21630         visible.
21631         
21632 2005-01-27  Jackson Harper  <jackson@ximian.com>
21633
21634         * TabControl.cs: Only refresh on mouseup if we are showing the
21635         slider. Also only invalidate the button whose state has changed.
21636
21637 2005-01-26  Peter Bartok  <pbartok@novell.com>
21638
21639         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
21640         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
21641           and SystrayRemove() methods
21642         * XplatUIOSX.cs: Stubbed Systray methods
21643         * XplatUIX11.cs:
21644           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
21645             methods
21646           - Fixed broken XChangeProperty calls (marshalling messed up things)
21647         * X11Structs.cs: Added enums and structs required for Size hinting
21648         * NotifyIcon.cs: Added & implemented
21649
21650 2005-01-26  Jackson Harper  <jackson@ximian.com>
21651
21652         * TabControl.cs: Space vertically layed out tabs properly.
21653
21654 2005-01-26  Peter Bartok  <pbartok@novell.com>
21655
21656         * Form.cs (CreateClientParams): Always set the location to 0,0
21657           since we're a child window.
21658
21659         * Control.cs (SetVisibleCore): Always explicitly setting the location
21660           of a toplevel window, apparently X11 doesn't like to move windows
21661           while they're not mapped.
21662
21663 2005-01-26  Jackson Harper  <jackson@ximian.com>
21664
21665         * TabControl.cs: Implement FillToRight size mode with vertically
21666         rendered tabs.
21667
21668 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
21669
21670         * ControlPaint.cs, ThemeWin32Classic.cs
21671                 - Fixes DrawFocusRectangle
21672
21673 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
21674
21675         * MenuAPI.cs:
21676                 - MenuBar tracking only starts when item is first clicked
21677                 - Fixes menu hidding for multiple subitems
21678                 - Unselect item in MenuBar when item Executed
21679                 - Fixes bug 71495
21680
21681 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
21682
21683         * ListControl.cs:
21684                 - IsInputKey for ListBox
21685         * ListBox.cs:
21686                 - Focus item
21687                 - Shift and Control item selection
21688                 - Implement SelectionMode.MultiExtended
21689                 - Fixes RightToLeft
21690         * ComboBox.cs:
21691                 - IsInputKey implemented
21692                 - Do not generate OnTextChangedEdit on internal txt changes
21693                 
21694 2005-01-23  Peter Bartok  <pbartok@novell.com>
21695
21696         * AccessibleObject.cs: Partially implemented Select()
21697         * MonthCalendar.cs: Added missing attributes and events
21698         * Form.cs: Fixed CreateParams behaviour, now controls derived from
21699           form can properly override CreateParams.
21700         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
21701           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
21702           Control performs Invalidate & Update
21703         * NativeWindow (CreateHandle): Added special handling for Form
21704           and Form.FormParent classes to allow overriding of From.CreateParams
21705         * Control.cs:
21706           - ControlNativeWindow: Renamed 'control' variable to more intuitive
21707             name 'owner'
21708           - ControlNativeWindow: Added Owner property
21709           - Removed usage of Refresh() on property changes, changed into
21710             Invalidate(), we need to wait until the queue is processed for
21711             updates, direct calls might cause problems if not all vars for
21712             Paint are initialized
21713           - Added call to UpdateStyles() when creating the window, to set any
21714             styles that CreateWindow might have ignored.
21715           - Added support for Form CreateParent overrides to UpdateStyles()
21716         * MessageBox.cs: Removed no longer needed FormParent override stuff,
21717           CreateParams are now properly overridable
21718         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
21719           CreateParams are now properly overridable
21720
21721 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
21722
21723         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
21724         OnTextBoxChanged.
21725
21726         Capture LostFocus and OnTextBoxChanged.  The later introduces a
21727         recursive invocation that I have not figured out yet.
21728
21729         Reset the timer when not using (it was accumulating).
21730
21731
21732         (OnTextBoxChanged): Set UserEdit to true here to track whether the
21733         user has made changes that require validation.
21734
21735         Reset changing to avoid loops.
21736
21737 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
21738
21739         * NumericUpDown.cs: Display value at startup.
21740
21741         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
21742         ValidateEditText.
21743
21744         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
21745         filled in.  Added some basic parsing of text.
21746
21747         Still missing the OnXXX method overrides, and figuring out the
21748         events that must be emitted.
21749
21750         * UpDownBase.cs: Handle UserEdit on the Text property.
21751         
21752 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
21753
21754         * ComboBox.cs:
21755           - Fixes IntegralHeight
21756           - ToString method
21757
21758 2005-01-21  Jackson Harper  <jackson@ximian.com>
21759
21760         * TabControl.cs: Set the SelectedIndex property when SelectedTab
21761         is set so that the page visibility is updated and the tabs are
21762         sized correctly.
21763
21764 2005-01-21  Jackson Harper  <jackson@ximian.com>
21765
21766         * TabControl.cs: Use cliping rectangle for blitting. Give the
21767         theme the clipping rect so we can do clipping while
21768         drawing. Remove some debug code.
21769
21770 2005-01-21  Jackson Harper  <jackson@ximian.com>
21771
21772         * TabPage.cs: Add a new method so tab pages can force the tab
21773         control to recalculate the tab page sizes.
21774         * TabControl.cs: UpdateOwner needs to make the tab control recalc
21775         sizes.
21776
21777 2005-01-20  Jackson Harper  <jackson@ximian.com>
21778
21779         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
21780
21781 2005-01-20  Jackson Harper  <jackson@ximian.com>
21782
21783         * TreeView.cs: Set the bounds for nodes properly. They were
21784         getting screwed up when checkboxes were not enabled, but images
21785         were.
21786
21787 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
21788
21789         * ListBox.cs:
21790                 - Owner draw support
21791                 - Fixes
21792                 
21793 2005-01-20  Jackson Harper  <jackson@ximian.com>
21794
21795         * XplatUIStructs.cs: More misc keys
21796         * X11Keyboard.cs: Ignore some control keys.
21797
21798 2005-01-20  Jackson Harper  <jackson@ximian.com>
21799
21800         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
21801         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
21802
21803 2005-01-19  Peter Bartok  <pbartok@novell.com>
21804
21805         * Control.cs: Un-selecting the control when it is loosing focus
21806
21807 2005-01-19  Jackson Harper  <jackson@ximian.com>
21808
21809         * TreeView.cs: Hook up to the text controls leave event so we can
21810         end editing when the users clicks outside the text box.
21811         
21812 2005-01-19  Jackson Harper  <jackson@ximian.com>
21813
21814         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
21815         get set in the conversion array.
21816
21817 2005-01-19  Peter Bartok  <pbartok@novell.com>
21818
21819         * Application.cs (ModalRun): Added a call to CreateControl to ensure
21820           focus is properly set
21821         * Button.cs:
21822           - Added missing attributes
21823           - removed styles, those are already set in the base class
21824         * ButtonBase.cs:
21825           - Added missing attributes
21826           - Added clip window styles
21827         * CheckBox.cs: Added missing attributes
21828         * CommonDialog.cs:
21829           - FormParentWindow.CreateParams: Added required clip styles
21830         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
21831           also filters modifier keys
21832         * MessageBox.cs:
21833           - Added assignment of Accept and Cancel button to enable Enter
21834             and Esc keys in MessageBox dialogs
21835           - FormParentWindow.CreateParams: Added required clip styles
21836         * RadioButton.cs: Added missing attributes
21837         * TextControl.cs: No longer draws selection if control does not
21838           have focus
21839         * TextBoxBase.cs:
21840           - Now draws simple rectangle around test area to make it obvious
21841             there's a control. This is a hack until we properly support borders
21842           - A few simple fixes to support selections better, now erases selected
21843             text when typing, and resets selection when using movement keys
21844
21845 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21846
21847         * UpDownBase.cs: Added some new properties.
21848
21849         * DomainUpDown.cs: Implement a lot to get my test working.
21850
21851 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21852
21853         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
21854
21855 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21856
21857         * OSXStructs (WindowAttributes): Fixed csc complaints
21858
21859 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21860
21861         * XplayUIOSX.cs:
21862           OSXStructs.cs: Initial refactor to move enums and consts into
21863           OSXStructs and use them in the driver for greater readability.
21864
21865 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21866
21867         * XplatUIOSX.cs: Initial support for Standard Cursors.
21868         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
21869
21870 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
21871
21872         * ComboBox.cs: ability to change style when the ctrl is already
21873         created, missing methods and events, bug fixes, signature fixes
21874
21875 2005-01-19  Peter Bartok  <pbartok@novell.com>
21876
21877         * Cursors.cs (ctor): Added ctor to fix signature
21878
21879 2005-01-18  Peter Bartok  <pbartok@novell.com>
21880
21881         * Button.cs: Implemented DoubleClick event
21882         * ButtonBase.cs:
21883           - Fixed keyboard handling to behave like MS, where the press of
21884             Spacebar is equivalent to a mousedown, and the key release is
21885             equivalent to mouseup. Now a spacebar push will give the same
21886             visual feedback like a mouse click.
21887           - Added missing attributes
21888           - Added ImeModeChanged event
21889           - Added support for generating DoubleClick event for derived classes
21890         * CheckBox.cs:
21891           - Implemented DoubleClick event
21892           - Added missing attributes
21893         * CommonDialog.cs: Added missing attribute
21894         * ContextMenu.cs: Added missing attributes
21895         * RadioButton.cs:
21896           - AutoChecked buttons do not allow to be unselected when clicked
21897             (otherwise we might end up with no selected buttons in a group)
21898           - Added missing attributes
21899           - Implemented DoubleClickEvent
21900         * ThreadExceptionDialog.cs: Enabled TextBox code
21901
21902 2005-01-18  Peter Bartok  <pbartok@novell.com>
21903
21904         * Form.cs: Removed debug output
21905         * Button.cs: Added support for DoubleClick method
21906
21907 2005-01-18  Peter Bartok  <pbartok@novell.com>
21908
21909         * Form.cs:
21910           - Added method to parent window that allows triggering size
21911             calculations when a menu is added/removed
21912           - set_Menu: Cleaned up mess from early days of Form and Control,
21913             now properly triggers a recalc when a menu is added/removed
21914           - Added case to select form itself as focused form if no child
21915             controls exist
21916           - Added PerformLayout call when showing dialog, to ensure properly
21917             placed controls
21918         * Control.cs:
21919           - Select(): Made internal so Form can access it
21920           - Focus(): Only call Xplat layer if required (avoids loop), and sets
21921             status
21922         * Application.cs (Run): Removed hack and calls PerformLayout instead
21923           to trigger calculation when Form becomes visible
21924
21925 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
21926
21927         * ComboBox.cs: fixes for ownerdraw
21928
21929 2005-01-18  Peter Bartok  <pbartok@novell.com>
21930
21931         * TextControl.cs:
21932           - Sentinel is no longer static, each Document gets it's own, this
21933             avoids locking or alternatively overwrite problems when more
21934             than one text control is used simultaneously.
21935           - Switched to use Hilight and HilightText brushes for text selection
21936
21937         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
21938
21939 2005-01-18  Peter Bartok  <pbartok@novell.com>
21940
21941         * Control.cs:
21942           - Hooked up the following events:
21943                 o ControlAdded
21944                 o ControlRemoved
21945                 o HandleDestroyed
21946                 o ImeModeChanged
21947                 o ParentChanged
21948                 o TabStopChanged
21949                 o Invalidated
21950                 o SystemColorsChanged
21951                 o ParentFontChanged
21952                 o Move
21953           - Removed debug output
21954           - Added a call to the current theme's ResetDefaults when a color change
21955             is detected
21956         * Form.cs: Now setting the proper ImeMode
21957         * Theme.cs: Defined a method to force recreation of cached resources
21958           and rereading of system defaults (ResetDefaults())
21959         * ThemeWin32Classic.cs: Added ResetDefaults() stub
21960
21961 2005-01-17  Peter Bartok  <pbartok@novell.com>
21962
21963         * Control.cs: Added missing attributes
21964
21965 2005-01-17  Jackson Harper  <jackson@ximian.com>
21966
21967         * TreeNode.cs: Implement editing. Add missing properties selected
21968         and visible.
21969         * TreeView.cs: Implement node editing. Also some fixes to use
21970         Invalidate (invalid area) instead of Refresh when selecting.
21971
21972 2005-01-17  Peter Bartok  <pbartok@novell.com>
21973
21974         * Control.cs:
21975           - Implemented InvokeGotFocus() method
21976           - Implemented InvokeLostFocus() method
21977           - Implemented InvokePaint() method
21978           - Implemented InvokePaintBackground() method
21979           - Implemented InvokeClick() method
21980           - Implemented FindForm() method
21981           - Implemented RectangleToClient() method
21982           - Implemented ClientToRectangle() method
21983           - Implemented ResetBackColor() method
21984           - Implemented ResetCursor() method
21985           - Implemented ResetFont() method
21986           - Implemented ResteForeColor() method
21987           - Implemented ResetImeMode() method
21988           - Implemented ResetLeftToRight() method
21989           - Implemented ResetText() method
21990           - Implemented Scale() methods
21991           - Implemented ScaleCore() method
21992           - Implemented Update() method
21993           - Removed unused variables
21994           - Stubbed AccessibilityNotifyClients and
21995             ControlAccessibleObject.NotifyClients() methods (dunno what to do
21996             with those yet)
21997           - Now setting proper default for RightToLeft property
21998           - Fixed bug in SetClientSizeCore that would cause windows to get
21999             really big
22000           - Now sending Click/DoubleClick events
22001           - Now selecting controls when left mouse button is clicked on
22002             selectable control
22003         * AccessibleEvents.cs: Added
22004         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
22005         * XplatUIOSX.cs: Stubbed UpdateWindow() method
22006         * XplatUIWin32.cs: Implemented UpdateWindow() method
22007         * XplatUIX11.cs: Implemented UpdateWindow() method
22008         * Form.cs: Removed stray semicolon causing CS0162 warning
22009         * ThemeWin32Classic.cs: Fixed unused variable warnings
22010         * ScrollableControl.cs: Now calls base method for ScaleCore
22011         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
22012           style to avoid interference with internal click handler (which is
22013           different than standard Control click handling)
22014         * RadioButton.cs:
22015           - Now unchecks all sibling radio buttons when control is
22016             selected (Fixes #68756)
22017           - Removed internal tabstop variable, using the one inherited from
22018             Control
22019
22020 2005-01-17  Jackson Harper  <jackson@ximian.com>
22021
22022         * NavigateEventArgs.cs: Fix base type.
22023         * LinkLabel.cs: Sig fix
22024         
22025 2005-01-17  Jackson Harper  <jackson@ximian.com>
22026
22027         * TreeView.cs: Only invalidate the effected nodes bounds when
22028         selecting nodes.
22029
22030 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22031
22032         * XplatUIWin32.cs: fixes Win32 marshaling
22033         * XplatUIX11.cs: fixes method signature
22034
22035 2005-01-17  Peter Bartok  <pbartok@novell.com>
22036
22037         * XplatUIX11.cs: Clean up resources when we no longer need them
22038
22039 2005-01-17  Peter Bartok  <pbartok@novell.com>
22040
22041         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
22042           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
22043           and DestroyCursor() methods.
22044         * Cursor.cs: Partially implemented, now supports standard cursors;
22045           still contains some debug code
22046         * Cursors.cs: Implemented class
22047         * Control.cs:
22048           - WndProc(): Added handling of WM_SETCURSOR message, setting the
22049             appropriate cursor
22050           - Implemented Cursor property
22051           - Replaced break; with return; more straightforwar and possibly
22052             faster
22053           - Now properly setting the result for WM_HELP
22054         * X11Structs.cs: Added CursorFontShape enum
22055         * XplatUIStructs.cs:
22056           - Added StdCursor enum (to support DefineStdCursor() method)
22057           - Added HitTest enum (to support sending WM_SETCURSOR message)
22058         * XplatUIX11.cs:
22059           - Now sends the WM_SETCURSOR message
22060           - Implemented new cursor methods
22061         * XplatUIOSX.cs: Stubbed new cursor methods
22062         * XplatUIWin32.cs:
22063           - Implemented new cursor methods
22064           - Added GetSystemMetrics function and associated enumeration
22065
22066 2005-01-15  Peter Bartok  <pbartok@novell.com>
22067
22068         * Control.cs:
22069           - WndProc(): Now handles EnableNotifyMessage
22070           - SelectNextControl(): Fixed bug where if no child or sibling
22071             controls exist we looped endlessly
22072
22073 2005-01-14  Jackson Harper  <jackson@ximian.com>
22074
22075         * TreeView.cs: Recalculate the tab pages when a new one is added
22076         so that the proper bounding rects are created.
22077
22078 2005-01-14  Jackson Harper  <jackson@ximian.com>
22079
22080         * TreeView.cs: Draw a gray box instead of a grip in the lower
22081         right hand corner when there are both horizontal and vertical
22082         scroll bars.
22083
22084 2005-01-14  Jackson Harper  <jackson@ximian.com>
22085
22086         * Control.cs: When erasing backgrounds use FromHwnd instead of
22087         FromHdc when there is a NULL wparam. This occurs on the X driver.
22088         * XplatUIX11.cs: Set the wparam to NULL.
22089
22090 2005-01-13  Jackson Harper  <jackson@ximian.com>
22091
22092         * PictureBox.cs: Implement missing methods (except ToString, need
22093         to test that on windows) and events. When visibility is changed we
22094         need to redraw the image because the buffers are killed. When size
22095         is changed refresh if the sizemode needs it.
22096
22097 2005-01-13  Peter Bartok  <pbartok@novell.com>
22098
22099         * Control.cs (SelectNextControl): Was using wrong method to select
22100           a control
22101
22102 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22103
22104         * ComboBox.cs: fixes dropstyle
22105
22106 2005-01-13  Peter Bartok  <pbartok@novell.com>
22107
22108         * Form.cs:
22109           - Implemented Select() override
22110           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
22111           - Now sets keyboard focus on startup
22112         * Control.cs (SelectNextControl): Now properly handles directed=true
22113         * TextBoxBase.cs:
22114           - WndProc: Now passes tab key on to base if AcceptTabChar=false
22115           - Added (really bad) focus rectangle (mostly for testing)
22116         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
22117           to enforce redraw on focus changes
22118         * ContainerControl.cs:
22119           - Fixed detection of Shift-Tab key presses
22120           - Fixed traversal with arrow keys
22121         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
22122           gonna keep this or if it's complete yet
22123         
22124 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
22125
22126         * ComboBox.cs: missing properties, fixes
22127
22128 2005-01-13  Peter Bartok  <pbartok@novell.com>
22129
22130         * Panel.cs (ctor): Setting Selectable window style to off
22131         * Splitter.cs (ctor): Setting Selectable window style to off
22132         * GroupBox.cs (ctor): Setting Selectable window style to off
22133         * Label.cs (ctor): Setting Selectable window style to off
22134
22135 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
22136
22137         * UpDownBase.cs (InitTimer): If the timer has been already
22138         created, enable it.
22139
22140         Use a TextBox instead of a Label.
22141
22142 2005-01-12  Jackson Harper  <jackson@ximian.com>
22143
22144         * TreeView.cs: Refresh the tree after sorting the nodes. Always
22145         draw the connecting node lines (when ShowLines is true).
22146         * TreeNode.cs: The nodes index can now be updated. This is used
22147         when a node collection is sorted.
22148         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
22149         insert or an existing unsorted node collection can be sorted.
22150         
22151 2005-01-12  Peter Bartok  <pbartok@novell.com>
22152
22153         * ContainerControl.cs: Implemented ProcessDialogKeys()
22154
22155 2005-01-12  Peter Bartok  <pbartok@novell.com>
22156
22157         * Control.cs:
22158           - Implemented SelectNextControl() method
22159           - Several focus related bug fixes
22160           - Fixed Docking calculations to match MS documentation and
22161             behaviour
22162
22163 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
22164
22165         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
22166         bug fixes
22167
22168 2005-01-12  Peter Bartok  <pbartok@novell.com>
22169
22170         * Control.cs:
22171           - Fixed broken Contains() method
22172           - Implemented GetNextControl() method. Finally. This is the pre-
22173             requisite for focus handling.
22174
22175 2005-01-12  Peter Bartok  <pbartok@novell.com>
22176
22177         * OSXStrucs.cs: Added
22178
22179 2005-01-12  Peter Bartok  <pbartok@novell.com>
22180
22181         * XplatUIWin32.cs:
22182           - Removed PeekMessageFlags
22183           - Implemented SetWindowStyle() method
22184         * XplatUIStructs.cs: Added PeekMessageFlags
22185         * X11Structs: Added missing border_width field to XWindowChanges struct
22186         * XplatUIX11.cs:
22187           - PeekMessage: Now throws exception if flags which are not yet
22188             supported are passed
22189           - Implemented SetWindowStyle() method
22190           - Fixed SetZOrder to handle AfterHwnd properly
22191         * XplatUI.cs: Added SetWindowStyle() method
22192         * XplatUIDriver.cs: Added SetWindowStyle() abstract
22193         * Control.cs:
22194           - Implemented UpdateStyles() method
22195           - Implemented UpdateZOrder() method
22196         * XplatUIOSX.cs: Added SetWindowStyle() stub
22197
22198 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
22199
22200         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
22201         button mouse).
22202
22203
22204 2005-01-11  Jackson Harper  <jackson@ximian.com>
22205
22206         * TreeView.cs: Still need to draw lines to siblings even if out of
22207         the current node is out of the clip.
22208
22209 2005-01-11  Jackson Harper  <jackson@ximian.com>
22210
22211         * TreeView.cs: When setting the hbar/vbar/grip position use
22212         SetBounds so that perform layout is only called once. Also suspend
22213         and resume layout so layout is only done once for all controls.
22214         - Removed some debug fluff
22215         * SizeGrip.cs: Call base implmentation in overriding methods.
22216         - When visibility is changed the drawing buffers are killed so we
22217         need to redraw.
22218
22219 2005-01-11  Jackson Harper  <jackson@ximian.com>
22220
22221         * TreeView.cs: Calculate the open node count while drawing. This
22222         saves us an entire tree traversal for every paint operation. Use
22223         a member var for the open node count so less vars are passed around.
22224
22225 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
22226
22227         * MonthCalendar.cs:
22228         - fixed selection to use mousemove, not mouse polling on timer
22229         * ThemeWin32Classic.cs
22230         - removed redundant unused variable "no_more_content"
22231         
22232 2005-01-11  Peter Bartok  <pbartok@novell.com>
22233
22234         * XplatUIX11.cs (DoEvents): Needs to return when no more events
22235           are pending, so it now calls PeekMessage instead of GetMessage;
22236           implemented a incomplete version of PeekMessage
22237         
22238 2005-01-11  Peter Bartok  <pbartok@novell.com>
22239
22240         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
22241           I18n issues
22242         * TextBoxBase.cs: Added sending of TextChanged event
22243
22244 2005-01-10  Jackson Harper  <jackson@ximian.com>
22245
22246         * TreeView.cs: Try not to draw outside the clipping rectangle on
22247         each node element.
22248
22249 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
22250
22251         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
22252
22253 2005-01-10  Jackson Harper  <jackson@ximian.com>
22254
22255         * TreeView.cs:
22256         - Implement fast scrolling. Now only the newly
22257         exposed nodes are drawn and the old image is moved using the
22258         XplatUI::ScrollWindow method.
22259         - Factor in height of nodes when calculating whether or not the
22260         node is in the clipping rect.
22261
22262 2005-01-10  Jackson Harper  <jackson@ximian.com>
22263
22264         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
22265
22266 2005-01-10  Peter Bartok  <pbartok@novell.com>
22267
22268         * Application.cs: Added temporary hack to resolve all our resize
22269           required issues on startup. This will get fixed properly at
22270           some point in the future
22271
22272 2005-01-10  Jackson Harper  <jackson@ximian.com>
22273
22274         * SizeGrip.cs: New internal class that is used as a sizing
22275         grip control...hence the name.
22276
22277 2005-01-10  Peter Bartok  <pbartok@novell.com>
22278
22279         * Control.cs: Implemented proper TabIndex handling, now assigning
22280           a tabindex when a control is added to a container
22281         * GroupBox.cs (ctor): Now sets the Container style bit, required
22282           for Control.GetNextControl()
22283
22284 2005-01-09  Jackson Harper  <jackson@ximian.com>
22285
22286         * TextBoxBase.cs: Clear window when scrolling (fixes build).
22287
22288 2005-01-09  Peter Bartok <pbartok@novell.com>
22289
22290         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
22291           XplatUIX11.cs: Added ability to control ScrollWindow expose and
22292           an overload for ScrollWindow to allow only scrolling a rectangle
22293
22294 2005-01-09  Peter Bartok <pbartok@novell.com>
22295
22296         * Form.cs:
22297           - Implemented SetDesktopBounds method
22298           - Implemented SetDesktopLocation method
22299
22300 2005-01-08  Jackson Harper  <jackson@ximian.com>
22301
22302         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
22303         the node count has changed, this removes to VScroll::Refresh calls
22304         when drawing.
22305
22306 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
22307
22308         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
22309
22310 2005-01-07  Jackson Harper  <jackson@ximian.com>
22311
22312         * TreeNode.cs: Just update the single node when it is
22313         checked. Don't refresh after toggling, the Expand/Collapse already
22314         handles this.
22315         * TreeView.cs: Respect clipping a little more when drawing. Try
22316         not to redraw things that don't need to be redrawn. Just hide the
22317         scrollbars when they are no longer needed instead of removing
22318         them, so they don't have to be created again and again.
22319         
22320 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
22321
22322         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
22323         coordinates to window space to place the caret properly, FIXED.
22324         Implement GetWindowState & SetWindowState
22325
22326 2005-01-06  Peter Bartok <pbartok@novell.com>
22327
22328         * Form.cs:
22329           - Implemented ClientSize property
22330           - Implemented DesktopBounds property
22331           - Implemented DesktopLocation property
22332           - Implemented IsRestrictedWindow property
22333           - Implemented Size property
22334           - Implemented TopLevel property
22335           - Implemented FormWindowState property
22336         * Control.cs:
22337           - Implemented GetTopLevel() method
22338           - Implemented SetTopLevel() method
22339         * X11Structs.cs (Atom):
22340           - Added AnyPropertyType definition
22341           - Added MapState definiton and updated XWindowAttribute struct
22342         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
22343         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
22344         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
22345         * XplatUIWin32.cs:
22346           - Implemented GetWindowState() and SetWindowState() methods
22347           - Fixed Win32GetWindowLong return type
22348         * XplatUIX11.cs:
22349           - Introduced central function for sending NET_WM messages
22350           - Implemented GetWindowState() and SetWindowState() methods
22351         * TextBoxBase.cs (set_Lines):
22352           - Now uses Foreground color for text added via Text property (Duh!)
22353           - Added code to remember programmatically requested size (fixes
22354             behaviour when Multiline is set after Size)
22355           - Added AutoSize logic
22356
22357 2005-01-06  Jackson Harper  <jackson@ximian.com>
22358
22359         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
22360
22361 2005-01-06  Jackson Harper  <jackson@ximian.com>
22362
22363         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
22364         set to less then 0.
22365
22366 2005-01-06  Jackson Harper  <jackson@ximian.com>
22367
22368         * ScrollableControl.cs: Lazy init the scrollbars.
22369         
22370 2005-01-06  Jackson Harper  <jackson@ximian.com>
22371
22372         * Theme.cs: Speed up getting pens and solid brushes, by using
22373         their ARGB as a hash instead of tostring and not calling Contains.
22374
22375 2005-01-06  Peter Bartok <pbartok@novell.com>
22376
22377         * Form.cs:
22378           - Implemented OnActivated and OnDeactivate event trigger
22379           - Implemented Activate() method
22380           - Fixed ShowDialog() to activate the form that was active before
22381             the dialog was shown
22382         * XplatUIX11.cs:
22383           - Added global active_window var that tracks the currently active
22384             X11 window
22385           - Now always grabs Property changes from the root window to always
22386             catch changes on the active window property
22387           - Added code to PropertyNotify handler to send Active/Inactive
22388             messages when state changes. This puts X11 and Win32 en par on
22389             WM_ACTIVATE notifications (except for double notifications when
22390             the user clicks away from our modal window to another one of our
22391             windows)
22392
22393 2005-01-05  Jackson Harper  <jackson@ximian.com>
22394
22395         * ImageList.cs: Implment ctor
22396
22397 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22398
22399         * XplatUIOSX.cs: Implement Activate/SetTopmost
22400
22401 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22402
22403         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
22404
22405 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
22406
22407         * XplatUIOSX.cs: Implement GetActive/SetFocus.
22408
22409 2005-01-05  Peter Bartok <pbartok@novell.com>
22410
22411         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
22412           XplatUIOSX.cs: Added GetActive method to return the currently
22413           active window for the application (or null, if none is active)
22414         * Form.cs:
22415           - Implemented ActiveForm
22416           - Commented out owner assignment for modal dialogs (causes problems
22417             on Win32, since the owner will be disabled)
22418           - Reworked some Active/Focus handling (still incomplete)
22419         * CommonDialog.cs: Commented out owner assignment for modal dialogs
22420           (causes problems on Win32, since the owner will be disabled)
22421         * IWin32Window: Added ComVisible attribute
22422
22423 2005-01-05  Peter Bartok <pbartok@novell.com>
22424
22425         * ToolTip.cs (WndProc): Enable setting focus now that we have the
22426           required XplatUI functions.
22427
22428 2005-01-05  Peter Bartok <pbartok@novell.com>
22429
22430         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
22431           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
22432           to implement focus and activation handling; still incomplete and
22433           with debug output
22434
22435 2005-01-04  Peter Bartok <pbartok@novell.com>
22436
22437         * TextBoxBase.cs: Changed access level for Document property to
22438           match switch to internal for TextControl
22439
22440 2005-01-04  Peter Bartok <pbartok@novell.com>
22441
22442         * AccessibleObject: Added ComVisible attribute
22443
22444 2005-01-04  Jackson Harper  <jackson@ximian.com>
22445
22446         * X11Keyboard.cs: Remove unneeded var.
22447
22448 2005-01-04  Jackson Harper  <jackson@ximian.com>
22449
22450         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
22451         but PAINT.
22452         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
22453         ClientMessage. This makes apps exit cleanly (more often).
22454         
22455 2005-01-04  Jackson Harper  <jackson@ximian.com>
22456
22457         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
22458         handling focus, return correct colors and fonts,
22459         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
22460         handle selection, horizontal scrolling, and mouse interaction.
22461
22462 2005-01-04  Peter Bartok <pbartok@novell.com>
22463
22464         * ICommandExecutor.cs: Added
22465         * IDataGridColumnStyleEditingNotificationService.cs: Added
22466         * IFeatureSupport.cs: Added
22467         * IFileReaderService.cs: Added
22468         * IDataObject.cs: Added ComVisible attribute
22469         * AmbientProperties.cs: Added
22470         * BaseCollection.cs: Added missing attributes
22471         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
22472         * BaseCollection.cs: Added missing attributes
22473         * Binding.cs: Added TypeConverter attribute
22474         * BindingContext.cs: Added DefaultEvent attribute
22475         * BindingsCollection.cs: Added DefaultEvent attribute
22476         * Button.cs: Added DefaultValue attribute
22477         * DragEventArgs.cs: Added ComVisible attribute
22478         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
22479         * KeyEventArgs.cs: Added ComVisible attribute
22480         * KeyPressEventArgs.cs: Added ComVisible attribute
22481         * MouseEventArgs.cs: Added ComVisible attribute
22482         * NavigateEventArgs.cs: Added
22483         * NavigateEventHandler.cs: Added
22484         * FeatureSupport.cs: Added
22485         * OSFeature.cs: Added
22486         * Theme.cs: Added abstract Version property to support OSFeature
22487         * ThemeWin32Classic.cs: Added Version property to
22488           support OSFeature.Themes
22489         * ProgressBar.cs: Removed OnPaintBackground override, not required since
22490           the proper styles to avoid background drawing are set, also doesn't
22491           match MS signature
22492         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
22493         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
22494         * ScrollEventArgs.cs: Added ComVisible attribute
22495         * SplitterEventArgs.cs: Added ComVisible attribute
22496         * AccessibleSelection.cs: Added Flags attribute
22497         * Appearance.cs: Added ComVisible attribute
22498         * Border3DSide.cs: Added ComVisible attribute
22499         * Border3DStyle.cs: Added ComVisible attribute
22500         * BorderStyle.cs: Added ComVisible attribute
22501         * DragAction.cs: Added ComVisible attribute
22502         * ErrorBlinkStyle.cs: Added
22503         * ScrollEventType.cs: Added ComVisible attribute
22504         * AnchorStyles.cs: Added Editor attribute
22505         * DockStyle.cs: Added Editor attribute
22506         * HorizontalAlignment.cs: Added ComVisible attribute
22507         * HelpEventArgs.cs: Added ComVisible attribute
22508         * PaintEventArgs.cs: Added IDisposable
22509
22510 2005-01-04  Peter Bartok <pbartok@novell.com>
22511
22512         * TextControl.cs: Switched Line, LineTag and Document classes to
22513           internal
22514
22515 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22516
22517         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
22518         Simple mode, fixes, IntegralHeight, etc.
22519
22520 2005-01-04  Peter Bartok <pbartok@novell.com>
22521
22522         * TextBoxBase.cs: Using proper font variable now
22523
22524 2005-01-04  Peter Bartok <pbartok@novell.com>
22525
22526         * Form.cs (ShowDialog): Set parent to owner, if provided
22527         * GroupBox.cs: Removed unused vars
22528         * TextControl.cs:
22529           - Added GetHashCode() for Document and LineTag classes
22530           - Removed unused variables
22531           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
22532             to allow translation between continuous char position and line/pos
22533         * CheckBox.cs: Removed vars that are provided by base class
22534         * RadioButton.cs: Removed vars that are provided by base class, added
22535           new keyword where required
22536         * LinkLabel.cs: Added new keyword where required
22537         * Control.cs (WndProc): Removed unused variable
22538         * TextBoxBase.cs:
22539           - Finished SelectionLength property
22540           - Implemented SelectionStart property
22541           - Implemented Text property
22542           - Removed unused vars
22543         * MessageBox.cs: Added new keyword where required
22544         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
22545           WndProc signature
22546         * MenuAPI.cs: Added new keyword where required
22547         * ButtonBase.cs: Removed vars that are provided by base class, added
22548           new keyword where required
22549         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
22550           argument to double, to allow compiling with csc 2.0 (Atsushi ran
22551           into this)
22552         * Application.cs (Run): Now triggers the ThreadExit event
22553         * CommonDialog.cs: Added new keyword where required; now properly sets
22554           parent (owner) for dialog
22555         * XplatUIX11.cs: Commented out unused vars
22556         * StatusBar.cs: Fixed signature for Text property
22557         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
22558
22559 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
22560
22561         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
22562         TrackBar.cs, MonthCalendar.cs: remove unused vars
22563
22564 2005-01-03  Jackson Harper  <jackson@ximian.com>
22565
22566         * ThemeWin32Classic.cs:
22567         * X11Keyboard.cs: Remove unused vars.
22568
22569 2005-01-03  Peter Bartok  <pbartok@novell.com>
22570
22571         * TextBox.cs:
22572           - set_Text: Tied into TextControl
22573           - set_TextAlignment: Tied into TextControl
22574         * TextControl.cs:
22575           - Added alignment properties and implemented alignment handling
22576             and drawing (still has a bug, not generating proper expose events)
22577           - Added new Line() constructor to allow passing the line alignment
22578           - Fixed selection setting, properly handling end<start now
22579           - Added aligment considerations to RecalculateDocument()
22580         * TextBoxBase.cs:
22581           - Now properly enforces control height for single line controls
22582           - Added support for CharacterCasing
22583           - Added IsInputKey override
22584           - Fixed Keys.Enter logic
22585           - Added SetBoundsCore override
22586           - Fixed mouse selection handling
22587
22588 2005-01-03  Jackson Harper  <jackson@ximian.com>
22589
22590         * TreeView.cs:
22591           - Collapse and uncheck all nodes when CheckBoxes is disabled.
22592           - Checkboxes are always aligned to the bottom of the node,
22593           regardless of item height.
22594           - Use the node bounds to draw the text so we can center it when
22595           the item height is greater then the font height.
22596           - Node::Bounds are only the text part of the node.
22597         * TreeNode.cs: New method to combine collapsing and unchecking all
22598           nodes recursively.
22599
22600 2005-01-02  Jackson Harper  <jackson@ximian.com>
22601
22602         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
22603         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
22604         tree when a check is changed. TODO: Only refresh the checked node.
22605
22606 2004-12-30  Jackson Harper  <jackson@ximian.com>
22607
22608         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
22609         * TreeNode.cs: When collapsing make sure to never collapse the
22610         root node.
22611
22612 2004-12-29  Jackson Harper  <jackson@ximian.com>
22613
22614         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
22615         
22616 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
22617
22618         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
22619
22620 2004-12-28  Peter Bartok  <pbartok@novell.com>
22621
22622         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
22623           not yet assigned
22624
22625 2004-12-28  Peter Bartok  <pbartok@novell.com>
22626
22627         * Control.cs (WndProc): Added WM_HELP handler, now generates
22628           HelpRequested event
22629         * Form.cs: Added HelpButton property and required support code
22630         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
22631
22632 2004-12-28  Peter Bartok  <pbartok@novell.com>
22633
22634         * CommonDialog.cs:
22635           - Made DialogForm.owner variable internal
22636           - Added check to ensure owner form is set before setting
22637             owner properties in CreateParams
22638
22639 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
22640
22641         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
22642           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
22643           GetCursorPos.  Fix major visibility issues.  Rework the windowing
22644           system to support borderless/titleless windows (implements menus).
22645           Fix GetWindowPos.  Implement initial background color support for
22646           views.
22647
22648 2004-12-28  Peter Bartok  <pbartok@novell.com>
22649
22650         * Form.cs (get_CreateParams): Make sure we have an owner before using
22651           the owner variable. Implement proper default if no owner exists
22652
22653 2004-12-28  Peter Bartok  <pbartok@novell.com>
22654
22655         * In preparation for making Managed.Windows.Forms the default build target
22656           for System.Windows.Forms, the following stubbed files were added.
22657           Dialogs are currently being implemented by contributors and are only
22658           short-term place holders.
22659         * ColorDialog.cs: Initial check-in (minmal stub)
22660         * DataGrid.cs: Initial check-in (minimal stub)
22661         * DataGridLineStyle.cs: Initial check-in (minimal stub)
22662         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
22663         * DataGridTableStyle.cs: Initial check-in (minimal stub)
22664         * FontDialog.cs: Initial check-in (minimal stub)
22665         * FileDialog.cs: Initial check-in (minimal stub)
22666         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
22667         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
22668         * OpenFileDialog: Initial check-in (minimal stub)
22669         * IComponentEditorPageSite.cs: Initial check-in
22670         * Splitter.cs: Initial check-in (for Jackson)
22671         * SplitterEventArgs.cs: Initial check-in (for Jackson)
22672         * SplitterEventHandler.cs: Initial check-in (for Jackson)
22673         * TextBox.cs: Initial check-in; still needs some wiring to
22674           TextControl backend
22675         * Form.cs: Implemented ControlBox property
22676         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
22677         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
22678         * TextControl.cs: Added selection functionality; added todo header
22679         * TextBoxBase.cs:
22680           - Implemented Lines property
22681           - Implemented TextHeight property
22682           - Implemented SelectedText property
22683           - Implemented SelectionLength property
22684           - Implemented SelectAll method
22685           - Implemented ToString method
22686           - Removed and cleaned up some debug code
22687           - Implemented (still buggy) mouse text selection
22688
22689 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
22690
22691         * ComboBox.cs: Complete DropDownList implementation, fixes.
22692
22693 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
22694
22695         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
22696         * ComboBoxStyle.cs: ComboBoxStyle enum
22697         * ComboBox.cs: Initial work on ComboBox control
22698
22699 2004-12-21  Peter Bartok  <pbartok@novell.com>
22700
22701         * Control.cs (ctor, CreateParams): Moved setting of is_visible
22702           forward so that anything that creates a window gets the default,
22703           also no longer uses Visible property in CreateParams to avoid
22704           walking up the parent chain and possibly get the wrong visible
22705           status. Fixed IsVisible to no longer walk up to the parent.
22706
22707 2004-12-21  Peter Bartok  <pbartok@novell.com>
22708
22709         * Form.cs (ShowDialog): Unset modality for the proper window
22710  
22711 2004-12-20  Peter Bartok  <pbartok@novell.com>
22712
22713         * CommonDialog.cs: Initial check-in
22714
22715 2004-12-20  Peter Bartok  <pbartok@novell.com>
22716
22717         * Control.cs (Visible): Now uses the parent window instead of the
22718           client area window for the property
22719
22720         * Form.cs
22721           - ShowDialog(): Now uses the proper window for modality
22722           - The default visibility state for the form parent is now false. This
22723             will prevent the user from seeing all the changes to the form and
22724             its controls before the application hits Application.Run()
22725           - Removed some stale commented out code
22726
22727         * NativeWindow.cs:
22728           - Added FindWindow() method to have a method to check for existence
22729             of a window handle
22730           - Added ability to override default exception handling (for example
22731             when debugging with VS.Net; to do this the ExternalExceptionHandler
22732             define must be set
22733           - Removed some useless debug output
22734
22735         * XplatUIX11.cs:
22736           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
22737             not working as expected
22738           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
22739             property to allow switching back to the modal window if focus is
22740             given to another one of our windows (Application Modal)
22741           - Now only sets override_redirect if we create a window
22742             without WS_CAPTION
22743           - Moved EventMask selection before mapping of newly created window
22744             so we can catch the map event as well
22745           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
22746           - Added various Atom related DllImports
22747           - Implemented Exit() method
22748           - .ctor() : No longer shows window if WS_VISIBLE is not defined
22749             in the CreateParams
22750
22751         * MessageBox.cs: Now properly deals with the FormParent window by
22752           providing an override the FormParent CreateParams property to
22753           set as POPUP instead of OVERLAPPED window.
22754
22755 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
22756
22757         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
22758         Minor code cleanup.
22759
22760 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
22761         
22762         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
22763
22764 2004-12-18  Peter Bartok  <pbartok@novell.com>
22765
22766         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
22767           implementing SetModal() method
22768
22769 2004-12-18  Peter Bartok  <pbartok@novell.com>
22770
22771         * X11Structs.cs (XGCValues): Fixed type of function element
22772         * XplatUI.cs: Added ScrollWindow() method
22773         * XplatUIDriver.cs: Added ScrollWindow() abstract
22774         * XplatUIWin32.cs: Implemented ScrollWindow() method
22775         * XplatUIX11.cs: Implemented ScrollWindow() method
22776         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
22777
22778 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22779
22780         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
22781         Some more keyboard support (INCOMPLETE)
22782
22783 2004-12-17  Peter Bartok  <pbartok@novell.com>
22784
22785         * TextControl.cs:
22786         - Added color attribute to line tags.
22787         - Added color argument to all functions dealing with tags
22788         - Added color argument support to various functions
22789         - Fixed miss-calculation of baseline/shift in certain circumstances
22790
22791         * TextBoxBase.cs: Added new color option to test code
22792
22793 2004-12-17  Jackson Harper  <jackson@ximian.com>
22794
22795         * TreeNode.cs:
22796         * MonthCalendar.cs: Signature fixes
22797
22798 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22799
22800         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
22801         keyboard event moved it.  Create a new graphics context for each paint resolves this
22802
22803 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22804
22805         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
22806         Make caret exist and go blink blink.  Initial keyboard support.
22807         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
22808         works.
22809
22810 2004-12-17  Jackson Harper  <jackson@ximian.com>
22811
22812         * XplatUIStructs.cs: Updated set of virtual keycodes.
22813         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
22814
22815 2004-12-17  Jackson Harper  <jackson@ximian.com>
22816
22817         * XplatUIX11.cs: Prune old keyboard code.
22818
22819 2004-12-17  Jackson Harper  <jackson@ximian.com>
22820
22821         * XplatUIX11.cs: When generating mouse wparams get the modifier
22822         keys from the ModifierKeys property.
22823
22824 2004-12-17  Jackson Harper  <jackson@ximian.com>
22825
22826         * X11Keyboard.cs: Send up/down input when generating
22827         messages. Remove some unused vars.
22828
22829 2004-12-17  Jackson Harper  <jackson@ximian.com>
22830
22831         * TabControl.cs:
22832         * TreeView.cs: get rid of warnings.
22833
22834 2004-12-17  Jackson Harper  <jackson@ximian.com>
22835
22836         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
22837
22838 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
22839
22840         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
22841           CheckedListBox.cs: Implementation
22842
22843 2004-12-17  Peter Bartok  <pbartok@novell.com>
22844
22845         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
22846
22847 2004-12-16  Peter Bartok  <pbartok@novell.com>
22848
22849         * TextControl.cs:
22850           - InsertCharAtCaret(): Fixed start pos fixup
22851           - CaretLine_get: No longer derives the line from the tag, the tag
22852             could be stale if lines in the document have been added or deleted
22853           - RebalanceAfterDelete(): Fixed bug in balancing code
22854           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
22855           - Line.Streamline(): Now can also elminate leading empty tags
22856           - DumpTree(): Added a few more tests and prevented exception on
22857             uninitialized data
22858           - Added Debug section for Combining lines
22859           - Delete(): Now copies all remaining properties of a line
22860           
22861         * TextBoxBase.cs:
22862           - Left mousebutton now sets the caret (and middle button still acts
22863             as formatting tester, which must go away soon)
22864           - Added Debug section for Deleting/Combining lines
22865           - Fixed calculations for UpdateView after Combining lines
22866
22867 2004-12-16  Peter Bartok  <pbartok@novell.com>
22868
22869         * TextControl.cs: Now properly aligns text on a baseline, using the
22870           new XplatUI.GetFontMetrics() method. Simplified several calculations
22871         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
22872           defined
22873
22874 2004-12-16  Peter Bartok  <pbartok@novell.com>
22875
22876         * XplatUI.cs: Added GetFontMetrics() method
22877         * XplatUIDriver.cs: Added GetFontMetrics() abstract
22878         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
22879           into libgdiplus, our private GetFontMetrics function
22880         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
22881         * XplatUIWin32.cs: Implemented GetFontMetrics() method
22882
22883 2004-12-16  Jackson Harper  <jackson@ximain.com>
22884
22885         * XplatUIStruct.cs: Add enum for dead keys
22886         * X11Keyboard.cs: Map and unmap dead keys.
22887
22888 2004-12-16  Jackson Harper  <jackson@ximian.com>
22889
22890         * X11Keyboard.cs: Detect and use the num lock mask.
22891
22892 2004-12-16  Peter Bartok  <pbartok@novell.com>
22893
22894         * Control.cs (CreateGraphics): Added check to make sure the
22895           handle of the window exists before calling Graphics.FromHwnd()
22896
22897 2004-12-16  Peter Bartok  <pbartok@novell.com>
22898
22899         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
22900           contains a lot of code that's not supposed to be there for the
22901           real thing, but required for developing/testing the textbox
22902           backend.
22903
22904 2004-12-16  Peter Bartok  <pbartok@novell.com>
22905
22906         * TextControl.cs:
22907         - Fixed Streamline method
22908         - Added FindTag method to Line
22909         - Added DumpTree method for debugging
22910         - Added DecrementLines() method for deleting lines
22911         - Fixed UpdateView to update the cursor to end-of-line on single-line
22912           updates
22913         - Added PositionCaret() method
22914         - Fixed MoveCaret(LineDown) to move into the last line, too
22915         - Added InsertChar overload
22916         - Fixed InsertChar tag offset calculations
22917         - Added DeleteChar() method
22918         - Added Combine() method for folding lines
22919         - Fixed Delete() method, no longer allocates wasted Line object and
22920           now copies all properties when swapping nodes
22921         - Delete() method now updates document line counter
22922
22923 2004-12-15  Jackson Harper  <jackson@ximian.com>
22924
22925         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
22926         * X11Keyboard.cs: Expose the currently selected modifier keys
22927         through a property.
22928
22929 2004-12-15  Peter Bartok  <pbartok@novell.com>
22930
22931         * TextControl.cs: Initial check-in. Still incomplete
22932
22933 2004-12-15  Jackson Harper  <jackson@ximian.com>
22934
22935         * TreeNode.cs:
22936         * TreeView.cs: Fix build on csc (second time today ;-))
22937
22938 2004-12-15  Jackson Harper  <jackson@ximian.com>
22939
22940         * TreeView.cs: Store the treenodes plus/minus box bounds when it
22941         is calculated and use this for click testing.
22942         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
22943
22944 2004-12-15  Jackson Harper  <jackson@ximian.com>
22945
22946         * TreeView.cs: Pass the nodes image index to the image list when
22947         drawing that image.
22948
22949 2004-12-15  Jackson Harper  <jackson@ximian.com>
22950
22951         * X11Keyboard.cs: Set messages hwnd.
22952         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
22953         post_message calls.
22954
22955 2004-12-15  Jackson Harper  <jackson@ximian.com>
22956
22957         * X11Keyboard.cs: Fix to compile with csc.
22958         
22959 2004-12-15  Jackson Harper  <jackson@ximian.com>
22960
22961         * X11Structs.cs: Add key mask values
22962         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
22963         * X11Keyboard.cs: New file - Extrapolates and interpolates key
22964         down/up foo into WM_CHAR foo
22965         * KeyboardLayouts.cs: Common keyboard layouts
22966         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
22967         post messages into the main queue.
22968
22969 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
22970
22971         * Button.cs: implement ProcessMnemonic
22972         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
22973           brushes everytime
22974         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
22975         * ButtonBase.cs: Show HotkeyPrefix (not the &)
22976
22977 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
22978         
22979         * MonthCalendar.cs: Implemented click-hold for next/previous month
22980           and date selection
22981           
22982 2004-12-11  Peter Bartok  <pbartok@novell.com>
22983
22984         * X11Structs.cs:
22985           - Added XKeyboardState (moved from XplatUIX11.cs)
22986           - Added XCreateGC related enums and structures
22987           - Added GXFunction for XSetFunction
22988
22989         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
22990
22991         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
22992           CaretVisible() calls
22993
22994         * ToolTip.cs: Added code to prevent stealing focus from app windows
22995
22996         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
22997           DestroyCaret, SetCaretPos and CaretVisible)
22998
22999         * XplatUIX11.cs:
23000           - Added implementation for caret functions
23001           - Moved hover variables into a struct, to make it a bit easier
23002             on the eyes and to debug
23003           - Removed XKeyboardState (moved to XplatUIX11.cs)
23004           - Moved Keyboard properties into the properties region
23005
23006         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
23007           call to get a graphics context for our control
23008
23009         * XplatUIOSX.cs: Added empty overrides for the new caret functions
23010
23011         * TreeView.cs: Fixed bug. No matter what color was set it would always
23012           return SystemColors.Window
23013
23014         * XplatUIWin32.cs: Implemented caret overrides
23015
23016 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
23017
23018         * ListBox.cs: fire events, implement missing methods and properties,
23019         sorting.
23020
23021 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
23022
23023         * MonthCalendar.cs: invalidation bug fixing
23024         * ThemeWin32Classic.cs: paint fixing
23025
23026 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
23027
23028         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
23029         prepare the CGContextRef there now.
23030
23031 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
23032
23033         * MonthCalendar.cs:
23034           - optimisationL only invalidate areas that have changed
23035         * ThemeWin32Classic.cs:
23036           - only paint parts that intersect with clip_area
23037
23038 2004-12-09  Peter Bartok  <pbartok@novell.com>
23039
23040         * Application.cs: Undid changes from r37004 which cause problems
23041         on X11
23042
23043 2004-12-09  Ravindra  <rkumar@novell.com>
23044
23045         * ToolBar.cs: Added support for displaying ContextMenu
23046         attached to a button on ToolBar.
23047         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
23048         property.
23049
23050 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23051
23052         * Label.cs: autosize works in text change and removes unnecessary
23053         invalidate
23054
23055 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
23056
23057         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
23058         remove warnings
23059
23060 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
23061
23062         * XplatUIOSX.cs: Added mouse move/click/grab support
23063         Remove some debugging WriteLines not needed anymore.
23064         Add window resizing/positioning.
23065         Fix visibility on reparenting.
23066
23067 2004-12-08  Peter Bartok  <pbartok@novell.com>
23068
23069         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
23070
23071 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
23072
23073         * XplatUIOSX.cs: Initial checkin
23074         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
23075
23076 2004-12-03  Ravindra <rkumar@novell.com>
23077
23078         * ListView.cs: Added some keybindings and fixed scrolling.
23079         ScrollBars listen to ValueChanged event instead of Scroll
23080         Event. This would let us take care of all changes being
23081         done in the scrollbars' values programmatically or manually.
23082         * ListView.cs (CanMultiselect): Added a check for shift key.
23083         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
23084         * ListViewItem.cs (Clone): Fixed. We need to make a copy
23085         of ListViewSubItemCollection as well.
23086
23087 2004-12-06  Peter Bartok <pbartok@novell.com>
23088
23089         * Control.cs (Parent): Added check and exception to prevent
23090         circular parenting
23091
23092 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
23093
23094         * ListBox.cs: implemented clipping, selection single and multiple,
23095         bug fixing
23096
23097 2004-12-03  Ravindra <rkumar@novell.com>
23098
23099         * ListView.cs (ListView_KeyDown):
23100         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
23101         when CTRL key is pressed.
23102         * ListViewItem.cs (Selected): Fixed setting the property.
23103
23104 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23105
23106         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
23107
23108         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
23109         MinimizeBox, ShowInTaskbar, TopMost properties.
23110
23111         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
23112         will be implemented).
23113
23114 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
23115
23116         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
23117
23118         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
23119         tests.
23120         
23121         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
23122         
23123         * TreeView.cs: BackColor is Colors.Window.
23124
23125 2004-12-01  Jackson Harper  <jackson@ximian.com>
23126
23127         * TreeView.cs: When resizing the tree if the user is making it
23128         smaller we don't get expose events, so we need to handle adding
23129         the horizontal scrollbar in the size changed handler as well as
23130         the expose handler.
23131
23132 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
23133
23134         * DrawItemState.cs: fixes wrong enum values
23135
23136 2004-12-01  Jackson Harper  <jackson@ximian.com>
23137
23138         * TreeView.cs: Resize the hbar as well as the vbar on resize.
23139
23140 2004-12-01  Jackson Harper  <jackson@ximian.com>
23141
23142         * NodeLabelEditEventArgs.cs:
23143         * NodeLabelEditEventHandler.cs:
23144         * OpenTreeNodeEnumerator.cs:
23145         * TreeNode.cs:
23146         * TreeNodeCollection.cs:
23147         * TreeView.cs:
23148         * TreeViewAction.cs:
23149         * TreeViewCancelEventArgs.cs:
23150         * TreeViewCancelEventHandler.cs:
23151         * TreeViewEventArgs.cs:
23152         * TreeViewEventHandler.cs: Initial implementation.
23153
23154 2004-12-01  Ravindra <rkumar@novell.com>
23155
23156         * ListView.cs (CalculateListView): Fixed scrolling related
23157         calculations. Also, removed some debug statements from other
23158         places.
23159         * ListViewItem.cs: Changed access to 'selected' instance variable
23160         from private to internal.
23161         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
23162
23163 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
23164
23165         * ThemeWin32Classic.cs: remove cache of brush and pens for
23166         specific controls and use the global system, fixes scrollbutton
23167         bugs (for small sizes, disabled, etc)
23168         
23169         * ScrollBar.cs: does not show the thumb for very small controls
23170         (as MS) and allow smaller buttons that the regular size
23171
23172 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
23173
23174         * UpDownBase.cs: Add abstract methods for the interface.
23175         Add new virtual methods (need to be hooked up to TextEntry when it
23176         exists).
23177         Add override methods for most features.
23178         Computes the size, forces the height of the text entry.
23179
23180         * NumericUpDown.cs: Put here the current testing code.
23181
23182         * Set eol-style property on all files that do not have mixed line
23183         endings, to minimize the future problems.  There are still a few
23184         files with mixed endings, and someone should choose whether they
23185         want to move it or not.
23186
23187 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
23188
23189         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
23190         System.Colors
23191         
23192 2004-11-30  Ravindra <rkumar@novell.com>
23193
23194         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
23195         drawing and replaced use of SystemColors by theme colors.
23196         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
23197         * ListView.cs (ListViewItemCollection.Add): Throw exception when
23198         same ListViewItem is being added more than once.
23199
23200 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
23201
23202         * MonthCalendar.cs:
23203           - ControlStyles love to make the control not flicker
23204           
23205 2004-11-30  Peter Bartok  <pbartok@novell.com>
23206
23207         * CharacterCasing.cs: Added
23208
23209 2004-11-29  Peter Bartok  <pbartok@novell.com>
23210
23211         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23212           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
23213           I am removing these files as they conflict with already completed
23214           work. While it is fantastic to get contributions to MWF, I
23215           respectfully ask that everyone please coordinate their contributions
23216           through mono-winforms-list or #mono-winforms at this time. We're
23217           explicitly avoiding stubbing and don't want controls that don't have
23218           their basic functionality implemented in svn. Please also see
23219           http://www.mono-project.com/contributing/winforms.html
23220
23221
23222 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
23223
23224         * Application.cs (ModalRun): Don't hang after exit.
23225
23226         * Theme.cs: New TreeViewDefaultSize property.
23227
23228         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
23229         with less hardcoded SystemColors constant.
23230         Implemented TreeViewDefaultSize.
23231
23232         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
23233         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
23234
23235
23236 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
23237
23238         * MonthCalendar.cs:
23239           - Fix NextMonthDate and PrevMonthDate click moving calendar
23240
23241 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23242
23243         * MonthCalendar.cs:
23244           - Fix usage of ScrollChange Property when scrolling months
23245
23246 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
23247
23248         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
23249          - Fixes menu destroying
23250          - Support adding and removing items on already created menus
23251
23252 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
23253
23254         * MonthCalendar.cs:
23255           - Re-worked all bolded dates handling to match win32
23256         * ThemeWin32Classic.cs:
23257           - Fixed rendering with bolded dates
23258
23259 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
23260
23261         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
23262         - Horizontal scroolbar
23263         - Multicolumn
23264         - Fixes
23265
23266
23267 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
23268
23269         * MonthCalendar.cs:
23270           - Fix Usage of MaxSelectionCount from SelectionRange
23271           - Fixed Shift + Cursor Selection
23272           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
23273           - Fixed normal cursor selection to be compat with win32
23274           - Fixed Shift + Mouse Click selection
23275
23276 2004-11-24  Peter Bartok <pbartok@novell.com>
23277
23278         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
23279         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
23280         * XplatUIX11.cs:
23281           - CreatedKeyBoardMsg now updates keystate with Alt key
23282           - Added workaround for timer crash to CheckTimers, Jackson will
23283             develop a proper fix and check in later
23284           - Implemented DispatchMessage
23285           - Removed calling the native window proc from GetMessage (call
23286             now moved to DispatchMessage)
23287
23288         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
23289           the keydata (Fixes bug #69831)
23290
23291         * XplatUIWin32.cs:
23292           - (DispatchMessage): Switched to return IntPtr
23293           - Added DllImport for SetFocus
23294
23295 2004-11-24  Ravindra <rkumar@novell.com>
23296
23297         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
23298         background drawing.
23299         * ListViewItem.cs: Fixed various properties, calculations
23300         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
23301         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
23302         and some internal properties. Fixed MouseDown handler and Paint
23303         method.
23304
23305 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23306
23307         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
23308
23309 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23310
23311         * ContainerControl.cs: correct accidental check in of local changes
23312
23313 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
23314
23315         * ThemeWin32Classic.cs:
23316                 - Fixed Drawing Last month in grid (sometimes not showing)
23317         * MonthCalendar.cs:
23318                 - Fixed title width calculation bug (makeing title small)
23319
23320 2004-11-23  Peter Bartok <pbartok@novell.com>
23321
23322         * XplatUIX11.cs:
23323           - Added generation of WM_MOUSEHOVER event
23324           - Added missing assignment of async_method atom
23325           - Fixed WM_ERASEBKGND; now only redraws the exposed area
23326
23327 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23328
23329         * ThemeWin32Classic.cs:
23330                 - Fixed Drawing of today circle when showtodaycircle not set
23331                 - fixed drawing of first and last month in the grid (gay dates)
23332         * MonthCalendar.cs:
23333                 - Fixed Drawing of today circle
23334                 - Fixed drawing of grady dates
23335                 - Fixed HitTest for today link when ShowToday set to false
23336                 - Fixed DefaultSize to obey ShowToday
23337
23338 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
23339
23340         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
23341         * System.Windows.Forms/Theme.cs
23342         * MonthCalendar.cs: added for MonthCalendar
23343         * SelectionRange.cs: added for MonthCalendar
23344         * Day.cs: added for MonthCalendar: added for MonthCalendar
23345         * DateRangeEventArgs.cs: added for MonthCalendar
23346         * DateRangeEventHandler.cs: added for MonthCalendar
23347
23348 2004-11-22  Ravindra <rkumar@novell.com>
23349
23350         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
23351         property.
23352
23353 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
23354
23355         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
23356         event handler.
23357         
23358         * NumericUpDown.cs: Added new implementation.
23359         * UpDownBase.cs: Added new implementation.
23360
23361         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
23362         implementations.
23363         
23364         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
23365         implementations.
23366
23367         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
23368         methods.
23369
23370 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
23371
23372         * Timer.cs  (Dispose): Should call the base dispose when
23373         overriding.
23374
23375 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23376
23377         * ScrollBar.cs: updates thumb position when max, min or increment
23378         is changed
23379
23380 2004-11-21  Ravindra <rkumar@novell.com>
23381
23382         * ListView.cs: Implemented item selection, activation and
23383         column header style. Fixed properties to do a redraw, if
23384         required. Added support for MouseHover, DoubleClick, KeyDown
23385         and KeyUp event handling and some minor fixes.
23386         * ListViewItem.cs: Fixed constructor.
23387         * ThemeWin32Classic.cs: Improved drawing for ListView.
23388
23389 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
23390
23391         * ThemeWin32Classic.cs: initial listbox drawing code
23392         * DrawMode.cs: new enumerator
23393         * ListControl.cs: stubbed class
23394         * ListBox.cs: initial implementation
23395         * Theme.cs: new methods definitions
23396         * SelectionMode.cs: new enumerator
23397
23398 2004-11-17  Peter Bartok  <pbartok@novell.com>
23399
23400         * XplatUIWin32.cs: Added double-click events to the class style
23401         * Control.cs (WndProc):
23402           - Added handling of click-count to MouseDown/ MouseUp events.
23403           - Added handling of middle and right mouse buttons
23404           - Removed old debug code
23405
23406 2004-11-17  Jackson Harper  <jackson@ximian.com>
23407
23408         * XplatUIX11.cs: Use the new Mono.Unix namespace.
23409
23410 2004-11-17  Ravindra <rkumar@novell.com>
23411
23412         * ListView.cs: Added event handling for MouseMove/Up/Down.
23413         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
23414         * ThemeWin32Classic.cs: We need to clear the graphics context and
23415         draw column header in a proper state.
23416
23417
23418 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
23419
23420         *  Menu.cs: fixes signature
23421
23422 2004-11-16  Peter Bartok  <pbartok@novell.com>
23423
23424         * XplatUIX11.cs (GetMessage): Implemented generation of
23425           double click mouse messages
23426
23427 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
23428
23429         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
23430         not by menu
23431
23432 2004-11-11  Peter Bartok  <pbartok@novell.com>
23433
23434         * HandleData.cs: Added Visible property
23435         * XplatUIX11.cs (IsVisible): Now uses Visible property from
23436           HandleData
23437         * XplatUIX11.cs: Removed old debug leftovers
23438         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
23439         * Control.cs (WndProc): Removed old debug leftovers,
23440           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
23441           needed WM_SIZE handling
23442
23443 2004-11-11  Jackson Harper  <jackson@ximian.com>
23444
23445         * OwnerDrawPropertyBag.cs:
23446         * TreeViewImageIndexConverter.cs: Initial implementation
23447
23448 2004-11-10  Jackson Harper  <jackson@ximian.com>
23449
23450         * ThemeWin32Classic.cs:
23451         * TabControl.cs: instead of moving tabs by the slider pos just
23452         start drawing at the tab that is offset by the slider. This way
23453         scrolling always moves by exactly one tab.
23454
23455 2004-11-10  Jackson Harper  <jackson@ximian.com>
23456
23457         * TabControl.cs: You can only scroll left when the slider has
23458         already ben moved right.
23459         
23460 2004-11-10  Jackson Harper  <jackson@ximian.com>
23461
23462         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
23463         the clip area.
23464         
23465 2004-11-10  Jackson Harper  <jackson@ximian.com>
23466
23467         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
23468         clip area.
23469         
23470 2004-11-09  Jackson Harper  <jackson@ximian.com>
23471
23472         * TabControl.cs (CalcXPos): New helper method so we can determine
23473         the proper place to start drawing vertical tabs.
23474         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
23475         
23476 2004-11-09  Jackson Harper  <jackson@ximian.com>
23477
23478         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
23479         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
23480         and Bottom, left and right are illegal values for this and
23481         multiline is enabled when the alignment is set to left or right.
23482         (DrawTab): Each alignment block should draw the text itself now
23483         because Left requires special love. Also add rendering for Left
23484         aligned tabs.
23485         
23486 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
23487
23488         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
23489         does not destroy the windows, removes debugging messages
23490
23491 2004-11-09  jba  <jba-mono@optusnet.com.au>
23492
23493         * ThemeWin32Classic.cs
23494         (DrawButtonBase): Fix verticle text rect clipping in windows
23495         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23496         rendering and incorrect text rect clipping
23497         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
23498         rendering and incorrect text rect clipping
23499         
23500 2004-11-08  Jackson Harper  <jackson@ximian.com>
23501
23502         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
23503         bottom when they are bottom aligned so the bottoms of the tabs get
23504         displayed.
23505         * TabControl.cs (DropRow): Move rows up instead of down when the
23506         tab control is bottom aligned.
23507
23508 2004-11-08 13:59  pbartok
23509
23510         * XplatUIX11.cs:
23511           - Added handling for various window styles
23512           - Added handling for popup windows
23513           - Added SetTopmost handling
23514
23515 2004-11-08 13:55  pbartok
23516
23517         * XplatUIWin32.cs:
23518           - Added argument to SetTopmost method
23519           - Fixed broken ClientToScreen function
23520
23521 2004-11-08 13:53  pbartok
23522
23523         * XplatUIStructs.cs:
23524           - Added missing WS_EX styles
23525
23526 2004-11-08 13:53  pbartok
23527
23528         * XplatUI.cs, XplatUIDriver.cs:
23529           - Added argument to SetTopmost
23530
23531 2004-11-08 13:52  pbartok
23532
23533         * X11Structs.cs:
23534           - Added XSetWindowAttributes structure
23535           - Improved XWindowAttributes structure
23536           - Added SetWindowValuemask enum
23537           - Added window creation arguments enum
23538           - Added gravity enum
23539           - Added Motif hints structure
23540           - Added various Motif flags and enums
23541           - Added PropertyMode enum for property functions
23542
23543 2004-11-08 13:50  pbartok
23544
23545         * Form.cs:
23546           - Fixed arguments for updated SetTopmost method
23547
23548 2004-11-08 13:49  pbartok
23549
23550         * ToolTip.cs:
23551           - Fixed arguments for updated SetTopmost function
23552           - Fixed usage of PointToClient
23553
23554 2004-11-08 13:44  pbartok
23555
23556         * MenuAPI.cs:
23557           - Added Clipping of children and siblings
23558
23559 2004-11-08 13:41  pbartok
23560
23561         * MainMenu.cs:
23562           - Removed SetMenuBarWindow call. We do this in Form.cs
23563
23564 2004-11-08 13:40  jackson
23565
23566         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
23567           scrolling jimmi in the correct location with bottom aligned tabs
23568
23569 2004-11-08 13:36  pbartok
23570
23571         * ContainerControl.cs:
23572           - Implemented BindingContext
23573           - Implemented ParentForm
23574
23575 2004-11-08 12:46  jackson
23576
23577         * TabControl.cs: Put bottom rendered tabs in the right location
23578
23579 2004-11-08 07:15  jordi
23580
23581         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
23582           removes dead code
23583
23584 2004-11-05 17:30  jackson
23585
23586         * TabControl.cs: When selected tabs are expanded make sure they
23587           don't go beyond the edges of the tab control
23588
23589 2004-11-05 14:57  jackson
23590
23591         * TabControl.cs: Reset show_slider so if the control is resized to
23592           a size where it is no longer needed it's not displayed anymore
23593
23594 2004-11-05 13:16  jackson
23595
23596         * TabControl.cs: Make tab pages non visible when added to the
23597           control
23598
23599 2004-11-05 12:42  jackson
23600
23601         * TabControl.cs: Implement SizeMode.FillToRight
23602
23603 2004-11-05 12:16  jackson
23604
23605         * Control.cs: Do not call CreateHandle if the handle is already
23606           created
23607
23608 2004-11-05 11:46  jackson
23609
23610         * TabControl.cs: Remove superflous call to CalcTabRows
23611
23612 2004-11-05 09:07  jackson
23613
23614         * XplatUIX11.cs: Update for Mono.Posix changes
23615
23616 2004-11-05 07:00  ravindra
23617
23618         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
23619           scrolling.
23620
23621 2004-11-04 22:47  jba
23622
23623         * ThemeWin32Classic.cs:
23624           - Fix Button rendering for FlatStyle = Flat or Popup
23625           - Fix RadioButton and CheckBox rendering when Appearance = Button
23626             (normal and flatstyle).
23627           - Correct outer rectangle color when drawing focus rectangle
23628           - Adjust button bounds to be 1 px smaller when focused
23629           - Make button not draw sunken 3d border when pushed (windows compat)
23630           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
23631           - Offset the text in RadioButton and Checkbox when being rendered as
23632           a button.
23633           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
23634           radiobuttons
23635           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
23636           - Fixed disabled text rendering for normally rendered radiobuttons
23637
23638 2004-11-04 10:26  jackson
23639
23640         * TabControl.cs: Recalculate tab rows when resizing
23641
23642 2004-11-04 07:47  jordi
23643
23644         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
23645           collection completion, drawing issues, missing features
23646
23647 2004-11-04 05:03  ravindra
23648
23649         * ScrollBar.cs:
23650                 - We need to recalculate the Thumb area when
23651                 LargeChange/maximum/minimum values are changed.
23652           - We set the 'pos' in UpdatePos() method to minimum, if it's less
23653                 than minimum. This is required to handle the case if large_change is
23654                 more than max, and use LargeChange property instead of large_change
23655                 variable.
23656           - We return max+1 when large_change is more than max, like MS does.
23657
23658 2004-11-04 04:29  ravindra
23659
23660         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
23661                 - Changed default value signatures (prefixed all with ListView).
23662                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
23663                 ListView.
23664           - Fixed calculations for ListViewItem and implemented Clone()
23665           method.
23666
23667 2004-11-04 04:26  ravindra
23668
23669         * Theme.cs, ThemeWin32Classic.cs:
23670                 - Changed default ListView values signatures (prefixed all with
23671                 ListView).
23672           - Fixed default size values for VScrollBar and HScrollBar.
23673                 - Fixed DrawListViewItem method.
23674
23675 2004-11-04 04:05  ravindra
23676
23677         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
23678
23679 2004-11-04 04:04  ravindra
23680
23681         * ImageList.cs: Implemented the missing overload for Draw method.
23682
23683 2004-11-03 19:29  jackson
23684
23685         * TabControl.cs: Handle dropping rows on selection properly
23686
23687 2004-11-03 11:59  jackson
23688
23689         * TabControl.cs: remove debug code
23690
23691 2004-11-03 11:52  jackson
23692
23693         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
23694           the scrolly widgerywoo
23695
23696 2004-11-02 13:52  jackson
23697
23698         * TabControl.cs: Resize the tab pages and tabs when the tab control
23699           is resized
23700
23701 2004-11-02 13:40  jackson
23702
23703         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
23704           selected tab to the bottom
23705
23706 2004-11-02 13:39  jackson
23707
23708         * TabPage.cs: Store the tab pages row
23709
23710 2004-11-02 12:33  jordi
23711
23712         * MenuItem.cs: fixes handle creation
23713
23714 2004-11-02 11:42  jackson
23715
23716         * TabControl.cs: signature fix
23717
23718 2004-11-02 08:56  jackson
23719
23720         * TabControl.cs: Calculate whether the tab is on an edge properly.
23721           Remove top secret debugging code
23722
23723 2004-11-01 19:57  jackson
23724
23725         * TabControl.cs: Add click handling, and proper sizing
23726
23727 2004-11-01 19:47  jackson
23728
23729         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
23730           tab controls
23731
23732 2004-11-01 19:39  jackson
23733
23734         * TabPage.cs: add internal property to store the bounds of a tab
23735           page
23736
23737 2004-10-30 04:23  ravindra
23738
23739         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
23740           values.
23741
23742 2004-10-30 04:21  ravindra
23743
23744         * ListView.cs, ListViewItem.cs: Added support for scrolling and
23745           fixed calculations.
23746
23747 2004-10-30 03:06  pbartok
23748
23749         * XplatUIX11.cs:
23750           - Removed extension of DllImported libs
23751
23752 2004-10-29 09:55  jordi
23753
23754         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
23755           navigation, itemcollection completion, menu fixes
23756
23757 2004-10-27 22:58  pbartok
23758
23759         * XplatUIX11.cs:
23760           - Now throws a nice error message when no X display could be opened
23761
23762 2004-10-26 13:51  jordi
23763
23764         * ListView.cs: removes warning
23765
23766 2004-10-26 03:55  ravindra
23767
23768         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
23769           ThemeWin32Classic.cs: Some formatting for my last checkins.
23770
23771 2004-10-26 03:36  ravindra
23772
23773         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
23774           control and default values.
23775
23776 2004-10-26 03:35  ravindra
23777
23778         * Theme.cs: Added some default values for ListView control.
23779
23780 2004-10-26 03:33  ravindra
23781
23782         * ToolBar.cs: ToolBar should use the user specified button size, if
23783           there is any. Added a size_specified flag for the same.
23784
23785 2004-10-26 03:33  ravindra
23786
23787         * ColumnHeader.cs: Added some internal members and calculations for
23788           ColumnHeader.
23789
23790 2004-10-26 03:32  ravindra
23791
23792         * ListViewItem.cs: Calculations for ListViewItem.
23793
23794 2004-10-26 03:31  ravindra
23795
23796         * ListView.cs: Added some internal members and calculations for
23797           ListView.
23798
23799 2004-10-22 13:31  jordi
23800
23801         * MenuAPI.cs: speedup menus drawing
23802
23803 2004-10-22 13:16  jackson
23804
23805         * XplatUIX11.cs: Make sure to update exposed regions when adding an
23806           expose event
23807
23808 2004-10-22 11:49  jackson
23809
23810         * Control.cs: oops
23811
23812 2004-10-22 11:41  jackson
23813
23814         * Control.cs: Check to see if the window should have its background
23815           repainted by X when drawing.
23816
23817 2004-10-22 11:31  jackson
23818
23819         * XplatUIX11.cs: When invalidating areas only use XClearArea if
23820           clear is true, this way we do not get flicker from X repainting the
23821           background
23822
23823 2004-10-22 11:28  jackson
23824
23825         * XEventQueue.cs: Queue properly
23826
23827 2004-10-21 09:38  jackson
23828
23829         * XEventQueue.cs: Fix access modifier
23830
23831 2004-10-21 09:36  jackson
23832
23833         * XEventQueue.cs: Don't loose messages
23834
23835 2004-10-21 09:22  jackson
23836
23837         * XEventQueue.cs: Don't loose messages
23838
23839 2004-10-20 04:15  jordi
23840
23841         * BootMode.cs: enum need it by SystemInfo
23842
23843 2004-10-19 21:58  pbartok
23844
23845         * XplatUIWin32.cs:
23846           - Small sanity check
23847
23848 2004-10-19 21:56  pbartok
23849
23850         * Form.cs:
23851           - Added private FormParentWindow class which acts as the container
23852             for our form and as the non-client area where menus are drawn
23853           - Added/Moved required tie-ins to Jordi's menus
23854           - Fixed/Implemented the FormStartPosition functionality
23855
23856 2004-10-19 21:52  pbartok
23857
23858         * Control.cs:
23859           - Removed unneeded locals
23860           - Added code to all size and location properties to understand and
23861             deal with the parent container of Form
23862
23863 2004-10-19 21:33  pbartok
23864
23865         * Application.cs:
23866           - Fixed to deal with new Form subclasses for menus
23867
23868 2004-10-19 17:48  jackson
23869
23870         * XEventQueue.cs: commit correct version of file
23871
23872 2004-10-19 16:50  jackson
23873
23874         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
23875
23876 2004-10-19 16:15  jordi
23877
23878         * MenuAPI.cs: MenuBarCalcSize returns the height
23879
23880 2004-10-19 08:31  pbartok
23881
23882         * Control.cs:
23883           - Added missing call to PreProcessMessage before calling OnXXXKey
23884           methods
23885
23886 2004-10-19 00:04  ravindra
23887
23888         * ToolTip.cs: Fixed constructor.
23889
23890 2004-10-18 09:31  jordi
23891
23892         * MenuAPI.cs: menuitems in menubars do not have shortcuts
23893
23894 2004-10-18 09:26  jordi
23895
23896         * MenuItem.cs: fixes MenuItem class signature
23897
23898 2004-10-18 08:56  jordi
23899
23900         * MenuAPI.cs: prevents windows from showing in the taskbar
23901
23902 2004-10-18 00:28  ravindra
23903
23904         * ToolTip.cs: Suppressed a warning message.
23905
23906 2004-10-18 00:27  ravindra
23907
23908         * Control.cs: Default value of visible property must be true.
23909
23910 2004-10-17 23:19  pbartok
23911
23912         * ToolTip.cs:
23913           - Complete implementation
23914
23915 2004-10-17 23:19  pbartok
23916
23917         * XplatUIX11.cs:
23918           - Added EnableWindow method
23919           - Added SetModal stub
23920           - Added generation of WM_ACTIVATE message (still needs testing)
23921           - Added SetTopMost stub
23922           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
23923
23924 2004-10-17 23:17  pbartok
23925
23926         * XplatUIWin32.cs:
23927           - Removed VirtualKeys to XplatUIStructs
23928           - Implemented SetTopMost method
23929           - Implemented EnableWindow method
23930           - Bugfix in ScreenToClient()
23931           - Bugfixes in ClientToScreen()
23932
23933 2004-10-17 22:51  pbartok
23934
23935         * XplatUIStructs.cs:
23936           - Added WS_EX styles to WindowStyles enumeration
23937
23938 2004-10-17 22:50  pbartok
23939
23940         * XplatUI.cs, XplatUIDriver.cs:
23941           - Added method for enabling/disabling windows
23942           - Added method for setting window modality
23943           - Added method for setting topmost window
23944
23945 2004-10-17 22:49  pbartok
23946
23947         * ThemeWin32Classic.cs:
23948           - Added ToolTip drawing code
23949
23950 2004-10-17 22:49  pbartok
23951
23952         * Theme.cs:
23953           - Added ToolTip abstracts
23954
23955 2004-10-17 22:47  pbartok
23956
23957         * Form.cs:
23958           - Fixed Form.ControlCollection to handle owner relations
23959           - Added Owner/OwnedForms handling
23960           - Implemented Z-Ordering for owned forms
23961           - Removed unneeded private overload of ShowDialog
23962           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
23963             so I hope)
23964           - Fixed Close(), had wrong default
23965           - Added firing of OnLoad event
23966           - Added some commented out debug code for Ownership handling
23967
23968 2004-10-17 22:16  pbartok
23969
23970         * Control.cs:
23971           - Fixed/implemented flat list of controls
23972
23973 2004-10-17 22:14  pbartok
23974
23975         * Application.cs:
23976           - Added code to simulate modal dialogs on Win32
23977
23978 2004-10-17 16:11  jordi
23979
23980         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
23981           mouse event
23982
23983 2004-10-17 13:39  jordi
23984
23985         * MenuAPI.cs: menu drawing fixes
23986
23987 2004-10-15 09:10  ravindra
23988
23989         * StructFormat.cs: General Enum.
23990
23991 2004-10-15 09:09  ravindra
23992
23993         * SizeGripStyle.cs: Enum for Form.
23994
23995 2004-10-15 09:08  ravindra
23996
23997         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
23998           in Theme for ListView.
23999
24000 2004-10-15 09:06  ravindra
24001
24002         * ColumnHeader.cs: Flushing some formatting changes.
24003
24004 2004-10-15 09:05  ravindra
24005
24006         * ListViewItem.cs: Implemented GetBounds method and fixed coding
24007           style.
24008
24009 2004-10-15 09:03  ravindra
24010
24011         * ListView.cs: Implemented Paint method and fixed coding style.
24012
24013 2004-10-15 07:34  jordi
24014
24015         * MenuAPI.cs: fix for X11
24016
24017 2004-10-15 07:32  ravindra
24018
24019         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
24020                 - Renamed Paint() method to Draw() for clarity. Also, moved
24021                 DrawImage() to OnPaint().
24022
24023 2004-10-15 07:25  ravindra
24024
24025         * CheckBox.cs, RadioButton.cs:
24026                 - Removed Redraw (), we get it from ButtonBase.
24027                 - Implemented Paint (), to do class specific painting.
24028
24029 2004-10-15 07:16  ravindra
24030
24031         * ButtonBase.cs:
24032                 - Redraw () is not virtual now.
24033                 - Added an internal virtual method Paint (), so that
24034                 derived classes can do their painting on their own.
24035                 - Modified OnPaint () to call Paint ().
24036
24037 2004-10-15 06:43  jordi
24038
24039         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
24040           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
24041
24042 2004-10-15 00:30  ravindra
24043
24044         * MessageBox.cs:
24045                 - MessageBox on windows does not have min/max buttons.
24046                 This change in CreateParams fixes this on Windows. We
24047                 still need to implement this windowstyle behavior in
24048                 our X11 driver.
24049
24050 2004-10-14 05:14  ravindra
24051
24052         * ToolBar.cs:
24053                 - Changed Redraw () to do a Refresh () always.
24054                 - Fixed the MouseMove event handling when mouse is pressed,
24055                 ie drag event handling.
24056                 - Replaced the usage of ToolBarButton.Pressed property to
24057                 ToolBarButton.pressed internal variable.
24058
24059 2004-10-14 05:10  ravindra
24060
24061         * ToolBarButton.cs:
24062                 - Added an internal member 'inside' to handle mouse move
24063                 with mouse pressed ie mouse drag event.
24064                 - Changed 'Pressed' property to return true only when
24065                 'inside' and 'pressed' are both true.
24066                 - Some coding style love.
24067
24068 2004-10-14 00:17  ravindra
24069
24070         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
24071           public method.
24072
24073 2004-10-14 00:15  ravindra
24074
24075         * ButtonBase.cs: Redraw () related improvements.
24076
24077 2004-10-14 00:14  ravindra
24078
24079         * MessageBox.cs: Moved InitFormSize () out of Paint method and
24080           removed unnecessary calls to Button.Show () method.
24081
24082 2004-10-13 17:50  pbartok
24083
24084         * XplatUIX11.cs:
24085           - Formatting fix
24086           - Removed destroying of window until we solve the problem of X
24087             destroying the window before us on shutdown
24088
24089 2004-10-13 16:32  pbartok
24090
24091         * ButtonBase.cs:
24092           - Now Redraws on MouseUp for FlatStyle Flat and Popup
24093
24094 2004-10-13 14:18  pbartok
24095
24096         * XplatUIX11.cs:
24097           - Added code to destroy the X window
24098
24099 2004-10-13 14:18  pbartok
24100
24101         * XplatUIWin32.cs:
24102           - Added code to destroy a window
24103
24104 2004-10-13 14:12  pbartok
24105
24106         * ButtonBase.cs:
24107           - Added the Redraw on Resize that got dropped in the last rev
24108
24109 2004-10-13 09:06  pbartok
24110
24111         * ThemeWin32Classic.cs:
24112           - Path from John BouAntoun:
24113             * Fix check rendering (centre correctly for normal style, offset
24114               correctly for FlatStyle).
24115             * Fix border color usage (use backcolor) for FlatStyle.Popup
24116             * Use checkbox.Capture instead of checkbox.is_pressed when
24117               rendering flatstyle states.
24118
24119 2004-10-12 21:48  pbartok
24120
24121         * ThemeWin32Classic.cs:
24122           - Removed all occurences of SystemColors and replaced them with the
24123             matching theme color
24124
24125 2004-10-12 21:41  pbartok
24126
24127         * ThemeWin32Classic.cs:
24128           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
24129             him using the function for flatstyle drawing
24130           - Changed functions to use the new version of CPDrawBorder3D
24131
24132 2004-10-12 21:15  pbartok
24133
24134         * ControlPaint.cs:
24135           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
24136             match MS documentation. They need to return defined colors if the
24137             passed color matches the configured control color. Thanks to John
24138             BouAntoun for pointing this out.
24139
24140 2004-10-12 20:57  pbartok
24141
24142         * Control.cs:
24143           - Fix from John BouAntoun: Raise ForeColorChanged event when text
24144             color is changed
24145
24146 2004-10-12 20:46  pbartok
24147
24148         * CheckBox.cs:
24149           - Fix from John BouAntoun: Now properly sets the Appearance property
24150
24151 2004-10-12 20:45  pbartok
24152
24153         * ThemeWin32Classic.cs:
24154           - Fixes from John BouAntoun: now handles forecolors and backcolors
24155             for flatstyle rendered controls much better; It also fixes normal
24156             checkbox rendering when pushed or disabled.
24157
24158 2004-10-08 02:50  jordi
24159
24160         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
24161           work
24162
24163 2004-10-07 08:56  jordi
24164
24165         * ThemeWin32Classic.cs: Removes deletion of cached brushes
24166
24167 2004-10-06 03:59  jordi
24168
24169         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
24170           XplatUIWin32.cs: removes warnings from compilation
24171
24172 2004-10-05 12:23  jackson
24173
24174         * RadioButton.cs: Fix ctor
24175
24176 2004-10-05 11:10  pbartok
24177
24178         * MessageBox.cs:
24179           - Partial implementation by Benjamin Dasnois
24180
24181 2004-10-05 10:15  jackson
24182
24183         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
24184           by John BouAntoun
24185
24186 2004-10-05 03:07  ravindra
24187
24188         * ToolBar.cs:
24189                 - Removed a private method, Draw ().
24190                 - Fixed the ButtonDropDown event handling.
24191                 - Fixed MouseMove event handling.
24192
24193 2004-10-05 03:04  ravindra
24194
24195         * ThemeWin32Classic.cs:
24196                 - Added DrawListView method and ListViewDefaultSize property.
24197                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
24198                 - Changed DOS style CRLF to Unix format (dos2unix).
24199
24200 2004-10-05 03:03  ravindra
24201
24202         * Theme.cs:
24203                 - Added DrawListView method and ListViewDefaultSize property.
24204
24205 2004-10-05 02:42  ravindra
24206
24207         * ToolBarButton.cs: Added an internal member dd_pressed to handle
24208           clicks on DropDown arrow.
24209
24210 2004-10-04 22:56  jackson
24211
24212         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
24213           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
24214           Control handle the buffers, derived classes should not have to
24215           CreateBuffers themselves.
24216
24217 2004-10-04 21:20  jackson
24218
24219         * StatusBar.cs: The control handles resizing the buffers now.
24220
24221 2004-10-04 21:18  jackson
24222
24223         * Control.cs: When resizing the buffers should be invalidated. This
24224           should be handled in Control not in derived classes.
24225
24226 2004-10-04 14:45  jackson
24227
24228         * TabPage.cs: oops
24229
24230 2004-10-04 02:14  pbartok
24231
24232         * LeftRightAlignment.cs:
24233           - Initial check-in
24234
24235 2004-10-04 01:09  jordi
24236
24237         * ThemeWin32Classic.cs: fixes right button position causing right
24238           button not showing on horizontal scrollbars
24239
24240 2004-10-02 13:12  pbartok
24241
24242         * XplatUIX11.cs:
24243           - Simplified the Invalidate method by using an X call instead of
24244             generating the expose ourselves
24245           - Added an expose when the window background is changed
24246           - Implemented ClientToScreen method
24247
24248 2004-10-02 13:08  pbartok
24249
24250         * XplatUIWin32.cs:
24251           - Added Win32EnableWindow method (test for implementing modal
24252           dialogs)
24253           - Added ClientToScreen method and imports
24254
24255 2004-10-02 13:07  pbartok
24256
24257         * XplatUI.cs, XplatUIDriver.cs:
24258           - Added ClientToScreen coordinate translation method
24259
24260 2004-10-02 13:06  pbartok
24261
24262         * KeyPressEventArgs.cs:
24263           - Fixed access level for constructor
24264
24265 2004-10-02 13:06  pbartok
24266
24267         * NativeWindow.cs:
24268           - Changed access level for the window_collection hash table
24269
24270 2004-10-02 13:05  pbartok
24271
24272         * Form.cs:
24273           - Added KeyPreview property
24274           - Added Menu property (still incomplete, pending Jordi's menu work)
24275           - Implemented ProcessCmdKey
24276           - Implemented ProcessDialogKey
24277           - Implemented ProcessKeyPreview
24278
24279 2004-10-02 13:02  pbartok
24280
24281         * Control.cs:
24282           - Added private method to get the Control object from the window
24283           handle
24284           - Implemented ContextMenu property
24285           - Implemented PointToScreen
24286           - Implemented PreProcessMessage
24287           - Implemented IsInputChar
24288           - Implemented IsInputKey
24289           - Implemented ProcessCmdKey
24290           - Completed ProcessKeyEventArgs
24291           - Fixed message loop to call the proper chain of functions on key
24292           events
24293           - Implemented ProcessDialogChar
24294           - Implemented ProcessDialogKey
24295           - Implemented ProcessKeyMessage
24296           - Implemented ProcessKeyPreview
24297           - Added RaiseDragEvent stub (MS internal method)
24298           - Added RaiseKeyEvent stub (MS internal method)
24299           - Added RaiseMouseEvent stub (MS Internal method)
24300           - Added RaisePaintEvent stub (MS Internal method)
24301           - Added ResetMouseEventArgs stub (MS Internal method)
24302           - Implemented RtlTranslateAlignment
24303           - Implemented RtlTranslateContent
24304           - Implemented RtlTranslateHorizontal
24305           - Implemented RtlTranslateLeftRight
24306           - Added generation of KeyPress event
24307
24308 2004-10-02 05:57  ravindra
24309
24310         * ListViewItem.cs: Added attributes.
24311
24312 2004-10-02 05:32  ravindra
24313
24314         * ListView.cs: Added attributes.
24315
24316 2004-10-01 11:53  jackson
24317
24318         * Form.cs: Implement the Close method so work on MessageBox can
24319           continue.
24320
24321 2004-09-30 14:06  pbartok
24322
24323         * XplatUIX11.cs:
24324           - Bug fixes
24325
24326 2004-09-30 11:34  jackson
24327
24328         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
24329
24330 2004-09-30 07:26  ravindra
24331
24332         * ListViewItemConverter.cs: Converter for ListViewItem.
24333
24334 2004-09-30 07:26  ravindra
24335
24336         * SortOrder.cs: Enum for ListView control.
24337
24338 2004-09-30 07:25  ravindra
24339
24340         * ColumnHeader.cs: Supporting class for ListView control.
24341
24342 2004-09-30 07:24  ravindra
24343
24344         * ListView.cs, ListViewItem.cs: Initial implementation.
24345
24346 2004-09-30 07:20  ravindra
24347
24348         * ItemActivation.cs: Enum for ListView Control.
24349
24350 2004-09-29 20:29  pbartok
24351
24352         * XplatUIX11.cs:
24353           - Added lookup of pixel value for background color; tries to get a
24354             color 'close' to the requested color, it avoids having to create a
24355             colormap.  Depending on the display this could mean the used color
24356             is slightly off the desired color. Might have to change it to a more
24357             resource intensive colormap approach, but it will work as a
24358           workaround to avoid red screens.
24359
24360 2004-09-29 14:27  jackson
24361
24362         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
24363
24364 2004-09-28 12:44  pbartok
24365
24366         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
24367           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
24368           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
24369           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
24370           TrackBar.cs, VScrollBar.cs:
24371           - Streamlined Theme interfaces:
24372             * Each DrawXXX method for a control now is passed the object for
24373               the control to be drawn in order to allow accessing any state the
24374               theme might require
24375
24376             * ControlPaint methods for the theme now have a CP prefix to avoid
24377               name clashes with the Draw methods for controls
24378
24379             * Every control now retrieves it's DefaultSize from the current
24380             theme
24381
24382 2004-09-28 12:17  jackson
24383
24384         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
24385           drawing
24386
24387 2004-09-24 14:57  jackson
24388
24389         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
24390           Gives us a nice little performance boost.
24391
24392 2004-09-24 12:02  jackson
24393
24394         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
24395           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
24396           Control and supporting classes. Initial checkin
24397
24398 2004-09-23 13:08  jackson
24399
24400         * Form.cs: Temp build fixage
24401
24402 2004-09-23 01:39  ravindra
24403
24404         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
24405           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
24406           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
24407           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
24408           EventHandlers needed by ListView Control.
24409
24410 2004-09-22 14:12  pbartok
24411
24412         * ScrollableControl.cs:
24413           - Implemented DockPadding property
24414           - Implemented AutoScroll property
24415           - Implemented AutoScrollMargin property
24416           - Implemented AutoScrollMinSize property
24417           - Implemented AutoScrollPosition property
24418           - Implemented DisplayRectangle property (still incomplete)
24419           - Implemented CreateParams property
24420           - Implemented HScroll property
24421           - Implemented VScroll property
24422           - Implemented OnVisibleChanged property
24423
24424 2004-09-22 14:09  pbartok
24425
24426         * Form.cs:
24427           - Added Form.ControllCollection class
24428           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
24429             RemoveOwnedForm (still incomplete, missing on-top and common
24430             minimize/maximize behaviour)
24431           - Added StartPosition property (still incomplete, does not use when
24432             creating the form)
24433           - Added ShowDialog() methods (still incomplete, missing forcing the
24434             dialog modal)
24435
24436 2004-09-22 14:05  pbartok
24437
24438         * Application.cs:
24439           - Added message loop for modal dialogs
24440
24441 2004-09-22 14:02  pbartok
24442
24443         * GroupBox.cs:
24444           - Fixed wrong types for events
24445
24446 2004-09-22 14:00  pbartok
24447
24448         * Shortcut.cs, FormWindowState.cs:
24449           - Fixed wrong values
24450
24451 2004-09-22 12:01  jackson
24452
24453         * Control.cs: Text is never null
24454
24455 2004-09-20 22:14  pbartok
24456
24457         * XplatUIWin32.cs:
24458           - Fixed accessibility level for Idle handler
24459
24460 2004-09-20 18:54  jackson
24461
24462         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24463           XplatUIX11.cs: New message loop that uses poll so we don't get a
24464           busy loop
24465
24466 2004-09-17 10:43  pbartok
24467
24468         * ScrollBar.cs:
24469           - Fixed behaviour of arrow buttons. Now properly behaves like
24470             Buttons (and like Microsoft's scrollbar arrow buttons)
24471
24472 2004-09-17 10:14  pbartok
24473
24474         * ScrollBar.cs:
24475           - Added missing release of keyboard/mouse capture
24476
24477 2004-09-17 06:18  jordi
24478
24479         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
24480           Theme.cs: Very early menu support
24481
24482 2004-09-16 17:45  pbartok
24483
24484         * XplatUIWin32.cs:
24485           - Fixed sending a window to the front
24486           - Added overload for SetWindowPos to avoid casting
24487
24488 2004-09-16 17:44  pbartok
24489
24490         * Control.cs:
24491           - Added SendToBack and BringToFront methods
24492
24493 2004-09-16 07:00  ravindra
24494
24495         * Copyright: Added Novell URL.
24496
24497 2004-09-16 07:00  ravindra
24498
24499         * ToolBar.cs: Invalidate should be done before redrawing.
24500
24501 2004-09-15 21:19  ravindra
24502
24503         * ColumnHeaderStyle.cs: Enum for ListView Control.
24504
24505 2004-09-15 21:18  ravindra
24506
24507         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
24508           ListView Control.
24509
24510 2004-09-13 18:26  jackson
24511
24512         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
24513           properly
24514
24515 2004-09-13 18:13  jackson
24516
24517         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
24518           a second thread and post messages into the main threads message
24519           queue. This makes timing much more consistent. Both win2K and XP
24520           have a minimum timer value of 15 milliseconds, so we now do this
24521           too.
24522
24523 2004-09-13 15:18  pbartok
24524
24525         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24526           XplatUIX11.cs:
24527           - Added Z-Ordering methods
24528
24529 2004-09-13 10:56  pbartok
24530
24531         * Form.cs:
24532           - Fixed #region names
24533           - Moved properties and methods into their proper #regions
24534
24535 2004-09-13 10:51  pbartok
24536
24537         * Form.cs:
24538           - Added Accept and CancelButton properties
24539           - Added ProcessDialogKey() method
24540
24541 2004-09-13 08:18  pbartok
24542
24543         * IWindowTarget.cs:
24544           - Initial check-in
24545
24546 2004-09-10 21:50  pbartok
24547
24548         * Control.cs:
24549           - Added DoDragDrop() [incomplete]
24550           - Properly implemented 'Visible' handling
24551           - Added SetVisibleCore()
24552           - Implemented FindChildAtPoint()
24553           - Implemented GetContainerControl()
24554           - Implemented Hide()
24555
24556 2004-09-10 19:28  pbartok
24557
24558         * Control.cs:
24559           - Moved methods into their appropriate #regions
24560           - Reordered methods within regions alphabetically
24561
24562 2004-09-10 18:57  pbartok
24563
24564         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24565           - Added method to retrieve text from window
24566
24567 2004-09-10 18:56  pbartok
24568
24569         * Control.cs:
24570           - Moved some internal functions into the internal region
24571           - Implemented FontHeight
24572           - Implemented RenderRightToLeft
24573           - Implemented ResizeRedraw
24574           - Implemented ShowFocusCues
24575           - Implemented ShowKeyboardCues
24576           - Implemented FromChildHandle
24577           - Implemented FromHandle
24578           - Implemented IsMnemonic
24579           - Implemented ReflectMessage
24580           - All public and protected Static Methods are now complete
24581
24582 2004-09-10 16:54  pbartok
24583
24584         * Control.cs:
24585           - Implemented remaining missing public instance properties
24586           - Alphabetized some out of order properties
24587
24588 2004-09-10 05:51  ravindra
24589
24590         * PictureBox.cs: Added a check for null image.
24591
24592 2004-09-10 00:59  jordi
24593
24594         * GroupBox.cs: remove cvs tag
24595
24596 2004-09-09 05:25  ravindra
24597
24598         * ToolBar.cs: Make redraw accessible from ToolBarButton.
24599
24600 2004-09-09 05:23  ravindra
24601
24602         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
24603           parent redraw.
24604
24605 2004-09-09 02:28  pbartok
24606
24607         * ThemeWin32Classic.cs:
24608           - Improve disabled string look
24609
24610 2004-09-09 01:15  jordi
24611
24612         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
24613           args and handler
24614
24615 2004-09-08 23:56  ravindra
24616
24617         * ItemBoundsPortion.cs: It's enum, not a class!
24618
24619 2004-09-08 23:47  ravindra
24620
24621         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
24622           Enums for Form.
24623
24624 2004-09-08 21:13  ravindra
24625
24626         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
24627           ListView control.
24628
24629 2004-09-08 21:03  ravindra
24630
24631         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
24632           avoid crash.
24633
24634 2004-09-08 21:01  ravindra
24635
24636         * ScrollableControl.cs: Removed unreachable code.
24637
24638 2004-09-08 06:45  jordi
24639
24640         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
24641
24642 2004-09-08 01:00  jackson
24643
24644         * XplatUIX11.cs: Only run the timers when updating the message
24645           queue. This effectively gives X messages a higher priority then
24646           timer messages. Timers still need love though
24647
24648 2004-09-07 14:01  jackson
24649
24650         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
24651           this for us and the handle is no longer valid.
24652
24653 2004-09-07 13:59  jackson
24654
24655         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
24656           loop that manages to not crash. TODO: Add poll and cleanup timers
24657
24658 2004-09-07 11:12  jordi
24659
24660         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
24661
24662 2004-09-07 03:40  jordi
24663
24664         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
24665           fixes, methods, multiple links
24666
24667 2004-09-06 06:55  jordi
24668
24669         * Control.cs: Caches ClientRectangle rectangle value
24670
24671 2004-09-05 02:03  jordi
24672
24673         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
24674           certain situations
24675
24676 2004-09-04 11:10  jordi
24677
24678         * Label.cs: Refresh when font changed
24679
24680 2004-09-02 16:24  pbartok
24681
24682         * Control.cs:
24683           - Added sanity check to creation of double buffer bitmap
24684
24685 2004-09-02 16:24  pbartok
24686
24687         * ButtonBase.cs:
24688           - Fixed selection of text color
24689           - Fixed handling of resize event; now properly recreates double
24690             buffering bitmap
24691           - Added missing assignment of TextAlignment
24692           - Added proper default for TextAlignment
24693
24694 2004-09-02 14:26  pbartok
24695
24696         * RadioButton.cs:
24697           - Added missing RadioButton.RadioButtonAccessibleObject class
24698
24699 2004-09-02 14:26  pbartok
24700
24701         * Control.cs:
24702           - Added missing Control.ControlAccessibleObject class
24703           - Started to implement Select()ion mechanisms, still very incomplete
24704
24705 2004-09-02 14:25  pbartok
24706
24707         * AccessibleObject.cs:
24708           - Added missing methods
24709
24710 2004-09-02 14:23  pbartok
24711
24712         * AccessibleNavigation.cs, AccessibleSelection.cs:
24713           - Initial check-in
24714
24715 2004-09-02 10:32  jordi
24716
24717         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
24718           pool for pens, brushes, and hatchbruses
24719
24720 2004-09-01 15:30  jackson
24721
24722         * StatusBar.cs: Fix typo
24723
24724 2004-09-01 14:44  pbartok
24725
24726         * RadioButton.cs:
24727           - Fixed state
24728
24729 2004-09-01 14:39  pbartok
24730
24731         * Button.cs, RadioButton.cs:
24732           - Functional initial check-in
24733
24734 2004-09-01 14:01  pbartok
24735
24736         * CheckBox.cs:
24737           - Added missing default
24738           - Added missing region mark
24739
24740 2004-09-01 09:10  jordi
24741
24742         * Label.cs: fixes method signatures, new methods, events, fixes
24743           autosize
24744
24745 2004-09-01 07:19  jordi
24746
24747         * Control.cs: Init string variables with an empty object
24748
24749 2004-09-01 04:20  jordi
24750
24751         * Control.cs: fires OnFontChanged event
24752
24753 2004-08-31 20:07  pbartok
24754
24755         * ButtonBase.cs:
24756           - Enabled display of strings
24757
24758 2004-08-31 20:05  pbartok
24759
24760         * Form.cs:
24761           - Added (partial) implementation of DialogResult; rest needs to be
24762             implemented when the modal loop code is done
24763
24764 2004-08-31 19:55  pbartok
24765
24766         * CheckBox.cs:
24767           - Fixed to match the removal of the needs_redraw concept
24768
24769 2004-08-31 19:55  pbartok
24770
24771         * ButtonBase.cs:
24772           - Removed the rather odd split between 'needs redraw' and redrawing
24773           - Now handles the events that require regeneration (ambient
24774             properties and size)
24775
24776 2004-08-31 19:41  pbartok
24777
24778         * Control.cs:
24779           - Added firing of BackColorChanged event
24780           - Added TopLevelControl property
24781           - Fixed handling of WM_ERASEBKGRND message
24782
24783 2004-08-31 12:49  pbartok
24784
24785         * ButtonBase.cs:
24786           - Removed debug
24787           - Minor fixes
24788
24789 2004-08-31 12:48  pbartok
24790
24791         * CheckBox.cs:
24792           - Finished (famous last words)
24793
24794 2004-08-31 04:35  jordi
24795
24796         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
24797           scrolling bugs, adds new methods
24798
24799 2004-08-30 14:42  pbartok
24800
24801         * CheckBox.cs:
24802           - Implemented CheckBox drawing code
24803
24804 2004-08-30 14:42  pbartok
24805
24806         * ButtonBase.cs:
24807           - Made Redraw() and CheckRedraw() virtual
24808           - Improved mouse up/down/move logic to properly track buttons
24809
24810 2004-08-30 09:44  pbartok
24811
24812         * CheckBox.cs:
24813           - Updated to fix broken build. Not complete yet.
24814
24815 2004-08-30 09:28  pbartok
24816
24817         * CheckState.cs:
24818           - Initial checkin
24819
24820 2004-08-30 09:17  pbartok
24821
24822         * Appearance.cs:
24823           - Initial check-in
24824
24825 2004-08-27 16:12  ravindra
24826
24827         * ToolBarButton.cs: Added TypeConverter attribute.
24828
24829 2004-08-27 16:07  ravindra
24830
24831         * ImageIndexConverter.cs: Implemented.
24832
24833 2004-08-27 14:17  pbartok
24834
24835         * Control.cs:
24836           - Removed unneeded stack vars
24837           - First attempt to fix sizing issues when layout is suspended
24838
24839 2004-08-25 15:35  jordi
24840
24841         * ScrollBar.cs: more fixes to scrollbar
24842
24843 2004-08-25 14:04  ravindra
24844
24845         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
24846           Added the missing divider code and grip for ToolBar Control.
24847
24848 2004-08-25 13:20  pbartok
24849
24850         * Control.cs:
24851           - Control now properly passes the ambient background color to child
24852             controls
24853
24854 2004-08-25 13:20  jordi
24855
24856         * ScrollBar.cs: small bug fix regarding bar position
24857
24858 2004-08-25 12:33  pbartok
24859
24860         * Timer.cs:
24861           - Now only calls SetTimer or KillTimer if the enabled state has
24862           changed
24863
24864 2004-08-25 12:33  pbartok
24865
24866         * XplatUIWin32.cs:
24867           - Fixed timer handling, now seems to work
24868           - Improved error message for window creation
24869
24870 2004-08-25 12:32  pbartok
24871
24872         * Control.cs:
24873           - Fixed generation of MouseUp message
24874
24875 2004-08-25 12:29  jordi
24876
24877         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
24878           and fixes for progressbar
24879
24880 2004-08-24 18:43  ravindra
24881
24882         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
24883           in ToolBar control.
24884
24885 2004-08-24 17:15  pbartok
24886
24887         * Panel.cs:
24888           - Added #region
24889           - Added missing events
24890           - Alphabetized
24891
24892 2004-08-24 17:14  pbartok
24893
24894         * StatusBar.cs, PictureBox.cs:
24895           - Now uses Control's CreateParams
24896
24897 2004-08-24 16:36  pbartok
24898
24899         * XplatUIX11.cs:
24900           - Fixed background color handling
24901           - Fixed sending of enter/leave events on a grab
24902
24903 2004-08-24 16:35  pbartok
24904
24905         * X11Structs.cs:
24906           - Refined definitions for CrossingEvent
24907
24908 2004-08-24 12:37  jordi
24909
24910         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
24911           formmating, methods signature, and adds missing events
24912
24913 2004-08-24 12:24  jordi
24914
24915         * Control.cs: fire OnEnabledChanged event
24916
24917 2004-08-24 11:17  pbartok
24918
24919         * XplatUIWin32.cs:
24920           - Implemented SetTimer() and KillTimer()
24921
24922 2004-08-24 11:16  pbartok
24923
24924         * XplatUIX11.cs:
24925           - Now uses Remove instead of Add to kill the timer
24926
24927 2004-08-24 10:16  jackson
24928
24929         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
24930           picture boxes in the theme now. Draw picture box borders and obey
24931           sizing modes
24932
24933 2004-08-24 05:49  jackson
24934
24935         * Timer.cs: Remove top secret debugging code
24936
24937 2004-08-24 05:34  jackson
24938
24939         * PictureBox.cs: Temp hack to make picture boxes draw their full
24940           image
24941
24942 2004-08-24 05:29  jackson
24943
24944         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24945           XplatUIX11.cs: Move timers to the driver level. On X they are
24946           queued by the driver and checked on idle.
24947
24948 2004-08-24 01:07  jackson
24949
24950         * XplatUIX11.cs: Use a queue for async messages instead of passing
24951           them as ClientMessages since that was totally broken. Also simply
24952           check for events and return an idle message if none are found. This
24953           gives us an idle handler, and prevents deadlocking when no messages
24954           are in the queue.
24955
24956 2004-08-23 18:19  ravindra
24957
24958         * XplatUIWin32.cs: Removed the unwanted destructor.
24959
24960 2004-08-23 17:27  pbartok
24961
24962         * ButtonBase.cs:
24963           - Finishing touches. Works now, just needs some optimizations.
24964
24965 2004-08-23 16:53  jordi
24966
24967         * ScrollBar.cs: small fix
24968
24969 2004-08-23 16:45  pbartok
24970
24971         * Application.cs:
24972           - Removed debug output
24973           - Simplifications
24974
24975 2004-08-23 16:43  jordi
24976
24977         * ScrollBar.cs: [no log message]
24978
24979 2004-08-23 16:10  pbartok
24980
24981         * Form.cs:
24982           - Fixed handling of WM_CLOSE message
24983           - Removed debug output
24984
24985 2004-08-23 16:09  pbartok
24986
24987         * Application.cs:
24988           - Added handling of Idle event
24989           - Added handling of form closing
24990           - Fixed reporting of MessageLoop property
24991           - Removed some unneeded code, should provide a bit of a speedup
24992
24993 2004-08-23 15:22  pbartok
24994
24995         * Control.cs:
24996           - Added InitLayout() method
24997           - Added code to properly perform layout when Anchor or Dock property
24998             is changed
24999           - Changed 'interpretation' of ResumeLayout. MS seems to have a
25000             LAMESPEC, tried to do it in a way that makes sense
25001
25002 2004-08-23 14:10  jordi
25003
25004         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
25005           properties and methods
25006
25007 2004-08-23 13:55  pbartok
25008
25009         * Control.cs:
25010           - Properly fixed Jordi's last fix
25011           - Now uses Cursor's Position property instead of calling XplatUI
25012           directly
25013
25014 2004-08-23 13:44  jordi
25015
25016         * PaintEventHandler.cs: Adding missing attribute
25017
25018 2004-08-23 13:39  pbartok
25019
25020         * Cursor.cs:
25021           - Implemented Position property
25022
25023 2004-08-23 13:39  pbartok
25024
25025         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25026           - Added method to move mouse cursor
25027
25028 2004-08-23 13:39  pbartok
25029
25030         * XplatUIX11.cs:
25031           - Fixed setting of background color
25032           - Added method to move mouse cursor
25033
25034 2004-08-23 13:16  jordi
25035
25036         * Control.cs: avoids null exception
25037
25038 2004-08-22 17:46  jackson
25039
25040         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
25041           PictureBox
25042
25043 2004-08-22 17:40  jackson
25044
25045         * XplatUIX11.cs: Add some missing locks
25046
25047 2004-08-22 15:10  pbartok
25048
25049         * Control.cs, Form.cs:
25050           - Removed OverlappedWindow style from Control, instead it's default
25051             now is child
25052           - Made form windows OverlappedWindow by default
25053
25054 2004-08-22 13:34  jackson
25055
25056         * ScrollBar.cs: Update the position through the Value property so
25057           the OnValueChanged event is raised.
25058
25059 2004-08-22 12:04  pbartok
25060
25061         * SWF.csproj:
25062           - Added Cursor.cs and UserControl.cs
25063
25064 2004-08-22 12:03  pbartok
25065
25066         * Cursor.cs:
25067           - Started implementation, not usable yet
25068
25069 2004-08-22 12:00  pbartok
25070
25071         * UserControl.cs:
25072           - Implemented UserControl (complete)
25073
25074 2004-08-21 19:20  ravindra
25075
25076         * ToolBar.cs: Correcting the formatting mess of VS.NET.
25077
25078 2004-08-21 18:49  ravindra
25079
25080         * ToolBar.cs: Probably this completes the missing attributes in
25081           toolbar control.
25082
25083 2004-08-21 18:03  ravindra
25084
25085         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
25086           Fixed toolbar control signatures.
25087
25088 2004-08-21 16:32  pbartok
25089
25090         * LinkLabel.cs:
25091           - Signature Fixes
25092
25093 2004-08-21 16:30  pbartok
25094
25095         * Label.cs:
25096           - Signature fixes
25097
25098 2004-08-21 16:19  pbartok
25099
25100         * Control.cs, Label.cs:
25101           - Signature fixes
25102
25103 2004-08-21 15:57  pbartok
25104
25105         * ButtonBase.cs:
25106           - Added loads of debug output for development
25107           - Fixed typo in method name
25108
25109 2004-08-21 15:52  pbartok
25110
25111         * ToolBarButtonClickEventArgs.cs:
25112           - Added missing base class
25113
25114 2004-08-21 14:53  pbartok
25115
25116         * Control.cs:
25117           - Updated to match new GrabWindow signature
25118
25119 2004-08-21 14:51  pbartok
25120
25121         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25122           - Added method to get default display size
25123
25124 2004-08-21 14:23  pbartok
25125
25126         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25127           - Added method to query current grab state
25128           - Added argument to allow confining a grab to a window
25129
25130 2004-08-21 14:22  pbartok
25131
25132         * Keys.cs:
25133           - Added [Flags] attribute so that modifiers can be used in bitwise
25134           ops
25135
25136 2004-08-21 14:21  pbartok
25137
25138         * TrackBar.cs, ScrollBar.cs:
25139           - Replaced direct XplatUI calls with their Control counterpart
25140
25141 2004-08-21 13:32  pbartok
25142
25143         * Control.cs:
25144           - Implemented Created property
25145
25146 2004-08-21 13:28  pbartok
25147
25148         * Control.cs:
25149           - Implemented ContainsFocus
25150
25151 2004-08-21 13:26  pbartok
25152
25153         * Control.cs:
25154           - Implemented CausesValidation
25155
25156 2004-08-21 13:21  pbartok
25157
25158         * Control.cs:
25159           - Implemented CanFocus
25160           - Implemented CanSelect
25161           - Implemented Capture
25162
25163 2004-08-21 12:35  pbartok
25164
25165         * XplatUIWin32.cs:
25166           - Fixed bug with Async message handling
25167           - Implemented getting the ModifierKeys
25168
25169 2004-08-21 12:32  jackson
25170
25171         * AsyncMethodResult.cs: Make sure we have the mutex before we
25172           release it. Fixes BeginInvoke on windows
25173
25174 2004-08-21 11:31  pbartok
25175
25176         * XplatUIWin32.cs, XplatUIX11.cs:
25177           - Drivers now return proper mouse state
25178
25179 2004-08-21 10:54  jackson
25180
25181         * Control.cs: Implement EndInvoke
25182
25183 2004-08-21 10:48  jackson
25184
25185         * Timer.cs: Remove unneeded finalizer
25186
25187 2004-08-20 19:52  ravindra
25188
25189         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
25190           in mouse event handling in the ToolBar control.
25191
25192 2004-08-20 19:50  ravindra
25193
25194         * ImageList.cs: Changed draw method to use the arguments passed in
25195           to draw the image.
25196
25197 2004-08-20 18:58  pbartok
25198
25199         * XplatUIStructs.cs:
25200           - Added private message for async communication
25201
25202 2004-08-20 17:38  ravindra
25203
25204         * Control.cs: Made RightToLeft property virtual and removed a
25205           Console.WriteLine.
25206
25207 2004-08-20 14:39  jordi
25208
25209         * ThemeGtk.cs: use style_attach
25210
25211 2004-08-20 14:39  pbartok
25212
25213         * XplatUIWin32.cs:
25214           - Added jackson's Async code from X11 to Win32
25215
25216 2004-08-20 14:09  pbartok
25217
25218         * SWF.csproj:
25219           - Added all new files
25220
25221 2004-08-20 14:09  pbartok
25222
25223         * Control.cs:
25224           - Added call to set window background color
25225
25226 2004-08-20 14:03  pbartok
25227
25228         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
25229           - Added method for setting the window background
25230
25231 2004-08-20 14:02  pbartok
25232
25233         * XplatUIWin32.cs:
25234           - Added method for setting the background color
25235           - Added handling for erasing the window background
25236
25237 2004-08-20 13:45  jordi
25238
25239         * TrackBar.cs: fixes timer, new properties and methods
25240
25241 2004-08-20 13:34  jackson
25242
25243         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
25244           correct thread
25245
25246 2004-08-20 13:22  jackson
25247
25248         * Timer.cs: Timer Tick events are now handed through Controls Async
25249           mechanism so the callbacks are executed in the same thread as X
25250
25251 2004-08-20 13:19  jackson
25252
25253         * XplatUIDriver.cs: Expose functionality to send async messages
25254           through the driver
25255
25256 2004-08-20 13:18  jackson
25257
25258         * Control.cs: Implement Begininvoke
25259
25260 2004-08-20 13:14  jackson
25261
25262         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
25263           messages through the driver
25264
25265 2004-08-20 13:12  jackson
25266
25267         * XplatUIX11.cs: Lock before all X operations. Also added Async
25268           method functionality through XSendEvent
25269
25270 2004-08-20 13:11  jackson
25271
25272         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
25273           This will screw up on 64 bit systems)
25274
25275 2004-08-20 13:10  jackson
25276
25277         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
25278           Async messages through X/Win32
25279
25280 2004-08-19 19:39  pbartok
25281
25282         * XplatUIX11.cs:
25283           - Updated code to match new HandleData.DeviceContext type
25284
25285 2004-08-19 19:38  pbartok
25286
25287         * HandleData.cs:
25288           - Made DeviceContext a generic object to allow usage from various
25289           drivers
25290           - Added support for queueing Windows messages
25291
25292 2004-08-19 19:37  pbartok
25293
25294         * XplatUIWin32.cs:
25295           - Added generation of MouseEnter, MouseLeave and MouseHover events
25296           - Added cleanup on EndPaint
25297
25298 2004-08-19 19:17  pbartok
25299
25300         * Control.cs:
25301           - Added handling of WM_MOUSEHOVER
25302           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
25303           code
25304
25305 2004-08-19 18:55  jordi
25306
25307         * ThemeGtk.cs: fixes button order
25308
25309 2004-08-19 18:12  jordi
25310
25311         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
25312
25313 2004-08-19 17:09  pbartok
25314
25315         * Control.cs:
25316           - Added Right property
25317           - Added RightToLeft property
25318
25319 2004-08-19 16:27  jordi
25320
25321         * ThemeGtk.cs: experimental GTK theme support
25322
25323 2004-08-19 16:26  jordi
25324
25325         * ITheme.cs, Theme.cs: move themes from an interface to a class
25326
25327 2004-08-19 16:25  jordi
25328
25329         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
25330           theme enhancaments
25331
25332 2004-08-19 16:04  pbartok
25333
25334         * XplatUIX11.cs:
25335           - Added colormap basics
25336           - Added a way to re-initialize with a different display handle
25337           - Fixed setting of the window background color
25338           - Added various X11 imports related to colors and colormaps
25339
25340 2004-08-19 15:51  pbartok
25341
25342         * X11Structs.cs:
25343           - Removed packing hints (Paolo suggested this a while back)
25344           - fixed colormap type
25345           - Added default Atom types
25346           - Added Screen and color structs and enums
25347
25348 2004-08-19 15:39  pbartok
25349
25350         * ImageList.cs:
25351           - Added missing Draw() method
25352           - Added missing RecreateHandle event
25353
25354 2004-08-19 15:30  pbartok
25355
25356         * Form.cs:
25357           - Added handling of WM_CLOSE
25358
25359 2004-08-18 13:16  jordi
25360
25361         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
25362           a table
25363
25364 2004-08-18 09:56  jordi
25365
25366         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
25367
25368 2004-08-17 15:31  ravindra
25369
25370         * SWF.csproj: Updated project.
25371
25372 2004-08-17 15:25  pbartok
25373
25374         * Control.cs:
25375           - Drawing improvement; don't call UpdateBounds if we are not visible
25376             (or have been minimized)
25377
25378 2004-08-17 15:24  pbartok
25379
25380         * XplatUIWin32.cs:
25381           - Finished IsVisible
25382           - Added Win32GetWindowPlacement
25383
25384 2004-08-17 15:08  jackson
25385
25386         * Panel.cs: Initial checkin of the Panel
25387
25388 2004-08-17 14:25  pbartok
25389
25390         * Control.cs:
25391           - Fixed broken handling of default window sizes
25392
25393 2004-08-17 13:29  jackson
25394
25395         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
25396           has a large startup time.
25397
25398 2004-08-17 10:25  jackson
25399
25400         * HandleData.cs: union areas properly
25401
25402 2004-08-17 10:12  jackson
25403
25404         * HandleData.cs: union areas properly
25405
25406 2004-08-16 20:00  ravindra
25407
25408         * ToolBar.cs, ToolBarButton.cs: Added attributes.
25409
25410 2004-08-16 18:48  ravindra
25411
25412         * ToolBar.cs: Added attributes.
25413
25414 2004-08-16 17:17  ravindra
25415
25416         * SWF.csproj: Updated project.
25417
25418 2004-08-16 17:16  jackson
25419
25420         * XplatUIX11.cs: Check for more expose events before sending a
25421           WM_PAINT so they can all be grouped together. This makes dragging a
25422           window across another window redraw in a sane way.
25423
25424 2004-08-16 15:47  pbartok
25425
25426         * Control.cs:
25427           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
25428             support OnMouseEnter/Leave()
25429           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
25430             exposure handling
25431
25432 2004-08-16 15:46  pbartok
25433
25434         * XplatUIStructs.cs, XplatUIX11.cs:
25435           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
25436           OnMouseEnter/Leave()
25437
25438 2004-08-16 15:34  jackson
25439
25440         * XplatUIX11.cs: Group multiple expose events in HandleData, make
25441           sure messages get the message field set to WM_NULL if they are not
25442           handled.
25443
25444 2004-08-16 15:24  jackson
25445
25446         * HandleData.cs: HandleData is used for storing message information
25447           for window handles
25448
25449 2004-08-15 17:23  ravindra
25450
25451         * ColorDepth.cs: Added attribute.
25452
25453 2004-08-15 17:23  ravindra
25454
25455         * SWF.csproj: Updated project for ToolBar Control.
25456
25457 2004-08-15 17:20  ravindra
25458
25459         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
25460           control and also dos2unix format.
25461
25462 2004-08-15 17:13  ravindra
25463
25464         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
25465           ToolBarButtonClickEventArgs.cs,
25466           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
25467           ToolBarTextAlign.cs: First Implementation of ToolBar control.
25468
25469 2004-08-15 15:31  pbartok
25470
25471         * ButtonBase.cs:
25472           - First (mostly) working version
25473
25474 2004-08-13 16:15  pbartok
25475
25476         * Control.cs:
25477           - Fixed Anchor default
25478
25479 2004-08-13 15:43  pbartok
25480
25481         * Control.cs:
25482           - Changed GetCursorPos signature
25483
25484 2004-08-13 15:42  pbartok
25485
25486         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25487           - Changed signature for GetCursorPos
25488
25489 2004-08-13 15:25  pbartok
25490
25491         * XplatUIX11.cs:
25492           - Cleanup
25493           - Fixed resizing/exposure handling
25494
25495 2004-08-13 15:22  jordi
25496
25497         * ThemeWin32Classic.cs: removes redundant code and fixes issues
25498           with tickposition
25499
25500 2004-08-13 14:55  jordi
25501
25502         * TrackBar.cs: change from wndproc to events
25503
25504 2004-08-13 13:00  jordi
25505
25506         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25507           XplatUIX11.cs: implements PointToClient (ScreenToClient)
25508
25509 2004-08-13 12:53  pbartok
25510
25511         * XplatUIWin32.cs:
25512           - Changed GetWindowPos to also provide client area size
25513           - Fixed broken prototypes for several win32 functions
25514
25515 2004-08-13 12:53  pbartok
25516
25517         * XplatUI.cs, XplatUIDriver.cs:
25518           - Changed GetWindowPos to also provide client area size
25519
25520 2004-08-13 12:52  pbartok
25521
25522         * XplatUIX11.cs:
25523           - Added generation of WM_POSCHANGED
25524           - Changed GetWindowPos to also provide client area size
25525
25526 2004-08-13 12:52  pbartok
25527
25528         * Control.cs:
25529           - Added Dispose() and destructor
25530           - Fixed resizing and bounds calculation
25531           - Fixed Layout
25532           - Added memory savings for invisible windows
25533
25534 2004-08-13 12:46  jordi
25535
25536         * TrackBar.cs: adds timer and grap window
25537
25538 2004-08-13 10:25  jackson
25539
25540         * Timer.cs: SWF Timer
25541
25542 2004-08-12 16:59  pbartok
25543
25544         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25545           - Implemented method to get current mouse position
25546
25547 2004-08-12 14:29  jordi
25548
25549         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
25550           enhancement, fix mouse problems, highli thumb, etc
25551
25552 2004-08-12 13:31  pbartok
25553
25554         * Control.cs:
25555           - Fixed Anchoring bugs
25556
25557 2004-08-12 13:01  jackson
25558
25559         * StatusBar.cs: Don't forget things
25560
25561 2004-08-12 12:54  jackson
25562
25563         * ThemeWin32Classic.cs: Handle owner draw status bars
25564
25565 2004-08-12 12:54  jackson
25566
25567         * StatusBar.cs: Implement missing properties, events, and methods.
25568           Handle mouse clicking
25569
25570 2004-08-12 10:19  jackson
25571
25572         * StatusBarPanelClickEventArgs.cs,
25573           StatusBarPanelClickEventHandler.cs: Classes for handling status
25574           bar panel click events
25575
25576 2004-08-12 10:10  jackson
25577
25578         * Control.cs: Add missing properties
25579
25580 2004-08-12 09:46  pbartok
25581
25582         * BindingsManagerBase.cs:
25583           - Name changed to BindingManagerBase.cs
25584
25585 2004-08-12 09:25  jordi
25586
25587         * ScrollableControl.cs: calls ctrlbase instead of exeception
25588
25589 2004-08-11 16:28  pbartok
25590
25591         * InputLanguageChangingEventArgs.cs:
25592           - Never check in before compiling. Fixes the last check-in
25593
25594 2004-08-11 16:26  pbartok
25595
25596         * InputLanguageChangingEventArgs.cs:
25597           - More signature fixes
25598
25599 2004-08-11 16:20  pbartok
25600
25601         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
25602           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
25603           ImageListStreamer.cs, InputLanguage.cs,
25604           InputLanguageChangedEventArgs.cs,
25605           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
25606           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
25607           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
25608           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25609           - Signature fixes
25610
25611 2004-08-11 16:16  pbartok
25612
25613         * Application.cs:
25614           - Fixed Signature
25615           - Added .Net 1.1 method
25616
25617 2004-08-11 15:25  pbartok
25618
25619         * SWF.csproj:
25620           - Fixed BindingManagerBase.cs filename
25621
25622 2004-08-11 15:22  pbartok
25623
25624         * BindingManagerBase.cs:
25625           - Was checked in with wrong filename
25626
25627 2004-08-11 14:50  pbartok
25628
25629         * SWF.csproj:
25630           - Updated
25631
25632 2004-08-11 13:41  jordi
25633
25634         * XplatUIWin32.cs: Fixes ClientRect
25635
25636 2004-08-11 13:19  pbartok
25637
25638         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25639           XplatUIX11.cs:
25640           - We had SetWindowPos and MoveWindow to set window positions and
25641             size, removed MoveWindow. We have GetWindowPos, so it made sense to
25642             keep SetWindowPos as matching counterpart
25643           - Added some X11 sanity checking
25644
25645 2004-08-11 12:59  pbartok
25646
25647         * Control.cs:
25648           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
25649             (It seems that SetBounds is just a front for SetBoundsCore and
25650              SetBoundsCore updates the underlying window system and
25651              UpdateBounds is responsible for updating the variables associated
25652              with the Control and sending the events)
25653           - Major cleanup of Size handling; we now have two sizes, client_size
25654             and bounds. Bounds defines the window with decorations, client_size
25655             without them.
25656
25657 2004-08-11 12:55  pbartok
25658
25659         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25660           - Added method to calculate difference between decorated window and
25661             raw client area
25662
25663 2004-08-11 12:54  pbartok
25664
25665         * Label.cs:
25666           - Forcing redraw on resize
25667
25668 2004-08-11 11:43  pbartok
25669
25670         * ImageList.cs:
25671           - Removed disposing of the actual images when the list is disposed
25672
25673 2004-08-11 09:13  pbartok
25674
25675         * Control.cs:
25676           - Now properly reparents windows
25677
25678 2004-08-11 08:37  pbartok
25679
25680         * Control.cs:
25681           - Duh!
25682
25683 2004-08-11 07:47  pbartok
25684
25685         * Control.cs:
25686           - Rewrote the collection stuff. Might not be as fast now, not
25687             keeping the number of children around and accessible directly, but
25688             it's more straightforward
25689
25690 2004-08-11 07:44  pbartok
25691
25692         * AccessibleObject.cs:
25693           - Fixed to match ControlCollection rewrite
25694
25695 2004-08-11 07:43  pbartok
25696
25697         * ImageList.cs:
25698           - Added missing creation of the collection list
25699
25700 2004-08-10 20:08  jackson
25701
25702         * StatusBar.cs: Get the paint message from WndProc
25703
25704 2004-08-10 19:31  jackson
25705
25706         * ThemeWin32Classic.cs: Create Brushes as little as possible
25707
25708 2004-08-10 19:20  jackson
25709
25710         * UICues.cs: Add Flags attribute
25711
25712 2004-08-10 19:19  jackson
25713
25714         * StatusBarPanel.cs: Signature cleanup
25715
25716 2004-08-10 19:10  jackson
25717
25718         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
25719           Initial implementation of status bar item drawing
25720
25721 2004-08-10 17:27  jordi
25722
25723         * TrackBar.cs: add missing methods, properties, and restructure to
25724           hide extra ones
25725
25726 2004-08-10 16:24  jackson
25727
25728         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
25729           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
25730           attribute
25731
25732 2004-08-10 13:21  jordi
25733
25734         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
25735           enhancements and standarize on win colors defaults
25736
25737 2004-08-10 12:52  jackson
25738
25739         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
25740           ThemeWin32Classic.cs: Implement DrawItem functionality
25741
25742 2004-08-10 12:47  jordi
25743
25744         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
25745
25746 2004-08-10 12:32  jordi
25747
25748         * Control.cs: throw ontextchange event
25749
25750 2004-08-10 11:43  pbartok
25751
25752         * Control.cs:
25753           - Added more to the still unfinished Dock/Anchor layout code
25754
25755 2004-08-10 11:39  pbartok
25756
25757         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
25758           - Added GetWindowPos method
25759
25760 2004-08-10 11:36  pbartok
25761
25762         * XplatUIWin32.cs:
25763           - Implemented several methods
25764
25765 2004-08-10 09:47  jackson
25766
25767         * TrackBar.cs: Allow control to handle buffering
25768
25769 2004-08-10 09:41  jackson
25770
25771         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
25772
25773 2004-08-10 09:24  jackson
25774
25775         * Label.cs, LinkLabel.cs: Let Control handle buffering.
25776
25777 2004-08-10 09:09  jackson
25778
25779         * StatusBar.cs: Let Control handle all the buffering.
25780
25781 2004-08-10 09:08  jackson
25782
25783         * Control.cs: Control will now handle the buffering code, so each
25784           control does not have to implement this.
25785
25786 2004-08-10 08:34  jackson
25787
25788         * XplatUIDriver.cs: Use default colors from the theme
25789
25790 2004-08-09 17:12  pbartok
25791
25792         * ImageList.cs:
25793           - Fixed several bugs Ravindra pointed out
25794
25795 2004-08-09 16:11  pbartok
25796
25797         * Control.cs:
25798           - Added incomplete dock layout code
25799           - Added support for mouse wheel
25800
25801 2004-08-09 16:09  pbartok
25802
25803         * XplatUIX11.cs:
25804           - Added handling for middle and right mousebutton
25805           - Added handling for mouse wheel
25806           - Added handling for key state and mouse state and position
25807           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
25808           messages
25809
25810 2004-08-09 15:40  jackson
25811
25812         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
25813           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
25814           checkin
25815
25816 2004-08-09 15:37  jackson
25817
25818         * StatusBar.cs: Initial implementation of StatusBar
25819
25820 2004-08-09 15:36  jackson
25821
25822         * ITheme.cs: Add support for drawing status bar and getting status
25823           bar item sizes
25824
25825 2004-08-09 15:35  pbartok
25826
25827         * MouseButtons.cs:
25828           - Fixed values
25829
25830 2004-08-09 15:34  jackson
25831
25832         * ThemeWin32Classic.cs: Add support for drawing status bar and get
25833           status bar item sizes
25834
25835 2004-08-09 15:21  jackson
25836
25837         * ThemeWin32Classic.cs: Use known colors for default control
25838           colours
25839
25840 2004-08-09 15:12  jackson
25841
25842         * ThemeWin32Classic.cs: Make the default font static, it is static
25843           in control so this doesn't change functionality and creating fonts
25844           is sloooooow.
25845
25846 2004-08-09 14:56  pbartok
25847
25848         * X11Structs.cs:
25849           - Added GrabMode enum
25850
25851 2004-08-09 14:55  pbartok
25852
25853         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25854           - Removed Run method, was only required for initial development
25855
25856 2004-08-09 14:51  pbartok
25857
25858         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25859           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
25860           capture
25861
25862 2004-08-09 13:48  pbartok
25863
25864         * XplatUIX11.cs:
25865           - Fixed default sizing for child windows
25866
25867 2004-08-09 12:56  pbartok
25868
25869         * XplatUIX11.cs:
25870           - Added generation of WM_DESTROY message
25871           - Added handling of window manager induced shutdown
25872
25873 2004-08-09 11:31  jackson
25874
25875         * ThemeWin32Classic.cs: New names for control properties
25876
25877 2004-08-09 11:25  jackson
25878
25879         * Control.cs: Use new color names
25880
25881 2004-08-09 11:02  jackson
25882
25883         * XplatUI.cs: Get default window properties from the theme
25884
25885 2004-08-09 11:01  jackson
25886
25887         * ITheme.cs: The theme engine now controls default window
25888           properties
25889
25890 2004-08-09 11:00  jackson
25891
25892         * ThemeWin32Classic.cs: Add default window color properties
25893
25894 2004-08-09 10:17  jackson
25895
25896         * ThemeWin32Classic.cs: Use correct default back color
25897
25898 2004-08-09 10:05  jackson
25899
25900         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
25901           the theme now.
25902
25903 2004-08-09 09:56  jackson
25904
25905         * XplatUI.cs: Remove defaults, these are handled by the theme now.
25906
25907 2004-08-09 09:54  jackson
25908
25909         * Control.cs: Get default properties from the theme.
25910
25911 2004-08-09 09:53  jackson
25912
25913         * ITheme.cs: Themes now handle default control properties
25914
25915 2004-08-09 09:53  jackson
25916
25917         * ThemeWin32Classic.cs: Themes now handle default control
25918           properties so coloring will be consistent
25919
25920 2004-08-08 16:54  jordi
25921
25922         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
25923
25924 2004-08-08 15:08  jordi
25925
25926         * XplatUIX11.cs: fixes keyboard crash
25927
25928 2004-08-08 13:47  jordi
25929
25930         * Label.cs: add cvs header info
25931
25932 2004-08-08 12:09  jackson
25933
25934         * ThemeWin32Classic.cs: Add pen_buttonface
25935
25936 2004-08-08 11:52  jordi
25937
25938         * Label.cs, LinkLabel.cs: [no log message]
25939
25940 2004-08-08 11:34  jordi
25941
25942         * ThemeWin32Classic.cs: Use Windows Standard Colours
25943
25944 2004-08-07 17:32  jordi
25945
25946         * TrackBar.cs: throw exceptions of invalid enums values
25947
25948 2004-08-07 17:31  jordi
25949
25950         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
25951           draw method name
25952
25953 2004-08-07 16:56  jackson
25954
25955         * HorizontalAlignment.cs: Initial checkin
25956
25957 2004-08-07 13:16  jordi
25958
25959         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
25960           methods
25961
25962 2004-08-07 13:05  jordi
25963
25964         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
25965           GetSysColor defines
25966
25967 2004-08-06 18:01  pbartok
25968
25969         * ThemeWin32Classic.cs:
25970           - Fixed some rounding issues with float/int
25971
25972 2004-08-06 18:00  jackson
25973
25974         * DockStyle.cs, AnchorStyles.cs:
25975
25976                   Add flags and serializable attributes.
25977
25978 2004-08-06 17:46  pbartok
25979
25980         * XplatUIX11.cs:
25981           - Implemented GetParent
25982
25983 2004-08-06 17:18  pbartok
25984
25985         * TrackBar.cs:
25986           - Fixed some rounding issues with float/int
25987
25988 2004-08-06 17:17  pbartok
25989
25990         * X11Structs.cs, XplatUIX11.cs:
25991           - Fixed Refresh and Invalidate
25992
25993 2004-08-06 15:30  pbartok
25994
25995         * Control.cs, X11Structs.cs, XplatUIX11.cs:
25996           - Fixed recursive loop when resizing
25997           - Improved/fixed redrawing on expose messages
25998
25999 2004-08-06 09:53  jordi
26000
26001         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
26002           keyboard navigation
26003
26004 2004-08-06 08:02  pbartok
26005
26006         * X11Structs.cs, XplatUIX11.cs:
26007           - Fixed reparenting
26008           - Fixed window border creation
26009
26010 2004-08-05 15:38  pbartok
26011
26012         * XplatUIX11.cs:
26013           - Attempted fix for reparenting problems
26014
26015 2004-08-04 15:14  pbartok
26016
26017         * Control.cs:
26018           - Fixed Invalidation bug (calculated wrong client area)
26019           - Added ClientSize setter
26020
26021 2004-08-04 15:13  pbartok
26022
26023         * Form.cs:
26024           - Added AutoScale properties
26025
26026 2004-08-04 15:13  pbartok
26027
26028         * SWF.csproj:
26029           - Added latest files
26030
26031 2004-08-04 14:11  pbartok
26032
26033         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26034           XplatUIX11.cs:
26035           - Added Invalidate handling
26036
26037 2004-08-03 17:09  jordi
26038
26039         * XplatUIDriver.cs: fixes spelling mistake
26040
26041 2004-07-27 09:53  jordi
26042
26043         * TrackBar.cs: fixes trackbar events, def classname, methods
26044           signature
26045
26046 2004-07-27 09:29  jordi
26047
26048         * ScrollBar.cs: fixes scrollbar events
26049
26050 2004-07-27 04:38  jordi
26051
26052         * Control.cs: changes to be able to run winforms samples
26053
26054 2004-07-26 11:42  jordi
26055
26056         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
26057           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
26058
26059 2004-07-26 05:41  jordi
26060
26061         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
26062           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
26063           implementation
26064
26065 2004-07-22 09:22  jordi
26066
26067         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
26068           check link overlapping, implement events, and fixes
26069
26070 2004-07-21 10:28  jordi
26071
26072         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
26073
26074 2004-07-21 10:19  jordi
26075
26076         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
26077           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
26078           LinkLabelLinkClickedEventArgs.cs,
26079           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
26080           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
26081           implementation
26082
26083 2004-07-19 13:09  jordi
26084
26085         * Control.cs, Label.cs: label control re-written: added missing
26086           functionlity, events, and properties
26087
26088 2004-07-19 10:49  jordi
26089
26090         * Control.cs: fixes SetBounds logic
26091
26092 2004-07-19 01:29  jordi
26093
26094         * Control.cs: Call RefreshWindow only if the window has created
26095
26096 2004-07-15 14:05  pbartok
26097
26098         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
26099           - Implemented ImageList and ImageList.ImageCollection classes
26100           - Added ColorDepth enumeration
26101           - Updated SWF VS.Net project
26102
26103 2004-07-15 11:06  jordi
26104
26105         * XplatUIStructs.cs: added MsgButons enum
26106
26107 2004-07-15 11:03  jordi
26108
26109         * Control.cs: added basic mouse handeling events
26110
26111 2004-07-15 03:38  jordi
26112
26113         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
26114           Vertical TrackBar control implementation
26115
26116 2004-07-13 09:33  jordi
26117
26118         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
26119
26120 2004-07-13 09:31  jordi
26121
26122         * Control.cs, Form.cs: commit: new properties and fixes form size
26123           problems
26124
26125 2004-07-09 14:13  miguel
26126
26127         * ProgressBar.cs: Spelling
26128
26129 2004-07-09 11:25  pbartok
26130
26131         * ProgressBar.cs:
26132           - Removed usage of Rectangle for drawing. Miguel pointed out it's
26133           faster
26134
26135 2004-07-09 11:17  miguel
26136
26137         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26138
26139                 * ProgressBar.cs: Fixed spelling for `block'
26140
26141                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
26142                 style guidelines.
26143
26144                 Avoid using the += on rect.X, that exposed a bug in the compiler.
26145
26146 2004-07-08 23:21  pbartok
26147
26148         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
26149           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
26150           BaseCollection.cs, Binding.cs, BindingContext.cs,
26151           BindingMemberInfo.cs, BindingsCollection.cs,
26152           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
26153           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
26154           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
26155           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
26156           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
26157           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
26158           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
26159           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
26160           FrameStyle.cs, GiveFeedbackEventArgs.cs,
26161           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
26162           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
26163           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
26164           InputLanguageChangedEventArgs.cs,
26165           InputLanguageChangedEventHandler.cs,
26166           InputLanguageChangingEventArgs.cs,
26167           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
26168           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
26169           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
26170           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
26171           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
26172           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
26173           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
26174           QueryAccessibilityHelpEventArgs.cs,
26175           QueryAccessibilityHelpEventHandler.cs,
26176           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
26177           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
26178           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
26179           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
26180           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
26181           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
26182           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
26183           XplatUIX11.cs, lang.cs:
26184           - Initial check-in
26185
26186