2007-04-04 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
2
3         * Control.cs: When we CreateControl, we need to also create all of the
4         control's children.  The child's OnLoad must also fire before the parent's
5         OnLoad.  Fixes the toolbox size in PDN.
6
7 2007-04-04  Jackson Harper  <jackson@ximian.com>
8
9         * TextBoxBase.cs: When the user presses enter, insert a line
10         ending into the text. (Maybe this would be a good spot for
11         Environment.NewLine).
12         * TextControl.cs: Remove undo manager hack, line endings get
13         inserted properly now.
14         
15 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
16
17         * MenuAPI.cs: 
18         - Remove unneeded parameters in UpdateCursor.
19         - Fix UpdateCursor to check if menu is active.
20         - Call UpdateCursor when menu deactivate my click.
21         [Fixes remaining issues from #80410]
22
23 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
24
25         * Control.cs: GetRealChildAtPoint method added, it make an
26         recursive child control search for the point. 
27
28         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
29         menu.
30
31         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
32
33 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
34
35         * Form.cs: Fix mouse position when send back mouse event after closes
36         menu.
37
38 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
39
40         * Form.cs: Simplify the BUTTONDOWN for active tracker.
41
42 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
43
44         * Control.cs: Fix an issue where if a user resized a control inside
45         a sizing method like OnResize, we would overwrite their explicit
46         value.  Also, only call DefaultSize once in the constructor instead
47         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
48         nothing actually changed.
49
50 2007-04-03  Jackson Harper  <jackson@ximian.com>
51
52         * TextControl.cs: Don't attempt to copy text for lines with no
53         text in them (technically this shouldn't happen, but we aren't
54         always inserting line endings when we should be).
55
56 2007-04-03  Jackson Harper  <jackson@ximian.com>
57
58         * TextBoxBase.cs: Calculate the scrollbars before calculating the
59         document, because this sets some of the document size properties
60         that are needed.
61
62 2007-04-03  Jackson Harper  <jackson@ximian.com>
63
64         * TextBoxBase.cs: We need to calculate maximums even if this is
65         not a multiline control, because the maxs are used for scrolling.
66         - Display the caret after doing a page up/down, we need to
67         manually display it because a proper CaretMoved event isn't
68         triggered (this is because of the way the math is done to
69         determine how far to scroll).
70
71 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
72
73         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
74         (ToolBar was relying on SetBoundsCore to default the values sent 
75         base off of BoundsSpecified.)
76
77 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
78
79         * DateTimePicker.cs: Change Text so that when a null value or empty
80           string is assigned to the test we always raise ValueChanged and
81           TextChanged (earlier implementation would only raise ValueChanged
82           if the current date value was different from DateTime.Now).
83
84 2007-04-03  Andreia Gaita <avidigal@novell.com> 
85
86         * ButtonBase: Call update after invalidation, fixes #80194
87
88 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
89
90         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
91           #79335.
92
93 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
94
95         * XplatUIX11.cs: SetWMStyles: If the control is a form with
96           FormBorderStyle = None, don't give the window any decorations.
97           Fixes #81276.
98
99 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
100
101         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
102         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
103           to check for is a mix of several styles (such as WS_CAPTION for
104           instance).
105         * Control.cs: Don't paint an area bigger than the client area when
106           painting the background colour. Add an internal GetCreateParams.
107           Update calls to XplatUI.CalculateWindowRect due to API change.
108         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
109           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
110           the size if it hasn't been handled by any windows. When creating
111           and moving windows, X wants the location of the entire window, but
112           the size of the client window, so add
113           TranslateClientRectangleToXClientRectangle,
114           TranslateWindowSizeToXWindowSIze and
115           TranslatedXWindowSizeToWindowSize to cope with this, and call them
116           before every window creation and move. Update CalculateWIndowRect
117           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
118           In AddConfigureNotify don't do anything if the hwnd is a zombie
119           (fixes the BadWindow we were getting while running the tests),
120           always calculate the offsets when it's a parentless window, not
121           only when reparented, and translate the window size, since we're
122           getting the client size of the whole window, excluding entire
123           window.
124         * Theme.cs: Added BorderSizableSize.
125         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
126           anymore. Update calls to XplatUI.CalculateWindowRect due to API
127           chang
128         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
129           change. Fake the window styles here instead of in XplatUIWin32 so
130           that all back-ends get the same window styles (and it's Form that's
131           deciding when to use wm, not the Win32 backend anyways)
132         * Hwnd.cs: Completely reworked GetWindowRectangle and
133           GetClientRectangle - they are now passed a CreateParams and they
134           only use Style and ExStyle to determine the rectangles (they should
135           now work just like Win32AdjustWindowRectEx - though quite a few
136           special cases are probably missing). They should also be 100%
137           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
138           == rect), and all numbers (borders, menu sizes) are taken from the
139           current theme. Added a GetBorders helper function that will return
140           the borders for any given CreateParams (including captions and
141           menus), and GetBorderSize that returns the given border size only.
142         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
143           Hwnd.GetClientRectangle.
144
145 2007-04-02  Chris Toshok  <toshok@ximian.com>
146
147         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
148         logic between the values we present to the user and the values
149         which are stored in the column's property.  Also, don't call
150         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
151
152 2007-04-02  Jackson Harper  <jackson@ximian.com>
153
154         * TextBoxBase.cs: Scroll faster!
155
156 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
157
158         * StatusStrip.cs: Layout fixes for PDN.
159         * ToolStrip.cs: Set item's available to true, and placement to main when
160         added.
161         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
162         changing in setter before doing any work, add InternalVisible.
163         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
164         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
165         infinite loop.
166
167 2007-04-02  Jackson Harper  <jackson@ximian.com>
168
169         * TextBox.cs: LBUTTON does not make the textbox select all of it's
170         text on focus.
171
172 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
173
174         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
175           Makes ToolStripComboBoxes show up again.
176
177 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
178
179         * ListView.cs: Add a hover_pending field in ListView
180         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
181         cycle (we are resetting the MouseHover logic in XplatUI
182         to handle HoverSelection). Fixes #80429.
183
184 2007-04-02  Jackson Harper  <jackson@ximian.com>
185
186         * TextControl.cs: Make sure the attributes get set on the last
187         tag.
188         - Still have to do the end tag if we have stepped all the ways to
189         the end.
190
191 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
192
193         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
194         on an internal libgdiplus call when the information is already 
195         available via the public API.
196
197 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
198
199         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
200           control is removed from a control collecftion.
201         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
202           Fixes FormPropertyTest (failed on rare occasions).
203         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
204           of Win32SetParent (when changing from no parent to a parent it
205           might add the new parent's location in screen coordinates to this
206           window's location).
207         * Form.cs: Rework ChangingParent once again, now the handle is
208           recreated whenever a FormWindowManager is added or removed (that is
209           whenever a normal form is parented or abandoned). Also change
210           CreateParams so that all non-toplevel windows always get the
211           specified sice (StartupPosition is never considered for
212           non-TopLevel forms).
213         * ContainerControl.cs: Add ChildControlRemoved, the container control
214           needs to be notified when a control is removed from it's
215           collection, in the case the removed control is the active control.
216
217 2007-04-02  Jackson Harper  <jackson@ximian.com>
218
219         * RichTextBox.cs: Use the new methods for setting the font and
220         color, these methods set the specified attribute without
221         overriding the other attributes.
222
223 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
224
225         * ToolStripPanel.cs: Fixes for better layouts in PDN.
226
227 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
228
229         * TextBox.cs: Added internal ChangeBackColor method to special-case
230         Color.Empty. Added check for invalid ScrollBars value.
231         * TextBoxBase.cs: Added internal ChangeBackColor method.
232         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
233         internal ChangeBackColor method to special-case Color.Empty. Added
234         check for invalid ScrollBars value.
235
236 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
237
238         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
239
240 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
241
242         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
243         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
244         [Based on submitted patch from Olivier Duff.]
245
246 2007-03-30  Jackson Harper  <jackson@ximian.com>
247
248         * TextBox.cs: Only select all on initial focus if the user has not
249         specified a selection area.
250
251 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
252
253         * UserControl.cs: Override CreateParams.
254
255 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
256
257         [ Fixes #80995 ]
258
259         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
260         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
261           check for is a mix of several styles (such as WS_CAPTION for instance).
262         * Control.cs: Don't paint an area bigger than the client area when painting
263           the background colour. Add an internal GetCreateParams. Update calls to
264           XplatUI.CalculateWindowRect due to API change.
265         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
266           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
267           hasn't been handled by any windows. When creating and moving windows, X
268           wants the location of the entire window, but the size of the client
269           window, so add TranslateClientRectangleToXClientRectangle,
270           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
271           to cope with this, and call them before every window creation and move.
272           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
273           removing DeriveStyles). In AddConfigureNotify don't do anything if the
274           hwnd is a zombie (fixes the BadWindow we were getting while running the
275           tests), always calculate the offsets when it's a parentless window, not
276           only when reparented, and translate the window size, since we're getting
277           the client size of the whole window, excluding entire window.
278         * Theme.cs: Added BorderSizableSize.
279         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
280           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
281         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
282           Fake the window styles here instead of in XplatUIWin32 so that all
283           back-ends get the same window styles (and it's Form that's deciding when
284           to use wm, not the Win32 backend anyways)
285         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
286           they are now passed a CreateParams and they only use Style and ExStyle
287           to determine the rectangles (they should now work just like
288           Win32AdjustWindowRectEx - though quite a few special cases are probably
289           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
290           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
291           sizes) are taken from the current theme. Added a GetBorders helper
292           function that will return the borders for any given CreateParams
293           (including captions and menus), and GetBorderSize that returns the given
294           border size only.
295         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
296           Hwnd.GetClientRectangle.
297
298 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
299
300         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
301           layout of the mdi children is handled by CreateParams. Fixes
302           #79964,
303
304 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
305
306         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
307         processed.
308
309         * Form.cs: When active tracker mouse down is not processed, send event 
310         back to control inside mouse position. [Fixes #81227]
311
312 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
313
314         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
315         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
316         stealing focus from the active form on Windows.  (Control will be made
317         visible in ShowWindow.)
318
319 2007-03-29  Mike Kestner  <mkestner@novell.com>
320
321         * ImageList.cs : add internal Changed event.
322         * ListView.cs : hook up to StateImageList.Changed to perform
323         invalidations when the the state icon list changes. [Fixes #81191]
324
325 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
326
327         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
328         to prevent tooltips from stealing focus from the active form on Windows.
329
330 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
331
332         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
333
334         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
335
336 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
337
338         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
339         balloons.
340
341 2007-03-29  Jackson Harper  <jackson@ximian.com>
342
343         * TextControl.cs: When deleting text from non multiline textboxes,
344         we need to update the entire document, because line offsets will
345         be shifting.
346
347 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
348
349         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
350         added to theme, now we can create themes that uses diferent notify engines
351         like notification-daemon from galago project or growl for Mac OS.
352
353 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
354
355         * NotifyIcon.cs: Prevent Balloon to show in task bar.
356
357 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
358
359         * XplatUIX11.cs: Prevent system to open more than one balloon.
360
361         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
362         some compiler warning messages.
363
364 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
365
366         [Fixes #79149]
367
368         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
369
370         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
371         implemented, this methods is used by NotifyIcon.BalloonWindow class.
372
373         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
374         systems.
375
376 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
377
378         * ListViewItem.cs: Forgot to make Invalidate internal.
379
380 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
381
382         * ListView.cs: Add a InvalidateSelection method to
383         invalidate methods which are currently selected, and call
384         it when setting FullRowSelect and HideSelection, instead of
385         calling Redraw.
386
387 2007-03-28  Chris Toshok  <toshok@ximian.com>
388
389         * XplatUIX11.cs (UnmapWindow): reindent this block.
390
391         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
392         the selection_start if we're moving the selection (that is, not
393         extending it). Fixes bug #80461.
394
395 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
396
397         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
398         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
399         create private ControlCollection.
400
401 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
402
403         * Control.cs: We need to call OnVisibleChanged for our implicit
404         children as well as our normal children.  Fixes scrollbars in
405         comboboxes not showing up.
406
407 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
408
409         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
410         the check for IsHandleCreated first.  The check in CreateHandle is not
411         good enough because CreateHandle can be overriden, and the override 
412         should not be called if the handle is already created.
413
414 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
415
416         * ToolStrip.cs: Remove MonoTODO for tooltips.
417         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
418         * ToolStripContainer.cs: Add custom ControlCollection class.
419         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
420         * ToolStripDropDown.cs: Add some missing properties/methods.
421         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
422         * ToolStripItem.cs: Remove MonoTODO for tooltips.
423         * ToolStripManager.cs: Add IsShortcutDefined.
424         * ToolStripOverflow.cs: Override LayoutEngine.
425         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
426         * ToolStripSeparator.cs: Add ImageKey.
427
428 2007-03-28  Jackson Harper  <jackson@ximian.com>
429
430         * TextControl.cs: If a char delete removes a line ending, we need
431         to update the ending style.
432         - Make sure the line ending calcs get called.
433
434 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
435
436         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
437           it was making the new code not work. Fixed a typo in the new code
438           as well. Fixes #79826.
439
440 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
441
442         * XplatUIWin32.cs:
443         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
444         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
445         - SystrayBalloon method implemented.
446         [Add support for notifyicon balloon on win32, #79149]
447
448 2007-03-27  Mike Kestner  <mkestner@novell.com>
449
450         * ThemeWin32Classic.cs : update StateImageList selection to mirror
451         the ms behavior when only one image is added to the list.
452         [Fixes #81191]
453
454 2007-03-27  Jackson Harper  <jackson@ximian.com>
455
456         * TextControl.cs: Improvements to non multiline line ending
457         drawing/measuing.
458
459 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
460
461         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
462
463 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
464
465         * NotifyIcon.cs: 
466         - Balloon message handling added.
467         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
468
469         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
470         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
471         to SystrayBalloon to me like other Systray method, also a
472         handle parameter added.
473
474 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
475
476         * ListView.cs: Show scrollbars even when items.Count == 0
477         but the columns Width is bigger than the ListView.Width.
478         Also, when columns.Count == 0 set layout_wd and layout_ht
479         to the ClientRectangle values, so we don't show any scrollbar
480         in that case.
481
482 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
483
484         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
485
486 2007-03-27  Jackson Harper  <jackson@ximian.com>
487
488         * RichTextBox.cs: The RTF library decodes the text properly for us
489         now.
490
491 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
492
493         * ListView.cs: Display HeaderControl even when columns.Count == 0.
494         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
495         ListView header (HeaderControl), instead of Control.BackColor.
496
497 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
498
499         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
500         Fixes tab control issues where controls would not show up because they
501         never received their OnVisibleChanged call.
502
503 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
504
505         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
506         BalloonTipShown).
507
508 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
509
510         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
511         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
512         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
513         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
514         the handle.  Fix WindowState by using the internal variable until we are 
515         sure that we've been shown.
516         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
517         max or min.
518         [Fixes bug #81198]
519
520 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
521
522         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
523           (at least borders). Fixes #79386 on Linux (with a small difference
524           in behaviour: when trying to resize a caption-less window metacity
525           shows the sysmenu. Resizing is still possible though).
526         * XplatUIWin32.cs: When setting window styles send request an extra
527           WM_NCCALCSIZE when it's a form without title (due to no text and no
528           caption), since Win32 seems to calculate it wrong the first time we
529           get the message, though the second time things work as they should.
530         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
531           newly reparented window might show up unparented. Update
532           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
533           there's no title text. Fixes #79386.
534
535 2007-03-27  Mike Kestner  <mkestner@novell.com>
536
537         * ListBox.cs : don't perform invalidations if the handle hasn't been
538         created.  [Fixes #80753]
539
540 2007-03-27  Mike Kestner  <mkestner@novell.com>
541
542         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
543         [Fixes #80428]
544
545 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
546
547         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
548         needed to implement Balloon.
549
550 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
551
552         * ListViewItem.cs: In the constructors that take
553         an array of strings, don't use ListViewSubItemCollection.AddRange
554         method to add items, since we need to have a different behaviour (in
555         the constructors we add an item for each null string, opposed to
556         the behaviour of AddRange, which adds nothing).
557
558 2007-03-26  Andreia Gaita  <avidigal@novell.com>
559
560         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
561
562 2007-03-26  Jackson Harper  <jackson@ximian.com>
563
564         * TextControl.cs: Draw and measure line endings when in non
565         multiline mode.
566         - When searching the text, count the end of the last line as a
567         word boundary.
568
569 2007-03-26  Jackson Harper  <jackson@ximian.com>
570
571         * RichTextBox.cs: The selection_start and selection_end don't
572         really track the correct tags for the selection. So we'll manually
573         compute the correct tag here.
574
575 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
576
577         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
578           and Continuous styles. Fixes #79469.
579
580 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
581
582         * ToolStrip.cs: Implement Tooltips.
583         * ToolStripItem.cs: Create internal method for determining tooltip.
584
585 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
586
587         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
588
589 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
590
591         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
592         it prevents a problem thak keeps icon visible after application 
593         closes on win32.
594
595 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
596
597         * NotifyIcon.cs: Balloon properties and methods created.
598
599         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
600         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
601
602 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
603
604         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
605
606 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
607
608         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
609         parameter indicates which aspects were explicit/user-set.
610         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
611
612 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
613
614         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
615         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
616         SmallChange, and Value (2.0).
617         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
618
619 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
620
621         * ListView.cs: Always set item_control.Width in LayoutDetails
622         if View is Details. Setting it later in CalculateScrollBars
623         in a not-so-corner scenario (the sum of columns width is
624         not bigger than the ListView width when handle is created, and then
625         that sum gets bigger by increasing the width of the columns)
626         causes a very weird recursion path (which shouldn't be happening,
627         since header_control sets it in CalculateScrollBars too). This bug
628         appeared after Chris' fixes for handle created issues, so probably
629         it's related to some handle-creation time.
630
631 2007-03-23  Chris Toshok  <toshok@ximian.com>
632
633         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
634         case where there's an add row, just so we don't end up in a case
635         where it's not displayed (this happens when the row is partially
636         obscured).  Fixes bug #79574.
637
638 2007-03-23  Jackson Harper  <jackson@ximian.com>
639
640         * TextControl.cs:
641         * TextBoxBase.cs:
642         * RichTextBox.cs: Preserve line endings in the lines text buffer,
643         also added an enum that represents the line ending type. 
644
645 2007-03-23  Andreia Gaita  <avidigal@novell.com>
646
647         * NumericUpDown.cs: Fix logic so Text and Value properties are not
648         messed with in every method call, but only from DownButton, 
649         UpButton, UpdateEditText() and ValidateText. Fixes #80346
650
651 2007-03-23  Chris Toshok  <toshok@ximian.com>
652
653         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
654         format objects if the format spec is "".  Fixes bug #80889.
655
656 2007-03-22  Miguel de Icaza  <miguel@novell.com>
657
658         * ToolStripPanel.cs (Join): added stubs to build PDN3
659
660         * Control.cs (AutoScrollOffset): Add.
661
662         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
663         property, its only implemented for Win32, on X11 it defaults to
664         some hardcoded value.
665
666         * ToolStripItem.cs (AllowDrop): Add property
667
668 2007-03-22  Mike Kestner  <mkestner@novell.com>
669
670         * ListView.cs : in FullRowSelect Details mode, only enable box
671         selection if the user clicks over the "item" column outside of the
672         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
673
674 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
675
676         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
677           handle is not created yet.
678         * Form.cs: Select: Don't call CreateHandle if the handle is already
679           created, avoids a stack overflow on Windows when we are recreating
680           controls.
681         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
682           they are made visible, and override AfterTopMostControl to keep
683           them on top when other controls are brought to front.
684           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
685           or force_*scroll_visible is true (old implementation always shows
686           scrollbars when needed, no matter what auto_scroll was set to).
687         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
688           IsHandleCreated check.
689
690 2007-03-22  Andreia Gaita  <avidigal@novell.com>
691
692         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
693         row or col separator.
694         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
695
696 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
697
698         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
699
700 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
701
702         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
703         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
704         every time. Fixes #80410.
705
706 2007-03-22  Chris Toshok  <toshok@ximian.com>
707
708         * BindingSource.cs (AddNew): partially implement.
709
710         remove a couple of NotImplementedException's
711         to get bug #81148 closed.
712
713 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
714
715         [Fixes #80380]
716         
717         * Control.cs:
718         - UpdateCursor method added to update the screen cursor.
719         - GetAvailableCursor method added to return cursor for enabled tree,
720         it searches for cursor on control and it's parent's for enabled control.
721         - Call UpdateCursor method on setter of Cursor property.
722         - On setter of Enabled call UpdateCursor when it is false, we need to
723         change cursor to normal (or to this parent cursor) because cursor 
724         setting theres no effect to disabled controls.
725         - Some minor source changes to follow the coding style guidelines.
726
727         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
728         controls.
729
730 2007-03-22  Chris Toshok  <toshok@ximian.com>
731
732         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
733         generates.
734
735 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
736
737         * XplatUIX11.cs: Implement default locations for forms.
738         * Form.cs: Completely rework startup location for forms. Fixes #79964.
739         * Hwnd.cs: Add previous_child_startup_location (to track the current
740           startup location for any child forms of the current form) and
741           previous_main_startup_location (to track the startup location for
742           the current toplevel form).
743
744 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
745
746         * Control.cs: Don't trigger a layout if an implicit control is added
747         that isn't visible.  Also, don't notify the owner when an implicit control
748         is added.  (Owners shouldn't even know about their implicit controls.)
749
750 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
751
752         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
753         to save some re-layouts.
754
755 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
756
757         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
758         [Fixes #81203]
759
760 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
761
762         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
763         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
764
765 2007-03-21  Mike Kestner  <mkestner@novell.com>
766
767         * ListView.cs : disable selection update for non-left button clicks
768         with mods and over selected items.  [Fixes #80524]
769
770 2007-03-20  Jackson Harper  <jackson@ximian.com>
771
772         * TextControl.cs:
773         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
774         \r\r\n, \n.
775
776 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
777
778         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
779           very probably a more complicated calculation there. Update the
780           textbox' ForeColor and BackColor when the ComboBox' colors are
781           changed. Change the border change in LayoutComboBox to only affect
782           the textbox, not all the calculations there. Seems to fix most of
783           #79436.
784
785 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
786
787         * ComboBox.cs: Handle Home and End keys as well as all combinations of
788           modifiers + navigation keys as input keys, enables advanced text
789           selection in the combobox (like Shift+Left Arrow for instance).
790           ComboTextBox now overrides Focused and returns whatever
791           ComboBox.Focused returns, since it really should be focused
792           whenever the ComboBox is. Fixes #80795. Also make the border around
793           the text box one pixel bigger, as mentioned in #79436.
794
795 2007-03-20  Jackson Harper  <jackson@ximian.com>
796
797         * TreeView.cs: Don't offset the images, this was causing some
798         artifacts when expanding/collapsing with images that were the
799         exact height of the treenode.
800
801 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
802
803         * TrackBar.cs: Query the theme for the correct value when the mouse
804           moves and the thumb is pressed. 
805         * Theme.cs: Added TrackBarValueFromMousePosition
806         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
807           implementation was updating the trackbar value when drawing, now
808           the drawing methods only draw. Fixes #80900. Refactored the
809           calculations out to TrackBarValueFromMousePosition and
810           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
811           according to the mouse position whenever it wants to. Changed the
812           light coloured pen when drawing the thumb from ControlLight to
813           ControlLightLight, because the ControlLight is the same colour as
814           the background so the 3D effect is lost. 
815
816 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
817
818         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
819         defined. Fixes #80784.
820
821 2007-03-20  Marek Habersack  <mhabersack@novell.com>
822
823         * ContextMenuStrip.cs: align with the change introduced in
824         revision 74664.
825
826 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
827
828         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
829         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
830         in SetTopmost.
831
832 2007-03-19  Chris Toshok  <toshok@ximian.com>
833
834         * Control.cs (WmPaint): don't make use of the Handle property
835         after an event is emitted, as the user could have closed the
836         form/destroyed the control.  Store the Handle in a local variable
837         and make use of that.  Fixes bug #80768.
838
839 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
840
841         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
842         behavior in X11 environments.
843
844 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
845
846         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
847         because on setter of topmost we dont call SetTopmost when handle is not
848         created.
849
850 2007-03-20  Jackson Harper  <jackson@ximian.com>
851
852         * TextControl.cs: Need to use SelectionLength () not
853         selection_length, since that var is reset to -1.
854         - Draw the caret when we don't have focus.
855         * TextBox.cs: The selectall actually doesn't occur until the first
856         focus.
857         * TextBoxBase.cs: Need to update the caret position after a
858         selectall.
859         
860 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
861
862         * ListView.cs: Enable scrolling when using Tile view.
863
864 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
865
866         [Fixes #80902]
867
868         * XplatUIDriver.cs: Abstract SetOwner method created.
869
870         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
871         must be implemented and was masked as todo.
872
873         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
874         GWL_HWNDPARENT.
875
876         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
877         cheking for null owner to remove transient. The SetTopmost will be change
878         on a decond step.
879
880         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
881         SetTopmost. Now owned forms will work properly in win32 and X11.
882
883 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
884
885         * MdiWindowManager.cs: Update function name.
886         * Form.cs: After closing a form MdiParent is always null.
887         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
888           better what it should do: necessary book-keeping when the form is
889           closed, it should not close the form itself.
890
891 2007-03-19  Andreia Gaita  <avidigal@novell.com>
892
893         * ListViewItem.cs: Fix back and fore color. The subitems only
894         use their own colors if they are set, otherwise use the listview's
895         colors. Don't set default colors on constructor for subitem.
896         Fixes #79315.
897
898 2007-03-19  Mike Kestner  <mkestner@novell.com>
899
900         * ListView.cs : make box selection for Details views with 
901         FullRowSelect conform to MS behavior when clicking in the "item" 
902         column and clicking outside the defined columns.
903         [Fixes case 5-6 of #80374]
904
905 2007-03-19  Chris Toshok  <toshok@ximian.com>
906
907         * ScrollableControl.cs: create the controls from within the ctor,
908         but don't actually add them until our handle is created.  this
909         fixes a NRE possibility jpobst found (if you override OnLayout in
910         a subclass, it's called before your ctor).  Also, add a
911         IsHandleCreated guard to UpdateSizeGripVisibility as well.
912
913 2007-03-19  Jackson Harper  <jackson@ximian.com>
914
915         * TextBox.cs: Reduce the amount of invalidation we do.
916         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
917         some of them are true by default on MS.
918         - Add some functions to reduce the amount of invalidates we do.
919         * TextControl.cs: Less invalidation.
920
921 2007-03-19  Chris Toshok  <toshok@ximian.com>
922
923         [ Fixes #81773, and *seems* to fix #81553 as well ]
924
925         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
926         AccumulateDestroyedHandles.  We need to do it *after* we send
927         WM_DESTROY, as the user's code can access Control.Handle in
928         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
929         move the WM_DESTROY/zombie handling to before the call to
930         XDestroyWindow.  For some reason without this ordering
931         FormTest.RecreateHandle hangs.  This ordering is semantically
932         equivalent, however, as XDestroyWindow is async anyway.
933
934 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
935
936         * RichTextBox.cs: Reset backcolor_set after setting default.
937
938 2007-03-19  Chris Toshok  <toshok@ximian.com>
939
940         * ScrollableControl.cs: the scroll position should not effect the
941         canvas size.  commit patch from georgegiolfan@yahoo.com, which
942         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
943         
944 2007-03-19  Chris Toshok  <toshok@ximian.com>
945
946         * ScrollableControl.cs: clean this up a bit.  create the
947         scrollbars in the ctor and just show/hide them as needed.  Also,
948         make hscroll_visible/vscroll_visible internal to Recalculate, and
949         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
950         everywhere else.  This seems to fix the scrollbars appearing
951         beneath the content for me (i have *no* idea why that is,
952         however.)
953
954 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
955
956         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
957         some redundacy for stuff in Anchor and Dock that base will take care of.
958         [Fixes #80762]
959
960 2007-03-19  Mike Kestner  <mkestner@novell.com>
961
962         * ListView.cs : make box selection for Details views without 
963         FullRowSelect dependent on the text bounds, not item bounds.
964         * ListViewItem.cs : add an internal property to obtain the TextBounds
965         in Details view.  [Fixes case 1-4 of #80374]
966
967 2007-03-19  Andreia Gaita  <avidigal@novell.com>
968
969         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
970         we're < 2.0. #78448 && #80316
971
972 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
973
974         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
975         have the same style available as the previously selected one.  Also,
976         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
977
978 2007-03-19  Jackson Harper  <jackson@ximian.com>
979
980         * TextControl.cs: Add an alignment property that all new lines
981         will be given.
982         - Make sure to use the align shift when calculating the line's X
983         position.
984         * TextBox.cs: Set the alignment on the document as well as on all
985         the document lines.
986
987 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
988
989         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
990           throw if setting the parent of an mdichild that already has an
991           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
992           AssemblyProductAttribute in the assembly, use the type's namespace (as
993           MS seems to do). CreateControl: don't create the handle if the control
994           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
995           create handle if the control is not a form. Change FocusInternal to
996           virtual so that it can be overriden by Form.
997         * TextBox.cs: Update call to FocusInternal.
998         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
999           form is not a toplevel form when it's a mdi child, so update is_toplevel
1000           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
1001           hasn't been created. Show (IWin32Window): Don't allow this overload for
1002           toplevel windows. CenterToParent/CenterToScreen/Select: create the
1003           handle as MS does. SetVisibleCore: if called on a MdiChild and the
1004           parent isn't visible yet, save the visibility and restore it when the
1005           parent is made visible.
1006         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
1007           methods, since the visibility of the scrollbars can be changed from
1008           several places, not only from AutoScroll.
1009           [Fixes #81179]
1010
1011 2007-03-19  Jackson Harper  <jackson@ximian.com>
1012
1013         * RichTextBox.cs: Enable shortcuts by default.
1014         * TextBoxBase.cs: Add conditional shortcuts.  
1015
1016 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1017
1018         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
1019
1020 2007-03-19  Chris Toshok  <toshok@ximian.com>
1021
1022         [ Fixes bug #80604]
1023         
1024         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
1025         swallow the message we're waiting on, instead of delivering it, as
1026         this is only used for the WM_SHOWWINDOW raised from
1027         MapWindow/UnmapWindow, and the message needs to be generated
1028         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
1029         before doing the Map/Unmap.  Also make sure that the Hwnd is still
1030         alive after the message has been handled.
1031
1032         *before* the window is shown.
1033
1034         * Control.cs (CreateControl): guard a few more things inside the
1035         if (!is_created) block, as we might end up being called again -
1036         yay .net.
1037         (WmShowWindow): call CreateControl if we're showing the control.
1038
1039 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1040
1041         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
1042           controls without a handle if they have any parent with a handle. In
1043           Dispose add a check whether the handle is created or not before
1044           calling BeginInvoke, this removes the need of the extra disposing
1045           parameter (which was bogus anyway since it didn't prevent the
1046           invoke from happening, it only skipped the check for an existing
1047           handle, meaning that the invoke would call on an inexistent
1048           handle).
1049
1050 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
1051
1052         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
1053         appears in taskbar.
1054
1055 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
1056
1057         * MessageBox.cs:
1058         - Fixed a problem that dont show help button for messages with 3 buttons.
1059         - Refactory button size and position calculations, now dont use fixed 
1060         values, also fixed button sizes (#80043) and form's border space.
1061         - AddButton method created, now all other AddButton methods call this one.
1062         - Some other source code cosmetic changes.
1063
1064 2007-03-18  Jackson Harper  <jackson@ximian.com>
1065
1066         * RichTextBox.cs: Don't do this all fonts must match check if
1067         there is only one char selected.
1068
1069 2007-03-18  Jackson Harper  <jackson@ximian.com>
1070
1071         * TreeView.cs: ScrollWindow works properly now, so we don't need
1072         to screw around with the scroll area.  This fixes some artifacts
1073         when expanding and collapsing.
1074
1075 2007-03-18  Jackson Harper  <jackson@ximian.com>
1076
1077         * TextBoxBase.cs: Allow updating the selection position when the
1078         cursor is outside the textarea, but we have a capture.
1079         * TextControl.cs: A special case for when the cursor is outside
1080         the bounds of the TB.
1081         
1082 2007-03-18  Jackson Harper  <jackson@ximian.com>
1083
1084         * TextBoxBase.cs: Remove image pasting code for now.  There is no
1085         way to get an image on the clipboard right now anyways.
1086         * TextControl.cs:
1087         * RichTextBox.cs: Use the new RTF Picture class for pictures.
1088
1089 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
1090
1091         * MessageBox.cs:
1092         - Set window properties in constructor intead of on CreateParams.
1093         - Remove topmost from Window ExStyle.
1094         - Set ShowInTaskbar to false.
1095         - Set form border to FixedDialog.
1096         - Some cosmetic changes and remove unneeded comments.
1097         - It fixes itens 2,3 and 4 of bug #80043.
1098
1099 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
1100
1101         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
1102         none was explicitly set. Fixes part of bug #79949.
1103
1104 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
1105
1106         * ToolStripComboBox.cs: Add AutoComplete*.
1107
1108 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
1109
1110         * ToolStripComboBox.cs: Add FlatStyle.
1111
1112 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
1113
1114         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
1115         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
1116
1117 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1118
1119         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
1120           CheckBox.cs, RadioButton.cs, BindingSource.cs,
1121           DataGridColumnStyle.cs: Remove warnings.
1122
1123 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1124
1125         * Menu.cs: MergeMenu: Check menu argument for null before looping over
1126           it.
1127         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
1128           visibility of mdi child forms. FormSizeChangedHandler: update the
1129           maximized size if size has changed while maximized.
1130         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
1131           creating the handle.
1132         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
1133           avoid creating the handle if not created.
1134         * XplatUI.cs: Update debug output.
1135         * XplatUIStructs.cs: Added ToString's for a couple of structs.
1136
1137 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
1138
1139         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
1140         ProcessCmdKey().
1141         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
1142         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
1143         Implement keyboard shortcuts.
1144
1145 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
1146
1147         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
1148         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
1149         ColorDialog and all derived classes.
1150
1151 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
1152
1153         [ Fixes bug #79828 ]
1154
1155         * ToolBar.cs:
1156         - Rename ToolBarButtonInfor to ToolBarItem.
1157         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
1158         - Maintain an array of ToolBarItem, used instead of ToolBarButton
1159         collection to be able add same button more than one time on a toolbar.
1160         - Refactory all properties and methods to use ToolBarItem. 
1161
1162         * ToolBarButton.cs: 
1163         - Remove all propeties and methods that is now in ToolBarItem.
1164         - Rectangle propery now gets the rectangle from first ToolBarItem to
1165         mimic win32 behavior.
1166         - Size calculation and layout methods also removed.
1167
1168         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
1169         ToolBarItem instead of ToolBarButton to right drawing buttons when
1170         same button/separator was added more than one time to ToolBar.
1171
1172         * ThemeNice.cs: Same as above. 
1173
1174 2007-03-15  Andreia Gaita  <avidigal@novell.com>
1175
1176         * XplatUIX11.cs: Fire extra MouseMove events right after
1177         MouseDown and MouseUp, emulating win32's <censored> behaviour
1178         for apps that rely on it.
1179
1180 2007-03-15  Jackson Harper  <jackson@ximian.com>
1181
1182         * TextControl.cs:
1183         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
1184         it is drawn on the controls client window and there is no NC
1185         area.
1186         - Set the background color to gray on 2.0 when we are readonly.
1187
1188 2007-03-15  Chris Toshok  <toshok@ximian.com>
1189
1190         [ Fixes bug #81144 ]
1191         
1192         * XplatUIX11.cs: implement VirtualScreen independently of
1193         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
1194         property.
1195
1196 2007-03-15  Chris Toshok  <toshok@ximian.com>
1197
1198         * Hwnd.cs: add an internal field for the cached_window_state.
1199
1200         * XplatUIX11.cs: cache the window state, invalidating the cache
1201         (and thus re-querying the X server) only when we see an update to
1202         the _NET_WM_STATE property.
1203
1204 2007-03-15  Chris Toshok  <toshok@ximian.com>
1205
1206         * BindingSource.cs: get a lot of the unit tests working.
1207
1208 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
1209
1210         * Control.cs: Modify UpdateStyles to store distances when bounds >=
1211         0 instead of just bounds > 0.  [Fixes bug #80912]
1212
1213 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
1214
1215         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
1216         and methods.
1217
1218 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
1219         
1220         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
1221         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
1222         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
1223         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
1224
1225 2007-03-15  Chris Toshok  <toshok@ximian.com>
1226
1227         [ Fixes #81101 ]
1228         
1229         * Control.cs: add Ivan's fix for 81101, with a slight modification
1230         - you can set control.Target to null.
1231
1232 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
1233
1234         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
1235         HideDropDown, use Hide instead to prevent an NRE.
1236         [Fixes bug #81147]
1237
1238 2007-03-14  Jackson Harper  <jackson@ximian.com>
1239
1240         * TextBoxBase.cs: Mess with the creation stuff a little. We need
1241         to calculate the document before the handle is created, in some
1242         cases. (Actually just one case).
1243
1244 2007-03-14  Jackson Harper  <jackson@ximian.com>
1245
1246         * TextBoxBase.cs: Need to display the caret after letting the base
1247         wndproc handle the focus methods, because the caret display
1248         methods check the focus state.
1249         - Try to display the caret after updating it's position with SelectWord.
1250         - Don't need to do an immediate update on this recalc, since there
1251         will be an invalidate anyways.
1252
1253 2007-03-14  Jackson Harper  <jackson@ximian.com>
1254
1255         * TreeView.cs: Some workarounds so that we can match event order a
1256         little better.
1257
1258 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
1259
1260         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
1261         #80803. Avoid NullReferenceException when Control does not have
1262         parent. Fixed different blinkstyle issues. Only subscribe to Tick
1263         event a single time. Only draw error icon when control is created and
1264         visible. Fixes failing unit tests.
1265
1266 2007-03-14  Andreia Gaita  <avidigal@novell.com>
1267
1268         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
1269         Selecting events. Fire Leave and Enter events when changing tabs.
1270
1271 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
1272
1273         * TreeView.cs: Add TreeViewNodeSorter.
1274         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
1275
1276 2007-03-14  Chris Toshok  <toshok@ximian.com>
1277
1278         * Form.cs: go ahead and remove the RecreateHandles that jpobst
1279         removed earlier and I had him add back it.  It turns out metacity
1280         *does* in fact handle the MOTIF_WM_HINTS property changing, it
1281         just doesn't redraw the window titlebar until you resize the
1282         window.  This also means we aren't recreating the entire window
1283         hierarchy on X when you change this property.  And it looks better
1284         on windows, too.
1285
1286 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1287
1288         * ListViewItem.cs:
1289         * ListView.cs: Collecting selection information
1290         is now done in SelectedIndexCollection rather than in
1291         SelectedListViewItemCollection. This is done so we can
1292         have the selection information code in one single place
1293         (virtual mode selection information entirely depends on
1294         SelectedIndexCollection).
1295
1296 2007-03-13  Miguel de Icaza  <miguel@novell.com>
1297
1298         * ErrorProvider.cs: Add stubs for ISupportInitialize
1299
1300 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1301
1302         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
1303         in the right order with the right values, from the Checked property, 
1304         just as MS does (instead of triggering them from ListView).
1305
1306         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
1307
1308 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1309
1310         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
1311         the correct handler in OnItemCheck method (ItemCheckEventHandler 
1312         instead of EventHandler). This used to throw an InvalidCastException.
1313
1314 2007-03-13  Jackson Harper  <jackson@ximian.com>
1315
1316         * TextBoxBase.cs: Calculate the document before the handle is
1317         created, so there isn't an extra invalidate called.
1318
1319 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
1320
1321         * Form.cs: Don't set owner in ShowDialog until we are sure
1322         that we aren't going to throw an exception.  [Fixes bug #80773]
1323
1324 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
1325
1326         * TreeView.cs: Make it compile.
1327
1328 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1329
1330         * Control.cs: Another place we don't call SizeFromClientSize.
1331         * Form.cs: Another place we don't call SizeFromClientSize.
1332         [Fixes bug #81125]
1333
1334 2007-03-12  Jackson Harper  <jackson@ximian.com>
1335
1336         * TreeView.cs: Basically emulating some strangness here with
1337         exanding nodes and setting node positions when windows aren't
1338         created.
1339         - Also attempting to walk the node tree less than previously, and
1340         just use visible order calculations for determining offsets.
1341         - oops made scrolling backwards.
1342         * TreeNode.cs: We need to start nodes with a zero visible order,
1343         because the order calcs are based on the first nodes order.
1344
1345 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1346
1347         * Form.cs: Don't exit the program if RecreateHandle is called on
1348         the main form.
1349
1350 2007-03-12  Chris Toshok  <toshok@ximian.com>
1351
1352         * XEventQueue.cs: remove the use of PostQuitState.
1353
1354         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
1355         WM_QUIT message in GetMessage, return false (and if we're in the
1356         nested WaitForHwndMessage, repost the WM_QUIT message).
1357
1358 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1359
1360         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
1361         or the MaximizeBox properties.  [Part of bug #80640]
1362
1363 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
1364
1365         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
1366         no links.
1367
1368 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1369
1370         * ToolStripItem.cs: Fix some tests I broke by checking Visible
1371         instead of visible.
1372
1373 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
1374
1375         * FileDialog.cs: Use text of File name combobox to determine what
1376         files the user selected. Added tokenizer to parse the file names.
1377         Fixes bug #81123.
1378
1379 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1380
1381         * Control.cs: We can't call SizeFromClientSize in the constructor,
1382         but we still need to do the same work, so make an internal version.
1383         [Fixes bug #80621]
1384
1385 2007-03-12  Jackson Harper  <jackson@ximian.com>
1386
1387         * TreeView.cs:
1388         * TreeNode.cs:
1389         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
1390         IsExpanded.
1391
1392 2007-03-12  Jackson Harper  <jackson@ximian.com>
1393
1394         * TextBoxBase.cs: Now that the handles are being created a little
1395         later, we need to make sure that the document is recalculated when
1396         the handle is created.
1397
1398 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
1399
1400         * Theme.cs: GetLinkFont abstract method added.
1401         
1402         * LinkLabel.cs: 
1403         - Remove CalcTrimRectangle, no longer needed.
1404         - Factor also remove, position issues must be fixed in libgdiplus.
1405         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
1406         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
1407         care about font used to draw links.
1408         - Set TabStop to true when control is "Selectable", control is selectable
1409         when have one or more links. Fixes #80501 (test case is also added).
1410         - Set the LinkArea values after links change, LinkArea values must be
1411         based in first link position and size, a test case was created.
1412         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
1413         the attribute must be true LinkArea.Length > 0. The same was applied to
1414         TabStop.
1415         
1416         * ThemeWin32Classic.cs: 
1417         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
1418         in draw method.
1419         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
1420         color change.
1421         - Draw focus rectangle for every parts focused, including parts that 
1422         is on another line, its because regions returns various rectangles
1423         and not only one. Needed to mimic W32 look.
1424         - Uses Graphics.Clip to delimite region painted, it mean that now 
1425         complete text is passed to DrawString, with this we solve layout
1426         issues without create another text renderer.
1427         - Uses Region.Intersect to fix some flickers problems, now only needed
1428         parts will redrawed.
1429         - This changes fixes #79614 and some other unreported issues, on Linux 
1430         some layout problems still remain, the problem is under 
1431         MeasureCharacterRanges but it is an libgdiplus bug.
1432
1433 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
1434
1435         * TextBox.cs: Set for foreground color.
1436         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
1437         this is already done in Control.
1438
1439 2007-03-10  Jackson Harper  <jackson@ximian.com>
1440
1441         * TextBox.cs: Set the background color, but reset the
1442         backcolor_set flag which is just for the user setting the
1443         background color.
1444
1445 2007-03-09  Chris Toshok  <toshok@ximian.com>
1446
1447         * Control.cs: really remove the call to XplatUI.SetVisible from
1448         CreateHandle(), like I said I did when I merged the branch.
1449
1450         * BindingSource.cs: implement some more of this stuff.
1451
1452 2007-03-09  Jackson Harper  <jackson@ximian.com>
1453
1454         * TextBox.cs: Don't explicitly set our background colors.
1455         * TextControl.cs:
1456         * TextBoxBase.cs: Draw readonly text.
1457         - Need to invalidate when backcolor or readonly are changed.
1458         
1459 2007-03-09  Jackson Harper  <jackson@ximian.com>
1460
1461         * TextBoxBase.cs: Don't set the forecolor until the handle is
1462         created.
1463         - Do not raise OnPaint, and removed some old debug code.
1464
1465 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
1466
1467         * ScrollableControl.cs: Fix mouse wheel scrolling.
1468
1469 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
1470
1471         * Control.cs: Wire up MouseDoubleClick event.
1472
1473 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
1474
1475         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
1476         top or bottom.
1477         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
1478         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
1479         item is added.  This logic was moved to ToolStrip.OnItemAdded.
1480         [Fixes bug #81090]
1481
1482 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1483
1484         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
1485
1486 2007-03-08  Jackson Harper  <jackson@ximian.com>
1487
1488         * TreeView.cs: Show the correct image for selected node (this used
1489         to work, not sure how the code got deleted). Also implemented 2.0 feature
1490         SelectedImageKey.
1491
1492 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1493
1494         * ListView.cs:
1495         * ListViewItem.cs: Cache index in items when retrieving them
1496         in VirtualMode.
1497
1498 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1499
1500         * ToolStripItem.cs: Don't return the explicit_size if we are using 
1501         AutoSize.  Fixes invalidation issue when user has explicitly set a
1502         size and has AutoSize = true.
1503
1504 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1505
1506         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
1507
1508 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1509
1510         * DataGridView.cs: Remove event handler from DataView when a
1511         DataTable is used as DataSource.
1512
1513 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1514
1515         * Control.cs: Create internal setter for client_size to allow it to be
1516         set without triggering resizing code.
1517         * Form.cs: Calculate client_size in constructor, only change client_size
1518         in FormBorderStyle property if Handle has been created.
1519         [Fixes #80574, #80791]
1520
1521 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
1522
1523         * SystemInformation.cs: Add TerminalServerSession.
1524
1525 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1526
1527         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
1528         TreeView code.
1529
1530 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1531
1532         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
1533         Handle before we were supposed to.  Now checks ActivateOnShow property
1534         in Control.
1535         * Control.cs: Add internal ActivateOnShow property.
1536         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
1537         for ActivateOnShow.
1538         * Hwnd.cs Remove no longer needed no_activate field.
1539
1540 2007-03-07  Jackson Harper  <jackson@ximian.com>
1541
1542         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
1543         2.0 properties
1544         * DrawTreeNodeEventHandler.cs: Add
1545         * DrawTreeNodeEventArgs.cs: Correct default value.
1546         
1547 2007-03-07  Chris Toshok  <toshok@ximian.com>
1548
1549         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
1550         to be called before NativeWindow.WndProc.  Put the HwndCreating
1551         magic there to hook up our Hwnd's to handles.
1552
1553 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
1554
1555         * DataGridView.cs: Comment out debug code.
1556
1557 2007-03-07  Chris Toshok  <toshok@ximian.com>
1558
1559         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
1560         to make the rest of the world happy]
1561
1562         * Control.cs (CreateHandle): there's no need to call
1563         XplatUI.SetVisible here, it's effectively done by
1564         XplatUI.CreateWindow on X now, and always was on windows.
1565
1566         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
1567         shortcircuit out of the loop if we have a message loop running on
1568         this thread.
1569
1570         [Changelog from merge]
1571
1572         2007-03-05  Chris Toshok  <toshok@ximian.com>
1573
1574                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
1575                 causes handle creation.
1576
1577         2007-02-28  Chris Toshok  <toshok@ximian.com>
1578
1579                 * ApplicationContext.cs: Add a flag to make sure we only raise the
1580                 ThreadExit event once (ExitThreadCore can be indirectly called
1581                 from a few places.)  I don't like the additional flag, but it
1582                 makes the event ordering/count correct.
1583
1584                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
1585                 without locking the collection.  An enumerator doesn't give us any
1586                 protection from modification anyway.  Lock the thread hash and
1587                 replace the complicated enumerator loop with a foreach.
1588                 (Application.CloseForms): make internal so it can be called from
1589                 ApplicationContext.  This should probably be moved to MWFThread.
1590                 (Application.ExitThread): don't call MWFThread.Current.Exit()
1591                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
1592                 when the runloop exits (in response to WM_QUIT.)
1593                 (Application.RunLoop): add a comment (and check) for
1594                 context.MainForm being null after setting context.MainForm.Visible
1595                 = true.  This is because you're perfectly free to dispose of a
1596                 form in VisibilityChanged.  Chalk this up to another case where we
1597                 need to synchronously generate WM_ACTIVATE from Control.Show.
1598                 Also, add handling for WM_QUIT here so we'll exit the loop.
1599                 
1600                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
1601                 fact that we don't wait if we're only unmapping the whole_window
1602                 makes me a bit nervous, but it doesn't seem to cause any problems
1603                 yet.
1604
1605                 also, add a comment about the stupid, broken and wrong resetting
1606                 of PostQuitState to false in GetMessage().
1607
1608                 In PostQuitMessage, we need to add a WM_QUIT message to the
1609                 thread's queue.  We use the FosterParent to get the right
1610                 handle/hwnd/queue.
1611
1612                 Lastly, in SetVisible, we need to unmap both windows, since the
1613                 waiting only happens when we're unmapping the client window.  So
1614                 now, the *only* time we unmap just the whole_window is in the hack
1615                 for resizing a control to 0,0.
1616                 
1617         2007-02-21  Chris Toshok  <toshok@ximian.com>
1618
1619                 * Application.cs (CloseForms): rewrite this so that we don't
1620                 modify the list while we're traversing it.
1621
1622         2007-02-20  Chris Toshok  <toshok@ximian.com>
1623
1624                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
1625                 of OnHandleCreated.
1626                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
1627                 handle is created.  otherwise we'll create it here.
1628                 (VerticalScrollEvent): same here.
1629
1630                 * Application.cs (CloseForms): call Form.Dispose, don't post
1631                 WM_CLOSE_INTERNAL.
1632
1633                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
1634                 here. Application should Dispose() of the Form's.
1635
1636                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
1637                 WM_DESTROY as well.
1638                 (MapWindow,UnmapWindow): only actually do the waiting for
1639                 SHOWWINDOW if the control we're dealing with is a Form.
1640                 (CreateWindow): if the control isn't a form, SendMessage
1641                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
1642
1643                 * Control.cs (SetVisibleCore): always use is_visible here, not
1644                 value.  If we use value, we can end up re-setting something
1645                 visible if, for instance, you do Control.Hide() in a delegate
1646                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
1647
1648         2007-02-20  Chris Toshok  <toshok@ximian.com>
1649
1650                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
1651                 the message we need.  PeekMessage returning false should not be a
1652                 condition under which we exit the loop.
1653
1654         2007-02-15  Chris Toshok  <toshok@ximian.com>
1655
1656                 * Control.cs (Refresh): only refresh if we've got a handle and are
1657                 visible.
1658                 (CreateAccessibilityInstance): CreateControl() here.
1659                 (UpdateChildrenZOrder): complicate the code loop even more by
1660                 taking into account controls that haven't had their handle
1661                 created, and those that aren't visible.  But on the flip side,
1662                 simplify the code by splitting it into two loops.  one which
1663                 builds up the list of child controls we're interested in, and the
1664                 other that sets the z order of those children.
1665
1666         2007-02-14  Chris Toshok  <toshok@ximian.com>
1667
1668                 * Control.cs: Control.AccessibilityObject causes the control to be
1669                 created, not just the handle.
1670
1671         2007-02-14  Chris Toshok  <toshok@ximian.com>
1672
1673                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
1674                 problem on X where a window might have its handle created (and be
1675                 visible) while the window is unmapped.  calling XConfigureWindow
1676                 on an unmapped window is bad, and generates X errors.
1677
1678         2007-02-13  Chris Toshok  <toshok@ximian.com>
1679
1680                 * Control.cs (CreateHandle): don't loop over our children setting
1681                 their parent here.  do it when in WndProc when we're shown.
1682                 (UpdateChildrenZOrder): make this internal so we can call it from
1683                 ScrollableControl.
1684                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
1685                 creating its handle.  Also, remove the calls to PerformLayout from
1686                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
1687                 OnVisibleChanged only seems to be called directly here for the
1688                 toplevel control.  It's propagated down the window hierarchy by
1689                 calls to child.OnParentVisibleChanged.
1690                 (OnVisibleChanged): don't do layout here - it's done (oddly
1691                 enough, according to a glance at stack traces on ms.net..) in
1692                 ScrollableControl.
1693                 
1694                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
1695                 z order of our children before calling PerformLayout.
1696
1697         2007-02-12  Chris Toshok  <toshok@ximian.com>
1698
1699                 [big change, fixes #80020]
1700                 
1701                 * AccessibleObject.cs: we need to make owner internal again to fix
1702                 some of ControlAccessibleObject.
1703
1704                 * Control.cs: lots of changes here.  add support for WM_CREATE,
1705                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
1706                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
1707                 we create child controls.  leave the MonoTODO's for the
1708                 accessibility calls, but fix the exceptions so the tests pass.
1709
1710                 Add the InvalidOperationExceptions to Invoke methods, and remove a
1711                 couple of InvokeInternal methods we aren't using.
1712                 
1713                 Also, add a couple of CreateHandle calls in places where we know
1714                 the handles are being created but our code doesn't reference
1715                 .Handle.
1716
1717                 Make SetVisibleCore call OnVisibleChange if the handle isn't
1718                 created.  If the handle is created, we rely on XplatUI.SetVisible
1719                 generating the event synchronously.
1720                 
1721                 Lastly, make sure we don't use this.Handle inside CreateHandle,
1722                 because we can call back into client (and that code can dispose of
1723                 the control).
1724
1725                 * XplatUIStructs.cs: misc/cleanup.
1726
1727                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
1728                 although we don't populate the wParam properly.
1729                 (CreateWindow): generate WM_CREATE.
1730                 (MapWindow,UnmapWindow): make these calls synchronous, at great
1731                 performance expense (particularly in the unmap case), to match
1732                 win32 behavior.
1733
1734                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
1735                 to call it.
1736                 (set_MdiParent): don't recreate the handle unless it's been
1737                 created already.
1738                 
1739                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
1740                 it's created.
1741
1742                 * NativeWindow.cs: this is probably the weirdest part of the
1743                 patch.  We need a way to link up the window being created to the
1744                 WM_CREATE message.  Since we can only be creating one window at a
1745                 time on a given thread, we keep track of a per-thread reference so
1746                 we can dispatch it properly.  We also need to keep track of the
1747                 Hwnd currently being created so that the win32 backend doesn't
1748                 have problems.
1749                 
1750                 * XplatUIWin32.cs: a similar change to the one we made in
1751                 NativeWindow.cs.
1752
1753 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1754
1755         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
1756         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
1757         to draw the menu shortcut string.
1758
1759 2007-03-07  Jackson Harper  <jackson@ximian.com>
1760
1761         * TreeNode.cs: Add the 2.0 collapse method.
1762
1763 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1764
1765         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
1766
1767 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1768
1769         * DataGridView.cs: Change DataSource will clear column and row
1770         lists. Call Invalidate() to reflect DataSource change.
1771
1772 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1773
1774         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
1775         and a new row is added to it.
1776
1777 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1778
1779         * DataGridView.cs: Add columns when DataSource is en empty list but
1780         is a System.Data.DataView (from a System.Data.DataTable).
1781
1782 2007-03-06  Andreia Gaita  <avidigal@novell.com>
1783
1784         * Label.cs: Implement AutoEllipsis (2.0)
1785
1786 2007-03-06  Jackson Harper  <jackson@ximian.com>
1787
1788         * TreeView.cs: Implement 2.0 TopNode setter property.
1789         - Use a local var instead of the skipped_nodes field for computing
1790         how many nodes to skip.  Otherwise we won't scroll because the
1791         valuechanged handler checks if skipped_nodes is equal to the new
1792         value.
1793         - Implement 2.0 Sort method.
1794         - Add useless 2.0 DoubleBuffer property
1795         - Implement 2.0 LineColors property.  Lets you change the color of
1796         the lines in the tree. Terribly useful for creating non cohesive
1797         desktops.
1798         - Implement 2.0 image key feature.
1799
1800 2007-03-06  Jackson Harper  <jackson@ximian.com>
1801
1802         * TreeView.cs: We can't get the bounds of the nodes before raising
1803         the AfterSelect event, because that event could change the node's
1804         bounds (scrolling, font change, etc).
1805
1806 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1807
1808         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
1809         * Form.cs: Don't recreate handle when creating FormWindowManager, just
1810           update window styles. In CreateParams us VisibleInternal instead of
1811           VIsible to get the actual visible flag set for this form.
1812         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
1813           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
1814           handle the case when the form is already maximized, in which case
1815           it should be restored. Fixes #81043.
1816
1817 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1818
1819         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
1820
1821 2007-03-05  Jackson Harper  <jackson@ximian.com>
1822
1823         * TreeViewHitTestInfo.cs: implement.
1824
1825 2007-03-05  Jackson Harper  <jackson@ximian.com>
1826
1827         * InternalWindowManager.cs: class status fix.
1828
1829 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1830
1831         * InternalWindowManager.cs: All windows that have a parent
1832         are confined to their parent when they're being moved.
1833         Fixes #80822.
1834
1835 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
1836
1837         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
1838         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
1839
1840 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1841
1842         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
1843           buttons invisible before deciding which ones should be visible
1844           (fixes minimize/maximize buttons showing up in toolwindows). Remove
1845           an unused variable.
1846         * InternalWindowManager.cs: Remove warning.
1847
1848 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1849
1850         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
1851         to throw an InvalidOperationException is virtual mode is being used.
1852
1853 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1854
1855         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
1856         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
1857         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
1858         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1859         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
1860         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
1861
1862 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1863
1864         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
1865           driver.KeyboardDelay from XplatUI.KeyboardDelay 
1866         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
1867           (patch by Sergey Volk)
1868
1869 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1870
1871         * ToolWindowManager.cs: Added, contains logic for
1872           tool windows.
1873         * CreateParams.cs: Add a few helper methods and an
1874           internal variable to know which control the CreateParams belongs
1875           to.
1876         * Control.cs: Call Form.ChangingParent when the
1877           parent is about to be changed.
1878         * XplatUIX11.cs: DeriveStyles (): Set
1879           caption_height for all windows that have captions and are children.
1880           Update to use ToolWindowManager instead of InternalWindowManager
1881           for ToolWindows.
1882         * XplatUIWin32.cs: Set fake window styles for all
1883           windows that have window managers.
1884         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
1885           now duplicated for mdi windows when they are
1886           maximized, first for the buttons the window itself has, then for
1887           the buttons that appear in the menu bar. Makes things a little
1888           easier). Updated UpdateWindowDecorations, SetWindowState and the
1889           mouse eventhandlers accordingly.
1890         * Form.cs: Add ChangingParent (), contains the
1891           logic of what should happen when the parent changes. In MdiParent
1892           don't set things that ChangingParent () is doing. When handling
1893           WM_CLOSE, we can close the form if there are any other modal forms
1894           and the current form is a descendent of the modal form.
1895         * InternalWindowManager.cs: A lot of refactoring,
1896           the title buttons are now extracted to a separate container class
1897           that takes care of all button code (clicks, tooltips, etc). Moved
1898           Iconic|Maximized|Normal Bounds properties to this class from
1899           MdiWindowManager, so that the window state logic can succeed for
1900           other than mdi wm's. Implemented general window state change logic.
1901           Moved CreateButtons to ThemeWin32Classic, since the theme might
1902           override which buttons are available when as well as the exact
1903           location.
1904         * FormWindowManager.cs: Added, contains logic for
1905           normal forms.
1906         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
1907           which buttons go where (and if they are at all visible). 
1908           Removed special handling of maximized windows, since they aren't special. 
1909           In DrawManagedWindowDecorations don't try to draw the text if it is
1910           empty.
1911         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
1912           use whatever the wm gives us.
1913
1914 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1915
1916         * ButtonBase.cs: Add 2.0 properties.
1917         * Button.cs: Override Draw for 2.0.
1918         * Control.cs: Add Entered and Selected properties.
1919         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
1920         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
1921         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
1922         buttons.
1923         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
1924
1925 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1926
1927         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
1928
1929 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1930
1931         * XplatUIWin32.cs: Register a new class with Windows each time we get
1932         a new ClassStyle.  [Fixes bugs #79432, #80817]
1933         * Controls.cs: Set the correct ClassStyle in CreateParams.
1934         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
1935
1936 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
1937
1938         * ListView.cs: Add fireEvent argument to ReorderColumn since the
1939         ColumnReordered event must not be signaled when modifying DisplayIndex
1940         of a ColumnHeader. Added internal ReorderColumns method which takes
1941         care of drawing, and updating the internal DisplayIndex of the
1942         ColumnHeader. Added AddColumn method which is invoked from
1943         ColumnHeaderCollection when adding or inserting columns, and which
1944         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
1945         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
1946         Recalculated dispay indices after removing a ColumnHeader.
1947         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
1948         match MS. Allows last display index to be returned after ListView
1949         is disposed. Update actual location of ColumnHeader when DisplayIndex
1950         is modified.
1951
1952 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
1953
1954         * LinkLabel.cs: Improve CalcTrimRectangle.
1955         
1956         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
1957
1958 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1959
1960         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
1961         get rectangle as a result value.
1962
1963 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1964
1965         * LinkLabel.cs: Theres some diferences between rectangle return from 
1966         MeasureCharacterRanges and the area used for DrawString to fix this 
1967         CalcMeasurementFactor method was created, it calcules the diferences
1968         to be use later to adjust rectangle in draw operations. Fixes #80473.
1969         
1970         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
1971         to adjust draw rectangle.
1972
1973 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1974
1975         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
1976         text and some other changes to reduce and optimize source code.
1977
1978 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1979
1980         * RadioButton.cs: Implement 2.0 event.
1981         * RelatedImageListAttribute.cs: Implement new class.
1982
1983 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1984
1985         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
1986
1987 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1988
1989         * CheckBox.cs: Implement 2.0 functionality.
1990
1991 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1992
1993         * ListView.cs: Refactor Add and AddRange methods of
1994         ListViewItemCollection, to not update the ListView
1995         everytime an item is added in AddRange. Also move the update
1996         code to a new CollectionChanged method, and call it
1997         from other methods that need it as well (this should also fix some
1998         bugs when Sorting is used).
1999
2000 2007-02-27  Jackson Harper  <jackson@ximian.com>
2001
2002         * TextControl.cs: Try to never let the caret stay in a non-text
2003         tag.
2004         * TextBoxBase.cs: Update the caret.
2005
2006 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
2007
2008         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
2009         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
2010         delete POINT structure, duplicate of one in XplatUIStructs.
2011         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
2012
2013 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
2014
2015         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
2016         edit box since otherwise the Label would immediately be set (even if
2017         the user did not modify the label). In OnKeyDown set Handled to true
2018         if Return or Escape was pressed. In ColumnHeaderCollection unlink
2019         columns that are to be removed. In ListViewItemCollection unlink items
2020         that are to be removed.
2021
2022 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
2023
2024         * TextRenderer.cs: If we set a GDI clip region, we need to clear
2025         it when we are done.  [Fixes bug #80949]
2026
2027 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2028
2029         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
2030
2031 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2032
2033         * ListView.cs: I forgot to commit the changes for ListView 
2034         in my previous patch.
2035
2036 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2037
2038         * Clipboard.cs: Partially implement an overload of SetDataObject.
2039         * Form.cs: Implement ShowWithoutActivation.
2040         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
2041
2042 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2043
2044         This is a first set of changes to make the Virtual mode works,
2045         by avoiding the retrieval of ListViewItem instances until
2046         draw time.
2047
2048         * ListView.cs: Store item position in the ListView instead of the
2049         ListViewItem, this way we don't request the Bounds property of
2050         ListViewItem inside the ListView calculations, as well as cache the item
2051         size in item_size field. Store indexes instead of ListViewItem
2052         instances in the matrix used by icon view. Add a ItemMatrixLocation
2053         struct to hold the row and col info of the matrix info.
2054
2055         * ListViewItem.cs: Don't store the location anymore, and only cache
2056         the rectangles for GetBounds. Use the ListView.GetItemLocation
2057         method to retrieve the actual location.
2058
2059 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2060
2061         * TextRenderer.cs: Add clipping support, thanks to George.
2062         [Fixes bug #80949]
2063
2064 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2065
2066         * ListViewItem.cs: Cancel label edit when item is removed from 
2067         ListView.
2068         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
2069         event before the edit textbox is displayed.  Added CancelEdit method
2070         which is used end to editing while ignoring the value set by the
2071         user. In EndEdit, set focus to ListView to avoid losing focus to
2072         other controls. In ListViewItemCollection.Clear, cancel editing of
2073         any of the items.  In Remove, cancel editing of item being removed.
2074         Avoid udplicate code by modifing RemoveAt to invoke Remove.
2075
2076 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2077
2078         * FileDialog.cs: Update FSEntry when move is successful. Fixes
2079         bug #80948.  
2080
2081 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2082
2083         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
2084         compatible with non X11 systems. Fixes #80901.
2085
2086 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
2087
2088         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
2089         whether the item should be unselected and reselect. We do no want this
2090         when we're starting to edit the label. Do not fire the 
2091         SelectedIndexChanged event from ListView when its already been fired
2092         by modifying ListViewItem.Selected. Fixes bug #80943.
2093
2094 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2095
2096         * TextRenderer.cs: Previos commit logic was backwards.
2097
2098 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
2099
2100         * TextRenderer.cs: Don't add padding on MeasureText if we were
2101         sent the NoPadding flag.
2102
2103 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2104
2105         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
2106         after DrawButton. To prevent image overlaps button borders SetClip and 
2107         ResetClip added before and after draw image. Fixes #79129.
2108
2109 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
2110
2111         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
2112         window size, it fix problem when you run under win32 that theres
2113         Size diferent than ClientSize. Also fix controls size and positions
2114         to mimic Win32. Fixes #80837.
2115
2116 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
2117
2118         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
2119         menu area to fix some problems for non X11 systems. Fixes #80613.
2120
2121 2007-02-22  Jackson Harper  <jackson@ximian.com>
2122
2123         * TreeNode.cs: When a node is expanded, set its is_expanded flag
2124         even if it doesn't have any children.
2125
2126 2007-02-22  Jackson Harper  <jackson@ximian.com>
2127
2128         * TreeView.cs: Calculate the top node 'on the fly', this
2129         eliminates issues where you need to click on the tree before
2130         scrolling it to get the top node computed correctly.
2131         * TreeNodeCollection.cs: We don't need to mess with the top node
2132         anymore.
2133
2134 2007-02-22  Jackson Harper  <jackson@ximian.com>
2135
2136         * DataGridViewRow.cs: Fix typo so height can actually be set.
2137         Patch by Peter Grimm.
2138
2139 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2140
2141         * FileDialog.cs: Fixed support for renaming files and directories.
2142         * ListView.cs: Do not lose focus when edit is canceled. Process
2143         Escape as regular key (to prevent closing of dialogs).
2144
2145 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2146
2147         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
2148         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
2149
2150 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
2151
2152         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
2153         did not modify label.
2154         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
2155         modified the text. Reset Label when user presses Escape in edit mode.
2156         Move focus to ListView after having cancelled or finished editing the
2157         label.
2158
2159 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
2160
2161         * ComboBox.cs: Removed unnecessary initializations. Marked items field
2162         private. Clear textbox when Text is set to null and SelectedIndex is
2163         already -1.
2164         * FileDialog.cs: Removed unnecessary initializations. Removed 
2165         workarounds for ComboBox bugs that are now fixed. Modified
2166         DefaultExt, InitialDirectory and Title property to change null to
2167         zero-length string in getters. Avoid directly accessing fields.
2168
2169 2007-02-20  Jackson Harper  <jackson@ximian.com>
2170
2171         * TextControl.cs: Remove RecalAlignments call, that was some
2172         debugging leftovers.
2173         - Don't use the line indent when we shouldn't.
2174         * RichTextBox.cs: Add support for paragraph left indents.
2175
2176 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2177
2178         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
2179         Seems like the class status pages doesn't catch params differences.
2180
2181 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
2182
2183         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
2184
2185 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
2186
2187         * ComboBox.cs: Setting Text should have no effect if item text of
2188         selected item exactly matches value. First lookup text using
2189         case-sensitive comparison, and fallback to case-insensitive comparison.
2190         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
2191         allow startIndex to be last index. Changed ArgumentOutOfRangeException
2192         paramname to match MS. Restart from first item if string is not found
2193         after startIndex. Fixed paramname of ArgumentNullException that is
2194         thrown for null value in ObjectCollection.Contains.
2195
2196 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
2197
2198         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
2199
2200 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2201
2202         * ListControl.cs: In SelectedValue use value.Equals to compare for
2203         equality instead of ==, otherwise it will fail for strings.
2204         Fixes #80794.
2205
2206 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2207         
2208         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
2209         since the caret won't show up unless ShowSelection is true. 
2210         Fixes #80795.
2211
2212 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2213
2214         * Application.cs: When disabling all forms but the main form, do not
2215           disable any descendants of the main form (such as mdi children or
2216           other parented forms). Fixes #80822 on Windows.
2217         * Form.cs: If we have a parent, set the WS_CHILD style.
2218         * Control.cs: Update the window styles if the control whose parent has
2219           changed is a form (the WS_CHILD style has to be switched).
2220
2221 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
2222
2223         * XplatUIStructs.cs: MsgUIState structure added.
2224
2225 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
2226
2227         * FileDialog.cs: Removed need for separate fileName field. On 2.0
2228         profile, do not check filename(s) for illegal character if filename(s)
2229         were set non-interactively but always check on 1.0 profile. Fixed NRE
2230          in DefaultExt and only strip off first leading dot. Improve exception
2231         message when invalid Filter is set. Do not ignore InitialDirectory if
2232         it does no exist. Store specified Title, and if empty use default
2233         title (depending on type of dialog). Added an internal DialogTitle 
2234         property for retrieving dialog title. Fixed logic of displayed dir to
2235         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
2236         string as its buggy.
2237         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
2238         FileName is a zero-length string (it can never be null). Override 
2239         DialogTitle property to set default title of dialog box.
2240         * SaveFileDialog.cs: Override DialogTitle property to set default
2241         title of dialog box.
2242
2243 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
2244
2245         * FileDialog.cs: Modify default text of filename and filetype labels
2246         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
2247         after we've updated the SelectedIndex. Fixes part of bug #80887.
2248         * SaveFileDialog.cs: Set text of filetype label.
2249
2250 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2251
2252         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
2253         label field. Needed by latest Jackson's fixes for ListView.
2254
2255 2007-02-16  Andreia Gaita  <avidigal@novell.com>
2256
2257         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
2258         print preview images.
2259
2260 2007-02-16  Jackson Harper  <jackson@ximian.com>
2261
2262         * ListView.cs: Make AfterLabelEdit work correctly.
2263         * FileDialog.cs: After changing the name of the folder, we have to
2264         make sure that it is created, or that we pop up an error because
2265         it already exists.
2266
2267 2007-02-16  Jackson Harper  <jackson@ximian.com>
2268
2269         * X11Dnd.cs: Implement aliases on mime handlers, so things like
2270         System.String are mapped to text.
2271         - Handle dataobjects, getting all the possible formats out of them
2272         - We dont need the drag event args before we give feedback. This
2273         allows feedback cursors to be immediate before selections have
2274         been converted.
2275
2276 2007-02-16  Jackson Harper  <jackson@ximian.com>
2277
2278         * TextBoxBase.cs: Modified the method for inserting images to
2279         taking a line and position instead of tag and position.
2280         * RichTextBox.cs: Handle PngBlip data by inserting the png image
2281         into the RTF file.
2282         * TextControl.cs: Allow images to be inserted as the first tag of
2283         a line.
2284         - Fix some off by one issues when we assume the first tag is a
2285         text tag, not an image tag.
2286
2287 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2288
2289         * ListView.cs: Set focus to ListView when ItemControl gets a
2290         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
2291         Fixes part of #80467.
2292
2293 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2294
2295         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
2296           validate Text input (if null or empty string reset Value to default
2297           value). Fixes #80830.
2298
2299 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2300
2301         * ListView.cs: Set owner as null for columns and items when
2302         Dispose is invoked. Fixes #80607.
2303
2304 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
2305
2306         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
2307         showing DropDowns, don't show a Grip when doing Flow layout.
2308         [This fixes the toolbox in PDN 2.72.]
2309         * ToolStripItem.cs: Add Anchor property and some internal properties to
2310         reduces needed changes to FlowLayout.
2311         * ToolStripOverflow.cs: Remove unused variable.
2312         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
2313         use it in the layout calculations.
2314
2315 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2316
2317         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
2318         reported in #79640.
2319         
2320         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
2321         size calculation.
2322
2323 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2324
2325         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
2326         MeasureString format, it can make button very large in some cases, it is
2327         strange but is what win32 do.
2328
2329 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2330
2331         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
2332         size calculation.
2333
2334         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
2335         rendering, the value is based on MenuAccessKeysUnderlined.
2336
2337 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2338
2339         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
2340         for most themes.
2341         
2342         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
2343         
2344         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
2345         and use MenuAccessKeysUnderlined instead.
2346
2347 2007-02-13  Andreia Gaita  <avidigal@novell.com>
2348
2349         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
2350         A selected control would not get a Focus call if:
2351                 - the default active control of the container is the same as
2352                   the one that was selected
2353                 - we are switching from one container to another
2354         Under these conditions, the container being selected already has
2355         an active_control, which is the same as the one being activated, 
2356         so set_ActiveControl would always return and not send the Focus
2357         call. Fix to check if the currently active control of the container
2358         is actually focused.
2359
2360 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
2361
2362         * StatusStrip.cs: Implement the spring layout.
2363         * ToolStripControlHost.cs: Make sure the hosted control's visibility
2364         always matches the host.
2365         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
2366         and TextAfterImage.
2367
2368 2007-02-13  Andreia Gaita  <avidigal@novell.com>
2369
2370         * Control.cs: Code reorganization only.
2371           - Reorganize the WndProc cases so that each case has it's own handling method, 
2372           to help with the no-line-numbering stack traces.
2373           - Formatting changes (it's vstudio's fault, really :p)
2374
2375 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2376
2377         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
2378           Thread.CurrentUICulture to match DateTimePicker's (and MS)
2379           behaviour.
2380
2381 2007-02-12  Jackson Harper  <jackson@ximian.com>
2382
2383         * RichTextBox.cs:
2384         * TextBox.cs: By default we have a non multiline document
2385         - use the multiline property instead of the internal variable
2386         * TextBoxBase.cs: Treat multiline and non multiline the same in
2387         most places.
2388         - Use the documents multiline flag instead of tracking it ourself
2389         * TextControl.cs: Attempt at getting multiline to match MS
2390         behavior.  Lines now track an offset, which is either their X or Y
2391         offset depending on whether or not we are in multiline mode.
2392         - Update all the methods to understand that lines have an X value.
2393         - Fix crash in Undo::Duplicate when empty lines are deleted.
2394
2395 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
2396
2397         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
2398         code moved to properties PreferredHeight and PreferredWidth. It solve the
2399         all problems when preferred sizes must be recalculated. Fixes #80801.
2400
2401 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
2402
2403         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
2404         font height when compatible_text_rendering is false. Partially fix #80801.
2405
2406 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2407
2408         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
2409
2410 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2411
2412         * Form.cs: Improved exception messages in ShowDialog.
2413
2414 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2415
2416         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
2417         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
2418         if not set. Fixes bug #80764. Avoid accessing current_settings field
2419         directly.
2420
2421 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
2422
2423         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
2424         false.
2425
2426         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
2427         public in 2.0 and for easy maintenance and dont break compatibility it is 
2428         internal in 1.1.
2429         
2430 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2431
2432         * ToolStripItem.cs: Implement using images from ImageList.
2433
2434 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2435
2436         * DateTimePicker.cs: Change default date-formatting culture from
2437           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
2438           seems to be the way MS does it.
2439
2440 2007-02-08  Andreia Gaita  <avidigal@novell.com>
2441
2442         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
2443         (the 6 was cut off on the right side)
2444
2445 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2446
2447         * Form.cs: Tell MenuStrips to close when the form is clicked.
2448         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
2449         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
2450         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
2451         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
2452         support for Overflow, where items that do not fit are automatically
2453         reparented to a drop down menu.
2454         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
2455         Also: fixes bug #80747.
2456
2457 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2458
2459         * ComboBox.cs: Remove warning (unused code).
2460         * ScrollableControl.cs: Remove warning for 1.1 profile.
2461
2462 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2463
2464         * Form.cs: Remove a warning.
2465
2466 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2467
2468         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
2469           'g' specifier, not documented anywhere, but seems to always show up
2470           as a single space (might have something to do with the DateTime 'g'
2471           specifier, which is the era format, but since DateTimePicker can't
2472           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
2473           won't crash if the format has an unmatched quote. Now shows
2474           single-character formats correctly. Fixes #80744.
2475
2476 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2477
2478         * StatusStrip.cs: Stretch property needs to call base.Stretch,
2479         not this.Stretch to fix stack overflow. [Fixes bug #80760]
2480
2481 2007-02-07  Chris Toshok  <toshok@ximian.com>
2482
2483         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
2484         background color.  it overwrites the background image we've
2485         already painted.  Fixes #80599.
2486
2487 2007-02-07  Chris Toshok  <toshok@ximian.com>
2488
2489         * DataGrid.cs: return immediately from Edit() when there are no
2490         columns.  Fixes #80662.
2491
2492 2007-02-07  Chris Toshok  <toshok@ximian.com>
2493
2494         * MessageBox.cs: fix #80625.  don't always show the Help button in
2495         2.0.  use the displayHelpButton parameter to determine if we
2496         should show it. Also, make the internal show_help field private.
2497
2498 2007-02-07  Chris Toshok  <toshok@ximian.com>
2499
2500         * Control.cs (SetVisibleCore): check in the proposed patch for
2501         80604, and set is_visible before calling CreateControl.
2502
2503 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
2504
2505         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
2506         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
2507         on it.
2508
2509 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
2510
2511         * MenuAPI.cs: hotkey_active internal field added, it is required because
2512         we need to know when hotkeys must be draw, before this change a keystate
2513         Navigating was used but we can have menu in navigating state without
2514         hotkeys. Fixes #80694.
2515         
2516         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
2517
2518 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2519
2520         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
2521           corresponding events and methods to be internal for 1.1 profile and
2522           public for 2.0 profile (required by SizeGrip).
2523         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
2524           implicit control list). Don't set the size nor the location of the
2525           SizeGrip anymore as it's not needed.
2526         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
2527           draw directly on the captured control (fixes #80656). Removed
2528           ShowGrip (it wasn't used anywhere), redraw (always true), added
2529           GetDefaultSize and GetDefaultRectangle to calculate defaults.
2530         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
2531           be called from SizeGrip.
2532
2533 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2534
2535         * Timer.cs: Throw ArgumentException if Interval <= 0.
2536
2537 2007-02-05  Jackson Harper  <jackson@ximian.com>
2538
2539         * TreeView.cs: We need to check scrollbar visibility when window
2540         visibility is updated, because non visible trees don't ever add
2541         scrollbars.
2542         * Cursor.cs: We want the override cursor to be reset to NULL when
2543         we set current cursor to the default cursor.
2544
2545 2007-02-05  Jackson Harper  <jackson@ximian.com>
2546
2547         * TextControl.cs: Don't have crlfs when we are non multiline.
2548         - Consolidate the line position.
2549
2550 2007-02-05  Jackson Harper  <jackson@ximian.com>
2551
2552         * X11Keyboard.cs: BACK+CTRL gets a special char code.
2553
2554 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2555
2556         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
2557           handling LeaveNotify->NotifyUngrab in order to send
2558           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
2559           after calling XUngrabPointer, so we call WindowUngrabbed directly
2560           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
2561         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
2562           MouseCaptureChanged correctly. Also create handles if changing
2563           Capture (matches MS behaviour).
2564
2565 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2566
2567         * SizeGrip.cs: Make the last change 2.0 only.
2568
2569 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2570
2571         * SizeGrip.cs: If resizing and the capture is lost, revert any size
2572           changes to initial size (fixes #80597).
2573
2574 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2575
2576         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
2577
2578 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2579
2580         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
2581           background) and only allow dragging if enabled. This way the
2582           sizegrip can be used to fill the open square that otherwise would
2583           have been shown in the bottom right corner of ScrollableControl
2584           when ScrollableControl is not suppose to support sizing.
2585         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
2586           sizegrip is shown and enabled, and hook up with necessary events.
2587
2588 2007-02-01  Chris Toshok  <toshok@ximian.com>
2589
2590         * DataGridTextBoxColumn.cs: clean up the
2591         GetFormattedString/GetColumnValueAtRow combination of functions.
2592         Also fix UpdateUI, and the initial state of
2593         IsInEditOrNavigateMode.
2594
2595         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
2596         aren't supposed to scroll the textbox here, we're supposed to
2597         scroll the datagrid.
2598
2599 2007-02-01  Chris Toshok  <toshok@ximian.com>
2600
2601         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
2602         setting the position.
2603
2604 2007-02-01  Chris Toshok  <toshok@ximian.com>
2605
2606         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
2607         here, since the most recent focus fixes keep us from generating
2608         the Leave event when our textbox gets focus.
2609         (Edit): we should be passing null for the column style's
2610         instantText parameter.
2611         
2612 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
2613
2614         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
2615         raised.  Fixes menu text/icons not showing up in PDN.
2616
2617 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2618
2619         * Control.cs: Remove code in constructor that makes every
2620         control with WS_CHILD set have initial location -1, -1.
2621
2622 2007-01-31  Jackson Harper  <jackson@ximian.com>
2623
2624         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
2625         XplatUIX11.
2626         * XplatUIX11.cs: Give teh keyboard to teh dnd.
2627
2628 2007-01-31  Jackson Harper  <jackson@ximian.com>
2629
2630         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
2631         - Remove some debug code.
2632
2633 2007-01-31  Jackson Harper  <jackson@ximian.com>
2634
2635         * XplatUIX11.cs: If you set the override cursor during a grab, it
2636         should actually override the grab cursor.  This comes into play
2637         when you are setting custom cursors in a DND feedback method.
2638
2639 2007-01-31  Jackson Harper  <jackson@ximian.com>
2640
2641         * X11Dnd.cs: Add support for handling the QueryContinue and
2642         GiveFeedback events.
2643         - Cancel drag and drop actions when the escape key is clicked.
2644         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
2645         can handle the ESCAPE key.
2646         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
2647         done when dnd events are continued after the button is released.
2648         - Add a new helper method so that dnd can translate key events.
2649
2650 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
2651
2652         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
2653         make it more obvious what is happening.
2654
2655 2007-01-30  Jackson Harper  <jackson@ximian.com>
2656
2657         * XplatUIX11.cs: Don't break when handling button release in drag
2658         and drop operations. We need that BUTTONUP message to get through
2659         so capture is released.
2660         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
2661         this is handled automatically when the mouse is down.
2662
2663 2007-01-30  Jackson Harper  <jackson@ximian.com>
2664
2665         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
2666         is closed, so we need to make sure that we aren't changing the
2667         dialog result when the OK (Open or Save) button has been clicked
2668         and we are closing the window ourselves.  Note we don't need to
2669         worry about the cache being written in this case, because it was
2670         already done in the previous FilOk call.
2671
2672 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2673         
2674         * DateTimePicker.cs: Remove a warning.
2675         * ComboBox.cs: Remove a couple of warnings.
2676
2677 2007-01-29  Chris Toshok  <toshok@ximian.com>
2678
2679         * XplatUIX11.cs: don't crash, and remove the icon if the user has
2680         set one, if SetIcon is passed a null icon.
2681
2682 2007-01-29  Andreia Gaita  <avidigal@novell.com>
2683
2684         * TextBox.cs: Redraw when the password characters changes
2685         * TextControl.cs: Check if textbox has a password char and draw 
2686         a line of password chars instead of the text in the line. LineTag gets 
2687         an extra Draw() method which allows document.Draw to override the text 
2688         that will be drawn. Removes 1024 char limitation on length of passworded 
2689         lines.
2690
2691 2007-01-29  Jackson Harper  <jackson@ximian.com>
2692
2693         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
2694         single chars is not.
2695
2696 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
2697
2698         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
2699         one pixel.  Fix a StackOverflowException caused by an overload wrongly
2700         calling itself.
2701
2702 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
2703
2704         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
2705         also remove ProcessArrowKey and put the code inside ProcessKeys.
2706
2707 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
2708
2709         * PaddingConverter.cs: Added.
2710
2711 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2712         
2713         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
2714         ShowPanels is false (fixes #80600). Only draw up to 127 characters
2715         of text (fixes #80601). For panels clip the text to draw to the
2716         panel (fixes #80603).
2717
2718 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2719
2720         * ComboBox.cs: Fixed implementation of ResetText.
2721
2722 2007-01-25  Jackson Harper  <jackson@ximian.com>
2723
2724         * TextControl.cs: For the last char of a line we need to use the
2725         line size, not that chars width, since it won't actually be
2726         computed since the right side of a char is based on the start of
2727         the left side of the next char, and the next char does not exist.
2728
2729 2007-01-25  Chris Toshok  <toshok@ximian.com>
2730
2731         * Splitter.cs: fix the new unit tests, and reindent some switch
2732         statements.
2733
2734 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2735
2736         * ComboBox.cs: Implemented 2.0 methods and events.
2737         * TextBoxBase.cs: Added OnTextUpdate, so that
2738         ComboBox.ComboTextBox can inform ComboBox of it.
2739
2740 2007-01-25  Jackson Harper  <jackson@ximian.com>
2741
2742         * TextControl.cs: Respect ShowSelection when deciding whether or
2743         not to display the caret, this allows comboboxes to have carets
2744         when the combotextbox does not have focus.
2745
2746 2007-01-25  Jackson Harper  <jackson@ximian.com>
2747
2748         * TextControl.cs: Add a Suspend/Resume for updating, basically the
2749         same as the Suspend/Resume for recalc, except this will do actual
2750         Invalidates.
2751         - New Undo manager, works much like the MS version.
2752         - Implemented Redo
2753         * TextBoxBase.cs: The Cut operation is undoable.
2754
2755 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2756         
2757         * TextBoxBase.cs: Don't antialias text. Makes it look way better
2758         on Windows (no difference on Linux).    
2759
2760 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2761
2762         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
2763         we don't want to activate any windows. Fixes #79433.
2764
2765 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
2766
2767         - ButtonBase.cs: Fix capitalization of parameter: disposing.
2768         [Fixes bug #80609]
2769
2770 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
2771
2772         * FileDialog.cs:
2773         - Move to using System.ComponentModel.EventHandlerList
2774         - Replace Refresh with Invalidate
2775         - Clear the mime filecache on closing
2776         - Some other memory reducing work. After beeing closed FD now uses
2777           only about 300 KB for the fdo mime stuff plus the memory of the
2778           cached icons.
2779         * Mime.cs: Changed coding style and removed unnecessary commented
2780         code. Some more memory memory reducing work.
2781
2782 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2783
2784         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
2785         a few other missing 2.0 properties.
2786         * Theme.cs: Added DrawFlatStyleComboBox.
2787         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
2788
2789 2007-01-24  Chris Toshok  <toshok@ximian.com>
2790
2791         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
2792         wake_waiting flag, not just when there's data to be read.  if we
2793         don't, then future wakeup's won't reach us and we'll be doomed to
2794         wait for the entire 1 second timeout forever (unless there are X
2795         events to be had).
2796
2797 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2798
2799         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
2800         until you pass Items.Count, not Items.Count - 1 like 1.1.
2801
2802 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
2803
2804         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
2805
2806 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2807
2808         * ToolStripContainer.cs: The recent Dock fix exposed that I was
2809         adding the panels in the wrong order.
2810
2811 2007-01-24  Jackson Harper  <jackson@ximian.com>
2812
2813         * TextBoxBase.cs: When we move the caret we also need to move the
2814         selection, this fixes some random crashing after doing select
2815         text, unselect, delete a char, paste.
2816
2817 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2818
2819         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
2820
2821 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2822
2823         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
2824         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
2825         * ToolBar.cs: Force redraw in BackgroundImageChanged.
2826
2827 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2828
2829         * ToolBar.cs:
2830         - Implement support for vertical toolbars. Fixes #80539;
2831         - Call LayoutToolBar when resize, it fix some other problems in layout.
2832         - Rename requested_height to requested_size, as we can have width on it
2833         when toolbar is vertical.
2834         - Create a private property "Vertical" that uses Dock to verify when 
2835         toolbar is vertical or not.
2836         - Set ControlStyles when change Dock property.
2837         - Refactory in LayoutToolBar to have better variables names and to support
2838         vertical toolbars.
2839         - Fixes default value for ButtonSize when button count is equal zero, size
2840         must be (39, 36) test case writed.
2841
2842 2007-01-23  Chris Toshok  <toshok@ximian.com>
2843
2844         * Control.cs: fix the checks so that they work correctly for mdi
2845         parents/children.
2846
2847 2007-01-23  Chris Toshok  <toshok@ximian.com>
2848
2849         * Control.cs: ControlCollection seems to have super-secret
2850         abstraction breaking knowledge of Mdi containers.  allow MdiClient
2851         to add toplevel controls.
2852
2853 2007-01-23  Chris Toshok  <toshok@ximian.com>
2854
2855         * Control.cs: throw an ArgumentException if a toplevel control is
2856         added to our control collection from ControlCollection.Add, as
2857         well as from ControlCollection.IList.Add.  This fixes the
2858         ControlSetTopLevelTest.TestTopLevelAdd unit test.
2859
2860         Also, in ControlCollection.IList.Add, don't through an
2861         ArgumentNullException, throw an ArgumentException, when value ==
2862         null.  This matches MS.
2863
2864 2007-01-23  Chris Toshok  <toshok@ximian.com>
2865
2866         * BindingSource.cs: initial, incomplete, implementation of
2867         BindingSource.
2868
2869 2007-01-23  Jackson Harper  <jackson@ximian.com>
2870
2871         * TextControl.cs:
2872         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
2873         that I can fix a broken unit test (TextBoxTest::ClearUndo)
2874         
2875 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2876
2877         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
2878
2879 2007-01-23  Andreia Gaita  <avidigal@novell.com>
2880
2881         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
2882         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
2883         IndexOfKey() for 2.0
2884
2885 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2886
2887         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
2888         to prevent it from changing z-order.
2889         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
2890         leave UI updates in MdiWindowManager.
2891         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
2892         1 sized (NC handling goes weird on Linux otherwise).
2893         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
2894         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
2895         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
2896         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
2897         and SetWindowState(s) to allow for changing the size of an activated child
2898         before activating it (reduces a lot of flicker).
2899
2900 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2901
2902         * Form.cs: Changing FormBorderStyle has different semantics based
2903         on whether the Form is visible or not.  If not visible, don't change
2904         the Size.  But InvalidateNC needs to be called to force the window
2905         to pick up the changes and redraw itself.  [Fixes bug #80574]
2906
2907 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2908
2909         [Moma work]
2910         * ContainerControl.cs: ProcessCmdKey.
2911         * ErrorProvider.cs: new constructor.
2912         * Form.cs: fix AutoValidateEvent compiler warning.
2913         * Label.cs: fix OnAutoSizeChanged compiler warning.
2914         * MenuStrip.cs: fix CanOverflow compiler warning.
2915         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
2916         * TextBox.cs: Dispose.
2917         * ToolStrip.cs: CanOverflow, re-enable double buffering.
2918         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
2919         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
2920         * ToolStripItem.cs: Overflow, RightToLeft properties.
2921
2922 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2923
2924         * Form.cs: Move the layout of the main form to MdiWindowManager.
2925         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
2926         do a layout of the main window to update MdiClient's client area to
2927         the right area. Fixes #80533. Remove the calculation of nc size, 
2928         it was just wrong and the correct one is the same as for 
2929         InternalWindowManager. 
2930
2931 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
2932
2933         * Control.cs: Setting Anchor or Dock needs to reset the other
2934         to its default.  [Fixes bug #80556]
2935
2936 2007-01-20  Chris Toshok  <toshok@ximian.com>
2937
2938         * CheckedListBox.cs: class status changes.
2939
2940         * ScrollableControl.cs: same.
2941
2942         * RichTextBox.cs: same.
2943
2944         * ContainerControl.cs: same.
2945
2946         * ListView.cs: same.
2947
2948         * NotifyIcon.cs: same.
2949
2950         * MenuStrip.cs: same.
2951
2952         * RadioButton.cs: same.
2953
2954         * CheckBox.cs: same.
2955
2956         * PrintPreviewDialog.cs: same.
2957
2958         * Form.cs: same.
2959
2960 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
2961
2962         * TreeNode.cs: Apply Alan's patch for Name property.
2963
2964 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2965         
2966         * Form.cs: Implemented SizeGripStyle.
2967         * SizeGrip.cs: Check for minimum and maximum size for the
2968         control being resized and only resize if size has actually
2969         changed.
2970
2971 2007-01-19  Chris Toshok  <toshok@ximian.com>
2972
2973         * DataGridColumnStyle.cs: stop setting _readonly in the
2974         PropertyDescriptor setter.  fixes a unit test failure.
2975
2976         also, rename ParentReadOnly to TableStyleReadOnly, and have it
2977         just consult our table style (if we have one).  We don't need to
2978         consult the datagrid readonly attribute because that's passed in
2979         as the _ro arg to Edit.  this simplifies things a little.
2980         
2981         * DataGrid.cs: use CurrentColumn instead of
2982         current_cell.ColumnNumber just to simplify some of the code.
2983
2984         switch the order of some things in the CurrentCell setter to keep
2985         the previous cell from getting a textbox again -
2986         EnsureCellVisibility causes scrolling to happen, which calls Edit.
2987         So we need to set the new cell before calling it.
2988         
2989         call Edit in OnEnter, as does Microsoft.
2990         
2991         also, make sure the current table style isn't the one we create
2992         initially when checking to see if it's different than the one
2993         we're setting it to in BindColumns (this fixes #80421).
2994
2995         * GridTableStylesCollection.cs: table styles can have "" for a
2996         mapping name.  part of the fix for #80421.
2997
2998         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
2999         Edit significantly.
3000
3001 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3002
3003         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
3004         and less GDI object leaky-er.
3005
3006 2007-01-18  Andreia Gaita  <avidigal@novell.com>
3007
3008         * LinkLabel.cs: Add opaque control style
3009
3010 2007-01-18  Jackson Harper  <jackson@ximian.com>
3011
3012         * TextControl.cs: Calculate width properly.
3013         - Don't store the tag's X offset, this can be figured out very
3014         easily.
3015         - When getting the caret tag make sure to get the last empty tag.
3016
3017 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3018
3019         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
3020         [Fixes bug #79959]
3021
3022         * Control.cs: Color.Empty shouldn't count for previous transparent
3023         redraw changes.
3024
3025 2007-01-18  Jackson Harper  <jackson@ximian.com>
3026
3027         * TextBox.cs:
3028         * RichTextBox.cs:
3029         * TextControl.cs: Starting to merge in some pieces of my older
3030         undo work.  Basically just some slight cleanup of the undo API.
3031
3032 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3033
3034         * TrackBar.cs: Fix signature of RightToLeftLayout.
3035         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
3036         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
3037         * Application.cs: Implemented UseWaitCursor.
3038
3039 2007-01-18  Jackson Harper  <jackson@ximian.com>
3040
3041         * TextControl.cs: We can't skip tags if any part of the tag is
3042         visible.
3043
3044 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3045
3046         * ContainerControl.cs: Override OnLayout.
3047
3048 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3049
3050         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
3051
3052         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
3053         everything else.
3054
3055 2007-01-18  Chris Toshok  <toshok@ximian.com>
3056
3057         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
3058         (leftover from the container_selected days, I'd wager).  fixes bug
3059         #80546.
3060
3061 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3062
3063         * Control.cs: Apply patch from George to fix the new testcase on
3064         bug #80451.  We can't just check for Color.Transparent, we need 
3065         to check if the back color's alpha channel is < 255.
3066
3067 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
3068
3069         * Form.cs: Move setting show_icon = true to before the constructor
3070         so that the base constructor has that information when it calculates
3071         the form's size.  Was causing forms to be (6, 6) bigger than they
3072         were supposed to be.  Thanks for catching this Rolf!
3073
3074 2007-01-18  Jackson Harper  <jackson@ximian.com>
3075
3076         * TextControl.cs: When replacing a selection we need to invalidate
3077         from the initial selection start, because selection start is moved
3078         to the end of the replacement.
3079
3080 2007-01-18  Andreia Gaita  <avidigal@novell.com>
3081
3082         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
3083
3084 2007-01-18  Chris Toshok  <toshok@ximian.com>
3085
3086         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
3087         I just added.
3088
3089 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
3090
3091         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
3092         layout methods and properties from ToolBarButton must be available
3093         into ToolBarButtonInfo.
3094
3095 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3096
3097         * Control.cs: If the control has a transparent background, we
3098         need to refresh it when it moves and when it's parent's background
3099         image changes.  [Fixes bug #80451]
3100
3101 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3102
3103         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
3104
3105 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
3106
3107         * XplatUIWin32.cs: Implement proper double buffering for Windows.
3108         [Fixes bug #80447, and probably speeds up things as well]
3109
3110 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3111
3112         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
3113         * XplatUIWin32.cs: We need to recalculate NC size after changing 
3114         window style to toolwindow (otherwise the client rectangle will be
3115         3 pixels to small for some reason).
3116         * MdiWindowManager.cs: Revert NC size calculations to match how
3117         they are calculated only based on window styles (to match
3118         Win32AdjustWindowRectEx, since otherwise when setting size or 
3119         location, Control will call Win32AdjustWindowRectEx to update client 
3120         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
3121         calculate a different value of client size causing another paint 
3122         (and flickering))
3123         * InternalWindowManager.cs: When moving or resizing a window only
3124         update size or location if they actually changed.
3125         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
3126         (seems to match Windows behaviour better). Cleaned up 
3127         ManagedWindowDecorations to draw what's needed and nothing else
3128         (was drawing borders and lines where they shouldn't be)
3129         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
3130         (style = 0xFFFF) and takes into account caption height when 
3131         calculating window rectangle.   
3132
3133 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
3134
3135         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
3136         can be added to toolbar multiple times, we need to maintain a list of 
3137         button information for each positions.
3138
3139 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
3140
3141         * ToolBar.cs: Some small stetic changes.
3142
3143 2007-01-16  Jackson Harper  <jackson@ximian.com>
3144
3145         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
3146         that allow us to have nested recalc = false blocks.
3147         - Add paste support for images in the RichTextBox
3148         * RichTextBox.cs: flush the text after the color is changed, so
3149         the change takes effect.
3150         - Use SuspendRecalc
3151         - Some extra debugging info
3152         * TextControl.cs: Tags no longer track their length, it is just
3153         computed from the next tags length, this makes things a little
3154         simpler and reduces places that we have to track length changes.
3155         - Refactored the linetag class a little so we could make it
3156         a base class for different kinds of tags
3157         - Created a image tag, a tag that can have a single image inserted
3158         into it
3159         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
3160         that we can call suspend multiple times.
3161         - Add some debugging methods
3162
3163 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3164
3165         * MdiClient.cs: Add ActivatePreviousChild for 
3166         mdi child window navigation.
3167         * Form.cs: Use MdiClient.ActivateNextChild/
3168         ActivatePreviousChild instead of Form.SelectNextControl
3169         to select the next/previous child since 
3170         SelectNextControl doesn't do it in the same order
3171         as mdi children should do it.
3172
3173 2007-01-16  Chris Toshok  <toshok@ximian.com>
3174
3175         * Control.cs: remove container_selected field.
3176
3177 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3178
3179         * MdiClient.cs: Update main form's ActiveChild when
3180         updating keyboard focus for the mdi child.
3181
3182 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
3183
3184         * Control.cs: PreferredSize fix.
3185
3186         * Form.cs: Add several 2.0 events, properties, and methods.
3187
3188 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
3189
3190         * Form.cs: Provide meaningful message when MdiParent is assigned a
3191         Form that is not an MdiContainer.
3192
3193 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3194
3195         * MdiClient.cs: Update main form's ActiveChild when
3196         activating a mdi child.
3197
3198 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3199
3200         * MdiWindowManager.cs: Fix NRE when merging menus and main form
3201         doesn't have a menu.
3202
3203         * Form.cs: Request NCRecalc after creating a mdi child window.
3204         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
3205         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
3206         
3207         * MdiClient.cs: Add new method SendFocusToActiveChild that either
3208         sends keyboard focus to the active child, or to the MdiClient
3209         if there are no child forms.
3210         
3211 2007-01-15  Chris Toshok  <toshok@ximian.com>
3212
3213         * ListView.cs: drop the *Internal overrides, just do our work in
3214         ItemControl's WndProc instead.
3215
3216         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
3217         of the various controls, and forward the events properly (in the
3218         same manner as MS) from the textbox to the UpDown.  Also the
3219         ActiveControl of the UpDownBase gets set properly now.  Finally,
3220         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
3221
3222         * NumericUpDown.cs: set Text in the ctor.
3223
3224         * DomainUpDown.cs: call UpdateEditText in the ctor.
3225         
3226         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
3227         so even a Selectable = false textbox can be focused if you click
3228         in it.  Go figure.
3229
3230         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
3231         just add their handling in their respective WndProc's.  Also add
3232         an explicit FocusInternal method that doesn't consult CanFocus
3233         before calling Select(this).
3234
3235         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
3236         do our work in WndProc instead.
3237
3238         * TabControl.cs: same.
3239
3240         * ComboBox.cs: same.
3241
3242 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
3243
3244         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
3245         Fixes #80006.
3246
3247 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3248
3249         * ListViewItem.cs:
3250         * ThemeWin32Classic.cs: Don't draw the item text outside
3251         item bounds in Details view, as well as use trimming.
3252         Fixes bug #80376.
3253
3254 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
3255
3256         * Form.cs: Implement Form.ShowIcon.
3257         
3258         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
3259         null, which when combined with the DlgModalFrame window style removes
3260         the icon from the title bar.
3261
3262 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
3263
3264         * Control.cs: Call OnMouseClick after OnClick. (2.0)
3265
3266 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
3267
3268         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
3269         menu when mdi child windows theres a menu, uses insert to get icon
3270         at first position. Partially fix #80006.
3271
3272 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
3273
3274         * Clipboard.cs: Implement 2.0 methods.
3275
3276 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
3277
3278         * Menu.cs: Implement Insert method of MenuItemCollection class
3279         to fix MenuMerge.
3280
3281 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3282
3283         * ListView.cs: Implement 2.0 FindItemWithText method.
3284
3285 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
3286
3287         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
3288         to calculate menu bar size. Fixes #80290.
3289
3290 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
3291
3292         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
3293
3294 2007-01-11  Chris Toshok  <toshok@ximian.com>
3295
3296         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
3297         initial form.
3298
3299 2007-01-11  Chris Toshok  <toshok@ximian.com>
3300
3301         * LinkLabel.cs: make sure to call base.Select in our Select method
3302         if it turns out we're going to be selected (i.e. if we have a link
3303         that is going to receive focus).  That way our container's
3304         ActiveControl is updated properly.
3305
3306 2007-01-11  Chris Toshok  <toshok@ximian.com>
3307
3308         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
3309         they have 1 or more links.  this fixes the crash gert reported.
3310
3311 2007-01-11  Andreia Gaita  <avidigal@novell.com>
3312
3313         * ContainerControl.cs: Remove ContainerSelected flag, not needed
3314         anymore.
3315
3316         * Control.cs (Controls.Add): Check if control to be added to the collection
3317         is a top level control, and throw an ArgumentException if it is.
3318         Remove ContainerSelectedFlag, not needed anymore.
3319
3320         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
3321         top most control doesn't activate the form. This fixes a problem in the
3322         MessageBox, where the default button wouldn't get focus because the form
3323         was activated before being Loaded - when the Owner is set, SetTopMost is
3324         called, and it would activate it.
3325
3326 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
3327
3328         * Button.cs: When clicked and setting the parent form's DialogResult,
3329         use FindForm instead of Parent, since parent could be a container
3330         control and not the Form.  Fixes bug #80495.
3331
3332 2007-01-10  Chris Toshok  <toshok@ximian.com>
3333
3334         * Form.cs: move the call to SendControlFocus into the same
3335         is_loaded check.
3336
3337 2007-01-10  Chris Toshok  <toshok@ximian.com>
3338
3339         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
3340         It breaks in the face of the new ActiveControl stuff, and should
3341         be unnecessary.
3342
3343         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
3344         activecontrol's focus if it's not already set, after we set
3345         ActiveControl, but before we call OnActivated.  Re-fixes #79667
3346         after the previous focus/active control fixes regressed it.
3347
3348         * Control.cs: reindent some code.
3349         
3350 2007-01-10  Chris Toshok  <toshok@ximian.com>
3351
3352         * Splitter.cs: clearing some outstanding changes from my tree.
3353         Replace all accesses (not writes) to the internal dock_style field
3354         with the Dock property.
3355
3356 2007-01-10  Chris Toshok  <toshok@ximian.com>
3357
3358         * Control.cs: make FireEnter, FireLeave, FireValidating, and
3359         FireValidated virtual.
3360
3361         * Form.cs: override and don't chain up calls to FireEnter and
3362         FireLeave.
3363
3364 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3365
3366         * ListView.cs: Add more text padding space when using
3367         auto resize for columns (the previous value didn't work fine).
3368
3369         * ThemeWin32Classic.cs: Update text position inside columns,
3370         to match the appeareance of .Net.
3371
3372         * ColumnHeader.cs: When using auto resize, only the Width should
3373         depend on the sub items, not the Height. Also, set width after
3374         auto resizing (the value of Width should never remain as -1 or -2).
3375
3376 2007-01-10  Chris Toshok  <toshok@ximian.com>
3377
3378         * Application.cs: fix compilation errors when debug is enabled.
3379
3380 2007-01-10  Chris Toshok  <toshok@ximian.com>
3381
3382         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
3383         add some nice ascii art pictures and explanation of the process).
3384         (GetMostDeeplyNestedActiveControl): new utility function we need
3385         because our ActiveControl can refer to a child container with its
3386         own ActiveControl.
3387
3388         * Form.cs (OnActivated): remove the call to SelectActiveControl
3389         from here, since you can override this method and not chain up,
3390         and winforms still sets the active control.
3391         (OnCreateControl): also remove the unnecessary SelectActiveControl
3392         call from here.
3393         (WndProc): it's actually called from the WM_ACTIVATE block, just
3394         before calling OnActivated.
3395
3396         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
3397         inside the else.  the ActiveControl setter will end up setting
3398         focus on @control.  This keeps us from setting it again (and
3399         generating an extra LostFocus/GotFocus pair).
3400         (Select (bool, bool)): reindent.
3401
3402 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
3403
3404         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
3405         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
3406         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
3407         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3408         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
3409         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
3410         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
3411         ToolStripTextBox.cs: Another wave of corcompare work.
3412
3413 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3414
3415         * ColumnHeader.cs: Implement 2.0 AutoResize method using
3416         the Width property.
3417
3418         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
3419         methods by callling Column.AutoResize method on columns.
3420
3421 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
3422
3423         * Control.cs: Provide proper implementations of PreferredSize
3424         and GetPreferredSize (2.0).
3425
3426 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
3427
3428         * Form.cs: Remove one character (!) to make my previous OnClosing
3429         stuff work for modal windows like MessageBox.
3430
3431 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3432
3433         * ListView.cs:
3434         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
3435         ListView.Columns to get the last displayed column. Fixes #80452.
3436
3437 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
3438
3439         * Label.cs, LinkLabel.cs: Source code identation fixes.
3440
3441 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
3442
3443         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
3444         we dont need to invalidate only borders because when we invalidate four
3445         border lines the invalidate's generates a complete redraw of button, 
3446         because it now invalidate a complete rect some other redraws operations
3447         are fixed. Fixes #80196.
3448         
3449         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
3450         Remove ToolBarInvalidateEntireButton as it is not used.
3451
3452 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
3453         
3454         * Form.cs: Make sure that both OnClosing and OnFormClosing are
3455         called for 2.0 profile.
3456         * CloseReason.cs: Make class internal for 1.1.
3457
3458 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
3459
3460         * ToolStripManager.cs: Implement FindToolStrip functionality.
3461         * ToolStrip.cs: Register and unregister with ToolStripManager.
3462
3463 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
3464
3465         * Control.cs: This was messy.  2.0 moves much of ControlCollection
3466         to ArrangedElementCollection.  Implemented this with as few #if's as 
3467         possible (which is still too many).
3468
3469 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
3470
3471         * Control.cs: Implement SizeFromClientSize() [2.0].
3472
3473 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
3474
3475         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
3476         use Theme.BorderSize to calculate area instead of static value 1, 
3477         by the way use new BorderStaticSize instead     Border3DSize when 
3478         border_static is true. Fixes #79537.
3479         
3480         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
3481         
3482         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
3483         it is not needed.
3484
3485 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
3486
3487         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
3488
3489 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
3490
3491         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
3492         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
3493         
3494         * Hwnd.cs: 
3495         - border_static field added, it will used to define when a control 
3496         theres 3D border but it must be static (thin).
3497         - In GetWindowRectangle use Theme.BorderSize to calculate area 
3498         instead of static value 1, by the way use new BorderStaticSize instead
3499         Border3DSize when border_static is true.
3500
3501         * XplatUIX11.cs, XplatUIOSX.cs: 
3502         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
3503         
3504         * Theme.cs: BorderStaticSize field added.
3505
3506 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
3507
3508         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
3509
3510 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
3511
3512         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
3513         mimic same behavior than win32 that set border only in CreateParams,
3514         it fix problems under CreateParams overrides. Fix #79442 and partial
3515         fix #79537.
3516         
3517         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
3518         of thi control you must call recreate handle. 
3519         
3520         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
3521         need to do anything as RecreateHangle will take care about borders.
3522
3523 2007-01-05  Mike Kestner  <mkestner@novell.com>
3524
3525         * ListView.cs: hack to eliminate Lost/Got focus notifications on
3526         cycles between the ItemControl and parent.  Fixes #80388.
3527
3528 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
3529
3530         * Control.cs: Lazy init layout engine. Do not directly use 
3531         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
3532
3533 2007-01-05  Chris Toshok  <toshok@ximian.com>
3534
3535         * DataGrid.cs: don't forceably rebind columns in SetDataSource
3536         unless our list manager has changed (i.e. unless we have reason to
3537         believe our columns have changed).  Fixes #80422.
3538         
3539         also, disable the call do BindColumns in
3540         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
3541         1.1 the event isn't raised in response to a column addition on a
3542         table.)
3543
3544 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3545
3546         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
3547         that inheritors can not call it if they choose.  Fixes bug #80456.
3548
3549 2007-01-05  Andreia Gaita  <avidigal@novell.com>
3550
3551         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
3552         doesn't blow up with a null exception on marshalling.
3553         
3554 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3555
3556         * Control.cs: Implement several 2.0 protected properties and methods.
3557         Ensure that all necessary events are being called when properties
3558         are set.
3559
3560 2007-01-05  Mike Kestner  <mkestner@novell.com>
3561
3562         * ListView.cs: implement PgUp/PgDn for Details view.  Also
3563         fixes First/LastVisibleIndex to use the item_control.ClientRect 
3564         instead of the parent control.  Fixes #80378.
3565
3566 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
3567
3568         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
3569           determine whether to use yard-pound or not (bug #78399).
3570
3571 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
3572
3573         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
3574         problems. So it is time to bring back the old popupbutton colors.
3575
3576 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3577
3578         * ColumnHeader.cs:
3579         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
3580         property by using the internal information of the
3581         columns order in ListView.
3582
3583 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
3584
3585         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
3586         Add 2.0 Tag properties.
3587
3588         * LinkArea.cs: Add 2.0 ToString method.
3589
3590 2007-01-03  Chris Toshok  <toshok@ximian.com>
3591
3592         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
3593         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
3594         when we're editing, which fixes #80047.
3595
3596 2007-01-03  Chris Toshok  <toshok@ximian.com>
3597
3598         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
3599         #80404.
3600
3601 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
3602
3603         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
3604         property and implementation.
3605
3606         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
3607         for MdiWindowListItem property.
3608
3609         * ToolStripDropDown.cs: Don't consider hidden menu items while
3610         laying out the menu.
3611
3612 2007-01-03  Andreia Gaita  <avidigal@novell.com>
3613
3614         * SendKeys.cs: window handle is not needed in win32, so just
3615         get the active window for X after parsing keys and don't use
3616         it when building the message; it is passed by parameter to the 
3617         Xplat method and used there to build the message instead. Also,
3618         wait for events to be processed on SendWait, as opposed to Send,
3619         which doesn't wait :) Playing with threads and Send() completely 
3620         hangs on ms.net, only SendWait() works.
3621         
3622         XplatUIX11.cs
3623         X11Display.cs: Check for valid window handle.
3624
3625 2007-01-03  Jackson Harper  <jackson@ximian.com>
3626
3627         * TextControl.cs: Need to prevent wrap calculations when replacing
3628         text (this was there before i removed it accidently).
3629         - Don't update the cursor during the positioning, just set it to
3630         selection_start at the end of the operaion.
3631
3632 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3633
3634         * Control.cs:
3635         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
3636         
3637 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3638
3639         * MonthCalendar.cs: Added Click and DoubleClick events again,
3640         but this time they only hide Control's Click and DoubleClick.
3641         
3642 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
3643
3644         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
3645         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
3646
3647 2007-01-02  Jackson Harper  <jackson@ximian.com>
3648
3649         * TextBoxBase.cs: We move the caret with the split now, so we
3650         don't need to explicitly move the caret after splitting.  This
3651         fixes the caret bumping down an extra line on Enter.
3652
3653 2007-01-02  Miguel de Icaza  <miguel@novell.com>
3654
3655         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
3656         2.72). 
3657
3658         * ScrollableControl.cs: Add Scroll event.
3659
3660 2007-01-02  Mike Kestner  <mkestner@novell.com>
3661
3662         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
3663         to fix all hdr height padding codepaths.  Fixes #80207.
3664
3665 2007-01-02  Chris Toshok  <toshok@ximian.com>
3666
3667         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
3668         setting it to the Control defaults anyway, and it being after the
3669         Dock set was screwing up layout.
3670         (set_Dock): don't short circuit out of setting base.Dock.  Also,
3671         no need to call UpdateStatusBar here, as it'll be re-layed out if
3672         it needs to be.
3673
3674 2007-01-02  Mike Kestner  <mkestner@novell.com>
3675
3676         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
3677         to header height for width == -1. Fixes the rest of #80207.
3678
3679 2007-01-02  Mike Kestner  <mkestner@novell.com>
3680
3681         * ListView.cs: rework the mouse event forwarding everaldo added
3682         to translate the coordinates to the parent control not
3683         raise the parent events until after we've done our work. Hover
3684         needs more work, in the case where HoverSelection is on, because
3685         the item control receives more than one MouseHover per Enter
3686         event, so we need to ensure only the "first" hover gets forwarded.
3687         Opening a minor bug for that.
3688
3689 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
3690
3691         * CheckedListBox.cs: Fixed SelectionMode to match MS.
3692         * ListControl.cs: Implemented AllowSelection property. Removed extra
3693         tabs.
3694         * ListBox.cs: Implemented AllowSelection property.
3695
3696 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3697
3698         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
3699         SelectedItem, it prevent for errors when you must disable item
3700         before perform click. Fixes #80409.
3701
3702 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3703
3704         * MenuAPI.cs: Prevent second level and beyond submenus to close
3705         until first level when move out side of popup.
3706         
3707 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3708
3709         * MenuAPI.cs:
3710         - Down submenu positin in three pixels.
3711         - Closes sub menu when mouse leaves from menu. Fixes #80402.
3712
3713 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3714
3715         * ThemeWin32Classic.cs:
3716         - Fix popup menu size adding one pixel on the top.
3717         - Down menu item border from two to one to mimic Win32.
3718         - Some source identation fixes. 
3719
3720 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3721
3722         * ThemeWin32Classic.cs: Use float numbers to calculate size and
3723         position of menu arrows, it fix wrong arrow size.
3724
3725 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3726
3727         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
3728         instead of line, it simplify draw operation and fix it using 3D
3729         borders to mimic Win32.
3730
3731 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
3732
3733         * StatusStrip.cs: Add implementation of the sizing grip.
3734
3735         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
3736         StatusStrip rendering.
3737
3738 2006-12-31  Chris Toshok  <toshok@ximian.com>
3739
3740         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
3741         override the layout style (anchor/dock) of the control.  assign to
3742         Dock instead.  Fixes bug #80416.
3743
3744         * ToolStrip.cs: same.
3745
3746 2006-12-31  Andreia Gaita  <avidigal@novell.com>
3747
3748         * ContainerControl.cs: Use ContainerSelected flag to check if 
3749         a Container is directly selected, or if Select is called on a 
3750         non-container. If a container is directly selected, focus events 
3751         should not be raised.
3752         Apply #80411 patch to throw exception on set_ActiveControl if 
3753         control is the same as the current one.
3754         
3755         * Control.cs: Use ContainerSelected flag (see above).
3756         Add invalidation check to raise event but not invalidate if 
3757         dimensions are 0.       
3758         Apply #80411 patch.
3759         
3760
3761 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
3762
3763         * MenuAPI.cs: After click, dont close popup menu when menu is
3764         ContextMenu. Fixes #80399.
3765
3766 2006-12-30  Chris Toshok  <toshok@ximian.com>
3767
3768         * ContainerControl.cs: make sure we throw the exception if the
3769         container control doesn't contain the control we're setting
3770         ActiveControl to.
3771
3772 2006-12-30  Chris Toshok  <toshok@ximian.com>
3773
3774         * Control.cs (SetTopLevel): fix the exception raised by
3775         SetTopLevel for child controls.
3776         (set_Anchor): call UpdateDistances when setting the anchor type.
3777         This fixes bug #80336.
3778
3779 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3780
3781         * Theme.cs: For now, revert back to 8pt font.
3782
3783 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
3784
3785         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
3786         Fixes #80395.
3787
3788 2006-12-29  Chris Toshok  <toshok@ximian.com>
3789
3790         * Control.cs: reorder the code in OnResize to give the same event
3791         ordering as MS.
3792
3793 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3794
3795         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
3796         TileHorizontally and TileVertically.
3797         
3798 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
3799
3800         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
3801         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
3802         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
3803         Corrected copyright and email adress.
3804
3805 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3806
3807         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
3808         of Exception in FullPath property if no TreeView is associated with
3809         the TreeNode.
3810
3811 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3812
3813         * Theme.cs: Marked default_font as private, and initialize it in ctor
3814         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
3815         on 2.0 profile.
3816         * ThemeGtk.cs: Removed default_font intialization.
3817         * ThemeWin32Classic.cs: Removed default_font initialization.
3818
3819 2006-12-28  Chris Toshok  <toshok@ximian.com>
3820
3821         * Control.cs: fix a couple of place where we were creating handles
3822         more aggressively than we should be.  Fixes ControlRefresh unit
3823         tests.
3824
3825 2006-12-28  Chris Toshok  <toshok@ximian.com>
3826
3827         * Control.cs: contrary to what the comment said, Control.Dock does
3828         not supercede Control.Anchor - the last one you assign to decides
3829         the layout behavior.  so we need to keep track of which was the
3830         last set.  Also, fix some of the affected property arguments in
3831         PerformLayout calls, and remove an redundant parent.PerformLayout
3832         call in OnResized.
3833
3834         Add a VisibleInternal property, which returns is_visible.  We
3835         can/should get rid of all the usage of this field elsewhere.
3836
3837 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3838         
3839         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
3840         control style, not DoubleBuffer. Added UseDoubleBuffering property
3841         that indicates whether doublebuffering is enabled and supported.
3842         (comment from and code based on Gert Driesen's patch in #80324).
3843         Fixes #80324.
3844
3845 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3846         
3847         * Control.cs: Fixed a NRE.
3848
3849 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3850
3851         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
3852         for 2.0.
3853
3854 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3855
3856         * Control.cs: Rewrote double buffering, now a seperate
3857         class handles all the buffering, no Graphics is disposed of
3858         until the painting is finished (earlier implementation 
3859         would crash if the control was resized in the OnPaint, 
3860         since it would cause the double buffer to be recreated
3861         and the old one disposed), a separate Graphics is 
3862         created for every paint (MS behaviour and anyways the state
3863         of the Graphics would have to be saved and restored otherwise)
3864         
3865         * XplatUIDriver.cs: 
3866         * XplatUIX11.cs:
3867         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
3868         so that we can get the graphics for the back buffer without
3869         having to create a new one and remove the offscreen_dc parameter
3870         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
3871         
3872 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3873
3874         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
3875         Also make virtual all the key-related methods.
3876
3877         * ListViewItem.cs: Make virtual the key related methods for
3878         ListViewSubItemCollection.
3879
3880 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3881
3882         * ListView.cs:
3883         * ListViewItem.cs:
3884         * ThemeWin32Classic.cs:
3885         * Theme.cs: Initial support for Tile view in ListView,
3886         as well as the implementation of the required bits for it (Item
3887         and Subitem).
3888
3889 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3890
3891         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
3892         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
3893         Provide useful exception messages.
3894
3895 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3896
3897         * TrackBar.cs: Remove a warning.
3898         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
3899         when used by DateTimePicker, fixes #80287. This also requires that 
3900         MonthCalendar implements it's own drawing for the yearly updown control,
3901         otherwise the Capture tracking would be too complicated. Removed the Click 
3902         and DoubleClick events (according to comments they were hiding the base class
3903         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
3904         raise these events, not that they cannot be raised. It is possible to raise 
3905         them by calling OnClick and OnDoubleClick). Added two internal fields in 
3906         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
3907         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
3908         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
3909         event, no longer needed.
3910         
3911 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3912
3913         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
3914         true if new value differs from current value.
3915
3916 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3917
3918         * Control.cs: ControlCollection.Count must be public. Fixed build of
3919         unit tests.
3920
3921 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3922
3923         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
3924
3925 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3926
3927         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
3928
3929 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3930
3931         * Control.cs: Invalidates control including when Width and Height is 
3932         equal zero or is not visible, only Paint event must be care about 
3933         this. Fixes #79913.
3934
3935 2006-12-26  Chris Toshok  <toshok@ximian.com>
3936
3937         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
3938         more corcompare work.
3939
3940         * DataGridView.cs: fix compiler warning.
3941
3942         * ColumnHeader.cs: some corcompare work, and also take the
3943         opportunity to make the internal fields private.
3944
3945         * ListView.cs: fix the fallout from the above field change.
3946
3947 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3948
3949         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
3950         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
3951         ToolStripTextBox.cs: Fixes to events and corcompare.
3952
3953 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3954
3955         * ListView.cs: Call owner.OnMousexx event to propagate events from
3956         item to ListView. Fixes #80367.
3957
3958 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3959
3960         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
3961         if value is less than one. ItemHeight should not be set to a value
3962         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
3963         Removed extra tabs.
3964
3965 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3966
3967         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
3968         * ToolStripStatusLabel.cs: Add Spring for Moma.
3969
3970 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3971
3972         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
3973         Fixed code formatting. Removed debug code.
3974         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
3975
3976 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3977
3978         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
3979         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
3980         ArgumentOutOfRangeException if ColumnCount is negative. In 
3981         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
3982         less than 4 or higher than 32768.
3983         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
3984         Fixed FormatProvider to return CurrentCulture unless explicitly set.
3985         Fixed IsFormatProviderDefault to return true if FormatProvider has
3986         not been explicitly set.
3987
3988 2006-12-25  Chris Toshok  <toshok@ximian.com>
3989
3990         * Application.cs: add a couple of 2.0 events.
3991
3992 2006-12-25  Chris Toshok  <toshok@ximian.com>
3993
3994         * Control.cs: fix compiler warning.
3995
3996         * AxHost.cs: corcompare fixes.
3997
3998         * ApplicationContext.cs: corcompare fixes.
3999
4000 2006-12-25  Chris Toshok  <toshok@ximian.com>
4001
4002         * Control.cs: only update dist_right/dist_bottom if the
4003         width/height is > 0.  this fixes anchored controls being resized
4004         smaller until they disappear and then resized larger again.
4005
4006 2006-12-25  Chris Toshok  <toshok@ximian.com>
4007
4008         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
4009         since they're nothing more than X/Left and Y/Top, respectively.
4010
4011         Also, move back to a per-control Bitmap/Graphics for
4012         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
4013         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
4014         Height.
4015
4016 2006-12-25  Miguel de Icaza  <miguel@novell.com>
4017
4018         * MessageBox.cs: Implemented overload that takes a new "bool
4019         displayHelpButton" by adding a new internal field "show_help".
4020         When clicked this will raise the HelpRequested on the owner or the
4021         main form. 
4022
4023         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
4024         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
4025
4026         * ListView.cs: Add support ColumnWidthChanged and
4027         ColumnWidthChanging. 
4028
4029         Add support for ColumnReordered event.
4030         (ReorderColumn): Add NET_2_0 specific support for cancelling the
4031         reorder.
4032
4033         Very nice codebase!
4034
4035         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
4036
4037         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
4038
4039 2006-12-24  Chris Toshok  <toshok@ximian.com>
4040
4041         * GridTablesFactory.cs: 2.0 corcompare work.
4042
4043         * ToolStripContainer.cs: add "override" to
4044         ContextMenuStripChanged, and remove the local event object.
4045
4046         * ToolStripDropDown.cs: same with a couple properties.
4047
4048         * ToolStripPanel.cs: same with AutoSizeChanged event.
4049
4050         * TextBoxBase.cs: add "override" to AutoSizeChanged.
4051
4052         * Form.cs: add the remaining 2.0 events, and do some corcompare
4053         attribute work.
4054
4055         * DateTimePicker.cs: add "new" to padding.
4056
4057         * ButtonBase.cs: use Control's use_compatible_text_rendering.
4058
4059         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
4060
4061         * DataGridView.cs: PaddingChanged is overridden.
4062
4063 2006-12-24  Chris Toshok  <toshok@ximian.com>
4064
4065         * Control.cs: corecompare work here too.
4066
4067         * DataGridViewElement.cs, DataGridView.cs,
4068         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
4069         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
4070         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
4071         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
4072         work.
4073
4074 2006-12-24  Miguel de Icaza  <miguel@novell.com>
4075
4076         * Control.cs: Switched the error message on the console for a
4077         todo.  A review of the code will have to cope with this anyways
4078         (since its a large feature, it is in our radar) and it was
4079         producing too much output when running PDN.
4080
4081         * ToolStripComboBox.cs: Set the text when the SelectedIndex
4082         changes.  Applications depend on this (PDN 2.72)
4083
4084 2006-12-23  Chris Toshok  <toshok@ximian.com>
4085
4086         * TableLayoutSettings.cs: finish up the corcompare work for this
4087         class.
4088
4089 2006-12-23  Chris Toshok  <toshok@ximian.com>
4090
4091         * Control.cs: make SetImplicitBounds internal, do some futzing
4092         with LayoutEngine so that it's available in 1.1, and remove the
4093         entire duplicated code mess from PerformLayout.  Use
4094         System.Windows.Forms.Layout.DefaultLayout instead.
4095
4096         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
4097
4098 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
4099
4100         * Form.cs: Add MainMenuStrip property.
4101
4102 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
4103
4104         * Control.cs: Add ContextMenuStrip property and implementation.
4105         Fix ContextMenu implementation to show menu centered on control when
4106         activated using the keyboard instead of showing at screen (0,0).
4107
4108         * ToolStripDropDown.cs: Fix needed overload of Show ().
4109
4110 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4111
4112         * Menu.cs: Name property added for 2.0 profile.
4113         
4114 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4115
4116         * Menu.cs: Update information about FindMenuItem, method to be
4117         implemented soon.
4118
4119 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4120
4121         * MenuAPI.cs: When deselect items deselect also selected subitems.
4122         
4123 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
4124
4125         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
4126         FindSubItemByCoord to found itens that is not active, also an
4127         cheking added to FindSubItemByCoord to search for items only 
4128         in visible popup windows. Fixes #80274.
4129
4130 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
4131
4132         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
4133         internal property, it be care about change ExStyle. 
4134
4135 2006-12-22  Andreia Gaita  <avidigal@novell.com>
4136
4137         * ContainerControl.cs: set activeControl for parent forms up the 
4138         tree when the new activecontrol is a container.
4139         When validating the active control, if it is a container, also
4140         raise up the validation for it's active control. Fixes #80280
4141         
4142         * Control.cs: Add internal property flag and check to prevent
4143         Focus events from getting raised when Select() is called for
4144         a ContainerControl. There are still too many focus events being
4145         raised at the moment though.
4146         Cleaned up the code a bit.
4147
4148 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4149
4150         * Control.cs: Added all missing 2.0 events.and
4151         fixed a couple of corcompare issues.
4152         * TrackBar.cs: Implemented missing 2.0 bits.
4153         * MonthCalendar.cs, 
4154         * DateTimePicker.cs, 
4155         * MdiClient.cs: Fixed some corcompare issues.
4156
4157 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4158
4159         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
4160         SplitterPanel.cs: corecompare work.
4161
4162 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4163
4164         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
4165         Clean up warnings for BackgroundImageChanged and PaddingChanged
4166         events now that they are implemented in Control.cs.
4167
4168 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
4169
4170         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
4171         
4172         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
4173         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
4174         of TableLayoutPanel and supporting cast.
4175
4176 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4177
4178         * XplatUIWin32.cs: 
4179         - GrabWindow now confines the mouse pointer to the confine window.
4180         - Added Win32ClipCursor and Win32GetClipCursor.
4181
4182         * Control.cs: 
4183         - Added CaptureWithConfine to be able to capture and confine 
4184         mouse pointer.
4185         
4186         * InternalWindowManager.cs: 
4187         - Call CaptureWithConfine instead of Capture if we're an
4188         MdiChild (fixes #79982).
4189
4190 2006-12-21  Chris Toshok  <toshok@ximian.com>
4191
4192         * DataGrid.cs: guard against the initial state of selection, where
4193         selection_start == -1.  make sure we only select from index >= 0.
4194         Fixes bug #80291.
4195
4196 2006-12-21  Chris Toshok  <toshok@ximian.com>
4197
4198         * Control.cs: we don't need to be so draconian with
4199         UpdateDistances, and we thusly don't need to call it before
4200         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
4201
4202 2006-12-21  Daniel Nauck  <dna@mono-project.de>
4203
4204         * ComboBox.cs,
4205         TextBox.cs: Implemented AutoComplete properties.
4206
4207 2006-12-20  Chris Toshok  <toshok@ximian.com>
4208
4209         * DataGridView*.cs: some corecompare work.
4210
4211 2006-12-20  Jackson Harper  <jackson@ximian.com>
4212
4213         * XplatUIX11.cs: We need to hide the caret when deleting it,
4214         otherwise you get carets left lying around everywhere.
4215         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
4216         prevents getting some weird half drawn caret tracers when
4217         scrolling.
4218         * TextControl.cs: Attempt to reduce the number of times we need to
4219         recreate the caret.
4220
4221 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
4222
4223         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
4224
4225 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4226
4227         * DateTimePicker.cs:
4228         - Implemented missing 2.0 bits.
4229         - Changed some default values to match MS.
4230         
4231 2006-12-20  Jackson Harper  <jackson@ximian.com>
4232
4233         * TextBoxBase.cs: When changing the font across the document we
4234         can't recalculate after changing each line, since that will cahnge
4235         the line count.
4236         - PreferredHeight is a little different than i thought.
4237         - When backspacing, move the caret before we do the actual char
4238         delete, because when that delete crosses a wrap boundary the
4239         positional information will change.
4240
4241 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4242
4243         * Control.cs: Added some missing 2.0 bits: 
4244         BackgroundImageLayout, BackgroundImageLayoutChanged, 
4245         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
4246         add IBindableComponent and IDropTarget implementation.
4247         
4248         * MonthCalendar.cs: 
4249         - Added all missing 2.0 features:
4250         BackgroundImageLayout, RightToLeftLayout, 
4251         OnHandleDestroyed, RightToLeftLayoutChanged, 
4252         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
4253         PaddingChanged.
4254         - Rewrote all the BoldDate code, it was completely broken.
4255         - Fixed all the tests (the tests can now be re-enabled, the
4256         problems were not with the tests, but with the control, it was
4257         mostly broken).
4258         
4259         * DateTimePicker.cs: Changed the location where the 
4260         MonthCalendar is shown.
4261         
4262 2006-12-19  Chris Toshok  <toshok@ximian.com>
4263
4264         * DataGridView.cs: add IDropTarget implementation.
4265
4266         * ToolStripPanel.cs: add IDropTarget implementation.
4267
4268 2006-12-19  Jackson Harper  <jackson@ximian.com>
4269
4270         * TextControl.cs: soft now means something different than what it
4271         used to mean, we want to move the caret regardless of whether or
4272         not this break was soft (would we really have wanted the caret
4273         to not move with the break in the old context?)
4274         * TreeView.cs: Make sure we factor in the vert scrollbar when
4275         calculating the horizontal scrollbar's maximum.
4276
4277 2006-12-19  Andreia Gaita  <avidigal@novell.org>
4278
4279         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
4280         check for keywords in alternate casing, close bug #80049.
4281
4282 2006-12-19  Chris Toshok  <toshok@ximian.com>
4283
4284         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
4285         methods (which all do nothing).
4286
4287         * IDropTarget.cs: add the 4 missing methods.
4288
4289 2006-12-19  Chris Toshok  <toshok@ximian.com>
4290
4291         * TableLayoutRowStyleCollection.cs: corcompare work.
4292         
4293         * TableLayoutSettings.cs: same.
4294
4295         * TableLayoutStyle.cs: same.
4296
4297         * TableLayoutColumnStyleCollection.cs: same.
4298
4299 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
4300
4301         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
4302         TableLayoutPanel I've had in my local tree for way too long.
4303
4304 2006-12-19  Miguel de Icaza  <miguel@novell.com>
4305
4306         * TableLayoutSettings.cs: Finish the public API (still needs all
4307         the logic to update on changes). 
4308
4309         * TableLayoutPanelCellPosition.cs: new file.
4310         
4311         * TableLayoutRowStyleCollection.cs,
4312         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
4313         TableLayoutSettings.cs: Track the final 2.0 table api.
4314
4315 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4316
4317         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
4318         and Image List 2.0 members for ColummnHeader.
4319         * ListView.cs: Add key-related 2.0 methods for
4320         ColumnHeaderCollection.
4321
4322 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
4323
4324         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
4325         ArgumentNullException if items argument is null. Ignore null item in
4326         arrays. Removed extra tabs.
4327
4328 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
4329
4330         * MonthCalendar.cs: Fixed InvalidCastException.
4331
4332 2006-12-19  Jackson Harper  <jackson@ximian.com>
4333
4334         * TextControl.cs: Don't increment the position here.
4335         - When calculating char positions only add in the line break size
4336         for hard line breaks.
4337
4338 2006-12-19  Andreia Gaita  <avidigal@novell.org>
4339
4340         * SendKeys.cs: Changed some things to match ms.net behaviour
4341         when parsing shifted capital letters.
4342         
4343         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
4344         Add window handle as parameter to SendInput. X11 needs the 
4345         window handle, and the handle being passed      to it in the keys 
4346         queue is the active control handle (which windows needs), not 
4347         the window handle.
4348         
4349         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
4350         to support SendKeys on X.       
4351         
4352         * X11Keyboard: Implement helper method to lookup a linux keycode
4353         given the virtual keycode. Added table of keycode-2-virtualkey
4354         values to support this.
4355
4356 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4357
4358         * ListView.cs: Add support for SelectedIndexCollection
4359         and SelectedItemCollection 2.0 methods. Implement support
4360         for ImageKey too.
4361         * ListViewItem.cs: Add support for ListViewSubItemCollection
4362         2.0 methods. Also, fix an incorrect behavior of AddRange method
4363         (it shouldn't call Clear).
4364         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
4365
4366 2006-12-19  Jackson Harper  <jackson@ximian.com>
4367
4368         * RichTextBox.cs: 
4369         * TextBoxBase.cs: New args for FormatText
4370         * TextControl.cs: Rewrote the main drawing method, this version
4371         feels a little easier to understand and debug to me.  Hopefully it
4372         does to others also
4373         - Fix FormatText to OR in the new formating values.  Added
4374         FormatSpecified param, basically this works in the same way as
4375         BoundsSpecified in Control.
4376         - Set the caret properties when the caret is positioned.
4377         - When wrapping text make sure that we calculate the width of the
4378         last character
4379         - when calculating alignments we might have wrapped down to the
4380         next line, so don't search for an individual tag, search for the
4381         end of the line
4382         - We need to invalidate the selection area when we replace the
4383         selection.
4384         
4385 2006-12-19  Daniel Nauck  <dna@mono-project.de>
4386
4387         * Application.cs: add Restart () 2.0 support
4388
4389 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4390
4391         * MenuItem.cs: Invalidate menu item rectangle after change Enable
4392         property. Fixes #80268.
4393         
4394 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4395
4396         * MenuAPI.cs: Dont trigger select event when closes top menu
4397         item. Fixes #80270.
4398
4399 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4400
4401         * MenuAPI.cs: When you click on menuitem only trigger onselect
4402         event for top menu itens. Fixes #80271.
4403         
4404 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4405
4406         * MdiWindowManager.cs: Make IconicBounds depend on
4407         the bottom of MdiClient, not the top (fixes #80267)
4408         
4409 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4410
4411         * MdiClient.cs: Added missing 2.0 attribute
4412
4413 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4414
4415         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
4416         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
4417
4418 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4419
4420         * MenuAPI.cs: Fix click when menuitem is not popup,
4421         this regression was caused by last commit (#80272).
4422
4423 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
4424
4425         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
4426         fire click event or close menu. Fixes #80272.
4427
4428 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4429
4430         * ListViewHitTestInfo.cs: add
4431
4432 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4433
4434         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
4435         * FlatButtonAppearance.cs: add
4436         * DockingAttribute.cs: add
4437
4438 2006-12-17  Chris Toshok  <toshok@ximian.com>
4439
4440         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
4441         and rebind our columns when it does - this way, if you make
4442         changes to the DataTable (or set the Table attribute on a DataView
4443         after setting it as the DataGrid's DataSource, the changes are
4444         made visible.)  Fixes bug #80107.
4445
4446 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4447
4448         * ListViewGroup.cs: add internal Location property for layouting.
4449         * Theme.cs: add abstract ListViewGroupHeight function.
4450         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
4451
4452 2006-12-16  Andreia Gaita  <avidigal@novell.com>
4453
4454         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
4455         Added reset of selected index to 0 when adding first tab page.
4456         Fixes #80264
4457         
4458         * NumericUpDown.cs: Fix NET_2_0 check
4459
4460 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4461
4462         * ListViewGroup.cs: fixed DefaultValueAttribute value
4463
4464 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4465
4466         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
4467
4468 2006-12-15  Miguel de Icaza  <miguel@novell.com>
4469
4470         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
4471         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
4472         ScrollableControl.cs: Add a handful of methods that are
4473         overwritten in 2.0 
4474
4475 2006-12-15  Chris Toshok  <toshok@ximian.com>
4476
4477         * XplatUIWin32.cs: initial implementation of the Reversible
4478         drawing functions.  there are some problems.  DrawReversibleFrame
4479         doesn't seem to work at all for Dashed FrameStyle, and in the
4480         Thick case there are drawing errors at the corners (we probably
4481         need to bind Rectangle instead of doing moveto/lineto's.)
4482
4483 2006-12-16  Andreia Gaita  <avidigal@novell.com>
4484         
4485         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
4486         to send blocks of key messages. Send accumulates keys to send with Flush, 
4487         while SendWait sends all keys immediately.
4488                 
4489         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
4490         XplatUIX11.cs,  XplatUIX11-new.cs:
4491         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
4492         to Win32 SendInput.
4493         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
4494         
4495         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
4496         testing for ms.net on this class is very tricky, as the tests run too fast 
4497         to allow the hook to release, essentially freezing the keyboard and the 
4498         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
4499         category :p
4500
4501 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4502
4503         * Padding.cs: fixed serialization compability to MS ("_var" field names),
4504                         added missing attributes.
4505  
4506 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4507
4508         * ListViewGroup.cs: Added missing attributes.
4509         * ListViewGroupCollection.cs: Added missing attributes.
4510
4511 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4512
4513         * ListViewItem.cs: fixed ListViewSubItem text property.
4514
4515 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4516         
4517         * Control.cs: Added missing 2.0 attributes
4518         
4519 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4520         
4521         * MdiClient.cs: Added missing 2.0 attribute.
4522         * MonthCalendar.cs: Added some missing 2.0 attributes 
4523         and properties.
4524         
4525 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4526
4527         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
4528
4529 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
4530
4531         * MainMenu.cs: Add the new 2.0 constructor to help out people
4532         using the MainMenu in VS2005.
4533
4534 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4535         
4536         * MdiChildContext.cs: Removed it, no longer used.
4537         * MdiClient.cs: Added missing 2.0 attributes.
4538         
4539 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4540         
4541         * InternalWindowManager.cs: Fix a NullRef with previous 
4542         changes for toolwindows.
4543         
4544 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4545
4546         * Control.cs: 
4547         - Added AfterTopMostControl to allow for certain controls 
4548         to always stay on top when normal controls are brought to 
4549         front.
4550         
4551         * XplatUIWin32.cs: 
4552         - (DrawInversibleRectangle): Get window rectangle from Win32 
4553         in stead of from control, since Win32 doesn't calculate
4554         screen coords correctly from control's Location if it 
4555         have docked siblings.
4556         
4557         * MdiWindowManager.cs:
4558         - Correct the control menu popup location when clicked on
4559         the maximized form icon. (fixes #80223.1)
4560         - Don't show moving rectangle if mouse hasn't moved from
4561         the original clicked point.
4562         - Removed FormGotFocus handler (not used).
4563         - Calculate the control buttons location from the main
4564         window's size and not client size (fixes #79770).
4565         - Form is now closed when the form icon is double-clicked
4566         (fixes #79775). 
4567         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
4568         
4569         * InternalWindowManager.cs:
4570         - Moved some MDI-only methods to MdiWindowManager.
4571         - Removed unused properties and methods.
4572         - Unified method naming for methods handling wm messages.
4573         - Moved all message handling to seperate methods for
4574         each message.
4575         
4576         * ThemeWin32Classic.cs:
4577         - DrawManagedWindowDecorations now draws the title bar 
4578         with a gradient brush.
4579         - Add a CPDrawButtonInternal that allows us to specify
4580         light, normal and dark colors for the buttons (control 
4581         buttons for MDI children were drawn with the same light
4582         color as the background, therefore loosing the 3D effect).
4583         
4584         * SizeGrip.cs:
4585         - Add a CapturedControl property that is used to 
4586         determine the control to resize (defaults to parent). 
4587         Needed for MdiClient, since its SizeGrip's parent is
4588         MdiClient, but the control to resize is the main form.
4589         
4590         * MdiClient.cs:
4591         - Set SizeGrip's CapturedControl to the main form in order
4592         to resize the main form and not the MdiClient.
4593         - Override AfterTopMostControl to leave the scrollbars 
4594         always on top.
4595
4596 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4597
4598         * ListView.cs: fixed ListViewItemCollection AddRange and
4599                         implemented ListViewItemCollection AddRange 2.0 support.
4600
4601 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4602
4603         * ListViewGroup.cs: Add.
4604         * ListViewGroupCollection.cs: Add
4605         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
4606         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
4607                                 stub for ImageKey 2.0 support.
4608
4609 2006-12-14  Mike Kestner  <mkestner@novell.com>
4610
4611         * ListView.cs: add text padding to the autocalculation for columns
4612         of width -2.  Fixes #80207.
4613  
4614 2006-12-14  Mike Kestner  <mkestner@novell.com>
4615
4616         * ListView.cs: add some index guarding for partial row navigation 
4617         logic.  Fixes #80250.
4618
4619 2006-12-14  Mike Kestner  <mkestner@novell.com>
4620
4621         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
4622         are added or inserted to the collection.  Fixes #81099.
4623
4624 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
4625
4626         * MenuAPI.cs: Closes menu when right click out side of popup
4627         it fix problem in ContextMenu and MainMenu. Fixes #80252.
4628
4629 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4630
4631         * ListViewItem.cs: Fix dumb error.
4632
4633         * ListView.cs: Add Find and ContainsKey methods in 
4634         ListViewItemCollection, and also return true for IsReadOnly
4635         and IsFixedSize (changes for 2.0). 
4636
4637 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
4638
4639         * Control.cs: Allow Region to be set to null.
4640
4641 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4642
4643         * MdiWindowManager.cs: Remove unused (commented out) code.
4644         * Form.cs: When the MdiChild is maximized, the form needs 
4645         WM_NCMOUSELEAVE, so request it.
4646         * InternalWindowManager.cs: 
4647         - Added tooltips to control buttons.
4648         - Removed duplicated control button handling code.
4649         - Removed unused (commented out) code.
4650         
4651 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
4652
4653         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
4654         was used because we must set cursor without trigger ChangeCursor event
4655         and without change Cursor control property. Fixes #79963.
4656
4657 2006-12-12  Andreia Gaita  <avidigal@novell.com>
4658         
4659         * Control.cs: Check if Region setter value is null, and ignore
4660
4661 2006-12-12  Jackson Harper  <jackson@ximian.com>
4662
4663         * TextControl.cs: We were almost always drawing one more line then
4664         needed, since the GetLineByPixel will return the last line found
4665         at that pixel. In most cases though, we were invalidating up to
4666         the junction between two lines.
4667         - Improve debug code.
4668
4669 2006-12-12  Chris Toshok  <toshok@ximian.com>
4670
4671         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
4672         and FillReversibleRectangle.
4673
4674         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
4675         and FillReversibleRectangle.
4676
4677         * XplatUIWin32.cs: add stubs which do nothing for
4678         DrawReversibleFrame, DrawReversibleLine, and
4679         FillReversibleRectangle.
4680
4681         * XplatUIOSX.cs: add stubs which raise NIE for
4682         DrawReversibleFrame, DrawReversibleLine, and
4683         FillReversibleRectangle.
4684
4685         * XplatUIX11.cs: add working implementation for
4686         DrawReversibleFrame, DrawReversibleLine, and
4687         FillReversibleRectangle.
4688         
4689         * ControlPaint.cs: implement DrawReversibleFrame,
4690         DrawReversibleLine, and FillReversibleRectangle, by calling into
4691         the appropriate XplatUI method.
4692
4693 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4694
4695         * Form.cs: Make MdiClient have the focus even if it's
4696         not selectable, since it should receive WM_KEY* and WM_MOUSE 
4697         messages. Fixes #79907.
4698         
4699 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4700
4701         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
4702         queried after the window is created.
4703         
4704         * XplatUIX11.cs: Added SendParentNotify to implement 
4705         WM_PARENTNOTIFY logic. Fixes #79965.
4706         
4707         * Control.cs: Added MakeParam.
4708         
4709 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4710
4711         * MdiClient.cs: Resume Layout before setting window
4712         states (fixes #80201).
4713
4714 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4715
4716         * MenuAPI.cs: Deselect a menu item after performing
4717         the click (fixes #80197).
4718
4719 2006-12-11  Jackson Harper  <jackson@ximian.com>
4720
4721         * TextBoxBase.cs: We need to cap this value, since Maximum -
4722         ViewPortHeight can be less than zero.
4723         - Only do selection with the left mouse button.
4724         * TextBox.cs: Don't tell the world that we have a context menu.
4725         * Control.cs: New method so that we can control whether or not the
4726         context menu is visible outside MWF.
4727
4728 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4729
4730         * ToolBarButton.cs: Fix text positon. 
4731
4732 2006-12-11  Miguel de Icaza  <miguel@novell.com>
4733
4734         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
4735
4736         * Control.cs (DoubleBuffered): Add implementation.
4737
4738         * Application.cs (OpenForms): Add.
4739
4740 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4741
4742         * Form.cs: Use opacity instead of Opactiy to determine if we need
4743         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
4744
4745 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4746
4747         * Control.cs: Fix NRE if Control.Site was set to null.
4748
4749 2006-12-11  Chris Toshok  <toshok@ximian.com>
4750
4751         * Control.cs: ControlCollection.Remove should return if the arg is
4752         null, and ControlCollection.SetChildIndex should raise a ANE.
4753
4754 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
4755
4756         * Control.cs: Verify value set for Dock property. Code formatting
4757         updates.
4758
4759 2006-12-11  Jackson Harper  <jackson@ximian.com>
4760
4761         * TextControl.cs: Draw the caret and the selection when a flag is
4762         set on the owner.
4763         * TextBoxBase.cs: We want to draw the caret and the selection for
4764         TextBox but not for TextBoxBase.
4765         - If the window is resized and scrolling is no longer needed (the
4766         whole doc is visible) set the scroll position to zero.
4767         - The default SelectWord (the one TextBox uses) should move the
4768         caret to the end of the word.
4769         - SelectAll moves the caret to the end of the selection.
4770         * TextBox.cs: We don't selectall on focus, we just do it when the
4771         control is created.
4772         
4773 2006-12-11  Mike Kestner  <mkestner@novell.com>
4774
4775         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
4776
4777 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4778
4779         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
4780         2.0 support.
4781         * ListViewItem.cs: Add Name 2.0 property.
4782
4783 2006-12-11  Andreia Gaita  <avidigal@novell.com>
4784
4785         * TabControl.cs: Set visibility on selected or default tab 
4786         when tabcontrol handle is created, so that it's contents
4787         actually show up (duh). Fixes #80193
4788         Don't redraw the control if there is no handle created, as
4789         the selected index might be completely invalid. Added some tests
4790         to check for this.
4791
4792 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4793
4794         * ToolBar.cs: Uses maximun width and height of all buttons as 
4795         button rectangle when ButtonSize specified, it looks strange but
4796         is what happens in Win32. Fixes #80189.
4797
4798 2006-12-11  Jackson Harper  <jackson@ximian.com>
4799
4800         * TextControl.cs: Need to track undo levels ourself, since
4801         compound actions will mess them up.
4802
4803 2006-12-10  Andreia Gaita  <avidigal@novell.com>
4804
4805         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
4806         SelectedIndex value is changed (even if it's not valid).
4807         Reset SelectedIndex to 0 when the handle is created and if
4808         the current index is invalid.
4809         Fixes SelectdeIndex unit tests and #80128
4810
4811 2006-12-08  Chris Toshok  <toshok@ximian.com>
4812
4813         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
4814         calls EndEdit, it needs to be called before we set current_cell to
4815         its new value.  Otherwise, we end up committing the value in the
4816         textbox to the new cell as well.  Fixes bug #80160.
4817
4818 2006-12-08  Chris Toshok  <toshok@ximian.com>
4819
4820         * Form.cs (set_CancelButton): if the button's DialogResult is
4821         None, set it to Cancel.  Fixes bug 80180.
4822
4823 2006-12-08  Jackson Harper  <jackson@ximian.com>
4824
4825         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
4826         to watch ourselves when setting the canvas size and setting the
4827         scrollbar values.
4828
4829 2006-12-08  Chris Toshok  <toshok@ximian.com>
4830
4831         * DataGrid.cs: comment out the two MakeTransparent calls for the
4832         time being so people using trunk (and not 1.2.2) on windows can
4833         actually use the datagrid.  This deals with bug #80151.
4834
4835 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4836
4837         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
4838         Graphics.DrawImage (image, int, int, int, int) overload instead
4839         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
4840         the dpi difference and was blurring images it drew.
4841         [Fixes bug #79960]
4842
4843 2006-12-08  Chris Toshok  <toshok@ximian.com>
4844
4845         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
4846         rowcnt is 0 (such as with an empty datasource), and make sure we
4847         initialize not_usedarea.Y to cells.Y, so we don't draw over the
4848         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
4849
4850 2006-12-08  Chris Toshok  <toshok@ximian.com>
4851
4852         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
4853         grid.
4854
4855 2006-12-08  Chris Toshok  <toshok@ximian.com>
4856
4857         [ Fixes bug #80167 ]
4858         
4859         * ThemeWin32Classic.cs: don't draw the image if the button's flat
4860         style is FlatStyle.System.
4861
4862         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
4863         ButtonBase.flat_style private, and switch uses of it to the public
4864         property.
4865         
4866 2006-12-08  Chris Toshok  <toshok@ximian.com>
4867
4868         [ Fixes bug #80121 ]
4869         
4870         * ThemeWin32Classic.cs: center the caption text in the datagrid
4871         when we draw it.
4872
4873         * DataGrid.cs: lessen the amount we add to the caption height from
4874         6 to 2.  6 was making it huge.
4875
4876 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4877
4878         * UpDownBase: Handle MouseWheel call directly instead of capturing
4879         the inner textbox's OnMouseWheel. Fixes #80166
4880
4881 2006-12-08  Jackson Harper  <jackson@ximian.com>
4882
4883         * TextControl.cs: We need to invalidate the textbox when we empty
4884         it (how had this not been discovered before?)
4885
4886 2006-12-08  Jackson Harper  <jackson@ximian.com>
4887
4888         * TextBoxBase.cs: Reworked the mouse down code so I could get it
4889         to behave like MS, we now ignore the eventargs.Click and just
4890         track state ourself, which we were already doing anyways.
4891         - Constrain the double click handler to the double click size.
4892         
4893 2006-12-08  Chris Toshok  <toshok@ximian.com>
4894
4895         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
4896         direction if that scrollbar isn't shown.  fixes bug #80158.
4897
4898 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4899
4900         * NumericUpDown.cs: Update value on getter. Fixes #79950
4901
4902 2006-12-08  Chris Toshok  <toshok@ximian.com>
4903
4904         * MenuItem.cs: add back in the event cloning code.  I didn't know
4905         how to do it in the face of the EventHandlerList work i'd done
4906         last week.  Fixes bug #80183.
4907
4908 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4909
4910         * Control.cs: Add an invalidate to the BackgroundImage setter.
4911         [Fixes 80184]
4912
4913 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4914
4915         * ToolStrip*: Add some small properties reported by MoMA, fix event
4916         firing and default properties based off of unit tests, and add some
4917         attributes based off of the class status page.
4918
4919 2006-12-07  Jackson Harper  <jackson@ximian.com>
4920
4921         * TextBoxBase.cs: Take HideSelection into account when determining
4922         whether or not to show the selection.
4923         * RichTextBox.cs: After inserting the RTF into the document move
4924         the cursor to the beginning of the document.
4925
4926 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4927
4928         * Control.cs: Remove static ArrayList "controls" which maintained
4929         a reference to every control created.
4930         * Application.cs: Create a static FormCollection to maintain a reference
4931         to every form created.  Use it in places that formerly enumerated through
4932         the controls one looking for forms.
4933         * Form.cs: Add and remove self from above FormCollection.
4934
4935 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
4936
4937         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
4938           not libgdk (though it makes me wonder why I didn't have any
4939           problems)
4940
4941 2006-12-07  Chris Toshok  <toshok@ximian.com>
4942
4943         [ you had to know this was coming after that last commit...]
4944         
4945         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
4946         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
4947         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
4948         XCopyArea).
4949
4950 2006-12-07  Chris Toshok  <toshok@ximian.com>
4951
4952         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
4953         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
4954         all the behavior we need for double buffering.
4955
4956         * XplatUIDriver.cs: implement the 3 double buffer methods using a
4957         client side Bitmap, just like the old Control-based double buffer
4958         code did.  The methods are virtual, so each XplatUI driver
4959         subclass can replace the implementation to use a faster, platform
4960         specific approach.
4961
4962         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
4963         double buffer code, and clean things up a bit in the process.
4964
4965 2006-12-06  Chris Toshok  <toshok@ximian.com>
4966
4967         * Control.cs: reindent WndProc.
4968
4969 2006-12-06  Chris Toshok  <toshok@ximian.com>
4970
4971         [ I wanna be like BenM when I grow up ]
4972         
4973         * Hwnd.cs: create a single static Graphics object on the static
4974         Bitmap we create.  use this for our text measurements.
4975
4976         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
4977         This was causing us to allocate a backbuffer for every control,
4978         even when it wasn't flagged as double buffered.  Instead use the
4979         single graphics instance.  This might have implications for
4980         multithreaded applications.  If we run into problems we can switch
4981         to creating 1 Graphics per control, on the static Hwnd bitmap.
4982
4983         this change nets us a 7M savings in private dirty mappings when
4984         running FormsTest.exe.
4985
4986 2006-12-06  Chris Toshok  <toshok@ximian.com>
4987
4988         * ListView.cs: the BackgroundImage override is just to set
4989         attributes.  chain up to base.BackgroundImage.
4990
4991         * RichTextBox.cs: same.
4992
4993         * ToolBar.cs: same, but we need to also redraw the toolbar when it
4994         changes, so instead a handler for BackgroundImageChanged.
4995         
4996         * Control.cs: make background_image private.
4997
4998 2006-12-06  Chris Toshok  <toshok@ximian.com>
4999
5000         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
5001         sure we even need this assignment, but roll with it for now.
5002
5003         * Control.cs: make the cursor field private.
5004
5005 2006-12-06  Chris Toshok  <toshok@ximian.com>
5006
5007         * Form.cs: we don't need to explicitly set ImeMode to
5008         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
5009         behavior in the face of ImeMode.Inherit.
5010
5011         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
5012         change the ctor's assignment to use ImeMode instead of ime_mode.
5013
5014         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
5015         ImeModeInherit.  Only check for the parent's imemode (and return
5016         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
5017         This fixes the button unit test, which sets both ImeMode and
5018         DefaultImeMode to ImeMode.Disable.
5019
5020         also make the ime_mode field private.
5021
5022 2006-12-06  Chris Toshok  <toshok@ximian.com>
5023
5024         * Control.cs: make control_style private.
5025
5026         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
5027         setting the styles to true, then setting them to false instead of
5028         reverting to their previous values.
5029
5030         also, call SetStyle on the scrollbars instead of using
5031         control_style directly.
5032
5033 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
5034
5035         * FormCollection.cs: Implement. [2.0]
5036
5037 2006-12-06  Chris Toshok  <toshok@ximian.com>
5038
5039         * Control.cs: make tab_stop private.
5040
5041         * Label.cs: set TabStop, not tab_stop.  reformat some event
5042         add/remove methods to make them more compact.
5043
5044 2006-12-06  Chris Toshok  <toshok@ximian.com>
5045
5046         * RadioButton.cs: fix TabStop handling.
5047
5048 2006-12-06  Chris Toshok  <toshok@ximian.com>
5049
5050         * TextBox.cs: remove the explicit assignments to has_focus.
5051         Control does that.
5052
5053         * ButtonBase.cs: remove the assignment to has_focus.  Control will
5054         manage that.
5055         
5056 2006-12-06  Chris Toshok  <toshok@ximian.com>
5057
5058         * ButtonBase.cs: remove all uses of is_enabled from this code.
5059         it's always true when any of the code containing the checks is
5060         executed.
5061
5062 2006-12-06  Chris Toshok  <toshok@ximian.com>
5063
5064         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
5065         with different semantics (some are present in both 1.1 and 2.0
5066         profiles) so that we match MS's behavior in our unit tests.
5067
5068 2006-12-06  Jackson Harper  <jackson@ximian.com>
5069
5070         * TextControl.cs: Make this operation undoable.
5071         * TextBoxBase.cs: Factor the border width into the preferred
5072         height.
5073         - implement Modified as per the spec.
5074
5075 2006-12-06  Chris Toshok  <toshok@ximian.com>
5076
5077         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
5078
5079 2006-12-06  Chris Toshok  <toshok@ximian.com>
5080
5081         * Control.cs: make right_to_left and context_menu fields private.
5082
5083 2006-12-06  Chris Toshok  <toshok@ximian.com>
5084
5085         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
5086         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
5087         Control.child_controls private.  switch all uses over to
5088         Control.Controls.
5089
5090 2006-12-06  Chris Toshok  <toshok@ximian.com>
5091
5092         * System.Windows.Forms/GroupBox.cs,
5093         System.Windows.Forms/AccessibleObject.cs,
5094         System.Windows.Forms/ErrorProvider.cs,
5095         System.Windows.Forms/Control.cs,
5096         System.Windows.Forms/UpDownBase.cs,
5097         System.Windows.Forms/ScrollBar.cs,
5098         System.Windows.Forms/DateTimePicker.cs,
5099         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
5100         System.Windows.Forms/ToolTip.cs,
5101         System.Windows.Forms/RadioButton.cs,
5102         System.Windows.Forms/LinkLabel.cs,
5103         System.Windows.Forms/Splitter.cs,
5104         System.Windows.Forms/TextBoxBase.cs,
5105         System.Windows.Forms/ToolStripTextBox.cs,
5106         System.Windows.Forms/ContainerControl.cs,
5107         System.Windows.Forms/ThemeWin32Classic.cs,
5108         System.Windows.Forms/SizeGrip.cs,
5109         System.Windows.Forms/ToolStripDropDown.cs,
5110         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
5111         private.  switch all uses over to Control.Parent.
5112
5113 2006-12-06  Chris Toshok  <toshok@ximian.com>
5114
5115         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
5116         Control does this before calling emitting these events.
5117
5118         * TabControl.cs: same.
5119
5120         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
5121         Control.client_rect.
5122
5123         * ButtonBase.cs: use the ClientSize property instead of the
5124         client_size field.
5125
5126         * ScrollableControl.cs: same.
5127
5128         * Control.cs: another pass at making properties private.  also,
5129         move the initialization of tab_stop to the ctor.
5130
5131 2006-12-05  Andreia Gaita <avidigal@novell.com>
5132
5133         * TabControl.cs: Let the selected index be set freely if the 
5134         control handle is not yet created.
5135
5136 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
5137
5138         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
5139         internal until I can rewrite DefaultLayout.
5140         * ToolStrip.cs: Fix build error and some general cleaning.
5141         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
5142         Fix build errors caused by making some of Control's fields private.
5143
5144 2006-12-05  Jackson Harper  <jackson@ximian.com>
5145
5146         * TextControl.cs: Redo Insert a little so that it use IndexOf
5147         instead of Split, this prevents it from messing up on things like
5148         \n\n\n. Also more effecient since the split array doesn't need to
5149         be created.
5150         * TextBoxBase.cs: AppendText doesnt handle multiline and non
5151         multiline text differently, this is the first of many fixes that
5152         will make multiline/non-multiline the same thing as far as the
5153         TextBoxBase is concerned.
5154         - Don't split the text and insert lines, this can lose some line
5155         endings (like is the last line a soft or hard break). Instead use
5156         the new Insert.
5157         - Fix an off by one when combining all the lines in the Text
5158         getter.
5159         - Remove separate multiline handling from the Text getter/setter.
5160
5161 2006-12-05  Chris Toshok  <toshok@ximian.com>
5162
5163         * ButtonBase.cs: a few changes:
5164
5165         - don't reinitialize internal Control fields in the ctor when they
5166         have the same values as Control sets them.
5167
5168         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
5169         this before calling those methods.
5170
5171         - we don't need to call Refresh for anything.  use Invalidate
5172         instead.
5173
5174         - OnEnabledChanged doesn't need to redraw at all - Control.cs
5175         calls Refresh in its OnEnabledChanged.
5176         
5177         - several of the events we were registered for in the ctor to
5178         redraw ourselves already include calls to Invalidate in the
5179         property setters that raise the events.  remove the extra
5180         invalidation.
5181
5182         - reformat a switch statement that was 83274658 columns wide.
5183         
5184 2006-12-05  Mike Kestner  <mkestner@novell.com>
5185
5186         * ComboBox.cs: fix a unit test regression from a TextBox
5187         SelectionLength return of -1 when there's no selection.  
5188
5189 2006-12-05  Chris Toshok  <toshok@ximian.com>
5190
5191         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
5192         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
5193         cleaning up some of the internal Control fields being used by
5194         subclasses.
5195
5196 2006-12-05  Mike Kestner  <mkestner@novell.com>
5197
5198         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
5199         listbox after AddImplicit calls since it defaults to hidden. Add a 
5200         hack to preserve requested heights across DropDownStyle changes.
5201
5202 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
5203
5204         * PropertyGrid.cs: Hide FindFirstItem method from public API.
5205
5206 2006-12-05  Chris Toshok  <toshok@ximian.com>
5207
5208         * DataGridView.cs: fix compiler warnings.
5209
5210         * PrintControllerWithStatusDialog.cs: same.
5211
5212         * ToolBar.cs: same.
5213
5214         * FolderBrowserDialog.cs: same.
5215
5216         * Splitter.cs: same.
5217
5218         * DataGridViewComboBoxCell.cs: same.
5219
5220         * XplatUIWin32.cs: same.
5221
5222         * PictureBox.cs: same.
5223
5224         * Win32DnD.cs: same.
5225
5226         * PageSetupDialog.cs: same.
5227
5228         * FileDialog.cs: same.
5229
5230         * PrintDialog.cs: same.
5231
5232         * DataGridTextBoxColumn.cs: same.
5233
5234         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
5235
5236 2006-12-05  Chris Toshok  <toshok@ximian.com>
5237
5238         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
5239         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
5240         System.ComponentModel.EventHandlerList work.
5241
5242 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
5243
5244         * DrawTreeNodeEventArgs.cs: Added.
5245
5246 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5247         
5248         * InternalWindowManager.cs: Remove an unused field.
5249         
5250 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5251
5252         * InternalWindowManager.cs:
5253         - Save the point where the title bar is clicked.
5254         
5255         * MdiWindowManager.cs:
5256         - Only allow moving of the window as long as the 
5257         clicked point on the title bar does not get out of
5258         MdiClient's rectangle. Fixes #79982.
5259         
5260         * MdiClient.cs:
5261         - Added Horizontal/VerticalScrollbarVisible.
5262         - Simplified the scrollbar sizing algorithm.
5263         - Cache the difference in scrolled value in
5264         H/VBarValueChanged and move the calculation out
5265         of the for loop.
5266
5267 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5268
5269         * Control.cs: Make the Console.WriteLine in WndProc 
5270         write more info.
5271
5272 2006-12-05  Chris Toshok  <toshok@ximian.com>
5273
5274         * ToolStripManager.cs, ToolStripButton.cs,
5275         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
5276         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
5277         ToolStripSplitButton.cs, ToolStripSeparator.cs,
5278         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
5279         ToolStripProgressBar.cs, ToolStripContainer.cs,
5280         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
5281         to using System.ComponentModel.EventHandlerList.
5282
5283 2006-12-04  Chris Toshok  <toshok@ximian.com>
5284
5285         * LinkLabel.cs: fix up compiler warnings.
5286
5287         * TableLayoutSettings.cs: same.
5288
5289         * TreeView.cs: same.
5290
5291         * ToolBar.cs: same.
5292
5293         * TabControl.cs: same.
5294
5295         * RichTextBox.cs: same.
5296
5297         * ListViewItem.cs: same.
5298
5299         * PropertyGrid.cs: same.
5300
5301         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
5302
5303         * ToolTip.cs same.
5304
5305         * TextRenderer.cs: fix up compiler warnings.
5306
5307         * Label.cs: same.
5308
5309         * Form.cs: corcompare fixes.
5310
5311         * PictureBox.cs: fix up compiler warnings.
5312
5313         * ImageListStreamer.cs: same.
5314
5315         * TrackBar.cs: corcompare fix.
5316
5317         * Control.cs: fix up compiler warnings.
5318
5319         * SplitterPanel.cs: same.
5320
5321         * NumericTextBox.cs: same.
5322
5323         * ImageList.cs: same.
5324
5325         * StatusStrip.cs: same.
5326
5327         * ProgressBar.cs: corcompare fix.
5328
5329         * ToolStripButton.cs: fix up compiler warnings.
5330
5331         * ToolStripStatusLabel.cs: same.
5332
5333         * ToolStripSplitButton.cs: same.
5334
5335         * ToolStripSeparator.cs: same.
5336
5337         * ToolStripProgressBar.cs: same.
5338
5339         * ToolStripDropDownMenu.cs: same
5340
5341         * ToolStripDropDown.cs: same.
5342
5343         * ToolStripDropDownButton.cs: same.
5344
5345         * ToolStrip.cs: same.
5346
5347         * ToolStripControlHost.cs: same.
5348
5349         * ToolStripContentPanel.cs: same.
5350
5351         * ToolStripDropDown.cs: same.
5352
5353         * ToolStripContainer.cs: same.
5354
5355         * ToolStripPanel.cs: same, and add "new" where we need it to work
5356         with the new ArrangedElementCollection.
5357
5358         * ToolStripItemCollection.cs: add "new" where we need it to work
5359         with the new ArrangedElementCollection.
5360
5361 2006-12-04  Andreia Gaita <avidigal@novell.com>
5362
5363         * TabControl.cs: Fix default tab selection to after TabControl
5364         gets focus and not before. Fixes #80128
5365
5366 2006-12-04  Chris Toshok  <toshok@ximian.com>
5367
5368         * DataGridTableStyle.cs: remove the gross calling of
5369         datagrid.Refresh from here.  It's a broken idea and it doesn't
5370         work anyway.
5371
5372         * DataGrid.cs: instead, just register/unregister from the
5373         DataGridTableStyle events in CurrentTableStyle.  we play it
5374         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
5375         even though some would most likely not require it.  Fixes bug
5376         #80115 (and one portion of #80117 as a side effect).
5377
5378 2006-12-04  Chris Toshok  <toshok@ximian.com>
5379
5380         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
5381         so the textbox (if any) goes away.  Fixes bug #80117.
5382
5383 2006-12-04  Chris Toshok  <toshok@ximian.com>
5384
5385         * DataGridColumnStyle.cs: set the column's readonly property
5386         initially based on the property descriptor's IsReadOnly.  Fixes
5387         bug #80044.
5388
5389 2006-12-04  Chris Toshok  <toshok@ximian.com>
5390
5391         * ComboBox.cs: wrap the dropdown style changing work in
5392         SuspendLayout/ResumeLayout.  Fixes bug #79968.
5393
5394 2006-12-04  Jackson Harper  <jackson@ximian.com>
5395
5396         * TextBoxBase.cs: Fix off by one, since these are one-based.
5397         * TextBox.cs: Select all the text when we get focus.  The TextBox
5398         does this but the RTB does not.
5399
5400 2006-12-04  Chris Toshok  <toshok@ximian.com>
5401
5402         * DataGridTextBoxColumn.cs: remove some spew.
5403
5404         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
5405         but some part of me is saying "it shouldn't be here.."  At any
5406         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
5407         setting the value.
5408
5409 2006-12-04  Chris Toshok  <toshok@ximian.com>
5410
5411         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
5412         to reassign the propertydescriptor.
5413
5414 2006-12-04  Jackson Harper  <jackson@ximian.com>
5415
5416         * TextBoxBase.cs:
5417         * TextControl.cs: Remove some unused variables.  Maybe this will
5418         patch things up between mike and I.
5419         - don't split lines less then one char wide, if the viewport is
5420         that small text won't be visible anyways.
5421         
5422 2006-12-04  Jackson Harper  <jackson@ximian.com>
5423
5424         * TextBoxBase.cs: Default selection length is -1, need to do some
5425         more testing on windows to see when this is used for the property.
5426         - Redid the Lines [] property to that we properly remove soft line
5427         breaks
5428         - added support for preserving carriage returns
5429         -  CanUndo is not a variable like 'is undo enabled' it just returns
5430         true if there is undo operations available.
5431         - AppendText doesn't need to grab the last tag itself anymore,
5432         this happens automatically when we move the cursor.
5433         * TextControl.cs: Add CompoundActions to the undo class. This
5434         allows combining the other operations into one big option.  ie a
5435         paste will combine { delete old, insert new, move cursor }
5436         - Add InsertString undo operation
5437         - New method for deleting multiline text
5438         - Add carriage returns to lines. So we can preserve carriage
5439         returns when text is 'roundtripped'
5440
5441 2006-12-04  Chris Toshok  <toshok@ximian.com>
5442
5443         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
5444         minimum 0.  Fixes the scrollbar exception in bug #80136.
5445
5446 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5447
5448         * MdiClient.cs: 
5449         * MdiWindowManager: Removed unused fields and methods.
5450         
5451 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5452         
5453         * StatusBar.cs: Update all panels when a AutoSize=Contents
5454         panel needs updating.
5455         
5456         * StatusBarPanel.cs: Remove twidth and only use initialize.
5457         Fixes #80031.
5458                 
5459 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5460
5461         * Form.cs: When a form's MdiParent is set add it directly
5462         on top of the z-order in stead of relying on MdiClient's
5463         ActivateChild to do it. Fixes #80135.
5464         
5465         * MdiClient.cs: 
5466         - Remove original_order, mdi_child_list is already doing
5467         the same thing.
5468         - Create mdi_child_list on construction in
5469         stead of first use (avoids a few null checks).
5470
5471         * MenuItem.cs: Use an already existing list of mdi children
5472         to get the correct order of children and remove the other
5473         redundant list.
5474
5475 2006-12-04  Chris Toshok  <toshok@ximian.com>
5476
5477         * PropertyGridView.cs: cached_splitter_location is only used in
5478         !DOUBLEBUFFER code.
5479
5480         * PropertyGrid.cs: implement the ComComponentNameChanged event
5481         using Events, hoping that would fix the warning.  Looks like a
5482         compiler bug instead (#80144).
5483
5484         * PropertyManager.cs: remove unused method.
5485
5486 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
5487
5488         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
5489         include parentesis to fix expression evaluation. Fixes #79634.
5490
5491 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
5492         
5493         * MenuAPI.cs:
5494         - Changes to fix behavior in Menu control, some reported in #80097
5495         and other detected during behavior refactory like a select event
5496         problems.
5497         - Remove unneded "if's" conditions.
5498         - Created an internal to flag when popup is active in control, we need 
5499         it because in .NET you can have menu active but without popup active
5500         when you active menu using popup without visible items.
5501         - Mimic win32 behavior for Select and Popup events.  
5502         - Dont open popup menu when you dont have visible subitems.
5503         - Do nothing when click on disabled menu item.
5504         - Some small changes to follow the coding style guidelines.
5505         - Unselect menu only when another control gives focus. Fixes #80097.
5506         - Remove unused code.
5507         
5508         * MenuItem.cs: internal VisibleItems method to check if menu
5509         theres visible subitems, it will be usefull to fix some 
5510         behavior in Menu control.
5511         
5512 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
5513         
5514         * Timer.cs: Tag property for 2.0 profile.
5515         
5516 2006-12-01  Chris Toshok  <toshok@ximian.com>
5517
5518         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
5519         
5520         * Win32DnD.cs: comment out some unused fields.
5521
5522         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
5523         some unused properties/methods.
5524
5525         * XplatUIX11.cs: fix MousePosition so we override the base class's
5526         property instead of conflicting with it.
5527
5528         * PictureBox.cs: comment out some unused fields
5529
5530         * OSXStructs.cs: make some struct fields public.
5531
5532         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
5533         MousePosition so we override the base class's property instead of
5534         conflicting with it.
5535
5536         * X11Dnd.cs: comment out some unused fields
5537
5538         * X11DesktopColors.cs: fix some struct field visibility to quiet
5539         the compiler.
5540
5541         * X11Dnd.cs: remove some debug code.
5542
5543         * ThemeClearlooks.cs: comment out unused field.
5544
5545         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
5546
5547         * ThemeGtk.cs: comment out some unused pinvokes.
5548
5549         * Timer.cs: remove some unused fields.
5550
5551         * ThemeClearlooks.cs: comment out unused field.
5552
5553         * UpDownBase.cs: comment out unused field.
5554
5555         * DataObject.cs: comment out unused field.
5556
5557         * DataGridBoolColumn.cs: reomve unused field.
5558
5559         * DataGrid.cs: remove unused field.
5560
5561         * Cursor.cs: remove old ToBitmap code.
5562
5563         * ControlPaint.cs: remove unused method.
5564
5565         * ScrollBar.cs: remove unused fields.
5566
5567         * ComboBox.cs: remove unused field, and chain up to
5568         AccessibleObject ctor.
5569
5570         * ListBox.cs: remove unused field.
5571
5572         * ButtonBase.cs: wrap a couple fields in NET_2_0.
5573
5574         * GridEntry.cs: remove unused fields.
5575
5576         * Binding.cs: remove unused fields.
5577
5578         * AxHost.cs: remove unused method.
5579
5580         * ContainerControl.cs: remove unused field.
5581
5582         * ScrollableControl.cs: remove unused fields.
5583
5584 2006-12-01  Chris Toshok  <toshok@ximian.com>
5585
5586         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
5587         the Where/WhereString stuff.  it's easy enough to CWL
5588         Environment.StackTrace.
5589
5590         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
5591         unused private fields.
5592
5593 2006-12-01  Jackson Harper  <jackson@ximian.com>
5594
5595         * TextControl.cs: Do not update the view while inserting multiline
5596         text. If we update the view we might wrap lines, before entering
5597         the new lines, which causes the new line insertion calculations to
5598         be totally fubared.
5599         - Remove an old TODO
5600         - Make debug output a little nicer
5601         
5602 2006-12-01  Chris Toshok  <toshok@ximian.com>
5603
5604         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
5605
5606 2006-12-01  Chris Toshok  <toshok@ximian.com>
5607
5608         [ fix the majority of the CS0108 warnings we've been suppressing ]
5609         
5610         * TreeView.cs: mark BackgroundImageChanged as 'new'.
5611
5612         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
5613         to "LayoutToolBar" to quiet mcs.
5614         
5615         * TabControl.cs: mark our ControlCollection class as 'new'.
5616
5617         * TextBoxBase.cs: mark some events as 'new'.
5618
5619         * Splitter.cs: TabStop is 'new'.
5620
5621         * ControlBindingsCollection.cs: mark a few methods as new since
5622         they change the visibility from protected to public.
5623
5624         * RadioButton.cs: DoubleClick -> base class, and remove unused
5625         HaveDoubleClick.
5626
5627         * MonthCalendar.cs: ImeMode property -> base class, and mark many
5628         events as new.
5629
5630         * NumericUpDown.cs: TextChanged -> base class.
5631
5632         * CheckedListBox.cs: mark our ObjectCollection class as new to
5633         quiet mcs.
5634
5635         * FolderBrowserDialog.cs: make HelpRequest event new and have it
5636         muck with the base class.
5637
5638         * StatusBar.cs: fix some mcs warnings about Update being the same
5639         name as a base class method.
5640
5641         * RichTextBox.cs: mark some events as new, and make them do things
5642         to the base class impl.
5643
5644         * UserControl.cs: mark TextChanged as new, and have it manipulate
5645         base.TextChanged.
5646
5647         * UpDownBase.cs: mark some things new.
5648
5649         * CheckBox.cs: mark DoubleClick "new", and add some text about
5650         what we need to look at.
5651
5652         * Panel.cs: make the events "new", and manipulate the base
5653         version.  these are just here for attributes.
5654
5655         * AccessibleObject.cs: make owner private.
5656
5657         * Control.cs: deal with AccessibleObject.owner being private.
5658         cache our own copy if we need it.
5659
5660         * Button.cs: add "new" to the DoubleClickEvent.
5661
5662         * ListBox.cs: no need to track our own has_focus here.  let
5663         Control.has_focus do it for us.  Also some other work to clear up
5664         warnings about not overriding base class methods of the same name.
5665         
5666         * ComboBox.cs: clear up some warnings about not override base
5667         class methods of the same name.
5668
5669 2006-12-01  Chris Toshok  <toshok@ximian.com>
5670
5671         * Form.cs: flag a few things as "new" to quiet some of the mcs
5672         warnings.
5673
5674         * AxHost.cs: same.
5675
5676         * PrintPreviewDialog.cs: same.
5677
5678         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
5679         now DGV isn't so horrible on the class status page.  also, move
5680         all events to using System.ComponentModel.EventHandlerList.  my
5681         wrists hurt.
5682
5683 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5684
5685         * MdiWindowManager.cs:
5686         - Set form to active mdi child if shown,
5687         and update the active mdi child to the next 
5688         remaining child in the z-order if the form is hidden.
5689
5690         * Form.cs: 
5691         - Track if the form has been visible and if its 
5692         visibility is beeing changed, so that the MdiClient
5693         can properly decide the ActiveMdiChild. The MdiClient 
5694         cannot track this since the form can change visibility 
5695         before MdiClient is created.
5696
5697         * MdiClient.cs:
5698         - Don't activate anything of the parent form is changing
5699         its visibility.
5700         - Rework ActiveMdiChild to only return visible mdi 
5701         children and take into account several other corner 
5702         cases.
5703
5704 2006-12-01  Chris Toshok  <toshok@ximian.com>
5705
5706         * IBindableComponent.cs: new 2.0 interface.
5707
5708 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
5709
5710         * DataGrid.cs: Font for caption area is bold by default.
5711
5712 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
5713
5714         * Menu.cs: Tag property for 2.0.
5715         
5716 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
5717
5718         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
5719         
5720 2006-12-01  Chris Toshok  <toshok@ximian.com>
5721
5722         * TreeView.cs: doh, the Begin* events should be
5723         TreeViewCancelEventHandler.
5724
5725 2006-12-01  Chris Toshok  <toshok@ximian.com>
5726
5727         * Form.cs: Form.ControlCollection already stores off the
5728         form_owner field.  don't access the base class's internal "owner"
5729         field.
5730
5731         * Control.cs: make all the fields in Control.ControlCollection
5732         private.  there's no need for any internal fields here.
5733
5734 2006-12-01  Chris Toshok  <toshok@ximian.com>
5735
5736         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
5737         OnHandleCreated.  Fixes bug #80109.
5738
5739 2006-12-01  Chris Toshok  <toshok@ximian.com>
5740
5741         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
5742         SplitContainer.cs, Control.cs, StatusStrip.cs,
5743         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
5744         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
5745         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
5746         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
5747         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
5748         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
5749         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
5750         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
5751         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
5752         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
5753
5754         do most of the work to convert our code over to use
5755         System.ComponentModel.Component.Events for
5756         adding/removing/dispatching events.
5757
5758
5759 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5760
5761         * DataGridView.cs: Fix an ArgumentNullException reported 
5762         twice today in IRC.
5763
5764 2006-11-30  Mike Kestner  <mkestner@novell.com>
5765
5766         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
5767         grabbed listbox.  Fixes #80036 and #80101.
5768
5769 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5770
5771         * Message.cs: Changed ToString() to match MS.
5772         
5773 2006-11-30  Jackson Harper  <jackson@ximian.com>
5774
5775         * TextBoxBase.cs: You can still change the selected text on a read
5776         only textbox.
5777         * TextControl.cs: Lower magic number for wrap calculations. This
5778         lets text get closer to the right (far) edge.
5779
5780 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5781
5782         * Control.cs: Tweak 2.0 layout properties.
5783         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
5784         * TextRenderer.cs: Add a new overload.
5785         * ToolStrip*: Huge amount of changes and new features.
5786
5787 2006-11-30  Mike Kestner  <mkestner@novell.com>
5788
5789         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
5790         scroll range correct.  Fixes #79994.
5791
5792 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5793
5794         * MdiWindowManager.cs: Update main form's text when
5795         a form is closed. (fixes #80038)
5796         
5797 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
5798
5799         * ToolBar.cs:
5800         - Fix an regression in ButtonSize.
5801         - Get ImeMode default value change to "Disable".
5802         - Get ShowTooltips default value change to true, default value is 
5803         "false" but after make a test in .NET we get "true" result as default.
5804         
5805 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
5806
5807         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
5808
5809 2006-11-29  Chris Toshok  <toshok@ximian.com>
5810
5811         * XplatUIWin32.cs (GetWindowTransparency): check return value of
5812         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
5813         SetWindowTransparency hasn't been called.
5814
5815 2006-11-29  Chris Toshok  <toshok@ximian.com>
5816
5817         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
5818         if it's supported.
5819         (set_AllowTransparency): reorder things a little so that the
5820         WS_EX_LAYERED style is removed properly.
5821
5822 2006-11-29  Chris Toshok  <toshok@ximian.com>
5823
5824         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
5825         
5826         * Form.cs: only call the XplatUI transparency method (get/set) if
5827         SupportsTransparency says it's supported. Otherwise fallback to
5828         doing nothing (in the set case) or returning the instance field we
5829         cache (in the get case).
5830
5831         * XplatUIStructs.cs: add TransparencySupport flag enum.
5832         
5833         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
5834         change to SupportsTransparency.
5835
5836         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
5837         TransparencySupport.None from SupportsTransparency.
5838
5839         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
5840         TransparencySupport.Set from SupportsTransparency.
5841
5842         * XplatUIWin32.cs: implement GetWindowTransparency calling
5843         GetLayeredWindowAttributes, and implement SupportsTransparency by
5844         checking whether or not both
5845         GetWindowTransparency/SetWindowTransparency are available
5846         entrypoints.  We need to do this since SetWindowTransparency is
5847         available as of win2k, but GetWindowTransparency requires winxp.
5848         yay win32 api.
5849
5850         * XplatUI.cs: Add GetWindowTransparency, and change
5851         SupportsTransparency to allow for either/both Get/Set.
5852
5853 2006-11-29  Chris Toshok  <toshok@ximian.com>
5854
5855         * DataGrid.cs: keep from going into an infinite loop redrawing a
5856         datagrid that has no datasource.  Fixes bug #80033.
5857
5858 2006-11-29  Chris Toshok  <toshok@ximian.com>
5859
5860         * MenuItem.cs: fix the NRE when we assign text (and therefore call
5861         Invalidate) before the mainmenu has been assigned to a control.
5862
5863 2006-11-29  Chris Toshok  <toshok@ximian.com>
5864
5865         * DataGrid.cs: detect when we should be double the double click
5866         row/column autosize stuff, although that codepath has yet to be
5867         written.  part of the work for bug #79891.
5868
5869 2006-11-29  Chris Toshok  <toshok@ximian.com>
5870
5871         * Binding.cs (SetControl): fix unit test.
5872
5873 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5874
5875         * PageSetupDialog.cs: Validate the margins and set them in
5876         PageSettings. 
5877         * NumericTextBox.cs: New class to mimic the behavior of the
5878         textboxes used in the printing dialogs.
5879
5880 2006-11-29  Andreia Gaita  <avidigal@novell.com>
5881         
5882         * Form.cs: Revert previous change (remove call UpdateBounds
5883         from form constructor), because it messes with the handle creation
5884         order, and that one needs lots and lots of love.
5885         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
5886         for valid printer and throw InvalidPrinterException if document
5887         is set but printer not valid), adding a MonoTODO. Once 
5888         handle creation is done properly, we can put this back in.
5889
5890 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5891
5892         * MenuItem.cs: Create a invalidate method for menu item, to be
5893         calling from set text, it make text changes to imadiate update
5894         on screen. Fixes #80013. 
5895         
5896 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5897
5898         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
5899         fixes bug #80070 and some other problem on toolbar buttons
5900         layout.
5901
5902 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5903
5904         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
5905         with dotted brush.      Fixes #79564
5906         
5907 2006-11-28  Andreia Gaita  <avidigal@novell.com>
5908
5909         * Form.cs: Removed call to UpdateBounds on Form
5910         constructor, it was causing a call to CreateHandle
5911         before it was supposed to.
5912         * PrintControllerWithStatusDialog: Applied patch
5913         by Chris Toshok to hide controller when there are
5914         no printers available.
5915         PrintDialog.cs: initialize printer settings to 
5916         null - correct DefaultValues test #5
5917         * PrintPreviewControl.cs: Move PrintController
5918         initialization to GeneratePreview
5919         * PrintPreviewDialog.cs: 
5920         - Remove Preview generation     from Document_set(). It is 
5921         called on OnPaint
5922         - Throw InvalidPrinterException on CreateHandle if
5923         a Document is set but there are no printers or 
5924         printer is not valid.
5925         * ThemeWin32Classic: don't paint PrintPreviewControl
5926         if there is nothing to paint    
5927
5928 2006-11-28  Miguel de Icaza  <miguel@novell.com>
5929
5930         * Form.cs: Add another popular method.
5931
5932         * TabPage.cs: ditto.
5933
5934 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5935
5936         * MenuItem.cs: Fixed a warning.
5937         * InternalWindowManager: Fixed a warning.
5938
5939 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5940
5941         * MenuItem.cs:
5942         - When cloning a menu also clone MdiList and clone the 
5943           window menu items properly (as the forms and menuitems
5944           are kept in an internal hashtable, these need updating 
5945           as well)
5946         - Rewrote the window menu code, menu items are added in the
5947           order the forms were added to their parent, and they are
5948           updated every time the window menu is shown (before the
5949           list was only generated once, in the current order of the
5950           forms, and would never be updated). A checkmark is shown
5951           next to the item corresponding to the active mdi child.
5952
5953 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5954
5955         * XplatUIStructs.cs: 
5956         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
5957         
5958         * XplatUIWin32.cs: 
5959         - Added TME_NONCLIENT to TMEFlags.
5960         - Handles WM_NCMOUSEMOVE in GetMessage to 
5961           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
5962
5963         * MdiWindowManager:
5964         - Now merges mdi child menu to parent menu when maximized.
5965         - Recalculate NC areas of both mdi child and mdi parent. 
5966           Fixes #79757 (4).
5967           on window state and size changes.Fixes #79844 (3).
5968         - Handle WM_NCCALCSIZE to properly calculate borders.
5969
5970         * Form.cs:
5971         - Add/remove to the mdi containers list of mdi children 
5972           in the order they are added.
5973         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
5974           to the maximized mdi child.
5975         
5976         * InternalWindowManager.cs:
5977         - Only execute a click on the control buttons on the mouse up,
5978           not on the mouse down. Show the state of the button 
5979           (was only showing Normal state, never Pressed state). The
5980           pressed button now follows the mouse (if you click the Close 
5981           button and move the mouse over the Maximize button, the 
5982           Maximize button will be shown as pressed). Since Win32 does
5983           not generate WM_NCLBUTTONUP if you release the button outside
5984           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
5985           it as a mouse up.
5986         
5987         * ThemeWin32Classic.cs:
5988         - Draw a missing border around mdi child forms. Fixes #79844 (2).
5989
5990         * MdiClient.cs:
5991         - Added a list of forms which contains the order the forms are
5992           added to the mdi parent.
5993         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
5994         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
5995         - If the active form changes set the scrollbars to the top
5996           of the Z order, otherwise the form could hide them.
5997         - Scrollbars are now sized according to ClientSize, not 
5998           to Size, and they take into account the other scrollbar
5999           to determine maximum.
6000         
6001 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
6002         
6003         * XplatUI.cs:
6004         * XplatUIDriver.cs:
6005         * XplatUIX11.cs:
6006         * XplatUIWin32.cs:
6007         * XplatUIOSX.cs:
6008         - Added RequestAdditionalWM_NCMessages for windows to 
6009           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
6010           Currently only implemented in XplatUIWin32.
6011
6012 2006-11-27  Chris Toshok  <toshok@ximian.com>
6013
6014         * Hwnd.cs: only add the hwnd to the windows hash in
6015         set_WholeWindow and set_ClientWindow if whole_window/client_window
6016         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
6017
6018 2006-11-27  Mike Kestner  <mkestner@novell.com>
6019
6020         * ComboBox.cs: remove redundant OnDropDown call.  It is called
6021         from the ComboListBox.ShowWindow code. Fixes #79969.
6022
6023 2006-11-27  Chris Toshok  <toshok@ximian.com>
6024
6025         * Hwnd.cs: remove the setters for ExposePending and
6026         NCExposePending - noone uses them.
6027
6028 2006-11-27  Jackson Harper  <jackson@ximian.com>
6029
6030         * TextControl.cs: new param for ReplaceSelection which determines
6031         whether we select the new selection, or set the cursor to the end
6032         of the new selection.
6033         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
6034         pasting, select the new text.
6035         * RichTextBox.cs: Use new param for ReplaceSelection.
6036
6037 2006-11-27  Jackson Harper  <jackson@ximian.com>
6038
6039         * TextBoxBase.cs: Set the selection to the caret after the caret
6040         is moved, otherwise they get out of sync.
6041
6042 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6043
6044         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
6045         it fixes #80015
6046
6047 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
6048
6049         * ThemeWin32Classic.cs: 
6050         - Fix toolbar drop down arrow position.
6051         - Fix drop down appearance when ToolBar.Appearance is normal,
6052         it fixes #80018.
6053         
6054 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
6055
6056         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
6057         * Control.cs: Same.
6058         * UpDownBase.cs: Same.
6059         * ButtonBase.cs: Same.
6060         * ScrollBar.cs: Same.
6061         * TrackBar.cs: Same.
6062         * PictureBox.cs: Same.
6063         * UserControl.cs: Same.
6064         * Label.cs: Same.
6065         * ListControl.cs: Same.
6066         * TextBoxBase.cs: Same.
6067         * ListView.cs: Same.
6068         * RichTextBox.cs: Same.
6069         * TreeView.cs: Same.
6070
6071 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
6072
6073         * PrintDialog.cs:
6074         - Text label for where 
6075         - Text label comment was not shown
6076
6077 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
6078
6079         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
6080
6081 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6082
6083         * InternalWindowManager.cs: 
6084         - Handle WM_PARENTNOTIFY to activate the form
6085         if any child control is clicked.
6086         - The form is only sizable if not minimized.
6087
6088         * MdiWindowManager.cs:
6089         - Save the IconicBounds if the form is moved.
6090         - Rework SetWindowState, now the window bounds 
6091         are stored only if the old window state is Normal.
6092         
6093         * MdiClient.cs:
6094         - In SetWindowStates store the old window state if 
6095         the window is maximized and restore window state if
6096         the window looses focus.
6097         - Don't handle any scrollbar value changes if 
6098         initializing the scroll bars. Fixes #79771.
6099         - Reworked ArrangeIconicWindows. Current algorithm
6100         tests bounds agains all other minimized windows, if
6101         any intersections create new bounds (going left to 
6102         right, bottom to top) and then test again. When 
6103         successful the bounds are saved and never computed
6104         again. Fixes #79774.
6105
6106 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6107
6108         * InternalWindowManager.cs: Added HandleTitleBarUp.
6109
6110 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6111
6112         * NumericUpDown.cs: In .NET 1.1, user entered text is still
6113         hexadecimal in ParseUserEdit.
6114
6115         
6116 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
6117
6118         * MdiWindowManager.cs: 
6119         - Handle a click on the form's icon to show the 
6120         system menu (when maximized). Fixes #79775.
6121         - Change the existing click handler for the form's
6122         icon when not maximized to show on MouseUp.
6123         Fixes #79776.
6124
6125         * Form.cs: In OnResize only layout the mdi child's
6126         parent if it actually has a parent. Might not if
6127         the window is closing.
6128
6129
6130 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6131
6132         * MdiClient.cs: Ignore active MDI client for text of parent, if
6133         child has no text set.
6134
6135 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
6136
6137         * ToolBar.cs: Fixed ToString to match MS.
6138
6139 2006-11-22  Andreia Gaita  <avidigal@novell.com>
6140
6141         * NumericUpDown: 
6142         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
6143         update inner values on set. Fixes #79966.
6144         - Override OnLostFocus to update value on NET 2. Fixes #79950.
6145         - Fix hexadecimal parsing.
6146         
6147         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
6148         parent. Fixes #79957
6149
6150 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6151
6152         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
6153         the actual size has to be queried, since if height /
6154         width is negative Win32 changes it to 0. 
6155         Fixes #79999 on Windows.
6156         
6157         * XplatUIX11.cs: Set height / width to 0 if negative
6158         in SetWindowPos. Fixes #79999 on Linux.
6159         
6160 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
6161
6162         * ThemeWin32Classic.cs: Fix text redenring when button is
6163         pressed.
6164
6165 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
6166
6167         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
6168         and later navigate by mouse. Fixes #79528.
6169
6170 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
6171
6172         * ToolBar.cs: Set default value for TabStop to false in
6173         constructor, it fixes remaining behavior of bug #79863.
6174
6175 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6176
6177         * MdiWindowManager.cs:
6178         * InternalWindowManager.cs:
6179         - Moved a few methods specific to Mdi from 
6180         InternalWindowManager to MdiWindowManager.
6181         Fixes #79996.
6182         
6183 2006-11-21  Chris Toshok  <toshok@ximian.com>
6184
6185         * XplatUIOSX.cs: stub out InvalidateNC.
6186
6187         * XplatUIWin32.cs: implement InvalidateNC using the call I found
6188         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
6189
6190         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
6191
6192         * XplatUIDriver.cs: add InvalidateNC abstract method.
6193
6194         * XplatUI.cs: add InvalidateNC.
6195
6196 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
6197
6198         * ToolBar.cs: Invalidate complete button area when pressed status 
6199         was changed.
6200         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
6201         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
6202         by 1 when button is pressed.
6203
6204 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
6205
6206         * ToolButton.cs: Invalidate middle of DropDown button when
6207         ToolBar theres DropDownArrows.
6208         * ThemeWin32Classic.cs: Change position of DropDown arrow and
6209         fix DropDown drawing operations.
6210
6211 2006-11-20  Chris Toshok  <toshok@ximian.com>
6212
6213         * NativeWindow.cs: fix the formatting of functions ('{' on the
6214         following line), and enable the thread exception dialog.
6215
6216         * Application.cs: remove the duplicate exception catching from
6217         here.
6218
6219 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
6220
6221         * Toolbar.cs: Triggers button click event when click on icon
6222         of dropdown ToolBarButton. Fixes #79912.
6223         
6224 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6225
6226         * Theme.cs:
6227         * ThemeWin32Classic.cs:
6228         - Added a property WindowBorderFont to enable themeing
6229           of mdi child windows' Text.
6230           
6231 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6232
6233         * InternalWindowManager.cs:
6234         * Form.cs:
6235         * MdiClient.cs:
6236         * MdiWindowManager.cs: 
6237         - If mdi child is maximized, set mdi parent's
6238           text to "Parent - [Child]". Fixes #79770.
6239         - If there is any maximized mdi child windows, only the active 
6240           window (and any new windows) is maximized, the rest are normal.
6241         - On a WindowState change only save mdi child's window bounds 
6242           if the old window state was normal. Fixes #79774.
6243         - The scroll bars are now calculated on hopefully all
6244           necessary events. Fixed #79771 / #79844->6 / #79906.
6245         - MdiClient.SizeScrollBars() now takes into account docked 
6246           controls in the parent when calculating available space.
6247         - InternalWindowManager now always repaints the entire title
6248           area. Fixes #79844->1/4/5.
6249         - Added RequestNCRecalc on mdi child windowstate changes.
6250           Fixes #79772.
6251
6252 2006-11-20  Mike Kestner  <mkestner@novell.com>
6253
6254         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
6255         in the MouseUp handler of the listbox and move the return handling
6256         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
6257
6258 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
6259
6260         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
6261
6262 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
6263
6264         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
6265           working in 1.2.x anymore. So, updated.
6266
6267 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
6268
6269         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
6270         NumberGroupSeparator of current culture instead of assuming en-US.
6271         Fixed bug #79967.
6272
6273 2006-11-17  Mike Kestner  <mkestner@novell.com>
6274
6275         * Control.cs: Add the concept of implicit bounds setting so that
6276         dock/undock round trips preserve explicitly set size/locations.
6277         Fixes #79313.
6278
6279 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
6280
6281         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
6282           can't handle those filters. (Fixes bug #79961)
6283
6284 2006-11-17  Chris Toshok  <toshok@ximian.com>
6285
6286         [ fixes the exit/crashes associated with #79835.  it's clearly
6287         suboptimal though, we need to figure out a better way to solve
6288         this. ]
6289         
6290         * PrintPreviewControl.cs: deal with the new invalid printer
6291         exceptions.
6292
6293         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
6294         and return false (so CommonDialog.ShowDialog doesn't actually show
6295         the form.)
6296
6297         * PrintDialog.cs: enable/disable the Ok button depending on
6298         whether or not the printer is valid.
6299
6300         * CommonDialog.cs (ShowDialog): only actually show the form if
6301         RunDialog returns true.
6302
6303 2006-11-17  Jackson Harper  <jackson@ximian.com>
6304
6305         * TextControl.cs: When soft splitting a line, mark it as a soft
6306         split line. Also carry over the current line break to the next
6307         line.
6308
6309 2006-11-17  Chris Toshok  <toshok@ximian.com>
6310
6311         * XplatUIX11.cs: when scrolling a window with an invalid area, we
6312         only want to shift the part of the invalid area that overlaps the
6313         area we're scrolling.  we also don't want to clear the invalid
6314         area unless the invalid area was entirely contained within the
6315         scrolling area.
6316
6317 2006-11-16  Chris Toshok  <toshok@ximian.com>
6318
6319         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
6320         also make sure to free the memory returned by XGetWindowProperty
6321         in GetText().
6322
6323         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
6324
6325 2006-11-16  Chris Toshok  <toshok@ximian.com>
6326
6327         * XplatUI.cs: add a new super secret way to get at the totally
6328         unsupported X11 backend.
6329
6330 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
6331
6332         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
6333
6334 2006-11-16  Jackson Harper  <jackson@ximian.com>
6335
6336         * TreeView.cs: Allow more explicit setting of top node position
6337         for scrollbars. Slower algo, but more accurate.
6338         - CollapseAll should maintain the current top node.
6339         * TextBoxBase.cs: When positioning the caret, use the line, pos
6340         method, since the x, y method does not grab the correct tag, and
6341         the caret height never gets set correctly. (Maybe I should just do
6342         away with the caret having its own height, and always use the
6343         carets current tag for height).
6344
6345 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
6346
6347         [Fixes 79778, 79923]
6348
6349         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
6350         Parent to the FosterParent instead.
6351
6352 2006-11-16  Jackson Harper  <jackson@ximian.com>
6353
6354         * TreeView.cs: Need to recalc the topnode when we expand or
6355         collapse. The scrolling methods can't handle this on their own,
6356         since they use differences between the last scroll position, and
6357         those difference get completely messed up since we are expanding
6358         nodes.  This problem should probably be fixed in the scrolling
6359         methods, so they can figure out exactly where they are, but this
6360         will slow things down a little.
6361         * ThemeWin32Classic.cs: Special case for groupboxes with empty
6362         strings, makes nunit-gui look a lot nicer.
6363
6364 2006-11-16  Chris Toshok  <toshok@ximian.com>
6365
6366         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
6367         the broken multithreaded event handling we have in here.  File
6368         this entry under "Why we should move to the new X11 backend".
6369
6370         Any thread can make it into UpdateMessageQueue, which gets events
6371         from the X socket - some of which could belong to hwnds being
6372         managed by a different thread.  We can also have multiple threads
6373         in UpdateMessageQueue at the same time, with each one reading from
6374         the X socket.  This leads to many problems, with the following
6375         solutions:
6376
6377         We can't use hwnd.Queue.Enqueue anywhere in here and must use
6378         EnqueueLocked.
6379
6380         The MotionNotify compression we do can't work across threads
6381         (without locking the entire queue, perhaps) since we call
6382         hwnd.Queue.Peek, so we just punt and don't compress motion events
6383         unless the owning thread is the one which got the X event.
6384
6385         ConfigureNotify is another fun one, since it modifies the hwnd's
6386         bounds and then enqueues the event.  We add a lock to Hwnd which
6387         is held when setting configure_pending to true (and enqueuing the
6388         event).
6389
6390         There is a race wrt the wake socket.  we need to make sure that
6391         only 1 thread is waiting on that socket, or else a thread could
6392         sleep waiting for data that never comes.  It's difficult (but not
6393         impossible) to make happen, because it seems to require something
6394         like the following:
6395
6396             1. Thread 1 polls on wake_receive
6397         
6398             2. poll returns saying there's data to be read on
6399                wake_receive.
6400         
6401             3. Thread 2 polls on wake_receive and immediately returns
6402                saying there's data to be read.
6403
6404             4. Thread 2 reads the wakeup byte from wake_receive
6405
6406             5. Thread 1 attempts to read the wakeup byte from
6407                wake_receive.
6408
6409             6. Thread 2 exits (due to a form closing, perhaps).
6410
6411             7. Thread 1 blocks forever.
6412         
6413         Fun, eh?
6414
6415         Fixing the Expose handling isn't done yet, and the races inherent
6416         in that piece of code are responsible for the drawing mistakes you
6417         see when generating expose events in a MT app (like NPlot).  This
6418         one is the likely to be the hardest to bandaid, and it doesn't
6419         appear to cause anything but drawing problems.  The other issues
6420         caused apps to exit or hang.
6421
6422         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
6423         called from a different thread than the one that should be calling
6424         these functions.
6425
6426         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
6427
6428 2006-11-15  Chris Toshok  <toshok@ximian.com>
6429
6430         * Application.cs: null out the context's MainForm when we exit
6431         RunLoop.  Fixes a newly checked in unit test as well as the last
6432         ODE from bug #79933.
6433
6434 2006-11-15  Chris Toshok  <toshok@ximian.com>
6435
6436         * Form.cs (set_Owner): allow a null value so we can clear the
6437         form's owner.
6438         (Dispose): set all our owned_form's Owner properties to null, and
6439         clear the owned_forms collection.
6440         (WM_CLOSE): clean up this a little bit.. still not right though.
6441
6442         * ApplicationContext.cs: OnMainFormClosed should only call
6443         ExitThreadCore if the main form isn't recreating.  Fixes unit
6444         test.
6445
6446 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6447
6448         [Fixes 78346]
6449
6450         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
6451
6452 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6453
6454         [Fixes 79433]
6455
6456         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
6457         keep popup window types from stealing focus from the main form
6458         on Windows.
6459
6460         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
6461
6462         * MenuAPI.cs: Set above flag to true.
6463
6464 2006-11-15  Chris Toshok  <toshok@ximian.com>
6465
6466         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
6467         the button being released is not in wParam.
6468
6469 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6470
6471         * Form.cs: Add the released button to MouseEventArgs.Button
6472         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
6473         on Win32.
6474
6475 2006-11-15  Chris Toshok  <toshok@ximian.com>
6476
6477         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
6478         GetText().  untested because it's unused in our implementation.
6479         Control.Text always caches the text, even if
6480         ControlStyles.CacheText is not set.
6481
6482         fixes bug #79939.
6483
6484 2006-11-15  Chris Toshok  <toshok@ximian.com>
6485
6486         [ fixes #79933 ]
6487         
6488         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
6489         message.  no hiding, no disposing.
6490
6491         in the WM_CLOSE handler, hide the form if it's modal.
6492
6493 2006-11-15  Chris Toshok  <toshok@ximian.com>
6494
6495         * XplatUIX11.cs: use AddExpose instead of sending a message.
6496         fixes textbox border drawing.
6497
6498 2006-11-15  Chris Toshok  <toshok@ximian.com>
6499
6500         * PropertyGridView.cs: keep from crashing on mouse move/down when
6501         the property grid is empty.
6502
6503 2006-11-14  Jackson Harper  <jackson@ximian.com>
6504
6505         * TextControl.cs: Make PageUp and PageDown more like the MS
6506         versions.
6507         * TextBoxBase.cs: When we set the text property position the
6508         cursor at the beginning of the document.
6509
6510 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6511
6512         * Form.cs: if a mdi child's WindowState has changed
6513         before it's creation, it would display wrong control
6514         buttons.
6515         
6516 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
6517
6518         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
6519           (Fixes bug #79927)
6520
6521 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6522
6523         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
6524         the window gets to paint its borders even if the window is
6525         getting smaller.
6526         
6527         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
6528         otherwise the old control buttons would still be painted 
6529         if the window gets bigger.
6530         
6531         * PaintEventArgs.cs: add an internal method so that the clip 
6532         rectangle can be changed.
6533         
6534 2006-11-13  Chris Toshok  <toshok@ximian.com>
6535
6536         [ fixes bug #79745 ]
6537         
6538         * NotifyIcon.cs: lots of cleanup.
6539
6540         * X11Structs.cs: add an enum for XEMBED messages.
6541
6542         * XplatUIX11.cs: reindent one of the giant switch statements, it
6543         was taking up an additional tab stop, and this file is already way
6544         too wide for my laptop's screen.
6545
6546         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
6547         we get it, resize the hwnd to the WMNormalHints max_width/height.
6548
6549 2006-11-13  Jackson Harper  <jackson@ximian.com>
6550
6551         * TextBoxBase.cs: Compute the value changes for the mouse wheel
6552         teh simple way.
6553
6554 2006-11-13  Chris Toshok  <toshok@ximian.com>
6555
6556         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
6557         #79898.  force a reference to the Region to stick around so the
6558         unmanaged object isn't collected (rendering our handle in the MSG
6559         stale).
6560
6561 2006-11-13  Chris Toshok  <toshok@ximian.com>
6562
6563         * XplatUIX11.cs: fix #79917 for window managers which support
6564
6565         using XStoreName on the raw utf8, and we need to convert to
6566         COMPOUND_TEXT if it's non-latin1.
6567
6568 2006-11-13  Chris Toshok  <toshok@ximian.com>
6569
6570         * Form.cs (set_DialogResult): we need to set closing to false if
6571         we're setting our result to None.  fixes bug #79908.
6572
6573 2006-11-13  Jackson Harper  <jackson@ximian.com>
6574
6575         * TextControl.cs: When formatting text, compute the adjusted tag
6576         lengths correctly, using FindTag for the end tag instead of trying
6577         to figure it out outselves.
6578         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
6579         the item, ItemHeight doesn't work, because trees with large
6580         imagelists use those for their height
6581         * TreeView.cs: ActualItemHeight factors in the image height
6582         - compute left edge of checkboxes correctly
6583         - when expanding/collapsing move the bottom down one pixel, so we
6584         aren't moving part of the node
6585
6586 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6587
6588         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
6589         stack in PaintEventStart so that it won't get disposed by the gc
6590         before reaching PaintEventEnd.
6591
6592 2006-11-13  Jackson Harper  <jackson@ximian.com>
6593
6594         * TextBoxBase.cs: Don't select the word if we are on a line with
6595         no text.
6596         - We don't need to position the caret on mouse up, since the mouse
6597         move handler should be doing this
6598         - When double clicking a blank line, the caret is advanced to the
6599         next line.
6600
6601 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
6602
6603         * TreeNodeCollection.cs: Avoid duplicating indexer code.
6604
6605 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
6606
6607         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
6608         Fixes part of bug #79910.
6609
6610 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
6611
6612         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
6613           (bug #79903). Some minor string updates to match ms.
6614
6615 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6616
6617         * FileDialog.cs: Don't add an extension if the filename
6618           already ends with that extension.
6619
6620 2006-11-10  Jackson Harper  <jackson@ximian.com>
6621
6622         * TreeView.cs: Use the currently highlighted node for the
6623         BeforeSelect event.
6624         * TextBoxBase.cs: There is no need to expand selection on
6625         MouseMove.
6626         - CanUndo means 'is there any undo operations', not 'is undo
6627         allowed on this textcontrol. Fixed ClearUndo unit test.
6628
6629 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
6630
6631         * Button.cs: only perform click when button is Selectable (so as 
6632         not to activate default buttons when they're disabled)
6633         
6634         * Control.cs: Rewrite of the SelectNextControl and related 
6635         methods. HandleClick now selects next control if the current one
6636         is being disabled.
6637         
6638         * Form.cs: OnActivated selects next active control only if Load 
6639         has already occurred. If Load hasn't run, there's no point in 
6640         selecting here, Load might change the state of controls.
6641         
6642         * FocusTest.cs: Tests marked as working again for these fixes
6643
6644 2006-11-10  Chris Toshok  <toshok@ximian.com>
6645
6646         * XplatUIX11.cs: a couple of fixes.
6647
6648         - use XInternAtoms with almost all the atoms we need to register,
6649         instead of many, many calls to XInternAtom.  should help a bit on
6650         startup time, at the expense of making the code look a little
6651         worse.
6652
6653         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
6654         isn't reparented (which seems to be a clue that we're running fon
6655         compiz) and they have an Owner form.  This fixes the tool windows
6656         in paint.net when running under compiz.
6657
6658         - when setting the opacity of a window, support both the case
6659         where the window has been reparented and also when it hasn't been.
6660         Since compiz/beryl doesn't seem to reparent windows, and these are
6661         the only window managers which support translucency, I'm not sure
6662         why we need the hwnd.reparented case at all.. but leave it in.
6663         now we get translucent windows in paint.net under compiz/beryl.
6664
6665 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6666
6667         * FileDialog.cs: Always return the value for FilterIndex that
6668           was set. Internally convert it to values that make sense.
6669
6670 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6671         
6672         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
6673
6674 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6675
6676         * Toolbar.cs: Change default value of DropDownArrows to true, the 
6677         signature still using false to make it compatible with MS but the 
6678         initial value is true. Fixes #79855.
6679
6680 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6681
6682         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
6683           only available on Linux.
6684
6685 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
6686
6687         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
6688         reduce number of calls to redraw method during toolbar creation.
6689
6690 2006-11-09  Mike Kestner  <mkestner@novell.com>
6691
6692         * ListView.cs : raise SelectedIndexChanged when an item is selected
6693         programmatically via the Item.Selected property.  Gert's nice 
6694         ListViewSelectedIndexChanged test fixture now runs clean.
6695
6696 2006-11-09  Mike Kestner  <mkestner@novell.com>
6697
6698         * ListView.cs : raise SelectedIndexChanged when a selected item is
6699         removed from the item collection using Remove or RemoveAt.
6700
6701 2006-11-09  Mike Kestner  <mkestner@novell.com>
6702
6703         * ListView.cs : raise SelectedIndexChanged once per selected item
6704         for compat with MS.  Fixes #79849+.
6705
6706 2006-11-09  Chris Toshok  <toshok@ximian.com>
6707
6708         * TabControl.cs: initialize row_count to 0, and set it to 1 when
6709         we need to (if we have any tab pages).  Fixes unit test.
6710
6711 2006-11-09  Chris Toshok  <toshok@ximian.com>
6712
6713         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
6714         width is 0, not 3.  Fixes a unit test.
6715
6716 2006-11-09  Mike Kestner  <mkestner@novell.com>
6717
6718         * ListView.cs : use Implicit scrollbars so that focus isn't 
6719         stolen from the listview when they are clicked. Fixes #79850.
6720
6721 2006-11-09  Chris Toshok  <toshok@ximian.com>
6722
6723         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
6724         have a root item.  Fixes #79879.
6725
6726 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
6727
6728         * FileDialog.cs:
6729           - Fix ToString ()
6730           - An ArgumentException is now thrown if a wrong filter
6731             is applied (matches ms). The previous filter doesn't change
6732             anymore if an exception is thrown.
6733           - Changing the FileName property also affects FileNames
6734         * ColorDialog.cs: The length of the CustomColors array is always
6735           16. It doesn't matter if we use a smaller array or null to update
6736           or change the custom colors property.
6737         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
6738           for RootFolder if we get a undefined value.
6739
6740 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6741
6742         * StatusBarPanel.cs: 
6743         - Width is set to MinWidth if Width is smaller than
6744         MinWidth. Fixes #79842.
6745         - MinWidth now always overrides Width (MSDN says MinWidth
6746         is set to Width when AutoSize = None, but they do not 
6747         behave like that).
6748         - Style has now the the correct default value.
6749         
6750 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6751  
6752         * TrackBar.cs: 
6753         - The control is completely invalidated on 
6754         Got/LostFocus to draw the focus rectangle correctly.
6755         - When AutoSize then height is always 45 (width for 
6756         vertical controls).
6757         
6758         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
6759         on the mouse when moved and it doesn't move when grabbed
6760         until the mouse moves as well. Also fixed some wrong 
6761         calculations when clicking on the thumb (control thought
6762         click was outside of thumb and didn't grab it).
6763         Fixes some of the issues in #79718.
6764
6765 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
6766
6767         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
6768
6769 2006-11-08  Chris Toshok  <toshok@ximian.com>
6770
6771         * PropertyGridView.cs: only call ToggleValue if the item is not
6772         readonly.
6773
6774 2006-11-08  Jackson Harper  <jackson@ximian.com>
6775
6776         * TextBoxBase.cs: The RichTextBox and textbox have very different
6777         word selection methods.  Implement the textbox's simple word
6778         selection here, and let the RichTextBox override and provide it's
6779         own.
6780         - Don't do extra selection on mouseup
6781         * RichTextBox.cs: Use the documents word selection algorithm, I
6782         think ideally, this function will be pulled into the
6783         RichTextBox.cs code someday.
6784
6785 2006-11-08  Chris Toshok  <toshok@ximian.com>
6786
6787         * RootGridEntry.cs: new class to represent GridItemType.Root.
6788
6789         * CategoryGridEntry.cs: reformat, and add boilerplate.
6790         
6791         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
6792         returns the UI parent anyway, and we need special handling to
6793         implement the GetTarget method in the face of it.  Also, implement
6794         Select().
6795
6796         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
6797         a root grid item, and use that instead of PropertyGrid.grid_items.
6798         Also, make use of TypeConverters (and add limitted support for
6799         ICustomTypeDescriptors) when initially populating the grid.
6800         Arrays now show up more or less properly.
6801
6802 2006-11-08  Chris Toshok  <toshok@ximian.com>
6803
6804         * Application.cs: set the modal dialog to non modal after we close
6805         it.  Fixes bug #79866.
6806
6807 2006-11-08  Jackson Harper  <jackson@ximian.com>
6808
6809         * TextControl.cs: When combining lines carry over the line end
6810         style from the end line.
6811         - Invalidate the selected area when setting it, if it is visible.
6812         * TextBoxBase.cs: Only rich text box can do full line selects.
6813         - Make sure to set the cursor position when there is a click,
6814         otherwise two clicks in separate areas could cause a large chunk
6815         to be selected.
6816
6817 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6818
6819         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
6820         Fixes #79863.
6821
6822 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6823
6824         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
6825         time. Remove tooltips when ToolButton click events.  Fixes #79856.
6826
6827 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6828
6829         * MenuAPI.cs: Ignore right click for menu actions and fixes
6830         menu border when clicked.  Fixes #79846.
6831
6832 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6833
6834         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
6835         MouseState after create wParam for message, this fixes mouse button 
6836         equal none in mouse up events.
6837         
6838 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
6839
6840         * Control.cs : Focus() now calls Select to set the Container's
6841         Active Control and to give it focus. To avoid infinite recursion
6842         (because ActiveControl also calls Focus at one point), a check 
6843         is made in Focus with the help of a new internal variable
6844         is_focusing.
6845
6846 2006-11-07  Mike Kestner  <mkestner@novell.com>
6847
6848         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
6849         if there's a selection.  Fixes #79849.
6850
6851 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
6852
6853         * PropertyGrid.cs: Avoid fixed height of help description label.
6854         Fixes part of bug #79829.
6855
6856 2006-11-07  Chris Toshok  <toshok@ximian.com>
6857
6858         * XplatUIX11.cs: fix #79790 again, by using the
6859         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
6860
6861 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6862
6863         * ToolBar.cs: Fix left click checking.
6864
6865 2006-11-07  Chris Toshok  <toshok@ximian.com>
6866
6867         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
6868
6869 2006-11-07  Chris Toshok  <toshok@ximian.com>
6870
6871         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
6872         PropertyManager unit tests.
6873
6874         * PropertyManager.cs: make property_name internal.
6875
6876 2006-11-07  Chris Toshok  <toshok@ximian.com>
6877
6878         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
6879         pass a unit test.  Also, don't set image_index to anything in
6880         response to setting the ImageList property.
6881
6882 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6883
6884         * ToolBar.cs: Ignore click events when mouse button is not a
6885         left button, only accepts other button for dropdown menus.  
6886         Fixes #79854.
6887
6888 2006-11-07  Chris Toshok  <toshok@ximian.com>
6889
6890         * DataGrid.cs: make the back and parent row buttons a little less
6891         ugly.
6892
6893 2006-11-07  Jackson Harper  <jackson@ximian.com>
6894
6895         * TextBoxBase.cs: When converting to Text don't put line breaks in
6896         for soft line breaks.
6897         * TextControl.cs: There is an initial "fake" line in the document,
6898         this is now a soft break line, so that an extra line feed doesn't
6899         get added to the end of documents.
6900
6901 2006-11-07  Chris Toshok  <toshok@ximian.com>
6902
6903         [ fix bug #79778 ]
6904         
6905         * CurrencyManager.cs: if the list is readonly, don't bother
6906         checking if IBindingList.AllowNew is true.
6907
6908         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
6909         for non-DataRowView datasources..  or rather, make it not crash.
6910         (DataGridPaintRelationRow): make sure we limit the row painting to
6911         the area not covered by the row header, and make our cell width at
6912         least large enough to cover the relation area.  This allows grids
6913         that have relations but no rows to render correctly.
6914         (DataGridPaintRowContents): same type of changes here.
6915         (SetDataSource): move back to always calling
6916         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
6917         navigating back through relations.
6918         (HitTest): handle the case where we have no cells but have
6919         relations.  Right now we generate a hit in cell 0 of whatever the
6920         row is, not sure if this is strictly correct, but it works for our
6921         purposes.
6922         
6923         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
6924         bother doing anything.
6925
6926 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
6927
6928         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
6929         early version of StatusStrip.  Not responsible for eaten
6930         application or firstborn children.
6931
6932 2006-11-06  Chris Toshok  <toshok@ximian.com>
6933
6934         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
6935         call GetTabRect with a -1 index.  Fixes #79847.
6936
6937 2006-11-06  Jackson Harper  <jackson@ximian.com>
6938
6939         * TreeNodeCollection.cs: Update scrollbars after clearing.
6940
6941 2006-11-06  Chris Toshok  <toshok@ximian.com>
6942
6943         * NumericUpDown.cs: fix the ToString method for some unit test
6944         love.
6945
6946 2006-11-06  Chris Toshok  <toshok@ximian.com>
6947
6948         * PropertyGrid.cs:
6949         - set the initial SelectedGridItem if we can.
6950
6951         - Exclude non-mergable properties only if we're merging > 1
6952         object.  Merging 1 object isn't really merging, obviously.
6953
6954         - Handle PropertySort.NoSort just like Alphabetical, which is
6955         wrong of course, but at least gets things on the screen.
6956         
6957         * PropertyGridView.cs:
6958         - Add method "FindFirstItem" which finds the first property grid
6959         item, so we can select it by default.
6960
6961         - make use of GridEntry.CanResetValue.
6962
6963         - Don't call RedrawBelowItemOnExpansion here anymore, the
6964         individual GridEntry's will do that.
6965
6966         - Remove the ITypeDescriptorContextImpl internal class.
6967         
6968         * GridEntry.cs:
6969         - this class needs to implement ITypeDescriptorContext, as it's
6970         what MS's PropertyDescriptorGridEntry does, which means we can
6971         remove the ITypeDescriptorContextImpl internal class from
6972         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
6973
6974         - keep a reference to our PropertyGridView, and move the call to
6975         RedrawBelowItemOnExpansion here from PGV.  This means
6976         programmaticly setting Expanded actually does something visible.
6977
6978         - add a CanResetValue() function which takes into account our
6979         possibly multiple "selected_objects" in the merged case.  Shifting
6980         PropertyGridView to use this method fixes another unreported
6981         crasher found running the test for #79829.
6982
6983         - when Top or Bounds is updated, make sure the PropertyGridTextBox
6984         is updated to reflect this.
6985
6986         * CategoryGridEntry.cs: the ctor takes the PGV now.
6987         
6988 2006-11-06  Jackson Harper  <jackson@ximian.com>
6989
6990         * TextControl.cs: These are 1 based.
6991         * TextBoxBase.cs: When setting the selected text, don't change the
6992         selected text tags, this is done by ReplaceText, just position the
6993         cursor at the end of the new text.
6994
6995 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
6996
6997         * ListView.cs: Allow label edit only when, when LabelEdit is
6998           set to true.
6999
7000 2006-11-06  Jackson Harper  <jackson@ximian.com>
7001
7002         * TextControl.cs: If a suitable wrapping position isn't found,
7003         just wrap right in the middle of a word.
7004
7005 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
7006
7007         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
7008           bug #79820.
7009
7010 2006-11-06  Jackson Harper  <jackson@ximian.com>
7011
7012         * TreeView.cs: Can't use the VisibleCount property when setting
7013         scrollbar heights, because this doesn't take into account whether
7014         or not the horz scrollbar just came visible.
7015
7016 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
7017
7018         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
7019         activated.  Fixes #79369, #79832.
7020
7021 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
7022
7023         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
7024           had to remove support for links that point to a directory. FileInfo
7025           returns no usefull information (means, the directory they point to)
7026           for such links. Replaced some empty string ("") with String.Empty.
7027
7028 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7029
7030         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
7031         NullReferenceException when attempting to remove node that is not in
7032         collection. Throw NullReferenceException when null is passed to 
7033         Remove. Allow first element of the collection to be removed. Fixes
7034         bug #79831.  In GetEnumerator ().Current return null if positioned 
7035         before the first element of the collection. In GetEnumerator ().Reset,
7036         position before first element of the collection.
7037
7038 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
7039
7040         * PropertyGrid.cs: To match MS, remove default title and description
7041         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
7042         buttons.
7043
7044 2006-11-04  Chris Toshok  <toshok@ximian.com>
7045
7046         * Theme.cs: add a Clamp method, just for kicks.
7047
7048         * ThemeWin32Classic.cs: clamp all color components to [0..255].
7049
7050 2006-11-04  Chris Toshok  <toshok@ximian.com>
7051
7052         * Form.cs: if the form isn't visible, Close() does nothing.
7053
7054 2006-11-03  Chris Toshok  <toshok@ximian.com>
7055
7056         * Form.cs (Close): if the form is modal, don't Dispose of it, only
7057         Hide it.
7058         (WndProc): don't Dispose after handling the WM_CLOSE message.
7059
7060         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
7061         them as such, instead of using casts from Control to Form.  Also,
7062         don't Dispose of the modal dialog when we fall out of the loop -
7063         Close() it instead.
7064
7065         fixes bug #79813.
7066
7067 2006-11-03  Chris Toshok  <toshok@ximian.com>
7068
7069         * Control.cs (Dispose): only go through the dispose thing if we're
7070         @disposing, and we haven't already been disposed.  Fixes bug
7071         #79814.
7072
7073         * Form.cs: no reason to call "base.Dispose()" here instead of
7074         "Dispose()".
7075
7076 2006-11-03  Mike Kestner  <mkestner@novell.com>
7077
7078         * ComboBox.cs : use ToString instead of casts in AddItem for
7079         sorting functionality.  Fixes #79812.
7080
7081 2006-11-03  Chris Toshok  <toshok@ximian.com>
7082
7083         * Application.cs: pave the way for actually using the thread
7084         exception dialog.  it's ifdefed out at the moment.
7085
7086 2006-11-03  Chris Toshok  <toshok@ximian.com>
7087
7088         * ThreadExceptionDialog.cs: until we get a better layout, actually
7089         hide the details textbox and label when we shouldn't see them.
7090
7091 2006-11-03  Jackson Harper  <jackson@ximian.com>
7092
7093         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
7094         multiline textboxes anymore.  This method also determines the
7095         width/height of a textboxes canvas area.
7096         - Sorta a revert of the last patch.  For multiline just position
7097         the controls, then bail.  This way the scrollbar width won't be
7098         altered.
7099
7100 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
7101
7102         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
7103         it dont need.  Fixes #79537.
7104
7105 2006-11-02  Jackson Harper  <jackson@ximian.com>
7106
7107         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
7108         send the status after firing the DndOver event.
7109
7110 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7111
7112         * TrackBar.cs: Now orientation only switches height / width if
7113         the control's handle is created (Win32 does it like this). Also 
7114         fixed a typo in ToString() for a test to pass, changed the 
7115         exception thrown in set_LargeChange and set_SmallChange to 
7116         match Win32 behaviour, and added TrackBar tests to the unit 
7117         tests.
7118
7119 2006-11-02  Chris Toshok  <toshok@ximian.com>
7120
7121         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
7122         not _NET_WM_STATE_NO_TASKBAR.
7123
7124 2006-11-02  Jackson Harper  <jackson@ximian.com>
7125
7126         * TextControl.cs: Increment count by one, since in the update view
7127         count - 1 is used.
7128
7129 2006-11-02  Jackson Harper  <jackson@ximian.com>
7130
7131         * TextBoxBase.cs: Use client rectangle not bounds for checking if
7132         the mouse is in the client rectangle (duh).
7133
7134 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7135         
7136         * TrackBar.cs: Fixed trackbar jumping around when clicking
7137         on it - the trackbar was not detecting correctly at which
7138         side of the thumb the click was done. (fixes #79718)
7139
7140 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
7141
7142         * ListBox.cs: scroll visible area when change SelectedIndex to
7143         a non visible area.  Fixes #79481.
7144
7145 2006-11-01  Jackson Harper  <jackson@ximian.com>
7146
7147         * TextControl.cs: When replacing the selection move the selection
7148         start/end/anchor to the end of the new text.
7149
7150 2006-11-01  Jackson Harper  <jackson@ximian.com>
7151
7152         * XplatUIWin32.cs: When setting the parent change the controls
7153         visibility to it's visibility flag, not to it's old parents
7154         visibility (.Visible walks the parent chain).
7155
7156 2006-11-01  Chris Toshok  <toshok@ximian.com>
7157
7158         * XplatUIX11.cs: revert the #79790 fix, as the simple.
7159         XSetTransientForHint fix breaks paint .net's tool windows.  more
7160         work needed for that one.
7161
7162 2006-11-01  Chris Toshok  <toshok@ximian.com>
7163
7164         * ScrollBar.cs: throw ArgumentException instead of Exception in
7165         LargeChange/SmallChange setters.  fixes unit tests.
7166
7167 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
7168
7169         * ContainerControl.cs: reverted rev.67183 (which was itself
7170         a reversion of rev.66853... eh).
7171         
7172         * Control.cs: Fixes Reflector hang by changing Focus() call
7173         to what it was before rev.66643 (calling Select() here sets 
7174         ActiveControl, which in some situations calls back Focus and 
7175         eventually does a stack overflow). Temp fix.    
7176         Changes to GetNextControl() to not look for children to select when
7177         parent cannot be selectable (so it looks for siblings instead)  
7178         
7179 2006-10-31  Mike Kestner  <mkestner@novell.com>
7180
7181         * CheckedListBox.cs : off by one error in returned index from
7182         ObjectCollection.Add.  Fixes #79758.
7183
7184 2006-10-31  Chris Toshok  <toshok@ximian.com>
7185
7186         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
7187         calls for the textbox/spinner, to keep from recursing to the point
7188         where we crash.  Fixes #79760.
7189
7190 2006-10-31  Chris Toshok  <toshok@ximian.com>
7191
7192         * ListControl.cs (set_SelectedValue): don't throw exceptions on
7193         null/"" value, just return.  matches ms's behavior and fixes some
7194         failing tests.
7195
7196 2006-10-31  Chris Toshok  <toshok@ximian.com>
7197
7198         * Control.cs (set_Capture): make a logic a little easier to
7199         follow.
7200
7201         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
7202         if it's being destroyed.  A necessary fix surely, but a bandaid
7203         also, to fix the stuck capture problem in bug #78413.
7204
7205 2006-10-31  Chris Toshok  <toshok@ximian.com>
7206
7207         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
7208         convention of clearing hwnd.ClientRect when we set the
7209         width/height (so it'll be recalculated by Hwnd).
7210
7211 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
7212
7213         * ContainerControl.cs: reversed Contains check from
7214         ActiveControl due to hanging problems. This fix
7215         partly regresses #79667 (button does not have
7216         initial focus), so this might be a symptom for 
7217         a larger parenting problem (set_ActiveControl
7218         is being called but the child control does
7219         not have the parent set yet?)   
7220         
7221 2006-10-31  Mike Kestner  <mkestner@novell.com>
7222
7223         * MenuAPI.cs : fix keynav when menu is click activated.
7224
7225 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
7226
7227         * ToolStrip*: Version 0.2.
7228
7229         * MenuStrip.cs: Version 0.1.
7230
7231         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
7232
7233 2006-10-30  Chris Toshok  <toshok@ximian.com>
7234
7235         [ fixes the oversized notify icon issue in bug #79745 ]
7236         
7237         * NotifyIcon.cs: scale the icon down to the size we're given by
7238         the XplatUI layer (this would be faster if we did it once instead
7239         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
7240         since it's never invoked.
7241
7242         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
7243         pixels high by default, so let's hardcode our systray icon to that
7244         size.  The SYSTEM_TRAY protocol should really have a way for
7245         client apps to query for the correct icon size.. but oh well.  A
7246         couple of patches to deal with the screwy client_window ==
7247         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
7248         instance, and also make sure we don't XSelectInput twice).
7249
7250 2006-10-30  Chris Toshok  <toshok@ximian.com>
7251
7252         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
7253         recreating forms.  Control recreation is the bane of my existence.
7254         Fix it in a way that keeps everyone happy.
7255
7256 2006-10-30  Chris Toshok  <toshok@ximian.com>
7257
7258         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
7259         just non-CHILD ones.  otherwise sometimes scrollbars end up with
7260         client_windows not being resized to the proper size (ReportBuilder
7261         shows this extremely well).
7262
7263 2006-10-30  Chris Toshok  <toshok@ximian.com>
7264
7265         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
7266         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
7267         showing up in the gnome taskbar.  Fixes bug #79790.
7268
7269 2006-10-30  Chris Toshok  <toshok@ximian.com>
7270
7271         * ApplicationContext.cs: guard against a NRE.
7272
7273         * Application.cs: null out the old MainForm for the context, so we
7274         don't try to use it again once it's disposed.  Fixes bug #79783.
7275
7276 2006-10-30  Chris Toshok  <toshok@ximian.com>
7277
7278         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
7279         BindingContext, set the data source directly, otherwise do the
7280         lazy approach - the actual ListManager will be created when we get
7281         a BindingContext. Fixes bug #79700.
7282
7283 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
7284
7285         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
7286           XplatUIX11.cs: Remove old 2 parameter SetVisible.
7287
7288         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
7289
7290 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
7291
7292         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
7293         of SetVisible that allows a window to be shown, but not activated.
7294         This is needed on Windows for MenuStrip, and can probably be used
7295         with MainMenu and ComboBox to fix the focus stealing issues on
7296         Windows.
7297
7298         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
7299
7300 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
7301
7302         * PictureBox.cs: Fix the output of the ToString method.
7303
7304 2006-10-29  Chris Toshok  <toshok@ximian.com>
7305
7306         * Control.cs (get_TopLevelControl): fix bug #79781.
7307
7308 2006-10-29  Chris Toshok  <toshok@ximian.com>
7309
7310         * ListControl.cs (set_DataSource): throw Exception here, not
7311         ArgumentException, to match MS behavior.
7312
7313 2006-10-29  Chris Toshok  <toshok@ximian.com>
7314
7315         * Form.cs: remove the try-catch's around calls to GetWindowState.
7316         We can just check the return value.
7317
7318         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
7319         Instead return -1.
7320
7321         * XplatUI.cs: Add note about additional return value for
7322         GetWindowState.
7323
7324 2006-10-29  Chris Toshok  <toshok@ximian.com>
7325
7326         * Control.cs (CreateHandle): when we create our handle, we also
7327         create the handles of our child controls.  Fixes one of the
7328         Control unit tests (CH11).
7329
7330 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
7331
7332         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
7333
7334 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
7335
7336         * ThemeClearlooks.cs: A little speedup.
7337
7338 2006-10-27  Chris Toshok  <toshok@ximian.com>
7339
7340         * Control.cs: implement Control.FromChildHandle in a way that
7341         matches the docs (and fixes the failed test.)
7342
7343 2006-10-27  Chris Toshok  <toshok@ximian.com>
7344
7345         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
7346         comments).
7347
7348         * DataGrid.cs: implement ResetForeColor such that the tests
7349         succeed.
7350         
7351 2006-10-27  Chris Toshok  <toshok@ximian.com>
7352
7353         * ToolBarButton.cs: setting text/tooltiptext to null results in it
7354         being set to "".  Fixes bug #79759.
7355
7356 2006-10-27  Jackson Harper  <jackson@ximian.com>
7357
7358         * TextControl.cs: We need to clear the entire selection area when
7359         setting the start, otherwise multiline selections are still
7360         visible.
7361
7362 2006-10-26  Chris Toshok  <toshok@ximian.com>
7363
7364         * PropertyGridView.cs: 
7365
7366         - ifdef all the code specific to the double
7367         buffer case, and provide some alternatives in the non-doublebuffer
7368         code, which makes heavy use of XplatUI.ScrollWindow to move things
7369         around without having to invalidate (and cause flicker).  There
7370         are still some drawing problems in the non-doublebuffered case, so
7371         DOUBLEBUFFER is defined by default.
7372
7373         - Fix the way dropdowns are handled.  now we explicitly watch for
7374         the events which might cause the dropdown to close, and break out
7375         of the nested event loop there.  This gets rid of all Capture
7376         code, at the expense of the Msg special casing.  Seems to work,
7377         though, and fixes bug #79743.
7378
7379 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
7380         * Control.cs: SetIsRecreating now recreates implicitly added
7381         child controls as well. Finally fixes #79629. The flag passed to 
7382         SetIsRecreating has also been removed since it wasn't used.
7383         
7384 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7385
7386         * PageSetupDialog.cs: Clean some code, fix some bits, 
7387         add some checks, and add a printer sub-dialog.
7388
7389 2006-10-26  Chris Toshok  <toshok@ximian.com>
7390
7391         * PropertyGrid.cs: make set_SelectedObject call
7392         set_SelectedObjects, and move the duplicate logic to the
7393         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
7394
7395         * PropertyGridView.cs: hide the textbox when we get a
7396         SelectedObjectsChanged event.
7397
7398         Fixes bug #79748.
7399
7400 2006-10-26  Chris Toshok  <toshok@ximian.com>
7401
7402         * PropertyGridView.cs: deal with the type converter not supporting
7403         GetStandardValues() or GetStandardValues() returning null, which
7404         is does in the default case.  Fixes #79742.
7405
7406 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
7407
7408         * CheckedListBox.cs: nunit no longer crashes when selecting 
7409         Project/Edit menu option
7410         
7411 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
7412
7413         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
7414         is no menu selected. fixes #79739
7415
7416 2006-10-25  Chris Toshok  <toshok@ximian.com>
7417
7418         * PropertyGridView.cs: factor out the splitter invalidation code
7419         into the SplitterPercent setter, and for kicks implement the
7420         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
7421         amount in either direction.
7422
7423 2006-10-25  Chris Toshok  <toshok@ximian.com>
7424
7425         * PropertyGridView.cs: do some cleanup of the brush used to draw
7426         text - read only fields should be grayed out.  not sure how to do
7427         this with the textbox, though.  but the textbox's should also be
7428         readonly now at least.  Also, hide/show the textbox when resizing
7429         the control.
7430         
7431         * CursorConverter.cs: use System.Reflection when getting the
7432         properties of Cursors, as TypeDescriptor.GetProperties isn't
7433         returning static properties.
7434
7435 2006-10-25  Chris Toshok  <toshok@ximian.com>
7436
7437         * PropertyGridView.cs: factor out the up/down handling, and reuse
7438         it for page up/down.  also add End/Home support.
7439
7440 2006-10-25  Chris Toshok  <toshok@ximian.com>
7441
7442         * PropertyGridView.cs:
7443
7444         - ensure the selected grid item is visible in the scrolled area,
7445         fixes bug #79572.
7446
7447         - fix Keys.Down handling when you're on the last item in the
7448         propertygrid.
7449
7450 2006-10-25  Mike Kestner  <mkestner@novell.com>
7451
7452         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
7453         clicks too.  Fixes #79725.
7454
7455 2006-10-24  Chris Toshok  <toshok@ximian.com>
7456
7457         * PropertyGrid.cs: use property.Converter instead of
7458         TypeDescriptor.GetConverter(property.PropertyType), so we catch
7459         TypeConverters declared on the property as well as on the
7460         PropertyType.  Fixes bug #79678.
7461
7462 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
7463
7464         * MimeIcon.cs, Mime.cs:
7465           Fallback to the default platform handler if no shared mime info
7466           stuff exists (fixes #79693).
7467
7468 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
7469         * ContainerControl.cs: Incorrect contains check in ActiveControl 
7470         from previous fix (duh).
7471
7472 2006-10-20  Chris Toshok  <toshok@ximian.com>
7473
7474         * PropertyGridView.cs: the dropdown should be MIN(number of items
7475         in list, 15).  Fixes #79551.
7476
7477 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
7478         Fixes #79384, #79394, #79652, #79667
7479         * Application.cs: 
7480         
7481         - Modal windows are now destroyed in the proper order for windows
7482         
7483         * ContainerControl.cs:
7484         
7485         - ActiveControl setter has more conditions on when to return:
7486                 - if we're reselecting the active control, but it actually
7487                 didn't have focus (window hidden or some such), it runs
7488                 - if the active control being selected doesn't actually 
7489                 exist in the container, it returns
7490         
7491         * Form.cs
7492         
7493         - The ShowDialog now gets the current form as the owner when
7494         invoking without parameters, and correctly activates the owner 
7495         when returning
7496         
7497         * MessageBox.cs
7498         
7499         - MessageBox now catches the Escape key to exit
7500
7501 2006-10-20  Chris Toshok  <toshok@ximian.com>
7502
7503         * PropertyGridView.cs: fix a number of issues (bug #78565, and
7504         most of bug #79676):
7505
7506         - you can navigate around the property grid with the arrow keys.
7507
7508         - the dropdown is sized properly when the pg has a vertical
7509         scrollbar.
7510
7511         - fix the indentation for subentries, and properly select the
7512         entire label rect.
7513
7514         - fix the gray bar's drawing (only draw it to the last element,
7515         not for the height of the control.  Also make sure we draw that
7516         last horizontal grid line.
7517
7518         - use the same mechanism the datagrid uses wrt the editing textbox
7519         when scrolling/resizing/etc.  Namely, we hide it first, do the
7520         operation, then show it again (if it's still visible).
7521         
7522         - aggressively remove a lot of unnecessary refreshes (and also
7523         calls to Invalidate(). call more limited variants, and only redraw
7524         what we need.)
7525         
7526         * PropertyGrid.cs:
7527
7528         - when we're populating the merged collection, fill in the UI
7529         parent with either the passed in item, or the category item we
7530         create.
7531
7532         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
7533
7534         * GridItem.cs: drop some fully qualified names.
7535         
7536         * GridEntry.cs: add a "UIParent", which is basically the parent
7537         treenode.
7538
7539         * GridItemCollection.cs: add an IndexOf method.
7540
7541 2006-10-20  Mike Kestner  <mkestner@novell.com>
7542
7543         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
7544         a working win32 NC invalidation mechanism, we can't invalidate
7545         menus.  [Fixes #79705]
7546
7547 2006-10-20  Mike Kestner  <mkestner@novell.com>
7548
7549         * ListBox.cs : don't update the VScrollbar if the list is empty,
7550         just hide it.  [Fixes #79692]
7551
7552 2006-10-20  Jackson Harper  <jackson@ximian.com>
7553
7554         * RichTextBox.cs: Handle some special chars better, and don't skip
7555         the entire group when we encounter a special char that we don't
7556         handle correctly.
7557
7558 2006-10-18  Chris Toshok  <toshok@ximian.com>
7559
7560         * PropertyGridView.cs: address a number of issues from bug #79676,
7561         mostly of the cosmetic variety.
7562
7563         - The highlight rectangle for indented items not extends all the
7564         way to the left.
7565
7566         - Indented items aren't indented so much.
7567
7568         - the dropdown is properly sized width-wise if the pg has a
7569         vertical scrollbar.
7570
7571 2006-10-18  Chris Toshok  <toshok@ximian.com>
7572
7573         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
7574         systray stuff is rather convoluted to begin with.
7575
7576         systray icons are a single window for some reason (that I haven't
7577         figured out yet), and for them, client_window == whole_window.
7578         Given the way the tests are structured elsewhere to determine
7579         which paints are pending (client vs. nc), that situation will
7580         always yield PAINT, not NCPAINT.  So, if we have a pending
7581         nc_expose and no pending expose, remove the hwnd from the paint
7582         queue, and also set nc_expose_pending to false, to keep us from
7583         blocking further expose's adding the hwnd to the paint queue.
7584
7585         phew.  like i said, a rather convoluted change.  Fixes the
7586         notifyicon repaint issues in bug #79645.
7587
7588 2006-10-18  Chris Toshok  <toshok@ximian.com>
7589
7590         * Form.cs: when getting the backcolor of the form, don't get
7591         base.BackColor, as this allows parents to influence the background
7592         color.  This breaks mdi forms.  Instead, if the background_color
7593         is empty, return the default.
7594
7595 2006-10-18  Chris Toshok  <toshok@ximian.com>
7596
7597         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
7598         to being private instead of internal static.
7599
7600         * Control.cs: remove all the stupid ParentWaitingOnRecreation
7601         crap, it wasn't working for more deeply nested controls anyway,
7602         and we already have the is_recreating flag - use that instead.
7603         Before calling DestroyHandle in RecreateHandle, recurse through
7604         the control tree setting it to true.  this returns the recreate
7605         code to much of its original simplicity, while now guaranteeing we
7606         actually recreate everything we're supposed to.  This change gets
7607         fyireporting actually showing mdi children.
7608
7609 2006-10-17  Chris Toshok  <toshok@ximian.com>
7610
7611         * Form.cs: remove some debug spew, and collapse some duplicate
7612         code at the end of SetClientSizeCore.
7613
7614         * XplatUIX11.cs: 
7615         - add some more debug spew here too wrt Destroy handling.
7616         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
7617         in Control's handling of WM_DESTROY.
7618         - Remove the handling of zombie window DestroyNotifies from the
7619         event loop - we don't need it.  Now the only DestroyNotifies we
7620         actually handle are ones generated by X.
7621         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
7622         match gtk's (functioning) handling of this. This keep metacity
7623         from leaving droppings in the form of wm borders with no window
7624         contents all over the place.
7625
7626         * Control.cs:
7627         - add a bunch of debug spew wrt control recreation.
7628         - fix a bug where we weren't tracking Visible properly on
7629         recreated hwnds.
7630         - fixed the WM_PAINT double buffer handling to support re-entrant
7631         calls (yes, i know it's gross, but it's happening to us).
7632
7633 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7634         * ThemeWin32Classic.cs: changed drawing of selected days
7635         to make them look better.
7636
7637 2006-10-16  Chris Toshok  <toshok@ximian.com>
7638
7639         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
7640         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
7641
7642         * XplatUIX11.cs: move away from using hwnd.client_dc and
7643         hwnd.non_client_dc and on to a stack of dc's (and in window's
7644         case, PAINTSTRUCT's), so we can deal with nested Paint calls
7645         without puking or not disposing of Graphics objects.
7646
7647         * XplatUIOSX.cs: same.
7648
7649         * XplatUIWin32.cs: same.
7650
7651 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
7652
7653         * FileDialog.cs: Don't call on_directory_changed inside
7654           OnSelectedIndexChanged (it changes the SelectedIndex too).
7655           Instead move it to OnSelectionChangeCommitted.
7656
7657 2006-10-13  Chris Toshok  <toshok@ximian.com>
7658
7659         * XplatUIX11.cs: more Destroy work.  the current code does the
7660         following things, in order:
7661
7662         1. Enumerates all handles of all controls at or below the one
7663         being destroyed, in pre-order.  As it is doing this, it marks the
7664         handles as zombie and clears all references to them.
7665         
7666         2. calls XDestroyWindow on the window passed in.
7667
7668         3. SendMessage's WM_DESTROY to all he handles in the accumulated
7669         list.
7670
7671 2006-10-13  Chris Toshok  <toshok@ximian.com>
7672
7673         * XplatUIX11.cs: set hwnd.zombie to true before calling
7674         SendMessage (WM_DESTROY).  this keeps us from marking the new
7675         window a zombie, and also keeps us from calling sendmessage at
7676         all.
7677
7678 2006-10-13  Jackson Harper  <jackson@ximian.com>
7679
7680         * TextControl.cs: Do not show the caret and selection at the same
7681         time.  Reduces ugliness by 35%.
7682
7683 2006-10-13  Chris Toshok  <toshok@ximian.com>
7684
7685         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
7686         zombie after we do the recursive call, so we actually do call
7687         SendMessage on the children controls.
7688         (GetMessage): if we find a pending paint event for a zombie hwnd,
7689         remove the hwnd from the paint queue, or else it will always be
7690         there (and we'll effectively loop infinitely)
7691
7692 2006-10-13  Mike Kestner  <mkestner@novell.com>
7693
7694         * MenuItem.cs : add Selected format under keynav too.
7695         Fixes #79528.
7696
7697 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
7698
7699         * PropertyGrid.cs: Fixed some NRE's and small difference between our
7700         implementation and that of MS.
7701
7702 2006-10-13  Chris Toshok  <toshok@ximian.com>
7703
7704         * Control.cs (OnInvalidated) only futz with the invalid_region if
7705         the control is double buffered.  this fixes the apparent hang in
7706         the ListView unit tests.  Someone needs to make the
7707         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
7708
7709 2006-10-13  Chris Toshok  <toshok@ximian.com>
7710
7711         * PropertyGridView.cs:
7712
7713         - do a little refactoring so that only one place calls
7714         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
7715         else call that.  Also make it Refresh, since there are redraw bugs
7716         otherwise (we should take a look at that...)
7717
7718         - do a little more refactoring work to share the body of code
7719         involved with the drop down.  it was duplicated in the code
7720         dealing with the listbox handling and in the code dealing with the
7721         UITypeEditors.
7722
7723         - add a Capture to the dropdown form's control once it's
7724         displayed, and add a MouseDown handler that checks to make sure
7725         the position is inside the control.  If it's not, close the
7726         dropdown.  This fixes #78190.
7727
7728         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
7729         if the value is different than the initial value.
7730         
7731 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
7732
7733         * Control.cs: see #78650
7734         - Fixed GetNextControl for several cases:
7735                 - Changed FindFlatForward to return 
7736                 correct sibling control when more than one
7737                 control has same TabIndex as the currently 
7738                 focused one.
7739                 - Changed FindFlatBackward to loop children
7740                 from last to first and apply same logic as in
7741                 FindFlatForward
7742                 - Changed FindControlForward to search for
7743                 children when control is not a container
7744                 but has children, or search for siblings if
7745                 control is a container...
7746                 - Changed FindControlBackward   to continue
7747                 searching for child controls when hitting 
7748                 Panel-like parents
7749                 
7750         - Fixed Focus method to update ActiveControl
7751         (FocusTest.FocusSetsActive failure)
7752         
7753         * TabControl.cs:
7754         - Focus rectangle now refreshes when gaining
7755         or losing focus
7756         - Removed grab for Tab key on IsInputKey that 
7757         was keeping tab navigation from working (#78650)
7758
7759 2006-10-13  Chris Toshok  <toshok@ximian.com>
7760
7761         * PropertyGridView.cs:
7762         - Rewrite SetPropertyValue to loop over SelectedGridItem's
7763         SelectedObjects.
7764
7765         - Deal with GridItem.Value == null a few places.
7766
7767         * PropertyGrid.cs: 
7768         - replace the PopulateGridItemCollection with a pair of methods
7769         which compute the intersection of all the properties in the
7770         SelectedObjects array.  Fixes #79615.
7771
7772         - Throw ArgumentException from set_SelectedObjects if there's a
7773         null in the array.
7774
7775         - Add GetTarget method which can be used to traverse up the
7776         GridItem.Parent chain.  It depends on the assumption that
7777         selected_objects for different GridEntries are always in the same
7778         order (a safe assumption).  Use this method and loop over all the
7779         selected objects in the entry when calling RemoveValueChanged and
7780         AddValueChanged.
7781         
7782         * GridEntry.cs: Make this handle multiple selected objects.
7783         .Value returns null if not all the selected objects share the same
7784         value.
7785
7786 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
7787         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
7788           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
7789           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
7790           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
7791           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
7792         add additional functionality.
7793
7794 2006-10-12  Mike Kestner  <mkestner@novell.com>
7795
7796         * ErrorProvider.cs : new ToolTipWindow ctor sig.
7797         * HelpProvider.cs : new ToolTipWindow ctor sig.
7798         * ToolTip.cs : remove ToolTip param from Window sig since it is
7799         not used.
7800         * ToolBar.cs : add tooltip support.  Fixes #79565.
7801
7802 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7803
7804         * ComboBox.cs: move the events in set_SelectedIndex to 
7805         after the call to HighlightIndex in order to avoid 
7806         possible recursion and subsequent problems with the call
7807         to HighlightIndex and include a range check in 
7808         set_HighlightIndex. Fixes #79588
7809         
7810 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7811
7812         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
7813         to ui thread's settings instead of sunday. 
7814         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
7815
7816 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7817
7818         * DateTimePicker.cs
7819         * MonthCalendar.cs
7820         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
7821         and implement missing functionality (selecting different parts 
7822         of the date and edit them individually with the keyboard).
7823         
7824 2006-10-11  Chris Toshok  <toshok@ximian.com>
7825
7826         * Control.cs (OnInvalidated): fix NRE relating to last change.
7827
7828 2006-10-11  Chris Toshok  <toshok@ximian.com>
7829
7830         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
7831         atoms in _NET_WM_STATE here if the window is maximized.  We need
7832         to do this because we're *replacing* the existing _NET_WM_STATE
7833         property, so those atoms will be lost otherwise, and any further
7834         call to GetWindowState will return Normal for a window which is
7835         actually maximized.  Fixes #79338.
7836
7837 2006-10-11  Jackson Harper  <jackson@ximian.com>
7838
7839         * TextControl.cs: Special case for setting selection end to
7840         selection start, we basically kill the anchor.
7841         - some todo comments.
7842
7843 2006-10-11  Chris Toshok  <toshok@ximian.com>
7844
7845         * Control.cs: switch to using an "invalid_region" to track which
7846         parts of the image buffer need updating.  This is more code than
7847         the simple fix from r66532.  That version just attempted to always
7848         fill the entire buffer on redraw, which turns out to be
7849         inefficient when invalidating small rectangles.  This version
7850         simply adds the invalid rectangle to the invalid region.  When we
7851         get any WM_PAINT message we see if it can be filled using the
7852         image buffer, and if it can't (if the paint event's clip rectangle
7853         is visible in the invalid region) we first fill the image buffer.
7854         So, the image buffer is still a cache, we just fill it lazily.
7855
7856         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
7857         need it any longer.
7858
7859 2006-10-11  Chris Toshok  <toshok@ximian.com>
7860
7861         * XplatUIX11.cs (SetWindowPos): we need to update both position as
7862         well as size after calling XMoveResizeWindow.  This keeps us from
7863         ignoring future SetWindowPos calls.  Fixes the disappearing
7864         DateTimePicker in the ToolBarDockExample from bug #72499.
7865
7866 2006-10-11  Chris Toshok  <toshok@ximian.com>
7867
7868         * TextBoxBase.cs: reorder things a bit when it comes to
7869         resizing-causing-recalculation.  we were recalculating the
7870         document when our position was changed, which shouldn't happen.
7871         We only care about size changes.  Clear up some more redundant
7872         recalculation calls while I'm at it.  This makes the toolbar dock
7873         example snappy when you're just dragging toolbars around (since it
7874         causes a relayout whenever you move one.)
7875
7876 2006-10-11  Chris Toshok  <toshok@ximian.com>
7877
7878         * ToolBarButton.cs (get_Rectangle): this only returns
7879         Rectangle.Empty if Visible == false, or Parent == null.
7880         Parent.Visible doesn't matter.
7881
7882 2006-10-10  Chris Toshok  <toshok@ximian.com>
7883
7884         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
7885         by .net 1.1, so switch to an internal method instead.
7886
7887 2006-10-10  Chris Toshok  <toshok@ximian.com>
7888
7889         * Control.cs (WM_PAINT): when a control is double buffered we draw
7890         initially to the ImageBuffer and then copy from there.  But when a
7891         parent control which has child controls is double buffered, the
7892         initial drawing doesn't encompass the entire ClientRectangle of
7893         the parent control, so we end up with uninitialized bits (this is
7894         easily seen by dragging the top toolbar in
7895         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
7896         manually set the ClipRectangle of the paint_event (only the one we
7897         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
7898         of the nastiness in bug #72499.
7899
7900         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
7901         which we use in Control.cs's WM_PAINT handling.
7902
7903 2006-10-10  Jackson Harper  <jackson@ximian.com>
7904
7905         * TextBoxBase.cs: Finish off the autoscrolling stuff.
7906
7907 2006-10-10  Chris Toshok  <toshok@ximian.com>
7908
7909         * Cursor.cs: Apply a slightly different patch to the one suggested
7910         in #79609.
7911
7912 2006-10-10  Jackson Harper  <jackson@ximian.com>
7913
7914         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
7915         not the parent form.
7916         * TextControl.cs: use difference in old line count vs new count to
7917         calculate how many lines were added, this takes into account soft
7918         line breaks properly.
7919
7920 2006-10-10  Chris Toshok  <toshok@ximian.com>
7921
7922         * LinkLabel.cs: don't call MeasureCharacterRanges against a
7923         rectangle located at 0,0 and the size of the text.  Use
7924         ClientRectangle instead.  This fixes rendering of non-left aligned
7925         link labels.
7926
7927 2006-10-10  Jackson Harper  <jackson@ximian.com>
7928
7929         * TextBoxBase.cs: When we set the selection start position the
7930         caret.
7931         * TextControl.cs: Need to update the caret when we decrement it to
7932         zero.
7933         - Make sure that the selection_visible flag gets reset to false if
7934         the selection isn't visible.  Before this you could get it set to
7935         visible by changing the selection start, then changing the end to
7936         equal the start.
7937
7938 2006-10-09  Jackson Harper  <jackson@ximian.com>
7939
7940         * TreeView.cs: Don't update scrollbars when we aren't visible.
7941         * TreeNodeCollection.cs: Only need to update scrollbars if being
7942         added to an expanded visible node or the root node.
7943
7944 2006-10-09  Chris Toshok  <toshok@ximian.com>
7945
7946         * XplatUIX11.cs (SendMessage): fix NRE.
7947
7948 2006-10-09  Jackson Harper  <jackson@ximian.com>
7949
7950         * TextBoxBase.cs: Implement horizontal autoscrolling.
7951         * TextControl.cs: Add a movement types that allows moving forward
7952         and backwards without wrapping.
7953
7954 2006-10-09  Mike Kestner  <mkestner@novell.com>
7955
7956         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
7957         with focus "expansion" of labels.  Fixes #79532 and then some.
7958         * ThemeWin32Classic.cs : add LineLimit to ListView label format
7959         when wrapping.
7960
7961 2006-10-09  Jackson Harper  <jackson@ximian.com>
7962
7963         * TextBoxBase.cs: Set the default max values to MaxValue since
7964         we use the scrollbar for autoscrolling and the default value is
7965         100.  If we don't do this the caret won't keep up with typing
7966         after about 18 characters.
7967         * TextControl.cs: Make sure the selection is offset by the
7968         viewport x.  This fixes selection when using auto scrolling.
7969
7970 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
7971         
7972         * Form.cs: The active control should be selected after the 
7973         OnLoad so that any child control initialization that affects
7974         the selection is done. Fixes #79406
7975
7976 2006-10-06  Chris Toshok  <toshok@ximian.com>
7977
7978         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
7979         to have no evil effects.
7980
7981         - Stop selecting StructureNotifyMask on non-toplevel windows.
7982
7983           The only way children should be resized is by using the SWF api,
7984           and we already send WM_WINDOWPOSCHANGED messages in those cases.
7985           Toplevel windows can be interacted with via the window manager,
7986           and so we keep the input mask there.
7987
7988           The other event StructureNotifyMask gives us (that we care
7989           about) is DestroyNotify.  The code is already structured such
7990           that it assumes we won't be getting a DestroyNotify event for
7991           the window we pass to XDestroyWindow (which is what
7992           StructureNotifyMask is supposed to guarantee.)  So, that code
7993           shouldn't be affected by this either.
7994
7995         - Stop selecting VisibilityChangeMask altogether.
7996
7997           We weren't doing anything with the resulting events anyway.
7998         
7999         This vastly reduces the number of X requests and events we see
8000         when resizing/laying out a large ui.
8001
8002 2006-10-06  Chris Toshok  <toshok@ximian.com>
8003
8004         * ScrollableControl.cs (DisplayRectangle): we need to take into
8005         account the DockPadding regardless of whether or not auto_scroll
8006         == true.  rework this slightly to this effect, and fix bug #79606,
8007         and part of #72499 (you can now see the drag handles and drag
8008         toolbars around).
8009
8010 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
8011
8012         * ListViewItem.cs: Collections of selected and checked items are now
8013         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
8014         we mark the collection "dirty".
8015         * ListView.cs: Marked collections readonly. Modified UpdateSelection
8016         to only clear SelectedItems when a new item is selected and MultiSelect
8017         is enabled. CheckedItems and SelectedItems now subscribe to Changed
8018         event of ListViewItemCollection, and mark its list dirty whenever
8019         that event is fire. This allows us to return selected/checked items 
8020         in the same order as they are in the Items collection. This matches
8021         the MS behavior.
8022
8023 2006-10-06  Chris Toshok  <toshok@ximian.com>
8024
8025         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
8026         right mouse clicks.  Fixes bug #79593.
8027
8028 2006-10-06  Chris Toshok  <toshok@ximian.com>
8029
8030         * Splitter.cs: doh, fix splitters that don't want to cancel the
8031         movement when you drag them.  Also, impose the limits on the
8032         values we send to the SplitterMovingEvent.  Fixes #79598.
8033
8034 2006-10-06  Jackson Harper  <jackson@ximian.com>
8035
8036         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
8037         since we use this for auto scrolling also.
8038
8039 2006-10-05  Chris Toshok  <toshok@ximian.com>
8040
8041         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
8042         beginning to think that most datagrid column types don't need this
8043         method.  Fixes bug #79392.
8044
8045 2006-10-05  Chris Toshok  <toshok@ximian.com>
8046
8047         * DataGrid.cs: move back to a more lazy scheme for creating the
8048         CurrencyManager, so we aren't updating it every time you set
8049         either DataSource or DataMember.  Also, don't call
8050         RecreateDataGridRows if the currency manager hasn't changed.
8051
8052 2006-10-05  Chris Toshok  <toshok@ximian.com>
8053
8054         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
8055         emitted, SelectedIndex should already be updated.  Fixes bug
8056         #78929.
8057
8058 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
8059
8060         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
8061           ToolStripTextBox.cs: Initial commit.
8062         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
8063
8064 2006-10-05  Jackson Harper  <jackson@ximian.com>
8065
8066         * TabControl.cs: We need to invalidate the tab control area when
8067         new ones are added (duh).
8068
8069 2006-10-03  Chris Toshok  <toshok@ximian.com>
8070
8071         * Form.cs (ProcessDialogKey): if the focused control is in this
8072         form and is a button, call its PerformClick method here.  Fixes
8073         #79534.
8074
8075 2006-10-04  Jackson Harper  <jackson@ximian.com>
8076
8077         * TabPage.cs: Ignore setting of Visible, and add an internal
8078         method for setting the controls visibility.  TabPage's Visible
8079         property is a little strange on MS, this seems to make us
8080         compatible, and fixes cases where people set all the tab pages to
8081         visible.
8082         * TabControl.cs: Use the new internal setting on tab pages
8083         visibility.
8084
8085 2006-10-03  Mike Kestner  <mkestner@novell.com>
8086
8087         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
8088
8089 2006-10-03  Mike Kestner  <mkestner@novell.com>
8090
8091         * ListView.cs : use is_visible instead of Visible to check if 
8092         scrollbars should be placed/sized.  Also some max_wrap_width
8093         love for LargeIcon view.  [Fixes #79533]
8094
8095 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
8096
8097         * TextControl.cs :
8098           Make set_TextAlign() do actually update the align. Fixed #78403.
8099
8100 2006-10-03  Chris Toshok  <toshok@ximian.com>
8101
8102         * DataGrid.cs: fix a crash when switching datasources if the
8103         vertical scrollbar is at someplace other than Value = 0.  Also,
8104         reduce the number of recalculation passes we do in SetDataSource
8105         from 2 to 1.
8106
8107 2006-10-03  Jackson Harper  <jackson@ximian.com>
8108
8109         * TextBoxBase.cs: Move the if value the same bail check up, we
8110         don't want to empty the document if it is already empty, this
8111         seems to severly mess up the caret.  TODO: I should probably fix
8112         the empty statement to update teh caret somehow.
8113
8114 2006-10-03  Chris Toshok  <toshok@ximian.com>
8115
8116         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
8117         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
8118         reflection, an internal row type, properties on said type, etc.)
8119         will work with our datagrid.  Fixes #79531.
8120
8121 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
8122
8123         * FileDialog.cs: Don't crash if a path is not accessible
8124           (System.UnauthorizedAccessException). Fixes #79569.
8125         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
8126           a ':' too. Return unknown icon for those paths/files.
8127
8128 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
8129
8130         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
8131         GetContainerControl returns null.
8132
8133 2006-10-02  Chris Toshok  <toshok@ximian.com>
8134
8135         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
8136         call to XGetWindowAttributes instead of "handle".  fixes an X
8137         error using notifyicon after the NotifyIconWindow to Form base
8138         class switch.
8139
8140 2006-10-02  Chris Toshok  <toshok@ximian.com>
8141
8142         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
8143         server grab and looping we need to do to get down to the most
8144         deeply nested child window.
8145         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
8146         QueryPointer again after the WarpPointer so we can generate a
8147         proper (fake) MotionNotify event to be enqueued in the destination
8148         window's queue.
8149         (GetCursorPos): call QueryPointer.
8150
8151         Fixes #79556.
8152
8153 2006-10-02  Jackson Harper  <jackson@ximian.com>
8154
8155         * NotifyIcon.cs: Derive the notify icon from a form, so things
8156         like FindForm work on it.
8157         - Swallow the WM_CONTEXTMENU message, since that is generated on
8158         mouse down, and context menu is a mouse up kinda guy.  I believe
8159         the correct fix here is probably to make the notify icon entirely
8160         NC area, but this seems to work fine for anyone not manipulating
8161         WndProc.
8162
8163 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
8164
8165         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
8166           ToolStripItemCollection.cs, ToolStripLabel.cs,
8167           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
8168           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
8169           Initial implementation.
8170         * TextRenderer.cs: Provide padding to MeasureText.
8171
8172 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
8173
8174         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
8175         of ButtonBaseAccessibleObject. Fix bug #79552.
8176
8177 2006-10-02  Jackson Harper  <jackson@ximian.com>
8178
8179         * MdiWindowManager.cs: When maximizing use the containers client
8180         rect, not it's bounds, so nc area is accounted correctly.
8181         - Use the parent form's size for the menu position, since the
8182         client isn't always the full form size.
8183
8184 2006-10-01  Chris Toshok  <toshok@ximian.com>
8185
8186         * ScrollableControl.cs: make sure neither right_edge or
8187         bottom_edge are < 0, since they're used as LargeChange for the
8188         horiz/vert scrollbars respectively.  Fixes #79539.
8189
8190 2006-10-01  Chris Toshok  <toshok@ximian.com>
8191
8192         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
8193         the xplatuix11 code can cause us to destroy/recreate our handle.
8194
8195         * XplatUIX11.cs
8196         (SystrayAdd):
8197         - this code can be invoked many times for the same Hwnd.  Make
8198           sure we only destroy the client window once (the first time this
8199           method is called).  This fixes bug #79544.
8200         - Remove the call to the improperly bound XSync.  why we had two
8201           bindings to this, I will never know, but this call resulted in
8202           events being discarded from the queue(!).
8203         - correct a misunderstanding of _XEMBED_INFO - the second atom is
8204           not our current state but the state we wish to be in.  So, 0 if
8205           we don't want to be mapped.  Change it to 1.
8206         (SystrayRemove): The XEMBED spec makes mention of the fact that
8207         gtk doesn't support the reparent of client windows away from the
8208         embedder.  Looking at gtksocket-x11.c seems to agree with this.
8209         The only avenue we have for removing systray icons is to destroy
8210         them.  We don't want the handle to go away for good, though, so
8211         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
8212         #79545.
8213         
8214 2006-10-01  Chris Toshok  <toshok@ximian.com>
8215
8216         * Form.cs (WndProc): inline the native_enabled variable usage into
8217         the cases in which it's used.  Fixes #79536.
8218
8219 2006-09-29  Mike Kestner  <mkestner@novell.com>
8220
8221         * ListView.cs : toggle the selection state for ctrl clicks in 
8222         multiselect mode. [Fixes #79417]
8223
8224 2006-09-29  Mike Kestner  <mkestner@novell.com>
8225
8226         * ListView.cs : kill CanMultiSelect and refactor the selection
8227         code to support multiselection in the absence of mod keys. Steal
8228         arrow/home/end keys by overriding InternalPreProcessMessage to
8229         restore regressed keynav behavior.
8230         [Fixes #79416]
8231
8232 2006-09-29  Jackson Harper  <jackson@ximian.com>
8233
8234         * MdiClient.cs: Repaint the titlebars when the active window is
8235         changed.
8236
8237 2006-09-29  Chris Toshok  <toshok@ximian.com>
8238
8239         * Application.cs: when entering a runloop with a modal, make sure
8240         the hwnd is enabled.  Fixes #79480.
8241
8242 2006-09-29  Chris Toshok  <toshok@ximian.com>
8243
8244         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
8245         when ListManager.CanAddRows == false, bump us back one.
8246
8247         * DataGridColumnStyle.cs (ParentReadOnly): remove the
8248         listmanager.CanAddRows check.  This makes ArrayLists uneditable
8249         using a datagrid, which is not right.
8250         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
8251         is an IEditable, but call property_descriptor.SetValue regardless.
8252         fixes #79435.
8253
8254 2006-09-29  Chris Toshok  <toshok@ximian.com>
8255
8256         * DataGridBoolColumn.cs: we need to test equality in the face of
8257         possible null values (as is the case with the default NullValue).
8258         This patch keeps us from crashing in that case.
8259
8260 2006-09-29  Jackson Harper  <jackson@ximian.com>
8261
8262         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
8263         here, since it will get called for every node collection in the
8264         tree. This is now done in the treeview once the sorting is
8265         finished.
8266         * TreeView.cs: Recalculate the visible order, and update the
8267         scrollbars after sorting, set the top nope to the root so that the
8268         recalc actually works.
8269
8270 2006-09-29  Chris Toshok  <toshok@ximian.com>
8271
8272         * LinkLabel.cs: more handling of the default link collection in
8273         the face of LinkArea manipulation.  The default link collection
8274         contains 1 element (start=0,length=-1).  If the user sets LinkArea
8275         to anything and the links collection is the default, clear it.
8276         Then only add the link if its nonempty.  Fixes #79518.
8277
8278 2006-09-29  Chris Toshok  <toshok@ximian.com>
8279
8280         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
8281         piece correctly when we hit a '\n'.  Fixes #79517.
8282
8283 2006-09-29  Chris Toshok  <toshok@ximian.com>
8284
8285         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
8286         change the binding of gdk_init_check to take two IntPtr's, and
8287         pass IntPtr.Zero for both of them.  Fixes #79520.
8288
8289 2006-09-29  Mike Kestner  <mkestner@novell.com>
8290
8291         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
8292         [Fixes #78779]
8293
8294 2006-09-28  Jackson Harper  <jackson@ximian.com>
8295
8296         * XplatUIX11.cs: When translating NC messages make sure we go from
8297         whole window to screen, not client window to screen.
8298         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
8299         method doesn't exist
8300         - Skip over controls that aren't forms when arranging.
8301
8302 2006-09-28  Jackson Harper  <jackson@ximian.com>
8303
8304         * XplatUIWin32.cs: Clip the rect to the parent window.
8305         * XplatUIStructs.cs: Add clipping modes struct.
8306         * InternalWindowManager.cs: New private method that factors title
8307         bar heights in when calculating the pos of an NC mouse message.
8308         - Use SendMessage to force a paint when the form's size is changed
8309         instead of painting the decorations immediately.
8310         - Don't let the NC button click messages get to DefWndProc,
8311         because they will attempt to handle windowing themself, and this
8312         messes up z-order (it will put them in front of the scrollbars).
8313         * XplatUIX11.cs: Make sure that we don't reset window managers if
8314         we already have one (ie the window is an MDI window).
8315
8316 2006-09-28  Chris Toshok  <toshok@ximian.com>
8317
8318         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
8319         menu code really needs going over.
8320
8321 2006-09-27  Chris Toshok  <toshok@ximian.com>
8322
8323         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
8324         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
8325         window is maximizable.  So, we need to make sure that even if we
8326         clear the border/wm frame of those functions, they're still
8327         available (basically, we remove the decoration without removing
8328         the function).  Half the fix for #79338.
8329
8330 2006-09-27  Chris Toshok  <toshok@ximian.com>
8331
8332         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
8333         Fixes bug #79515.
8334
8335 2006-09-27  Chris Toshok  <toshok@ximian.com>
8336
8337         * Splitter.cs: reorder things a bit so that we don't actually
8338         draw/move the splitter until after calling OnSplitterMoving.  This
8339         lets users cancel/disallow the movement by explicitly setting
8340         event.SplitX/SplitY.  Fixes #79372.
8341
8342 2006-09-27  Jackson Harper  <jackson@ximian.com>
8343
8344         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
8345         because it is most likely on a window being destroyed, and that
8346         will give us an X11 error.
8347
8348 2006-09-27  Chris Toshok  <toshok@ximian.com>
8349
8350         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
8351         the dropdown button now toggles between showing and hiding the
8352         dropdown.  Also, get rid of dropdown_form_showing and just use
8353         dropdown_form.Visible.  We still don't do a grab, but I'll leave
8354         that part to someone who has handled Capture-fu before.
8355
8356 2006-09-27  Chris Toshok  <toshok@ximian.com>
8357
8358         * DataGrid.cs: return false if alt isn't pressed when '0' is
8359         pressed.  this keeps the '0' key from being swallowed, and fixes
8360         bug #79350.
8361
8362 2006-09-27  Chris Toshok  <toshok@ximian.com>
8363
8364         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
8365         Calling Refresh (in response to a scrollbar event) screws up the
8366         scrollbar painting.  Fixes bug #78923.
8367
8368 2006-09-27  Chris Toshok  <toshok@ximian.com>
8369
8370         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
8371         then insert into hashtable" blocks threadsafe.
8372
8373 2006-09-27  Chris Toshok  <toshok@ximian.com>
8374
8375         * MessageBox.cs (CreateParams): the styles should be |'ed with our
8376         baseclass's, since otherwise the
8377         ControlBox/MinimizeBox/MaximizeBox assignments above have no
8378         effect.  This gets the close button back in messageboxes.
8379
8380 2006-09-27  Chris Toshok  <toshok@ximian.com>
8381
8382         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
8383         flag, not just != 0.  this makes flags that are actually multiple
8384         bits (like WS_CAPTION) work.  fixes bug #79508.
8385
8386 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
8387
8388         * PageSetupDialog.cs: add support for getting and settings the 
8389         paper size, source and orientation.
8390
8391 2006-09-26  Chris Toshok  <toshok@ximian.com>
8392
8393         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
8394         and caption == "", we need to remove the resize handles as well as
8395         the title bar.
8396
8397         * Control.cs (set_Text): turns out that setting Text on a form
8398         should change the WM styles on the window, since if ControlBox ==
8399         false, the only way to get a window border is to have a non-""
8400         Text property.  check winforms/forms/text.cs for an example.  so,
8401         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
8402         update both window styles and title.  This fixes a lot of dialogs
8403         (including the preferences dialog in MonoCalendar.)
8404
8405 2006-09-26  Chris Toshok  <toshok@ximian.com>
8406
8407         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
8408         control isn't a Form), call Win32ShowWindow to hide the window,
8409         but don't update the control Visible property.  When we reparent
8410         back to a parent control, call SetVisible in order for the
8411         window's visibility to be reinstated.
8412
8413         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
8414         the FosterParent.
8415
8416         * Control.cs (ControlCollection.Remove): remove that value.Hide()
8417         call for good, since it breaks MonoCalendar (and other things I'm
8418         sure.) Also, set all_controls to null *after* the owner calls,
8419         which end up regenerating it.
8420         (ChangeParent): allow new_parent to be == null, passing
8421         IntPtr.Zero down to XplatUI.
8422
8423         this fixes #79294 the right way.
8424
8425 2006-09-26  Mike Kestner  <mkestner@novell.com>
8426
8427         * GridEntry.cs : internal SetParent method.
8428         * PropertyGrid.cs : attach to property changed on the proper
8429         target if we have a hierarchical grid with subobjects. Setup
8430         GridItem.Parent for hierarchical items.
8431         * PropertyGridView.cs : Set value on the correct target for
8432         hierarchical grids. [Fixes #78903]
8433
8434 2006-09-26  Chris Toshok  <toshok@ximian.com>
8435
8436         * Control.cs (ChildNeedsRecreating): this should return true if
8437         either we're being recreated and the child is in our list, or our
8438         parent is waiting for our recreation.
8439
8440 2006-09-26  Chris Toshok  <toshok@ximian.com>
8441
8442         * Control.cs (ControlCollection.Remove): reinstate the
8443         value.Hide() call as suggested in bug #79294.
8444
8445 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
8446
8447         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
8448         coordinates (versus a relative move).
8449
8450 2006-09-26  Chris Toshok  <toshok@ximian.com>
8451
8452         * Control.cs: rework child recreation a little bit.  It turns out
8453         that we race between the DestroyNotify the WM_DESTROY message.  If
8454         the parent gets its DestroyNotify before the child gets the
8455         WM_DESTROY message, the child ends up not recreating (since the
8456         parent finishes its recreation on DestroyNotify, and the child
8457         checks ParentIsRecreating.)
8458
8459         So, instead we store off a list of all the child controls which
8460         need to be recreated when the parent control starts to recreate
8461         itself.  Then, when child controls get their WM_DESTROY message we
8462         check to see if they're in the parent's pending recreation list,
8463         and if so, we recreate.  This removes all dependency on ordering
8464         from the code and fixes the initial MonoCalendar upgrade dialog.
8465         
8466 2006-09-26  Jackson Harper  <jackson@ximian.com>
8467
8468         * TextControl.cs: Use the Line to get the length of the line,
8469         since soft line breaks can change the end line.
8470
8471 2006-09-26  Chris Toshok  <toshok@ximian.com>
8472
8473         * Control.cs (ControlCollection.AddImplicit): don't add the
8474         control again if it's already in one of our lists.  This keeps us
8475         from adding controls over and over again for comboboxes when their
8476         handle gets recreated (as the combobox adds implicit controls in
8477         OnHandleCreated).  Fixes the X11 errors in bug #79480.
8478
8479 2006-09-26  Jackson Harper  <jackson@ximian.com>
8480
8481         * TextControl.cs: When deleting characters make sure that any
8482         orphaned zero lengthed tags get deleted.
8483         - Fix ToString for zero lengthed tags.
8484
8485 2006-09-25  Jackson Harper  <jackson@ximian.com>
8486
8487         * TextControl.cs: When getting a tag at the location there can be
8488         multiple tags at the same spot, these are 0-lengthed tags that
8489         appear when extra formatting has been stuck in a location.  We
8490         need to pull out the last of these 0 lengthed tags.
8491
8492 2006-09-25  Jackson Harper  <jackson@ximian.com>
8493
8494         * TextControl.cs: Fix print out in debug method.
8495         * TextBoxBase.cs: When text is set bail if we are setting to the
8496         previous value.
8497         
8498 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
8499
8500         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
8501           It is now possible to change the selected index in a FontXXXListBox
8502           with the up and down arrow keys from the FontXXXTextBoxes.
8503           Also, send the FontXXXTextBox mouse wheel event to the corresponding
8504           FontXXXListBoxes to match ms.
8505
8506 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
8507
8508         * SystemInformation.cs: Return a clone of the theme's MenuFont because
8509         anyone can dispose it, anytime. All other properties returns enums, 
8510         structs or basic types so they don't need such tricks.
8511
8512 2006-09-22  Jackson Harper  <jackson@ximian.com>
8513
8514         * XplatUI.cs:
8515         * XplatUIWin32.cs:
8516         * Clipboard.cs:
8517         * DataFormats.cs:
8518         * XplatUIOSX.cs:
8519         * XplatUIDriver.cs: Update interface to add a primary selection
8520         flag, so the driver can use the primary selection buffer if
8521         needed.
8522         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
8523
8524         * RichTextBox.cs: We need to supply the data object to paste now
8525         (so we can choose to supply CLIPBOARD or PRIMARY).
8526         * TextBoxBase.cs: Supply data object to paste (see above).
8527         - Middle click uses the primary selection data object.
8528         
8529 2006-09-21  Chris Toshok  <toshok@ximian.com>
8530
8531         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
8532         of SetWMStyles.  It's still a rat's nest and is largely
8533         order-dependent which I dislike immensely.  This also fixes the X
8534         button disappearing from toplevel forms.
8535
8536 2006-09-21  Mike Kestner <mkestner@novell.com>
8537
8538         * ListBox.cs: move Jordi's click/dblclick raising code to the
8539         mouse up handler.
8540
8541 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8542
8543         * ListBox.cs: Fixes 79450
8544
8545 2006-09-21  Mike Kestner <mkestner@novell.com>
8546
8547         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
8548         to deal with people updating the TreeNodeCollection after the tree
8549         is disposed.  "Fixes" 79330.
8550
8551 2006-09-20  Jackson Harper <jackson@ximian.com>
8552
8553         * TextControl.cs: Push the cursor record onto the undo stack
8554         before the delete action. This fixes 78651.
8555
8556 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
8557
8558         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
8559         CreateParams. Fixes 79329.
8560
8561 2006-09-19  Chris Toshok  <toshok@ximian.com>
8562
8563         * XplatUIX11.cs: a couple of blanket code massage passes to clean
8564         things up a bit.  First, get rid of the NetAtoms array (and the NA
8565         enum), and just embed the atoms as static fields.  Also, add a
8566         couple of functions (StyleSet and ExStyleSet) to clean up all the
8567         bitmask testing of styles.
8568
8569         * X11Structs.cs: remove the NA enum, not needed anymore.
8570         
8571 2006-09-19  Chris Toshok  <toshok@ximian.com>
8572
8573         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
8574         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
8575         added cleanup to get MessageBox titles appearing again, which were
8576         broken by my earlier fix for caption-less/ControlBox-less windows.
8577
8578 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
8579
8580         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
8581           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
8582           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
8583           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
8584           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
8585           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
8586           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
8587           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
8588           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
8589           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
8590           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
8591             Inital import.
8592         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
8593           ToolStripButton.cs: Stubs needed for above.
8594         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
8595
8596 2006-09-15  Chris Toshok  <toshok@ximian.com>
8597
8598         * XplatUIX11.cs:
8599         - make the MessageQueues hashtable Synchronized.
8600         
8601         - SendMessage: if the Hwnd is owned by a different thread, use the
8602         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
8603         thread.  Fixes bug #79201.
8604
8605 2006-09-15  Chris Toshok  <toshok@ximian.com>
8606
8607         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
8608         ControlBox == false, we disallow maximize/minimize/close.  If the
8609         form Caption is "" we also disallow move (and get rid of the Title
8610         decoration).  Unfortunately, regardless of how things are set,
8611         we're stuck with the Title and WM menu.
8612
8613 2006-09-15  Chris Toshok  <toshok@ximian.com>
8614
8615         * Application.cs: add locking around the static message_filters
8616         ArrayList, part of #79196.
8617
8618 2006-09-15  Chris Toshok  <toshok@ximian.com>
8619
8620         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
8621         Form.ControlBox == false, the window has no titlebar nor resize
8622         handles.  fixes bug #79368.
8623
8624 2006-09-15  Chris Toshok  <toshok@ximian.com>
8625
8626         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
8627         >= 0.  Fixes bug #79370.
8628
8629 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
8630         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
8631         * Control.cs:
8632             Add properties: LayoutEngine, Margin, DefaultMargin.
8633             Add method: GetPreferredSize.
8634             Move layout logic from PerformLayout to layout engines. 
8635
8636 2006-09-13  Chris Toshok  <toshok@ximian.com>
8637
8638         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
8639         fix for #79326 broke #78718, so this change addresses that.
8640
8641         - in SendWMDestroyMessages remove the call to
8642         CleanupCachedWindows, since we might be recreating the control and
8643         need to maintain the references to right Hwnd handles.  Also, set
8644         the zombie flag to true for each of the children in the hierarchy
8645         instead of calling hwnd.Dispose.  This will cause GetMessage to
8646         ignore all events for the window except for DestroyNotify.
8647
8648         - In GetMessage, ignore messages except for DestroyNotify for
8649         zombie hwnds.
8650         
8651         * Control.cs: revert the is_recreating fix from the last
8652         ChangeLog.  It's definitely "right", but it breaks switching from
8653         an MDI form to a non-MDI form.  Will need to revisit that.
8654
8655         * Hwnd.cs: add a zombie flag, which means "the
8656         client_window/whole_window handles are invalid, but we're waiting
8657         for the DestroyNotify event to come in for them".  Set the flag to
8658         false explicitly if setting WholeWindow/ClientWindow, and also
8659         when Disposing.
8660         
8661 2006-09-13  Chris Toshok  <toshok@ximian.com>
8662
8663         * XplatUIX11.cs: rework window destruction slightly.
8664
8665         - when destroying the windows associated with a control, we don't
8666         need 2 separate XDestroyWindow calls.  Just the one for the
8667         whole_window (or for client_window if whole_window is somehow
8668         IntPtr.Zero -- can this happen?) is enough.
8669
8670         - reworked SendWMDestroyMessages slightly, so we always dispose
8671         the child control hwnd's after sending the messages.
8672         
8673         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
8674         the two places it was used (one was even using hwnd.Handle and the
8675         other hwnd.client_window.  ugh), adding another call in
8676         SendWMDestroyMessages.  We need this new call because now the
8677         DestroyNotify events in the queue will be ignored for the child
8678         controls (as their hwnd's were disposed, and the window id's
8679         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
8680
8681         - this fixes bug #79326.
8682
8683 2006-09-13  Chris Toshok  <toshok@ximian.com>
8684
8685         * Control.cs: don't always set is_recreating to false at the end
8686         of RecreateHandle, since sometimes we're not done (and won't be
8687         until WndProc handles the WM_DESTROY message).  Also, set
8688         is_recreating to false in the WM_DESTROY handling code.  Part of
8689         the fix for bug #79326.
8690
8691 2006-09-13  Miguel de Icaza  <miguel@novell.com>
8692
8693         * X11DesktopColors.cs: Start the droppage of debugging messages.
8694
8695         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
8696
8697 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
8698
8699         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
8700
8701 2006-09-12  Chris Toshok  <toshok@ximian.com>
8702
8703         * DataGrid.cs (get_ListManager): if the list_manager is null, try
8704         to create it using SetDataSource.  Fixes bug #79151.
8705
8706 2006-09-11  Chris Toshok  <toshok@ximian.com>
8707
8708         * XEventQueue.cs: add a DispatchIdle property.
8709
8710         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
8711         either the queue is null, or the queue has DispatchIdle set to
8712         true.
8713         (DoEvents): set queue.DispatchIdle to false around the
8714         peek/translate/dispatch message loop in this method.  This keeps
8715         Application.Doevents from emitting idle events.  Part of the fix
8716         for #78823.
8717
8718 2006-09-11  Chris Toshok  <toshok@ximian.com>
8719
8720         * DataGrid.cs (set_DataSource): make this work for both the
8721         winforms/datagrid test and ReportBuilder.  It seems as though when
8722         we've created a ListManager (or maybe it's if we have a
8723         BindingContext?), when we set the DataSource it clears the
8724         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
8725         #79333.
8726
8727 2006-09-11  Chris Toshok  <toshok@ximian.com>
8728
8729         * XplatUIX11.cs: deal with queue being null, which happens in all
8730         the Clipboard functions.  Fixes one of the two problems mentioned
8731         in #78612.
8732
8733 2006-09-11  Chris Toshok  <toshok@ximian.com>
8734
8735         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
8736         button on various spots (including outside the menu) works closer
8737         to MS, and doesn't crash.  Fixes #79343.
8738
8739 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
8740
8741         * ListView.cs: Do not initialize item_sorter in init. To match MS,
8742         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
8743         and the internal comparer is set. When a new ListViewItemSorter is set,
8744         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
8745         was specified. No further processing is necessary if SortOrder is set
8746         to it's current value. If Sorting is modified to None, and View is
8747         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
8748         (either custom or our internal ItemComparer) to null, on 1.0 profile
8749         only set item_sorter to null if its our internal IComparer. If Sorting
8750         is modified to Ascending or Descending, then use our internal IComparer
8751         if none is set, and if the current IComparer is our internal one then:
8752         on 2.0 profile always replace it with one for new Sorting, and on 1.0
8753         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
8754         Enum.IsDefined to verify whether a valid View value is specified in
8755         its setter. Automatically sort listview items when listview is
8756         created. In Sort, do nothing if ListView is not yet created, or if
8757         no item_sorter is set (no Sorting was set, Sorting was explicitly set
8758         to None or ListViewItemSorter was set to null). Added Sort overload
8759         taking a bool to indicate whether the ListView should be redrawn when
8760         items are sorted (we use this in ListViewItemCollection to avoid double
8761         redraws). Modified our internal IComparer to take the sort order into
8762         account. In Add and AddRange methods of ListViewItemCollection, also
8763         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
8764         view), but use overload with noredraw option to avoid double redraw.
8765         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
8766         true when View is Tile, and do the same when attempting to set View to
8767         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
8768         for selected/checked indices, as it involves overhead when sorting is
8769         done while these collections are not used all that often. Instead
8770         we'll build the indices on demand. Modified IList implementation of
8771         CheckedIndexCollection to use public methods if object is int.
8772         Modified CheckedListViewItemCollection to hide checked items if
8773         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
8774         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
8775         IList implementation in SelectedIndexCollection to use public methods
8776         if object is int. Modified SelectedListViewItemCollection to hide
8777         selected items if listview is not yet created.
8778         * ListViewItem.cs: CheckedIndices list no longer needs to be
8779         maintained separately (see ListView changes). Also clone font, fixes
8780         test failure.
8781
8782 2006-09-11  Mike Kestner  <mkestner@novell.com>
8783
8784         * ComboBox.cs: if we are updating the contents of the currently
8785         selected index, refresh the control or the textbox selection.
8786         [Fixes #79066]
8787
8788 2006-09-11  Mike Kestner  <mkestner@novell.com>
8789
8790         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
8791         the 'specified' logic has been moved there.  This seems like a bug 
8792         in Control.cs, since our current SetBoundsCore completely ignores 
8793         the specified parameter.  Peter's commit seems to indicate that is 
8794         the way the MS control implementation works.  [Fixes #79325]
8795
8796 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
8797
8798         * XplatUI.cs: Set default_class_name to be composed
8799         of current domain id. This allows MWF to be loaded in multiple
8800         domains on Win32.
8801
8802 2006-09-09  Miguel de Icaza  <miguel@novell.com>
8803
8804         * X11Keyboard.cs: If we are unable to obtain the input method, do
8805         not call CreateXic to create the input context.   Should fix
8806         #78944/79276.
8807
8808 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
8809
8810         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
8811           Simplified gnome support by adding more pinvokes to get the
8812           icon for a file or mime type.
8813
8814 2006-09-08  Jackson Harper  <jackson@ximian.com>
8815
8816         * MenuAPI.cs: Deslect popup context menu items before closing the
8817         window, so that you don't see the previously selected item
8818         selected when you reopen the menu.
8819         * TextControl.cs: Update the cursor position even if we don't have
8820         focus.  This fixes typing in things like the ComboBox.  I'm not
8821         totally sure we should always set the visibility if we don't have
8822         focus, but couldn't find any corner cases where the cursor showed
8823         up when it shouldn't.
8824
8825 2006-09-08  Chris Toshok  <toshok@ximian.com>
8826
8827         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
8828         our arrays are length 256.  & 0xff before indexing.  Fixes the
8829         crash in bug #78077.
8830         
8831 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8832
8833         * ThemeWin32Classic.cs: 
8834         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
8835         is true. Handle that check box too.
8836
8837 2006-09-07  Chris Toshok  <toshok@ximian.com>
8838
8839         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
8840         79244.
8841
8842 2006-09-07  Chris Toshok  <toshok@ximian.com>
8843
8844         * Control.cs: in set_BackColor only do the work if
8845         background_color != value.
8846
8847         * XplatUIX11.cs: move the clearing of invalid areas (both client
8848         and nc) to the same block of code where we set (nc_)expose_pending
8849         to false.  That is, move it from PaintEventEnd to PaintEventStart,
8850         so things that cause invalidates from within OnPaint will trigger
8851         another call to OnPaint.  Fixes bug #79262.
8852
8853 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
8854
8855         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
8856         * FileDialog.cs: Fix typo
8857
8858 2006-09-07  Jackson Harper  <jackson@ximian.com>
8859
8860         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
8861         for tab pages if they have any.
8862
8863 2006-09-06  Mike Kestner  <mkestner@novell.com>
8864
8865         * Splitter.cs: use the "current" rect when finishing drag handle
8866         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
8867
8868 2006-09-06  Mike Kestner  <mkestner@novell.com>
8869
8870         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
8871         support offset splitters. [Fixes #79298]
8872
8873 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
8874
8875         * Mime.cs: Fixed a bug that could override the global mime type
8876           result.
8877
8878 2006-09-05  Jackson Harper  <jackson@ximian.com>
8879
8880         * TabControl.cs: Better calculation method for setting the slider
8881         pos. Prevents crashes on really wide tabs.
8882         - Draw Image on tab pages if an image list is used.
8883
8884 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8885
8886         * MonthCalendar.cs: When Font changes, the Size should be
8887         updated to fit the new font's space requirements.
8888
8889 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
8890
8891         * ListBox.cs: If the items are cleared with Items.Clear set
8892           top_index to 0.
8893
8894 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8895
8896         * MonthCalendar.cs: Handle arrow keys as input keys. Also
8897         fire DateChanged event instead of DateSelected event when
8898         the date was changed by keyboard interaction.
8899
8900 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8901
8902         * DateTimePicker.cs: Handle DateChanged for the associated
8903         month_calendar control, and set month_calendar.Font from 
8904         OnFontChanged method, as well as resize the height of the
8905         control when needed. Make PreferredHeight proportional.
8906
8907 2006-09-01  Chris Toshok  <toshok@ximian.com>
8908
8909         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
8910         properties.
8911
8912         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
8913
8914 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
8915
8916         * FileDialog.cs: Set ClientSize instead of window size, to allow space
8917           for decorations (Fixes #79219)
8918
8919 2006-09-01  Mike Kestner  <mkestner@novell.com>
8920
8921         * ComboBox.cs: first stab at sorting plus some selection handling
8922         fixes to bring us more in line with MS behavior.  Also switches back
8923         to index based selection.  Alternative patches for index-based 
8924         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
8925         and latency@gmx.de on bug 78848.  I assume they were similar to this
8926         code I've had simmering in my tree forever.
8927         [Fixes #78848]
8928
8929 2006-09-01  Chris Toshok  <toshok@ximian.com>
8930
8931         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
8932         when setting list position guard against ending up with a -1 index
8933         (the other part of the fix for #78812).  Should probably make sure
8934         we don't need the analogous fix in the ItemDeleted case.
8935
8936         * DataGrid.cs:
8937         - in SetDataSource, work around the fact that the way
8938         OnBindingContextChanged is invoked will cause us to re-enter this
8939         method.  I'll remove the hack once I investigate
8940         OnBindingContextChanged.
8941
8942         - fix the logic in set_DataSource and set_DataMember (basically
8943         what to do if the other of the two is null.)
8944         
8945         - in OnListManagerItemChanged, we need to take into account the
8946         edit row when deciding whether or not to call RecreateDataGridRows
8947         (part of the fix for #78812).
8948
8949 2006-09-01  Jackson Harper  <jackson@ximian.com>
8950
8951         * Splitter.cs: Don't do anything if there is no control to affect
8952         (prevents us from crashing in weird tet cases).
8953         * TreeView.cs: Bounding box for the mouse movement reverting
8954         focus/selection back to previously selected node.  This matches
8955         MS, and makes the tree a lot more useable.
8956         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
8957         use clipping so they are not drawn.  This fixes when the control
8958         is set to have a transparent background, or if it was over an
8959         image.
8960
8961 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
8962
8963         * MimeIcon.cs: Improved handling for reading default icons when
8964           using gnome (2.16 made it necessary). Check and read svg icons
8965           first, then 48x48 and then 32x32 icons.
8966
8967 2006-08-31  Chris Toshok  <toshok@ximian.com>
8968
8969         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
8970         visible.
8971
8972         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
8973         ProcessKeyPreview.  Fixes part of #77806.
8974
8975         * DataGrid.cs: big patch.
8976
8977         - revert the queueing up of DataSource/DataMember if inside
8978         BeginInit/EndInit calls.  That's not the way the datagrid achieves
8979         its delayed databinding.  Instead, call SetDataSource in
8980         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
8981         #78811.
8982
8983         - Also, it wasn't mentioned in #78811, but the test case exhibits
8984         behavior that was lacking in our datagrid implementation - Columns
8985         that have mapping names that don't exist in the datasource's
8986         properties aren't shown.  Yuck.  To fix this I added the bound
8987         field to the column style, and basically any calculation to figure
8988         out anything about columns uses a loop to find the bound columns.
8989         still need to investigate if I can cache an array of the bound
8990         columns or if the indices must be the same.
8991
8992         - When setting CurrentCell, we no longer abort if the cell being
8993         edited was in the add row.  This fixes the other part of #77806.
8994
8995         - The new code also fixes #78807.
8996         
8997         * ThemeWin32Classic.cs: perpetrate the same disgusting
8998         column.bound field hack, and only render bound fields.
8999
9000 2006-08-31  Chris Toshok  <toshok@ximian.com>
9001
9002         * DataGridColumnStyle.cs: add bound field.  this field is true if
9003         the datasource has a property corresponding to the mapping name.
9004
9005         * DataGridTableStyle.cs: set the bound field on the column styles
9006         depending on whether or not we have a column for that property.
9007
9008 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
9009
9010         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
9011           splitter control (fixes #79228)
9012
9013 2006-08-31  Chris Toshok  <toshok@ximian.com>
9014
9015         * DataGridColumnStyle.cs: we need to delay the assignment of
9016         property descriptor until the last possible moment due to the lazy
9017         databinding stuff in the datagrid.  Also, fix the exceptions
9018         thrown by CheckValidDataSource to match MS.
9019
9020 2006-08-31  Jackson Harper  <jackson@ximian.com>
9021
9022         * Form.cs: When activated select the active control, if there is
9023         no active control, we select the first control.
9024         * XplatUIX11.cs: If there is no focus control when we get a
9025         FocusIn event, find the toplevel form and activate it.  This
9026         occurs when you popup a window, it becomes the focus window, then
9027         you close that window, giving focus back to the main window.
9028
9029 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9030
9031         * MonthCalendar.cs: 
9032         * ThemeWin32Classic.cs: Cache Font in bold style, as well
9033         as StringFormat with Center alignments in MonthCalendar,
9034         instead of creating new ones when drawing the control. 
9035         Also, draw the month name in bold style.
9036
9037 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
9038
9039         * Control.cs:
9040           - PerformLayout(): It would seem MS performs the fill even if the 
9041             control is not visible (part of #79218 fix)
9042           - ResetBackColor(): Use the setter to reset the color, to allow
9043             overriders to catch the change.
9044         * Form.cs:
9045           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
9046           - CreateHandle(): dito (part of $79218 fix)
9047           - Don't set an icon if we have a dialog
9048         * ScrollableControl.cs:
9049           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
9050           - ScrollIntoView(): No need to scroll if control is already visible
9051             (resolves fixme and fixes #79218)
9052
9053 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9054
9055         * MonthCalendar.cs: Change proportions in SingleMonthSize
9056         to match the aspect of the original control.
9057
9058 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
9059
9060         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
9061           get updated when they get maximized.
9062
9063 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
9064
9065         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
9066
9067 2006-08-29  Chris Toshok  <toshok@ximian.com>
9068
9069         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
9070
9071 2006-08-29  Jackson Harper  <jackson@ximian.com>
9072
9073         * TreeView.cs: Need to track selected node and highlighted node,
9074         they aren't always the same thing, when the mouse is down on a
9075         node it is hilighted, but not selected yet.
9076         - Do the HideSelection stuff right
9077         - Need to focus on rbutton mouse down. And redraw selection when
9078         right click is mouse upped.
9079
9080 2006-08-29  Mike Kestner  <mkestner@novell.com>
9081
9082         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
9083         when SubItems.Count < Columns.Count.  [Fixes #79167]
9084
9085 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
9086
9087         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
9088
9089 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
9090
9091         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
9092           from X. Only send based on ConfigureNotify if we don't have the
9093           correct location in hwnd (if the window manager moved us)
9094
9095 2006-08-28  Mike Kestner  <mkestner@novell.com>
9096
9097         * ListView.cs: remove a TODO. 
9098         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
9099         [Fixes ListView part of #79166]
9100
9101 2006-08-28  Mike Kestner  <mkestner@novell.com>
9102
9103         * ListView.cs: move wheel handler to parent since it is focused
9104         instead of the item_control now.  [Fixes #79177]
9105
9106 2006-08-28  Mike Kestner  <mkestner@novell.com>
9107
9108         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
9109         when the control is focused. [Fixes #79171]
9110
9111 2006-08-28  Mike Kestner  <mkestner@novell.com>
9112
9113         * ListView.cs: size the item and header controls for empty and
9114         unscrollable views.
9115         * ThemeWin32Classic.cs: draw disabled backgrounds.
9116         [Fixes #79187]
9117
9118 2006-08-28  Chris Toshok  <toshok@ximian.com>
9119
9120         * Form.cs: remove unused "active_form" static field.
9121
9122         * Hwnd.cs: lock around accesses to static windows collection.
9123
9124         * Application.cs: lock threads in Exit ().
9125
9126 2006-08-28  Chris Toshok  <toshok@ximian.com>
9127
9128         * NativeWindow.cs: lock around accesses to window_collection.
9129         
9130 2006-08-28  Chris Toshok  <toshok@ximian.com>
9131
9132         * Control.cs: err, fix this the right way, by locking on controls
9133         when using it.  not by making it synchronized.
9134
9135 2006-08-28  Chris Toshok  <toshok@ximian.com>
9136
9137         * Control.cs: make the static "controls" field synchronized, as it
9138         gets updated from multiple threads.
9139
9140 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
9141
9142         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
9143           Prevent other threads from exiting when calling thread sets quit state.
9144         * XEventQueue.cs: Added PostQuitState property
9145
9146 2006-08-27  Chris Toshok  <toshok@ximian.com>
9147
9148         * AsyncMethodData.cs: add a slot for the window handle.
9149
9150         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
9151         window (the destination control's window, not the foster window).
9152
9153         * Control.cs (BeginInvokeInternal): store the window's handle in
9154         the AsyncMethodData.
9155         
9156
9157 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
9158
9159         * XplatUIX11.cs:
9160           - PostQuitMessage: Removed resetting S.D display handle, we might have
9161             another loop started after calling PostQuitMessage (Fixes #79119)
9162           - Created destructor to reset S.D handle
9163
9164 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
9165
9166         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
9167
9168 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9169
9170         * TextControl.cs (Insert): Update the caret position even if we don't
9171           have a handle yet, just don't call the driver in that case.
9172         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
9173           to the end of the new selection text (Fixes #79184)
9174
9175 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9176
9177         * Form.cs (Activate): Only activate if the handle is created)
9178         * Control.c:
9179           - Mark window as invisible when it's disposed
9180           - Check if window handle is created when setting window visible, 
9181             instead of relying just on the is_created variable
9182           - Check if object is disposed when creating the control (Fixes #79155)
9183
9184 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9185
9186         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
9187           when allowing layout again. Otherwise we re-generate the anchoring 
9188           distance to the border again and actually alter what the user wanted
9189           This is ugly, it'd be better if we used DisplayRectangle instead of
9190           ClientRectangle for Control.UpdateDistances, but that causes us to
9191           have other problems (initial anchoring positons would be wrong)
9192           (Fixes #78835)
9193
9194 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9195
9196         * Control.cs:
9197           - The size and location setters shouldn't go directly to 
9198             SetBoundsCore, but to SetBounds, which triggers layout on the
9199             parent, then calls SetBoundsCore. (Related to fix for #78835)
9200           - SetBounds: Moved actual location update code into this function
9201             from SetBoundsCore, to match MS. Added call to PerformLayout if
9202             we have a parent (to trigger resizing of anchored parents if the 
9203             child size has changed (see testcase for #78835) 
9204         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
9205           new control code
9206         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
9207
9208 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9209
9210         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
9211           System.Drawing when a toplevel window gets closed; there might
9212           be other toplevel windows belonging to the same app (Fixes #78052)
9213
9214 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
9215
9216         * FileDialog.cs: After reading FileDialog settings from mwf_config
9217           use Desktop prefix only if a real folder doesn't exist anymore.
9218         * FontDialog.cs: Added char sets.
9219           It is now possible to select the font, size or style with the
9220           textboxes.
9221
9222 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
9223
9224         * PrintPreviewDialog.cs: Use assembly name constants.
9225
9226 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9227
9228         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
9229           scrollbar from whacking it's buttons)
9230
9231 2006-08-24  Chris Toshok  <toshok@ximian.com>
9232
9233         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
9234         in this patch (aggregating setting Left/Top/Width/Height to
9235         setting Bounds on the scrollbars), but the crux of the fix is in
9236         Recalculate, where we scroll by the remaining scroll_position if
9237         we're hiding a scrollbar.  The 2*$5 reward in the comment is
9238         serious.
9239
9240 2006-08-24  Jackson Harper  <jackson@ximian.com>
9241
9242         * MdiClient.cs:
9243         * MdiWindowManager.cs: If the form is made a non-mdi window we
9244         need to remove the form closed event so that closing forms works
9245         correctly.
9246
9247 2006-08-24  Jackson Harper  <jackson@ximian.com>
9248
9249         * Control.cs: Make IsRecreating internal so that the driver can
9250         check it
9251         - Temporarily remove the Hide when controls are removed, its
9252         making a whole bunch of things not work because visibility isn't
9253         getting reset elsewhere correctly
9254         * Form.cs: Need to do a full handle recreation when the mdi parent
9255         is set.
9256         * XplatUIX11.cs: If we are recreating handles don't dispose the
9257         HWNDs.  What was happening is the handles were being recreated in
9258         SendWMDestroyMessages, but then flow continued on in that method
9259         and destroyed the new handles.
9260
9261 2006-08-23  Jackson Harper  <jackson@ximian.com>
9262
9263         * Form.cs: MdiClient is always at the back of the bus
9264         * Control.cs: When the order of items in the collection is changed
9265         we need to reset the all_controls array
9266         - do the same sorta setup thats done when adding a control when a
9267         control is set on the collection.
9268
9269 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
9270
9271         * TextBoxBase.cs (get_Text): Return an empty array if our document
9272           is empty (fixes #79052)
9273
9274 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9275
9276         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
9277           on WM_SYSCHAR messages (fixes #79053)
9278
9279 2006-08-23  Chris Toshok  <toshok@ximian.com>
9280
9281         * DataGrid.cs: fix flickering when scrolling vertically.
9282
9283 2006-08-23  Chris Toshok  <toshok@ximian.com>
9284
9285         * DataGrid.cs (EndEdit): only invalidate the row header when we
9286         need to.
9287
9288 2006-08-23  Chris Toshok  <toshok@ximian.com>
9289
9290         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
9291         methods.  fixes the flicker when scrolling around.
9292
9293 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9294
9295         * FileDialog.cs: Making sure the control is created before we get a 
9296           chance to use it with BeginInvoke (Fixes #79096)
9297
9298 2006-08-23  Chris Toshok  <toshok@ximian.com>
9299
9300         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
9301         width to use when painting the rows.
9302
9303 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
9304
9305         * TextBoxBase.cs:
9306           - Throw ArgumentException if a negative value is passed to SelectionLength
9307           - Update the selection end if start is moved. end needs to be always
9308             after start. (Fixes #79095)
9309           - Track selection length; MS keeps the selection length even if start
9310             is changed; reset on all other operations affection selection
9311
9312 2006-08-22  Jackson Harper  <jackson@ximian.com>
9313
9314         * TreeView.cs: Make sure both scrollbars get displayed and sized
9315         correctly when the other bar is visible.
9316         - Use the original clip rectangle for checking if the area between
9317         the two scrollbars is visible, not the viewport adjusted clipping
9318         rectangle.
9319
9320 2006-08-22  Jackson Harper  <jackson@ximian.com>
9321
9322         * Binding.cs: We don't use IsBinding because it requires the
9323         control to be created, which really shouldn't be necessary just to
9324         set a property on the control.
9325
9326 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9327
9328         * ComboBox.cs: Some CB.ObjectCollection methods must throw
9329         ArgumentNullReferenceException when the argument is null.
9330
9331 2006-08-21  Jackson Harper  <jackson@ximian.com>
9332
9333         * Timer.cs: Track the thread that the timer is started in (NOT
9334         CREATED), this way messages for it will only be triggered on its
9335         queue.
9336         * XEventQueue.cs: Track the timers here, this makes timers per
9337         thread, like MS.
9338         * XplatUIX11.cs: The timers are moved to the XEventQueue.
9339
9340 2006-08-19  Chris Toshok  <toshok@ximian.com>
9341
9342         * XplatUIX11.cs: after further communication with pdb, we get the
9343         best of both worlds.  SetZOrder working for un-Mapped windows, and
9344         no X errors for un-mapped windows.
9345
9346 2006-08-19  Chris Toshok  <toshok@ximian.com>
9347
9348         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
9349         as it was causing pdn toolbars to not have the correct stacking.
9350
9351 2006-08-18  Mike Kestner  <mkestner@novell.com> 
9352
9353         * ListView.cs : guard against negative ClientArea.Width in scrollbar
9354         calculation.  Not sure why control should ever be setting a negative
9355         width though.  Fixes #78931.
9356
9357 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9358
9359         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
9360         null items in ObjectCollection class.
9361         * ListBox.cs.: Likewise.
9362
9363 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
9364
9365         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
9366           as the base method in ThemeWin32Classic should work fine.
9367           Fixed bug #78607.
9368
9369 2006-08-18  Jackson Harper  <jackson@ximian.com>
9370
9371         * Binding.cs: When validating if the value entered doesn't convert
9372         properly reset to the old value.
9373         * RadioButton.cs: Don't fire click when we get focus.
9374
9375 2006-08-18  Jackson Harper  <jackson@ximian.com>
9376
9377         * FileDialog.cs: Paint the selection on the directory combobox the
9378         same way as on MS. 
9379
9380 2006-08-17  Jackson Harper  <jackson@ximian.com>
9381
9382         * ErrorProvider.cs: Don't allow the error control to be selected.
9383         * Control.cs: Don't send the SetFocus messages, the control
9384         activation will do this, and if we do it blindly here validation
9385         does not work.
9386
9387 2006-08-17  Jackson Harper  <jackson@ximian.com>
9388
9389         * Control.cs:
9390         * ContainerControl.cs: Make validation events fire in the correct
9391         order.  TODO: For some reason the first validation event is not
9392         getting fired.
9393
9394 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9395
9396         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
9397
9398 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9399
9400         * ComboBox.cs : implement scroll wheel support for popped-down
9401         state. Fixes #78945. 
9402
9403 2006-08-17  Jackson Harper  <jackson@ximian.com>
9404
9405         * TreeView.cs: Specify treeview actions (old patch that didn't get
9406         committed for some reason).
9407         - Don't let the mouse wheel scroll us too far.  Just want to make
9408         the bottom node visible, not scroll it all the ways to the top.
9409
9410 2006-08-17  Jackson Harper  <jackson@ximian.com>
9411
9412         * XplatUIX11.cs: Mouse wheel events go to the focused window.
9413
9414 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9415
9416         * ComboBox.cs : don't do mouseover selection in simple mode.
9417
9418 2006-08-16  Jackson Harper  <jackson@ximian.com>
9419
9420         * Form.cs: Fire the closing events for all the mdi child windows
9421         when a window is closed.  If the cancel args are set to true, the
9422         main window still gets the event fired, but it doesn't not close.
9423         * MdiWindowManager.cs: Do this closing cleanup in a Closed
9424         handler, instead of when the button is clicked, so cancelling the
9425         close works correctly.
9426         * ComboBox.cs: Send the mouse down to the scrollbar.
9427
9428 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9429
9430         * ListBox.cs: When passing 'null' to SelectedItem,
9431         set SelectedIndex to -1, to unselect items. This is the
9432         observed behaviour in .Net.
9433
9434 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
9435
9436         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
9437           MS flags saying there won't be any. (fixes #78800)
9438         * Control.cs (HandleClick): Made virtual
9439
9440 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9441
9442         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
9443           cultures. Fixed bug #78399.
9444
9445 2006-08-16  Jackson Harper  <jackson@ximian.com>
9446
9447         * Form.cs: Use the MdiClients MdiChildren property to access
9448         MdiChildren instead of creating the array from the child controls.
9449         * MdiClient.cs: Maintain a separate array of the mdi children, so
9450         that insertion order is maintained when the Z-order is changed.
9451
9452 2006-08-16  Mike Kestner  <mkestner@novell.com> 
9453
9454         * ListView.cs : add an ItemComparer and default to it for sorting.
9455         Fixes #79076, but sorting needs a complete overhaul to be compat with
9456         MS.
9457
9458 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
9459
9460         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
9461
9462 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9463
9464         * Hwnd.cs (Mapped): Properly traverse the tree
9465
9466 2006-08-15  Chris Toshok  <toshok@ximian.com>
9467
9468         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
9469         pass manager.Current.GetType() to ParseData.  It has to be the
9470         property type.  So, hold off doing the ParseData until we're in
9471         SetPropertyValue where we know the type.  This fixes the crash in
9472         #78821 but the textbox is still empty.
9473
9474 2006-08-15  Chris Toshok  <toshok@ximian.com>
9475
9476         * DataGrid.cs:
9477         - when we're scrolling, only call Edit() again if the
9478         current cell is still unobscured. Fixes bug #78927.
9479         - when handling mousedown on a cell, ensure the cell is visible
9480         before calling Edit.
9481         - remove the properties from DataGridRow, and remove the
9482         DataGridParentRow class altogether.
9483         
9484
9485 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9486
9487         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
9488           fire OnTextChanged by ourselves. There's no point calling base,
9489           we don't set the base value anywhere else. Fixes #78773.
9490
9491 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9492
9493         * ListBox.cs: Call CollectionChanged when modifying
9494         an item from Items indexer, to update the actual items
9495         in the list box.
9496
9497 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9498
9499         * PrintDialog.cs: Small fixes for focus and a pair of checks,
9500         to match .Net behaviour.
9501
9502 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9503
9504         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
9505
9506 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
9507
9508         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
9509
9510 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9511
9512         * MessageBox.cs: Prevent potential NRE exception.
9513         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
9514
9515 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
9516
9517         * MessageBox.cs: Calculate the owner of a messagebox, also make
9518           it topmost. Fixes #78753
9519
9520 2006-08-14  Chris Toshok  <toshok@ximian.com>
9521
9522         * XplatUIX11.cs: A couple of fixes so that metacity will let us
9523         programmatically move windows.  first, set the PPosition hint as
9524         well as the USPosition hint.  Second include some code from pdb
9525         that sets the window type to NORMAL when we set the transient for
9526         hint.  This is because, in the absence of a window type, metacity
9527         thinks any window with TransientFor set is a dialog, and refuses
9528         to let us move it programmatically.  fascists.
9529
9530 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
9531
9532         * XplatUIX11.cs: When setting normal hints, take into consideration
9533           an different hints previously set so we don't delete them (fixes #78866)
9534
9535 2006-08-12  Chris Toshok  <toshok@ximian.com>
9536
9537         * ToolBarButton.cs: make Layout return a boolean, if something to
9538         do with the button's layout changed.
9539
9540         * ToolBar.cs:
9541         - add another parameter to Redraw, @force, which all existing
9542           calls set to true.
9543         - make the Layout function return a boolean which is true if the
9544           layout has actually changed.  Redraw now uses this (and @force)
9545           to determine when to invalidate.  At present the only place
9546           where @force can be false is the call from OnResize, when
9547           background_image == null.  So, resizing a toolbar when the
9548           layout doesn't change results in no drawing.
9549
9550 2006-08-12  Chris Toshok  <toshok@ximian.com>
9551
9552         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
9553         the VScrollBar and HScrollbar reversed.  oops.
9554
9555         * DataGrid.cs: fix the logic that assigns sizes to the implicit
9556         scrollbars.  we were assigning them twice (once in
9557         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
9558         therefore causing two scrollbar resizes (and redraws?) to happen
9559         per grid resize.
9560
9561 2006-08-12  Chris Toshok  <toshok@ximian.com>
9562
9563         * ToolBarButton.cs: redraw the entire button if the theme tells us
9564         to.
9565
9566         * Theme.cs: add ToolBarInvalidateEntireButton.
9567
9568         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
9569         buttons, just the border.
9570
9571         * ThemeNice.cs: redraw the entire toolbar button since we need to
9572         draw the highlight image.
9573
9574         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
9575         we need to redraw the entire button (not just the border).
9576
9577 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9578
9579         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
9580           for vertical bars. Fixes the mismatches shown by #78513
9581
9582 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
9583
9584         * FileDialog.cs: If a saved/remembered path doesn't exist
9585           anymore, fall back to "Desktop".
9586
9587 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9588
9589         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
9590           parent. It's apparently legal to not have one
9591         * XplatUIX11.cs:
9592           - SetZOrder: Don't try to set Z-Order on an unmapped window
9593           - CreateWindow: 0,0 are legal coordinates for a window. don't move
9594             it unless the coordinates are negative
9595
9596 2006-08-10  Mike Kestner  <mkestner@novell.com>
9597
9598         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
9599         when setting to null per msdn docs.  Fixes #78854.
9600
9601 2006-08-10  Chris Toshok  <toshok@ximian.com>
9602
9603         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
9604         flickering by setting a clip rectangle on the Graphics when we
9605         need to redraw just a particular menuitem.  Also, rename "OnClick"
9606         to "OnMouseDown" to reflect what it actually is.
9607         
9608         * Form.cs: track the OnMouseDown change.
9609
9610 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
9611
9612         * CommonDialog.cs: Properly inherit the CreateParams from the form
9613           and only change what we need. Fixes #78865
9614
9615 2006-08-10  Chris Toshok  <toshok@ximian.com>
9616
9617         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
9618         flickering in flat mode (and most of the flickering in general) by
9619         only invalidating the button border (and not the entire rectangle)
9620         when the state changes.  A couple of cases still flicker:
9621         ToggleButtons, and the dropdown arrow case when the user mouse
9622         ups.
9623
9624 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
9625
9626         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
9627           for german keyboards. Numlock state shouldn't affect the behaviour
9628           of the Del key. Fixes bug #78291.
9629
9630 2006-08-10  Chris Toshok  <toshok@ximian.com>
9631
9632         * ListControl.cs: remove the items.Clear line from BindDataItems,
9633         as this is the first thing done by both subclasses in their
9634         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
9635         passed -1, refresh the list.  This gets databinding working when
9636         the datasource is set on the list before the datasource is
9637         populated (as in wf-apps/ReportBuilder.)
9638
9639         * ComboBox.cs: remove the argument to BindDataItems.  This call
9640         should really go away, and be initiated by the ListControl code.
9641
9642         * ListBox.cs: same.
9643
9644 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9645
9646         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
9647           if no data is in the document when the control is displayed
9648
9649 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
9650
9651         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
9652           yes (fixes #78806)
9653         * TextControl.cs: 
9654           - PositionCaret: Allow positioning of caret but don't call methods 
9655             requiring a handle if the window isn't created yet
9656           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
9657           - owner_HandleCreated: Don't position the caret, just update it's 
9658             location. User might have already set a different position
9659
9660 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9661
9662         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
9663           windows. Screws up the returned coordinates for child windows. 
9664           Fixes #78825. I'm hoping this doesn't break something, since the
9665           code was explicitly put in 8 months ago, but no bug was attached.
9666           Menus still seem to work properly.
9667
9668 2006-08-08  Chris Toshok  <toshok@ximian.com>
9669
9670         * DataGrid.cs: make BeginInit/EndInit actually do what they're
9671         supposed to do - delay data binding until the EndInit call.  Also,
9672         make the table style collection's CollectionChangeAction.Refresh
9673         work properly.
9674
9675         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
9676         (with action = Refresh) when a consituent table's MappingName is
9677         changed.
9678
9679 2006-08-08  Chris Toshok  <toshok@ximian.com>
9680
9681         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
9682         Invalidate, since changing the text can change the size of the all
9683         toolbar buttons.
9684
9685 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9686
9687         * Form.cs (AddOwnedForm): Still need to add the form to our listif
9688           we don't have it yet
9689
9690 2006-08-08  Chris Toshok  <toshok@ximian.com>
9691
9692         * PrintControllerWithStatusDialog.cs: don't .Close() the status
9693         dialog, as this causes X errors later on, since we actually
9694         destroy the window.  Instead, .Hide() it.
9695
9696 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9697
9698         * ComboBox.cs: Added focus reflection for popup window
9699         * XplatUIX11.cs: 
9700           - Removed transient setting for non-app windows for now, not sure it
9701             was needed
9702           - Fixed logic checking if we have captions when deciding 
9703             override_redirect, WS_CAPTION is two bits and a 0 check was not
9704             sufficient
9705           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
9706             complicated
9707         * Form.cs: 
9708           - AddOwnedForm: Don't just add the form to the list, call the property
9709             to ensure the driver is informed about the ownership as well
9710           - CreateHandle: Set the TopMost status in the driver if we have an owner
9711         * XplatUI.cs: Fixed debug statement
9712
9713 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
9714         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9715           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
9716           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
9717           TrackBarRenderer.cs: Make constructor private.
9718         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
9719         * ProfessionalColorTable.cs: Make properties virtual.
9720
9721 2006-08-06  Duncan Mak  <duncan@novell.com>
9722
9723         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
9724         is not changing.
9725
9726 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9727         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9728           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
9729           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
9730           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
9731           Initial import of new 2.0 classes.
9732
9733 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9734         * Application.cs: Add 2.0 VisualStyles properties.
9735
9736 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9737         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9738           XplatUIX11.cs: Create property to allow access to existing private
9739           variable "themes_enabled"
9740
9741 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9742
9743         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
9744         file size, as otherwise our class libraries fail using windows. Fixes
9745         bug #78759.
9746
9747 2006-08-04  Jackson Harper  <jackson@ximian.com>
9748
9749         * Form.cs:
9750         * XplatUIX11.cs: Move the toolwindow window manager creation into
9751         the X11 driver, this way on win32 we can let windows create/handle
9752         the toolwindows.
9753
9754 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9755
9756         * PrintDialog.cs: Remove some redundant checks, add some others,
9757         clean some code, and move the focus to the text boxes when the
9758         values are incorrect.
9759
9760 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
9761
9762         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
9763
9764 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9765
9766         * NumericUpDown.cs: Setting the Minimum and Maximum is now
9767           handled correctly. Fixes bug #79001.
9768
9769 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9770
9771         * PrintDialog.cs: The "Copies" numeric up down must have
9772         set the Minimum property to 1; only if the value is bigger
9773         than 1, activate "Collate" check box. This is the behaviour of .Net.
9774         Also modify the Document elements only if it is not null.
9775
9776 2006-08-03  Jackson Harper  <jackson@ximian.com>
9777
9778         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
9779         length. (We have a larger array then actual node count).
9780                 
9781 2006-08-03  Jackson Harper  <jackson@ximian.com>
9782
9783         * ComboBox.cs: Don't show selection by default.
9784         - The SelectAll isn't needed here, since the focus code should do
9785         that
9786         - DDL style lists to manual selection drawing, so when they
9787         get/lose focus they have to invalidate.
9788
9789 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
9790
9791         * TextBoxBase.cs: Don't always show all selections by default.
9792
9793 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
9794         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
9795           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
9796           Fixed various typos.
9797
9798 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9799
9800         * Control.cs: Removing the controls in a ControlCollection with
9801           Clear now hides the controls as expected. Fixes bug #78804. 
9802
9803 2006-08-03  Jackson Harper  <jackson@ximian.com>
9804
9805         * Control.cs: Revert previous focus patch, it breaks reflector.
9806
9807 2006-08-03  Jackson Harper  <jackson@ximian.com>
9808
9809         * ComboBox.cs: Cleanup selection and focus with the combobox.
9810         This also eliminates some duplicated keyboard code, since now
9811         everything is handled by the main class.
9812         - Make list selection work on mouse up instead of down, to match
9813         MS.
9814
9815 2006-08-02  Jackson Harper  <jackson@ximian.com>
9816
9817         * Control.cs: Setting focus needs to go through the whole
9818         selection mechanism.
9819
9820 2006-08-02  Chris Toshok  <toshok@ximian.com>
9821
9822         * PrintPreviewDialog.cs: change MinimumSize to use
9823         base.MinimumSize so it works.
9824
9825 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
9826
9827         * TextControl.cs:
9828           - UpdateCaret: Added sanity check in case caret isn't defined yet
9829           - Line.Delete: Now updating selection and caret markers if we're
9830             transfering a node (Properly fixes #78323)
9831           - SetSelectionEnd: Added sanity check
9832         * TextBoxBase.cs: Removed broken attempt to fix #78323
9833
9834 2006-08-01  Chris Toshok  <toshok@ximian.com>
9835
9836         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
9837         Close() call is handled in Form, not here.
9838
9839 2006-08-01  Chris Toshok  <toshok@ximian.com>
9840
9841         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
9842         layout/rendering.
9843
9844         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
9845         for sizes < 100% zoom.  The code now aggressively attempts to keep
9846         from calling document.Print (), and tries not to use the scaling
9847         g.DrawImage whenever possible (it still does if you scale to >
9848         100%, since usually that involves huge images).
9849
9850         * PrintPreviewControl.cs: hook up the close button.
9851
9852 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
9853         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
9854           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
9855           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
9856           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
9857           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
9858           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
9859           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
9860           Removed [Serializable] for 2.0 Event Handlers.
9861
9862 2006-07-31  Jackson Harper  <jackson@ximian.com>
9863
9864         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
9865         * TextControl.cs: Uncomment out the body of this method.
9866
9867 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
9868
9869         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
9870           standard cursors.
9871
9872 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9873
9874         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
9875           that embed TextBox and need selections visible even if textbox is not
9876           focused to enforce that behaviour.
9877         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
9878           selection drawing
9879
9880 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9881
9882         * TextControl.cs:
9883           - Added new SetSelectionStart/SetSelectionEnd overloads
9884           - Fixed viewport width assignment to be accurate
9885           - Adjusted alignment line shift calculations to allow cursor on right
9886             aligned lines to be always visible at the right border (like MS)
9887         * TextBoxBase.cs:
9888           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
9889           - TextBoxBase_SizeChanged: recalculating canvas on size changes
9890           - CalculateScrollBars: Use ViewPort size instead of window size, to
9891             properly consider space occupied by the border and scrollbars 
9892             (Fixes #78661)
9893           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
9894             calculations; no longer leaves artifacts
9895           - CaretMoved: Adjusted window scrolling to match MS and fixed several
9896             calculation bugs (Still missing right/center align calculations)
9897
9898 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
9899
9900         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
9901           use of both scroll rect and clip rect, as they do the same.
9902
9903 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9904
9905         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
9906           in the event handler (fixes #78912)
9907
9908 2006-07-31  Chris Toshok  <toshok@ximian.com>
9909
9910         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
9911         grid.ListManager.Count, since grid.ListManager might be null.
9912         This of course begs the question "why are we drawing rows for a
9913         grid with no list manager (and therefor no rows)?"  Fixes the
9914         crash in bug #78929.
9915
9916 2006-07-31  Chris Toshok  <toshok@ximian.com>
9917
9918         * RelatedPropertyManager.cs: Don't always chain up to the parent
9919         ctor.  instead, call SetDataSource if the parent's position is !=
9920         -1.  Fixes the crash in #78822.
9921
9922 2006-07-31  Chris Toshok  <toshok@ximian.com>
9923
9924         * DataGrid.cs (get_ListManager): use field instead of property
9925         accessors for datasource and datamember.
9926         (RowsCount): make internal again.
9927         (OnMouseDown): end edits before resizing columns/rows.
9928         (OnMouseUp): restart edits after resizing columns/rows.
9929
9930 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
9931
9932         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
9933           This fixes the situation where the last set cursor is displayed
9934           whenever the mouse is over scrollbars.
9935
9936 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9937
9938         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
9939         Document properties, as well as initial values.
9940
9941 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
9942
9943         * XplatUIWin32.cs (SetBorderStyle): Setting both border
9944           and ClientEdge results in a 3-pixel border, which is
9945           wrong.
9946
9947 2006-07-28  Jackson Harper  <jackson@ximian.com>
9948
9949         * TreeNodeCollection.cs: Fix the clear method.
9950         - Fix the Shrink also
9951
9952 2006-07-27  Jackson Harper  <jackson@ximian.com>
9953
9954         * TreeView.cs: Make sure the visible order is computed when we
9955         attempt to size the scrollbars (for trees that mess with the
9956         scrolling when they shouldn't.
9957         - Make sure to give the scrollbars valid values.
9958
9959 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
9960
9961         * XplatUIX11.cs: Move motion compression code to where it
9962           has less performance impact
9963
9964 2006-07-26  Jackson Harper  <jackson@ximian.com>
9965
9966         * UpDownBase.cs: When the control is selected make the child
9967         controls non selectable, so that a click on them won't do a
9968         focus/unfocus cycle.
9969         - Don't give focus to the text box when the spinner is selected.
9970         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
9971
9972 2006-07-26  Chris Toshok  <toshok@ximian.com>
9973
9974         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
9975         satisfied with this solution.  If the bitmaps are small, we should
9976         just cache them in the PrintPreviewDialog and draw them here.
9977         Also, the layout is broken for the 2-up and 3-up cases.
9978
9979         * Theme.cs: add PrintPReviewControlPaint.
9980
9981         * PrintPreviewDialog.cs: first pass implementation.
9982
9983         * PrintPreviewControl.cs: first pass implementation.  No
9984         scrollbars yet.
9985
9986         * PrintDialog.cs: only validate fields if that particular portion
9987         of the UI is enabled.  Also, set the document's controller to a
9988         PrintControllerWithStatusDialog wrapping the document's print
9989         controller.
9990
9991         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
9992         bring up a SaveFileDialog (i hope we don't want to match the
9993         behavior of the crappy windows file entry) and set the
9994         PrinterSettings.PrintFileName accordingly.
9995
9996 2006-07-26  Jackson Harper  <jackson@ximian.com>
9997
9998         * ContainerControl.cs: Add a field that disables auto selecting
9999         the next control in a container when the container is activated.
10000         * UpDownBase.cs: Don't select the text box when the up down is
10001         selected.
10002
10003 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
10004
10005         * XEventQueue.cs: Added methods for peeking (used for compression
10006           of successive events)
10007         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
10008           mouse move events (fixes #78732)
10009
10010 2006-07-25  Jackson Harper  <jackson@ximian.com>
10011
10012         * UpDownBase.cs: Use an internal class for the textbox so that we
10013         can control focus.  the updown control should always have focus,
10014         if either the text area or the buttons are clicked.
10015         - Send the key messages to the textbox, since it never actually
10016         has focus
10017         - Activate and decativate the textbox caret.
10018
10019 2006-07-24  Jackson Harper  <jackson@ximian.com>
10020
10021         * Control.cs: Use the directed select when selecting a control,
10022         this way the container controls override will get called and the
10023         whole ActiveControl chain will get triggered.  TODO: probably need
10024         to make sure this gets done everywhere instead of the old
10025         Select(Control).
10026         * ContainerControl.cs: Implement the directed Select method to
10027         find and activate the correct child control.    
10028         
10029 2006-07-22  Mike Kestner  <mkestner@novell.com>
10030
10031         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
10032         menu handling code so that clicks without a grab work too.
10033         [Fixes #78914]
10034
10035 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
10036
10037         * FileDialog.cs: Enable the BackButton when dirstack has one element.
10038           Added some small optimizations.
10039
10040 2006-07-21  Matt Hargett  <matt@use.net>
10041
10042         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
10043
10044 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
10045
10046         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
10047           tests pass and match MS in some strange border cases.
10048
10049 2006-07-21  Chris Toshok  <toshok@ximian.com>
10050
10051         * ThemeWin32Classic.cs: handle drawing of the relation links and
10052         parent row buttons.
10053
10054         * Theme.cs: change args to DataGridPaintParentRow.
10055
10056         * DataGrid.cs: Don't use controls for the relation links and
10057         parent buttons, so we have to handle all their interactions in
10058         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
10059         when we're navigating through child tables, so we can reinstate
10060         selection, expanded state, current cell, etc.
10061
10062 2006-07-20  Chris Toshok  <toshok@ximian.com>
10063
10064         * ToolBar.cs: When we redraw a button, for whatever reason,
10065         there's no reason to redraw the entire toolbar.  Also, don't call
10066         Control.Refresh from within Redraw, as it's much heavier than
10067         Invalidate (which is really what we want).
10068
10069 2006-07-20  Chris Toshok  <toshok@ximian.com>
10070
10071         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
10072         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
10073         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
10074         traces from within a debug IBindingList datasource
10075         (in mono/winforms/datagrid) for *days*, I've finally gotten things
10076         to work in a similar fashion.
10077
10078 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10079
10080         * ListBox.cs: Don't call Sort () when setting 
10081         the Sorted property to false (avoid an unnecessary sort).
10082
10083 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10084
10085         * ListControl.cs: DataSource should throw an ArgumentException
10086         instead of a normal exception when the argument is not of the 
10087         correct type.
10088
10089 2006-07-20  Mike Kestner  <mkestner@novell.com>
10090
10091         * Control.cs: add InternalPreProcessMessage to allow us to steal
10092         key events before MWF gets its paws on them.  Adapted from a
10093         suggestion by eno.
10094         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
10095         up/down/left/right navigation. Override the new internal control
10096         method to steal the events since they never make it to WndProc.
10097         * ToolBarButton.cs: don't worry about pushed when setting hilight
10098         since the drawing code prefers pushed to hilight. Invalidate on 
10099         Hilight changes. Fixes #78547 and #78525.
10100
10101 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
10102
10103         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
10104           the canvas size. Fixes #78868
10105
10106 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
10107
10108         * Splitter.cs: Track requested split position until first layout
10109           is performed. Fixes #78871
10110
10111 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
10112
10113         * Application.cs: Removed code that forces 1.x for the version
10114           number if the version started with 0. Not sure why that code was
10115           there and I couldn't find any bugs that indicated we needed it.
10116           Fixes #78869
10117
10118 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
10119
10120         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
10121           ResetDefaults(), just write some output to the console until it's
10122           implemented. Fixes bug #78907 for now. Eliminated two warnings.
10123
10124 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
10125
10126         * PropertyGridView.cs: set StartPosition of drop down forms
10127         so they appear in correct initial spot.  Fixes #78190.
10128
10129 2006-07-19  Mike Kestner  <mkestner@novell.com>
10130
10131         * ThemeWin32Classic.cs: use parent background color when drawing
10132         flat toolbars.  Restructure the conditionals to make sure non-flat
10133         non-Divider toolbars are filled too.  Fixes #78837.
10134
10135 2006-07-19  Mike Kestner  <mkestner@novell.com>
10136
10137         * ListBox.cs: Sort on collection changes even if the handle
10138         isn't created yet.  Fixes #78813.
10139
10140 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10141
10142         * ListControl.cs: DisplayMember should never be null,
10143         and now we assign String.Empty when null is passed to it (this
10144         is the .Net way).
10145
10146 2006-07-17  Mike Kestner  <mkestner@novell.com>
10147
10148         * ListViewItem.cs: restructure Font and subitem Font handling 
10149         to hold a specific font and refer back to owner on null.
10150         Fixes #78761.
10151
10152 2006-07-17  Mike Kestner  <mkestner@novell.com>
10153
10154         * ToolBar.cs: bandaid for side-effect of previous patch which was
10155         discarding explicit heights for non-AutoSize toolbars.  Need to
10156         extend my format tester to deal with AutoSize=false. Fixes #78864.
10157
10158 2006-07-15  Jackson Harper  <jackson@ximian.com>
10159
10160         * LabelEditTextBox.cs:
10161         * TreeView.cs: Use a new LabelEdit class for node editing, this
10162         class automatically 'closes' itself when it gets the enter key or
10163         loses focus.
10164         - Use the client rectangle when setting the trees scrollbars, so
10165         border style is taken into account.
10166         
10167 2006-07-14  Jackson Harper  <jackson@ximian.com>
10168
10169         * TreeNode.cs:
10170         * TreeView.cs: Make the editing work similar to MSs, firing the
10171         events correctly and ending edits correctly.
10172
10173 2006-07-14  Mike Kestner  <mkestner@novell.com>
10174
10175         * ToolBarButton.cs:
10176         * ToolBar.cs: layout restructuring and redraw enhancements to support
10177         formatting changes gracefully, like setting TextAlign, ImageList, 
10178         ButtonSize, and Appearance.  Handles explicit button sizing quirks
10179         of the MS controls.  Things like flat toolbars ignoring button size
10180         but becoming constant sized at the largest button's size.  Normal
10181         toolbars with an image set cannot be shrunk smaller than the image,
10182         but text can be clipped/ignored.
10183         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
10184         is zero.  Seems like DrawString should be smart enough to not put
10185         anything on screen though. Also trim labels and ellipsize at the char
10186         boundary, not word.
10187         Fixes #78711 and #78483.
10188
10189 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10190
10191         * FolderBrowserDialog.cs: Disable "New Folder" button and
10192           "New Folder" contextmenu menuitem if a folder like "My Computer"
10193           is selected.
10194
10195 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10196
10197         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
10198         * FolderBrowserDialog.cs:
10199           - Use MWFConfig to store and read size and position settings
10200           - Added code to create a new folder (button or context menu).
10201             Use TreeView labeledit to change the name of the new folder.
10202
10203 2006-07-14  Jackson Harper  <jackson@ximian.com>
10204
10205         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
10206         when the tree is scrolled we end editing.
10207
10208 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
10209
10210         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
10211           Down arrows
10212
10213 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
10214
10215         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
10216         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
10217         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
10218         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
10219         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
10220         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
10221         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
10222         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
10223         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
10224         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
10225         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
10226         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
10227         ListViewItemSelectionChangedEventHandler.cs,
10228         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
10229         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
10230         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
10231         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
10232         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
10233         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
10234         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
10235         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
10236         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
10237         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
10238         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
10239         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
10240         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
10241         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
10242         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
10243         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
10244         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
10245         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
10246         WebBrowserNavigatingEventHandler.cs, 
10247         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
10248
10249 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
10250
10251         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
10252         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
10253         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
10254         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
10255         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
10256         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
10257         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
10258         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
10259         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
10260         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
10261         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
10262         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
10263         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
10264         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
10265         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
10266         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
10267         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
10268         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
10269         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
10270         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
10271         ListViewItemStates.cs, MaskFormat.cs: Added
10272
10273 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
10274
10275         * PropertyGridView.cs: Fix keyboard navigation of drop down.
10276         Patch from eno for bug 78558.
10277         
10278 2006-07-13  Jackson Harper  <jackson@ximian.com>
10279
10280         * TreeView.cs: When an edit is finished make sure that the
10281         selected node is visible.
10282         - When setting the top/bottom use the scrollbars is_visible, so
10283         everything will be set correctly even if the tree isn't visible
10284         yet.
10285
10286 2006-07-13  Jackson Harper  <jackson@ximian.com>
10287
10288         * ComboBox.cs: Revert the item->index part of my previous patch.
10289         * TreeView.cs: Use LostFocus instead of Leave for detecting when
10290         the edit box has lost focus (duh).
10291         - Just make the edit box not visible when we get return, that will
10292         take the focus, which will call EndEdit
10293         * TreeNode.cs When we start editing, notify the treeview.
10294
10295 2006-07-12  Jackson Harper  <jackson@ximian.com>
10296
10297         * ComboBox.cs: Clear out old items before setting the item list.
10298         This prevents databound controls from having their items added
10299         twice.
10300         - Switch the combobox to use indices whereever possible instead of
10301         using Item's.  This allows usto navigate through lists that have
10302         more then one item with the same string value (ie a, b, b, a).
10303         - Scroll the listboxes scrollbar when a non visible item is
10304         highlighted
10305         - Allow keypress to cycle through all the possible values. For
10306         example if you have b1, b2, b3 and hold down the B key all the
10307         values will be cycled through.
10308         
10309 2006-07-12  Jackson Harper  <jackson@ximian.com>
10310
10311         * TextBoxBase.cs:
10312         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
10313         this using the internal methods.
10314         * Control.cs: Add OnGotFocusInternal.  A new method that allows
10315         controls to "override" OnGotFocus and change focus behavior if
10316         needed.
10317         - Same thing for LostFocus
10318         * ComboBox.cs: Pass off focus to the text control properly.
10319
10320 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
10321
10322         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
10323         * FolderBrowserDialog.cs: Almost a complete rewrite.
10324           - Better support for Environment.Specialfolders
10325           - Added support for MWFVFS
10326           - Made setting SelectedPath work
10327
10328 2006-07-12  Jackson Harper  <jackson@ximian.com>
10329
10330         * Control.cs: Optimze getting all the controls.
10331
10332 2006-07-11  Jackson Harper  <jackson@ximian.com>
10333
10334         * ContainerControl.cs: Override SETFOCUS in the container control,
10335         so that it is not selected on mouse click.
10336
10337 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
10338
10339         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
10340           Hopefully we will have a better way once all of focus is complete.
10341
10342 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
10343
10344         * ThemeWin32Classic.cs: Commented out some debug code and fixed
10345           a compile error with csc.
10346
10347 2006-07-11  Jackson Harper  <jackson@ximian.com>
10348
10349         * Control.cs: When hiding a control only select the next control
10350         if the current control was focused.
10351         - Don't handle enter/leave when setting/killing focus, this is
10352         done by the container control.
10353         - Remove is_selected, it's not needed anymore.
10354         - Add utility methods for selecting a child control, and for
10355         firing the Enter/Leave events.
10356         * ContainerControl.cs: When a control is activated fire the
10357         enter/leave events.
10358         - Don't wrap when processing the tab key, so that focus can be
10359         moved outside of the container.
10360         - Use the correct active control
10361
10362 2006-07-11  Jackson Harper  <jackson@ximian.com>
10363
10364         * ComboBox.cs: Remove some debug code that was blinding me.
10365         * UpDownBase.cs: These controls actually aren't implicit, they are
10366         visible to the user.
10367
10368 2006-07-10  Chris Toshok  <toshok@ximian.com>
10369
10370         * DataGrid.cs: move back to the is_adding boolean field.  god i
10371         hate this is_editing/is_adding/is_changing stuff.
10372
10373 2006-07-10  Chris Toshok  <toshok@ximian.com>
10374
10375         * DataGridTableStyle.cs: just check if the property type is bool.
10376         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
10377         Don't use CanRenderType.
10378
10379         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
10380         if our text == NullText.  Remove CanRenderType.
10381
10382         * DataGridBoolColumn.cs: nuke CanRenderType.
10383
10384         * DataGrid.cs: reenable some code to end the current edit inside
10385         of set_CurrentCell.  This fixes the other 1.1.16 regression.
10386         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
10387         Also, remove the visible_row_count arg from CalcRowHeaders, since
10388         we don't need to worry about the actual height of the area.
10389
10390 2006-07-10  Chris Toshok  <toshok@ximian.com>
10391
10392         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
10393         mode, just return.
10394
10395         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
10396         the real sense of the IsInEditOrNavigateMode property (true =
10397         navigate, false = edit).  Also, update OnKeyPress to reflect this.
10398
10399         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
10400         column style exists, we still need to set its property descriptor
10401         to match up with our list manager.
10402
10403 2006-07-10  Chris Toshok  <toshok@ximian.com>
10404
10405         * ThemeWin32Classic.cs: implement the new row/header painting
10406         approach.  The parent row painting will likely go away and
10407         replaced with label controls, but the rest seems to work ok (and
10408         efficiently).
10409
10410         * Theme.cs: change the way we draw datagrid rows.  we don't draw
10411         the row headers as a block now.  Instead we draw them in the
10412         normal draw-row loop.  Add some calls for drawing parent rows and
10413         relation rows.
10414
10415         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
10416         a default table style.  Set the defaults from ThemeEngine.Current,
10417         not SystemColors.  Fix lots of misc issues with property setters.
10418
10419         * DataGrid.cs: move loads of style information out of this class
10420         as it's being duplicated with DataGridTableStyle.  keep track of a
10421         special DataGridTableStyle for the properties we used to mirror
10422         here.  Switch all the style properties to access this table style
10423         instead of instance fields of this class.  Also add a internal
10424         class to represent parent rows (more needs to be stored here, like
10425         the selection state from the parent table, as well as the
10426         expansion state.)  Also, for datasources with relations, do the
10427         right thing for collapse/expand, and add support for the
10428         navigation/parent row buttons.
10429
10430         Lastly, fix the crash in the 1.1.16 build.
10431
10432         * GridTableStylesCollection.cs: make the explicit interface
10433         implementations call the class's methods as opposed to duplicating
10434         them.
10435
10436         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
10437         0 so the text doesn't jump around when we move the cursor.
10438
10439 2006-07-10  Jackson Harper  <jackson@ximian.com>
10440
10441         * TextBoxBase.cs:
10442         * ListBox.cs: Match MS's ToString (this makes debugging focus
10443         stuff infinitely easier).
10444
10445 2006-07-10  Jackson Harper  <jackson@ximian.com>
10446
10447         * Control.cs (SelectNextControl): When checking the control's
10448         parent use this instead of ctrl.parent so that null can be passed
10449         to SelectNextControl. (I have unit tests for this).
10450         - Remove unused var.
10451
10452 2006-07-10  Chris Toshok  <toshok@ximian.com>
10453
10454         * CurrencyManager.cs: correct one regression, the removal of the
10455         finalType field.  Also, add a MonoTODO on CanAddRows, implement
10456         Refresh() correctly, and fix some event emission in
10457         ListChangedHandler.
10458
10459 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
10460
10461         * FileDialog.cs: Don't use brackets for new folders if they exist
10462           under *nix. Instead use -(number of existing folders +1).
10463
10464 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
10465
10466         * FileDialog.cs:
10467           - Fixed really nasty bug #78771
10468           - Don't block the whole GUI when reading directories with a lot of
10469             entries. Use an other thread instead and call BeginInvoke to
10470             update the ListView in MWFFileView
10471
10472 2006-07-07  Chris Toshok  <toshok@ximian.com>
10473
10474         * Control.cs (Dispose): release any Capture when disposing.
10475
10476 2006-07-07  Chris Toshok  <toshok@ximian.com>
10477
10478         * LinkLabel.cs (Select): if we chain up to the parent, set
10479         focused_index to -1 so we'll search for the first available link
10480         the next time the user tabs into us.  Also, if the direction is
10481         backward and focused_index == -1, start the search from the last
10482         element.
10483
10484 2006-07-07  Chris Toshok  <toshok@ximian.com>
10485
10486         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
10487         is beyond the end of the text, don't do anything.
10488         (CreateLinkPieces): set our ControlStyles.Selectable based on
10489         whether or not we have any links.
10490         (Link.Invalidate): use a loop instead of foreach.
10491         (Link.set_Start): null out owner.sorted_links so it'll be
10492         recreated by CreateLinkPieces.
10493
10494 2006-07-06  Chris Toshok  <toshok@ximian.com>
10495
10496         * LinkLabel.cs: revert the SetStyle change.
10497
10498 2006-07-06  Chris Toshok  <toshok@ximian.com>
10499
10500         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
10501         (OnEnableChanged): s/Refresh/Invalidate
10502         (OnGotFocus): if we have a focused index already, refocus it (so
10503         if we mouse out/in to the window it'll focus the right link).
10504         (OnKeyDown): move the tab handling out of here.
10505         (OnLostFocus): don't set focused_index to -1, so we can refocus it
10506         when we lose focus.
10507         (OnMouseDown): don't Capture here - Control handles it.  Also,
10508         focus the active link.
10509         (OnMouseUp): don't deal with Capture.
10510         (OnPaintBackgroundInternal): remove.
10511         (OnTextAlignChanged): CreateLinkPieces before calling the
10512         superclass's method.
10513         (OnTextChanged): call CreateLinkPieces before calling superclass's
10514         method.
10515         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
10516         move around.
10517         (Select): implement this, moving the selection between different
10518         links, and call parent.SelectNextControl if we don't have another
10519         link to focus in the given direction.
10520         (CreateLinkPieces): call Invalidate instead of Refresh.
10521         
10522 2006-07-06  Chris Toshok  <toshok@ximian.com>
10523
10524         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
10525         new LinkLabel internals.
10526
10527         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
10528         over pieces looking for active/focused/etc links.  also, deal with
10529         runs of text (and links) with embedded \n's in them, and use
10530         MeasureCharacterRanges instead of MeasureString to figure out the
10531         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
10532         two-step.
10533
10534 2006-07-04  Jackson Harper  <jackson@ximian.com>
10535
10536         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
10537         XKB or key auto repeat, do it manually.  Without key auto repeat,
10538         when a key is held down we get key press, key release, key press,
10539         key release, ... with auto repeat we get key press, key press, key
10540         press ..., and then a release when the key is actually released.
10541
10542 2006-07-03  Jackson Harper  <jackson@ximian.com>
10543
10544         * TabControl.cs:
10545         * ThemeWin32Classic.cs: Tabs do not obey normal background color
10546         rules, they are always control color regardless of the background
10547         color.
10548
10549 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
10550
10551         * FileDialog.cs: Added internal class MWFConfig.
10552           Removed Registry support and replaced it with support for the new
10553           MWFConfig class. See MWFConfig comments for more information.
10554
10555 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
10556
10557         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
10558           rectangle. Added some patches from eno from bug #78490 and fixed
10559           the arrow position for small up and down CPDrawScrollButtons.
10560
10561 2006-06-30  Jackson Harper  <jackson@ximian.com>
10562
10563         * InternalWindowManager.cs: Remove some debug code.
10564         * Form.cs: When an MdiParent is set to null, the window is
10565         "detatched" and becomes a normal window.
10566         * MdiClient.cs: Don't bring the new child form to the front until
10567         it is activated (setting it as active does this), this makes the
10568         previously active forms titlebar get redrawn as inactive.
10569
10570 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
10571
10572         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
10573           with later controls
10574
10575 2006-06-29  Mike Kestner  <mkestner@novell.com>
10576
10577         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
10578         arrow in keynav state.  Fixes #78682.
10579
10580 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10581
10582         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
10583           order (fixes #78393)
10584
10585 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
10586
10587         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
10588           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
10589           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
10590           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
10591           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
10592           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
10593           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
10594           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
10595           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
10596           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
10597           enumerations (FlagsAttribute, SerializableAttribute, added/removed
10598           values)
10599
10600 2006-06-28  Mike Kestner  <mkestner@novell.com>
10601
10602         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
10603
10604 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10605
10606         * PropertyGrid.cs,
10607           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
10608           item lines from other area (It also makes BackColor consistent and
10609           compatible with .NET). Fixed bug #78564.
10610
10611 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
10612
10613         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
10614         Patch from Eno for #78555.
10615
10616 2006-06-27  Chris Toshok  <toshok@ximian.com>
10617
10618         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
10619
10620         * DataGridColumnStyle.cs: same.
10621
10622         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
10623         
10624         * DataGridDrawingLogic.cs: nuke.
10625
10626 2006-06-27  Chris Toshok  <toshok@ximian.com>
10627
10628         * DataGridTableStyle.cs: clean up the constructors, and build the
10629         list of child relations for this table.  I have no idea if this is
10630         where we should be doing it (it probably isn't), but since we're
10631         already iterating over the properties..
10632
10633         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
10634         struct and array for keeping track of row information, similar to
10635         what's shown in a hack on
10636         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
10637
10638         * Theme.cs: be consistent about the naming of DataGrid methods,
10639         prefering ColumnWidths and RowHeights over columnsWidths and
10640         RowsHeights.
10641
10642         * ThemeWin32Classic.cs: same, and also add support for variable
10643         sized rows (and the +/- expansion icons for related rows).
10644
10645 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10646
10647         * TextBoxBase.cs: Applied Eno's patch from #78660
10648
10649 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10650
10651         * Form.cs (ScaleCore): We don't want to scale our form if it's
10652           state is minimized or maximized, but we still need to scale our
10653           child windows. Also, added try/finally block to ensure layout
10654           gets reset (Fixes #78697)
10655
10656 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10657
10658         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
10659
10660 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10661
10662         * Form.cs: Fixed c+p error and added check to resize form if minimum
10663           size is bigger than current size (Fixes #78709)
10664
10665 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
10666
10667         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
10668
10669 2006-06-26  Mike Kestner  <mkestner@novell.com>
10670
10671         * ComboBox.cs: only do Keypress handling in the combo when there  
10672         are items in the collection. Fixes #78710.
10673
10674 2006-06-26  Chris Toshok  <toshok@ximian.com>
10675
10676         * Binding.cs: make this work bi-directionally.  also, clear up
10677         other mixups between Push/Pull Data (e.g. we're supposed to pull
10678         data when validating).
10679
10680         * BindingManagerBase.cs: trim some fully qualified collection
10681         types.
10682
10683         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
10684
10685 2006-06-23  Chris Toshok  <toshok@ximian.com>
10686
10687         * PropertyManager.cs: It appears (according to the unit tests)
10688         that PropertyManager doesn't use
10689         PropertyDescriptor.AddValueChanged to track propery value changes
10690         in its datasource, but uses the same scheme as Binding, where it
10691         looks for a <Property>Changed event and binds to it.
10692
10693         Also, according to the docs, IsSuspended always returns false for
10694         a property manager with a non-null datasource.
10695
10696 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
10697
10698         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
10699           need to update the actual DialogResult. (Fixes #78613)
10700
10701 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
10702
10703         * Form.cs (ShowDialog): Release any captures before running the
10704           new message pump (fixes #78680)
10705
10706 2006-06-22  Mike Kestner  <mkestner@novell.com>
10707
10708         * ListView.cs: Layout column widths properly in details mode even 
10709         if HeaderStyle.None is set.  Fixes #78691.
10710
10711 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
10712
10713         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
10714
10715 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
10716
10717         * Control.cs (ContainsFocus): Using new driver method to get focused
10718           window, instead of trying to use internal tracking var, which can
10719           recursion issues (Fixes #78685)
10720         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10721           XplatUIWin32.cs: Added GetFocus method to return focused window
10722
10723 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10724
10725         * ColorDialog.cs: when the mouse button is pressed inside the color
10726         matrix, don't let the cursor move out of it until the button is
10727         released, which is the behavior on windows. Changed 'colours' by
10728         'colors' to use the same word consistently.
10729
10730 2006-06-21  Chris Toshok  <toshok@ximian.com>
10731
10732         * DataGrid.cs: add in some basic navigation stuff (navigating to a
10733         child relation and back, using a stack).  Also, remove
10734         GetDataSource and the code that calls it - it's not needed.  Also,
10735         track CurrencyManager.ListName's removal.
10736
10737 2006-06-21  Chris Toshok  <toshok@ximian.com>
10738
10739         * CurrencyManager.cs: push some of the original type checking from
10740         BindingContext.CreateBindingManager to here, and remove some of
10741         the finalType stuff.  Need more tests to make sure I've got the
10742         ListName part right, and we might need more in SetDataSource.
10743
10744         * PropertyManager.cs: add a ctor that takes just the datasource,
10745         and no property name.  Make SetDataSource work with a null
10746         property_name, and make Current return the data_source if the
10747         property descriptor is null.  this makes 'string foo = "hi";
10748         BindingContext[foo].Current' return "hi" as it should.
10749
10750         * RelatedCurrencyManager.cs: make this code more generic - there's
10751         no reason the parent manager has to be CurrencyManager, and
10752         there's no reason to pass the DataRelation.  It suffices to use a
10753         BindingManagerBase and PropetyDescriptor.
10754
10755         * RelatedPropertyManager.cs: make a similar change here.
10756         
10757         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
10758         flower I knew it could be.
10759
10760 2006-06-20  Chris Toshok  <toshok@ximian.com>
10761
10762         * PropertyManager.cs: the PropertyChangedHandler is invoked when
10763         data in the source has changed and we need to update the control,
10764         so s/PullData/PushData.
10765
10766         * CurrencyManager.cs: Refresh is meant to update the control from
10767         data in the datasource.  So, s/PullData/PushData.
10768
10769         * BindingContext.cs: add more ugliness (we weren't handling the
10770         case where data_source = DataTable and data_member = column_name).
10771
10772         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
10773         from the perspective of the datasource.  PullData pulls from the
10774         control, PushData pushes to the control.
10775
10776 2006-06-20  Chris Toshok  <toshok@ximian.com>
10777
10778         * BindingContext.cs: rewrite the CreateBindingManager code to
10779         handle navigation paths more or less properly.  This could
10780         definitely stand some more work, in particular to push the
10781         recursion up to the toplevel.  But that relies on fixes in other
10782         places (System.Data comes to mind).
10783
10784         Also, move to a flat hashtable (and encode the twolevel nature of
10785         the dictionary into the hash key).  This lets us implement the
10786         IEnumerable.GetEnumerator method.
10787
10788         * RelatedCurrencyManager.cs: new class.  Update our view based on
10789         our relation and our parent CurrencyManager's position.
10790
10791         * CurrencyManager.cs: split out some logic from the ctor into
10792         SetView, so it can be called from the new RelatedCurrencyManager
10793         subclass.
10794
10795         * RelatedPropertyManager.cs: new class.  Update our datasource
10796         based on the position of our parent CurrencyManager.
10797
10798         * PropertyManager.cs: split out some logic from the ctor into
10799         SetDataSource, so it can be called from the new RelatedDataSource
10800         subclass.  Also, make the Current getter return the value
10801         of the PropertyDescriptor, not the data_source.
10802
10803         * Binding.cs: no need to duplicate the string splitting code here.
10804
10805 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10806
10807         * Control.cs:
10808           - set_Enabled: OnEnabledChanged is not called if the inherited state 
10809             of the control is not altered, even though  we might be changing the
10810             internal state of the control (#78458)
10811           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
10812             OnEnabledChanged, to allow easy altering of any child window state
10813           - OnEnabledChanged: Added code to enable/disable driver window state
10814           - OnParentEnabledChanged: Instead of firing the event, call 
10815             OnEnabledChanged, which will fire the event and also a) set driver
10816             window state and pass the enabled state to any grandchildren (#78458)
10817
10818 2006-06-19  Jackson Harper  <jackson@ximian.com>
10819
10820         * InternalWindowManager.cs: We don't set the cursor explicitly
10821         thats done via the response to NCHITTESTs.
10822         - Don't need to adjust for titlebar heights anymore, the
10823         coordinates are coming in the correct coordinates now (see peters
10824         last patch).
10825
10826
10827 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10828
10829         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
10830           being translated relative to whole window, instead of client window.
10831           That caused broken offsets on mouseclick (and caused gas for our
10832           InternalWindowManager)
10833
10834 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10835
10836         * TextControl.cs:
10837           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
10838           - Undo(): Added replay of cursor move on DeleteChars action; added
10839             calling Undo() again if a recorded cursor move is invalid (to
10840             ensure that some action is performed on Undo)
10841         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
10842
10843 2006-06-16  Jackson Harper  <jackson@ximian.com>
10844
10845         * MdiClient.cs: Instead of just sizing maximized windows when
10846         there is a resize we also have to adjust the Y of minimized
10847         windows, so they stay pinned to the bottom of the mdi container.
10848         - Eliminate separate tracking of the active control, we can just
10849         get this from the controls collection.
10850         - Paint the decorations for the newly activated titlebar so we get
10851         a pretty blue bar.
10852         * InternalWindowManager.cs:
10853         * ThemeWin32Classic.cs: Minimized windows get all three buttons
10854         even if they are a tool window.
10855         
10856 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10857
10858         * TextControl.cs (Undo): Handle non-existent cursor locations in the
10859           undo buffer, these can happen when text was deleted and the cursor
10860           was recorded first. Since we will also have a recorded cursor
10861           after the delete this is not an issue. (Fixes #78651)
10862
10863 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
10864
10865         * AccessibleObject.cs: Remove dependence on Control.is_selected;
10866           instead properly track control states internally (allows us to
10867           remove is_selected from Control)
10868
10869 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10870
10871         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
10872         whose width is not a multiple of 8.
10873
10874 2006-06-13  Jackson Harper  <jackson@ximian.com>
10875
10876         * MdiClient.cs:  Only maximize the next child if the current one
10877         is maximized.
10878
10879 2006-06-13  Chris Toshok  <toshok@ximian.com>
10880
10881         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
10882         modified.  Also, guard against grid or grid_drawing being null in
10883         Invalidate.
10884
10885         * DataGrid.cs: Reformat tons of getters/setters.  In the
10886         DataMember setter, just call SetNewDataSource instead of
10887         duplicating some of its functionality.  In SetNewDataSource, don't
10888         check ListManager for null, since the property getter creates the
10889         object if needed.
10890
10891         * DataGridTableStyle.cs: don't set TableStyle or call
10892         SetDataGridInternal on the column here, it's done in
10893         GridColumnStylesCollection.Add.
10894
10895         * GridColumnStylesCollection.cs: fix all the explicit interface
10896         implementations to just call our methods.  Nuke AddInternal() and
10897         move the body of it to Add().  Also, add a call to
10898         column.SetDataGridInternal to Add().
10899
10900         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
10901         base()+duplicate code.  Also, use the Format property instead of
10902         format to generate an Invalidate ala MS.  Lastly, create the
10903         textbox here, unconditionally.
10904         (set_Format): call Invalidate.
10905         (get_TextBox): no need to call EnsureTextBox.
10906         (Commit): remove the message box.
10907         (Edit) remove the call to EnsureTextBox.
10908         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
10909         (EnterNullValue): no need to check textbox for null.
10910         (HideEditBox): no need to check textbox for null.
10911         (SetDataGridInColumn): add the textbox to the grid's controls.
10912         (EnsureTextBox): nuke.
10913         
10914 2006-06-13  Jackson Harper  <jackson@ximian.com>
10915
10916         * MdiWindowManager.cs: Hook up to the maximized menus paint event
10917         and redraw the buttons when needed. Unhook when the window is
10918         unmaximized.
10919         * MainMenu.cs: Add an internal Paint event, the mdi window manager
10920         needs this so that it can redraw its buttons when the menu is
10921         repainted.
10922         * InternalWindowManager.cs:
10923         * Form.cs: The method order has changed for DrawMaximizedButtons,
10924         so that it can be a PaintEventHandler.
10925         
10926 2006-06-13  Jackson Harper  <jackson@ximian.com>
10927
10928         * MdiClient.cs: When we close a maximized mdi window, the next mdi
10929         window is activated and maximized, even if it wasn't before.
10930         - When  a new window is activated repaint the decorations of the
10931         old one, so that it no longer has the Active "look" (the blue
10932         titlebar).
10933         * InternalWindowManager.cs: Open up CreateButtons to base classes
10934         so they can recreate the buttons on state changes.
10935         - If a window is maximized give it all three buttons
10936         * MdiWindowManager.cs: Create the titlebar buttons when the state
10937         is changed, this is needed because a toolwindow will not have all
10938         three buttons until it is maximized.
10939
10940 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
10941
10942         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
10943           Fixed bug #78609.
10944
10945 2006-06-12  Jackson Harper  <jackson@ximian.com>
10946
10947         * KeysConverter.cs: Make sure we handle the Ctrl special case
10948         if its the only key.
10949         
10950 2006-06-12  Jackson Harper  <jackson@ximian.com>
10951
10952         * Theme.cs: Add a method to get the size of a managed window
10953         toolbar button.
10954         * InternalWindowManager.cs: Remove the ButtonSize property, this
10955         should be retrieved from the theme.
10956         * MdiWindowManager.cs: Get the button size from the theme
10957         * ThemeWin32Classic.cs: Make the method to get the managed window
10958         titlebar button size public.
10959         - Handle the different button sizes of maximized toolwindows
10960         (should match any maximized window).
10961         - Get the titlebar height from the theme, not the WM (which gets
10962         it from the theme).
10963
10964 2006-06-12  Jackson Harper  <jackson@ximian.com>
10965
10966         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
10967         event down to the mdi window manager.
10968         - Expose some extra stuff to base classes
10969         - Make sure to end the Capture on an NC Mouse up, so that we can
10970         get double clicks properly, and the sizing doens't stick.
10971         - When doing PointToClient contain it in the workable desktop
10972         area, this prevents windows from changing size when the cursor is
10973         pulled outside of the working area while sizing.
10974         * MdiWindowManager.cs: When we get a double click maximize the
10975         window.
10976         - Reset the cursor after handling mode changes.
10977
10978 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
10979
10980         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
10981           current desktop, instead of just assuming a 0, 0 origin. This
10982           is needed for our internal window manager, to know the top
10983           margin of the desktop
10984
10985 2006-06-12  Chris Toshok  <toshok@ximian.com>
10986
10987         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
10988         we need this to get rid of the selected background in the bool
10989         column.
10990         (CancelEditing): move the ConcedeFocus call to above the Abort
10991         call.  Also, set is_changing to false and invalidate the row
10992         header if we were changing before.
10993         (ProcessKeyPreviewInternal): remove, since noone outside this
10994         class calls it anymore.  Roll the code into ProcessKeyPreview.
10995         (EndEdit): remove the internal version.
10996         (InvalidateCurrentRowHeader): make private.
10997
10998         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
10999         Keys.Escape handling (and with it the last call to
11000         DataGrid.EndEdit from outside the class.)
11001
11002
11003 2006-06-12  Chris Toshok  <toshok@ximian.com>
11004
11005         * DataGridTextBox.cs (.ctor): isedit defaults to false.
11006         (OnKeyPress): set isedit to true.
11007         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
11008         already handled by the grid.
11009
11010         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
11011         right.  ugh.
11012         (set_DataSource): SetDataSource always returns true, so stop
11013         putting it in an if statement.
11014         (EndEdit): get rid of some {}'s
11015         (ProcessGridKey): return true in case Keys.Escape.
11016         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
11017         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
11018         PositionChanged, stopped connecting to CurrentChanged.
11019         (GetDataSource): simplify this a bunch.
11020         (SetDataSource): change return type from bool to void.
11021         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
11022         to this, and make sure we don't set ListManager.Position inside
11023         set_CurrentCell.
11024         (OnListManagerItemChanged): if we're passed an actual index,
11025         redraw that row.
11026
11027         * CurrencyManager.cs (set_Position): don't call PullData here.
11028
11029 2006-06-09  Jackson Harper  <jackson@ximian.com>
11030
11031         * TreeNode.cs:  Recalculate the visible order before doing the
11032         Expand/Collapse Below calls, because those calls generate an
11033         expose.
11034         - Reduce calls to the TreeView property, which is mildly expensive
11035         by using a local var.
11036         * Form.cs: Layout the MDI child windows when creating the parent
11037         form.
11038         - Don't use the internal constructor anymore
11039         * MdiClient.cs: use the parent form width/height (if available)
11040         when laying out the child windows, we do this because the
11041         mdiclient isn't docked yet when the initial layout is done.
11042         - Don't need an internal constructor anymore.
11043
11044 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11045
11046         * FileDialog.cs: handle access errors when trying to create a folder
11047         or changing to a directory. No need to initialize out parameters.
11048
11049 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11050
11051         * FileDialog.cs: Append a number when creating a new folder if the
11052           folder already exists (use parenthesis instead of square brackets)
11053
11054 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11055
11056         * FileDialog.cs:
11057           - Disabled registry support for windows and added better registry
11058             error checking for other systems (need to investigate why it
11059             works perfectly on my system)
11060           - If a folder already exist show an error MessageBox instead of
11061             trying to create an indexed name.
11062           - Fixed a non intentional typo.
11063
11064 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11065
11066         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
11067
11068 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11069
11070         * FileDialog.cs: When creating a new folder don't crash if the
11071           folder already exists.
11072
11073 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11074
11075         * FileDialog.cs: Allmost a complete rewrite.
11076           - added a "virtual" file system that handles the differences
11077             between unix and windows file systems (especially the directory
11078             structure). Moved most of the directory and file handling code
11079             into the vfs.
11080             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
11081             UnixFileSystem and FSEntry.
11082           - Recently used folder/directory, size, location and used file names
11083             (file name ComboBox) are now stored in the registry and get read
11084             before the dialog shows up (fixes part 6 of bug #78446).
11085           - Creation of new folders/directories is now possible (context menu
11086             or ToolBar). Added TextEntryDialog for this that fills in the gap
11087             until ListView.LabelEdit works.
11088           - Fixed cursor handling (bug #78527) and focus handling for
11089             PopupButtonPanel
11090           - Various "Search in" ComboBox enhancements. The content of the
11091             dropdown listbox now almost matches ms.
11092           - Changed the behaviour when the user switches to SpecialFolder
11093             Recent to show the ListView in View.Details.
11094           - Beside using the ToolBar to change the View property of the
11095             file ListView it is now possible to use the context menu too.
11096
11097 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
11098
11099         * ComboBox.cs: Don't create a new ObjectCollection when an item
11100           gets inserted. Just insert the item in the existing object_items
11101           ArrayList.
11102
11103 2006-06-08  Jackson Harper  <jackson@ximian.com>
11104
11105         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
11106         that the treeview and root node checks are done also, this fixes a
11107         regression i caused in the unit tests.
11108
11109 2006-06-07  Wade Berrier <wberrier@novell.com> 
11110
11111         * RichTextBox.cs: More ISO8859-1 -> unicode
11112
11113 2006-06-07  Mike Kestner  <mkestner@novell.com>
11114
11115         * ComboBox.cs : use items to hold highlight/selection so that
11116         collection insertions don't require synchronization.
11117
11118 2006-06-07  Jackson Harper  <jackson@ximian.com>
11119
11120         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
11121         routine.  We now always keep the sized edge at the cursor instead
11122         of computing movement and adjusting rects.  There is one buglet
11123         with this method though when the cursor is moved over area that
11124         the window can not expand too (such as the toolbars on the desktop).
11125
11126 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11127
11128         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
11129         here. Fixes crash on startup in AlbumSurfer.
11130
11131 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
11132
11133         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
11134           values
11135
11136 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11137
11138         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
11139         statement to avoid calling XNextEvent which will block if another thread
11140         took the event that we were expecting. Fixes bug #78605.
11141
11142 2006-06-07  Mike Kestner  <mkestner@novell.com>
11143
11144         * ListView.cs : isolated checkbox clicking from the selection logic.
11145         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
11146
11147 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11148
11149         * Form.cs: Check that the value passed to Form.DialogResult
11150         is a valid enum value.
11151
11152 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11153
11154         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
11155         Computer'. Clicking it in the network view goes to 'My Computer'.
11156         Added CIFS filesystem type. Display the mount point of filesystems.
11157         Avoid duplicate mount points (happens for me with CIFS);
11158
11159 2006-06-06  Jackson Harper  <jackson@ximian.com>
11160
11161         * InternalWindowManager.cs: Draw the maximized windows buttons
11162         when resizing.
11163
11164 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11165
11166         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
11167         all other dialogs. Fixes bug #78585.
11168
11169 2006-06-06  Mike Kestner  <mkestner@novell.com>
11170
11171         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
11172         Only invalidate checkbox on checkstate changes to avoid flicker.
11173         * ListBox.cs : avoid unselect/select when clicking selected item.
11174         avoid reselection flicker for already multiselected items.
11175         Fixes #78382.
11176
11177 2006-06-06  Jackson Harper  <jackson@ximian.com>
11178
11179         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
11180         the parent form so that the menu is removed if needed.
11181
11182 2006-06-06  Mike Kestner  <mkestner@novell.com>
11183
11184         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
11185         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
11186
11187 2006-06-06  Mike Kestner  <mkestner@novell.com>
11188
11189         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
11190
11191
11192 2006-06-06  Jackson Harper  <jackson@ximian.com>
11193
11194         * Control.cs: Use the property (instead of the field) to get the
11195         default cursor so it is instantiated correctly.
11196         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
11197         resizes so we need to manually repaint the window decorations here.
11198         - Set the titlebar button locations as soon as they are created,
11199         otherwise they are not set correctly on win32.
11200         
11201 2006-06-06  Chris Toshok  <toshok@ximian.com>
11202
11203         * CurrencyManager.cs (set_Position): call PullData before
11204         OnCurrentChanged.
11205         (AddNew): after calling IBindingList.AddNew, update our
11206         listposition, and call OnCurrentChanged/OnPositionChanged (without
11207         calling PullData).
11208         (OnCurrentChanged): remove the call to PullData from here.
11209         (OnItemChanged): remove the call to PushData from here.
11210         (OnPositionChanged): change the test from == null to != null to
11211         match the other methods.
11212         (ListChangedHandler): the grossest part of the patch.  Implement
11213         this such that it passes the unit tests in CurrencyManagerTest and
11214         the output more or less matches that of MS's implementation.
11215  
11216 2006-06-06  Mike Kestner  <mkestner@novell.com>
11217
11218         * ListView.cs : only update check state on single click.
11219         * ThemeWin32Classic.cs : fix focus drawing for details view without
11220         fullrowselect.  Fixes #78454.
11221         * XplatUIX11.cs : fix for double click emission.
11222
11223 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
11224
11225         * PropertyGridView.cs : Applied Atsushi's patch to fix
11226         font dialog bug  (#78197).
11227
11228 2006-06-05  Jackson Harper  <jackson@ximian.com>
11229
11230         * TreeNode.cs: Compute the next node for expanding/collapsing
11231         correctly. We now factor in nodes without a NextNode
11232         correctly. (Fixes somes cases in nunit-gui).
11233         * InternalWindowManager.cs: Set the bounds when updating the
11234         virtual position of a tool window.
11235         
11236 2006-06-05  Chris Toshok  <toshok@ximian.com>
11237
11238         * DataGrid.cs: rename cached_currencymgr to list_manager.
11239         (set_CurrentCell): move SetCurrentCell code here, and clean it up
11240         some.
11241         (CurrentRow, CurrentColumn): single accessors so we can make the
11242         cursor movement code a lot easier to understand.
11243         (CurrentRowIndex): implement this in terms of CurrentRow.
11244         (BeginEdit): clean this up a bit.
11245         (CancelEditing): sort out the is_editing/is_changing/is_adding
11246         stuff a little.
11247         (EndEdit): minor changes.
11248         (OnKeyDown): add a comment about a (most likely) unnecessary
11249         check.
11250         (OnMouseDown): cancel editing when we click on a row header.  And
11251         use the CurrentRow setter, not CurrentCell.
11252         (ProcessDialogKey): directly call ProcessGridKey.
11253         (UpdateSelectionAfterCursorMove): factor out this common block of
11254         code (it's used everywhere that we move the cursor by updating row
11255         or column).
11256         (ProcessGridKey): pretty substantial overhaul.  Use the
11257         CurrentRow/CurrentColumn properties to make the code a lot more
11258         readable.  Only use the CurrentCell property when we have to
11259         modify both row and column at once.  Tab behavior is still broken,
11260         and Delete is untested.
11261         (Select): if we have no selected rows, set selection_start to
11262         @row.
11263         (EditCurrentCell): rename EditCell this.  It was only ever invoked
11264         with CurrentCell as the arg, so drop the arg and rename it.
11265
11266         * DataGridColumnStyle.cs: clean up the constructors a little, and
11267         drop CommonConstructor().
11268
11269         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
11270         actually get notified when the user hits it.
11271         (ProcessKeyMessage): *substantially* simplify this method.
11272         There's no reason (that I can see) for the textbox to be making
11273         calls into the datagrid at all.  Remove all of them but the ones
11274         for Enter handling.  those will take some more work.
11275
11276         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
11277         calling HideEditBox.
11278         (HideEditBox): if we have an active textbox, render it invisible
11279         without causing a re-layout of the datagrid.
11280
11281 2006-06-05  Mike Kestner  <mkestner@novell.com>
11282
11283         * ListView.cs : fix NRE crasher when focuseditem is cleared by
11284         collection changes by resetting it to Items[0].  Fixes #78587.
11285
11286 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11287
11288         * MessageBox.cs: if the height of the text is larger than the icon_size,
11289         use that. Fixes bug #78575.
11290
11291 2006-06-05  Jackson Harper  <jackson@ximian.com>
11292
11293         * TreeView.cs: Fix line drawing when scrolling.  To do this each
11294         node is basically responsible for drawing its entire horizontal
11295         area.  When drawing a node it draws its parent node lines if
11296         needed.
11297         - Adjust the clip area to the viewport rectangle
11298         - Fix Left/Right key handling to match MS. (It expand/collapses
11299         and moves to parents/first child but does not move selection to
11300         sibling nodes).
11301         - Fix SetTop to work with new bound calculation code
11302         - When scrollbars are no longer needed we need to reset scrolling
11303         vars and recalculate the visible order so the redraw is correct
11304         * TreeNode.cs: We can't expand/collapse nodes with no children.
11305
11306 2006-06-03  John Luke  <john.luke@gmail.com> 
11307
11308         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
11309         so the colors work without dev packages
11310         
11311 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
11312
11313         * Control.cs 
11314           - Select: Implemented to just use activate. Seems to match MS 
11315             behaviour closest. Documented to only do actual control walking 
11316             based on it's parameters if in a container control so I moved 
11317             the code there.
11318           - Removed selection check logic from our internal Select() method
11319         * ContainerControl.cs:
11320           - Select: Moved selection logic from Control here, since MS documents
11321             that containers obey the bool arguments. No longer calling base
11322
11323 2006-06-02  Jackson Harper  <jackson@ximian.com>
11324
11325         * TreeView.cs: If the selected node isn't changed when we get
11326         focus update the previously selected node so that we see the
11327         selection box.
11328
11329 2006-06-02  Mike Kestner  <mkestner@novell.com>
11330
11331         * ComboBox.cs: restructure grab and general mouse event handling.
11332         Make the composite control raise mouse events like it was a single
11333         control for leaves/enters/motion/up/down events.  fix dropdown list
11334         coordinate mangling and refactor it into the scrollbar subclass to
11335         reduce code duplication.  Fixes #78282 #78361 and #78457.
11336
11337 2006-06-02  Mike Kestner  <mkestner@novell.com>
11338
11339         * ScrollBar.cs: remove Capture setting/clearing, as it happens
11340         automatically in the Control.WndProc.
11341
11342 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11343
11344         * FileDialog.cs: fix crash when running SharpChess, which sets the
11345         FilterIndex to 2 with only one Filter.
11346
11347 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11348
11349         * ToolBar.cs: add SizeSpecified property.
11350         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
11351         try to figure out our real size, otherwise fallback to what the
11352         container says.
11353
11354 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
11355
11356         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
11357         * Control.cs (WndProc): MS always calls the DefWndProc to pass
11358           up the event
11359
11360 2006-06-01  Mike Kestner  <mkestner@novell.com>
11361
11362         * ListView.cs: revamp the focus management in ListView.  It still
11363         causes churn of LostFocus/GotFocus emissions on clicks, but it's
11364         better than not handling focus at all.  Will revisit when pdb feels
11365         the general focus handling is solid.  Fixes #78526.
11366
11367 2006-06-01  Jackson Harper  <jackson@ximian.com>
11368
11369         * TreeView.cs: Set the default border style in the constructor.
11370         - Move painting to use OnPaintInternal instead of capturing
11371         WM_PAINT, this is the correct way of doing things
11372         - UpdateBelow shouldn't invalidate the scrollbar area
11373         - Cap the top on update below in case the node was above the top
11374         of the viewport rectangle.
11375         - ExpandBelow and Collapse below need to obey Begin/End Update.
11376         * TreeNode.cs: Make is_expanded internal so the treenode
11377         collection can change it without firing the whole event chain.
11378         * TreeNodeCollection.cs: When clearing all the child nodes make
11379         sure to recalc the visible order.
11380         - Improve algo for remove the top node
11381
11382 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
11383
11384         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
11385           SendMessage directly calling window procedures, which in turn might
11386           call SetFocus()
11387
11388 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
11389
11390         * Control.cs: Don't handle WM_SETFOCUS if the same window already
11391           has focus (works around X11 sending a FocusIn after our SetFocus)
11392         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
11393
11394 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
11395
11396         * Mime.cs: Fix for the NET_2_0 build.
11397           NameValueCollection needs StringComparer now.
11398
11399 2006-05-31  Chris Toshok  <toshok@ximian.com>
11400
11401         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
11402         return (via an out parameter) the starting X of the column.
11403         (UpdateVisibleColumn): track change to FromPixelToColumn.
11404         (HitTest): add a ColumnResize case here.
11405         (DrawResizeLine): new function, probably poorly named.
11406
11407         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
11408         only need to keep one reference.
11409         (set_ListManager): same.
11410         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
11411         Also, add support for HitTestType.ColumnResize.
11412         (OnMouseMove): add column resize behavior here, and change the
11413         cursor to the correct one as we move around the datagrid.
11414         (OnMouseUp): terminate the column resize if we're resizing.
11415         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
11416         for the current cell.
11417         (ConnectListManagerEvents): use cached_currencymgr.
11418         (DisconnectListManagerEvents): fill this in, using
11419         cached_currencymgr.
11420         (SetCurrentCell): remove cached_currencymgr_events handling.
11421         (SetDataMember): only call DisconnectListManagerEvents if
11422         cached_currencymgr is != null.
11423         (SetDataSource): same.
11424         (OnListManagerCurrentChanged): cached_currencymgr_events ->
11425         cached_currencymgr.
11426
11427 2006-05-31  Jackson Harper  <jackson@ximian.com>
11428
11429         * BindingManagerBase.cs: Remove somedebug code that creeped into
11430         SVN.
11431         * TreeNode.cs: We get the indent level dynamically right now, so
11432         don't track it as a member.
11433         * TreeNodeCollection.cs: Make sure all nodes added to the list
11434         have parents, treeviews/topnodes setup properly.
11435         - Don't attempt to track indent level.
11436
11437 2006-05-30  Jackson Harper  <jackson@ximian.com>
11438
11439         * BindingContext.cs: Create the currency manager tables here.
11440         This allows us to more easily create null tables (when bad data
11441         members are used), and more easily create related currency
11442         managers.
11443         * CurrencyManager.cs: All the table creation stuff is done by the
11444         binding context now.
11445         - Current should throw an exception if listposition is -1.
11446         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
11447         been bound yet.
11448
11449 2006-05-30  Mike Kestner  <mkestner@novell.com>
11450
11451         * ListView.cs: allow reexpansion of zero-width column headers.
11452         Fixes #78528.
11453
11454 2006-05-28  Chris Toshok  <toshok@ximian.com>
11455
11456         * CurrencyManager.cs (get_Current): after the late binding
11457         listposition = -1 fix, we need to guard against it here and return
11458         null, otherwise we raise an exception (which is swallowed
11459         elsewhere, and breaks datagrid databinding.)
11460
11461 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
11462
11463         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
11464           than WM_SYSKEY, don't throw if get something unexpected (#78507)
11465
11466 2006-05-26  Jackson Harper  <jackson@ximian.com>
11467
11468         * ControlPaint.cs:
11469         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
11470         values, it's faster and it's all we care about (we don't care if
11471         the names aren't equal).
11472         * KeyboardLayouts.cs: Eliminate some dead code.
11473         - Lazy init things
11474         * X11Keyboard.cs: Lazy init keyboard detection.
11475         - Cleanup access modifiers a little.
11476
11477 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
11478
11479         * XplatUIX11.cs: Once again, attempting to get layout just right.
11480
11481 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
11482
11483         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
11484           the sizes of each link section, that will result in sizes that
11485           match DrawString's layout (Fixes #78391)
11486
11487 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
11488
11489         * FileDialog.cs: If AddExtension property is true autocomplete the
11490           extensions in SaveFileDialog correctly. Fixes bug #78453.
11491           Set MyNetwork and MyComputer to "C:\" for windows. This should
11492           fix part 8 of bug #78446 for now.
11493
11494 2006-05-26  Chris Toshok  <toshok@ximian.com>
11495
11496         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
11497         invalidate the current row header if we need to, but presumably
11498         we'll invalidate the row corrsponding to the bounds or
11499         editingControl.
11500         (GridHScrolled): switch back to this method, as it's part of the
11501         public api.  *sigh*.
11502         (GridVScrolled): same.
11503         (OnMouseWheel): hack up something that more or less works.  Call
11504         GridHScrolled/GridVScrolled directly, instead of duplicating much
11505         of their code here.
11506         (EnsureCellVisibility): reinstate a bunch of this code, since we
11507         can't just set the scrollbar Value and expect to do all the work
11508         in the ValueChanged handler.  Also, Call Update() after scrolling
11509         in one direction so the other XplatX11.ScrollWindow call has the
11510         proper stuff in the proper places.
11511         (EditCell): set is_editing to true before calling .Edit.
11512
11513         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
11514         don't bother comparing first.
11515         (OnKeyPress): call grid.ColumnStartedEditing before calling
11516         base.OnKeyPress.  this will set is_changing and invalidate the row
11517         header if necessary.
11518         (ProcessKeyMessage): for WM_CHAR messages, call
11519         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
11520         and WM_KEYDOWN.
11521         
11522         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
11523         it's done in the DataGrid.
11524         (NextState): call grid.ColumnStartedEditing, which takes care of
11525         invalidating the row header (and setting is_changing).
11526
11527         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
11528         here.  it's done in the DataGrid.
11529
11530 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11531
11532         * Control.cs: allow changing the cursor when the mouse position is
11533         out of bounds but Capture is set.
11534         * LinkLabel.cs: handle the case when the mouse button is pressed on the
11535         linklabel but released somewhere else.
11536
11537 2006-05-25  Jackson Harper  <jackson@ximian.com>
11538
11539         * TreeView.cs: When we get focus if there is no selected node make
11540         it the top node
11541         - Remove some uneeded setup code from Draw.
11542         * TreeNodeCollection.cs: If the tree doesn't have a top node when
11543         a new node is inserted make the new node the top.
11544         * XplatUIX11.cs:
11545         * Timer.cs: Use Utc time so that no local time zone stuff needs to
11546         be used (should be faster).
11547         
11548 2006-05-25  Chris Toshok  <toshok@ximian.com>
11549
11550         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
11551         problem with the last commit.
11552
11553 2006-05-25  Chris Toshok  <toshok@ximian.com>
11554
11555         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
11556         need the invalidate call here, while scrolling right-to-left via
11557         the left arrow key (i.e. moving the editing cell while scrolling).
11558
11559         * DataGrid.cs (.ctor): remove the initialization of
11560         ctrl_pressed/shift_pressed.  We no longer track them using key
11561         up/down handlers, but by using Control.ModifierKeys.  Also, switch
11562         to using ValueChanged handlers on the scrollbars instead of
11563         Scrolled event handlers.  This simplifies a bunch of the scrolling
11564         code.
11565         (GridHValueChanged): rename from GridHScrolled, and change it to
11566         work with the new event args.
11567         (GridVValueChanged): same.
11568         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
11569         (OnMouseWheel): actually scroll the datagrid.  Don't change the
11570         selected cell.
11571         (ProcessGridKey): correct all the keyboard navigation stuff I
11572         could find.  Ctrl up/down/left/right/home/end work now.
11573         (EnsureCellVisibility): correct method name spelling.  Also,
11574         simplify this a touch by not explicitly calling the
11575         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
11576         scrollbar value.
11577         (OnKeyUpDG): no need for this method now.
11578         
11579 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11580
11581         * LinkLabel.cs: display the OverrideCursor when hovering the label.
11582         Fixes bug #78392.
11583
11584 2006-05-25  Chris Toshok  <toshok@ximian.com>
11585
11586         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
11587         r61019.
11588
11589 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11590
11591         * Application.cs: Moved setting of is_modal and closing to before
11592           we create the control, to allow the event handlers called as a
11593           result of creation affect closing. Also removed Gonzalo's previous
11594           change to setting DialogResult, the behaviour has been moved to 
11595           Form.ShowDialog()
11596         * Form.cs: 
11597           - ShowDialog(): Removed explicit creation of the form, let RunLoop
11598             handle it instead
11599           - ShowDialog(): If no dialog result is set, we need to return Cancel
11600           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
11601             the close is cancelled
11602
11603 2006-05-25  Jackson Harper  <jackson@ximian.com>
11604
11605         * StatusBar.cs: We only need to update the sizes of the other
11606         panels when we have auto size contents.  Also we are only updating
11607         the contents of the panel, not the borders, so compensate for the
11608         border width (TODO: get this width from the theme somehow).
11609         * TreeView.cs: Scrollable is true by default
11610         - Use invalidate instead of refresh where needed
11611         - Factor the scrollable value into scrollbar updating
11612         - Update the scrollbars if the Scrollable property is altered
11613         - Update the selected node if its ImageIndex is changed
11614         - Handle null nodes in UpdateNode (mainly so we don't have to
11615         check if selected is null when updating it
11616         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
11617         are factored into the visible count
11618         - Use VisibleCount for clarity in the code
11619         - When the font is changed we need to recurse through all the
11620         nodes and invalidate their sizes
11621         
11622 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11623
11624         * Application.cs: set the DialogResult to fixed when the main form is
11625         hidden or destroyed while being modal.
11626
11627 2006-05-25  Miguel de Icaza  <miguel@novell.com>
11628
11629         * Theme.cs: Use Tangoified messagebox icons. 
11630
11631         (GetSizedResourceImage): Also cope with width = 0 and do not
11632         trigger a warning in that case (0 means "give me your icon from
11633         the resouce, no special size needed).
11634
11635 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11636
11637         * Application.cs: Leave runloop if the the main modal form is 
11638           hidden (fixes #78484)
11639
11640 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11641
11642         * BindingContext.cs : reject null datasource in Contains() and
11643           Item[].
11644         * CurrencyManager.cs : check data_member validity when data_source
11645           is dataset. When it is late binding, the initial position is -1.
11646
11647 2006-05-24  Jackson Harper  <jackson@ximian.com>
11648
11649         * TreeNodeCollection.cs: Dont't recalculate the visible order on
11650         inserted nodes that aren't visible.  This changes the
11651         max_visible_order which confuses scrollbar settings.
11652         - Use the enumerator to get the prev node instead of duplicating
11653         code.
11654         * TreeView.cs: Use new method for setting scrollbar values
11655         - Don't set the bounds every time the scrollbar is updated
11656         - When updating below the root node use an invalidate instead of a
11657         refresh to prevent the child controls (scrollbars) from being
11658         refreshed. (UpdateBelow still needs to be reworked anyways).
11659         - Reenable SetBottom now that visible orders are set correctly,
11660         added some debug code incase we ever get bad values there again.
11661         - Set the scrollbar max to 2 less then the max value, this
11662         compensates for the max value being one above the node count, and
11663         for scrollbars adding one extra "notch".
11664         - When drawing image nodes if there is an imagelist we draw the
11665         first image in the list if the supplied image index is out of the
11666         image list's bounds.
11667         
11668 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11669
11670         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
11671           we receive a size change from the WM (Fixes #78503)
11672
11673 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
11674
11675         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
11676           rectangle (Fixes #78501)
11677
11678 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11679
11680         * ButtonBase.cs: 
11681           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
11682             as a bitfield.
11683           - Fixed MouseMove to no longer switch pressed state unless the left
11684             mouse button is pressed. Atsushi provided the original patch (#78485)
11685           
11686 2006-05-24  Jackson Harper  <jackson@ximian.com>
11687
11688         * ScrollBar.cs: New internal methods that allow us to change a
11689         couple values on the scrollbar (the most common case is maximum
11690         and large change) without getting multiple invalidates.
11691
11692 2006-05-24  Chris Toshok  <toshok@ximian.com>
11693
11694         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
11695         (Edit): save off the original state in oldState, and set
11696         grid.is_editing to true.
11697         (OnKeyDown): abort editing if escape is pressed.  also, call
11698         NextState if space is pressed.
11699         (OnMouseDown): call NextState.
11700         (NextState): factor out shared code from OnKeyDown and OnMouseDown
11701         here.  Also, only invalidate the row header once (on the initial
11702         is_changing switch) to save on redraws.
11703
11704 2006-05-24  Chris Toshok  <toshok@ximian.com>
11705
11706         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
11707         if the value in the cell is different than it was before.  This
11708         keeps us from triggering a layout when we move around a datarid
11709         with a highlighted cell.
11710         (Edit): suspend layout when creating/positining the text box, and
11711         resume passing false so we don't ever actually re-layout.
11712         (ReleaseHostedControl): same.
11713         (EnsureTextBox): reformat slightly, and set WordWrap to false.
11714
11715         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
11716         control-key sequences should go to the datagrid - remove that
11717         lock.  Also, modify the conditions under which we move between
11718         cells when moving the cursor within a cell, and remove the "this"
11719         and "base" from field accesses.  We weren't even consistent, given
11720         they all were in the base class.
11721
11722 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
11723
11724         * Binding.cs : (.ctor)
11725           An obvious NRE fix for BindingTest.CtorNullTest().
11726
11727 2006-05-23  Chris Toshok  <toshok@ximian.com>
11728
11729         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
11730         them between lines.  This fixes some quirks editing cells in the
11731         datagrid.
11732
11733 2006-05-23  Jackson Harper  <jackson@ximian.com>
11734
11735         * TreeView.cs: Use begin/end update when doing expand/collapse all
11736         so that we don't get flicker on the scrollbar.
11737
11738 2006-05-23  Jackson Harper  <jackson@ximian.com>
11739
11740         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
11741         treenode calculations to be independant of the painting code. To
11742         do this nodes track a visible order which is calculated by the
11743         treeview.
11744         - Call new methods for expanding/collapsing nodes.  These methods
11745         use scrollwindow so we don't have to update everything below the
11746         node.
11747         * TreeView.cs: Refactored drawing and scrolling code.  We don't
11748         need to update nodes when drawing anymore or calculate scrollbar
11749         stuff.
11750         - Added new methods for expanding/collapsing nodes. These methods
11751         use ScrollWindow so as to not have to redraw all the nodes below.
11752         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
11753         we add/remove nodes or sort.
11754         - Handle removing the selected and the top node properly.
11755
11756 2006-05-23  Chris Toshok  <toshok@ximian.com>
11757
11758         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
11759         maybe this should actually happen in the datagrid code?
11760         (EndEdit): no need to invalidate anything, given that
11761         ReleaseHostedControl causes the datagrid to relayout, which
11762         invalidates everything anyway.
11763
11764         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
11765         in SetCurrentCell).
11766         (set_SelectionBackColor): call InvalidateSelection instead of
11767         Refresh.
11768         (set_SelectionForeColor): same.
11769         (BeginEdit): Flesh this out a bit.
11770         (CancelEditing): only do any of this if we're editing/adding.
11771         (EndEdit): same.
11772         (OnMouseDown): there's no need to cancel editing here, it's done
11773         in SetCurrentCell.
11774         (SetCurrentCell): only invalidate the current row header if it's a
11775         different row than the new one.
11776         (ShiftSelection): fix this to work like MS does.
11777         (ResetSelection): factor out the invalidation of selected_rows to
11778         InvalidateSelection.
11779         (SetDataSource): cancel any editing that's going on.
11780
11781         * DataGridColumnStyle.cs
11782         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
11783         call the non-interface version.
11784
11785         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
11786         header rectangle with the clip rectangle so we don't redraw the
11787         entire header for just a small area.  Gets rid of the last flicker
11788         when horizontally scrolling.
11789         (DataGridPaintRow): same.
11790
11791 2006-05-23  Mike Kestner  <mkestner@novell.com>
11792
11793         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
11794         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
11795         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
11796         Critical bug report.
11797
11798 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11799
11800         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
11801           and this fixes #78493
11802
11803 2006-05-23  Miguel de Icaza  <miguel@novell.com>
11804
11805         * Theme.cs (GetSizedResourceImage): Scale images if the proper
11806         size is not found.  
11807         
11808         * FileDialog.cs: Do not change the background for the side bar as
11809         it wont work nicely with the theme, and also reduces the artifacts
11810         in rendering the icons (which I want to fix too).
11811
11812         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
11813         resources, not resgen resources. 
11814
11815         (PlatformDefaultHandler): Pull images using the new API.
11816
11817 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11818
11819         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
11820           a reference to the hwnd and will not remove it unless there are
11821           no pending exposures (fixes #78341)
11822         * XplatUI.cs: Improved debug
11823
11824 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
11825
11826         * MenuAPI.cs : don't handle OnClick event when it was not the left
11827           button. Fixed bug #78487.
11828
11829 2006-05-23  Mike Kestner  <mkestner@novell.com>
11830
11831         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
11832         prefer submenus to the top menu for item lookup, to avoid popping down
11833         top-row items.
11834
11835 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
11836
11837         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
11838           Graphics.FillRectangle as the visual results are really bad (even
11839           on win). We now draw perfect arrows (and perfect shadows when the
11840           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
11841           Pen.DashPattern to draw the dots of each line.
11842
11843 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
11844
11845         * FileDialog.cs: Update the filename combobox when navigating through
11846           the ListView with the cursor keys. Fixes part 7 of bug #78446.
11847
11848 2006-05-22  Mike Kestner  <mkestner@novell.com>
11849
11850         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
11851         Fixes #78463.
11852
11853 2006-05-22  Mike Kestner  <mkestner@novell.com>
11854
11855         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
11856         requests. Fix a misspelled parameter and a copy paste exception error
11857         in Select.
11858
11859 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
11860
11861         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
11862           to get the same width/height (5/13) on X11 as the default font has on
11863           win32. This means that our DefaultFont emSize is smaller than the 
11864           the MS SWF equivalent (even thought the width/height stays the same)
11865
11866 2006-05-20  Jackson Harper  <jackson@ximian.com>
11867
11868         * MdiClient.cs:
11869         * MdiWindowManager.cs:
11870         * InternalWindowManager.cs: Make sure to use the border width from
11871         the theme.
11872
11873 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
11874
11875         * PrintDialog.cs: Implements printer details
11876
11877 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
11878
11879         * FileDialog.cs: Added focus handling for PopupButtonPanel.
11880           Fixes part 1 and 2 of bug #78446
11881
11882 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
11883
11884         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
11885           instead of sticking to the first ever calculated value
11886
11887 2006-05-19  Mike Kestner  <mkestner@novell.com>
11888
11889         * ComboBox.cs: fix mouse motion selection to use MousePosition and
11890         PointToClient, since Capture is set. Fixes #78344.
11891
11892 2006-05-19  Mike Kestner  <mkestner@novell.com>
11893
11894         * ListView.cs: match MS behavior in Details view where items are not
11895         drawn if Columns.Count == 0. 
11896         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
11897         Use a separate pen to draw the check, since changing the width affects
11898         the box as well.  Fixes #78454.
11899
11900 2006-05-18  Miguel de Icaza  <miguel@novell.com>
11901
11902         * ListView.cs: ArgumentOutOfRangeException, single versions of the
11903         exception should throw the name of the invalid argument.
11904
11905         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
11906         there are no files listed. 
11907
11908 2006-05-18  Jackson Harper  <jackson@ximian.com>
11909
11910         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
11911         up.
11912
11913 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11914
11915         * Control.cs: Brought back our old UpdateZOrder method as a private
11916           function and switched our calls from UpdateZOrder to the new one.
11917           This fixes the Paint.Net canvas disappearing bug.
11918
11919 2006-05-18  Jackson Harper  <jackson@ximian.com>
11920
11921         * Theme.cs:
11922         * ThemeWin32Classic.cs:
11923         * InternalWindowManager.cs: Move the drawing into the theme,
11924         expose everything the theme should need from the window manager.
11925
11926 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11927
11928         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
11929           from the call to NativeWindow to avoid walking up the parent chain
11930           further than needed (speeds up setting cursors and avoids setting
11931           the wrong cursor if a parent has another cursor defined)
11932         * Cursor.cs: When loading an icon as cursor, MS uses the center of
11933           the icon as hotspot, not what's contained as hotspot in the icon
11934           file. This fixes the perceived drawing offset seen with Paint.Net
11935         
11936 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11937
11938         * XplatUIX11.cs: 
11939           - Store the calculated rectangle in Hwnd object and use it when 
11940             setting the client size
11941           - Force Toolwindows to always be type Dock, to ensure they're on top
11942
11943 2006-05-18  Mike Kestner  <mkestner@novell.com>
11944
11945         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
11946         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
11947         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
11948         Substantial refactoring to remove confusing nested classes. Coding
11949         standard and Get+Set->property refactorings.  Shift to index based
11950         highlighting in ComboListBox instead of constantly using IndexOf and
11951         Items[]. Add invalidations on resize for DropDownList to fix ugliness
11952         in FileDialog growth.  Draw borders manually since Simple mode needs
11953         to look like two independent controls.  Make listbox border
11954         conditional to DropDownStyle.  Improved OwnerDraw support.
11955
11956 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
11957
11958         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
11959         Don't set the disposed graphics to null, so we can throw the "right"
11960         exception if the graphics is reused later (added a flag to avoid 
11961         double disposing). Some behaviours are different under 2.0 and are
11962         filled under bug #78448.
11963
11964 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11965
11966         * Control.cs: When double-buffering is enabled, we need to reset
11967           our graphics context between paint calls. Otherwise, any 
11968           transformations and other alterations on the context will 
11969           become cumulative (#77734)
11970
11971 2006-05-18  Mike Kestner  <mkestner@novell.com>
11972
11973         * ListView.cs: do focused item selection like MS on clicks. 
11974         Rework focus handling for ItemControl so LostFocus invalidates as
11975         well.
11976         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
11977         the ListView ItemControl has focus.
11978
11979 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
11980
11981         * XplatUIX11.cs: If client_window ends up being width or height zero
11982           due to border settings, move it off window inside whole_window (#78433)
11983
11984 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11985
11986         * Mime.cs: Shrink the mime file cache correctly.
11987
11988 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11989
11990         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
11991
11992 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11993
11994         * XplatUIX11.cs (AddExpose): More sanity checks
11995
11996 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11997
11998         * XplatUIX11.cs:
11999           - AddExpose: Don't add expose ranges outside the size of our
12000             window
12001           - Cast opacity values to Int32 to avoid crashes with certain
12002             values
12003           - Added disabled code paths that protect against illegal cross-
12004             thread painting (Developers.exe)
12005
12006 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12007
12008         * ProgressBar.cs: Invalidate the control when it's resized
12009           since block size is based on control size. (#78388)
12010
12011 2006-05-16  Miguel de Icaza  <miguel@novell.com>
12012
12013         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
12014         of setting the incoming argument to the "reset" value, we set the
12015         this.datamember to string.empty (before we were invalidating the
12016         incoming data).   
12017
12018         Fixes 78420
12019
12020 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12021
12022         * Form.cs: Only apply transparency settings after the form
12023           is created. (Fixes #77800)
12024
12025 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
12026
12027         * ApplicationContext.cs: Grab the HandleDestroyed event so
12028           we know when to fire OnMainFormClosed 
12029
12030 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12031
12032         * Application.cs: Introduced sub-class to allow tracking of
12033           threads and centralized triggering of the event mess for
12034           ThreadExit, AppExit, etc..  (#76156)
12035
12036 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
12037
12038         * MimeIcon.cs:
12039           - Do not return a null icon index value for a mime subclass.
12040             Instead try the main mime type class too.
12041           - Seems that some newer distributions don't have a link to some
12042             gnome default icons anymore. So check the default gnome dir too.
12043           
12044
12045 2006-05-16  Jackson Harper  <jackson@ximian.com>
12046
12047         * MdiClient.cs: Don't paint the parent background image if we have
12048         our own background image.
12049
12050 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
12051
12052         * Control.cs:
12053           - PerformLayout: Do not shrink space filled by DockStyle.Fill
12054             controls, all filled controls are supposed to overlap (#78080)
12055           - UpdateZOrder is supposed to update the control's z-order in the
12056             parent's z-order chain. Fixed to behave like that
12057           - BringToFront: Removed obsolete code
12058           - SendToBack: Simplyfied
12059           - SetChildIndex: Trigger layout calculations when Z-order changes
12060             since layout is done by z-order
12061
12062 2006-05-16  Chris Toshok  <toshok@ximian.com>
12063
12064         [ fixes bug #78410 ]
12065         * DataGrid.cs (set_AlternatingBackColor): use
12066         grid_drawing.InvalidateCells instead of Refresh().
12067         (set_BackColor): call grid_drawing.InvalidateCells.
12068         (set_BackgroundColor): use Invalidate instead of Refresh.
12069
12070         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
12071         invalidate the cell area.
12072
12073 2006-05-15  Chris Toshok  <toshok@ximian.com>
12074
12075         [ fixes bug #78011 ]
12076         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
12077         on to DataGridPaintRow.
12078         (DataGridPaintRow): take a clip argument, and only draw the cells
12079         which intersect it.  same with the not_usedarea.
12080
12081         * Theme.cs (DataGridPaintRow) add @clip parameter.
12082
12083         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
12084         XplatUI.ScrollWindow.
12085         (ScrollToRow): same.
12086
12087         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
12088         with last column which was causing a gray swath to appear with the
12089         XplatUI.ScrollWindow code.
12090
12091 2006-05-15  Chris Toshok  <toshok@ximian.com>
12092
12093         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
12094         use XplatUI.ScrollWindow.
12095         (VerticalScrollEvent): use XplatUI.ScrollWindow.
12096
12097 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
12098
12099         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
12100
12101 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
12102
12103         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
12104           file since there are no equivalent X11 cursors
12105
12106 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
12107
12108         * MonthCalendar.cs : DateTimePicker should reflect selected date
12109           on mouse*up*, not mouse*down*. Fixed originally reported part of
12110           bug #76474.
12111
12112 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
12113
12114         * TabControl.cs : When argument index is equal or more than tab
12115           count, just ignore. Fixed bug #78395.
12116
12117 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
12118
12119         * Control.cs: Dispose all child controls when control is diposed (#78394)
12120
12121 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12122
12123         * ColorDialog.cs: Finally it is possible to select the color with
12124           the text boxes
12125
12126 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12127
12128         * PrintDialog.cs: Fix typo
12129
12130 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
12131
12132         * PrintDialog.cs: PrintDialog is not resizable
12133         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
12134           color. Made some ToolBar drawing methods protected virtual.
12135
12136 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
12137
12138         * PrintDialog.cs: Implementation of the PrintDialog
12139
12140 2006-05-12  Chris Toshok  <toshok@ximian.com>
12141
12142         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
12143         thumb, instead use MoveThumb.  This has the side effect of making
12144         most of the other thumb moving machinery use MoveThumb as well.
12145         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
12146         need to actually invalidate the rectangle where the new thumb will
12147         go.
12148         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
12149         We force an Update() after, so it's not as fast as it could be,
12150         but at least there's zero flicker and no droppings.
12151         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
12152         (UpdateThumbPos): add another argument (dirty), which says whether
12153         or not to calculate/add dirty regions which we later invalidate.
12154         For cases where we know we're going to use MoveThumb, we pass
12155         false for this.  Otherwise, pass true.
12156
12157 2006-05-12  Jackson Harper  <jackson@ximian.com>
12158
12159         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
12160         the status bar.
12161         
12162 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
12163
12164         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
12165           and GetClipRegion methods and UserClipWontExposeParent property.
12166         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
12167           overriding UserClipWontExposeParent property, setting to false, since
12168           Win32 handles the required expose messages to draw our clipped parent
12169           areas internally
12170         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
12171           PaintEventStart to set the user clip region if set.
12172         * Control.cs: 
12173           - Now internally tracking the Region for the control since we need to
12174             store it if the handle is not yet created and only set it when it
12175             becomes created. Before setting the region forced handle creation
12176           - Added code to draw the parents underneath a user-clipped region
12177         * Hwnd.cs: Added UserClip property
12178
12179 2006-05-12  Chris Toshok  <toshok@ximian.com>
12180
12181         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
12182         (set_Maximum): same.
12183         (set_Minimum): same.
12184         (set_SmallChange): same.
12185         (OnMouseUpSB): remove the call to refresh when releasing the
12186         thumb.  We shouldn't need it.
12187         
12188 2006-05-12  Miguel de Icaza  <miguel@novell.com>
12189
12190         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
12191         AutoSize set to None, we do not need to relayout everything, we
12192         just need to invalidate the current region.
12193
12194         (Draw): Do not draw the entire ClientArea, just redraw the
12195         clip area being passed.
12196
12197         * MdiClient.cs: Make MdiClient constructor with the Form argument
12198         internal. 
12199
12200 2006-05-12  Jackson Harper  <jackson@ximian.com>
12201
12202         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
12203         parents background image,  but strangely not their own.
12204         - (DrawStatusBarPanel): Take into account horizontal alignment
12205         when drawing the strings and icons.
12206
12207 2006-05-12  Mike Kestner  <mkestner@novell.com>
12208
12209         * ListBox.cs: avoid invalidations for focus when the collection is
12210         empty. 
12211
12212 2006-05-12  Chris Toshok  <toshok@ximian.com>
12213
12214         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
12215         invalidate the entire thumb area.  Call InvalidateDirty which
12216         limits the redraw to the thumb itself and surrounding pixels.
12217
12218         * XplatUIX11.cs (ScrollWindow): optimize copying.
12219         
12220 2006-05-12  Chris Toshok  <toshok@ximian.com>
12221
12222         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
12223         Figure out the positioning/layout in a single pass instead of
12224         multiple recursive invocations.  Speeds up the initial display of
12225         the data grid.  Also, make many things private that were
12226         originally public but unused outside this class.
12227
12228 2006-05-11  Jackson Harper  <jackson@ximian.com>
12229
12230         * MdiClient.cs: Improved layout code.
12231
12232 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
12233
12234         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
12235           not SelectedObject.
12236
12237 2006-05-11  Chris Toshok  <toshok@ximian.com>
12238
12239         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
12240         union of that will always be {0,0,width,height}.
12241
12242 2006-05-11  Jackson Harper  <jackson@ximian.com>
12243
12244         * Form.cs: Match MS's DefaultSize for forms (they must have
12245         changed the size in sp2).
12246
12247 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
12248
12249         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
12250
12251 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
12252
12253         * TextControl.cs : Fixed bug #78109. This incorrect position
12254           comparison caused crash on automatic line split.
12255         * TextBoxBase.cs : reduce duplicate code.
12256
12257 2006-05-10  Jackson Harper  <jackson@ximian.com>
12258
12259         * MdiClient.cs: Active form is only sent to the back when using
12260         the Next form functionality, when a form is clicked the current
12261         active shouldn't be sent to the back.
12262         - Layout the mdi windows when the container is first made visible.
12263         * Form.cs: Give the MdiClient a ref to the containing form when we
12264         create it.
12265         
12266 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
12267
12268         * LinkLabel.cs : link_font could be uninitialized, so populate one
12269           before actual use. Fixed bug #78340.
12270
12271 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
12272
12273         * XplatUIX11.cs : clipboard format native value is IntPtr.
12274           Fixed bug #78283.
12275
12276 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
12277
12278         * Control.cs: 
12279           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
12280             which is passed up the parent chain by DefWndProc
12281           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
12282             to DefWndProc (#77956)
12283         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
12284
12285 2006-05-10  Jackson Harper  <jackson@ximian.com>
12286
12287         * MdiClient.cs: We need to remove the controls from the mdi
12288         collection, when we close the window.
12289         * MdiWindowManager.cs: Special handling of closing mdi windows.
12290         * InternalWindowManager.cs: Make the close method virtual so the
12291         mdi window manager can handle it specially.
12292
12293 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
12294
12295         * DataGrid.cs:
12296           - Recalculate grid when the data source has changed
12297           - Matches styles provided by user from all data sources types
12298         * DataGridTableStyle.cs: For columns that provided by the user set the
12299         with the preferred value is there was unassigned.
12300         * CurrencyManager.cs: throw OnItemChanged event
12301
12302 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
12303
12304         * PictureBox.cs: Don't animate until handle is created. Start animation
12305           when handle is created.
12306
12307 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
12308
12309         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
12310           current codebase.
12311         * XEventQueue.cs: We don't need to provide the extra info
12312
12313 2006-05-10  Jackson Harper  <jackson@ximian.com>
12314
12315         * MdiClient.cs: If the mdi clients parent form has a background
12316         image set, we draw that background image for the mdi area's
12317         background.
12318
12319 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
12320
12321         * TextBoxBase.cs: Set IBeam cursor (#78347)
12322
12323 2006-05-10  Mike Kestner  <mkestner@novell.com>
12324
12325         * ToolBar.cs: fix some text padding issues with ButtonSize
12326         calculation. Update the default size to match MS documentation.
12327         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
12328         button size. Fixes #78296.
12329
12330 2006-05-10  Mike Kestner  <mkestner@novell.com>
12331
12332         * ListBox.cs: use is_visible for scrollbar positioning in case the
12333         control isn't on screen yet.  Fix off by one with Right vs Width
12334         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
12335         
12336 2006-05-10  Jackson Harper  <jackson@ximian.com>
12337
12338         * X11Dnd.cs: Drop to a control with another control on top of it.
12339         * ToolBar.cs: Work on a copy of the buttons list, so that it can
12340         be modified in click handlers. TODO: Look for similar problems in
12341         other controls.
12342
12343 2006-05-09  Jackson Harper  <jackson@ximian.com>
12344
12345         * Form.cs: Window managers need the old window state when setting
12346         window state now.
12347         * InternalWindowManager.cs: Allow the base mdi window manager to
12348         handle more of the MDI only stuff (like maximize buttons).
12349         * MdiWindowManager.cs: Fix some snafus in changing the window
12350         state.  Add all the menu functionality, for both popup and
12351         maximized menus.
12352         * MdiClient.cs: When a new form is selected the currently
12353         activated form is sent to the back, this matches MS.
12354         - Implement a new method to activate the next mdi child window.
12355
12356 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
12357
12358         * Control.cs: 
12359           - Added new InternalCapture method to allow controls to prevent
12360             the capture behaviour on the click handlers
12361           - Switched to use InternalCapture
12362         * ComboBox.cs:
12363           - Using InternalCapture to prevent mouse captures from being released
12364             on mouse button release (Fixes #78100)
12365         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
12366           returns Form borders if a caption is present. (Fixes #78310)
12367
12368 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
12369
12370         * TreeNode.cs: Changed serialization .ctor to not require every field
12371           to be present. (#78265)
12372         * OwnerDrawPropertyBag.cs: Added serialization .ctor
12373
12374 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
12375
12376         * MimeIcon.cs: for is faster than foreach for strings.
12377
12378 2006-05-05  Mike Kestner  <mkestner@novell.com>
12379
12380         * CheckedListBox.cs: update check handling code to not use selected.
12381         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
12382         behavior for visual feedback, motion response, shift/ctrl handling,
12383         and properly deal with all 4 selection modes. Updates to bounds
12384         handling logic.  Add scroll wheel support. [Fixes #77842]
12385
12386 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
12387
12388         * ListView.cs:
12389           - Moved adding of Implicit controls into .ctor. That way, subsequent
12390             creation of the controls will not cause them to think they are 
12391             toplevel windows (fixes #78200 header problem)
12392           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
12393           - Switched visibility setting of header control to use internal field
12394             to avoid triggering handle creation
12395           - Now checking if handle is created before causing a refresh when items
12396             are added (This makes us now match handle creation time with MS)
12397         * Splitter.cs: Removed loading of private splitter cursor, switched to
12398           Cursors version now that that is loading the right ones
12399         * Cursors.cs: Load proper splitter cursors from resources
12400         * Cursor.cs: Added second method of loading resource cursors for the 
12401           VS.Net users amongst us
12402
12403 2006-05-05  Mike Kestner  <mkestner@novell.com>
12404
12405         * ListView.cs: give header_control a minimum size based on the
12406         ListView size.
12407
12408 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
12409
12410         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
12411           window seems to do that with metacity, so set that type. (#78120)
12412
12413 2006-05-05  Mike Kestner  <mkestner@novell.com>
12414
12415         * ListViewItem.cs: fix Details mode checkbox layout bug.
12416         * ThemeWin32Classic.cs: draw a ListView column header for unused space
12417         at the end of the header, if it exists. [Fixes for #78200]
12418
12419 2006-05-04  Jackson Harper  <jackson@ximian.com>
12420
12421         * MdiClient.cs: Add a helper property to get the container form.
12422         * MdiWindowManager.cs: We have to make sure to use the menu origin
12423         when drawing the icons and buttons, this fixes maximized window
12424         icons/buttons on win32.
12425         * InternalWindowManager.cs: Reset the restore captions when a
12426         window goes from Maximized to Minimized and vice versa. Move the
12427         DrawMaximizedButtons into the MdiWindowManager source, tool
12428         windows can't be maximized. NOTE: This could use a little
12429         refactoring if time ever permits.
12430         
12431 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
12432
12433         * TextBox.cs: Add MWFCategoryAttributes
12434         * TextBoxBase.cs: Add MWFCategoryAttributes
12435         * Form.cs: Add MWFCategoryAttributes
12436
12437 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
12438
12439         * Control.cs: Add MWFCategoryAttributes
12440         * ScrollableControl.cs: Add MWFCategoryAttributes
12441
12442 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
12443
12444         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
12445           Divider is true. Fix a little glitch in PropertyToolBar
12446           drawing code
12447
12448 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
12449
12450         * Control.cs:
12451           - Dispose: Call base.Dispose, this causes the disposed event
12452             to be fired (and probably other, more important stuff)
12453           - SetVisibleCore: Set is_visible to true after creating the
12454             window so that the window still gets created invisible (if
12455             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
12456             to generate a WM_ACTIVE message
12457         * Form.cs: Call Dispose when we want to destroy the window, instead of
12458           just destroying the handle (Dispose will do that for us)
12459         * XplatUIX11.cs:
12460           - RootWindow also needs a queue, so we can properly process the
12461             property change events from RootWindow (like Activate)
12462           - Generatic synthetic WM_ACTIVE message when the active window is
12463             being destroyed
12464
12465 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
12466
12467         * LinkLabel.cs: Trigger a recalc of our label dimensions when
12468           bounds are changed
12469
12470 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
12471
12472         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
12473           for determining width and height (image might not be assigned if
12474           we're drawing an imagelist)
12475
12476 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
12477
12478         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
12479         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
12480           height from system
12481         * Theme.cs: No longer returns hardcoded menu height, instead calls
12482           new driver method
12483         * Form.cs (OnLoad): Scaling happens before triggering Load events 
12484           on MS (# 78257)
12485
12486 2006-05-01  Mike Kestner  <mkestner@novell.com>
12487
12488         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
12489
12490 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
12491
12492         * TextBoxBase.cs: Removed Fixme
12493         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
12494
12495 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
12496
12497         * XplatUIX11.cs:
12498           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
12499             the rectangle relative to the parent, considering borders. We
12500             don't really want that.
12501           - ScrollWindow: Fixed warning to be more understandable
12502         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
12503           scrollbars and scroll only the visible area
12504         * RichTextBox.cs: Removed debug output
12505
12506 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12507
12508         * NumericUpDown.cs (Text): Just use base
12509         * UpDownBase.cs: Ensure txtView is created before using it
12510
12511 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
12512
12513         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
12514           casting to IntPtr to avoid 64bit overflow errors
12515
12516 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12517
12518         * Control.cs:
12519           - AllowDrop: Don't force handle creation.
12520           - CreateHandle: Added call to tell driver if we're allowed to drop
12521
12522 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12523
12524         * FileDialog.cs: Remember the last directory not only for the
12525           current instance but also for new FileDialog instances.
12526
12527 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
12528         
12529         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
12530           broke sending async messages
12531
12532 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12533
12534         * XplatUIX11.cs:
12535           - ScrollWindow: Fixed method. We finally generate expose events again
12536             for scrolled areas. This was causing 'garbage' when scrolling
12537             textbox and other controls that used ScrollWindow
12538           - Switched from using the regular queue for paint events to the MS 
12539             model of 'generating' paint events when the queue is empty.
12540             We use the new XQueueEvent.Paint subclass to store which windows
12541             need painting.
12542           - AddExpose now takes the x/y/width/height of the exposed area
12543             and inserts the window into the paint queue if not already there
12544           - InvalidateWholeWindow: Switched to use new AddExpose method
12545           - UpdateMessageQueue: Added which queue to monitor for paint events
12546           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
12547             the unlikely case nothing above handles it. We reset the expose
12548             pending states to get them off the queue.
12549           - GetMessage: Now pulls a paint event if no other events are in the
12550             queue
12551           - Invalidate: Switched to new AddExpose method
12552           - PeekMessage: Updated to understand pending paint events
12553           - UpdateWindow: Fixed logic bug. We were only updating if the window
12554             didn't need updating. Also switched to sending WM_PAINT directly,
12555             like MS does.
12556         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
12557           and random access Remove(). The random access is needed to handle
12558           UpdateWindow() where a WM_PAINT is sent directly without accessing
12559           the queue.
12560         * ScrollBar.cs: Added Update() calls to cause immediate updates to
12561           allow for better feedback when scrolling. Scrollbars are small and
12562           the immediate update should make it 'feel' more responsive without
12563           slowing things down. ScrollBar still needs it's invaliate logic
12564           updated to not always invalidate the whole bar on certain changes.
12565
12566 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12567
12568         * Control.cs:
12569         (BackColor): if the control does not support a transparent background,
12570         return the default backcolor when the parent backcolor is transparent.
12571
12572 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
12573
12574         * Application.cs: Updated to new StartLoop/GetMessage API
12575         * RichTextBox.cs: Provide some output on RTF parsing errors
12576         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
12577           new queue_id argument to GetMessage and PeekMessage to allow faster
12578           handling of per-thread queues in drivers.
12579         * Hwnd.cs: Added Queue tracking and property
12580         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
12581         * XEventQueue.cs: Added thread trackingA
12582         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
12583         * XplatUIX11.cs:
12584           - Implemented new per-thread queue
12585           - GetMessage: Fixed return/break behaviour on several cases. We were
12586             returning stale messages in some cases, instead of just processing
12587             the next message
12588
12589 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12590
12591         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
12592
12593 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
12594
12595         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
12596           fixed off-by-one comparisons between Width/Height and Right/Bottom.
12597
12598 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12599
12600         * PropertyGridView.cs: Fix drop down width.
12601
12602 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12603
12604         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
12605           a mess in DrawToolBar, so I removed one of them.
12606
12607 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12608
12609         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
12610           needed (clip). Otherwise we get artifacts.
12611
12612 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12613
12614         * FixedSizeTextBox.cs: Added constructor to allow specifying which
12615           dimension is fixed
12616         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
12617           and switched FixedSizeTextBox to only be fixed vertical (#78116)
12618         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
12619           if it matches the scale base font (avoids unneeded scaling)
12620
12621 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12622
12623         * X11DesktopColors.cs: One gtk_init_check should be enough
12624
12625 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
12626
12627         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
12628           match MS behaviour
12629
12630 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12631
12632         * TextBoxBase.cs: 
12633           - Generate OnTextChanged for Backspace even if we're only deleting
12634             the current selection
12635           - When setting the Text property, only select all text if the
12636             control does not have focus when it is being set. Otherwise
12637             just place the cursor at the beginning of the control
12638
12639 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12640
12641         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
12642           Added a little helper to draw PropertyGrid ToolBar with a different
12643           border and a different BackColor.
12644         * PropertyGrid.cs: Some background parts didn't get painted with the
12645           correct background color. Added a class that helps us to draw the
12646           correct border for PropertyGridView and a class that helps us to
12647           draw ToolBars with a different backcolor
12648         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
12649
12650 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
12651
12652         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
12653         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
12654
12655 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12656
12657         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
12658           into the palette entries. Also, since we're working on a copy
12659           we needed to copy the palette back onto the bitmap.
12660         * Cursor.cs: Same fix as XplatUIWin32.cs.
12661
12662 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
12663
12664         * ImageListStreamer.cs: Need to read the var (or we're off)
12665
12666 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12667
12668         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
12669           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
12670           TextBoxBase.cs: Unused var fixes
12671         * AxHost.cs: Small 2.0 fix
12672         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
12673           as it seems that is what at least Metacity expects. This will make
12674           icons show up on 64bit platforms. We still have some 64bit size
12675           issues, though, since the startup app window size still won't match.
12676
12677 2006-04-25  Mike Kestner  <mkestner@novell.com>
12678
12679         * *.cs: cleanup newly reported exception var unused warnings.
12680
12681 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12682
12683         * ThemeWin32Classic.cs: Button image alignment now matches exactly
12684           ms
12685
12686 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12687
12688         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
12689           image. The image position is always the same, no matter if the
12690           button is pressed or not.
12691
12692 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12693
12694         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
12695           selection and set the correct filename for SaveFileDialog.
12696           Patch by Emery Conrad.
12697
12698 2006-04-24  Mike Kestner  <mkestner@novell.com>
12699
12700         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
12701         check for item.X outside the ClientRect instead of item.Y. Fixes
12702         #78151.
12703
12704 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12705
12706         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
12707         trust that value blindly and do some sanity check. Fixes bug #77814.
12708
12709 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12710
12711         * ImageListStreamer.cs: save the mask as a 1bpp image.
12712
12713 2006-04-21  Mike Kestner  <mkestner@novell.com>
12714
12715         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
12716         pass Checked and Indeterminate to the Theme Engine. Improve
12717         encapsulation with ListBox.
12718         * ListBox.cs: Keep a StringFormat instead of calculating it every item
12719         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
12720         nested types.  Move all CheckState functionality to CheckedListBox.
12721         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
12722         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
12723         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
12724         single base list. Fix scrollbar sizing and placement to mirror MS.
12725         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
12726         used.
12727         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
12728         for CheckedListBox by using new DrawItemState info.  Center the
12729         checkboxes on the items. Use new StringFormat property.
12730
12731 2006-04-18  Jackson Harper  <jackson@ximian.com>
12732
12733         * Form.cs: MdiChildren don't do default locations the same way as
12734         regular forms.  This prevents a crash when trying to position the
12735         mdi windows.
12736
12737 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
12738
12739         * PropertyGridTextBox.cs: Formatting, copyright
12740         * PropertiesTab.cs: Formatting
12741         * PropertyGrid.cs: Formatting
12742         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
12743           click toggling of values
12744           
12745 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
12746
12747         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
12748         * Control.cs (.ctor): verify_thread_handle is static, don't reset
12749           every time a control is created
12750         * Application.cs: Removed obsolete EnableRTLMirroring method
12751
12752 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
12753
12754         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
12755         SelectedIndex to -1. Fixes bug #78121.
12756
12757 2006-04-17  Jackson Harper  <jackson@ximian.com>
12758
12759         * Binding.cs: Handle null values for Current and BindingContext.
12760         This occurs when binding is a little delayed.
12761         * CurrencyManager.cs: return null for Current when there are no
12762         items in the list.
12763         - Hookup to the listchanged event on the DataView and update
12764         bindings when the list is changed.  This fixes late binding of
12765         controls.
12766
12767 2006-04-17  Jackson Harper  <jackson@ximian.com>
12768
12769         * X11Dnd.cs:
12770         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
12771         Ringenbach.
12772
12773 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
12774
12775         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
12776           place
12777         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
12778           with the correct ButtonState
12779
12780 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
12781
12782         * XplatUIX11.cs: Improved distinguishing between window types to
12783           tell the WM a type closer to what the app wants (Fixes #78107)
12784
12785 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12786
12787         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
12788           GrabHandle
12789
12790 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12791
12792         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
12793           drawing code to reflect the size grip changes
12794
12795 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12796
12797         * ImageListStreamer.cs: fix handling of the mask that follows the main
12798         bitmap when deserializing and serialize it properly. The generated mask
12799         should better be a 1bpp image, but I'll do that later.
12800
12801 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12802
12803         * FileDialog.cs: Show something in the DirComboBox on *nix if the
12804           path doesn't fit into some of our Current.Places
12805
12806 2006-04-13  Jackson Harper  <jackson@ximian.com>
12807
12808         * ComboBox.cs: Use borders instead of drawing our own decorations,
12809         try to obey correct rules for heights.
12810         * Theme.cs:
12811         * ThemeNice.cs:
12812         * ThemeClearLooks.cs:
12813         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
12814         this is now handled by borders.
12815         - Remove unused DrawListBoxDecorationSize method.
12816         
12817 2006-04-13  Mike Kestner  <mkestner@novell.com>
12818
12819         * MenuAPI.cs: null guarding for the disbled click check fixes crash
12820         reported by Alex.
12821
12822 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12823
12824         * ThemeWin32Classic.cs: 
12825           - Fixed CPDrawStringDisabled
12826           - Corrected drawing of disabled menu items
12827           - Fixed drawing of disabled radio buttons (bug #78095)
12828           - Draw check in a disabled CheckBox with color ControlDark 
12829
12830 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12831
12832         * Form.cs: Use the provided width when calculating the menu size;
12833           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
12834           and ClientSize.Width won't be updated yet
12835         * Application.cs: Use Visible instead of Show() to make form visible,
12836           this way we create the handle later and menusize is considered
12837
12838 2006-04-12  Mike Kestner  <mkestner@novell.com>
12839
12840         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
12841         reporting.
12842
12843 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12844
12845         * TextBox.cs: Implemented context menu
12846
12847 2006-04-12  Mike Kestner  <mkestner@novell.com>
12848
12849         * ListView.cs: implement box selection. fixes #77838.
12850         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
12851
12852 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12853
12854         * XplatUIX11.cs: Added setting of window type when transient window
12855           is created (metacity would move it otherwise)
12856         * X11Structs.cs: Added WINDOW_TYPE atoms
12857         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
12858           background (the control is Opaque but still wants transparent
12859           backgrounds)
12860
12861 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12862
12863         * Control.cs: Added OnPaintBackgroundInternal to allow controls
12864           that set Opaque but don't mean it (like all ButtonBase-derived
12865           controls) to still draw their background
12866         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
12867           the background
12868
12869 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12870
12871         * Control.cs (PaintControlBackground): Set the graphics object
12872           on our PaintEvent to null to prevent it from being disposed
12873           when the PaintEvent gets disposed
12874
12875 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
12876
12877         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
12878         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
12879
12880 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12881
12882         * Control.cs: 
12883           - Added transparency check to BackColor property. Transparent
12884             backgrounds are only allowed if the control styles permit it
12885           - Added recursive painting of parent control background and
12886             foreground if a control with a transparent backcolor is drawn
12887             (Thanks to Tim Ringenback for providing his 'hack' as a base
12888              for this patch) Fixes #77985 and #78026.
12889           - Added Opaque style check before calling OnPaintBackground, no
12890             need to draw the background if the control is opaque
12891           - Removed ControlAccessibleObject owner variable (inherited from
12892             base, no need to define again)
12893           - Added some documentation links explaining the drawing events
12894             and styles
12895
12896 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12897
12898         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
12899           that the affected control is the located at the left border of our
12900           parent (Fixes #77936)
12901
12902 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12903
12904         * TextBoxBase.cs: When rendering disabled or readonly controls,
12905           draw the background with 'Control' instead of 'Window' color as
12906           long as the user hasn't specifically set a color
12907
12908 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12909
12910         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
12911           since that won't be updated if the user types text (only if it's
12912           programatically set)
12913
12914 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12915
12916         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
12917           layout changes do to app-triggered resizes will have the proper
12918           display rectangle for layout
12919
12920 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
12921
12922         * ThemeWin32Classic.cs:
12923           - Make use of the SystemBrushes and SystemPens wherever possible
12924           - Corrected some highlight colors
12925           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
12926             drawing
12927         * Theme.cs: Added Empty field to CPColor struct
12928
12929 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12930
12931         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
12932           is displayed when calculating the display rectangle. Thanks to Mike
12933           for teaching me the err of my ways.
12934
12935 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
12936
12937         * ScrollableControl.cs:
12938           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
12939             (instead of 0,0) and we now return the real width/height instead of
12940             just the clientrectangle, adjusted for padding. The rectangle is
12941             now cached and created by the new CalculateDisplayRectangle method.
12942           - Created new CalculateDisplayRectange method, which basically does
12943             what get_DisplayRectangle() did originally, but now using the 
12944             right edge instead of DisplayRectangle to determine the size of
12945             our scrollbars
12946           - get_Canvas(): Fixed it to properly calculate canvas for 
12947             right/bottom controls which seem to be placed to the right/bottom
12948             of any controls that have a fixed location
12949           - Removed TODO that's taken care of
12950           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
12951             and SetDisplayRectLocation according to new MSDN2 docs
12952           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
12953             event when that is called, this is added for compatibility
12954           - ScrollControlIntoView(): Implemented.
12955           - Switched scrollbars to be implicit, they shouldn't be selectable
12956         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
12957           call it when the active control is set/changed
12958         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
12959         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
12960           implicit_control variable (used for native Win32 message generation)
12961         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
12962           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
12963         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
12964         * XplatUIStructs.cs: Added ScrollBarCommands enum
12965
12966 2006-04-10  Jackson Harper  <jackson@ximian.com>
12967
12968         * ButtonBase.cs:
12969         * CheckedListBox.cs:
12970         * ComboBox.cs:
12971         * DataGrid.cs:
12972         * DataGridView.cs:
12973         * Form.cs:
12974         * GroupBox.cs:
12975         * ListBox.cs:
12976         * PrintPreviewControl.cs:
12977         * ProgressBar.cs:
12978         * PropertyGrid.cs:
12979         * Splitter.cs:
12980         * StatusBar.cs:
12981         * TrackBar.cs:
12982         * UpDownBase.cs: Fixup base event overrides.
12983         
12984 2006-04-06  Mike Kestner  <mkestner@novell.com>
12985
12986         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
12987         all user-initiated value changes to min <= value <= max-thumbsz+1.
12988         (set_Value): check for vert/horiz when calculating new thumb position.
12989         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
12990         like MS does.
12991         (OnMouseMoveSB): refactor the thumb dragging code and refine
12992         invalidation logic to reduce flicker.
12993         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
12994         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
12995         (UpdateThumbPosition): small code readability cleanup
12996
12997 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
12998
12999         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
13000           different
13001
13002 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13003
13004         * ThemeNice.cs: Use a better graphics effect when a button is pressed
13005
13006 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
13007
13008         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
13009         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
13010           This dramatically reduces the number of Pen.Dispose calls. 
13011           Where possible call ResPool methods only once instead of calling it
13012           over and over again (for example for the same color).
13013
13014 2006-04-06  Mike Kestner  <mkestner@novell.com>
13015
13016         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
13017         Also remove an unused private field on the collection. Fixes #77972.
13018
13019 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13020
13021         * ThemeNice.cs: Added ToolBar drawing code
13022
13023 2006-04-06  Mike Kestner  <mkestner@novell.com>
13024
13025         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
13026         I'm assuming that means we need to look up the toplevel for the
13027         provided control. Fixes the crash trace in #77911 but exposes another
13028         crash in some strange reflection usage in NDocGui.
13029
13030 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
13031
13032         * ThemeNice.cs: Gave it a little silver touch and added Images
13033           method
13034         * FontDialog.cs: FontDialog is not resizable
13035         * FileDialg.cs: Added SizeGripStyle.Show
13036
13037 2006-04-05  Jackson Harper  <jackson@ximian.com>
13038
13039         * KeyboardLayouts.cs: Remove warning.
13040
13041 2006-04-05  Jackson Harper  <jackson@ximian.com>
13042
13043         * Control.cs: Enable OnPaintInternal so we can use it for drawing
13044         all of our controls instead of Paint +=.
13045         * ListBox.cs:
13046         * ListView.cs:
13047         * MenuAPI.cs:
13048         * MessageBox.cs:
13049         * NotifyIcon.cs:
13050         * ProgressBar.cs:
13051         * ScrollBar.cs:
13052         * Splitter.cs:
13053         * StatusBar.cs:
13054         * TabControl.cs:
13055         * TextBoxBase.cs:
13056         * ToolBar.cs:
13057         * TrackBar.cs:
13058         * UpDownBase.cs:
13059         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
13060         use OnPaintInternal. Remove Width/Height and Visible checks in
13061         paint handler, this is done at a higher level now.
13062         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
13063         * PaintEventArgs.cs: Add a handled flag so controls that don't
13064         want anymore painting after OnPaintInternal can make sure OnPaint
13065         isn't called.
13066
13067 2006-04-05  Mike Kestner  <mkestner@novell.com>
13068
13069         * Form.cs: fix the menu WndProc hacks to respect the native enabled
13070         state of the form, so that we don't process events when Modal dialogs
13071         are up. Fixes #77922.
13072
13073 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
13074
13075         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
13076           checking is done.
13077
13078 2006-04-05  Mike Kestner  <mkestner@novell.com>
13079
13080         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
13081
13082 2006-04-05  Mike Kestner  <mkestner@novell.com>
13083
13084         * ListView.cs (HeaderMouseMove): null guarding for the over column
13085         when setting up the drag_to_index.  Fixes #78015.
13086
13087 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
13088
13089         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
13090           in the taskbar. Transient windows seem to accomplish that.
13091
13092 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
13093
13094         * Form.cs:
13095           - Re-enabled CreateParams.X/Y code for FormStartPosition
13096           - Added code for manual placement when creating the Control
13097           - Incomplete patch to treat MDI forms differently when
13098             setting the ClientSizeCore. (Still need to figure out handling
13099             x/y coords there)
13100         * XplatUIX11.cs:
13101           - When we're explicitly setting the X/Y position of a non-Child
13102             window, let the WM know. Metacity really wants this.
13103
13104 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13105
13106         * ThemeNice.cs: Added CPDrawButton
13107
13108 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13109
13110         * ThemeNice.cs: Changed the color for focused buttons and activated
13111           the arrows for small scroll buttons.
13112
13113 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
13114
13115         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
13116           anymore. Changed some method modifiers to protected (virtual)
13117         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
13118           changes
13119         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
13120           Updated drawing of menus, buttons and progressbars; added
13121           CPDrawBorder3D 
13122
13123 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13124
13125         * ImageListStreamer.cs: implemented serialization/deserialization
13126         of the images.
13127
13128 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
13129
13130         * ThemeWin32Classic.cs:
13131           - Removed all the DrawFrameControl stuff; CPDrawButton,
13132             CPDrawCheckBox and CPDrawRadioButton are now handled directly
13133             inside the methods
13134           - Updated and corrected the drawing code of CPDrawButton,
13135             CPDrawCheckBox and CPDrawRadioButton to better match ms
13136           - Updated theme checkbox and radiobutton code to use the CP*
13137             methods
13138
13139 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
13140
13141         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
13142           bug is fixed
13143
13144 2006-03-31  Jackson Harper  <jackson@ximian.com>
13145
13146         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
13147         sometimes.
13148         * UpDownBase.cs: Don't CreateGraphics manually, use a
13149         Refresh. Ideally we would invalidate the correct areas here.
13150
13151 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
13152
13153         * XplatUIX11.cs: 
13154           - We now track the mapping state of windows. If a window (or 
13155             one of it's parents) is not mapped we no longer permit
13156             WM_PAINT messages to be generated since we'd otherwise get 
13157             lots of BadMatch X errors. Jackson did all the work figuring
13158             out the problem.
13159           - Destroying the caret if the window it's contained in is 
13160             destroyed. Can't use regular DestroyCaret method since it
13161             might fall into a drawing function (trying to remove the
13162             caret) and with that generate new BadMatch errors. Again,
13163             Jackson tracked this down.
13164           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
13165             make sure we send the messages to all windows. (The old code
13166             would send the WM_DESTROY to the window, and then all child
13167             windows would be 'gone' because the WM_DESTROY handle lookup
13168             would no longer find the destroyed window)
13169         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
13170         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
13171
13172 2006-03-31  Jackson Harper  <jackson@ximian.com>
13173
13174         * ScrollableControl.cs: Dont recalc if we are not visible.
13175
13176 2006-03-31  Mike Kestner  <mkestner@novell.com>
13177
13178         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
13179         the visibility branch.
13180
13181 2006-03-31  Jackson Harper  <jackson@ximian.com>
13182
13183         * ScrollBar.cs: Cap values when incrementing/decrementing.
13184
13185 2006-03-31  Mike Kestner  <mkestner@novell.com>
13186
13187         * MenuAPI.cs: setup menu.tracker for popup/context menus.
13188         * ToolTip.cs: guard against timer expirations with no active control.
13189         Not sure why it happened.
13190
13191 2006-03-31  Mike Kestner  <mkestner@novell.com>
13192
13193         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
13194         text.
13195         * ToolTip.cs: Position the tooltip based on where the cursor is at
13196         popup time, not at MouseEnter time.  Add a Down state so that we don't
13197         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
13198         positioning offset. Lookup DisplaySize at positioning time, since it
13199         can theoretically change during invocation.
13200         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
13201         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
13202
13203 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
13204
13205         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
13206           Fixes behaviour when the Text property of the box is String.Empty
13207
13208 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
13209
13210         * XplatUIX11.cs: Only send mouseleave for our client windows, not
13211           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
13212           a window)
13213
13214 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
13215
13216         * FileDialog.cs: Visual enhancement for the popup buttons in 
13217           PopupButtonPanel
13218
13219 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
13220
13221         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
13222           code
13223
13224 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
13225
13226         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
13227           highlighted menu items to match ms
13228
13229 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
13230
13231         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
13232
13233 2006-03-30  Mike Kestner  <mkestner@novell.com>
13234
13235         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
13236         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
13237         go active to account for HotLight to Selected transition.
13238         * MenuItem.cs: add internal Selected prop. Fill out the Status
13239         property by calculating it from item info. Add HotLight,
13240         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
13241
13242 2006-03-30  Mike Kestner  <mkestner@novell.com>
13243
13244         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
13245
13246 2006-03-29  Jackson Harper  <jackson@ximian.com>
13247
13248         * Form.cs: Implement TODO.
13249
13250 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
13251
13252         * PrintPreviewDialog.cs: Implemented missing methods and events; still
13253           missing proper dialog setup in the constructor
13254
13255 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
13256
13257         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
13258         * Control.cs:
13259           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
13260           - Fixed ResetBindings and removed TODO
13261           - Added check for cross-thread calls to get_Handle()
13262           - Added Marshaller attribute for set_Font to satisfy class status
13263         * FontDialog.cs: Removed TODOs that seemed implemented
13264         * UpDownBase.cs: Removed unneeded TODO and Fixme
13265         * MessageBox.cs: Implemented support for Default button and removed TODO
13266         * FileDialog.cs: Removed obsolete TODO
13267         * DomainUpDown.cs: Removed obsolete TODO
13268         * ButtonBase.cs: Removed obsolete TODO
13269         * XplatUIWin32.cs: Removed obsolete TODO
13270         * Form.cs:
13271           - Removed obsolete TODO
13272           - Calling CheckAcceptButton when the acceptbutton is changed to allow
13273             internal status updates
13274           - Making sure the active control is selected when the control is created
13275         * CurrencyManager.cs: Removed obsolete TODO
13276
13277 2006-03-29  Mike Kestner  <mkestner@novell.com>
13278
13279         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
13280         of PrintPreviewDialog and RichTextBox.
13281
13282 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
13283
13284         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
13285           DarkDark, Light and LightLight colors for a specific color
13286         * ThemeWin32Classic.cs:
13287           - Use Button drawing code to draw RadioButtons and CheckBoxes with
13288             Appearance = Button 
13289           - Make use of the new ResPool helper CPColor
13290           - Draw ProgressBar and StatusBar with correct 3D borders
13291
13292 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
13293
13294         * ColorDialog.cs: Return selected color. Fixes bug #77940.
13295
13296 2006-03-28  Mike Kestner  <mkestner@novell.com>
13297
13298         * ListView.cs: fix Icon layout to plan for scrollbar widths when
13299         calculating col/row counts.
13300
13301 2006-03-28  Mike Kestner  <mkestner@novell.com>
13302
13303         * ColumnHeader.cs:
13304         * ListView.cs:
13305         * ListViewItem.cs:
13306         * Menu.cs: 
13307         switch to explicit interface method implementation for some methods
13308         corcompare identifies as inconsistent with MS.
13309
13310 2006-03-28  Mike Kestner  <mkestner@novell.com>
13311
13312         * MainMenu.cs: 
13313         * Menu.cs:
13314         add a few missing methods from the class status output.
13315
13316 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
13317
13318         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
13319           correct.
13320
13321 2006-03-28  Mike Kestner  <mkestner@novell.com>
13322
13323         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
13324
13325 2006-03-27  Mike Kestner  <mkestner@novell.com>
13326
13327         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
13328         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
13329
13330 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
13331
13332         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
13333
13334 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13335
13336         * ThemeWin32Classic.cs:
13337           - GroupBox: Inserted a little gap between the text and the lines
13338             on the right side
13339           - Made the code in CPDrawBorder3D more readable
13340           - Corrected the drawing location of the up and down arrows in 
13341             CPDrawScrollButton
13342
13343 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13344
13345         * ControlPaint.cs: Corrected line widths in DrawBorder for
13346           ButtonBorderStyle Inset and Outset
13347
13348 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13349
13350         * ThemeWin32Classic.cs:
13351           - Rewrote the totally broken CPDrawBorder3D method. That was
13352             one of the main problems for the terrific ThemeWin32Classic
13353             look
13354           - Updated and corrected Button drawing
13355           - Correct the dimensions of the SizeGrip to match ms ones
13356           - Removed a small drawing glitch in DrawComboBoxEditDecorations
13357         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
13358           Border3DStyle.Sunken to match ms.
13359
13360 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13361
13362         * ThemeWin32Classic.cs: First small part of the "de-uglify
13363           ThemeWin32Classic" effort, SizeGrip
13364
13365 2006-03-24  Jackson Harper  <jackson@ximian.com>
13366
13367         * XplatUIX11.cs: Give a max idle time of one second, this matches
13368         MS and forces an Idle event every second when there are no other
13369         events in the queue.
13370
13371 2006-03-24  Mike Kestner  <mkestner@novell.com>
13372
13373         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
13374         * ListView.Item.cs: fix layout issues with null image lists and images
13375         smaller than checkbox size.
13376         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
13377         mode like MS does.  It's weird, but consistent.  ;-)
13378         Fixes #77890.
13379
13380 2006-03-24  Mike Kestner  <mkestner@novell.com>
13381
13382         * ListView.cs: Scroll wheel support for the item control.  Fixes
13383         #77839.
13384
13385 2006-03-23  Jackson Harper  <jackson@ximian.com>
13386
13387         * ScrollableControl.cs: Special case negative sized areas, not
13388         zero.
13389         * MonthCalendar.cs: Save the rect of the clicked date so we can
13390         use it for invalidation.
13391         - Try to cut down on the number of invalidates
13392         - Invalidate the rect the mouse is over and was over when moving
13393         the mouse, so we get the focus box following the cursor.
13394
13395 2006-03-23  Mike Kestner  <mkestner@novell.com>
13396
13397         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
13398         focus rectangle drawing. Fixes #77835.
13399
13400 2006-03-23  Mike Kestner  <mkestner@novell.com>
13401
13402         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
13403         the if and else if and reverting back to the original == check on the
13404         None conditional.
13405
13406 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
13407
13408         * FontDialog.cs: Update the example panel if the selected index of
13409           the fontListBox changes.
13410
13411 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
13412
13413         * FileDialog.cs: Make FileDialog remember which directory it was in
13414           last in the same execution.
13415
13416 2006-03-22  Mike Kestner  <mkestner@novell.com>
13417
13418         * FileDialog.cs: make the DropDownMenu on the toolbar display
13419         RadioChecks since they are mutually exclusive and that's what MS does.
13420
13421 2006-03-22  Mike Kestner  <mkestner@novell.com>
13422
13423         * Theme.cs: add Color param to CPDrawMenuGlyph.
13424         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
13425         checks and radio marks and arrows are visible on highlighted items.
13426         * ControlPaint.cs: update to use new Theme signature.
13427
13428 2006-03-22  Mike Kestner  <mkestner@novell.com>
13429
13430         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
13431         is active. Fixes #77870.
13432
13433 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
13434
13435         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
13436           to be focused/selected after startup
13437
13438 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
13439
13440         * ColorDialog.cs: 
13441           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
13442             CustomColors and ShowHelp properties
13443           - Some internal rewrites to get better results when using the
13444             ColorMatrix
13445
13446 2006-03-22  Mike Kestner  <mkestner@novell.com>
13447
13448         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
13449         HoverSelection.  Fixes #77836.
13450
13451 2006-03-22  Mike Kestner  <mkestner@novell.com>
13452
13453         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
13454         ToggleButtons.  (De)Sensitize the Back button around a stack count of
13455         1, not 0.  Update ButtonSize based on a pixel count of the win32
13456         control.  Adjust the toolbar size/location for new button size.
13457
13458 2006-03-22  Jackson Harper  <jackson@ximian.com>
13459
13460         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
13461         true.
13462         * ScrollBar.cs: When doing increments and decrements we need to
13463         set the Value property so that ValueChanged gets raised. A
13464         possible optimization here would be to make an internal SetValue
13465         that doesn't invalidate immediately.
13466         * ToolTip.cs: Tooltips get added to their container (when
13467         supplied) so they get disposed when the container is disposed.
13468         - Don't create tooltips for String.Empty. This prevents all these
13469         little 2-3 pixel windows from showing up when running nunit-gui
13470         and driving me mad.
13471         * Form.cs: Don't set topmost when setting the owner if the handles
13472         haven't been created yet.  The topmost set will happen when the
13473         handles are created.
13474
13475 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
13476
13477         * XplatUIX11.cs:
13478           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
13479           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
13480             visible (to allow them to recalculate their sizes)
13481
13482 2006-03-21  Mike Kestner  <mkestner@novell.com>
13483
13484         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
13485         methods. Removed a ton of redundant code.  Still not really happy with
13486         the border rendering, but I think that's mainly because of the
13487         ControlDarkDark being black instead of a dark grey. Depending on how 
13488         close we want to be, we might want to revisit those color choices.
13489         Among the new features added during the refactor were DropDownArrow
13490         pressed rendering, Disabled image rendering.  Proper flat appearance
13491         boundary rendering.  Removed the Divider and Wrapping dividers since I
13492         can't figure out any combination of themes and conditions to make the
13493         MS control draw a horizontal line on a toolbar despite what the
13494         Divider property docs indicate.
13495         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
13496         conditions and incorrect layout.  Updated to coding standard.
13497         * ToolBarButton.cs: refactored layout and positioning code from
13498         ToolBar to here.  Invalidate wherever possible instead of forcing
13499         redraws of the whole toolbar. 
13500         (Known remaining issues: explicit ButtonSize smaller than provided
13501         images.)
13502
13503 2006-03-21  Mike Kestner  <mkestner@novell.com>
13504
13505         * ContextMenu.cs (Show): use the position parameter instead of just
13506         showing at the MousePosition.
13507
13508 2006-03-21  Jackson Harper  <jackson@ximian.com>
13509
13510         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
13511         control handle this.
13512         * TreeNodeCollection.cs: If we are clearing the root node we need
13513         to reset top_node so calcs can still happen.
13514         * ThemeWin32Classic.cs: This is a Flags so we need to check
13515         properly.
13516         
13517 2006-03-21  Jackson Harper  <jackson@ximian.com>
13518
13519         * DataGrid.cs: Create columns when the binding context has been
13520         changed.
13521         * X11Structs.cs: Keysyms are uints.
13522         - Add size to fix build.
13523
13524 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
13525
13526         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
13527           XplatUIOSX.cs: 
13528           - Added ResetMouseHover method to allow controls to retrigger
13529             hovering if they need it more than once
13530           - Implemented MouseHoverTime and MouseHoverSize properties
13531         * Timer.cs: Start() must reset the interval
13532         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
13533           properties
13534
13535 2006-03-21  Jackson Harper  <jackson@ximian.com>
13536
13537         * X11Keyboard.cs: improved layout detection. Move the nonchar
13538         tables into this file.
13539         * KeyboardLayouts.cs: Move the tables into resource files.
13540
13541 2006-03-21  Mike Kestner  <mkestner@novell.com>
13542
13543         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
13544
13545 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
13546
13547         * Mime.cs: Various speed optimizations. Looking up mime types
13548           is now 2 times faster than before
13549
13550 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
13551
13552         * CreateParams.cs: Added internal menu field
13553         * Control.cs: 
13554           - Switched call order for UpdateBounds; now we always call
13555             the one that also takes ClientSize, and we're calculating the 
13556             client size via driver method in the others. The previous
13557             method of tracking client size by difference wasn't working
13558             for forms where even the starting client size wouldn't match
13559             the overall form size (due to borders) (Part of fix for #77729)
13560           - CreateParams(): Do not use parent.Handle unless the handle is
13561             already created. Causes havoc with Nexxia and throws off our
13562             creation of controls
13563         * XplatUIX11.cs:
13564           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
13565           - Switched handling of ConfigureNotify over to new PerformNCCalc 
13566             method (consolidates code)
13567           - Changed RequestNCRecalc to use new PerformNCCalc method
13568           - Added calls to RequestNCRecalc when menus and borders are changed
13569             to allow app to set NC size. (Part of fix for #77729) This matches
13570             when MS send a WM_NCRECALC on Win32 windows.
13571           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
13572             (Part of fix for #77729). This matches what MS does, they also
13573             send that message when the form is made visible.
13574           - XException.GetMessage: Improved usability of X errors by including
13575             a translation of the window into Hwnd and Control class
13576           - Improved debug info for window creation, reparenting and destruction
13577           - Created helper method WindowIsMapped() [Currently not used]
13578         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
13579         * Form.cs:
13580           - CreateParams: Now setting our menu on the new internal menu field
13581           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
13582             avoid calculating the same property twice
13583         * Hwnd.cs:
13584           - Improved usability of ToString() for debugging purposes
13585           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
13586             determine the height of the menu, instead of just the font. This
13587             required to also create a graphics context and to keep a bmp 
13588             around (for performance reasons)
13589
13590 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
13591
13592         * MenuAPI.cs: Added OnMouseUp method
13593         * Form.cs:
13594           - Now remembering the requested client size, avoids size errors
13595           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
13596             instead of base if the menu is active. This is required due to
13597             control now capturing and releasing on down/up and it would
13598             prematurely release our menu capture
13599
13600 2006-03-17  Jackson Harper  <jackson@ximian.com>
13601
13602         * KeyboardLayouts.cs: Add the czech layouts.
13603
13604 2006-03-16  Jackson Harper  <jackson@ximian.com>
13605
13606         * Control.cs: Use the viewport space when sizing not the controls
13607         client size, so things like ScrollableControl that effect the
13608         viewport size (when scrollbars are added) are computed correctly.
13609         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
13610         of ManagerEntrys.
13611         - Handle creating BindingManagers for null data sources.
13612         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
13613         source, otherwise when rows are added they are added to the 'fake'
13614         datasource and we will crash when trying to set the position in
13615         those rows.
13616         - Use Implicit scrollbars on the datagrid so they arent
13617         selectable.
13618         
13619 2006-03-16  Jackson Harper  <jackson@ximian.com>
13620
13621         * Binding.cs:
13622         * InternalWindowManager.cs:
13623         * MdiWindowManager.cs:
13624         * X11Keyboard.cs: I really want Mike to love me again (fix
13625         compiler warnings).
13626
13627 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
13628
13629         * DataGrid.cs:
13630           - OnMouseDown: Switch to editing mode when clicking on the cell
13631                          even if we're clicking on the cell that's currently 
13632                          selected
13633           - ProcessGridKey: Left/Right now wrap like MS.Net does
13634           - ProcessGridKey: Tab now knows to add a new row when tab is
13635                             pressed in the cell of the last column of the 
13636                             last row
13637           - ProcessGridKey: Enter now adds another row  if pressed in the last
13638                             row and selectes the new row, same column cell
13639           - ProcessGridKey: Home/End navigate columns, not rows, like 
13640                             originally implemented
13641           - Broke ProcessKeyPreview code out into an extra Internal method
13642             so it can be called from the edit code
13643         * DataGridTextBox.cs (ProcessKeyMessage):
13644           - Switched to accept Tab keypresses
13645           - Added F2 handling to allow jumping to the end of the edited cell
13646           - Added logic to allow moving caret left/right inside edited cell
13647             and making the edited cell jump when the caret hits cell borders
13648           - Tab and Enter are now passed to the datagrid after being handled
13649         * TextBoxBase.cs:
13650           - Removed capture code now that Control handles it
13651           - set_SelectionStart now ensures caret is visible
13652
13653 2006-03-16  Jackson Harper  <jackson@ximian.com>
13654
13655         * TrackBar.cs: Debackwards the increment/decrement for handling
13656         mouse clicks on the bar with vertical trackbars.
13657         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
13658         bottom to match MS.
13659
13660 2006-03-16  Mike Kestner  <mkestner@novell.com>
13661
13662         * ListView.cs: make shift/ctrl keyboard and mouse selection 
13663         consistent with the MS control. Fix a bug in
13664         SelectedListViewItemCollection.Clear that was pissing me off for the
13665         better part of a day because the collection was being altered
13666         underneath us as we walked the list.
13667
13668 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
13669
13670         * Control.cs: Not sure how we could miss this so long, but it seems
13671           that MS.Net has Capture set all the way from before calling 
13672           OnMouseDown through sending the mouse events until after
13673           OnMouseUp. This will fix DataGrid's selection being set to end
13674           at the location of the MouseUp.
13675
13676 2006-03-15  Jackson Harper  <jackson@ximian.com>
13677
13678         * BindingContext.cs: Check the binding after its added so that it
13679           can initialize the binding managers and hookup to events.
13680         * Binding.cs: Data members seem to sometimes include rows/cols in
13681           the format Row.Column we now take this into account.
13682           - Hookup to the position changed event so we can update the
13683           control when the position has changed in the data set.
13684         * CurrencyManager.cs: Take into account the row/col naming
13685           convention when creating dataset tables.
13686         * BindingContext.cs: Using a newer better way of storing
13687           datasource/datamember pairs.  Hopefully this better matches MS for
13688           looking up binding managers.
13689
13690
13691 2006-03-15  Jackson Harper  <jackson@ximian.com>
13692
13693         * BindingContext.cs: The currency manager needs the data member
13694         name, if the member is a data set we use the name to find the
13695         correct table.
13696         * CurrencyManager.cs: When creating the list prefer an IList over
13697         an IListSource.
13698         - Attempt to create a DataTable from a DataSet (TODO: might need
13699         some better error checking here, although MS doesn't seem to have much)
13700         - If we have a DataTable create a view and use it as our list.
13701
13702 2006-03-15  Mike Kestner  <mkestner@novell.com>
13703
13704         * ListView.cs: keep a matrix of the icon mode layout to facilitate
13705         keyboard navigation. Support Up/Down/Left/Right selection correctly
13706         for all 4 View modes.
13707         * ListViewItem.cs: add internal row/col fields for icon layouts.
13708
13709 2006-03-15  Jackson Harper  <jackson@ximian.com>
13710
13711         * TabControl.cs: Redraw the tabs when we resize so their newly
13712         calculated sizes are drawn on screen.
13713         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
13714         composite characters.
13715         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
13716         - filter events so that composite characters can be created
13717         patches by peter
13718         * X11Structs.cs: Add XIMProperties enum.
13719
13720 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13721
13722         * Control.cs (BringToFront, SendToBack): Don't use window or handle
13723           unless it's created
13724
13725 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13726
13727         * Control.cs (PerformLayout): We don't need to consider visiblity
13728           for anchoring, only for docking. This fixes 'whacky' alignment
13729           in listbox and other controls that use implicit scrollbars after
13730           the previous PerformLayout patch
13731         * ListBox.cs: Switched to use implicit scrollbars
13732           
13733 2006-03-14  Mike Kestner  <mkestner@novell.com>
13734
13735         * ToolBar.cs: 
13736         * VScrollBar.cs:
13737         - chain up the "new event" overrides to base and use
13738         OnEvent to raise them.  Part of fix for bug #76509.
13739
13740 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
13741
13742         * FileDialog.cs: Do not select an item in the parent directory
13743           on backspace
13744
13745 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13746
13747         * Control.cs (PerformLayout): It would seem that we considered
13748           invisible windows for our layout. Not quite the right thing
13749           to do. Now we don't any longer, thereby fixing bug #76889.
13750
13751 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13752
13753         * Control.cs (CanFocus): I goofed. A control can have focus 
13754           even though it's not selectable. Made it match MS docs.
13755
13756 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13757
13758         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
13759           center by default (fixes #76895)
13760         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
13761           all uses of Border3DSides.All with the explicit ORd together
13762           Left|Right|Top|Bottom because I assume that nobody was aware 
13763           that All also implies a center fill. Most places I checked had
13764           a fill right above.
13765         * ProgressBarStyle.cs: Added
13766
13767 2006-03-13  Mike Kestner  <mkestner@novell.com>
13768
13769         * ListView.cs: fix breakage in drag shadow header positioning 
13770         from Peter's csc compilation fix.
13771
13772 2006-03-13  Mike Kestner  <mkestner@novell.com>
13773
13774         * ListView.cs: fix NRE produced by backspacing twice in a focused
13775         FileDialog.
13776
13777 2006-03-13  Mike Kestner  <mkestner@novell.com>
13778
13779         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
13780
13781 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13782
13783         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
13784           be changed
13785         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
13786           the allowed size before making programmatic size changes
13787
13788 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
13789
13790         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
13791           set, metacity is broken and will still use the emty sizes in 
13792           the struct. (Fix for #77089)
13793
13794 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13795
13796         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
13797           WindowExStyles and marked both enums as Flags
13798         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
13799           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
13800           to match WindowStyles split
13801         * XplatUIX11.cs:
13802           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
13803           - Updated to match WindowStyles split
13804         * XplatUIWin32.cs:
13805           - Fixed FosterParent creation, was using ExStyle on the Style field
13806             (This should help with Popup focus issues)
13807           - Updated to match WindowStyles split
13808
13809 2006-03-13  Jackson Harper  <jackson@ximian.com>
13810
13811         * MdiWindowManager.cs: Use the system menu height. Fixes some
13812         strange sizing issues.
13813
13814 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13815
13816         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
13817         * TextBoxBase.cs:
13818           - Scroll to caret after inserting text (#77672)
13819           - Make scroll range one pixel higher, fixes off-by-one error (and
13820             makes underlines visible on the last line)
13821
13822 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
13823
13824         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
13825           the keyboard state from being stuck with keys in 'pressed' state when
13826           focus is switched away via keyboard
13827         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
13828           reset the keyboard if no X11 KeyUp events are expected to come
13829         * X11Structs.cs: Switched type of Visible to bool to match driver
13830
13831 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13832
13833         * TextControl.cs:
13834           - Switched caret to be just 1 pixel wide, matches MS and looks less
13835             clunky
13836           - Moved caret display 1 pixel down from the top of the control
13837             to improve view
13838           - InsertCharAtCharet: Update the selection start if moving the caret
13839             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
13840           - No longer always creating the caret when the caret methods are
13841             called. Only the actual ShowCaret/HideCaret will do that now
13842           - Only setting caret visible if the owner control has focus
13843           - UpdateView: Added invalidation-shortcut logic for center and right 
13844             aligned text. Previously we'd update all according to the left
13845             logic which caused drawing errors. Also fixed height of invalidated
13846             areas, now properly invalidating the whole area (was off-by-one)
13847           - owner_HandleCreated: Always generate the document when the
13848             handle is created; this ensures that 
13849         * TextBoxBase.cs:
13850           - Fixed situation where caret would disappear under the right
13851             window border, also improved scrolling behaviour on left-
13852             aligned textboxes
13853           - Fixed right-aligned textboxes to have a border to the
13854             right instead of the caret being under the right border
13855         * XplatUIX11.cs:
13856           - Switched from 'nested' to simple visible/not visible tracking 
13857             for caret (part of fix for #77671)
13858           - No longer passing through translated FocusIn/FocusOut messages
13859             since we were notifying too often and the wrong windows. Instead
13860             we just notify our focussed window of receiving or loosing focus
13861         * XplatUIWin32.cs: Switched from 'nested' show/hide 
13862           counting for caret to simple visible yes/no behaviour (part of 
13863           fix for #77671)
13864
13865 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13866
13867         * Mime.cs: Remove debug code...
13868
13869 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13870
13871         * MimeGenerated.cs: Removed
13872         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
13873           and subclasses) from /usr/(local/)share/mime and
13874           $HOME/.local/share/mime.
13875
13876 2006-03-10  Jackson Harper  <jackson@ximian.com>
13877
13878         * MdiWindowManager.cs: Recalc the NC area when a window is
13879         maximized/restored so that the menu area is drawn on forms that
13880         don't have a menu.
13881
13882 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13883
13884         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13885           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
13886           us to force a WM_NCCALCRESIZE message being sent. This is needed
13887           for MDI maximizing.
13888
13889 2006-03-10  Jackson Harper  <jackson@ximian.com>
13890
13891         * Form.cs: We need to use the ActiveMenu when calculating menu
13892         height.
13893         - Fix nullref when the window manager hasn't been created yet.
13894         * Control.cs: Fix nullref when we try to bring a control to the
13895         front that has no parent.
13896         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
13897         height.
13898         - Add a dummy item to the maximized menu so it always has the
13899         correct height. Otherwise when there are no menus we don't get our
13900         icon and buttons.
13901         
13902
13903 2006-03-10  Jackson Harper  <jackson@ximian.com>
13904
13905         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
13906         stuff.
13907         * Form.cs: Make the window_state internal so the window managers
13908         can track it.
13909         - When an MDI child is maximized let its window manager create the
13910         main menu (so it can add its icon).
13911         - Notify the window managers of state changes
13912         - Let the window manager paint its buttons and handle button
13913         clicks on the menu when it is maximized.
13914         * InternalWindowManager.cs: Move the prev_bounds into the mdi
13915         window manager, since tool windows don't use it, only mdi windows.
13916         - Tell the main form that we don't want it to handle NCPAINT
13917         itself to avoid extra painting.
13918         - Handle clicks on a maximized windows menu.
13919         - Handle window state changes
13920         - Handle minimize/maximize clicks correctly by setting the window state.
13921         * MdiWindowManager.cs: Add an icon menu that (the menu you get
13922         when clicking on the forms icon).
13923         - New method to create a forms maximized menu. This is its normal
13924         menu + an icon.
13925         - Handle window state changes.
13926         - Handle sizing of maximized windows.  Maximized windows are just
13927         drawn bigger then the parent visible area. All controls are still
13928         there, they are just outside the visible area (this matches windows).
13929         * MdiClient.cs: No scrollbars when a child window is maximized.
13930         - Let the children windows figure out how big they should be when
13931         sizing maximized windows.
13932         - Implement a version of ArrangeIconicWindows somewhat similar to
13933         Windows version.  There are some little differences, but I don't
13934         think any app will rely on the layout of minimized mdi windows.
13935
13936 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13937
13938         * Padding.cs: Several fixes to allow compiling with csc 2.0
13939
13940 2006-03-09  Jackson Harper  <jackson@ximian.com>
13941
13942         * Menu.cs:
13943         * MenuItem.cs: Cheap hack so we can add items to the list without
13944         the events being raised.  This allows adding mdi items during
13945         drawing. TODO: Should probably find a better time to add the items.
13946
13947 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13948
13949         * ThemeWin32Classic.cs:
13950           - CheckBox_DrawText: Added logic to not wrap if not enough space
13951             is available (Fix for bug #77727)
13952           - RadioButton_DrawText: Added logic not to wrap if not enough
13953             space is available (Fix for bug #77727). Also removed some
13954             duplicate code, DrawString always drawing the regular text
13955             before hitting the if statement.
13956
13957 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
13958
13959         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
13960
13961 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13962
13963         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
13964         * ContainerControl.cs: Partial implementation of some 2.0 scaling
13965           methods. Moved the new 2.0 properties into alphabetical order with
13966           other properties and added MonoTODO tags
13967
13968 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13969
13970         * AutoScaleMode.cs: Added. Fix build.
13971
13972 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13973
13974         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
13975           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
13976           and was requiring premature handle creation for calls from above
13977         * Form.cs, Control.cs: Removed handle arguments from calls to
13978           CalculateClientRect()
13979
13980 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13981
13982         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
13983           drag_column.column_rect is MarshalByRef and can't be used that way
13984
13985 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13986
13987         * AxHost.cs: Added deserialization constructor for 
13988           AxHost+State (fixes 77743)
13989
13990 2006-03-09  Mike Kestner  <mkestner@novell.com>
13991
13992         * ListView.cs: 
13993         - Added column drag reordering for details view.
13994         - fixed behavior when mouse is dragged off column and
13995         AllowColumnReorder is false.
13996         * ColumnHeader.cs: clone the format too in Clone.
13997         * Theme.cs: add DrawListViewHeaderDragDetails method.
13998         * ThemeWin32Classic.cs:
13999         - impl new method for drawing drag column shadows and targets.
14000         - support column offset for details mode in DrawListViewItem.
14001
14002 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14003
14004         * TextControl.cs: Reset the char_count when the document is cleared
14005           (Fixes bug reported on mono-winforms mailing list)
14006
14007 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
14008
14009         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
14010           of calling base we simply process the key ourselves, since both
14011           DefWindowProc and the handled method would set m.Result. 
14012           (Fixes #77732)
14013
14014 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
14015
14016         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
14017           method also moves the window; instead implemented a copy of
14018           Control.ScaleCore (Part of fix for #77456)
14019         * TextBoxBase.cs: 
14020           - Created new CreateGraphicsInternal method to allow providing
14021             a graphics context when no handle is created without triggering
14022             handle creation. (Part of fix for #77456)
14023           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14024         * TextControl.cs: 
14025           - Switched Constructor to require TextBoxBase instead of Control (to
14026             allow uncast access to CreateGraphicsInternal)
14027           - Safeguarded use of owner.Handle property. No longer accessing it
14028             unless the handle is already created.
14029           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
14030           - Now triggering a recalc when owning control becomes visible
14031         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
14032           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
14033           premature handle creation (Part of fix for #77456)
14034         * Control.cs:
14035           - We now only destroy our double-buffering buffers when the
14036             control is resized or disposed, but not when visibility
14037             changes. (The code even re-created them twice every time)
14038           - Now requiring a redraw of the buffer on visibility changes
14039             (fixes bug 77654 part 2)
14040           - Not passing OnParentVisibleChanged up unless the control
14041             is visible
14042           - CanFocus: Fixed to match MS documentation
14043           - Focus: Fixed to return actual focus state and to check if
14044             setting focus is legal before setting it
14045
14046 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
14047
14048         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
14049           when to draw focus rectangle by looking at parent focus and
14050           selected state instead. This fixes TabPages on Linux sometimes
14051           having none or multiple focus rectangles.
14052         * XplatUIX11.cs (SetFocus): 
14053           - Don't set the focus if the same window already has focus
14054           - Use SendMessage instead of PostMessage (like it's Win32
14055             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
14056             to match MS behaviour
14057         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
14058           are not selectable.
14059
14060 2006-03-07  Jackson Harper  <jackson@ximian.com>
14061
14062         * PictureBox.cs: Revert line I accidently committed last week.
14063
14064 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
14065
14066         * Control.cs: 
14067           - Added new IsRecreating and ParentIsRecreating properties to
14068             allow testing if RecreateHandle has been called on ourselves
14069             or one of our parents
14070           - WndProc(WM_DESTROY): If our control handle is being recreated
14071             we immediately need to create the handle when receiving the
14072             destroy, that way our child windows find a valid parent handle
14073             when they themselves are being recreated upon WM_DESTROY receipt
14074             (fix for bug #77654 part 1)
14075         * XplatUIX11.cs:
14076           - DestroyWindow: WM_DESTROY must be sent to our own window before
14077             notifying any child windows. MS documents that child windows
14078             are still valid when WM_DESTROY is received. (Control now relies on
14079             this behaviour)
14080           - Added some fine-grain debug options
14081
14082 2006-03-06  Jackson Harper  <jackson@ximian.com>
14083
14084         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
14085         box and base calculations off this.
14086         * MdiChildContext.cs:
14087         * MdiWindowManager.cs: Don't need to ensure scrollbars here
14088         anymore.
14089         
14090 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
14091
14092         * Splitter.cs: In situations where the affected control is added
14093           to the parent's control list after the splitter, we would not
14094           populate affected. Now we try populating it on mousedown, if
14095           it's not already set, and force it to be re-set whenever our
14096           parent changes.
14097
14098 2006-03-03  Matt Hargett  <matt@use.net>
14099
14100         * Control.cs: implement Control.Padding
14101         * Padding.cs: -Padding.All returns -1 when constructing with the
14102         implicit default ctor
14103         -Padding.ToString() matches MS.NET
14104         * ContainerControl.cs: implement
14105         ContainerControl.AutoScaleDimensions
14106         * ListControl.cs: implement ListControl.FormattingEnabled
14107         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
14108         * ButtonBase.cs:
14109         * TabPage.cs: Implement UseVisualStyleBackColor.
14110         * PictureBox.cs: Implement PictureBox.InitialImage.
14111
14112 2006-03-03  Mike Kestner  <mkestner@novell.com>
14113
14114         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
14115         event declarations to proxy to base event.
14116         * ListViewItem.cs: update to use ItemControl.
14117         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
14118         * ThemeWin32Classic.cs: update to new ListView theme API and fix
14119         column header label rendering for 0 width columns.
14120
14121 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
14122
14123         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
14124           that causes the control to be created. Fixes #77476.
14125
14126 2006-03-02  Jackson Harper  <jackson@ximian.com>
14127
14128         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
14129         expose_pending.
14130
14131 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
14132
14133         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
14134           passed in for the EventArgs (fixes #77690)
14135
14136 2006-03-01  Jackson Harper  <jackson@ximian.com>
14137
14138         * ScrollBar.cs: Refresh afterbeing resized.
14139
14140 2006-02-28  Mike Kestner  <mkestner@novell.com>
14141
14142         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
14143         Clean up a tracker compile warning.
14144         * MenuItem.cs: add internal PerformPopup method.
14145         [Fixes #77457]
14146
14147 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
14148
14149         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
14150           implicit expose) when the text is set to null
14151
14152 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
14153
14154         * RichTextBox.cs (FlushText): When newline is true, we always
14155           need to split the line, even if no text is on it and we may
14156           never eat newlines. (Fixes #77669)
14157
14158 2006-02-28  Mike Kestner  <mkestner@novell.com>
14159
14160         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
14161         and set Selected instead.
14162         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
14163         collections.
14164
14165 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
14166
14167         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
14168
14169 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
14170
14171         * FontDialog.cs:
14172           - Got rid of the panel. All controls are now directly added to
14173             the dialog form
14174           - It is now possible to set a font with the Font property
14175           - MinSize and MaxSize property do now what they should
14176           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
14177           - Searching and selecting a font with the font textbox works now,
14178             the same applies to the style and size textbox
14179           - Draw the correct 3D border in the example panel
14180           - Fixed a little mem leak (unused fonts didn't get disposed)
14181           - Many other internal updates/rewrites...
14182           - Fix typo
14183
14184 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
14185
14186         * TextControl.cs: 
14187           - InsertRTFFromStream: Added 'number of characters inserted' argument
14188           - set_SelectedRTF: Now using the number of characters to calculate
14189             the new location for the selection and cursor (x/y cannot be used
14190             due to potentially already wrapped text)
14191
14192 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
14193
14194         * TextControl.cs: Added property and implemented means to allow 
14195           disabling recalculation of a document (can be used to speed up
14196           multiple inserts and is needed to make RTF inserts predictable, see
14197           bug #77659)
14198         * RichTextBox.cs: Using the new NoRecalc property of Document to
14199           keep x/y insert locations predictable. Also makes it faster inserting
14200           large chunks of RTF
14201
14202 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
14203
14204         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
14205           it's easier for a child control to handle the other messages without
14206           having to duplicate the special functionality
14207         * TextBoxBase.cs
14208           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
14209             code to handle processing the key ourselves, in order to get 
14210             access to the result of KeyEventArgs.Handled. We now only call 
14211             ProcessKey if they key hasn't been handled already. Fixes #77526.
14212           - set_Text: If null or empty string is given, just clear the 
14213             document. Fixes part of #77526
14214
14215 2006-02-27  Jackson Harper  <jackson@ximian.com>
14216
14217         * SizeGrip.cs: Paint the background color before painting the grip
14218         so things look right.
14219         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
14220
14221 2006-02-27  Mike Kestner  <mkestner@novell.com>
14222
14223         * ListView.cs:
14224           - Restructure layout and invalidation model to remove a ton of
14225           flicker from the control and speed up performance in general.
14226           - Add manual column resize, flickers like crazy, but I already have
14227           some ideas on how I'll fix that. (#76822)
14228           - Merge the three Icon-based views into a single layout method.
14229           - Move item selection interaction logic from the item since 
14230           interaction with the collections is more appropriate to the view.
14231           - Deselection on non-item clicks.
14232         * ListViewItem.cs:
14233           - Encapsulate most of the layout. Add some internal props to trigger
14234           layout.  Move to a model where Items invalidate themselves instead
14235           of just invalidating the whole control every time something changes.
14236           - Invalidate on Text/Caption changes.
14237           - switch to an offset based layout model to avoid having to absolute
14238           position every element on item moves.
14239           - correct checkbox layout to conform to MS layout.
14240         * ThemeWin32Classic.cs:
14241           - refactor some column header drawing code.
14242           - fix string justification for column headers (#76821)
14243           - make SmallIcon labels top justified for compat with MS impl.
14244         * ThemeClearlooks.cs:
14245           - adjust to new ListViewItem internal checkbox bounds api.
14246
14247 2006-02-27  Jackson Harper  <jackson@ximian.com>
14248
14249         * Control.cs:  Change where implicit controls fall in the zorder.
14250         They are now on top of all children.
14251         - Synced AddImplicit code with Add
14252         - Removed unused enumerator.
14253         * SizeGrip.cs: Remove the TODO as its been TODONE.
14254
14255 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
14256
14257         * TextControl.cs(Insert): Combine the last lines unless the insertion
14258           string ends with \n\n, otherwise we leave one line too many (Fixes
14259           something I noticed with the testapp for #77526; the bug itself was
14260           already fixed in the previous checkin)
14261
14262 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
14263
14264         * RichTextBox.cs:
14265           - SelectionColor and SelectionFont methods no longer set absolute
14266             styles. Instead, the keep font or color respectively (This 
14267             resolves a long-standing FIXME in the code)
14268           - When flushing RTF text, the insert code now considers text trailing
14269             behind the insertion point (Fixes the bug where when replacing
14270             the selected text via SelectedRTF the remainder of the line behind 
14271             the selection would stay on the first insertion line)
14272         * TextBoxBase.cs:
14273           - AppendText now updates the selection points after inserting text
14274           - AppendText now ensures that the last tag (sometimes 0-length) of
14275             the document is used for the style information (Fixes part of 
14276             bug #77220)
14277         * TextControl.cs:
14278           - Created new FontDefiniton class to allow describing partial style
14279             changes
14280           - StreamLine() now takes a lines argument, to allow it to decide
14281             whether an encountered zero-length tag is the last in the document
14282             (which must be kept to not loose the font/color contained in it,
14283             for later appends)
14284           - Created Combine() and Split() methods for Marker structs, to 
14285             support marker updates due to reformatted documents (soft line
14286             wraps)
14287           - Implemented Document.CaretTag setter
14288           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
14289             of the last line (Not the cause, but also exposed by bug #77220)
14290           - Added LineTag argument to InsertString method, to allow callers
14291             to force a certain tag to be used (required to force use of the
14292             trailing zero-length tag of a document)
14293           - Now updating markers in Combine(), to avoid stale tag markers
14294           - Added some method descriptions to aid maintenance
14295           - Implemented new FormatText concept, allowing additive/subtractive
14296             formatting by only specifying the components that are to be 
14297             changed. This was needed for resolving the RTB.SelectedColor/
14298             RTB.SelectedFont fixmes
14299           - Added Break() support method to allow breaking up linetags (used
14300             for partial formatting)
14301           - Added GenerateTextFormat() method. It is used for partial 
14302             formatting and allows to generate a full font/color from given
14303             attributes and an existing tag.
14304
14305 2006-02-26  Jackson Harper  <jackson@ximian.com>
14306
14307         * XplatUIX11.cs:  Use the correct caption height.
14308         - Translate hittest coordinates to screen coords to match MS.
14309         * XplatUIWin32.cs: When we create MDI windows we need to reset
14310         some of the style flags, so we get a nice blank window, and can
14311         draw all the decorations ourselves.
14312         - Set a clipping rectangle on the non client paint event, the
14313         window manager drawing code needs one.
14314         * Form.cs: The window manager needs to know when the window state
14315         has been updated.
14316         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
14317         don't need to factor in border and title sizes in these
14318         methods. TODO: Remove the args and fix the call points.
14319         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
14320         properly.
14321         - Let the driver set the cursors.
14322         - Improve active window handling
14323         - Correct sizes for title bars and buttons.
14324         - Match MS drawing better
14325         * MdiWindowManager.cs: We don't need to handle border style
14326         updates specially anymore.
14327         - Check for scrollbars when windows are done moving
14328         - Handle Active properly.
14329         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
14330         correctly. I am spewing the exception though, so we don't hide the
14331         bugs.
14332         
14333 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
14334
14335         * DataGridViewRowPostPaintEventArgs.cs,
14336           DataGridViewCellPaintingEventArgs.cs,
14337           DataGridViewRowCollection.cs,
14338           DataGridViewRowPrePaintEventArgs.cs,
14339           DataGridViewCell.cs: Clear a few warnings and implement a few
14340           exceptions that should be thrown.
14341
14342 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
14343
14344         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
14345           'inheriting' our parent's (non-default) cursor. (Part of
14346            the fix for #77479)
14347
14348 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
14349
14350         * XplatUIX11.cs: Fixed cast to make csc happy
14351
14352 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
14353
14354         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
14355           it's for the client area (part of fix for #77479 and needed
14356           for MDI window cursor handling)
14357         * XplatUIX11.cs
14358           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
14359             the appropriate default cursors and also passing the message
14360             up the parent chain 
14361           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
14362             for non-client areas
14363
14364 2006-02-15  Jackson Harper  <jackson@ximian.com>
14365
14366         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
14367         is a real MDI window
14368
14369 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
14370
14371         * X11DesktopColors.cs: Instead of checking the desktop session
14372           string for "KDE" check if it starts with "KDE"
14373
14374 2006-02-10  Jackson Harper  <jackson@ximian.com>
14375
14376         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
14377         systems).
14378
14379 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
14380
14381         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
14382           errors
14383         * ColorDialog.cs:
14384           - Got rid of the panel. All controls are now directly added to
14385             the dialog form
14386           - Changed to mono coding style
14387
14388 2006-02-10  Jackson Harper  <jackson@ximian.com>
14389
14390         * InternalWindowManager.cs: We don't need the set visibility to
14391         false hack anymore now that peter has written beautiful shutdown
14392         code.
14393
14394 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
14395
14396         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
14397           where already explicitly destroyed
14398
14399 2006-02-10  Jackson Harper  <jackson@ximian.com>
14400
14401         * MdiClient.cs: Handle the case where windows are too high or to
14402         the left and we need scrollbars.
14403
14404 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
14405
14406         * MimeIcon.cs: Added some icons
14407         * FileDialog.cs:
14408           - Fixed bug #77477
14409           - Got rid of the panel. All controls are now directly added to
14410             the dialog form
14411           - Changed to mono coding style
14412           - On Linux "My Computer" and "My Network" will now show some
14413             more usefull information. A new class, MasterMount, gathers
14414             this information from /proc/mount. Updated MWFFileView to make
14415             use of this information
14416           - Fixed a bug that caused FileDialog to crash when
14417             ".recently_used" file had a zero size
14418           - FilterIndex does now what it should
14419           - Some Refactoring
14420         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
14421             FileDialog changes
14422
14423 2006-02-09  Jackson Harper  <jackson@ximian.com>
14424
14425         * ComboBox.cs: Don't touch if null.
14426
14427 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
14428
14429         * Cursor.cs: 64bit safeness fix
14430         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
14431
14432 2006-02-09  Jackson Harper  <jackson@ximian.com>
14433
14434         * Form.cs: If a form is made into an MDI form update the styles so
14435         all the props can get set correctly.
14436         - Kill the mdi_container when we dont need it anymore.
14437         * InternalWindowManager.cs: Add missing NOT
14438
14439 2006-02-08  Jackson Harper  <jackson@ximian.com>
14440
14441         * InternalWindowManager.cs: Respek clipping when drawing MDi
14442         decorations.
14443
14444 2006-02-08  Jackson Harper  <jackson@ximian.com>
14445
14446         * Hwnd.cs: Add bits to track non client expose events.
14447         * XplatUIX11.cs: Track non client expose events on the hwnd. This
14448         gives us a proper invalid rect and will allow for some nice
14449         optimizations with NC client drawing
14450         - MDI windows are children windows, so move their style handling
14451         into the child window block.
14452         * InternalWindowManager.cs: Remove a state reset that was
14453         getting invoked at the wrong time. Fixes managed windows getting
14454         into a 'stuck' captured state.
14455
14456 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
14457
14458         * TextControl.cs (Document.ctor): Now initializing 
14459           selection_anchor. Fixes #77493
14460
14461 2006-02-07  Jackson Harper  <jackson@ximian.com>
14462
14463         * TrackBar.cs: The increment/decrements were backwards.
14464
14465 2006-02-07  Mike Kestner  <mkestner@novell.com>
14466
14467         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
14468         to the instance itself.
14469
14470 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
14471
14472         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
14473           on ulongs and pointers, the size differs between 32bit and 64bit
14474           systems. 
14475
14476 2006-02-07  Mike Kestner  <mkestner@novell.com>
14477
14478         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
14479         for 64 bit platforms to work around a metacity bug. 
14480
14481 2006-02-07  Jackson Harper  <jackson@ximian.com>
14482
14483         * TrackBar.cs: Process the input keys we need, and hookup to
14484         KeyDown instead of using WndProc, so we get key messages.
14485
14486 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
14487
14488         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
14489           machine we're on. 
14490         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
14491           we need to translate the XdndVersion atoms array before sending it
14492
14493 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
14494
14495         * XplatUIX11.cs: 
14496           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
14497             number of bits for the property, not the number of bytes. The
14498             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
14499             but would not crash since it specified 8 bits instead of 4 bits)
14500           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
14501             defined as XID -> long in the C headers)
14502           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
14503             references since those are now IntPtr to begin with
14504           - Switched all Atom.XXX 'int' casts to IntPtr casts
14505           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
14506           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
14507           - Added XChangeActivePointerGrab DllImport (for X11DnD)
14508         * X11Structs.cs:
14509           - Changed 'int' type for Atoms in XEvent structures to IntPtr
14510           - Changed atom in HoverStruct to be IntPtr
14511         * X11DnD.cs:
14512           - Removed local DllImports, switched code to use those from XplatUIX11
14513           - Removed/fixed casts related to the switch of Atom to be a IntPtr
14514
14515 2006-02-06  Mike Kestner  <mkestner@novell.com>
14516
14517         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
14518         method signatures in the import region.  There may still be some
14519         lingering struct marshaling issues, as I didn't drill down into those.
14520         Yet.
14521
14522 2006-02-06  Jackson Harper  <jackson@ximian.com>
14523
14524         * ComboBox.cs: Dont manually set the top_item, this is computed
14525         when the scrollbar position is set.
14526
14527 2006-02-06  Mike Kestner  <mkestner@novell.com>
14528
14529         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
14530         startup crashes on amd64.  There's other fixes needed.  All pinvoke
14531         usage of Atom needs to be mapped to IntPtr for example.  And there are
14532         likely other int/long issues to be addressed.
14533
14534 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
14535
14536         * FileDialog.cs: One more...
14537
14538 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14539
14540         * FileDialog.cs: Next try
14541
14542 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14543
14544         * FileDialog.cs: First part of fix for #77464
14545
14546 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14547
14548         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
14549           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
14550           AcceptButton border drawing.
14551
14552 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
14553
14554         * Form.cs: Moved positioning of form after auto scaling is applied,
14555           otherwise it would possibly use wrong form size.
14556
14557 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
14558
14559         * Control.cs (RecreateHandle): No need to re-create any child
14560           controls, the child windows will get destroyed automatically by
14561           the windowing system or driver, and re-created when the handle
14562           is being accessed the first time. Fixes #77456
14563         * Form.cs: No longer setting the form to closing if the handle is 
14564           being recreated. This seems like the right thing to do, don't
14565           have a bug or testcase for this, though.
14566
14567 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14568
14569         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
14570           controls to avoid unwanted side effects
14571
14572 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
14573
14574         * Control.cs: 
14575           - ScaleCore needs to scale the bounds, not the ClientSize of the 
14576             control. Fixes #77416.
14577           - DefaultSize is 0,0 for control
14578         * TextBoxBase.cs: 
14579           - DefaultSize is 100, 20
14580           - SetBoundsCore: Now enforcing the height, no matter if the provided
14581             height is more or less than the preferred one, as long as AutoSize
14582             is on
14583         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
14584
14585 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14586
14587         * Control.cs:
14588           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
14589             call unless both performLayout is true *and* we have a pending
14590             layout change
14591           - ResumeLayout: MS does not completely nest Suspend and Resume,
14592             they bottom out at 0, fixed our code to match that.
14593           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
14594             SetBoundsCore, we were updating even when we shouldn't. This fixes
14595             swf-anchors mis-anchoring when resizing the app fast and lots.
14596           - UpdateDistances: Now only setting the left and top distance if 
14597             we have a parent and are not suspended, this is based on
14598             a suggestion by Don Edvaldson in bug #77355.
14599           - OnVisibleChanged: Fixed logic when to create the control. We may
14600             not create the control if we have no parent or if it's not visible;
14601             switched to using Visible property instead of is_visible field 
14602             since the property also considers parent states. This fixes a bug
14603             when starting Paint.Net
14604
14605 2006-02-02  Jackson Harper  <jackson@ximian.com>
14606
14607         * Form.cs: If the forms handle hasn't been created yet don't call
14608         into xplatui to make it top most, just set the topmost flag on the
14609         form in CreateParams
14610         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
14611
14612 2006-02-01  Jackson Harper  <jackson@ximian.com>
14613
14614         * ScrollableControl.cs: Refactored the Recalculate method a
14615         little, this wasn't handling all the variants of bottom and right
14616         bars needed to be added and added/removed based on their
14617         counterparts being added/removed (which changes the drawable
14618         size). Also we special case client widths and heights of 0 and
14619         don't add the scrollbar for those.
14620
14621 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
14622
14623         * XplatUIX11.cs: 
14624           - Added method to get AbsoluteGeometry(); currently unused, but might
14625             be used in the future, if we try again to figure out toplevel
14626             coordinates with some more crappy window managers
14627           - Added FrameExtents() method to retrieve the WM set decoration size
14628           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
14629             to deal with at least KDE, FVWM and metacity (Fixes #77092)
14630         * Hwnd.cs: 
14631           - Added whacky_wm tracking var for metacity
14632           - Added logic to have default menu height if the actual menu height
14633             has not yet been calculated (part of fix for #77426)
14634         * Form.cs: Keep track whether client size has been set and re-set 
14635           it if a menu is added/removed afterwards (Fixes #77426)
14636
14637 2006-01-31  Jackson Harper  <jackson@ximian.com>
14638
14639         * Control.cs: When a new Site is set on the component attempt to
14640         pull the AmbientProperties from it.
14641
14642 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
14643
14644         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
14645           in the background of the owning form. Fixes #77332
14646
14647 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14648
14649         * MimeIcon.cs: Fix for #77409
14650
14651 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14652
14653         * XplatUIX11GTK.cs: Initial import
14654
14655 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
14656
14657         * FixedSizeTextBox: fixes class signature
14658
14659 2006-01-30  Jackson Harper  <jackson@ximian.com>
14660
14661         * FixedSizeTextBox.cs: New internal class that represents a
14662         textBox that will not be scaled.
14663         * TreeView.cs:
14664         * ComboBox.cs:
14665         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
14666         standard TextBox.
14667                 
14668 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
14669
14670         * XplatUIX11.cs: Retrieve default screen number instead of
14671           assuming 0. Attempted fix for #77318
14672
14673 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
14674
14675         * XplatUIWin32.cs: 
14676           - GetWindowPos: When a window is parented by FosterParent, use 
14677             the desktop instead of FosterParent as the base to get coordinates
14678           - CreateWindow: Don't make FosterParent the parent window for Popups
14679             if we don't want a taskbar entry, Popups automatically don't get one
14680         * Hwnd.cs: Need to call remove to actually remove the key from the
14681           hash table
14682
14683 2006-01-30  Mike Kestner  <mkestner@novell.com>
14684
14685         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
14686
14687 2006-01-30  Jackson Harper  <jackson@ximian.com>
14688
14689         * TreeView.cs:
14690         * TreeNode.cs: Raise events no matter how the treenode is
14691         checked. Patch by Don Edvalson.
14692
14693 2006-01-30  Jackson Harper  <jackson@ximian.com>
14694
14695         * TreeNode.cs: Signature fix.
14696
14697 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
14698
14699         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
14700
14701 2006-01-20  Mike Kestner  <mkestner@novell.com>
14702
14703         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
14704         event forwarding when menus are active.
14705         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
14706         Most of the patch is pdb's with a little rework.
14707
14708 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14709
14710         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
14711           Removed GetMenuDC and ReleaseMenuDC methods; replaced
14712           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
14713         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
14714         * InternalWindowManager.cs: Added use of PaintEventStart/End to
14715           handling of WM_NCPAINT message, now passing the PaintEventArgs to
14716           the PaintWindowDecorations method
14717         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
14718         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
14719         * MenuAPI.cs: Made tracker window invisible
14720         * XplatUIWin32.cs:
14721           - Removed GetMenuDC and ReleaseMenuDC methods
14722           - Implemented the client=false path for PaintEventStart and
14723             PaintEventEnd
14724
14725 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14726
14727         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
14728         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
14729           styles
14730         * Form.cs: 
14731           - MaximizeBox, MinimizeBox: Recreate the handle when setting
14732             the style
14733           - CreateParams: Reworked the styles to match MS look'n'feel,
14734             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
14735             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
14736
14737 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14738
14739         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
14740           window is not mapped, since otherwise every form that's being 
14741           created is considered minimized, which is wrong.
14742         * Form.cs: Catching the exception and returning our internal value
14743           instead
14744
14745 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14746
14747         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
14748           SetWindowMinMax() to have means to tell the driver about the minimum,
14749           maximum and maximized state window sizes. (Part of the fix for #76485)
14750         * Form.cs:
14751           - Implemented tracking of minimum and maximum window size, now calling
14752             new SetWindowMinMax() driver method to tell the driver (Part of the
14753             fix for #76485)
14754           - Finished handling of WM_GETMINMAXINFO method, now setting all values
14755             (Completes fix for #76485)
14756           - Calling new SetWindowMinMax driver method when the handle for a 
14757             form is created, to make sure the driver knows about it even if
14758             the values have been set before the window was created
14759           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
14760             to avoid messing up our anchoring calculations (partial fix
14761             for #77355)
14762         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
14763         * XplatUIX11.cs:
14764           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
14765           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
14766             (and presumably other freedesktop.org compliant WMs). Left the
14767             assumption unmapped=minimized, needed for SetVisible to work.
14768           - Now setting the window state when creating windows
14769           - Fixed SetVisible to consider/set the window state when mapping
14770             a Form. We cannot set the state before it's mapped, and we cannot
14771             use Form.WindowState once it's mapped (since it would ask the
14772             driver and get 'normal'. Therefore, we grab the state before
14773             mapping, map, and then set state.
14774           - Implmemented SetWindowMinMax method; Metacity does not seem to
14775             honor the ZoomHints, though.
14776         * XplatUIWin32.cs:
14777           - Removed MINMAXINFO (moved to XplatUIStructs)
14778           - Added SetWindowMinMax stub (on Win32 the only way to set that
14779             information is in response to the WM_GETMINMAXINFO message, which
14780             is handled in Form.cs)
14781           - Added logic to SetVisible to set the proper window state when a 
14782             form is made visible (fixes #75720)
14783
14784 2006-01-26  Jackson Harper  <jackson@ximian.com>
14785
14786         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
14787         same way we handle them with Invoke.
14788
14789 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
14790
14791         * Form.cs:
14792           - Added tracking of window state so CreateParams can return
14793             the appropriate style
14794           - Moved setting of WS_CAPTION style in CreateParams to allow
14795             styles without caption
14796         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
14797           control if the TextBox property is accessed. Fixes #77345
14798         * Control.cs:
14799           - get_Created: now uses is_disposed and is_created to determine
14800             return value (suggested by Jackson)
14801           - CreateHandle: No longer exits if the handle is being recreated
14802           - RecreateHandle: If the handle is not yet created call the 
14803             appropriate method to create either control or handle. If the
14804             control is already created CreateHandle will simply exit instead
14805             of just creating the handle
14806         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
14807           now SendMessage WM_DESTROY directly to the control when DestroyWindow
14808           is called.
14809         * XplatUIX11.cs: 
14810           - When DestroyWindow is called, instead of waiting for the 
14811             DestroyNotification from X11, we directly post it to the WndProc
14812             and immediately dispose the hwnd object.
14813             Same applies to DestroyChildWindows, and this obsoletes the
14814             expose_pending tracking. Contrary to Win32 behaviour we destroy our
14815             child windows before our own, to avoid X11 errors.
14816           - Removed the direct sending of WM_PAINT on UpdateWindow
14817         * XplatUIWin32.cs:
14818           - Reworked DoEvents and GetMessage to allow access to internal queue
14819             even when trying non-blocking access to the queue.  Fixes #77335. 
14820             Based on a patch suggestion by Don Edvalson. The new private
14821             GetMessage can now also be used as a backend for a PeekMessage
14822             frontend version.
14823         * XplatUI.cs: Improved debug output for CreateWindow
14824
14825 2006-01-25  Jackson Harper  <jackson@ximian.com>
14826
14827         * Help.cs: Allow param to be null. Patch by Don Edvalson.
14828
14829 2006-01-24  Jackson Harper  <jackson@ximian.com>
14830
14831         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
14832         when we have a MaxDropItems lower then the selected index.
14833
14834 2006-01-24  Jackson Harper  <jackson@ximian.com>
14835
14836         * Control.cs: Don't allow selection of non visible controls, allow
14837         selection of controls without parents.
14838
14839 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14840
14841         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
14842         * DataGridDrawingLogic.cs: Add editing row only when is necessary
14843
14844 2006-01-23  Jackson Harper  <jackson@ximian.com>
14845
14846         * UpDownBase.cs: Make the textbox handle all the selection and
14847         tabbing. This fixes tabing to updown controls.
14848
14849 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14850
14851         * TextBoxBase.cs: fixes exception thown the object was null
14852
14853 2006-01-23  Jackson Harper  <jackson@ximian.com>
14854
14855         * ButtonBase.cs: Just use the base CreateParams. They set
14856         visibility and enabled correctly.
14857         * ComboBox.cs:
14858         * TrackBar.cs:
14859         * MonthCalendar.cs: Lets let the base set as much of the
14860         createparams as possible so we don't have duplicate code all over
14861         the place.
14862
14863 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
14864
14865         * ThemeGtk.cs: Added TrackBar and some experimental code to
14866           get double buffering back
14867
14868 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14869
14870         * DataGrid.cs: Allows row number set internally higher than the last
14871         when creating a new row. Restores the editing functionality.
14872
14873 2006-01-20  Mike Kestner  <mkestner@novell.com>
14874
14875         * MimeIcon.cs: delay Image creation until the icons are accessed
14876         instead of creating 190 scaled images on GnomeHandler startup.
14877
14878 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
14879
14880         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
14881           first call base before processing the event. Fixes #77279
14882
14883 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
14884
14885         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
14886           that the stride for the GDI bitmap would match the stride of
14887           a DIB or a Cursor.
14888
14889 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
14890
14891         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
14892
14893 2006-01-19  Jackson Harper  <jackson@ximian.com>
14894
14895         * ComboBox.cs: Hookup the text controls keydown event so we get
14896         those when the text control has the focus.
14897
14898 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14899
14900         * Label.cs: Now using the base events instead of defining new ones;
14901           this allows us to just call the base properties without having to
14902           duplicate all base property logic 
14903
14904 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14905
14906         * Label.cs: A label by default is not a tabstop (Fixes one of our
14907           failing nunit tests)
14908
14909 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14910
14911         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
14912         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
14913
14914 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14915
14916         * Cursor.cs: Reimplemented creating cursor bitmaps without using
14917           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
14918           This fixes #77218
14919         * XplatUIWin32.cs: 
14920           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
14921             constructor creates images that can't be saved. Part of the fix
14922             for #76103
14923           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
14924           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
14925             bug fix for handling window state in forms properly)
14926
14927 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14928
14929         * ThemeGtk.cs: Simplify ScrollBar drawing
14930
14931 2006-01-18  Jackson Harper  <jackson@ximian.com>
14932
14933         * Splitter.cs: Set the default dock style for the splitter control
14934         in the constructor.
14935
14936 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14937
14938         * ThemeGtk.cs: Corrected StateType and ShadowType for
14939           gtk_paint_box
14940
14941 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14942
14943         * Control.cs: Make use of Theme.DoubleBufferingSupported
14944         * ThemeGtk.cs:
14945           - Added drawing for flat style buttons
14946           - Added ScrollBar drawing
14947
14948 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14949
14950         * ThemeClearlooks.cs: Removed some unneeded code.
14951         * ThemeGtk.cs: First part of ThemeGtk enhancements.
14952
14953 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14954
14955         * LinkLabel.cs: We need to update the hover drawing when
14956           leaving the control as well.
14957
14958 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
14959
14960         * DataGrid.cs: Clicking on non empty areas in the columns
14961            area was giving an exception
14962
14963 2006-01-17  Jackson Harper  <jackson@ximian.com>
14964
14965         * ThemeWin32Classic.cs:
14966         * ListView.cs: Do not draw/clip the headers when the header style
14967         is None.
14968
14969 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14970
14971         * DataGrid.cs: Fixes 77260
14972         
14973 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14974
14975         * DataGrid.cs: Clicking on a column on a empty grid was giving
14976           an exception
14977
14978 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14979
14980         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
14981           or any keypress will crash the grid.
14982
14983 2006-01-17  Mike Kestner  <mkestner@novell.com>
14984
14985         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
14986         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
14987         invisible/previously-visible items.
14988         [Fixes #76909]
14989
14990 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
14991
14992         * ThemeClearlooks.cs:
14993         - Added CL_Draw_Button method; now other theme controls that are 
14994           not derived from button or do not have a button can draw buttons
14995           too
14996         - Updated ComboBox drawing
14997         - Beautified RadioButton drawing
14998         - Corrected drawing of bottom and left tabs
14999         - Beautified DateTimePicker and MonthCalendar
15000         - Added CPDrawButton and CPDrawRadioButton
15001
15002 2006-01-16  Jackson Harper  <jackson@ximian.com>
15003
15004         * ComboBox.cs: Set the initial value of the scrollbar to the
15005         current index. Reduce the numbers of refreshs and IndexOfs called.
15006
15007 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
15008
15009         * FileDialog.cs: When the file listview is focused hitting the
15010           backspace key moves the fileview to the parent directory
15011
15012 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15013
15014         * Form.cs: 
15015           - Added RecreateHandle call when changing taskbar visibility to 
15016             trigger reparenting in Win32 driver (Fixes #75719)
15017           - If a window has minimize or maximize buttons, it cannot have
15018             a help button
15019         * XplatUIWin32.cs:
15020           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
15021             the toplevel form with FosterParent (A toolwindow not on the
15022             taskbar) (Fixes #75719)
15023           - Made FosterParent a toolwindow
15024
15025 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15026
15027         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
15028
15029 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15030
15031         * ToolTip.cs: If SetToolTip is called from a control and the mouse
15032           is currently over that control, make sure that tooltip_window.Text
15033           gets updated
15034
15035 2006-01-13  Mike Kestner  <mkestner@novell.com>
15036
15037         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
15038
15039 2006-01-13  Jackson Harper  <jackson@ximian.com>
15040
15041         * TreeView.cs: On MS GetNodeAt never actually factors in the X
15042         value passed.  Also redraw the selected node when we recieve
15043         focus, so tabbing between trees works correctly.
15044
15045 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
15046
15047         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
15048           ~/.gconf/%gconf-tree.xml, so use
15049           .gconf/desktop/gnome/interface/%gconf.xml
15050
15051 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15052
15053         * TextControl.cs: Draw text in gray if control is disabled
15054
15055 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
15056
15057         * TreeView.cs: Draw the focus rectangle outside the highlight, to
15058           make sure it's always visible. Fixes #76680.
15059
15060 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
15061
15062         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
15063
15064 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
15065
15066         * PageSetupDialog.cs: Added.
15067         * PrintDialog.cs: Attributes.
15068         * PrintPreviewControl.cs: Updates.
15069         * PrintPreviewDialog.cs: Updates.
15070         
15071 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15072
15073         * Control.cs: Undid my selection check fix, since it's not needed
15074         * TextBoxBase.cs:
15075           - Now considering the presence of hscroll/vscroll when sizing
15076             vscroll/hscroll respectively. Fixed bug #77077
15077           - Added Left/Up/Down/Right to IsInputKey list to prevent
15078             ContainerControl from stealing them. This fixes what I broke
15079             with my last checkin.
15080
15081 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
15082
15083         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
15084           I finally understand how the property can be set without a setter :-)
15085
15086 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15087
15088         * Application.cs:
15089           - Switched RunLoop to use static Message.Create to create a 
15090             Message object
15091           - Added PreProcessMessage call in runloop for keyboard events; this
15092             is part of the fix for #77219, I overlooked this originally in the
15093             MSDN doc for PreProcessMessage
15094         * Control.cs:
15095           - Removed call to PreProcessMessage from handling of keyboard 
15096             messages; it's supposed to be done in the message pump
15097           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
15098             per MSDN documentation.
15099           - IsInputChar: All chars are input chars by default; removed the 
15100             parent calling chain, MS does not document that
15101           - PreProcessMessage: If IsInputChar is true, we want to return false
15102             to allow dispatching of the message
15103           - When selecting the next control, now also check that we're not
15104             selecting ourselves again and therefore return a false positive.
15105         * TextBoxBase.cs:
15106           - Tried to match return values for IsInputKey and ProcessDialogKey
15107             to what MS returns; moved processing of our special keys outside
15108             ProcessDialogKey since MS does not seem to return true on those.
15109           - Moved code that previously was in ProcessDialogKey into new private
15110             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
15111           - Reworked handling of WM_CHAR to not have to duplicate code from
15112             Control.cs anymore, instead we simply call down to base.
15113            
15114 2006-01-12  Jackson Harper  <jackson@ximian.com>
15115
15116         * ComboBox.cs: We always need to refresh the text area when
15117         EndUpdate is called. Fixes the combobox in the file dialog.
15118         * Control.cs: Don't create the creator_thread until the controls
15119         handle is created.  Also in InvokeRequired we check if the
15120         creator_thread is null. This gives the effect of InvokeRequired
15121         returning true if the controls handle is not created yet, and
15122         matches MS.
15123
15124 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15125
15126         * XplatUI.cs:
15127           - Added StartLoop() driver method. This is used to allow drivers to
15128             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
15129             loop for a particular thread
15130           - Added EndLoop() driver method. This is called once the message
15131             pump for the thread is shut down
15132           - Added SupportsTransparency method to allow the driver to indicate
15133             opacity support for windows
15134         * Form.cs:
15135           - Removed TODO attribute, completed AllowTransparency property
15136           - Added documented logic to Opacity
15137         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
15138           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
15139           versions of CompatibleTextRendering
15140         * X11Structs.cs: Added opacity atom to our atom enumeration
15141         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
15142           of a form might be set before it's reparented by the WM, and we need
15143           the opacity value without calling up to Form)
15144         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
15145           SupportsTransparency() driver methods
15146         * Application.cs: Now calling StartLoop and EndLoop driver methods
15147         * XplatUIX11.cs:
15148           - Added opacity atom registration
15149           - Added StartLoop()/EndLoop() methods. They're empty right now but
15150             will need to get implemented when we switch to a per-thread queue
15151           - Implemented SupportsTransparency() method
15152           - Implemented SetWindowTransparency() method
15153           - Added support for setting the opacity value when a window is
15154             reparented (since the opacity needs to be set on the WM frame)
15155         * XplatUIOSX.cs, XplatUIWin32.cs:
15156           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
15157
15158 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
15159
15160         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
15161
15162 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
15163
15164         * FileDialog.cs: Added ToolTip for MWFFileView
15165         * MimeIcon.cs: Rewrote GnomeHandler.
15166           - Get currently used gnome icon theme from
15167             ($HOME)/.gconf/%gconf-tree.xml
15168           - Make use of inherited icon themes
15169           - Support SVG icon themes like Tango via librsvg
15170
15171 2006-01-12  Miguel de Icaza  <miguel@novell.com>
15172
15173         Revert's Jackson's revert which broke 2.0 builds.   Fix both
15174         builds. 
15175         
15176         * Application.cs: Move the use_compatible_text_rendering outside
15177         the NET_2_0 define.  If we ever need to use the
15178         use_compatible_text_rendering on the individual controls they will
15179         access the variable from the common shared code paths.
15180
15181 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
15182
15183         * XplatUI.cs:
15184           - Added more granular debug options
15185           - Added method to print both window text and id
15186           - Switched debug output to use new Window() debug method
15187           - Added IsEnabled() driver method
15188           - Added EnableWindow() driver method
15189         * Form.cs:
15190           - Removed end_modal; no longer needed, new loop handles termination
15191             via 'closing' variable
15192           - If form is modal, setting DialogResult will now initiate loop
15193             termination via 'closing' variable
15194           - Added support for is_enabled/WS_DISABLED to CreateParams
15195           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
15196             does all the work
15197           - Removed code that's now in RunLoop from ShowDialog()
15198           - Added various documented sanity checks to ShowDialog()
15199           - Added handling of WM_DESTROY message; we set 'closing' on getting
15200             the message to indicate the message pump to terminate
15201           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
15202             send by the Application.ExitThread method. (We send the message
15203             to destroy the window after all other events have been
15204             processed through the queue, instead of destroying the handle 
15205             directly)
15206           - Moved code from Close() method to WM_CLOSE handler; added logic
15207             to only send close-related events if the form is not displayed
15208             modal
15209         * Splitter.cs (..ctor): Fixed typo in resource name
15210         * Control.cs:
15211           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
15212             brush now
15213           - set_Cursor: Now only setting calling into XplatUI if the handle for
15214             the control is already created; this avoids implict handle creation
15215             or crashes if it's not created
15216           - set_Enabled: Now setting the enabled state via the new driver method
15217             instead of just tracking it
15218           - CreateParams: Added logic to set WS_DISABLED based on enabled state
15219           - CreateControl: Reordered event firing and method calls to more
15220             closely fire events in the order MS does. Now setting the
15221             enabled state in the driver when creating the control.
15222           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
15223             match MS order
15224         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
15225           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
15226         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
15227         * Hwnd.cs:
15228           - Added tracking of window enabled state (get_Enabled/set_Enabled)
15229           - Added EnabledHwnd property to easily allow a driver to find the
15230             handle of the first enabled window in the parent chain (this is
15231             used by drivers to pass up input events of disabled windows)
15232         * XplatUIDriver.cs: Added IsEnabled() method
15233         * Application.cs:
15234           - Removed crude and obsolete exiting tracking variable
15235           - Removed internal ModalRun(); replaced by RunLoop()
15236           - Implemented private CloseForms() method to allow closing all 
15237             windows owned by a particular (or all) threads
15238           - Exit() now properly closes all windows without forcing the message
15239             pump to quit
15240           - Removed obsolete InternalExit() method
15241           - Changed Run() methods to use new RunLoop() message pump
15242           - Implemented new RunLoop() method for both modal and non-modal forms
15243         * CommonDialog.cs:
15244           - get_CreateParams: Added setting of WS_DISABLED
15245           - Simplified ShowDialog(); now all the work is done in RunLoop(),
15246             invoked via Form.ShowDialog()
15247         * NativeWindow.cs: We don't remove the window from the collection when
15248           the handle is destroyed; there might still be messages for it in the
15249           queue (mainly the resulting WM_DESTROY); instead it will be removed
15250           when Control calls InvalidateHandle in the WM_DESTROY handler
15251         * XplatUIX11.cs:
15252           - CreateWindow: Added logic to handle the WS_DISABLED window style
15253           - EnableWindow: Implemented based on Hwnd.Enabled
15254           - GetMessage: Reset PostQuitState so the method can be called again
15255           - Implemented support for disabled windows (passing messages to the
15256             first enabled parent) in handling all input messages
15257           - Added optimizations for handling Expose events
15258           - Implemeted new driver method IsEnabled()
15259           - Now always resetting paint pending tracking vars when we start paint
15260           - Re-implemented UpdateWindow via just sending a WM_PAINT message
15261         * XplatUIOSX.cs: Added IsEnabled method stub
15262         * XplatUIWin32.cs: Implemented new IsEnabled() method
15263
15264 2006-01-11  Jackson Harper  <jackson@ximian.com>
15265
15266         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
15267         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
15268         variables a little.
15269         * ColorDialog.cs: Clear out the old form before adding the new
15270         panel.  
15271
15272 2006-01-11  Jackson Harper  <jackson@ximian.com>
15273
15274         * X11Dnd.cs: Make sure to add all the text formats when adding
15275         strings to the data object.
15276         * TreeNodeCollection.cs: When adding to a sorted tree we need to
15277         do some redrawing too.  Also change the UpdateNode to an
15278         UpdateBelow so the newly added node gets painted.
15279         
15280 2006-01-11  Miguel de Icaza  <miguel@novell.com>
15281
15282         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
15283         LinkLabel.cs, PropertyGrid.cs: Implement the
15284         UseCompatibleTextRendering property for 2.x
15285
15286         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
15287
15288 2006-01-11  Jackson Harper  <jackson@ximian.com>
15289
15290         * TreeView.cs: Use the property for setting the selected node so
15291         the correct events get raised.
15292         * TreeNode.cs: Update the tree when the fore/back colours of a
15293         node are set.
15294
15295 2006-01-10  Jackson Harper  <jackson@ximian.com>
15296
15297         * TreeView.cs: Allow setting SelectedNode to null.
15298
15299 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15300
15301         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
15302
15303 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15304
15305         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
15306
15307 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15308
15309         * PrintDialog.cs: Added attributes and set default property values.
15310
15311 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15312
15313         * PrintControllerWithStatusDialog.cs: 
15314         Added PrintControllerWithStatusDialog.
15315
15316 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15317
15318         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
15319         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
15320
15321 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
15322
15323         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
15324
15325 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15326
15327         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
15328         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
15329
15330 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
15331
15332         * MimeIcon.cs: Added internal class SVGUtil.
15333
15334 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
15335
15336         * FileDialog.cs: Don't crash if there are two files with the
15337           same name but different locations.
15338
15339 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
15340
15341         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
15342         dates across multiple month grids. Used to not highlight entire 
15343         month, but does now.
15344         
15345 2006-01-06  Jackson Harper  <jackson@ximian.com>
15346
15347         * MonthCalendar.cs: Removed DoEvents call to prevent a running
15348         message loop. Change timer intervals to numbers that seem more
15349         natural.
15350
15351 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
15352
15353         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
15354           object for location info since screen object is now implemented.
15355
15356 2006-01-05  Jackson Harper  <jackson@ximian.com>
15357
15358         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
15359         * AsyncMethodResult.cs: We no longer use a WeakReference for the
15360         AsyncMethodResult, this is because we ALWAYS want the
15361         ManualResetEvent to get set.
15362         * Control.cs: When disposing use an async invoke to call shutdown
15363         code, so that thigns don't block on the finalizer thread.  Also
15364         check if we even have a message loop before trying to send
15365         messages, if we don't then don't bother sending messages.
15366         - No more weak references for async methods
15367         * XplatUIDriver.cs: No more weak references for async methods.
15368
15369 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15370
15371         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
15372           returns two FontFamily with the same name
15373
15374 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
15375
15376         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
15377           drawing disabled text. Instead using the ColorGrayText color
15378
15379 2006-01-04  Jackson Harper  <jackson@ximian.com>
15380
15381         * TreeNode.cs: redraw the node when its image index is changed.
15382
15383 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
15384
15385         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
15386           time I checked there are no others like it.
15387
15388 2006-01-04  Jackson Harper  <jackson@ximian.com>
15389
15390         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
15391         this gives the behavoir I was looking for.
15392         * Control.cs: Special case Invoking EventHandlers, this matches MS
15393         and fixes part of bug #76326.
15394
15395 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15396
15397         * ThemeClearlooks.cs, FileDialog.cs:
15398           - Reflect the latest Theme class changes
15399           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
15400             with DateTime
15401             
15402 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15403
15404         * Theme.cs: Cache UI resource images and resize them if needed
15405
15406 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
15407
15408         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
15409           is called. This fixes the crash in Nexxia when setting the font
15410           attributes in the chat. [However, RTF needs a look-over to make sure
15411           that all SelectionXXX methods handle the special case that selection
15412           is empty and therefore the change must be applied to all text starting
15413           at the cursor/selection start]
15414
15415 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
15416
15417         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15418           XplatUIOSX.cs: Added SendMessage and PostMessage methods
15419         * X11Keyboard.cs: Switched to new way of calling PostMessage
15420
15421 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
15422
15423         * Theme.cs: Added theme interface for images to allow the theme to
15424           control what images are used for things like FileDialog, MessageBox
15425           icons, etc.
15426         * MessageBox.cs: Now uses the new Theme icon/image interfaces
15427
15428 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
15429
15430         * FileDialog.cs:
15431           - Removed some dead code
15432           - Opening a recently used file does work now
15433           - Small UI enhancements
15434           - Refactoring
15435
15436 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
15437
15438         * FileDialog.cs: Forgot too add __MonoCS__
15439
15440 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
15441
15442         * FileDialog.cs: We are able to read recently used files now let's
15443           go on and write them.
15444
15445 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
15446
15447         * FileDialog.cs: Breathe some life into "last open"/"recently used"
15448           button
15449         * MimeIcon.cs: Do a check for the top level media type also
15450
15451 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
15452
15453         * ThemeClearlooks.cs:
15454           - Added CPDrawStringDisabled
15455           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
15456             some chars if the text doesn't fit into text_rect
15457           - DrawListViewItem: If View = View.LargeIcon center the image;
15458             rewrote the drawing of ListViewItem.Text if View = 
15459             View.LargeIcon
15460
15461 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
15462
15463         * MimeIcon.cs: Use default KDE icon theme if there is no
15464           "48x48" directory for the current icon theme, fixes #77114
15465         * Mime.cs: Disable not working and actually not used code. 
15466         * ThemeWin32Classic.cs:
15467           - Replace "new SolidBrush" in GetControlBackBrush and
15468             GetControlForeBrush with ResPool.GetSolidBrush
15469           - Changed DrawListViewItem from private to protected virtual
15470         * FileDialog.cs:
15471           - Added form.MaximizeBox = true
15472           - Don't throw an exception if there is a broken symbolic link
15473
15474 2005-12-23  Jackson Harper  <jackson@ximian.com>
15475
15476         * TabControl.cs: Give the panels focus, keyboard navigation is
15477         fixed so this works correctly now.
15478         - We need these key events also.
15479         * ToolBar.cs: Remove some of the poor mans double buffering.
15480         
15481 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
15482
15483         * ComboBox.cs: The internal TextBox now returns the focus.
15484
15485 2005-12-23  Jackson Harper  <jackson@ximian.com>
15486
15487         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
15488
15489 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
15490
15491         * Control.cs: Removed debug code
15492         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
15493           implicit children
15494
15495 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
15496
15497         * Control.cs: When creating the control, update the Z-order after
15498           all it's children are created, too. (Fixes nexxia not showing
15499           picturebox bug)
15500
15501 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
15502
15503         * Control.cs: Do not update the anchoring distances if layout is
15504           suspended, instead do it once layout is resumed
15505
15506 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
15507
15508         * Control.cs: 
15509           - After many hours of debugging, for both Jackson and
15510             myself, it turns out that it helps to set the parent of a control
15511             if you want to actually see it onscreen. In the spirit of that
15512             discovery, we're now setting the parent of the control and
15513             it's children when the control's handle is created. This fix
15514             will make Lutz Roeder's Reflector run happily. 
15515           - now just creating the handle instead of the whole control when
15516             getting a graphics context for the control.
15517
15518 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
15519
15520         * ScrollableControl.cs: When calculating the canvas, don't consider
15521           the scrollbar widths. Instead, predict if horizontal scrollbar
15522           will affect canvas when deciding on vertical display and vice versa.
15523
15524 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
15525
15526         * RichTextBox.cs: Set default RTF font for documents that don't
15527           have a font table (Fixes #77076)
15528
15529 2005-12-22  Jackson Harper  <jackson@ximian.com>
15530
15531         * TextBoxBase.cs: It's difficult to do, but you can have an empty
15532         clipboard. This prevents a NullRef in that case.
15533         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
15534         clipboard. PRIMARY is for the currently selected text only. (We
15535         should implement PRIMARY at some point.
15536
15537 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15538
15539         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
15540           a Unicode function with a structure that was defined in Ansi way.
15541           This fixes #76942.
15542
15543 2005-12-21  Jackson Harper  <jackson@ximian.com>
15544
15545         * StatusBar.cs: Statusbar handles its fore/back colours on it's
15546         on. Because thats how it rolls. (and this avoids it using ambient
15547         colours).
15548         * ThemeWin32Classic.cs: Use the proper back color for filling.
15549         * Menu.cs: Use the system menu bar color for drawing menu
15550         bars. Using the window back color will bring ambient colours into
15551         the picture.
15552
15553 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
15554
15555         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
15556           Bitmaps were created and not disposed.
15557
15558 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15559
15560         * Control.cs (CreateControl): Don't do anything if the control is
15561           already created, otherwise we'd fire the OnCreated event more than
15562           once
15563
15564 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15565
15566         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
15567           will always match. Instead return -1. Fixes #76464.
15568
15569 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15570
15571         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
15572           neither the beginning nor the end of the line (Fixes bug #76479)
15573
15574 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15575
15576         * Control.cs:
15577           - ControlNativeWindow.ControlFromHandle(): Now handling situation
15578             where handle is invalid
15579           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
15580             instead of slower linear search
15581         * NativeWindow.cs: Don't remove the window from the hashtable until
15582           after the driver has destroyed it (since the driver might use
15583           Control.FromHandle to lookup the control object
15584         * Hwnd.cs: Added DestroyPending property to track if a window is 
15585           already destroyed as far as the driver is concerned and only hasn't
15586           yet notified the control
15587         * XplatUIX11.cs:
15588           - Activate(): Check if the window is still valid before using the 
15589             handle
15590           - Implemented DestroyChildWindow() method to mark child windows as
15591             destroyed when a window is destroyed. This prevents situations 
15592             where we might call an X method based on queued events for a
15593             window that already has been destroyed but we haven't yet pulled
15594             the destroy method from the queue.
15595           - Added a call to the new DestroyChildWindow() method to the drivers
15596             DestroyWindow code. Also now marking the destroyed window itself
15597             as pending
15598
15599 2005-12-20  Jackson Harper  <jackson@ximian.com>
15600
15601         * StatusBar.cs:
15602         * StatusBarPanel.cs: Don't calculate panel sizes on draw
15603         anymore. Just do them when needed, also track the rects of panels
15604         so that we can optimize refreshing more in the future.
15605
15606 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
15607
15608         * ColorDialog.cs: Fixed focus drawing in small color controls
15609
15610 2005-12-19  Jackson Harper  <jackson@ximian.com>
15611
15612         * InternalWindowManager.cs:
15613         * MdiWindowManager.cs: Cleanup some coordinate system changes so
15614         moving windows works properly.
15615
15616 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
15617
15618         * Control.cs: 
15619           - Removed call to InitLayout() from SetBoundsCore(); doc says
15620             it's only called when a control is added to a container
15621           - Split InitLayout logic, moved to separate UpdateDistances() method
15622             since we need to perform those calculations more often than just
15623             when adding the control to a container. (Needed to fix #77022)
15624           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
15625           - Reduced the OnBindingContextChanged events count, don't send them
15626             unless the control is created, we still aren't totally matching
15627             MS, but I can't quite figure out some of their rules
15628
15629 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15630
15631         * ThemeClearlooks.cs: Corrected distance between ProgressBar
15632           stripes
15633
15634 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15635
15636         * ThemeClearlooks.cs:
15637           - Updated ProgressBar drawing
15638           - Corrected drawing of ScrollBars and scroll buttons
15639           - Some temporary fixes for minor pixel artefacts
15640
15641 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
15642
15643         * Control.cs:
15644           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
15645             cause events to be sent in the same order as MS does.
15646           - Added ChangeParent() method to trigger various OnXXXChanged events
15647             that need to be fired when a parent changes (This is a reworking
15648             of the patch from r54254, with the X11 errors fixed)
15649           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
15650             since on MS we get OnLayoutChanged events when calling Clear()
15651           - Changed Enabled property to consider parent state as well, if a
15652             parent is not enabled, the control will not be either
15653           - Changed Parent property to simply call Controls.Add() since that
15654             now does all the work required, this way we avoid code duplication
15655           - Threw in a few OnBindingsContextChanged calls to try and match
15656             when MS sends them. We seem to send a few too many, though.
15657           - Added call to CreateControl when adding the control to a parent.
15658             We were never calling CreateControl. Still needs some work, in
15659             some places we treat HandleCreated and ControlCreated as equal, 
15660             which is wrong
15661           - Removed obsolete commented out code from UpdateZOrder()
15662
15663 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15664
15665         * ThemeClearlooks.cs: Updated TrackBar drawing.
15666
15667 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15668
15669         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
15670
15671 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15672
15673         * FileDialog.cs: Add the Help button and the open readonly
15674           checkbox only if needed
15675
15676 2005-12-16  Jackson Harper  <jackson@ximian.com>
15677
15678         * Control.cs: Make sure we have an active menu before trying to
15679         process commands on it. Prevents menu-less forms from crashing
15680         when Alt is pressed.
15681         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
15682         Dieter Bremes.
15683         * RichTextBox.cs: Expand statement to help out gmcs and fix the
15684         2.0 build.
15685
15686 2005-12-16  Jackson Harper  <jackson@ximian.com>
15687
15688         * InternalWindowManager.cs: Don't translate tool windows screen
15689         coordinates. This fixes windows 'bouncing' around when being moved.
15690
15691 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15692
15693         * TextBoxBase.cs:
15694           - MaxLength now treats 2^31-1 equal to unlimited length (this is
15695             not quite MS compatible, MS uses that number only for single line
15696             and 2^32-1 for multi-line, but I figure it won't hurt keeping
15697             the limit at 2GB)
15698           - Now enforcing the MaxLength limit when entering characters
15699           - Added argument to internal Paste() method to track if it's called
15700             from programatically or via keyboard, since keyboard driven pastes
15701             need to enforce max-length
15702           - Added logic to Paste to only paste as many chars as MaxLength 
15703             allows
15704         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
15705         * TextControl.cs:
15706           - Added Length property to return number of characters in document
15707           - Added private CharCount property which only tracks actual chars
15708             in the document (no linefeeds) and fires event when CharCount
15709             changes
15710           - Added tracking of character count to all methods that alter it
15711           - Added LengthChanged event to allow applications to subscribe
15712             to any changes to the document
15713
15714 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15715
15716         * TextBox.cs: 
15717           - Removed local password_char field (moved to TextBoxBase)
15718           - Now setting the document's password var when password is
15719             set
15720         * TextBoxBase.cs:
15721           - Added password_char field (needed here so MultiLine can
15722             access it)
15723           - Added logic to MultiLine property setter to set the document's
15724             variable when password display is allowed
15725           - Removed debug code and made some debug code conditional
15726         * TextControl.cs:
15727           - Added RecalculatePasswordLine() method to handle special password
15728             char only lines
15729           - Added PasswordChar property, also added related tracking vars
15730           - Draw() method now uses local text var for grabbing text to draw,
15731             this var is set to line.text unless we're doing password display,
15732             then it is set to the pre-generated all-password-chars line
15733           - Added calling RecalculatePasswordLine() method for password lines
15734
15735 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15736
15737         * Hwnd.cs: 
15738           - Added Reparented property to allow tracking of Window Manager
15739             reparenting actions (which affect X/Y calculations of toplevel 
15740             windows)
15741           - Made ToString() print window handles in hex
15742         * XplatUIX11.cs:
15743           - AddConfigureNotify(): Now uses reparented state off Hwnd to
15744             determine if X/Y needs offsetting
15745           - AddConfigureNotify(): Fixed offset calculations
15746           - Now adds ReparentNotify messages into the queue
15747           - Now processes ReparentNotify messages and causes a 
15748             WM_WINDOWPOSCHANGED message to be sent upstream if a window
15749             is reparented (as most likely it's X/Y coordinates are changed
15750             due to that)
15751
15752 2005-12-14  Jackson Harper  <jackson@ximian.com>
15753
15754         * XplatUIX11.cs: Tool windows still need to respek focus.
15755
15756 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15757
15758         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
15759           have a working release
15760
15761 2005-12-13  Jackson Harper  <jackson@ximian.com>
15762
15763         * Form.cs: Update styles after setting the border style regardless
15764         of whether or not the window is using a window manager.
15765
15766 2005-12-13  Jackson Harper  <jackson@ximian.com>
15767
15768         * Form.cs: We now hook into an internal window manager instead of just an
15769         MDI subsystem, this is so we can have properly behaving tool windows.
15770         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
15771         * InternalWindowManager.cs: New internal class that acts as a
15772         window manager for tool windows and as a base for mdi windows.
15773         * MdiWindowManager.cs: New class that acts as a window manager for
15774         mdi windows.
15775
15776 2005-12-12  Jackson Harper  <jackson@ximian.com>
15777
15778         * Control.cs: Updates so we match behavoir for for implicit
15779         controls. Fixes explosions in MDI.
15780
15781 2005-12-12  Jackson Harper  <jackson@ximian.com>
15782
15783         * Control.cs: Implement Invalidate (Region).
15784
15785 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
15786
15787         * Control.cs: 
15788           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
15789             the same events as MS does. MS fires events for each property 
15790             except, for unknown reasons, Cursor, when the control is reparented. 
15791             I can't seem to totally match add/remove since MS also fires some 
15792             VisibleChanged events, which makes no sense. Consolidated the
15793             parenting code into a separate method so it can be called from
15794             both Add and Remove. set_Parent no longer needs any special logic
15795             as it calls the parent's add method which implicitly fires
15796             all events
15797           - Removed some obsolete code and debug output
15798           - Enabled state is inherited from parents, if this is enabled
15799
15800 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
15801
15802         * Form.cs: Removed commented out code
15803
15804 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
15805
15806         * Control.cs:
15807           - Added internal version of Invoke, with additional argument 
15808             indicating if we're calling it from a Dispose() handler. That
15809             way we can avoid BeginInvoke throwing an exception if we're
15810             calling for an already destroyed window.
15811           - Added a dispose argument to BeginInvokeInternal, and made the
15812             check if a valid window handle chain exists conditional on
15813             it not being a dispose call
15814           - Removed code in DestroyHandle to destroy our children. Since we
15815             now handle the WM_DESTROY message we will catch all our children
15816             being destroyed.
15817           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
15818         * Form.cs:
15819           - Added a field to track the application context of the form.
15820           - No need to set closing variable as response to WM_CLOSE, instead
15821             we destroy the window. We also call PostQuitMessage if the form
15822             has an application context (which makes it the main app form,
15823             which, when closed terminates the app)
15824         * XplatUI.cs:
15825           - Dropped Exit() method, it's naming was confusing
15826           - Added PostQuitMessage() which causes GetMessage to return false
15827             once the message queue is empty
15828         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
15829           PostQuitMessage()
15830         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
15831           no longer a valid XplatUI method, but left it in since it's used
15832           internally. Added empty PostQuitMessage() method.
15833         * MenuAPI.cs: Replaced call to Exit() with call to
15834           PostQuitMessage, even though this is probably no longer needed.
15835         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
15836         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
15837         * Application.cs:
15838           - Replaced call to XplatUI.Exit() with PostQuitMessage()
15839           - Removed old debug code that would call XplatUI for exception
15840             display, enabled standard exception handling (Still not enabled
15841             though, until NativeWindow's ExternalExceptionHandler define
15842             is removed
15843         * NativeWindow.cs:
15844           - Added internal method to allow control to update NativeWindow
15845             after a window has been destroyed
15846           - Added handling of already destroyed windows when calling i
15847             DestroyWindow
15848           - Added removal of handle from list on ReleaseHandle
15849         * XplatUIX11.cs:
15850           - Dropped GetMessageResult var and related code
15851           - Added PostQuitState to field to track if PostQuitMessage has been
15852             called
15853           - Dropped Exit() method
15854           - Added PostQuitMessage() method
15855           - GetMessage now will return false if PostQuitState is set and no
15856             more messages are in the queue.
15857           - Expose handler will no longer generate WM_PAINT messages if we are
15858             in PostQuitState since it's very likely any windows have already
15859             been destroyed, and since Hwnd won't get updated until we have
15860             processed the DestroyNotify we'd be causing X errors.
15861         
15862 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15863
15864         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
15865           Thanks to Mike for pointing out the err of my ways.
15866
15867 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15868
15869         * Control.cs(PreProcessMessage): Moved menu handling back, but
15870           after all other key handling, to match MS (who handles Menu in
15871           DefWndProc)
15872         * Menu.cs (WndProc): Removed my brainfart
15873
15874 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15875
15876         * Control.cs(PreProcessMessage): Removed special menu handling 
15877         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
15878
15879 2005-12-07  Mike Kestner  <mkestner@novell.com>
15880
15881         * Control.cs : special case SYSKEYUP so that we can adjust keynav
15882         state according in tracker.
15883         * Menu.cs : promote tracker field to base class and provide a tracker
15884         lookup capability.  Add/Remove shortcuts dynamically if the top menu
15885         has a tracker. Unparent items that are removed from the collection.
15886         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
15887         * Theme*.cs: add always_show_hotkeys field to support configurability
15888         of mnemonic display.  win32 doesn't show mnemonics until Alt is
15889         pressed.
15890
15891 2005-12-07  Jackson Harper  <jackson@ximian.com>
15892
15893         * MdiChildContext.cs: Use Control.ResetCursor.
15894         * Control.cs: ResetCursor needs to set the property so that the
15895         correct XplatUI call gets made.
15896
15897 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15898
15899         * Control.cs: More fixes to make our key events match MS. We
15900           were not setting the modifier state on KeyData, and we were
15901           not generating any events when Alt was pressed with a key
15902           since handling of WM_SYSxxx was missing for the OnKey methods.
15903
15904 2005-12-07  Jackson Harper  <jackson@ximian.com>
15905
15906         * MdiChildContext.cs: reenable the sizing code.
15907         - When the mouse leaves a window reset its cursor.
15908
15909 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15910
15911         * ThemeClearlooks.cs: Reflect latest Hwnd changes
15912
15913 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15914
15915         * Hwnd.cs: Now using the theme 3d bordersize to calculate
15916           widths of Fixed3D borders
15917
15918 2005-12-07  Jackson Harper  <jackson@ximian.com>
15919
15920         * MdiClient.cs: Fix warnings. Earn Mike's love.
15921
15922 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15923
15924         * ThemeClearlooks.cs:
15925           - Adjusted mouse over button color
15926           - Added first parts of CheckBox drawing
15927           - Added correct color for selected text background
15928           - Fixed ComboBox drawing
15929           - Added CPDrawBorder3D and CPDrawBorder
15930
15931 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15932
15933         * XplatUIX11.cs: Added call to XBell for AudibleAlert
15934
15935 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
15936
15937         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15938           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
15939           alert users via sound. We could add an enum arg with different
15940           types of alerts in the future
15941
15942 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15943
15944         * Control.cs: Fix behaviour problems pointed out by Mike
15945
15946 2005-12-05  Mike Kestner  <mkestner@novell.com>
15947
15948         * StatusBarPanel.cs: add Invalidate method and hook it into all the
15949         prop setters.  Calls parent.Refresh for now, but could be maybe be
15950         optimized with an internal method on StatusBar at some point.
15951         [Fixes #76513]
15952
15953 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
15954
15955         * RichTextBox.cs: Implemented get_SelectionColor
15956
15957 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
15958
15959         * ThemeClearlooks.cs:
15960           - Removed dead code
15961           - Draw black button border only if button is Form.AcceptButton
15962           - Draw correct button color for pressed RadioButton if the mouse 
15963             has entered the button
15964           - Updated ProgressBar drawing!
15965           - Updated CPDrawSizeGrip drawing
15966           - Updated StatusBarPanel drawing
15967
15968 2005-12-05  Mike Kestner  <mkestner@novell.com>
15969
15970         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
15971         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
15972
15973 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
15974
15975         * ThemeClearlooks.cs: Initial check-in, activate with
15976           export MONO_THEME=clearlooks
15977         * ThemeEngine.cs: Added ThemeClearlooks
15978
15979 2005-12-03  Mike Kestner  <mkestner@novell.com>
15980
15981         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
15982         [Fixes #76897]
15983
15984 2005-12-02  Jackson Harper  <jackson@ximian.com>
15985
15986         * Form.cs: If the child form has no menu the default main menu is
15987         used as the active menu.
15988
15989 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
15990
15991         * ListBox.cs: Check if any items exist before trying to resolve 
15992           coordinates into items
15993
15994 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
15995
15996         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
15997           as the second color for the background hatch
15998
15999 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
16000
16001         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
16002         * RichTextBox.cs: FormatText position arguments are 1-based, now making
16003           sure that what we pass to FormatText is always 1-based. Fixes #76885
16004
16005 2005-11-29  Miguel de Icaza  <miguel@novell.com>
16006
16007         * NumericUpDown.cs (EndInit): When we are done initializing,
16008         reflect any updates on the UI.
16009
16010 2005-12-02  Jackson Harper  <jackson@ximian.com>
16011
16012         * ImplicitHScrollBar.cs:
16013         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
16014         their container controls.
16015         * TreeView.cs: Use the new implicit scrollbars.
16016
16017 2005-12-02  Jackson Harper  <jackson@ximian.com>
16018
16019         * TreeView.cs: Make top_node internal so the TreeNodeCollections
16020         can play with it.
16021         * TreeNodeCollection.cs: If we remove the topnode we need to
16022         update topnode to the next node in line.
16023         - When clearing nodes go through the same process as removing
16024         them, so they get depareneted and checked if they are top node.
16025
16026 2005-12-01  Jackson Harper  <jackson@ximian.com>
16027
16028         * TreeView.cs: When imagelists are used the image area is
16029         selectable as well as the text.
16030         - If there are no selected nodes select the first one.
16031         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
16032         so don't do it more then we need to.
16033
16034 2005-12-01  Jackson Harper  <jackson@ximian.com>
16035
16036         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
16037         that arrows can be scaled.
16038
16039 2005-12-01  Jackson Harper  <jackson@ximian.com>
16040
16041         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
16042         fail. Patch by Dieter Bremes
16043
16044 2005-11-30  Jackson Harper  <jackson@ximian.com>
16045
16046         * Form.cs: Property is 2.0 only
16047         * PrintDialog.cs: Signature fix.
16048
16049 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
16050
16051         * TextControl.cs: 
16052           - No longer artificially moves text 2 pixels down (now that we have
16053             borders this is no longer needed)
16054           - Added calcs for left, hanging and right indent
16055
16056 2005-11-23  Mike Kestner  <mkestner@novell.com>
16057
16058         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
16059
16060 2005-11-30  Jackson Harper  <jackson@ximian.com>
16061
16062         * MdiChildContext.cs: Set the cloned menus forms, as these don't
16063         get cloned as part of CloneMenu ().
16064         * Menu.cs: Make sure the parent of the items get set correctly
16065         when they are added.  And the owners are notified of the changes.
16066         * Form.cs: Create an ActiveMenu property, so that when MDI is used
16067         we can change the menu being displayed/handled by the form without
16068         changing the menu assosciated with the form.
16069         - Don't let Mdi children draw/handle menus.
16070         
16071 2005-11-30  Jackson Harper  <jackson@ximian.com>
16072
16073         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
16074         a MenuChanged event. Just to make the API a little more
16075         consistent.
16076         * MainMenu.cs:
16077         * MenuItem.cs: Use the new OnMenuChanged
16078         * MdiChildContext.cs: Handle menu merging.
16079         * Form.cs: Implement MergedMenu.
16080         
16081 2005-11-30  Jackson Harper  <jackson@ximian.com>
16082
16083         * Menu.cs: We were misusing Add. Add goes behind the specified
16084         index according to the docs, and does not replace the specified
16085         index. So I added an Insert method.
16086
16087 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
16088
16089         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
16090           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
16091           is for Jackson
16092         * RichTextBox.cs: Added calls to base for DnD events
16093
16094 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
16095
16096         * TextControl.cs:
16097           - Fixed drag-selection related crash; style fixes
16098           - Implemented undo class
16099             o Implemented method to capture document state for specified
16100               range in document tree
16101             o Implemented method to restore captured document state
16102             o Implemented cursor tracking
16103             o Implemented basic undo stack
16104           - Added undo cursor tracking to methods altering cursor location
16105           - Added undo tracking to selection deletion (still missing
16106             other text-altering hookups)
16107         * RichTextBox.cs:
16108           - Added SelectionLength property
16109           - Implemented CanPaste()
16110           - Implemented Paste()
16111           - Added missing protected methods
16112           - Fixed RTF->Document conversion; now uses font index 0 and color 
16113             index 0 as the default font for the parsed text
16114           - Fixed RTF<->Document font size translation
16115           - Fixed RTF generation, now properly handles cross-tag boundaries
16116             for single line selection
16117           - No longer always appends blank line to generated RTF
16118           - Removed TODOs
16119           - Added missing attributes
16120           - Hooked up undo-related methods
16121         * TextBoxBase.cs:
16122           - Implemented Copy()
16123           - Implemented Paste()
16124           - Implemented Cut()
16125           - Fixed caret mis-behaviour on backspace across line-boundaries
16126
16127 2005-11-29  Jackson Harper  <jackson@ximian.com>
16128
16129         * MdiClient.cs: Add a method for activating mdi children. Very
16130         basic right now. I imagine someday it might need more girth.
16131         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
16132         children windows names are added to the menu item.
16133         * ThemeWin32Classic.cs: Draw the arrow if the item is an
16134         mdilist. This happens regardless of whether or not there are any
16135         mdi windows to see in the list, and according to my tests happens
16136         before the items are even added. Also happens if there isn't even
16137         an mdi client to get windows from.
16138
16139 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
16140
16141         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
16142         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
16143
16144 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
16145
16146         * DataGridTableStyle.cs:
16147           - Create always the styles for the missing columns even if they are
16148             provided by the user (not default table style)
16149         * DataGrid.cs:
16150           - Fixes bug 76770
16151           - Fixes SetDataBinding (always re-attach source)
16152           - Fixes SetNewDataSource (only clear styles if they are not for 
16153             this source)
16154          -  Expands OnTableStylesCollectionChanged to handle style refresh 
16155             and remove properly
16156
16157 2005-11-29  Jackson Harper  <jackson@ximian.com>
16158
16159         * FileDialog.cs: Implement missing bits, remove some dead
16160         code.
16161         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
16162         creation of the panel so that the options set on the dialog are
16163         seen when the panel is created.
16164         * TreeView.cs: raise a click when items are clicked.
16165         
16166 2005-11-29  Jackson Harper  <jackson@ximian.com>
16167
16168         * MdiClient.cs: Pass some signature methods through to base.
16169
16170 2005-11-28  Jackson Harper  <jackson@ximian.com>
16171
16172         * ListView.cs: Raise the click event when items are clicked.
16173
16174 2005-11-28  Jackson Harper  <jackson@ximian.com>
16175
16176         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
16177         a nullref.
16178
16179 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
16180
16181         * ThemeNice.cs: - Removed 1 pixel bitmaps
16182           - Use SmoothingMode.AntiAlias where it makes sense
16183             (ScrollButton arrow for example)
16184           - Enhanced Button focus drawing
16185           - Fixed ComboBox drawing (no artefacts anymore, focus
16186             rectangle is back again, reduced size of ComboButton, etc.)
16187           - Fixed RadioButton focus drawing for Appearence.Button
16188           - Slight ScrollButton redesign
16189           - Some LinearGradientBrush size fixes
16190           - GroupBoxes have now rounded edges
16191           - Fixed StatusBar drawing
16192
16193 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
16194
16195         * ThemeNice.cs: - Remove dead code
16196           - use correct background colors for menus, etc.
16197           - Fake pixel drawing with 1 pixel bitmaps
16198
16199 2005-11-24  Jackson Harper  <jackson@ximian.com>
16200
16201         * MdiClient.cs: Size the scrollbars when resizing the window.
16202         - Resize the maximized windows when the client is resized
16203         * Form.cs: Make the child context available
16204         
16205 2005-11-23  Jackson Harper  <jackson@ximian.com>
16206
16207         * MdiChildContext.cs: Don't size windows if they are maximized.
16208
16209 2005-11-23  Mike Kestner  <mkestner@novell.com>
16210
16211         * ContextMenu.cs: use MenuTracker.
16212         * Control.cs: remove menu handle usage.
16213         * Form.cs: remove menu handle usage.
16214         * Hwnd.cs: remove menu handle usage.
16215         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
16216         motion and clicks to the new Tracker handlers.
16217         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
16218         and handle usage.
16219         * MenuAPI.cs: refactored to combine popup and menubar event handling.
16220         Killed the MENU and MENUITEM data types and associated collections
16221         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
16222         MenuTracker class that exposes the leftovers from the old MenuAPI
16223         static methods. Restructured Capture handling so that only one grab is
16224         done for the entire menu hierarchy instead of handing off grabs to
16225         submenus. Tracker now has an invisible control to Capture when active.
16226         * MenuItem.cs: add sizing accessors, kill Create
16227         and handle usage.
16228         * Theme.cs: remove menu handle and MENU(ITEM) usage.
16229         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
16230         MENU(ITEM). remove menu handle usage, use Menu directly.
16231         * XplatUIDriver.cs: remove menu handle usage.
16232         * XplatUIOSX.cs: remove menu handle usage.
16233         * XplatUIWin32.cs: remove menu handle usage.
16234         * XplatUIX11.cs: remove menu handle usage.
16235
16236 2005-11-22  Jackson Harper  <jackson@ximian.com>
16237
16238         * Hwnd.cs: Don't compute the menu size for
16239         DefaultClientRectangle.
16240         - Reenable menu sizes being computed for GetClienRectangle.
16241         * Form.cs: Remove comment of trechery
16242         
16243 2005-11-22  Jackson Harper  <jackson@ximian.com>
16244
16245         * Hwnd.cs: The adjustments for the menu bar are made when it is
16246         attached to the form.
16247
16248 2005-11-19  Jackson Harper  <jackson@ximian.com>
16249
16250         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
16251         (just like on windows).
16252
16253 2005-11-19  Jackson Harper  <jackson@ximian.com>
16254
16255         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
16256         use real buttons anymore because they are in non client area. The
16257         one TODO here is that I need to somehow invalidate a section of
16258         the non client area.
16259
16260 2005-11-18  Jackson Harper  <jackson@ximian.com>
16261
16262         * Control.cs: Put the enum check back in now that MDI doesnt have
16263         to use this to set border styles.
16264         * Form.cs: Only set mdi child windows borders if the handle has
16265         been created.
16266         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
16267         this directly on to the driver.
16268         - Get the move start position before adjusting for the titlebar
16269         height, this fixes the windows "skipping" when they are first
16270         moved.
16271
16272 2005-11-18  Jackson Harper  <jackson@ximian.com>
16273
16274         * XplatUIX11.cs: Just compute the mdi borders separately as they
16275         don't totally match up with normal form borders.
16276
16277 2005-11-18  Jackson Harper  <jackson@ximian.com>
16278
16279         * Control.cs: Set WS_ styles for borders, so that the driver does
16280         not have to retrieve the control instance to figure out what kind
16281         of borders it should have.
16282         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
16283         driver can know its an mdi child easily.
16284         * XplatUIX11.cs: Get the border styles and whether the window is
16285         MDI from the Styles and ExStyles params instead of having to get a
16286         control. This prevents a chicken and egg problem.       
16287
16288 2005-11-18  Jackson Harper  <jackson@ximian.com>
16289
16290         * MdiClient.cs: Fix typo so scrollbars show up correctly.
16291
16292 2005-11-18  Jackson Harper  <jackson@ximian.com>
16293
16294         * MdiClient.cs: Calculate when to add and remove scrollbars
16295         correctly.
16296         * MdiChildContext.cs: Adjust the y position to take the titlebar
16297         into account.
16298         - No height for FormBorderStyle.None
16299
16300 2005-11-18  Jackson Harper  <jackson@ximian.com>
16301
16302         * Control.cs: Allow non enum values to be used for
16303         InternalBorderStyle.  MDI does this to set a special border style.
16304         - New utility methods for converting points to/from client coords
16305         - Add the newly created control to the Controls collection before
16306         updating its style. This way UpdateStyle can walk the control
16307         heirarchy to find the control if needed.
16308         so I don't need to create a new Point object all the time.
16309         * Form.cs: Let MDI windows handle their border styles.
16310         - Set styles on MDI windows so the correct title style is derived.
16311         * MdiChildContext.cs: Move all the painting and window handling
16312         into the non client area.
16313         - Use correct sizing and put correct buttons on frames based on
16314         the FormBorderStyle.
16315         - Notify the mdi client about scrolling
16316         - Need to handle the buttons ourselves now, because they are all
16317         in non client areas and we can't add controls there.
16318         * MdiClient.cs: Halfway to scrolling, this implementation is
16319         somewhat broken though, we need to check to make sure other
16320         windows aren't causing scrolling before removing the bars. Also
16321         the bars need to be drawn on top, maybe I can switch implicit
16322         controls to be on top.
16323         * Hwnd.cs: caption_height and tool_caption_height are now
16324         properties of an hwnd, this way they can be set by the driver
16325         based on the type of window they are.  In X11 the window manager
16326         handles the decorations so caption_height is zero unless its an
16327         MDI window.
16328         - Add 3 pixel borders for MDI windows (0xFFFF).
16329         - Get rid of some code duplication, have DefaultClientRectanle
16330         just call GetClientRectangle.
16331         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
16332         Hwnd now.
16333         - Set border styles differently for mdi windows.
16334         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
16335         Hwnd now.
16336         
16337 2005-11-15  Mike Kestner  <mkestner@novell.com>
16338
16339         * Menu.cs: when adding an item to the collection, if item is already 
16340         parented, remove it from the parent.
16341
16342 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
16343
16344         * X11DesktopColors.cs: Added KDE support
16345
16346 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
16347
16348         * XplatUIWin32.cs: 
16349           - Clipboard methods now can translate Rtf format
16350           - No longer removes clipboard contents whenever a new format is added
16351             to allow placing multiple formats on the clipboard
16352         * Clipboard.cs: Clipboard now supports getting a IDataObject and
16353           will place all formats contained in it onto the clipboard. Also
16354           now cleans the clipboard before placing a new object onto it
16355         * RichTextBox.cs:
16356           - Implemented set_Rtf
16357           - Implemented set_SelectedRtf
16358           - Created InsertRTFFromStream() method to allow single code base
16359             for all properties and methods that insert RTF into document
16360           - Removed debug output
16361         * TextControl.cs:
16362           - Fixed Delete(int) to fix up line numbers
16363           - Fixed ReplaceSelection to combine start and end line
16364           - Fixed serious DeleteChars bug that would leave the document tree
16365             broken
16366           - Improved DumpTree with several logic checks to detect broken
16367             document trees
16368           - Removed debug lines
16369           - Fixed Caret.WordForward/WordBack moving code, now always also 
16370             updates caret.tag (fixes crash when word-selecting across tag
16371             boundaries via keyboard)
16372           - Added Insert() method for inserting multiline text into documents
16373           - Fixed DeleteChars() calculation errors that would cause a broken
16374             tag chain with multiple tag lines
16375           - DeleteChars() no longer crashes on multi-tag lines if not all tags
16376           - Split() no longer moves caret if split is at caret location
16377           - ReplaceSelection() now updates the cursor and re-displays it
16378           - ReplaceSelection() now uses new Insert() method to avoid code
16379             duplication
16380           - FormatText() can now handle formatting partial lines
16381         * TextBoxBase.cs:
16382           - Append now uses new TextControl.Insert() method (this avoids 
16383             duplicate code)
16384           - Implemented Ctrl-X (Cut) (
16385           - Implemented Ctrl-C (Copy)
16386           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
16387             regeneration when pasting text; roundtripping Copy&Paste within
16388             edit control still fails due to some calculation bugs in GenerateRTF)
16389           - The Delete key will now remove the current selection if it is visible
16390         * TextBox.cs: Removed debug lines
16391         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
16392           driver to be initialized and can't therefore be done via a static ctor)
16393
16394 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
16395
16396         * TextControl.cs: Added backend code for finding char arrays and strings
16397         * TextBoxBase.cs:
16398           - Added mouse wheel scroll support
16399           - Added support for VScroll and HScroll events
16400         * RichTextBox.cs:
16401           - Implemented all seven Find() variants
16402           - Implemented GetCharFromPosition()
16403           - Implemented GetCharIndexFromPosition()
16404           - Implemented GetLineFromIndex()
16405           - Implemented GetPositionFromCharIndex();
16406           - Implemented SaveFile for PlainText and UnicodeText
16407           - Fixed set_Font, now setting a new font applies that font to
16408             the whole document
16409           - Implemented generic Document to RTF converter
16410           - Implemented SaveFile for RichText format (still missing unicode
16411             conversion for non-ansi chars)
16412           - Implemented get_Rtf
16413           - Implemented get_SelectedRtf
16414
16415 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
16416
16417         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
16418           to allow any captures to be released before triggering OnClick. This
16419           way a click handler may capture the mouse without interference.
16420         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
16421           This way we send them even though X may not allow a grab (if the window
16422           isn't visible, for example)
16423
16424 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
16425
16426         * DataGridViewRowEventArgs.cs: DataGridView implementation
16427         * DataGridViewElement.cs: DataGridView implementation
16428         * DataGridViewComboBoxCell.cs: DataGridView implementation
16429         * DataGridViewDataErrorContexts.cs: DataGridView implementation
16430         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
16431         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
16432         * ImageLayout.cs: DataGridView implementation
16433         * DataGridViewComboBoxColumn.cs: DataGridView implementation
16434         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
16435         * DataGridViewSelectionMode.cs: DataGridView implementation
16436         * IDataGridViewEditingControl.cs: DataGridView implementation
16437         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
16438         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
16439         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
16440         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
16441         * DataGridViewColumnSortMode.cs: DataGridView implementation
16442         * DataGridView.cs: DataGridView implementation
16443         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
16444         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
16445         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
16446         * Padding.cs: DataGridView implementation
16447         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
16448         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
16449         * DataGridViewRowEventHandler.cs: DataGridView implementation
16450         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
16451         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
16452         * DataGridViewButtonCell.cs: DataGridView implementation
16453         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
16454         * DataGridViewEditMode.cs: DataGridView implementation
16455         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
16456         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
16457         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
16458         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
16459         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
16460         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
16461         * DataGridViewCellEventHandler.cs: DataGridView implementation
16462         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
16463         * DataGridViewCellStyleConverter.cs: DataGridView implementation
16464         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
16465         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
16466         * DataGridViewColumnEventArgs.cs: DataGridView implementation
16467         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
16468         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
16469         * QuestionEventArgs.cs: DataGridView implementation
16470         * IDataGridViewEditingCell.cs: DataGridView implementation
16471         * DataGridViewTriState.cs: DataGridView implementation
16472         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
16473         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
16474         * DataGridViewColumnCollection.cs: DataGridView implementation
16475         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
16476         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
16477         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
16478         * DataGridViewColumn.cs: DataGridView implementation
16479         * DataGridViewCellBorderStyle.cs: DataGridView implementation
16480         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
16481         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
16482         * DataGridViewRow.cs: DataGridView implementation
16483         * DataGridViewImageCellLayout.cs: DataGridView implementation
16484         * DataGridViewImageCell.cs: DataGridView implementation
16485         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
16486         * DataGridViewCheckBoxCell.cs: DataGridView implementation
16487         * DataGridViewHeaderCell.cs: DataGridView implementation
16488         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
16489         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
16490         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
16491         * DataGridViewTextBoxColumn.cs: DataGridView implementation
16492         * QuestionEventHandler.cs: DataGridView implementation
16493         * DataGridViewCellStyleScopes.cs: DataGridView implementation
16494         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
16495         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
16496         * DataGridViewCell.cs: DataGridView implementation
16497         * DataGridViewCellEventArgs.cs: DataGridView implementation
16498         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
16499         * DataGridViewCellStyle.cs: DataGridView implementation
16500         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
16501         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
16502         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
16503         * TextFormatFlags.cs: DataGridView implementation
16504         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
16505         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
16506         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
16507         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
16508         * DataGridViewButtonColumn.cs: DataGridView implementation
16509         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
16510         * HandledMouseEventArgs.cs: DataGridView implementation
16511         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
16512         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
16513         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
16514         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
16515         * DataGridViewRowCollection.cs: DataGridView implementation
16516         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
16517         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
16518         * DataGridViewHitTestType.cs: DataGridView implementation
16519         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
16520         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
16521         * DataGridViewColumnEventHandler.cs: DataGridView implementation
16522         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
16523         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
16524         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
16525         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
16526         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
16527         * DataGridViewContentAlignment.cs: DataGridView implementation
16528         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
16529         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
16530         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
16531         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
16532         * DataGridViewPaintParts.cs: DataGridView implementation
16533         * DataGridViewCellCollection.cs: DataGridView implementation
16534         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
16535         * DataGridViewImageColumn.cs: DataGridView implementation
16536         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
16537         * DataGridViewElementStates.cs: DataGridView implementation
16538         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
16539         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
16540         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
16541         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
16542         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
16543         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
16544         * DataGridViewRowHeaderCell.cs: DataGridView implementation
16545         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
16546         * DataGridViewTextBoxCell.cs: DataGridView implementation
16547         * DataGridViewBand.cs: DataGridView implementation
16548         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
16549         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
16550         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
16551         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
16552         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
16553         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
16554         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
16555         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
16556         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
16557         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
16558         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
16559
16560 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
16561
16562         * ThemeWin32Classic.cs: 
16563           - Draw the outside focus rectangle around buttons
16564           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
16565             doesn't use end caps for every dash of a line anymore. This
16566             workaround ignores the forecolor.
16567
16568 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
16569
16570         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
16571           endian safe.
16572
16573 2005-11-07  Jackson Harper  <jackson@ximian.com>
16574
16575         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
16576
16577 2005-11-07  Jackson Harper  <jackson@ximian.com>
16578
16579         * ScrollableControl.cs: Calculate the maximum and change vars
16580         (more) correctly so that scrollbars appear as a sensible size.
16581
16582 2005-11-04  Jackson Harper  <jackson@ximian.com>
16583
16584         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
16585         collection.
16586         * TreeView.cs: When the tree is sorted null out the top_node so
16587         that it is recalculated.
16588         - Use dotted lines instead of dashed lines to match MS better.
16589
16590 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
16591
16592         * ListView.cs: 
16593           - Implements key search for items. Useful when browsing files with FileDialog
16594           - When changing view mode or when clear the items reset scrollbar positions
16595
16596 2005-11-04  Jackson Harper  <jackson@ximian.com>
16597
16598         * CurrencyManager.cs: Implement the MetaDataChanged event, the
16599         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
16600         as to what the method may do as there is no real way of creating a
16601         derived CurrencyManager and calling the method. 
16602
16603 2005-11-03  Jackson Harper  <jackson@ximian.com>
16604
16605         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
16606         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
16607         method which seems to just be used internally to refresh the tabs.
16608
16609 2005-11-03  Jackson Harper  <jackson@ximian.com>
16610
16611         * TabControl.cs: Implement the remove method. Fix some broken
16612         comments.
16613
16614 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16615
16616         * DateTimePicker.cs:
16617           - Added missing DateTimePickerAccessibleObject class
16618           - Added missing events
16619           - Added OnFontChanged method
16620         * Form.cs: Added missing attributes
16621         * TreeView.cs: Added missing attributes
16622
16623 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
16624
16625         * GridItemCollection.cs: Fix signatures
16626
16627 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16628
16629         * XplatUI.cs: Updated build rev/date
16630         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
16631           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
16632         * Application.cs: Trigger context-specific ExitThread events
16633
16634 2005-11-03  Jackson Harper  <jackson@ximian.com>
16635
16636         * Menu.cs:
16637         * MainMenu.cs:
16638         * GridTableStylesCollection.cs:
16639         * Timer.cs:
16640         * TabPage.cs:
16641         * HelpProvider.cs:
16642         * StatusBar.cs:
16643         * MonthCalendar.cs: Signature fixes
16644
16645 2005-11-03  Jackson Harper  <jackson@ximian.com>
16646
16647         * TreeNodeCollection.cs: Remove should not be virtual.
16648         * TreeView.cs: Implement the last of the missing methods.
16649
16650 2005-11-03  Jackson Harper  <jackson@ximian.com>
16651
16652         * TreeNodeConverter.cs: Implement to get off my class-status back.
16653
16654 2005-11-03  Jackson Harper  <jackson@ximian.com>
16655
16656         * TreeView.cs: Hookup the bits for drag and drop.
16657         * TreeNode.cs: Don't cache the tree_view or index anymore, now
16658         that nodes can be moved from tree to tree easily this just causes
16659         all sorts of problems.
16660         * TreeNodeCollection: Don't need to give treenodes an index and
16661         treeview anymore when they are added, these are computed on the
16662         fly. Also make sure to remove a node before its added.
16663
16664 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16665
16666         * TextControl.cs:
16667           - Added CaretSelection enum
16668           - Added comparison methods to Marker struct, makes selection code
16669             more readable
16670           - Added SelectionStart and SelectionEnd as 'moveable' location for
16671             the CaretDirection enum and handler
16672           - Added selection_prev variable to track optimized invalidation for
16673             word and line selection
16674           - Added SelectionVisible property (returns true if there is a valid 
16675             selection)
16676           - Switched CaretHasFocus to only display the caret if there is no
16677             visible selection
16678           - Avoiding StringBuilder.ToString to retrieve a single char, instead
16679             using the direct character index; should be much faster
16680           - Added various conditional debug statements
16681           - Fixed invalidation calculation for selection ranges
16682           - Added ExpandSelection() method to support word and line selection
16683           - Switched SetSelectionToCaret to use new Marker compare overloads
16684           - Added central IsWordSeparator() method to determine word 
16685             separators/whitespace and FindWordSeparator() to streamline common
16686             usage of IsWordSeparator()
16687         * TextBoxBase.cs:
16688           - Removed unneeded grabbed variable, it was just mirroring
16689             Control.Capture
16690           - No longer firing OnTextChanged event when Text setter is called,
16691             since the base will fire the event for us
16692           - Added handling of Ctrl-Up/Down selection
16693           - Added handling of Shift-Cursorkey selection
16694           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
16695             words
16696           - Added handling of Shift and Ctrl-Shift-Home/End selection
16697           - Removed some debug output
16698           - Added handling for single/double/tripple-click to place caret/
16699             select word/select line respectively (Fixes bug #76031)
16700           - Added support for drag expansion of word/line selection
16701         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
16702           current selection
16703
16704 2005-11-02  Jackson Harper  <jackson@ximian.com>
16705
16706         * X11Dnd.cs: If the drag is going to and from a MWF window just
16707         copy the data instead of sending it out through the X Selection
16708         mechanism.
16709
16710 2005-11-02  Jackson Harper  <jackson@ximian.com>
16711
16712         * X11Dnd.cs:
16713         * XplatUIX11.cs: When in a drag we don't want motion notify
16714         messages to get passed on to the other controls. This prevents
16715         mouse move messages from showing up in the drag source.
16716
16717 2005-11-02  Jackson Harper  <jackson@ximian.com>
16718
16719         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
16720         the correct button is release to end a drag.
16721         * XplatUIX11.cs: Make the button state internal so the drag system
16722         can access it.  Dragging needs to know about all button releases,
16723         not just left button.
16724
16725 2005-11-02  Miguel de Icaza  <miguel@novell.com>
16726
16727         * Form.cs (Icon): If the icon is null, reset the icon to the
16728         default value. 
16729
16730         * Cursor.cs: When writing the AND-mask bitmap do not include the
16731         number of colors, but hardcode those to two (black and white),
16732         fixes the loading of color cursors (Paint Dot Net).
16733
16734         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
16735         turn off autoscaling.
16736
16737         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
16738
16739 2005-11-02  Jackson Harper  <jackson@ximian.com>
16740
16741         * X11Dnd.cs: Make sure to send a status message if the pointer
16742         enters a control that can not accept a drop, otherwise the cursor
16743         isn't updated correctly. Also tried to compress the lines of code
16744         a bit.
16745
16746 2005-11-02  Jackson Harper  <jackson@ximian.com>
16747
16748         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
16749         set actions correctly.  This isn't perfect as XDND and win32 have
16750         some differences on how you allow actions. I'll clear this up by
16751         adding a path for drag from MWF to MWF windows.
16752         * XplatUIX11.cs: Hook into the dnd system.
16753
16754 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
16755
16756         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
16757         previously shown but they are no longer need it. Very obvious when 
16758         browsing files with FileDialog.
16759
16760 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
16761
16762         * Control.cs: We always need to call OnPaintBackground. We pretty much
16763           ignore AllPaintingInWmPaint and always do the painting there, whether 
16764           it's set or not, since we always ignore the WM_ERASEBKGND message 
16765           (which we don't generate on X11). This fixes #76616.
16766         * Panel.cs: Removed unneeded background painting. This happens properly
16767           in Control.cs already
16768
16769 2005-10-31  Mike Kestner  <mkestner@novell.com>
16770
16771         * Menu.cs: Add items to collection before setting their index.
16772         * MenuItem.cs : add range checking with ArgumentException like MS.
16773         [Fixes #76510]
16774
16775 2005-10-31  Jackson Harper  <jackson@ximian.com>
16776
16777         * ListBox.cs: Invalidate if the area is visible at all not just
16778         contained in the visible rect. Fixes unselection of semi visible
16779         items.
16780
16781 2005-10-31  Jackson Harper  <jackson@ximian.com>
16782
16783         * Control.cs: Consistently name the dnd methods. Make them
16784         internal so we can override them to match some MS behavoir
16785         internally.
16786         * Win32DnD.cs: Use the new consistent names.
16787
16788 2005-10-31  Jackson Harper  <jackson@ximian.com>
16789
16790         * TreeView.cs: Don't draw the selected node when we lose focus.
16791
16792 2005-10-31  Jackson Harper  <jackson@ximian.com>
16793
16794         * X11Dnd.cs: We still need to reset the state even though a full
16795         reset isn't being done, otherwise status's still get sent all over
16796         the place.
16797
16798 2005-10-31  Jackson Harper  <jackson@ximian.com>
16799
16800         * Control.cs: Make the dnd_aware flag internal so the dnd
16801         subsystem can check it. Catch exceptions thrown in dnd handlers to
16802         match MS behavoir.
16803         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
16804         * X11Dnd.cs: Handle null data in the converters. Set the XDND
16805         version when sending a XdndEnter. Use the control/hwnd dnd_aware
16806         flags to reduce the number of dnd enters/status's sent.
16807
16808 2005-10-31  Jackson Harper  <jackson@ximian.com>
16809
16810         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
16811
16812 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
16813
16814         * PictureBox.cs: Fixes 76512
16815
16816 2005-10-28  Jackson Harper  <jackson@ximian.com>
16817
16818         * X11Dnd.cs: Early implementation to support winforms being a drag
16819         source for data on X11. Also restructured the converters so they
16820         can go both ways now.
16821         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
16822         
16823 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
16824
16825         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
16826           clipboard requests
16827
16828 2005-10-27  Jackson Harper  <jackson@ximian.com>
16829
16830         * TreeNode.cs: Implement serialization so my DnD examples will work.
16831
16832 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
16833
16834         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
16835           TreeView.cs: Don't dispose objects that are not owned.
16836           
16837 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
16838
16839         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
16840           should retrieve the current cursor and report that, but XplatUI
16841           doesn't (yet) have an interface for that (and I'm not sure I even
16842           can, on X11)
16843         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
16844           until any message loop processing is done (and the WM_SETCURSOR
16845           replaces the cursor to the proper one)
16846         * XplatUIX11.cs: 
16847           - Fixed override behaviour, we can't set the cursor globally on X11, 
16848             just for our windows.
16849           - Invalidating the System.Drawing X11 display handle when we are
16850             shutting down
16851         * Control.cs: Fix to make csc happy
16852
16853 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
16854
16855         * TextBoxBase.cs: 
16856           - get_Text: Add last line (without trailing newline) to returned
16857             value (Fixes 76212)
16858           - get_TextLength: Count last line in returned length
16859           - ToString: Call Text property instead of duplicating code
16860
16861 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
16862
16863         * ImageList.cs: Dispose ImageAttributes objects.
16864
16865 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16866
16867         * ImageList.cs: Use attribute constructors with less arguments where
16868           possible.
16869
16870 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16871
16872         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
16873           Use typeof instead of strings when assembly is referenced. Added
16874           some more comments.
16875
16876 2005-10-21  Jackson Harper  <jackson@ximian.com>
16877
16878         * ListView.cs: Raise a double click event. Also tried to somewhat
16879         fix when the selectedindexchanged event is raised. Its still
16880         broken though.
16881
16882 2005-10-21  Jackson Harper  <jackson@ximian.com>
16883
16884         * TreeView.cs: New method to invalidate the plus minus area of a
16885         node without invalidating the whole node (maybe this can be used
16886         in some more places).
16887         * TreeNodeCollection.cs: When adding to an empty node we need to
16888         invalidate its plus minus area so the little block shows up.
16889         
16890 2005-10-21  Jackson Harper  <jackson@ximian.com>
16891
16892         * TreeView.cs: Make sure that when we invalidate a node the bounds
16893         are big enough to cover the selected box and the focus
16894         rectangle. Use a different colour for the lines connecting nodes
16895         so they show up with all themes.
16896
16897 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16898
16899         * NativeWindow.cs: Don't call anything that could call into the driver,
16900           we might be on a different thread.
16901
16902 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
16903
16904         * Control.cs(Dispose): Since Dispose might run on a different thread,
16905           make sure that we call methods that could call into the driver via
16906           invoke, to avoid thread issues
16907
16908 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16909
16910         * XplatUI.cs: Removed finalizer
16911         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
16912           not allowing to be called on the finalizer thread.
16913
16914 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
16915
16916         * ImageList.cs:
16917           - Reverted r51889 and r51891.
16918           - Added ImageListItem class that stores unmodified image items and image
16919             properties required to create list images until handle is created.
16920           - Added AddItem and moved image creation logic to AddItemInternal.
16921           - Added CreateHandle method that creates images based on unmodified items.
16922           - Added DestroyHandle that changes state to store unmodified items.
16923           - Add and AddStrip methods no more create handle.
16924           - ReduceColorDepth has no return value.
16925           - Dispose destroys handle.
16926           - Modified other methods to reflect the above changes.
16927           - Implemented key support.
16928           - Added profile 2.0 members and attributes.
16929           - Added private Reset and ShouldSerialize methods that provide the same
16930             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
16931             them as they are private.
16932           - Added some more comments about implementation details.
16933
16934 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16935
16936         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
16937
16938 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16939
16940         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
16941
16942 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16943
16944         * DataGridDrawingLogic.cs: Fixes column hit calcultation
16945         * DataGridColumnStyle.cs: Remove debug message
16946
16947 2005-10-20  Jackson Harper  <jackson@ximian.com>
16948
16949         * TreeView.cs: We can always get input keys regardless of whether
16950         or not editing is enabled. They are used for navigation.
16951
16952 2005-10-20  Jackson Harper  <jackson@ximian.com>
16953
16954         * TreeNode.cs: Use the viewport rect for determining if a node
16955         needs to be moved for visibility. Don't use Begin/End edit. This
16956         calls a full refresh when its done.
16957         * TreeView.cs: New SetBottom works correctly.  Make the viewport
16958         rect property internal so the treenodes can see it. When clicking
16959         on a node we need to ensure that its visible because it might just
16960         be partly visible when clicked.
16961
16962 2005-10-20  Jackson Harper  <jackson@ximian.com>
16963
16964         * TreeNodeCollection.cs: Remove debug code.
16965
16966 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16967
16968         * Datagrid.cs: Implements column sorting in Datagrid
16969         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
16970
16971 2005-10-20  Jackson Harper  <jackson@ximian.com>
16972
16973         * TreeNodeCollection.cs: Remove items properly. Update the correct
16974         area after removing them.
16975
16976 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16977
16978         * Datagrid.cs: Should not call base.OnPaintBackground
16979
16980 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16981
16982         * XplatUIX11.cs (GetMessage):
16983           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
16984             window instead of client window
16985           - Now properly calculates NC_xBUTTONUP message coordinates
16986           - ScreenToMenu now properly calculates it's coordinates of whole 
16987             window, since menus are in the whole window, not in the client
16988             window
16989           - Added WholeToScreen coordinate translation method
16990
16991 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
16992
16993         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
16994           want to return a message, loop back to the beginning of the function
16995           and grab the next real message to process instead.
16996
16997 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16998
16999         * Splitter.cs: Properly set limits if no filler control is used
17000
17001 2005-10-19  Jackson Harper  <jackson@ximian.com>
17002
17003         * ColorDialog.cs: Don't show the help button if it is not enabled
17004         instead of disabling it (this is what MS does). Don't create the
17005         panel until the dialog is run, otherwise the vars (such as
17006         ShowHelp) are not set yet.
17007
17008 2005-10-19  Jackson Harper  <jackson@ximian.com>
17009
17010         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
17011         are reduced when adding nodes.
17012         * TreeNode.cs:
17013         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
17014         tree.
17015         
17016 2005-10-19  Jackson Harper  <jackson@ximian.com>
17017
17018         * FolderBrowserDialog.cs: End editing our treeview so the window
17019         actually gets refreshed.
17020
17021 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17022
17023         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
17024           Obsoleted handling of WM_ERASEBKGND, now always draws our background
17025           inside of WM_PAINT
17026
17027 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17028
17029         * MenuAPI.cs: Returns after Hidding window
17030         * XplatUIX11.cs: Added TODO found while debugging menu issues
17031
17032 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
17033
17034         * XplatUIX11.cs: Do not re-map the whole window when it's size
17035           becomes non-zero unless it's supposed to be actually visible
17036
17037 2005-10-18  Jackson Harper  <jackson@ximian.com>
17038
17039         * TreeView.cs: We don't need to keep a count anymore.
17040         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
17041         use the Grow method.
17042
17043 2005-10-18  Jackson Harper  <jackson@ximian.com>
17044
17045         * TreeNodeCollection.cs: Insert is not supported on arrays, so
17046         implement it manually here.
17047
17048 2005-10-18  Jackson Harper  <jackson@ximian.com>
17049
17050         * ImageList.cs: Dont kill the list when the colour depth is
17051         changed, just change the colour depth of all the images.
17052         - Same goes for setting the image size. Just resize them all
17053         instead of killing the list softly.
17054
17055 2005-10-18  Jackson Harper  <jackson@ximian.com>
17056
17057         * Control.cs: Don't invalidate empty rectangles.
17058
17059 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17060
17061         * ListViewItem.cs:
17062           - Adds checked item to the Checked/Item lists (where empty before)
17063           - Do not add items to the Selected lists if they are already present
17064         * ListView.cs:
17065           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
17066           - When deleting items make sure that we delete them for the Selected
17067           and Checked list also.
17068
17069 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
17070
17071         * Label.cs: Dispose objects no longer used
17072         * ThemeWin32Classic.cs: Dispose objects no longer used
17073
17074 2005-10-18  Jackson Harper  <jackson@ximian.com>
17075
17076         * TabControl.cs: Don't refresh the whole control when the tabs are
17077         scrolled, we just need to refresh the tab area.
17078
17079 2005-10-17  Jackson Harper  <jackson@ximian.com>
17080
17081         * XplatUIX11.cs: Compress code a little bit. Only calculate the
17082         after handle when we need it.
17083
17084 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
17085
17086         * Control.cs: When the parent size changes, recalculate anchor 
17087           positions. Partial fix for #76462
17088
17089 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
17090
17091         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
17092           drawn. Fixes #76462
17093
17094 2005-10-17  Jackson Harper  <jackson@ximian.com>
17095
17096         * MonthCalendar.cs: Don't create the numeric up down until our
17097         handle is created. Otherwise our handle is created in the
17098         constructor and we don't know if we are a WS_CHILD or WS_POPUP
17099         yet.
17100
17101 2005-10-17  Jackson Harper  <jackson@ximian.com>
17102
17103         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
17104         correctly.
17105
17106 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17107         * TreeNode.cs : small logical fix (was using local var instead of field)
17108         
17109 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
17110
17111         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
17112
17113 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
17114
17115         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
17116
17117 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
17118
17119         * Control.cs: 
17120           - Re-implemented anchoring code. My first version was really broken.
17121             This fixes bug #76033. Unlike the previous implementation we will
17122             no longer have round errors since all numbers are calculated from
17123             scratch every time. Removed various anchor-related obsolete vars.
17124           - InitLayout no longer causes layout event firing and layout to be 
17125             performed
17126
17127 2005-10-16  Jackson Harper  <jackson@ximian.com>
17128
17129         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
17130         which was broken).
17131
17132 2005-10-16  Jackson Harper  <jackson@ximian.com>
17133
17134         * TabControl.cs: Remove debug code.
17135
17136 2005-10-16  Jackson Harper  <jackson@ximian.com>
17137
17138         * XEventQueue.cs: Increase the default queue size (very simple
17139         apps needed to grow the queue).
17140         * Hwnd.cs: No finalizer so we don't need to suppress
17141         finalization. Compute the invalid area manually so a new rectangle
17142         does not newto be created.
17143         * ScrollableControl.cs: Don't set any params (otherwise visibility
17144         isn't set correctly).
17145         * MdiChildContext.cs: New constructor takes the mdi parent so it
17146         doesn't have to be computed and avoids a crash on windows. Draw
17147         the window icon properly, and allow the text to be seen.
17148         * Form.cs: Use new MdiChildContext constructor. Make sure the
17149         child context isn't null in wndproc.
17150         * TabControl.cs: Don't set focus, this is muddling keyboard
17151         behavoir. Expand the tab rows when a window size increase will
17152         allow extra tabs to be seen. Don't allow tabs smaller than the
17153         width of a window to be scrolled out of view.
17154         * TreeNode.cs:
17155         * TreeView.cs: Use measure string to calculate a nodes width, the
17156         width is cached and only updated when the text or the font is
17157         changed. Don't check for expand/collapse clicks on the first level
17158         nodes if root lines are disabled.
17159         
17160 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
17161
17162         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
17163
17164 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
17165
17166         * DataGridBoolColumn.cs: fixes warning
17167
17168 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
17169
17170         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
17171         to match more to match more precisely the MS Net behavior
17172
17173 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
17174
17175         * Hwnd.cs: Added field to track if window is mapped
17176         * XplatUIX11.cs: 
17177           - Unmap windows if they become 0-size, re-map when 
17178             they are >0 again; fixes #76035
17179           - Re-set our error handler after initializing X11Desktop
17180             to override any error handlers Gtk or whatever was called
17181             may have set.
17182
17183 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
17184
17185         * CheckedListBox.cs: Removed unused vars
17186         * ListView.cs: Fixed signatures
17187         * RichTextBox.cs: Removed unused vars
17188         * TextBoxBase.cs: Removed unused vars
17189         * XplatUIWin32.cs: Removed unused vars
17190         * XplatUIX11.cs: Removed unused vars
17191         * XplatUI.cs: Updated version and date to latest published
17192
17193 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
17194
17195         * Cursor.cs: Added private .ctor to work around a bug in
17196           resourceset (Thanks to Geoff Norton for the help on this)
17197         * SplitterEventArgs.cs: Made fields accessible so we don't
17198           waste boatloads of objects and can reuse the same one
17199           in Splitter
17200         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
17201           any captions and borders when generating screen coordinates
17202         * Splitter.cs: Reimplemented control, now fully complete, uses
17203           rubberband drawing, supports and obeys all properties, has
17204           proper cursors
17205
17206 2005-10-13  Miguel de Icaza  <miguel@novell.com>
17207
17208         * Form.cs (Form): Setup default values for autoscale and
17209         autoscale_base_size;  Make these instance variables, not static
17210         variables. 
17211
17212         (OnLoad): on the first load, adjust the size of the form.
17213
17214 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
17215
17216         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
17217           width argument to DrawReversibleRectangle()
17218         * XplatUIWin32.cs, XplatUIX11.cs: 
17219           - Implemented width for DrawReversibleRectangle()
17220           - Added logic to DrawReversibleRectangle that recognizes a zero
17221             width or height and only draws a line in that situation
17222         
17223 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
17224
17225         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
17226         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
17227         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
17228           method (it uses our FosterParent window to get a graphics context)
17229
17230 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
17231
17232         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
17233           and SetWindowBackground methods
17234         * Control.cs:
17235           - Setting proper ControlStyles
17236           - We no longer call XplatUI.SetWindowBackground and XplatUI.
17237             EraseWindowBackground, instead we draw the window background
17238             ourselves in PaintControlBackground. This behaviour is
17239             required to match MS, where, when OnPaintBackground is not
17240             called, the background is not drawn.
17241           - Removed unneeded Refresh() in set_Text
17242         * Hwnd.cs: Dropped the ErasePending support. No longer needed
17243         * XplatUIX11.cs:
17244           - Created DeriveStyles method to translate from CreateParams to
17245             FormBorderStyle and TitleStyle, also handles BorderStyle (which
17246             matches FormBorderStyle enum values)
17247           - Consolidated SetHwndStyles and CalculateWindowRect border/title
17248             style calculations into single DeriveStyles method
17249           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
17250             from redrawing the whole window on any resize or expose.
17251           - Fixed CreateWindow usage of SetWindowValuemask. Before not
17252             all styles were applied to our whole/client window appropriately
17253           - Removed EraseWindowBackground() and SetWindowBackground() methods
17254           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
17255             no longer clear/redraw the background through X
17256           - Removed handling of erase_pending bit, we have no use for it (or
17257             so it seems)
17258         * XplatUIOSX.cs:
17259           - Removed generation and handling of WM_ERASEBKGND message
17260           - Removed EraseWindowBackground() and SetWindowBackground() methods
17261           - Removed handling of hwnd.ErasePending flag
17262         * XplatUIWin32.cs:
17263           - Removed EraseWindowBackground() and SetWindowBackground() methods
17264           - We no longer call EraseWindowBackground on PaintEventStart, we 
17265             ignore the fErase flag, erasing is handled in Control in the
17266             background handler
17267         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
17268           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
17269           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
17270           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
17271           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
17272           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
17273           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
17274
17275 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
17276
17277         * PropertyGrids.cs: Get sub properties
17278         * PropertyGridView.cs: Fix drawing code
17279
17280 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
17281
17282         * ListBox.cs: Fixes 76383
17283
17284 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
17285
17286         * DataGridTextBoxColumn.cs: Sets location and size before attachment
17287         * ThemeWin32Classic.cs: Fixes border drawing and calculations
17288         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
17289
17290
17291 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
17292
17293         * ComboBox.cs: Fixes border drawing
17294
17295 2005-10-10  Miguel de Icaza  <miguel@novell.com>
17296
17297         * MimeIcon.cs: Ignore errors if the file can not be read.
17298
17299 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
17300
17301         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
17302          - Fixed border calculations
17303          - Fixed horizontal scrolling in single column listboxes
17304          - Fixed drawing issues
17305
17306 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
17307
17308         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
17309           FormBorderStyle enum
17310         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
17311           code to determine FormBorderStyles from CreateParams
17312         * Form.cs:
17313           - Fixed bug where we'd set the wrong window styles if we were
17314             not creating an MDI window
17315           - Added call to XplatUI.SetBorderStyle when form borders are set
17316         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
17317         * Hwnd.cs:
17318           - Removed obsolete edge style
17319           - Switched from BorderStyle to FormBorderStyle
17320         
17321 2005-10-10  Jackson Harper  <jackson@ximian.com>
17322
17323         * Form.cs: Use the property to get the window handle instead of
17324         accessing it directly. Prevents a null reference exception.
17325
17326 2005-10-10  Jackson Harper  <jackson@ximian.com>
17327
17328         * TreeView.cs: Don't adjust the rect given to DrawString now that
17329         our libgdiplus draws correctly.
17330
17331 2005-10-08  Jackson Harper  <jackson@ximian.com>
17332
17333         * TreeView.cs: Don't try to find the clicked on node if there are
17334         no nodes in the tree.
17335
17336 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
17337
17338         * RichTextBox.cs:
17339
17340           restore
17341
17342 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
17343
17344         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
17345           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
17346           ErrorProvider.cs:
17347           Use ResPool for brushes and dispose System.Drawing objects that
17348           are not used anymore.
17349
17350 2005-10-07  Jackson Harper  <jackson@ximian.com>
17351
17352         * MdiChildContext.cs: Use the new borders instead of drawing them
17353         ourselves.
17354
17355 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
17356
17357         * Calling UpdateBounds after changing the window's BorderStyle 
17358         since the style can change the ClientSize
17359
17360 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17361
17362         * Control.cs: Made PaintControlBackground virtual
17363         * Panel.cs: Overriding PaintControlBackground instead of using paint
17364           event; paint event method was interfering with 'real' users of the
17365           event.
17366
17367 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
17368
17369         * ThemeWin32Classic.cs: remove border drawing since it is handled
17370         by the base control class now and was causing double border drawing.
17371
17372 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17373
17374         * Panel.cs: Redraw our background on paint. Not a pretty solution,
17375           but it does seem to match MS behaviour. This fixes bug #75324
17376
17377 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17378
17379         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
17380           somewhat hackish looking
17381
17382 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17383
17384         * TextBoxBase.cs:
17385           - We now accept Enter even if AcceptEnter is false, if the containing
17386             form does not have an AcceptButton configured (fixes bug #76355)
17387           - Calculations are now fixed to no longer use Width/Height, but
17388             ClientSize.Width/Height, since we now support borders (this was
17389             a result of fixing borders and therefore bug #76166)
17390           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
17391             true (fixes bug #76354)
17392         
17393 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17394
17395         * Control.cs: 
17396           - Defaulting BorderStyle and setting it in XplatUI when our window 
17397             is created
17398           - Added enum check to InternalBorderStyle setter
17399         * XplatUIX11.cs: 
17400           - Added drawing of window borders
17401           - Now properly calculates WM decorations offset for toplevel 
17402             windows (fixes bug #74763)
17403         * XplatUIWin32.cs: 
17404           - Implemented BorderStyles for windows (we're letting win32 draw 
17405             the border for us)
17406           - Fixed the signature for SetWindowLong
17407         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
17408           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
17409           setting borders
17410         * UpDownBase.cs: Remove drawing of borders, this is handled by
17411           the driver, outside the client area
17412         * ListView.cs: Removed bogus border calculations. The control should
17413           be oblivious to borders, since those are not part of the client
17414           area. 
17415         * X11DesktopColors.cs: Commented out (currently) unneeded variables
17416         * ThemeWin32Classic.cs: Removed border calculations from ListView 
17417           drawing code
17418
17419 2005-10-06  Jackson Harper  <jackson@ximian.com>
17420
17421         * MdiChildContext.cs: Clear out the old virtual position remove
17422         all the unneeded calls to CreateGraphics.
17423
17424 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17425
17426         * TextControl.cs: Use proper color for highlighted text; fixes #76350
17427
17428 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17429
17430         * Form.cs: 
17431           - Added loading and setting of our new default icon
17432           - Only set icon if window is already created
17433
17434 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17435
17436         * Label.cs:
17437           - Do not explicitly set the foreground and background colors, to
17438             allow inheriting from parents (fixes #76302)
17439           - Use Control's InternalBorderStyle property to deal with borders
17440
17441 2005-10-06  Jackson Harper  <jackson@ximian.com>
17442
17443         * MdiChildContext.cs: Use the new xplatui function to draw a
17444         reversible rect.
17445
17446 2005-10-06  Jackson Harper  <jackson@ximian.com>
17447
17448         * Form.cs: Add the parent before creating the child context cause
17449         we need the parent when setting up the child.
17450
17451 2005-10-06  Jackson Harper  <jackson@ximian.com>
17452
17453         * FolderBrowserDialog.cs: redo the tree population code so a
17454         second thread isn't used. Should be a lot faster and more stable
17455         now.
17456
17457 2005-10-05  Jackson Harper  <jackson@ximian.com>
17458
17459         * TreeView.cs: There are no expand/collapse boxes if the node has
17460         no children.
17461
17462 2005-10-05  Jackson Harper  <jackson@ximian.com>
17463
17464         * X11DesktopColors.cs: Get menu colours for the gtk theme.
17465
17466 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
17467
17468         * FileDialog.cs: Fix InitialDirectory
17469
17470 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
17471
17472         * ComboBox.cs:
17473                 - Fixes changing between styles
17474                 - Fixes simple mode
17475                 - Fixes last item crashing when navigating with keyboard
17476
17477 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
17478
17479         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
17480
17481 2005-10-05  Jackson Harper  <jackson@ximian.com>
17482
17483         * TreeView.cs: If updating the root node do a full refresh.
17484         * TreeNode.cs: The root node should be expanded by default. Also
17485         added a utility prop to tell if we are the root node.
17486         * TreeNodeCollection.cs: Only refresh if the node we are being
17487         added to is expanded. Also added a comment on a potential
17488         optimization.
17489         
17490 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
17491
17492         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
17493           in dispose method. Fixes #76330
17494
17495 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
17496
17497         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
17498
17499                 - Implements vertical and horizontal scrolling using XplatUI
17500                 - Fixes keyboard navagation
17501                 - Fixes EnsureVisible
17502                 - Drawing fixes
17503                 - Handles and draws focus properly
17504
17505
17506 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
17507
17508         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
17509           Create handle. NET_2_0: Destroy handle when value is null.
17510
17511 2005-10-03  Jackson Harper  <jackson@ximian.com>
17512
17513         * ScrollBar.cs: My last scrollbar patch was broken. This is a
17514         revert and a new patch to prevent the thumb from refreshing so
17515         much.
17516
17517 2005-10-02  Jackson Harper  <jackson@ximian.com>
17518
17519         * ScrollBar.cs: Don't update position if it hasn't actually
17520         changed. This occurs when you hold down the increment/decrement
17521         buttons and the thumb gets to the max/min.
17522
17523 2005-10-01  Jackson Harper  <jackson@ximian.com>
17524
17525         * Form.cs:
17526         * MdiChildContext.cs:
17527         * MdiClient.cs: Implement ActiveMdiChild in Form.
17528
17529 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
17530
17531         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
17532
17533 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
17534
17535         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
17536           be found
17537
17538 2005-09-30  Jackson Harper  <jackson@ximian.com>
17539
17540         * ListBox.cs: Don't do a full refresh unless some data has
17541         actually changed.
17542
17543 2005-09-30  Jackson Harper  <jackson@ximian.com>
17544
17545         * TreeView.cs: Make sure that the checkboxes size is factored in
17546         even when not visible.
17547
17548 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17549
17550         * FileDialog.cs: Fix Jordi's build break
17551
17552 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17553
17554         * FileDialog.cs: 
17555                 - Use standard the Windows colours for the combobox as espected
17556                 - Dispose objects that use resouces when no longer need them
17557
17558 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17559
17560         * X11DesktopColors.cs: Initial incomplete implementation
17561         * XplatUIX11.cs: Added call to initialize X11DesktopColors
17562
17563 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
17564
17565         * Theme.cs: 
17566           - Switched Theme color names to match the names defined in 
17567             System.Drawing.KnownColors. Life's hard enough, no need to make 
17568             it harder.
17569           - Added setters to all theme color properties so themes can set
17570             their color schemes. The setters also propagate the color changes
17571             to System.Drawing.KnownColors via reflection
17572         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
17573           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
17574           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
17575           use the new, more logical theme color names
17576         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
17577           post-NT colors
17578         * ThemeWin32Classic.cs:
17579           - Removed code to set the old classic Windows colors. Instead it
17580             now relies on the colors returned by System.Drawing.KnownColors
17581             which will be either modern static colors (Unix) or colors
17582             read from the user's configuration (Win32)
17583           - Updated to use the new, more logical theme color names
17584           - Switched DataGrid drawing code to use only Theme colors instead of
17585             a mix of System.Drawing.KnownColors and Theme colors
17586           - DrawFrameControl(): Removed code that fills the button area, the
17587             fill would overwrite any previous fill done by a control. This
17588             fixes bug #75338 
17589           - Added DrawReversibleRectangle() stub
17590         * ScrollableControl.cs: Set visible state to false when scrollbars
17591           are removed (pdn fix)
17592         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
17593           DrawReversibleRectangle() method to allow drawing primitive 
17594           'rubber bands'
17595         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
17596
17597 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17598
17599         * ImageList.cs: Add(Icon): Create handle.
17600
17601 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17602
17603         * ListView.cs:
17604         * ThemeWin32Classic.cs:
17605                 - Fixes detail mode
17606                 - Sets clippings
17607                 - Issues with drawing
17608
17609 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17610
17611         * ImageList.cs: Moved RecreateHandle back to ImageList as event
17612           source has to be the ImageList.
17613
17614 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17615
17616         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
17617
17618 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17619
17620         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
17621
17622 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17623
17624         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
17625
17626 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
17627         * GridItem.cs: Fixed TODOs
17628         * GridItemCollection.cs: Added ICollection interface
17629
17630 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17631
17632         * ImageList.cs: Resize icons when needed.
17633
17634 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
17635
17636         * ListViewItem.cs
17637                 - Fixes GetBounds and returns on screen rects
17638         * ListView.cs:
17639                 - Fixes vertical and horzintal scrolling of items
17640         * ThemeWin32Classic.cs:
17641                 - Fixes drawing
17642                 
17643 2005-09-29  Raja R Harinath  <harinath@gmail.com>
17644
17645         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
17646
17647 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
17648
17649         * ImageList.cs: Added comments about handle creation. Moved Handle,
17650           HandleCreated and OnRecreateHandle implementations to ImageCollection.
17651           Handle is created in Add methods.
17652
17653 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17654          
17655         * DataGridDrawingLogic.cs: 
17656                 - Takes rows into account on Colum calculations
17657                 - Returns the column when clickig
17658         * DataGrid.cs:
17659                 - Fixes default HitTestInfo values
17660                 - Fixes HitTestInfo.ToString
17661                 - Fixes ResetBackColor          
17662         
17663 2005-09-28  Jackson Harper  <jackson@ximian.com>
17664
17665         * MdiChildContext.cs: Obey rules for fixed sized windows (no
17666         sizing or cursor changes). Also added some temp code to draw the
17667         titlebars text (Makes dev a little easier).
17668
17669 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17670
17671         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
17672
17673 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17674          
17675         * ListBox.cs: Fixes bug 76253
17676
17677 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17678
17679         * ImageList.cs: Added comments about the current implementation. Added
17680           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
17681           Format32bppArgb to preserve transparency and can use Graphics.FromImage
17682           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
17683           with Bitmap.LockBits for better performance. Revised the whole file to
17684           match MS.NET behaviour and provide better performance. Non-public
17685           interface members are calling public members even when they throw
17686           NotSupportedException for better maintainability. Moved ColorDepth,
17687           ImageSize, ImageStream and TransparentColor implementations to
17688           ImageCollection for better performance as these properties are not used
17689           by ImageList.
17690         * ImageListStreamer.cs: Added a new internal constructor that takes an
17691           ImageList.ImageCollection and serializes Images based on
17692           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
17693           match ImageList property name.
17694
17695 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
17696
17697         * ListBox.cs: Fixes IndexFromPoint for last item
17698
17699 2005-09-27  Jackson Harper  <jackson@ximian.com>
17700
17701         * Form.cs: Set the position of new mdi children correctly.
17702
17703 2005-09-27  Jackson Harper  <jackson@ximian.com>
17704
17705         * MdiClient.cs: New mdi children need to be added to the back of
17706         the controls collection so the zorder is set correctly. Also add a
17707         count of all the child windows that have been created.
17708
17709 2005-09-27  Jackson Harper  <jackson@ximian.com>
17710
17711         * Form.cs (CreateParams): Setup MDI forms correctly.
17712
17713 2005-09-27  Jackson Harper  <jackson@ximian.com>
17714
17715         * MdiChildContext.cs:
17716         * MonthCalendar.cs:
17717         * UpDownBase.cs:
17718         * ListBox.cs:
17719         * ListView.cs:
17720         * TextBoxBase.cs:
17721         * TreeView.cs:
17722         * ScrollableControl.cs:
17723         * ComboBox.cs: Add implicit controls using the new implict control
17724         functionality in ControlCollection. Also try to block multiple
17725         control add in a suspend/resume layout to save some cycles.
17726         
17727 2005-09-27  Jackson Harper  <jackson@ximian.com>
17728
17729         * Control.cs: Add functionality to the controls collection to add
17730         'implicit controls' these are controls that are created by the
17731         containing control but should not be exposed to the user. Such as
17732         scrollbars in the treeview.
17733         * Form.cs: The list var of the ControlsCollection is no longer
17734         available because of the potential of implicit controls getting
17735         ignored by someone accessing the list directly.
17736
17737 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
17738
17739         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
17740           loose it's parent. (Fixed bug introduced in r49103 when we added
17741           setting the child parent to null on Remove)
17742
17743 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
17744
17745         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
17746         * Splitter.cs: Added missing attributes for BorderStyle property.
17747         * TextBoxBase.cs: Marked Calculate* methods internal.
17748         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
17749         MS.NET.
17750
17751 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
17752          
17753         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
17754
17755 2005-09-25  Jackson Harper  <jackson@ximian.com>
17756
17757         * TreeView.cs: Update the node bounds correctly regardless of
17758         whether the node is visible.
17759
17760 2005-09-25  Jackson Harper  <jackson@ximian.com>
17761
17762         * ImageList.cs: Don't dispose the image after it is added to the
17763         image list. Only reformat images that need to be resized.
17764
17765 2005-09-25  Jackson Harper  <jackson@ximian.com>
17766
17767         * ImageList.cs: Don't set the format when changing the image.
17768
17769 2005-09-25  Jackson Harper  <jackson@ximian.com>
17770
17771         * TreeView.cs: We can't just assume the node has a font. Use the
17772         treeviews font if no node font is available.
17773
17774 2005-09-25  Jackson Harper  <jackson@ximian.com>
17775
17776         * TreeView.cs: Allow the scrollbars to be reset with negative
17777         values.
17778         - Don't add scrollbars to negative sized windows.
17779
17780 2005-09-23  Jackson Harper  <jackson@ximian.com>
17781
17782         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
17783         old Mono.Posix. Also remove some stray code that shouldn't have
17784         been committed.
17785
17786 2005-09-23  Jackson Harper  <jackson@ximian.com>
17787
17788         * TreeView.cs: Attempt at proper sizing of the horizontal
17789         scrollbar. Also don't resize the scrollbars unless they are
17790         visible.
17791
17792 2005-09-23  Jackson Harper  <jackson@ximian.com>
17793
17794         * TreeView.cs: We don't need to expand the invalid area when the
17795         selection changes, as this is all drawn in the node's bounding
17796         box. The area needs to be expanded (previous typo was contracting
17797         it) when the focus rect moves.
17798
17799 2005-09-23  Jackson Harper  <jackson@ximian.com>
17800
17801         * TreeView.cs: Display the selection box under the correct
17802         circumstances. We were rendering white text with no selection box
17803         before.
17804
17805 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
17806
17807         * TextControl.cs(Split): Now updates selection start/end if it points 
17808           into a line that's being split. Fixes a FIXME and bug #75258
17809
17810 2005-09-23  Jackson Harper  <jackson@ximian.com>
17811
17812         * Binding.cs:
17813         * ListControl.cs: Don't use the path when retrieving binding
17814         managers from the binding context. My bat sense tells me that the
17815         path is only used on insertion.
17816
17817 2005-09-22  Jackson Harper  <jackson@ximian.com>
17818
17819         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
17820
17821 2005-09-22  Jackson Harper  <jackson@ximian.com>
17822
17823         * Splitter.cs: There are special cursors used for splitting.
17824         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
17825
17826 2005-09-22  Jackson Harper  <jackson@ximian.com>
17827
17828         * Splitter.cs: Change the cursor appropriately when the splitter
17829         is moused over, so the user actually knows there is a splitter
17830         there.
17831
17832 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17833
17834        * Label.cs : Fix ToString method to give same output as MS.NET
17835
17836 2005-09-22  Jackson Harper  <jackson@ximian.com>
17837
17838         * TreeView.cs: Create the scrollbars when the handle is created
17839         and add them right away, just make them invisble. Also account for
17840         the window being shrunk vertically to the point that the vert
17841         scrollbar needs to be added.
17842         - Remove some 0.5 adjustments to get around anti aliasing issues.
17843         
17844 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
17845          
17846         * MainMenu.cs: Fixes default value
17847         * MenuItem.cs: Fixes default value
17848
17849 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
17850
17851         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
17852
17853 2005-09-21  Jackson Harper  <jackson@ximian.com>
17854
17855         * Control.cs: Don't try to set the border style on the window if
17856         it hasn't been created. When the window is created the border
17857         style will be used.
17858
17859 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17860
17861         * Control.cs (Update): Don't call XplatUI if we don't have a
17862           window handle yet
17863
17864 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17865
17866         * ContainerControl.cs: Instead of throwing an exception, print
17867           a one-time warning about Validate not being implemented
17868         * XplatUIWin32.cs: Removed debug output
17869
17870 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17871
17872         * Control.cs: Only set XplatUI background if we expect the windowing
17873           system to handle the background. This stops controls that draw their
17874           own background from flickering
17875
17876         * XplatUIX11.cs: Support custom visuals and colormaps for window 
17877           creation. This allows, amongst other things, using MWF X11 windows 
17878           with OpenGL.
17879
17880 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17881
17882         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
17883           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
17884           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
17885           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
17886           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
17887           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
17888           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
17889           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
17890           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
17891           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
17892           GridColumnStylesCollection.cs, 
17893           IDataGridColumnStyleEditingNotificationService.cs,
17894           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
17895           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
17896           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
17897           TreeNodeCollection.cs, AmbientProperties.cs, 
17898           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17899           DataObject.cs, ErrorProvider.cs, Splitter.cs,
17900           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
17901           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
17902           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
17903           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
17904           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
17905           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
17906           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
17907           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
17908           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
17909           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
17910           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
17911           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
17912           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
17913           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
17914           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
17915           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
17916           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
17917           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
17918           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
17919           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
17920           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
17921           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
17922           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
17923           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
17924           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
17925           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
17926           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
17927           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
17928           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
17929           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
17930           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
17931           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
17932           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
17933           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
17934           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
17935
17936 2005-09-21  Jackson Harper  <jackson@ximian.com>
17937
17938         * TreeNode.cs: Call Before/After Expand not Collapse when
17939         expanding.
17940
17941 2005-09-20  Jackson Harper  <jackson@ximian.com>
17942         
17943         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
17944
17945 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
17946          
17947         * ListViewItem.cs:
17948                 - Fixes bug 76120
17949                 - Fixes proper storing of subitems
17950                 - Fixes not updated items
17951
17952 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
17953
17954         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
17955           things if our window handle isn't created yet. Also disabled 
17956           debug for TextBoxBase
17957
17958 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
17959
17960         * MenuAPI.cs: Remove filtering of events to allow menu usage
17961
17962 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17963
17964         * Cursor.cs: Allow null to be passed to Cursor.Current.
17965
17966 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
17967
17968         * ThemeWin32Classic.cs:
17969           - Change some private methods/fields to protected virtual so that 
17970             they can be accessed and overriden in derived classes
17971           - First refactoring of some methods. Derived themes now don't 
17972             need to duplicate the complete code from ThemeWin32Classic
17973         * ThemeNice.cs:
17974           - Added nice StatusBar
17975           - Derive from ThemeWin32Classic and not Theme
17976           - Removed duplicate ThemeWin32Classic code
17977
17978 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17979
17980         * Control.cs (ControlCollection.Add): If the value null is passed
17981         the control is ignored. 
17982
17983         Optimize this loop.
17984
17985 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
17986
17987         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
17988           PostQuitMessage state.
17989         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
17990
17991 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
17992
17993         * Application.cs: Our constructor will never get called, move 
17994           initialization to fields; fixes bug #75933
17995
17996 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17997
17998         * FileDialog.cs :
17999                 - Allow files to be selected properly using file name
18000                 combo box.
18001                 - Add ability to change diretory (absolute / relative)
18002                 using file name combo box.
18003
18004 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
18005          
18006         * ListBox.cs: 
18007                 - Fixes Multicolumn listboxes item wrong calculations
18008                 - Allows to click when only one item is in the listbox
18009                 - Fixes crash when no items using keyboard navigation
18010
18011 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
18012
18013         * ComboBox.cs: Reverted almost everything from the latest patch which
18014           broke ComboBox
18015
18016 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
18017         
18018         * ToolTip.cs:
18019                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
18020         * ComboBox.cs:
18021                 - When DropDownStyle is Simple, it does not show scrollbar 
18022                 to the last item of the list.
18023                 - When DropDownStyle is Simple, it crashed when the list was 
18024                 scrolled down with the down cursor key.
18025                 - Fixed a bug that when DropDownStyle is DropDownList, the 
18026                 selected item was not shown.
18027                 - The position of the selected item was not preserved when 
18028                 the next dropdown happened.
18029         * ThemeWin32Classic.cs:
18030                 - Items were wrapped at the right end.
18031         * CheckedListBox.cs:
18032                 - Fixed Add method
18033         * ListBox.cs:
18034                 - Items should be fully shown.
18035                 - When resizing and vertical scrollbar disappeared, the item 
18036                 of index 0 should be on the top of the list.
18037                 - GetItemRectangle should consider the size of ver. scrollbar
18038         * StatusBar.cs:
18039                 - SizingGrip area should not be allocated when it is not 
18040                 displayed.
18041                 - Now it reflects MinWidth of the containing panel and 
18042                 fixed a crash that happens when its width becomes so small.
18043
18044 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18045
18046         * CheckedListBox.cs: Fixes bug 76028
18047         * ListBox.cs: Fixes bug 76028
18048
18049 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
18050
18051         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
18052         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
18053
18054 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
18055
18056         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
18057
18058 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18059
18060         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
18061
18062 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18063
18064         * IRootGridEntry.cs: Added
18065         * PropertyGridCommands.cs: Added
18066         * PropertiesTab.cs: Added missing methods and property
18067         * PropertyGridView.cs: Made class internal
18068         * PropertyGridTextBox.cs: Made class internal
18069
18070 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18071
18072         * MimeIcon.cs: Try to check some other environment variables
18073           if "DESKTOP_SESSION" returns "default"
18074
18075 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18076
18077         * ThemeNice.cs: Corrected background colors (e.g. menus)
18078         * ColorDialog.cs: Use correct background colors for controls
18079
18080 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
18081
18082         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
18083
18084 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
18085
18086         * RichTextBox.cs: Added initial implementation
18087         * lang.cs: Removed. Was accidentally checked in long time ago
18088         * TODO: Removed. Contents were obsolete
18089
18090 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
18091                                                                                 
18092         * PropertiesTab.cs : Added
18093
18094 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
18095                                                                                 
18096         * PropertyGrid.cs : Update
18097         * PropertyGridView.cs : Update
18098         * System.Windows.Forms.resx : Added images and strings
18099
18100 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
18101
18102         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
18103  
18104 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
18105
18106         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
18107           a busy loop right after the Ungrab the X11 display is otherwise 
18108           blocked
18109
18110 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
18111
18112         * ThemeWin32Classic.cs: Optimise the use of clipping
18113
18114 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
18115
18116         * DataGrid.cs: fixes recursion bug
18117
18118 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
18119
18120         * ThemeNice.cs: 
18121           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
18122           - Cleanup
18123
18124 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
18125
18126         * ThemeNice.cs: Draw nice ProgressBars
18127
18128 2005-09-01  Miguel de Icaza  <miguel@novell.com>
18129
18130         * VScrollBar.cs: Another buglet found by Aaron's tool. 
18131
18132         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
18133         bug finder.
18134
18135 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
18136
18137         * ThemeNice.cs:
18138           - Added nicer menu drawing
18139           - Updated DrawTab
18140           - some refactoring
18141
18142 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
18143
18144         * CreateParams.cs (ToString): Made output match MS
18145         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
18146             handle is already created (to avoid forcing window creation)
18147         * XplatUIX11.cs: Set window text to caption after creating window,
18148           in case Text was set before window was created
18149         * Form.cs: Use this.Text instead of a static string as caption
18150
18151 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
18152
18153         * NotifyIcon.cs: Don't set the window to visible; this screws
18154           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
18155           OnPaint without a bitmap)
18156         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
18157           happen very often anyway; we could add the check to the WM_PAINT 
18158           event generation code
18159
18160 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
18161
18162         * NotifyIcon.cs: Fill the icon area with a background color, to 
18163           avoid 'residue' when transparent icons are drawn
18164         * XplatUIX11.cs:
18165           - Handle whole_window == client_window when destroying windows
18166           - SystrayAdd(): Set client_window to whole_window value to
18167             get mouse and other events passed to NotifyIcon
18168
18169 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
18170
18171         * Form.cs: Set proper default for Opacity property
18172         * NotifyIcon.cs:
18173           - ShowSystray(): Don't bother creating telling the OS
18174             about the systray item if no icon is provided
18175           - Now handles WM_NCPAINT message to deal with whole/client window
18176             split
18177           - Create window as visible to not get caught by Expose optimization
18178         * Hwnd.cs: Removed debug message
18179         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
18180           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
18181             PaintEventStart/End to use new client argument
18182         * TextBoxBase.cs:
18183           - Commented out debug messages
18184           - Switched PaintEventStart/End to use new client argument
18185         * XplatUI.cs: Added client window bool to PaintEventStart()/
18186           PaintEventEnd() calls, to support drawing in non-client areas
18187         * XplatUIDriver.cs: 
18188           - Added client window bool to PaintEventStart()/PaintEventEnd() 
18189             calls, to support drawing in non-client areas
18190           - Added conditional compile to allow using MWF BeginInvoke 
18191             on MS runtime
18192         * XplatUIX11.cs:
18193           - Added some conditional debug output
18194           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
18195             whole/client window split
18196           - Implemented handling of client argument to PaintEventStart()/End()
18197         * Control.cs:
18198           - Throw exception if BeginInvoke() is called and the window handle
18199             or one of the window's parent handles is not created
18200           - Added conditional compile to allow using MWF BeginInvoke on
18201             MS runtime
18202           - get_Parent(): Only sets parent if handle is created. This avoids
18203             forcing window handle creation when parent is set.
18204           - Now fires Layout and Parent changed events in proper order
18205           - Switched to use Handle instead of window.Handle for Z-Order setting,
18206             the get_Parent() patch above causes us to possibly get null for 'window'
18207           - Implemented handling of client argument to PaintEventStart()/End()
18208           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
18209             default handling)
18210           - Now sends a Refresh() to all child windows when Refresh() is called
18211
18212 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
18213
18214         * Form.cs: Added (non-functional) Opacity property
18215         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
18216
18217 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
18218         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
18219           use export MONO_THEME=nice to activate it.
18220           Currently supported controls:
18221           - Button
18222           - ComboBox
18223           - ScrollBar
18224           - TabControl (TabAlignment.Top only, other will follow)
18225         * ThemeEngine.cs: Add theme nice
18226         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
18227           if enabled
18228
18229 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
18230
18231         * Splitter.cs: Resize docked control and its neighbor.
18232
18233 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
18234         -- Making Windows with Menus layout correctly --
18235         * Form.cs : The first leg of the fix
18236                 Menu setter - adjust Client Size as needed to make space for the menu
18237                 SetClientSizeCore - doesn't call base version to be able to pass the 
18238                         menu handle to XplatUI.CalculateWindowRect
18239         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
18240         * XplatUIX11.cs: The critical second leg of the fix
18241                 GetWindowPos needs to use a recalculated client_rect
18242                 so that resizing the window doesn't break layout of child controls. 
18243                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
18244                 Lots of \t\n killed
18245
18246 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
18247
18248         * Label.cs: Now properly recalculates width and height on Font and Text
18249           changes if AutoSize is set
18250
18251 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
18252         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
18253
18254 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
18255
18256         * ImageList.cs: Makes ToString method compatible with MS
18257
18258 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
18259
18260         * MenuAPI.cs: fixes bug 75716
18261
18262 2005-08-11 Umadevi S <sumadevi@novell.com>
18263         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
18264
18265 2005-08-11 Umadevi S <sumadevi@novell.com>
18266         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
18267
18268 2005-08-10  Umadevi S <sumadevi@novell.com>
18269         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
18270
18271 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
18272
18273         * Menu.cs: fixes bug 75700
18274         * MenuAPI.cs: fixes navigation issues
18275
18276 2005-08-09  Umadevi S <sumadevi@novell.com>
18277         * CheckedListBox.cs - simple fix for GetItemChecked.
18278
18279 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
18280
18281         * ComboBox.cs: Serveral fixes
18282         * ListBox.cs: Serveral fixes
18283
18284 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
18285
18286         * ComboBox.cs: Fixes FindString methods and GetItemHeight
18287         * ListBox.cs: Fixes FindString methods
18288
18289 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
18290
18291         * DataGrid.cs: fixes bugs exposed by new tests
18292
18293 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
18294
18295         * Mime.cs: Compile Mono assembly references only if compiling
18296           with Mono (Allows to build with VS.Net again)
18297
18298 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
18299
18300         * Control.cs (PaintControlBackground): Draw background image
18301         corrrectly.
18302         (CheckForIllegalCrossThreadCalls): Stubbed.
18303         
18304         * Form.cs (OnCreateControl): Center when should be centered.
18305         
18306         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
18307
18308 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
18309
18310         * Binding.cs: Binding to properties should be case unsensitive
18311
18312 2005-07-18 vlindos@nucleusys.com
18313
18314         * DataGrid.cs: fixes setmember order
18315
18316 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
18317
18318         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
18319         * FileDialog.cs: FileDialog is now resizable and uses the new
18320           MimeIconEngine
18321
18322 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
18323
18324         * DataGridTextBoxColumn.cs: default value
18325         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
18326         * GridTableStylesCollection.cs: fixes checking MappingName
18327         * DataGridDrawingLogic.cs: fixes drawing logic issues
18328         * DataSourceHelper.cs: rewritten to make compatible with more data sources
18329         * DataGrid.cs: fixes    
18330
18331 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
18332
18333         * MimeGenerated.cs: Use case sensitive comparer for
18334           NameValueCollections
18335
18336 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
18337
18338         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
18339         * ThemeWin32Classic.cs: bug fixes, code refactoring
18340         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
18341         * DataGrid.cs: bug fixes, code refactoring
18342         * DataGridTextBox.cs: bug fixes, code refactoring
18343         * DataGridColumnStyle.cs:  bug fixes, code refactoring
18344         * Theme.cs:  bug fixes, code refactoring
18345
18346 2005-07-01  Peter Bartok  <pbartok@novell.com> 
18347
18348         * TextControl.cs: Quick fix for the reported crash on ColorDialog
18349           and other text box usage
18350
18351 2005-07-01  Jackson Harper  <jackson@ximian.com>
18352
18353         * TabControl.cs: Make sure the bottom of the tab covers the pages
18354         border.
18355
18356 2005-06-30  Peter Bartok  <pbartok@novell.com> 
18357
18358         * Form.cs (ShowDialog): Assign owner of the dialog
18359         * TextBoxBase.cs: Always refresh caret size when deleting, caret
18360           might have been moved to a tag with different height
18361
18362 2005-06-30  Jackson Harper  <jackson@ximian.com>
18363
18364         * Form.cs: Don't create an infinite loop when setting focus
18365         * MenuItem.cs: Don't dirty the parents if we don't have any
18366
18367 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
18368
18369         * LibSupport.cs: Rename
18370
18371 2005-06-29  Peter Bartok  <pbartok@novell.com>
18372
18373         * TextBoxBase.cs: Re-align caret after deleting a character
18374         * TextControl.cs:
18375           - DeleteChars(): Ensure that tag covers the provided position
18376           - StreamLine(): Drop reference for dropped tag
18377
18378 2005-06-29  Peter Bartok  <pbartok@novell.com> 
18379
18380         * TextControl.cs: 
18381           - Selections now work properly, anchoring at the initial location
18382             and properly extending in either direction (SetSelectionToCaret(),
18383             SetSelectionStart() and SetSelectionEnd())
18384           - No longer redraws the whole control on selection change, now
18385             calculates delta between previous and new selection and only
18386             invalidates/redraws that area
18387           - Fixed FindPos() math off-by-one errors
18388           - Changed DeleteChars() to verify the provided tag covers the
18389             provided position, selections may have a tag that doesn't cover
18390             the position if the selection is at a tag border
18391           - Fixed off-by-one errors in DeleteChars()
18392           - Added missing streamlining check in DeleteChars() to remove
18393             zero-length tags
18394           - Implemented Invalidate() method, now properly calculates exposures
18395             between two given lines/positions
18396           - Implemented SetSelection()
18397           - Obsoleted and removed FixupSelection()
18398           - Improved RecalculateDocument() logic, removing code duplication
18399
18400 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18401
18402         * LibSupport.cs: changes to match different input/output arguments.
18403
18404 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18405
18406         * LibSupport.cs: added libsupport.so init routine.
18407
18408 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
18409         
18410         * ControlBindingsCollection.cs
18411                 - Throws an exception on null datasource when adding
18412                 - Checks for duplicated bindings when adding
18413
18414 2005-06-28  Jackson Harper  <jackson@ximian.com>
18415
18416         * TreeView.cs (OnKeyDown): Support left and right properly
18417         (navigates as well as expanding and collapsing.
18418         - Add support for Multiply, this expands all the selected nodes
18419         children.
18420         - Fix some tabbing.
18421
18422 2005-06-28  Jackson Harper  <jackson@ximian.com>
18423
18424         * TreeView.cs: Implement keyboard navigation, currently supports,
18425         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
18426         support for toggling checkboxes with the space bar.
18427
18428 2005-06-28  Jackson Harper  <jackson@ximian.com>
18429
18430         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
18431         tree.
18432
18433 2005-06-28  Jackson Harper  <jackson@ximian.com>
18434
18435         * TreeView.cs: Add missing event.
18436
18437 2005-06-27  Peter Bartok  <pbartok@novell.com> 
18438
18439         * TextControl.cs:
18440           - Made line ending size configurable (now allows for counting 
18441             lineendings as \n or \r\n)
18442           - Added margin to viewport to keep caret visible on right side
18443           - Fixed translation routines for line/pos to documentpos to consider
18444             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
18445           - Fixed some line-endings to be unix style
18446           - Fixed Document.FormatText to perform it's calculations 1-based
18447           - Added descriptions for a few methods that might otherwise get 
18448             used wrong
18449           - Added NOTE section with some basic conventions to remember at 
18450             the top of the file
18451           - Major fixup for RichTextBox selection drawing:
18452             * Fixed crashes when multiple tags on a single line were selected
18453             * fixed selection box drawing not overlaying text
18454             * fixed bogus offset calculation for tags not starting at index 1
18455             * Switched behaviour from using multiple Substrings of a 
18456               StringBuilder.ToString() to using multiple 
18457               StringBuilder.ToString(start, length) statements, hoping this is
18458               faster (kept original version commented out in the code, in case
18459               original version was faster)
18460         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
18461           alignment != Left
18462         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
18463           call it as well
18464
18465 2005-06-27  Jackson Harper  <jackson@ximian.com>
18466
18467         * TabControl.cs: Move to the left and right with the arrow
18468         keys. These keys don't cycle beyond first and last like
18469         tab. Refresh all the tabs when scrolling them to the left or
18470         right.
18471
18472 2005-06-27  Jackson Harper  <jackson@ximian.com>
18473
18474         * TabControl.cs:
18475           - ToString: Added method
18476           - CreateParams: Remove TODO and comment
18477           - OnKeyDown: Cycle through bounds properly.
18478           - SelectedIndex: Scroll to the right or left if we need to
18479           display the newly selected tab.
18480
18481 2005-06-23  Jackson Harper  <jackson@ximian.com>
18482
18483         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
18484         set.
18485
18486 2005-06-23  Jackson Harper  <jackson@ximian.com>
18487
18488         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
18489         CTRL-SHIFT-TAB, and HOME, END are there any others?
18490
18491 2005-06-23  Jackson Harper  <jackson@ximian.com>
18492
18493         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
18494
18495 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
18496         
18497         * DataGridTextBoxColumn.cs: fixes and enhancements
18498         * ThemeWin32Classic.cs: fixes and enhancements
18499         * DataGridBoolColumn.cs:  fixes and enhancements
18500         * DataGridDrawingLogic.cs:  fixes and enhancements
18501         * CurrencyManager.cs: fixes and enhancements
18502         * DataGrid.cs: fixes and enhancements
18503         * DataGridColumnStyle.cs:  fixes and enhancements
18504
18505 2005-06-22  Jackson Harper  <jackson@ximian.com>
18506
18507         * TabControl.cs: Add some missing methods that just call into the
18508         base. Make the TabPageCollection's IList interface behave in the
18509         same manner as the MS implementation.
18510
18511 2005-06-22  Peter Bartok  <pbartok@novell.com> 
18512
18513         * TextControl.cs: Added sanity check
18514         * TextBoxBase.cs: 
18515           - Fixed wrapping behaviour, don't set wrap on single line controls
18516             (this fixes the breakage of colordialog introduced in an earlier
18517              checkin)
18518           - Added rudimentary support for autoscrolling right-aligned controls
18519             (still needs fixing, also, center alignment scroll is missing)
18520
18521 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
18522         
18523         * ScrollBar.cs: Fixes thumbpos on Maximum values
18524
18525 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
18526         
18527         * PropertyGridView.cs: Pass context information to UITypeEditors 
18528
18529 2005-06-21  Peter Bartok  <pbartok@novell.com> 
18530
18531         * TextBoxBase.cs:
18532           - Now calling PositionCaret with absolute space coordinates
18533           - Enabled vertical scrolling
18534           - Better tracking of scrollbar changes, tied into WidthChange
18535             event
18536           - Improved cursor tracking
18537           - Removed debug output
18538         * TextControl.cs:
18539           - PositionCaret coordinates are now works in absolute space, not 
18540             the canvas
18541           - Improved tracking of document size
18542           - Added events for width and height changes
18543
18544 2005-06-21  Peter Bartok  <pbartok@novell.com>
18545
18546         * Form.cs: Set focus to active control when form is activated
18547         * TextControl.cs: 
18548           - Added word-wrap functionality to RecalculateLine() 
18549           - Added some short function descriptions for VS.Net to aid in
18550             writing dependent controls
18551           - Added Caret property, returning the current coords of the caret
18552           - Added ViewPortWidth and ViewPortHeight properties
18553           - Added Wrap property
18554           - Added CaretMoved event
18555           - Removed some old debug code
18556           - Split() can now create soft splits
18557           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
18558           - Added method to format existing text
18559           - Fixed size/alignment calculations to use viewport
18560           - RecalculateDocument now can handle changing line-numbers while
18561             calculating lines
18562
18563         * TextBox.cs:
18564           - Added some wrap logic, we don't wrap if alignment is not left
18565           - Added casts for scrollbar var, base class switched types to
18566             also support RichTextBoxA
18567           - Implemented handling of scrollbar visibility flags
18568
18569         * TextBoxBase.cs:
18570           - Switched scrollbars type to RichTextBoxScrollBars to support
18571             RichTextBox
18572           - Added tracking of canvas width/height
18573           - Switched scrollbars to be not selectable (to keep focus on text)
18574           - Added central CalculateDocument() method to handle all redraw
18575             requirements
18576           - Added ReadOnly support
18577           - Added WordWrap support
18578           - Fixed handling of Enter key (we now treat it as a DialogKey)
18579           - Fixed caret positioning when h or v scroll is not zero
18580           - Fixed placing/generation of vertical scrollbar
18581           - Added CalculateScrollBars() method to allow updating scrollbar
18582             limits and visibility
18583           - Fixed handling of horizontal scroll
18584           - Added handling of vertical scroll
18585           - Implemented auto-'jump' when caret moves to close to a left or
18586             right border and there is text to be scrolled into view (currently
18587             there's the potential for a stack overflow, until a bug in
18588             scrollbar is fixed)
18589
18590 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
18591         
18592         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
18593
18594 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
18595
18596         * Mime.cs:
18597         - added inodes.
18598         - return application/x-zerosize for files with size zero
18599           (if no extension pattern matches).
18600         - check matches collection for strings too.
18601         - return only the first mime type if the name value
18602           collection has more than one mime type.
18603
18604 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
18605         
18606         * PropertyGrid.cs: Cleaned up some TODOs
18607         * PropertyGridView.cs: Added support for UITypeEditors
18608
18609 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18610         
18611         * DataGrid.cs: clears cached value
18612
18613 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18614
18615         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
18616         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
18617         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
18618         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
18619         
18620 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
18621
18622         * ThemeWin32Classic.cs: fixes colour
18623
18624 2005-06-15  Peter Bartok  <pbartok@novell.com>
18625
18626         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
18627         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
18628         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
18629         * Control.cs: Added some MWFCategory and MWFDescription attributes
18630         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
18631
18632 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
18633
18634         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
18635         usage
18636
18637 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
18638
18639         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
18640         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
18641         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
18642         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
18643         * DataGrid.cs: default datagrid settings for Default Styles, fixes
18644         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
18645
18646 2005-06-13  Jackson Harper  <jackson@ximian.com>
18647
18648         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
18649         isn't printed when the user enables dropping. (X11 does accept
18650         drops).
18651         
18652 2005-06-13  Jackson Harper  <jackson@ximian.com>
18653
18654         * TreeView.cs: Remove some TODOS.
18655
18656 2005-06-13  Jackson Harper  <jackson@ximian.com>
18657
18658         * Form.cs: Hook into the mdi framework.
18659         * MdiClient.cs: Use the base control collections add method so
18660         parents get setup correctly. Set the default back colour and dock
18661         style.
18662         * MdiChildContext.cs: New class, this bad actor handles an
18663         instance of an MDI window. Right now there is only basic
18664         support. You can drag, close, and resize windows. Minimize and
18665         Maximize are partially implemented.
18666
18667 2005-06-13  Jackson Harper  <jackson@ximian.com>
18668
18669         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
18670         freaky when both vals are negative. NOTE: There are probably other
18671         places in XplatUIX11 that this needs to be done.
18672
18673 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
18674
18675         * DataGrid.cs: implement missing methods, move KeyboardNavigation
18676         * DataGridColumnStyle.cs: fixes signature
18677
18678 2005-06-12  Jackson Harper  <jackson@ximian.com>
18679
18680         * XplatUIX11.cs: Use sizing cursors similar to the ones on
18681         windows.
18682
18683 2005-06-11  Jackson Harper  <jackson@ximian.com>
18684
18685         * StatusBarPanel.cs: Signature cleanups. Implement
18686         BeginInit/EndInit.
18687
18688 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
18689
18690         * DataGridTextBoxColumn.cs: Honors aligment
18691         * GridColumnStylesCollection.cs: Contains is case unsensitive
18692         * GridTableStylesCollection.cs: several fixes
18693         * DataGridTableStyle.cs: default column creation
18694         * DataGridDrawingLogic.cs: fixes
18695         * CurrencyManager.cs: ListName property
18696         * DataGrid.cs: multiple styles support
18697         * DataGridColumnStyle.cs: fixes
18698         
18699
18700 2005-06-10  Peter Bartok  <pbartok@novell.com>
18701
18702         * Control.cs(Select): Moved SetFocus call to avoid potential
18703           loops if controls change the active control when getting focus
18704         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
18705           the up/down buttons
18706
18707 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
18708
18709         * ImageListConverter.cs: Implemented
18710
18711 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18712
18713         * MonthCalendar.cs: Wired in NumericUpDown control for year
18714
18715 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18716
18717         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
18718           DoubleClick events, since they are not meant to be fired.
18719
18720 2005-06-09  Peter Bartok  <pbartok@novell.com>
18721
18722         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
18723           Jonathan's standalone controls into MWF, implemented missing
18724           events, attributes and methods; added xxxAccessible classes
18725         * AccessibleObject.cs: Made fields internal so other classes
18726           can change them if needed
18727
18728 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
18729
18730         * UpDownBase.cs: Complete implementation
18731         * NumericUpDown.cs: Complete implementation
18732         * DomainUpDown.cs: Complete implementation
18733
18734 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
18735
18736         * DataGridTextBoxColumn.cs: drawing fixes
18737         * DataGridCell.cs: fixes ToString method to match MSNet
18738         * DataGridTableStyle.cs: fixes
18739         * DataGridBoolColumn.cs: fixes, drawing
18740         * DataGridDrawingLogic.cs: fixes, new methods
18741         * DataGridTextBox.cs: Keyboard and fixes
18742         * DataGrid.cs:
18743                 - Keyboard navigation
18744                 - Scrolling fixes
18745                 - Row selection (single, multiple, deletion, etc)
18746                 - Lots of fixes
18747         
18748 2005-06-07  Jackson Harper  <jackson@ximian.com>
18749
18750         * ThemeWin32Classic.cs: Clear the background area when drawing
18751         buttons.
18752
18753 2005-06-06  Peter Bartok  <pbartok@novell.com>
18754
18755         * ImageListStreamer.cs: Fixed signature for GetData
18756         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
18757         * ComboBox.cs:
18758           - Added missing ChildAccessibleObject class
18759           - Added missing OnXXXFocus overrides, switched to using those
18760             instead of the event handler
18761         * Control.cs:
18762           - Added Parent property for ControlAccessibleObject
18763           - Fixed signatures
18764           - Fixed attributes
18765           - Added ResetBindings()
18766         * ListBindingConverter.cs: Implemented some methods
18767         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
18768         * ImageList.cs: Implemented basic handle scheme, removed TODOs
18769         * ContainerControl.cs: Fixed signature, now subscribing to the
18770           ControlRemoved event instead of overriding the handler, LAMESPEC
18771         * CurrencyManager.cs: Added missing attribute
18772         * MonthCalendar.cs: Added missing properties
18773
18774 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18775
18776         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
18777         
18778 2005-06-06  Gaurav Vaish and Ankit Jain
18779
18780         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
18781         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
18782         
18783 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18784
18785         * Control.cs: fixes CreateParams Width / Height.
18786
18787 2005-06-05  Peter Bartok  <pbartok@novell.com>
18788
18789         * Win32DnD.cs: Removed compilation warnings
18790
18791 2005-06-05  Peter Bartok  <pbartok@novell.com>
18792
18793         * Control.cs (CreateParams): Since we don't know if one of the
18794           properties we use is overridden, lets make sure if we fail accessing
18795           we continue with a backup plan
18796
18797 2005-06-05  Peter Bartok  <pbartok@novell.com>
18798
18799         * Win32DnD.cs:
18800           - Removed debug output
18801           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
18802             struct
18803           - Plugged resource leak
18804         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
18805           MS size
18806
18807 2005-06-05  Peter Bartok  <pbartok@novell.com>
18808
18809         * XplatUIWin32.cs: Removed DnD code
18810         * Win32DnD.cs: Implemented drop source and drop target functionality
18811
18812 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18813
18814         * UpDownBase.cs: remove duplicate addition of event, enable some code
18815         that was commented out.
18816         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
18817         Validate input when a key is pressed. It works fine now for every
18818         combination of Hexadecimal. Only missing some drawing love when sharing
18819         space with other controls.
18820
18821 2005-06-04  Peter Bartok  <pbartok@novell.com>
18822
18823         * Control.cs:
18824           - We need to pass a window for DragDrop, so enable callback events
18825           - Added DnD callback events when being a DragSource
18826         * XplatUI.cs (StartDrag): Added window handle argument
18827         * XplatUIDriver.cs (StartDrag): Added window handle argument
18828         * QueryContinueDragEventArgs: Made fields internally accessible so
18829           drivers can set them
18830         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
18831           can set them
18832
18833 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
18834
18835         * DataGridTextBoxColumn.cs: column text editing
18836         * DataGridTableStyle.cs: Respect columns styles created by the user
18837         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
18838         * DataGridBoolColumn.cs: bool column editing
18839         * DataGrid.cs: fixes to scrolling, properties, etc
18840         * DataGridTextBox.cs: handle keyboard
18841         * DataGridColumnStyle.cs: fixes
18842
18843 2005-06-02  Jackson Harper  <jackson@ximian.com>
18844
18845         * ImageListStreamer.cs: Somewhat broken implementation of
18846         GetObjectData. The RLE needs some work to match MS properly.
18847
18848 2005-06-02  Jackson Harper  <jackson@ximian.com>
18849
18850         * X11Dnd.cs: Attempting to keep at least one file in MWF
18851         monostyled.
18852
18853 2005-06-02  Peter Bartok  <pbartok@novell.com>
18854
18855         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
18856           that way
18857
18858 2005-06-02  Peter Bartok  <pbartok@novell.com>
18859
18860         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
18861         * XplatUI.cs: Added DoDragDrop() method
18862         * XplatUIDriver.cs: Added DoDragDrop() method
18863
18864 2005-06-02  Jackson Harper  <jackson@ximian.com>
18865
18866         * Splitter.cs: Implement BorderStyle.
18867
18868 2005-06-02  Jackson Harper  <jackson@ximian.com>
18869
18870         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
18871         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
18872         X11 using XDND.
18873
18874 2005-06-02  Peter Bartok  <pbartok@novell.com>
18875
18876         * DataObject.cs:
18877           - Added Data setter
18878           - Fixed broken insertion code for SetData, now also
18879             overwrites any existing entry of the same format name
18880         * Hwnd.cs: Added list of pointers that automatically gets
18881           freed when the window is disposed
18882         * XplatUI.cs: Call driver initialization method when loading
18883           a driver
18884         * Control.cs:
18885           - OnDragLeave takes EventArgs, not DragEventArgs
18886           - Added setting of WS_EX_ACCEPTFILES style when dropping is
18887             supported
18888           - Forces style update when drop state changes
18889         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
18890           not perfect since we cannot (yet) call the IDataObject.GetData()
18891           method, we keep getting 0x80004005 error, dunno why)
18892
18893 2005-06-02  Peter Bartok  <pbartok@novell.com>
18894
18895         * DragEventArgs.cs: Make fields internal so we can cache the
18896           object and re-set the fields from XplatUI
18897
18898 2005-06-02  Jackson Harper  <jackson@ximian.com>
18899
18900         * Control.cs: Add some internal methods so the DnD subsystem can
18901         raise DnD events. Also call into the driver when AllowDrop is set.
18902         * XplatUI.cs:
18903         * XplatUIDriver.cs: New method for setting whether or not a window
18904         is allowed to accept drag and drop messages.
18905                 
18906 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
18907         
18908         * ScrollBar.cs: Make sure that values sent in Scroll events
18909         are always between Maximum and Minimum.
18910
18911 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
18912
18913         * Menu.cs: Call MenuChanged when menuitem visibility has been
18914         changed.
18915         * MenuItem.cs: Rebuild menu when item is (not) visible.
18916         * MainMenu.cs: MainMenu has special MenuChanged.
18917         * Theme.cs: Caption and FrameBorderSize are not fixed.
18918         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
18919         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
18920         * XplatUIX11.cs,
18921         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
18922         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
18923
18924 2005-05-30  Jackson Harper  <jackson@ximian.com>
18925
18926         * DataFormat.cs: We can't statically initialize this stuff because
18927         it calls into the xplatui and could create a loop. So we lazy init
18928         it.
18929
18930 2005-05-28  Jackson Harper  <jackson@ximian.com>
18931
18932         * Control.cs: Proper implementation of Product(Name/Version).
18933
18934 2005-05-27  Jackson Harper  <jackson@ximian.com>
18935
18936         * DataObject.cs: Dont crash if no data is found.
18937
18938 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
18939         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
18940                 as per status page, guessing it should be set to true
18941
18942 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
18943
18944         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
18945         * DataGridTableStyle.cs: set proper formatting text, def header text
18946         * ThemeWin32Classic.cs: new themable paramaters
18947         * DataGridBoolColumn.cs: paint check box, get data, fixes
18948         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
18949         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
18950         * DataGridColumnStyle.cs: fixes
18951         * Theme.cs: new themable paramaters
18952                 
18953 2005-05-26  Peter Bartok  <pbartok@novell.com>
18954
18955         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
18956
18957 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18958         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
18959
18960 2005-05-24  Peter Bartok  <pbartok@novell.com>
18961
18962         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
18963           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
18964           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
18965           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
18966           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
18967           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
18968           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
18969           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
18970           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
18971           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
18972           missing attributes, etc
18973         * DataGridPreferredColumnWidthTypeConverter.cs: Added
18974
18975 2005-05-24  Peter Bartok  <pbartok@novell.com>
18976
18977         * Help.cs: Added, implemented trivial functions, throws up MessageBox
18978           when user tries to get help
18979         * DataObject.cs, DataFormats.cs, LinkArea.cs,
18980           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
18981           to suppress warnings
18982         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
18983           avoid unreachable code warning
18984
18985 2005-05-20  Peter Bartok  <pbartok@novell.com>
18986
18987         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
18988
18989 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18990
18991         * DataGridTextBoxColumn.cs: Basic painting methods
18992         * DataGridTableStyle.cs: Set table style in the column
18993         * ThemeWin32Classic.cs: Use Theme for colors
18994         * DataGridDrawingLogic.cs: Implement more drawing
18995         * DataGrid.cs: drawing, theming, enhacements, fixes
18996         * DataGridColumnStyle.cs: fixes, drawing
18997         * Theme.cs: theming for Datagrid
18998
18999 2005-05-20  Peter Bartok  <pbartok@novell.com>
19000
19001         * Cursor.cs: Implemented GetObjectData() method
19002
19003 2005-05-20  Peter Bartok  <pbartok@novell.com>
19004
19005         * Cursors.cs: Added setting of cursor name
19006         * Cursor.cs:
19007           - Implemented constructors
19008           - Implemented Draw and DrawStretched
19009           - Implemented Current property
19010           - Implemented == and != operators
19011           - Implemented Dispose()
19012           - Implemented ToString
19013           - Added missing attributes
19014         * XplatUIX11.cs:
19015           - Added missing reset for OverrideCursor when DoEvents is called
19016           - Fixed creation of cursor, logic was wrong
19017         * XplatUIWin32.cs:
19018           - Added missing reset for OverrideCursor when DoEvents is called
19019           - Fixed creation of cursor, bit arrays were swapped
19020         * Clipboard.cs: Removed obsolete MonoTODO attribute
19021
19022 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19023
19024         * ComboBox.cs: fixes OnSelectedItemChanged
19025         * ControlBindingsCollection.cs: fixes item range check
19026
19027 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
19028
19029         * UpDownBase.cs:
19030                 - Calc preferred height properly
19031                 - Implement missing properties
19032                 
19033         * NumericUpDown.cs: Implement missing events
19034
19035 2005-05-19  Jackson Harper  <jackson@ximian.com>
19036
19037         * TabControl.cs: New method that resizes the tab pages before
19038         redrawing them. This as needed as the control is double buffered
19039         and sizing will not be recalculated unless ResizeTabPages is
19040         called.
19041         * TabPage.cs: Set base.Text instead of Text in the constructor so
19042         that UpdateOwner does not get called. Use the new Redraw method of
19043         TabControl instead of Refresh so the sizing is recalculated.
19044         * ThemeWin32Classic.cs: Draw the text for button tabs.
19045
19046 2005-05-19  Jackson Harper  <jackson@ximian.com>
19047
19048         * Control.cs: Paint control background images. Fix typo where
19049         PaintControlBackground was not getting called correctly.
19050
19051 2005-05-19  Peter Bartok  <pbartok@novell.com>
19052
19053         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
19054           I can investigate, apparently I broke FileDialog
19055
19056 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
19057
19058         * AxHost.cs: Some simple properties.
19059         * Control.cs: window must be accessible after ctor.
19060         * Form.cs: Added TransparencyKey property.
19061         * TextBoxBase.cs: Implemented Clear. Text property can be null.
19062         * XplatUIWin32.cs: SetBorderStyle implemented.
19063
19064 2005-05-18  Peter Bartok  <pbartok@novell.com>
19065
19066         * DataObject.cs: Entries are not global but particular to the
19067           DataObject, now it behaves that way
19068         * XplatUIWin32.cs: Implemented Clipboard methods
19069         * Clipboard.cs: Implemented
19070         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
19071         * XplatUIOSX.cs: Updated to final clipboard prototypes
19072         * XplatUIX11.cs: Implemented Clipboard methods
19073         * XplatUIDriver.cs: Updated to final clipboard prototypes
19074         * XplatUIStructs.cs:
19075           - Added BITMAPINFOHEADER struct
19076           - Added ClipboardFormats enum
19077         * X11Structs.cs:
19078           - Added ClipboardStruct
19079           - Added Atom enum items for clipboard types
19080           - Fixed atom types for Selection event structures
19081         * DataFormats.cs:
19082           - Added internal properties and methods for drivers to enumerate
19083             all known formats
19084           - Switched initialization method to allow drivers to assign their
19085             own IDs even for the MS predefined clipboard IDs
19086         * XplatUI.cs: Updated to final clipboard interface
19087
19088 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19089         * PropertyGridView.cs: Fixed compiler warnings.
19090
19091 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
19092         * PropertyGrid.cs: Added some event calls
19093         * PropertyGridView.cs: Change drawing code to use double buffering
19094         * PropertyGridTextBox.cs: Changed Text property name
19095         * GridItem.cs: Added Bounds property.
19096         * GridEntry.cs: Added Bounds property.
19097
19098 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
19099
19100         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
19101         since GetType() may not return the correct type if the object is
19102         a remoting proxy.
19103
19104 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
19105
19106         * TreeNodeCollection.cs: fixes get/set item ranges
19107         
19108 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
19109
19110         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
19111                 
19112 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
19113
19114         * ComboBox.cs: Fix item range comparation
19115         * ListView.cs: Fix item range comparation
19116
19117 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
19118
19119         * FontDialog.cs:
19120           - Clear example panel when OnPaint is called
19121           - Better solution for displaying the example panel text
19122           - Select default indexes in the ListBoxes
19123
19124 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
19125
19126         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
19127
19128 2005-05-11  Peter Bartok  <pbartok@novell.com>
19129
19130         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
19131         * SelectionRangeConverter.cs: Implemented
19132         * PropertyGrid.cs: Fixed attribute value
19133         * Control.cs:
19134           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
19135           - Added Sebastien Pouliot's CAS Stack Propagation fixes
19136         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
19137           that's common to all drivers. First methods to go there are
19138           Sebastien Pouliot's CAS Stack Propagation helper methods
19139         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
19140           Sebastien Pouliot for CAS Stack Propagation
19141
19142 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
19143
19144         * OSXStructs.cs:
19145           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
19146
19147 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
19148
19149         * DataGridTextBoxColumn.cs: fixed some members
19150         * GridColumnStylesCollection.cs: indexed column is case insensitive
19151         * DataGridTableStyle.cs: fixes
19152         * ThemeWin32Classic.cs: add new theme parameter
19153         * Theme.cs: add new theme parameter
19154         * DataGridDrawingLogic.cs: Datagrid's drawing logic
19155         * DataGrid.cs: fixes, new internal properties, etc.
19156         * DataGridColumnStyle.cs: allows to set grid value
19157         *
19158
19159 2005-05-10  Peter Bartok  <pbartok@novell.com>
19160
19161         * AccessibleObject.cs:
19162           - Removed MonoTODO attribute on help, method is correct
19163           - Fixed Bounds property
19164         * AxHost.cs: Moved MonoTODO
19165         * ButtonBase.cs: Now setting AccessibleObject properties
19166         * RadioButton.cs: Setting proper AccessibleObject role
19167         * CheckBox.cs: Setting proper AccessibleObject role
19168         * ControlBindingsCollection.cs: Added properties, methods and attributes
19169         * DataFormats.cs: Fixed awkward internal API, and changed to enable
19170           userdefined DataFormats.Format items as well
19171         * ListControl.cs: Removed data_member from the public eye
19172         * OpenFileDialog.cs:
19173           - Made class sealed
19174           - Added missing attributes
19175         * SaveFileDialog.cs: Added missing attributes
19176         * ImageListStreamer.cs: Fixed code that caused warnings
19177         * LinkLabel.cs: Removed unreachable code
19178         * TreeView.cs: Fixed code that caused warnings
19179         * PropertyGridView.cs: Fixed code that caused warnings
19180         * GridColumnStylesCollection.cs: Added missing attributes
19181         * GridTableStylesCollection: Added missing attribute
19182         * PropertyManager: Added .ctor
19183         * SecurityIDType: Added
19184         * DataObject.cs: Implemented class
19185         * LinkArea.cs: Added missing attribute
19186
19187 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
19188
19189         * RadioButton.cs: call base method to allow to fire OnClick event
19190         * UpDownBase.cs: OnMouseUp call base method
19191         * CheckedListBox.cs: call base method before returning
19192         * TrackBar.cs: call base method before returning
19193         
19194
19195 2005-05-10  Peter Bartok  <pbartok@novell.com>
19196
19197         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
19198           for messages
19199
19200 2005-05-10  Peter Bartok  <pbartok@novell.com>
19201
19202         * DataFormats.cs: Implemented
19203         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
19204           XplatUIX11.cs: Added Clipboard APIs
19205         * XplatUIWin32.cs: Implemented Clipboard APIs
19206         * FolderBrowserDialog.cs: Added missing event, attributes
19207
19208 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
19209
19210         * CheckBox.cs: call base method to allow to fire OnClick event
19211
19212 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
19213
19214         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
19215
19216 2005-05-06  Peter Bartok  <pbartok@novell.com>
19217
19218         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
19219         * Screen.cs: Implemented
19220         * HelpNavigator.cs: Added
19221         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
19222           property
19223         * HelpProvider.cs: Implemented all we can do until we have a CHM
19224           help library (which means that "What's This" does work now)
19225
19226 2005-05-06  Jackson Harper  <jackson@ximian.com>
19227
19228         * XplatUIX11.cs: Fix waking up the main loop.
19229                 
19230 2005-05-05  Peter Bartok  <pbartok@novell.com>
19231
19232         * XplatUI.cs: Updated revision
19233         * Form.cs: Removed enless loop
19234         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
19235         * Label.cs (OnPaint): Added call to base.OnPaint()
19236         * ToolTip.cs: Made ToolTipWindow reusable for other controls
19237         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
19238         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
19239         * AxHost.cs: Added
19240         * ButtonBase.cs: Moved base.OnPaint() call to end of method
19241         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
19242           to ToolTip.ToolTipWindow for drawing and size methods; this allows
19243           reuse of ToolTipWindow by other controls
19244         * SizeGrip.cs: Moved base.OnPaint() call to end of method
19245         * XplatUIX11.cs: Now clipping drawing area (experimental)
19246         * PictureBox.cs: Moved base.OnPaint() call to end of method
19247         * Theme.cs: Fixed ToolTip abstracts to match new format
19248         * ErrorProvider.cs: Implemented
19249
19250 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
19251
19252         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
19253         * LinkLabel.cs:
19254                 - Adds cursors
19255                 - Handles focus
19256                 - Implements LinkBehavior
19257                 - Fixes many issues
19258
19259 2005-05-03  Jackson Harper  <jackson@ximian.com>
19260
19261         * ListView.cs: Calculate the scrollbar positioning on resize and
19262         paint, so they get put in the correct place.
19263
19264 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
19265
19266         * ColorDialogs.cs: The small color panels are now handled by
19267           SmallColorControl. This fixes drawing of the focus rectangle
19268           and adds a 3D border.
19269
19270 2005-05-03  Peter Bartok  <pbartok@novell.com>
19271
19272         * Control.cs: Modified version of Jonathan Chamber's fix for
19273           double-buffering
19274
19275 2005-05-03  Jackson Harper  <jackson@ximian.com>
19276
19277         * ListView.cs: Remove redraw variable. Control now handles whether
19278         or not a redraw needs to be done, and will only raise the paint
19279         event if redrawing is needed.
19280
19281 2005-05-03  Jackson Harper  <jackson@ximian.com>
19282
19283         * Splitter.cs: No decorations for the splitter form. Cache the
19284         hatch brush.
19285
19286 2005-05-03  Jackson Harper  <jackson@ximian.com>
19287
19288         * TreeView.cs: Use dashed lines to connect nodes. Use the
19289         ControlPaint method for drawing the focus rect instead of doing
19290         that in treeview.
19291
19292 2005-05-02  Peter Bartok  <pbartok@novell.com>
19293
19294         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
19295
19296 2005-04-29  Jackson Harper  <jackson@ximian.com>
19297
19298         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
19299         entire image buffer. Just clear the clipping rectangle.
19300
19301 2005-04-29  Jackson Harper  <jackson@ximian.com>
19302
19303         * ThemeWin32Classic.cs: Don't draw list view items that are
19304         outside the clipping rectangle.
19305
19306 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
19307
19308         * ListBox.cs: added horizontal item scroll
19309
19310 2005-04-29  Jackson Harper  <jackson@ximian.com>
19311
19312         * ThemeWin32Classic.cs: Remove some old debug code that was
19313         causing flicker with the new double buffering code.
19314
19315 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
19316
19317         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
19318         behave like combobox and comboboxlist (still not sure if this is
19319         correct though).
19320
19321 2005-04-28  Jackson Harper  <jackson@ximian.com>
19322
19323         * ThemeWin32Classic.cs: Don't fill the middle of progress
19324         bars. This fills areas outside of the clip bounds that don't need
19325         to be filled.
19326
19327 2005-04-28  Jackson Harper  <jackson@ximian.com>
19328
19329         * Control.cs: Don't expose functionality to touch the image buffers.
19330         * ProgressBar.cs:
19331         * ListView.cs: We do not need to (and no longer can) manipulate
19332         the image buffers directly. All of this is handled by Control.
19333
19334 2005-04-28  Peter Bartok  <pbartok@novell.com>
19335
19336         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
19337           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
19338           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
19339
19340 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
19341
19342         * Combobox:
19343                 - Adjust control's height for non-simple comboboxes (bug fix)
19344                 - Remove dead code
19345         * MenuAPI.cs: remove unused var
19346         * ScrollBar.cs: remove unsed var
19347                  
19348         * ListBox.cs: unselect items when clearing
19349
19350 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
19351
19352         * ListControl.cs: honors OnPositionChanged and default Selected Item
19353         * ListBox.cs: unselect items when clearing
19354
19355 2005-04-27  Jackson Harper  <jackson@ximian.com>
19356
19357         * X11Keyboard.cs: Initialize a default keyboard and give a warning
19358         if a "correct" keyboard is not found. This will make us not crash,
19359         but might give some users bad keyboard layouts...seems to be the
19360         same thing rewind does.
19361
19362 2005-04-27  Jackson Harper  <jackson@ximian.com>
19363
19364         * BindingManagerBase.cs: Attach the current/position changed
19365         handlers to their respective events.
19366
19367 2005-04-27  Jackson Harper  <jackson@ximian.com>
19368
19369         * Control.cs: Make sure that the first WM_PAINT does a full draw,
19370         not just a blit.
19371         * ThemeWin32Classic.cs: Don't fill the background for picture
19372         boxes. This could overright user drawing.
19373         * ComboBox.cs: Just fill the clipping rect not the entire client
19374         rect when drawing the background. This prevents pieces of the
19375         image buffer from getting overwritten and is theoretically faster.
19376
19377 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
19378
19379         * ComboBox.cs: Databinding support fixes, fire missing events
19380         * ListControl.cs: implement missing methods and properties, fixes
19381         * ThemeWin32Classic.cs: Databiding support on Drawing
19382         * CheckedListBox.cs: Databinding support fixes, fire missing events
19383         * ListBox.cs: Databinding support fixes, fire missing events
19384         
19385 2005-04-25  Peter Bartok  <pbartok@novell.com>
19386
19387         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
19388
19389 2005-04-25  Jackson Harper  <jackson@ximian.com>
19390
19391         * TreeView.cs: Use the horizontal scrollbars height not width when
19392         determining how much of the client area is available.
19393
19394 2005-04-25  Jackson Harper  <jackson@ximian.com>
19395
19396         * Control.cs: Double buffering is handled differently now. As per
19397         the spec, the extra buffer is created in the WM_PAINT message and
19398         passed down to the control's drawing code.
19399         * GroupBox.cs:
19400         * Label.cs:
19401         * CheckBox.cs:
19402         * ProgressBar.cs:
19403         * RadioButton.cs:
19404         * ColorDialog.cs:
19405         * ComboBox.cs:
19406         * PropertyGridView.cs:
19407         * UpDownBase.cs:
19408         * MessageBox.cs:
19409         * MenuAPI.cs:
19410         * ListView.cs:
19411         * ButtonBase.cs:
19412         * SizeGrip.cs:
19413         * ScrollBar.cs:
19414         * ListBox.cs:
19415         * TrackBar.cs:
19416         * ToolBar.cs:
19417         * PictureBox.cs:
19418         * DateTimePicker.cs:
19419         * StatusBar.cs:
19420         * TreeView.cs: Update to new double buffering system.
19421         * MonthCalendar.cs: Uncomment block, as Capture is now
19422         working. Update to new double buffering
19423         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
19424         * PaintEventArgs.cs: New internal method allows us to set the
19425         graphics object. This is used for double buffering.
19426         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
19427         rectangle. The internal paint_area var has been removed from
19428         StatusBar. The clipping rect should be used instead.
19429         * Theme.cs: Give the PictureBox drawing method a clipping rect.
19430         * TabPage.cs: The RefreshTabs method was removed, so just call the
19431         tab controls Refresh method now.
19432         * TabControl.cs: Update to new double buffering. Make sure the
19433         handle is created before sizing the tab pages, otherwise we will
19434         get stuck in a loop.
19435
19436 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
19437
19438         * LinkLabel.cs: Fix typo, bug #74719; patch
19439           from Borja Sanchez Zamorano
19440
19441 2005-04-22  Jackson Harper  <jackson@ximian.com>
19442
19443         * TreeNode.cs: Implement Handle stuff.
19444         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
19445
19446 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
19447
19448         * DataGridTextBoxColumn.cs: call base constructors, fixes
19449         * GridColumnStylesCollection.cs: missing events, methods, and functionality
19450         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
19451         * DataGridTableStyle.cs: implements create default column styles
19452         * DataGridBoolColumn.cs: which types can handle
19453         * DataGrid.cs: missing methods, fixes, new functionality
19454         * DataGridColumnStyle.cs: fixes
19455
19456 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
19457         * FolderBrowserDialog.cs:
19458         - Use a thread to fill the TreeView
19459         - Adjusted some sizes
19460
19461 2005-04-19  Peter Bartok  <pbartok@novell.com>
19462
19463         * LinkLabel.cs: (Re-)create the pieces when setting the Text
19464           property. Fixes #74360.
19465
19466 2005-04-19  Jackson Harper  <jackson@ximian.com>
19467
19468         * XEventQueue.cs: Lock when getting the lockqueue size.
19469         * PictureBox.cs: Call base OnPaint
19470         
19471 2005-04-19  Peter Bartok  <pbartok@novell.com>
19472
19473         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
19474           messages were no longer being processed (this broke BeginInvoke)
19475
19476           
19477 2005-04-18  Jackson Harper  <jackson@ximian.com>
19478
19479         * TreeView.cs: buglet that caused node images to get drawn
19480         regardless of whether or not they were in the clipping rectangle.
19481
19482 2005-04-18  Jackson Harper  <jackson@ximian.com>
19483
19484         * CurrencyManager.cs: There are four rules for GetItemProperties:
19485         - If the type is an array use the element type of the array
19486         - If the type is a typed list, use the type
19487         - If the list contains an Item property that is not an object, use
19488         that property
19489         - use the first element of the list if there are any elements in
19490         the list.
19491         
19492 2005-04-17  Jackson Harper  <jackson@ximian.oom>
19493
19494         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
19495         click. This handles offsets for scrolling properly and reduces
19496         memory. Also fixed GetNode to not offset now that TopNode works
19497         properly.
19498         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
19499         
19500 2005-04-17  Jackson Harper  <jackson@ximian.com>
19501
19502         * CursorConverter.cs: Initial implementation.
19503
19504 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
19505
19506         * ListControl.cs: work towards complex data binding support on ListControl
19507         * CurrencyManager.cs: work towards complex data binding support on ListControl
19508         * ListBox.cs: work towards complex data binding support on ListControl
19509
19510
19511 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
19512
19513         * GridTableStylesCollection.cs: fixes name and constructor
19514         * DataGridTableStyle.cs: fixes
19515         * DataGridBoolColumn.cs: fixes names and constructors
19516         * DataGrid.cs: define methods and properties. Some init implementations
19517         * DataGridCell.cs: define methods and properties. Some init implementations
19518         * GridTablesFactory.cs: Define methods and properties
19519
19520 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
19521
19522         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
19523         graphics port changes.  We still want the coordinates in global screen
19524         coordinates.
19525
19526 2005-04-14  Jackson Harper  <jackson@ximian.com>
19527
19528         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
19529         check plus minus or checkbox clicks unless those features are enabled.
19530
19531 2005-04-14  Jackson Harper  <jackson@ximian.com>
19532
19533         * TreeView.cs: Add methods for setting the top and bottom visible
19534         nodes. TreeNode::EnsureVisible uses these methods.
19535         * TreeNode.cs: Implement EnsureVisible
19536
19537 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
19538
19539         * Form.cs: Pospone menu assignation if the window has not been created yet
19540         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
19541         size and position
19542
19543 2005-04-12  Jackson Harper  <jackson@ximian.com>
19544
19545         * TreeView.cs: Set the TopNode properly when scrolling
19546         occurs. This has the added benifit of reducing the amount of
19547         walking that needs to be done when drawing. Also removed an old
19548         misleading TODO.
19549         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
19550         
19551 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
19552
19553         * Timer.cs: fixes interval setting when the timer is already enabled
19554         
19555 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
19556
19557         * FolderBrowserDialog.cs: First approach
19558
19559 2005-04-09  Peter Bartok  <pbartok@novell.com>
19560
19561         * FolderBrowserDialog: Added
19562
19563 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
19564
19565         * LinkLabel.cs: move drawing code into the theme
19566         * ThemeWin32Classic.cs: drawing code and painting background bugfix
19567         * Theme.cs: define DrawLinkLabel method
19568
19569 2005-04-05  Jackson Harper  <jackson@ximian.com>
19570
19571         * BindingContext.cs: Use weak references so these bad actors don't
19572         stay alive longer then they need to.
19573
19574 2005-04-05  Jackson Harper  <jackson@ximian.com>
19575
19576         * ListControl.cs: Basic implementation of complex databinding.
19577         * ComboBox.cs:
19578         * ListBox.cs: Add calls to ListControl databinding methods.
19579
19580 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
19581
19582         * FileDialog.cs:
19583           - Don't change PopupButtonState to Normal when the
19584             PopupButton gets pressed several times.
19585           - Renamed ButtonPanel to PopupButtonPanel
19586
19587 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
19588
19589         * ColorDialog.cs: Use cached objects instead of creating them
19590         * LinkLabel.cs: Use cached objects instead of creating them
19591         * Splitter.cs: Use cached objects instead of creating them
19592         * FontDialog.cs: Use cached objects instead of creating them
19593         * PropertyGridView.cs: Use cached objects instead of creating them
19594         * MessageBox.cs: Use cached objects instead of creating them
19595         * FileDialog.cs: Use cached objects instead of creating them
19596         * ThemeWin32Classic.cs: Use cached objects instead of creating them
19597         * TreeView.cs: Use cached objects instead of creating them
19598         
19599 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
19600
19601         * Control.cs: use Equals to compare the font since no == op
19602         * ScrollBar.cs: use Equals to compare the font since no == op
19603
19604 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
19605
19606         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
19607
19608 2005-04-01  Jackson Harper  <jackson@ximian.com>
19609
19610         * Binding.cs: Implement IsBinding.
19611         * BindingManagerBase.cs:
19612         * PropertyManager.cs:
19613         * CurrencyManager.cs: Add IsSuspended property.
19614
19615 2005-04-01  Jackson Harper  <jackson@ximian.com>
19616
19617         * Binding.cs: Had some IsAssignableFrom calls backwards.
19618
19619 2005-04-01  Jackson Harper  <jackson@ximian.com>
19620
19621         * Binding.cs: Handle null data members when pulling data.
19622         * PropertyManager.cs: Handle the data member being a property that
19623         does not exist.
19624
19625 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19626
19627         * DataGridTextBoxColumn.cs: fixes signature
19628         * DataGrid.cs: calls right constructor
19629
19630 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19631
19632         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
19633         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
19634         * GridTableStylesCollection.cs: implements GridTableStylesCollection
19635         * DataGridTableStyle.cs: implements DataGridTableStyle
19636         * DataGridBoolColumn.cs: implements DataGridBoolColumn
19637         * DataGridTextBox.cs: implements DataGridTextBox
19638         * DataGridColumnStyle.cs: implements DataGridColumnStyle
19639
19640 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
19641
19642         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
19643
19644 2005-03-29  Peter Bartok  <pbartok@novell.com>
19645
19646         * Application.cs:
19647           - Properly implemented CompanyName property
19648           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
19649             returns a path that includes CompanyName, ProductName and
19650             Version (fixes bug #70330)
19651
19652 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
19653
19654         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
19655           fixes bug #72588.
19656
19657 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19658
19659         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
19660         
19661           - Added ReadOnly CheckBox
19662           - Further refactoring: moved some code from Open-/SaveFileDialog
19663             to FileDialog
19664
19665 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19666
19667         * OpenFileDialog.cs: Fixed CheckFileExists
19668         * FileDialog.cs:
19669           Moved FileView and DirComboBox outside FileDialog class.
19670           They can now be used outside FileDialog
19671
19672 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19673
19674         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
19675         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
19676
19677 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19678
19679         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19680           - Added missing CreatePrompt property in SaveDialog
19681           - Overall SaveDialog handling should be better now
19682           - Added non standard ShowHiddenFiles property
19683           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
19684           - Added InitialDirectory and RestoreDirectory support
19685
19686 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
19687
19688         * FileDialog.cs: Made dirComboBox usable
19689
19690 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
19691
19692         * FileDialog.cs: Added Filter support (case sensitiv)
19693
19694 2005-03-24  Jackson Harper  <jackson@ximian.com>
19695
19696         * TabControl.cs: Need a couple more pixels for the lines.
19697
19698 2005-03-23  Jackson Harper  <jackson@ximian.com>
19699
19700         * TabControl.cs: Give the tab page focus when it is selected.
19701
19702 2005-03-23  Jackson Harper  <jackson@ximian.com>
19703
19704         * TabControl.cs: Account for the drawing of tabs borders when
19705         invalidating. If the slider was clicked dont do click detection on
19706         the tabs.
19707
19708 2005-03-23  Jackson Harper  <jackson@ximian.com>
19709
19710         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
19711
19712 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
19713
19714         * CategoryGridEntry.cs: Added
19715         * GridItem.cs: Added helper properties
19716         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
19717         * GridEntry.cs: Updated code for collection
19718         * PropertyGrid.cs: Cleaned up some formatting
19719         * PropertyGridView.cs: Added drop down functionality for enums.
19720         * GridItemCollection.cs: Added enumerator logic
19721         * PropertyGridEntry.cs: Added
19722
19723 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19724
19725         * FileDialog.cs:
19726           - Removed unnecessary commented code
19727           - Fixed handling for entering the filename manually in the combobox
19728
19729 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19730
19731         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
19732
19733 2005-03-18  Peter Bartok  <pbartok@novell.com>
19734
19735         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
19736           them being touching the border
19737
19738 2005-03-18  Peter Bartok  <pbartok@novell.com>
19739
19740         * TextControl.cs: Quick hack to center text better
19741
19742 2005-03-18  Peter Bartok  <pbartok@novell.com>
19743
19744         * ControlPaint.cs:
19745           - Don't throw NotImplemented exceptions, just print a notice once
19746             instead (requested by Miguel). This makes running existing SWF
19747             apps a bit easier
19748         * Control.cs:
19749           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
19750           - Added context menu trigger on right click
19751         * Panel.cs: Trigger invalidate on resize
19752         * StatusBar.cs:
19753           - Removed old double-buffer drawing
19754           - Added ResizeRedraw style to force proper update of statusbar
19755         * ListView.cs:
19756           - Removed debug output
19757         * ThemeWin32Classic.cs:
19758           - Fixed drawing of status bar, now draws Text property if there
19759             are no defined panels
19760
19761 2005-03-18  Jackson Harper  <jackson@ximian.com>
19762
19763         * ImageList.cs: When the image stream is set pull all the images
19764         from it.
19765         * ImageListStreamer.cs: Implement reading image list streams.
19766
19767 2005-03-18  Peter Bartok  <pbartok@novell.com>
19768
19769         * ThemeWin32Classic.cs (DrawPictureBox):
19770           - Fixed calculations for centered drawing
19771           - Fixed drawing for normal mode, not scaling the image on normal
19772
19773 2005-03-18  Peter Bartok  <pbartok@novell.com>
19774
19775         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
19776           textbox
19777         * FileDialog.cs:
19778           - Made Open/Save button the accept button for FileDialog
19779           - Tied the cancel button to the IButtonControl cancel button
19780           - Save/Open now properly builds the pathname
19781           - Now handles user-entered text
19782           - Preventing crash on right-click if no item is selected
19783           - Fixed Text property, now uses contents of textbox
19784           - Fixed SelectedText property, now just returns the text part that
19785             is selected in the text box
19786
19787 2005-03-18  Jackson Harper  <jackson@ximian.com>
19788
19789         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
19790         rect, make sure to de-adjust the interior rect after drawing the
19791         tab text.
19792
19793 2005-03-18  Peter Bartok  <pbartok@novell.com>
19794
19795         * MenuAPI.cs: Remove menu *before* executing selected action to
19796           prevent the menu from 'hanging around'
19797           
19798 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
19799
19800         * XplatUIOSX.cs: Implemented WorkingArea property
19801
19802 2005-03-17  Peter Bartok  <pbartok@novell.com>
19803
19804         * XplatUIX11.cs: Fixed menu coord calculations
19805         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
19806           for calculating offsets
19807
19808 2005-03-17  Peter Bartok  <pbartok@novell.com>
19809
19810         * Hwnd.cs: Do not consider menu presence for default client
19811           rectangle location/size
19812         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
19813           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
19814           translation functions
19815         * FileDialog.cs: Fixed (what I presume is a) typo
19816
19817 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
19818
19819         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
19820           X access (avoids X-Async errors)
19821
19822 2005-03-16  Jackson Harper  <jackson@ximian.com>
19823
19824         * TabControl.cs: Raise the SelectedIndexChanged event.
19825
19826 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
19827
19828         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19829           - Removed vertical ToolBar and replaced it with a custom panel
19830             (desktop and home button already work)
19831           - Added Help button (some controls get resized or relocated then)
19832           - Draw correct text depending on Open or Save.
19833           - Fixed some typos...
19834
19835 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
19836
19837         * ScrollBar.cs:
19838           - Only change Maximum and Minimum when need it (bug fix)
19839
19840 2005-03-15  Peter Bartok  <pbartok@novell.com>
19841
19842         * Form.cs: Use Handle for icon, to trigger creation if
19843           the window does not yet exist
19844         * Control.cs:
19845           - CanSelect: Slight performance improvement
19846           - Focus(): Preventing possible recursion
19847           - Invalidate(): Removed ControlStyle based clear flag setting
19848           - WM_PAINT: fixed logic for calling OnPaintBackground
19849           - WM_ERASEBKGND: Fixed logic, added call to new driver method
19850             EraseWindowBackground if the control doesn't paint background
19851         * XplatUIWin32.cs:
19852           - Moved EraseWindowBackground() method to internal methods
19853           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
19854             is sent via SendMessage on BeginPaint call on Win32
19855         * XplatUIX11.cs:
19856           - Added EraseWindowBackground() method
19857           - No longer sends WM_ERASEBKGND on .Expose, but on call to
19858             PaintEventStart, which more closely matches Win32 behaviour
19859           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
19860           - Fixed SetFocus() to properly deal with client and whole windows
19861         * Hwnd.cs: Added ErasePending property
19862         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
19863         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
19864
19865 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
19866
19867         * XplatUIOSX.cs:
19868           - Fix hard loop when timers exist.
19869           - Fix bugs with middle and right click for 3 button mice.
19870
19871 2005-03-11  Peter Bartok  <pbartok@novell.com>
19872
19873         * XplatUIX11.cs:
19874           - get_WorkingArea: Need to call X directly, GetWindowPos only
19875             returns cached data now
19876           - Added sanity check to GetWindowPos hwnd usage
19877
19878 2005-03-11  Jackson Harper  <jackson@ximian.com>
19879
19880         * BindingManagerBase.cs: This method isn't used anymore as
19881         PullData now updates the data in the control.
19882
19883 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
19884
19885         * Form.cs: fixes menu drawing on X11
19886         * MenuAPI.cs:  fixes menu drawing on X11
19887
19888 2005-03-11  Peter Bartok  <pbartok@novell.com>
19889
19890         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
19891           from Jonathan Gilbert; should fix bug #73606
19892         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
19893           in Screen coordinates. Thanks, Jordi.
19894         * Form.cs: Added missing attribute
19895
19896 2005-03-11  Peter Bartok  <pbartok@novell.com>
19897
19898         * Form.cs:
19899           - Rudimentary Mdi support
19900           - Removed outdated FormParent code
19901           - Implemented lots of missing properties and methods, still missing
19902             transparency support
19903           - Added missing attributes
19904           - Implemented support for MaximumBounds
19905           - Added firing of various events
19906         * XplatUI.cs: Added SetIcon() method
19907         * XplatUIDriver.cs: Added SetIcon() abstract
19908         * XplatUIOSX.cs: Stubbed out SetIcon() method
19909         * XplatUIX11.cs:
19910           - Implemented SetIcon() support
19911           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
19912           - Switched to unix line endings
19913         * XplatUIWin32.cs:
19914           - Made POINT internal so for can access it as part of MINMAX
19915           - Implemented SetIcon() support
19916           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
19917             native Mdi support again, might have to go managed)
19918         * Control.cs: Now fires the StyleChanged event
19919         * MdiClient.cs: Added; still mostly empty
19920
19921 2005-03-10  Peter Bartok  <pbartok@novell.com>
19922
19923         * SaveFileDialog.cs: Added emtpy file
19924
19925 2005-03-08  Peter Bartok  <pbartok@novell.com>
19926
19927         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
19928           in turn triggers OnCreateContro) when creating a handle for the
19929           first time.
19930         * TextControl.cs: Fixed endless loop in certain cases when
19931           replacing the current selection
19932
19933 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
19934
19935         * ScrollBar.cs:
19936           - Honors NewValue changes in Scroll events allowing apps to change it
19937           - Adds First and Last Scroll events
19938           - Fixes Thumb events
19939
19940 2005-03-07  Peter Bartok  <pbartok@novell.com>
19941
19942         * Hwnd.cs: Added DefaultClientRectangle property
19943         * XplatUI.cs: Now using the X11 driver Where() method, which provides
19944           more detailed debug information
19945         * XplatUIX11.cs:
19946           - Fixed size-change feedback loop, where we would pull an old size
19947             off the queue and mistakenly change our window's size to an
19948             earlier value
19949           - Now compressing ConfigureNotify events, to reduce looping and
19950             redraw issues
19951         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
19952           is called
19953
19954 2005-03-07  Jackson Harper  <jackson@ximian.com>
19955
19956         * Binding.cs: Push data pushes from data -> property. Check if the
19957         property is readonly when attempting to set it.
19958
19959 2005-03-07  Jackson Harper  <jackson@ximian.com>
19960
19961         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
19962         instead of IsSubclassOf. Pulling data now sets the value on the
19963         control.
19964         * PropertyManager.cs:
19965         * CurrencyManager.cs: Just need to pull data when updating now,
19966         because PullData will set the value on the control.
19967
19968 2005-03-04  Jackson Harper  <jackson@ximian.com>
19969
19970         * Binding.cs: Implement data type parsing and converting on pulled
19971         data. TODO: Are there more ways the data can be converted?
19972
19973 2005-03-04  Jackson Harper  <jackson@ximian.com>
19974
19975         * Binding.cs: Support <Property>IsNull checks. Also bind to the
19976         controls Validating method so we can repull the data when the
19977         control loses focus.
19978
19979 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
19980
19981         * ColumnHeader.cs:
19982           - Fixes null string format
19983           
19984         * ListView.cs:
19985           - Adds enum type checks
19986           - Fixes redrawing and recalc need after changing some properties
19987           - Fixes on focus_item set after the event
19988           - Fixes adding columns after the control has been created
19989           
19990         * ThemeWin32Classic.cs:
19991           - Fixes CheckBox focus rectangle
19992           - Fixes ColumnHeader drawing
19993
19994
19995 2005-03-03  Jackson Harper  <jackson@ximian.com>
19996
19997         * Binding.cs: Bind to <Property>Changed events so we can detect
19998         when properties are changed and update the data.
19999
20000 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
20001
20002         * ImageList.cs:
20003           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
20004           - Fixes ImageList constructor with ImageList container
20005           - Fixes image scaling (wrong parameters at DrawImage)
20006
20007 2005-02-02  Jackson Harper  <jackson@ximian.com>
20008
20009         * Binding.cs: Make property searches case-insensitive. Eliminate
20010         some duplicated code.
20011
20012 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
20013
20014         * ComboBox.cs:
20015                 - Handle focus event
20016                 - Fix scrollbar events
20017                 - Discard highlighted item if remove it
20018                 - Fixes SelectedItem with strings
20019
20020 2005-03-01  Peter Bartok  <pbartok@novell.com>
20021
20022         * Control.cs:
20023           - Fixed Visible property, now follows (once again) parent chain
20024             to return false if any control in the chain is visible=false
20025           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
20026           - Fixed several places where is_visible instead of Visible was used
20027           - Implemented FIXME related to focus selection when setting focused
20028             control to be invisible
20029
20030         * XplatUIWin32.cs: Now using proper method to find out if window is
20031           visible. Thanks to Jordi for pointing it out
20032
20033 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
20034
20035         * ComboBox.cs: show/hide scrollbar instead of creating it
20036
20037 2005-02-27  Jackson Harper  <jackson@ximian.com>
20038
20039         * CurrencyManager.cs: Add PositionChanged stuff.
20040
20041 2005-02-27  Peter Bartok  <pbartok@novell.com>
20042
20043         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
20044         * XplatUIOSX.cs: Added GetMenuOrigin() stub
20045         * XplatUIWin32.cs: Implemented GetMenuOrigin()
20046         * XplatUIX11.cs:
20047           - Implemented GetMenuDC()
20048           - Implemented GetMenuOrigin()
20049           - Implemented ReleaseMenuDC()
20050           - Implemented generation of WM_NCPAINT message
20051           - Implemented generation and handling of WM_NCCALCSIZE message
20052         * Form.cs: Added debug helper message for Jordi's menu work
20053         * Hwnd.cs:
20054           - Modified ClientRect property; added setter, fixed getter to handle
20055             setting of ClientRect
20056           - Added MenuOrigin property
20057
20058 2005-02-26  Peter Bartok  <pbartok@novell.com>
20059
20060         * XplatUIX11.cs:
20061           - Destroys the caret if a window that's being destroyed contains it
20062           - Ignores expose events coming from the X11 queue for windows that
20063             already are destroyed
20064           - Now uses the proper variable for handling DestroyNotify, before we
20065             marked the wrong window as destroyed
20066           - Improved/added some debug output
20067
20068 2005-02-26  Peter Bartok  <pbartok@novell.com>
20069
20070         * X11Keyboard.cs: Fixes to work on 64bit systems
20071
20072 2005-02-26  Peter Bartok  <pbartok@novell.com>
20073
20074         * Control.cs:
20075           - Now calling OnHandleDestroyed from DestroyHandle()
20076             instead of Dispose()
20077           - Removed bogus call to controls.Remove() from DestroyHandle()
20078
20079 2005-02-26  Peter Bartok  <pbartok@novell.com>
20080
20081         * Control.cs: Properly destroy child windows when our handle is
20082           destroyed
20083
20084 2005-02-25  Peter Bartok  <pbartok@novell.com>
20085
20086         * XplatUI.cs:
20087           - Added 'DriverDebug' define to allow tracing XplatUI API calls
20088           - Alphabetized Static Methods and Subclasses
20089
20090         * XplatUIX11.cs:
20091           - Added XException class to allow custom handling of X11 exceptions
20092           - Created custom X11 error handler, tied into XException class
20093           - Added support for MONO_XEXCEPTIONS env var to allow the user
20094             to either throw an exception on X errors or continue running
20095             after displaying the error
20096           - Added handling of DestroyNotify message
20097           - Added handler for CreateNotify message (still disabled)
20098           - Improved (tried to at least) Where method to provide file and lineno
20099         * X11Structs.cs:
20100           - Added XErrorHandler delegate
20101           - Added XRequest enumeration (to suppor translation of errors)
20102
20103 2005-02-25  Jackson Harper  <jackson@ximian.com>
20104
20105         * PropertyManager.cs: Implement editing features
20106         * CurrencyManager.cs:
20107         * Binding.cs: First attempt at UpdateIsBinding
20108         * BindingManagerBase.cs: Call UpdateIsBinding before
20109         pushing/pulling data.
20110
20111 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
20112
20113         * MenuAPI.cs: Respect disabled items
20114         * ThemeWin32Classic.cs
20115                 - Caches ImageAttributes creation for DrawImageDisabled
20116                 - Fixes vertical menu line drawing
20117                 - Draws disabled arrows in disable menu items
20118
20119 2005-02-24  Peter Bartok  <pbartok@novell.com>
20120
20121         * Hwnd.cs:
20122           - Added UserData property to allow associating arbitrary objects
20123             with the handle
20124           - Fixed leak; now removing Hwnd references from static windows array
20125         * XplatUIWin32.cs:
20126           - Fixed Graphics leak in PaintEventEnd
20127           - Removed usage of HandleData, switched over to Hwnd class
20128         * HandleData.cs: Removed, obsoleted by Hwnd.cs
20129
20130 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
20131
20132         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
20133         * ScrollBar.cs: Fixes bug
20134         * TrackBar.cs: removes death code, clipping, mimize refreshes,
20135          keyboard navigation enhancements
20136
20137 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
20138
20139         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
20140         * GroupBox.cs: Add control styles
20141         * Label.cs: Add control styles
20142         * UpDownBase.cs: Add control styles
20143         * ListBox.cs: Add control styles
20144         * XplatUIWin32.cs: Fixes wrong parameter order
20145
20146
20147 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
20148
20149         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
20150
20151 2005-02-23  Jackson Harper  <jackson@ximian.com>
20152
20153         * PropertyManager.cs: Implement property binding. This doesn't
20154         seem to work yet though as (I think) there are some bugs in
20155         System.ComponentModel.PropertyDescriptor.
20156         * BindingContext.cs: Use new PropertyManager constructor.
20157
20158 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
20159
20160         * ProgressBar.cs: use clip region in ProgressBar
20161         * ThemeWin32Classic.cs: use clip region in ProgressBar
20162
20163 2004-02-22  Jackson Harper  <jackson@ximian.com>
20164
20165         * BindingsCollection.cs: Remove some debug code.
20166
20167 2005-02-22  Jackson Harper  <jackson@ximian.com>
20168
20169         * BindingContext.cs:
20170         * ControlBindingsCollection.cs:
20171         * CurrencyManager.cs:
20172         * Binding.cs:
20173         * BindingManagerBase.cs: Initial implementation
20174         * BindingsCollection.cs: Add an internal contains method that the
20175         BindingManagerBase uses to ensure bindings aren't added twice to
20176         the collection.
20177         * PropertyManager.cs: Stubbed out.
20178         * Control.cs:
20179         * ContainerControl.cs: Hook up databinding
20180         
20181 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
20182
20183         * XplatUIOSX.cs:
20184           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
20185           Fixed Invalidate/Update chain.
20186           Fixed tons of other minor bugs (this is almost a complete rewrite).
20187
20188 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
20189
20190         * ComboBox.cs: do subcontrol creation when the control is created
20191
20192 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
20193
20194         * Label.cs: fixes image drawing (image and imagelist)
20195         * ThemeWin32Classic.cs: cache brushes
20196         
20197 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
20198
20199         * Form.cs: Move menu drawing code to Theme class
20200         * ComboBox.cs: Move ComboBox drawing code to Theme class
20201         * MenuItem.cs: Move menu drawing code to Theme class
20202         * MenuAPI.cs: Move menu drawing code to Theme class
20203         * ThemeWin32Classic.cs: New methods
20204         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
20205         * ListBox.cs: Move Listbox drawing code to Theme class
20206         * Theme.cs: New methods
20207
20208 2005-02-20  Peter Bartok  <pbartok@novell.com>
20209
20210         * Control.cs:
20211           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
20212             only process mnemonics on those)
20213           - Fixed event sequence for key handling; first calling
20214             ProcessKeyEventArgs now
20215         * TextBoxBase.cs:
20216           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
20217             for processing non-character keys
20218           - Fixed WM_CHAR to generate proper event sequence before processing
20219         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
20220           generation
20221
20222 2005-02-19  Peter Bartok  <pbartok@novell.com>
20223
20224         * UserControl.cs: Added TextChanged event; added attributes
20225         * SizeGrip.cs: Implemented resizing and optional display of grip
20226         * Form.cs: Fixed attribute
20227         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
20228           Changed meaning of ScrollWindow bool argument; instead of the
20229           clear attribute (which will be true usually anyway), it gives the
20230           option of moving child controls as well.
20231         * XplatUIX11.cs:
20232           - Changed to match new ScrollWindow argument
20233           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
20234             now handles the implicit parent window a WM puts around us
20235         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
20236           to work)
20237         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
20238         * TreeView.cs: Adjusted to new ScrollWindow arguments
20239
20240 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
20241
20242         * Form.cs: Menu integration with non-client area
20243         * MenuItem.cs: Menu integration with non-client area
20244         * MenuAPI.cs: Menu integration with non-client area
20245
20246 2005-02-18  Peter Bartok  <pbartok@novell.com>
20247
20248         * MethodInvoker.cs: Added
20249         * MdiLayout.cs: Added
20250         * SendKeys.cs: Started implementation
20251         * ErrorIconAlignment.cs: Added
20252
20253 2005-02-18  Peter Bartok  <pbartok@novell.com>
20254
20255         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
20256         * Form.cs: Added handling for Menu-related Non-client messages
20257
20258 2005-02-17  Peter Bartok  <pbartok@novell.com>
20259
20260         * UpDownBase.cs: Fixed typo, compilation errors
20261         * DomainUpDown.cs: Fixed attribute value
20262
20263 2005-02-16  Miguel de Icaza  <miguel@novell.com>
20264
20265         * UpDownBase.cs: Attach entry events.
20266         Propagate events.
20267         Add ForeColor property, Focused, InterceptArrowKeys (interception
20268         does not work yet).
20269
20270 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
20271
20272         * Form.cs:
20273                 - Redraw non client are on Setmenu
20274                 - Calc proper menu starting point
20275
20276 2005-02-17  Peter Bartok  <pbartok@novell.com>
20277
20278         * Application.cs: Fixed message_filter check
20279
20280 2005-02-17  Peter Bartok  <pbartok@novell.com>
20281
20282         * Application.cs: Now calls registered message filters
20283         * DockStyle.cs: Fixed attribute
20284         * Form.cs: Fixed attribute
20285         * Menu.cs: Fixed attribute
20286         * ToolTip.cs: Fixed attribute
20287         * TreeNode.cs: Added missing attributes and arranged in regions
20288         * PropertyGrid.cs: Fixed signatures
20289         * TreeNodeCollection.cs: Added attributes
20290         * Splitter.cs: Added missing attributes; arranged into regions
20291         * TabPage.cs: Added missing attributes; arranged into regions
20292         * TextBoxBase.cs: Added missing attributes
20293         * TextBox.cs: Added missing attributes
20294         * ArrangeDirection.cs: Added missing attributes
20295         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
20296         * ToolBarButton.cs: Fixed attributes
20297         * AnchorStyles.cs: Fixed attribute
20298         * TrackBar.cs: Fixed attributes
20299         * TabControl.cs: Added missing attributes and arranged into regions
20300         * ToolBar.cs: Fixed attribute
20301         * StatusBar.cs: Fixed signature, organized into regions and added
20302           attributes
20303         * StatusBarPanel.cs: Fixed attributes
20304         * ContentsResizedEventArgs.cs: Implemented
20305         * ContentsResizedEventHandler.cs: Implemented
20306         * DateBoldEventArgs.cs: Implemented
20307         * DateBoldEventHandler.cs: Implemented
20308         * UpDownEventArgs.cs: Implemented
20309         * UpDownEventHandler.cs: Implemented
20310         
20311 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
20312
20313         * Form.cs: first Menu NC refactoring
20314         * MenuAPI.cs: first Menu NC refactoring
20315         
20316 2005-02-16  Peter Bartok  <pbartok@novell.com>
20317
20318         * ImeMode.cs: Added missing attributes
20319         * Menu.cs: Fixed attribute
20320         * GroupBox.cs: Fixed attribute
20321         * Label.cs: Fixed attribute
20322         * ColorDialog.cs (RunDialog): Removed TODO attribute
20323         * ComboBox.cs: Fixed attributes
20324         * ListControl.cs: Added missing attributes
20325         * PropertyGrid.cs: Fixed attributes
20326         * Control.cs: Fixed attributes
20327         * ListViewItem.cs: Added TypeConverter attribute
20328         * NotifyIcon.cs: Fixed attributes
20329         * ListView.cs: Fixed attributes
20330         * ButtonBase.cs: Fixed attribute
20331         * ImageList.cs: Added missing attributes
20332         * ContainerControl.cs: Fixed signature
20333         * CheckedListBox.cs: Fixed attribute; added missing attributes
20334         * Panel.cs: Fixed attributes
20335         * PropertyTabChangedEventArgs.cs: Added missing attribute
20336         * PropertyValueChangedEventArgs.cs: Added missing attribute
20337         * Binding.cs: Fixed attribute
20338         * ListViewItemConverter: Implemented ListViewSubItemConverter class
20339         * ListBox.cs: Fixed attribute; added missing attributes;
20340         * ScrollableControl.cs: Added missing attributes
20341         * PictureBox.cs: Added missing attributes; implemented missing property
20342         * DateTimePicker.cs: Added missing attributes
20343         * Theme.cs (ToolWindowCaptionHeight): Fixed type
20344         * MonthCalendar.cs: Fixed attributes
20345         * StatusBarPanel.cs: Added missing attributes
20346         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
20347
20348 2005-02-16  Peter Bartok  <pbartok@novell.com>
20349
20350         * TextBoxBase.cs: The previous method to enforce height yet remember
20351           the requested high was less than ideal, this is an attempt to do
20352           it better.
20353         * Control.cs: Added comment about possible problem
20354         * Copyright: Updated format
20355         * GridItemType.cs: Fixed swapped values
20356
20357 2005-02-15  Jackson Harper  <jackson@ximian.com>
20358
20359         * BaseCollection.cs: Use property so we never access an
20360         uninitialized list. Also initialize the list in the property.
20361
20362 2005-02-15  Peter Bartok  <pbartok@novell.com>
20363
20364         * GroupBox.cs (ProcessMnemonic): Implemented
20365         * Label.cs (ProcessMnemonic): Implemented
20366         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
20367           hotkeys
20368
20369 2005-02-15  Peter Bartok  <pbartok@novell.com>
20370
20371         * RadioButton.cs (ProcessMnemonic): Implemented
20372         * CheckBox.cs (ProcessMnemonic): Implemented
20373         * Control.cs:
20374           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
20375             handling
20376           - Added internal method to allow calling ProcessMnemonic from other
20377             controls
20378         * ContainerControl.cs:
20379           - Started support for handling validation chain handling
20380           - Implemented ProcessMnemonic support
20381           - Added Select() call to Active, to make sure the active control
20382             receives focus
20383         * Form.cs: Setting toplevel flag for Forms (this was lost in the
20384           FormParent rewrite)
20385         * ThemeWin32Classic.cs:
20386           - DrawCheckBox(): Fixed stringformat to show hotkeys
20387           - DrawRadioButton(): Fixed stringformat to show hotkeys
20388         * CommonDialog.cs: Removed WndProc override, not needed
20389
20390 2005-02-14  Peter Bartok  <pbartok@novell.com>
20391
20392         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
20393           missed those in the rewrite
20394
20395 2005-02-14  Miguel de Icaza  <miguel@novell.com>
20396
20397         * NumericUpDown.cs (Increment, ToString): Add.
20398         (DecimalPlaces): implement.
20399         
20400         Add attributes.
20401         
20402         * UpDownBase.cs: Add the designer attributes.
20403
20404 2005-02-13  Peter Bartok  <pbartok@novell.com>
20405
20406         * Panel.cs: Removed border_style, now in Control
20407         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
20408           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
20409
20410 2005-02-13  Peter Bartok  <pbartok@novell.com>
20411
20412         * MouseButtons.cs: Added missing attributes
20413         * XplatUIStructs.cs: Added enumeration for title styles
20414         * LeftRightAlignment.cs: Added missing attributes
20415         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
20416           it compatible with Graphics.FromHwnd()
20417         * SelectedGridItemChangedEventArgs.cs: Fixed property type
20418         * Keys.cs: Added missing attributes
20419         * SelectionRange.cs: Added missing attributes
20420         * SelectionRangeConverter.cs: Added
20421         * XplatUI.cs:
20422           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
20423             ReleaseMenuDC methods
20424           - Renamed ReleaseWindow to UngrabWindow
20425           - Added proper startup notice to allow version identification
20426         * Form.cs:
20427           - Added missing attributes
20428           - Removed FormParent concept
20429         * Label.cs: Removed border_style field, now in Control
20430         * RadioButton.cs: Now properly selects RadioButton when focus is
20431           received
20432         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
20433         * Control.cs:
20434           - Added missing attributes
20435           - Added borderstyle handling
20436           - Removed FormParent concept support
20437           - Fixed calls to XplatUI to match changed APIs
20438           - Fixed bug that would case us to use disposed Graphics objects
20439           - Removed unneeded internal methods
20440           - PerformLayout(): Fixed to handle DockStyle.Fill properly
20441           - SelectNextControl(): Fixed to properly check common parents
20442         * TextBoxBase.cs: Removed border_style field (now in Control)
20443         * MessageBox.cs:
20444           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
20445             fixed calculations for form size
20446           - Added support for localized strings and icons
20447           - Improved form size calculations, added border
20448         * ListView.cs: Removed border_style field (now in Control)
20449         * X11Structs.cs: Moved several structs from X11 driver here
20450         * X11Keyboard.cs: Changed debug message
20451         * Application.cs: Removed FormParent concept support
20452         * CommonDialog.cs:
20453           - Resetting end_modal flag
20454           - Removed FormParent concept support
20455         * NativeWindow.cs: Removed FormParent concept support
20456         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
20457           Client area and Non-Client whole window to allow support for WM_NC
20458           messages
20459         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
20460           prevent using it until it supports Hwnd as per Geoff Norton's request
20461         * ToolBar.cs: Fixed drawing, was not doing proper drawing
20462         * PictureBox.cs: Removed border_style field, now in Control
20463         * XplatUIWin32.cs: Added new driver methods
20464
20465 2005-02-12  Peter Bartok  <pbartok@novell.com>
20466
20467         * OpacityConverter.cs: Implemented
20468         * Hwnd.cs: Internal class to support drivers that need to emulate
20469           client area/non-client area window behaviour
20470
20471 2005-02-11  Peter Bartok  <pbartok@novell.com>
20472
20473         * KeysConverter.cs: Implemented
20474
20475 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
20476
20477         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
20478         * LinkLabel: Added missing attributes
20479         * MainMenu.cs: fixes ToString
20480         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
20481         * ListBox.cs: fixes event position
20482         * TrackBar.cs: adds missing attributes and events
20483         
20484 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
20485
20486         * MenuItem.cs: Use SystemInformation and bug fixes
20487         * MenuAPI.cs: Use SystemInformation and bug fixes
20488
20489 2005-02-09  Jackson Harper  <jackson@ximian.com>
20490
20491         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
20492         their keystate otherwise things like VK_MENU get stuck "on".
20493
20494 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
20495
20496         * ListBox.cs: Fixes AddRange bug
20497         
20498 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
20499
20500         * ProgressBar.cs
20501                 - Add missing attributes
20502                 - Add missing method
20503                 
20504         * CheckedListBox.cs: Added missing attributes
20505                 - Add missing attributes
20506                 - Remove extra method
20507         
20508         * ComboBox.cs: Added missing attributes
20509         * VScrollBar.cs: Added missing attributes
20510         * ScrollBar.cs:  Added missing attributes
20511         * ListBox.cs: Fixes signature, add missing consts
20512         * LinkArea.cs:   Added missing attributes
20513         
20514
20515 2005-02-08  Peter Bartok  <pbartok@novell.com>
20516
20517         * Menu.cs: Added missing attributes
20518         * MainMenu.cs: Added missing attributes
20519         * GroupBox.cs: Added missing attributes
20520         * Label.cs: Added missing attributes
20521         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
20522         * ColorDialog.cs:
20523           - Added Instance and Options properties
20524           - Added missing attributes
20525         * Cursor.cs: Made Serializable
20526         * NotifyIcon: Added missing attributes
20527         * MenuItem.cs: Added missing attributes
20528         * TextBoxBase.cs: Implemented AppendText() and Select() methods
20529         * Panel.cs: Added Missing attributes
20530         * MonthCalendar.cs: Fixed CreateParams
20531
20532 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
20533         
20534         * LinkLabel.cs:
20535                 - Fixes signature
20536                 - Fixes issues with links
20537                 - Adds the class attributes
20538
20539 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
20540         
20541         * ComboBox.cs:
20542                 - Fixes button when no items available in dropdown
20543                 - Fixes repainting problems
20544                 - Adds the class attributes
20545                 
20546 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20547
20548         * XplatUIOSX.cs: Detect the menu bar and title bar height from
20549         the current theme.  Cache these on startup.
20550
20551 2005-02-07  Jackson Harper  <jackson@ximian.com>
20552
20553         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
20554         the scrollbar buttons when they are depressed.
20555
20556 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20557
20558         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
20559         Get the display size from the main displayid.  We currently dont
20560         support multiple display configurations.
20561
20562 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20563
20564         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
20565
20566 2005-02-07  Miguel de Icaza  <miguel@novell.com>
20567
20568         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
20569
20570 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
20571
20572         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
20573
20574 2005-02-04  Jackson Harper  <jackson@ximian.com>
20575
20576         * ThemeWin32Classic.cs: Respect the clipping rect when
20577         drawing. Only fill the intersection of clips and rects so there
20578         isn't a lot of large fills.
20579         * ScrollBar.cs: Pass the correct clipping rect to the theme
20580         engine. Remove some debug code.
20581
20582 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
20583         
20584         * DateTimePicker.cs:
20585                 - Fixed crash on DateTime.Parse, use Constructor instead
20586
20587 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20588         
20589         * MenuItem.cs:
20590         * MenuAPI.cs:
20591                 - Owner draw support (MeasureItem and DrawItem)
20592
20593 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20594         
20595         *  Menu.cs:
20596                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
20597                 - Fixes MenuItems.Add range
20598         * MenuItem.cs:
20599                 - MergeMenu and Clone and CloneMenu functions
20600
20601 2005-02-03  Jackson Harper  <jackson@ximian.com>
20602
20603         * ScrollBar.cs: Make abstract
20604         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
20605         is abstract.
20606
20607 2005-02-03  Jackson Harper  <jackson@ximian.com>
20608
20609         * ScrollBar.cs: First part of my scrollbar fixups. This removes
20610         all the unneeded refreshes and uses invalidates with properly
20611         computed rects.
20612
20613 2005-02-03  Peter Bartok  <pbartok@novell.com>
20614
20615         * ComponentModel.cs: Added
20616         * IDataGridEditingService.cs: Added
20617         * Timer.cs: Added missing attributes
20618         * ToolTip.cs: Added missing attributes
20619
20620 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
20621
20622         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
20623
20624 2005-02-03  Peter Bartok  <pbartok@novell.com>
20625
20626         * ListBox.cs: Added missing attributes
20627
20628 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
20629         
20630         * ListBox.cs:
20631                 - Fixes font height after font change
20632                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
20633                 
20634 2005-02-02  Peter Bartok  <pbartok@novell.com>
20635
20636         * HandleData.cs: Introduced static methods to allow class
20637           to be more self-contained and track it's own HandleData objects
20638         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
20639           HandleData to use new static methods
20640
20641 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
20642
20643         * Combobox.cs:
20644                 - Fixes default size and PreferredHeight
20645                 - Missing events
20646                 - ObjectCollection.Insert implementation
20647                 
20648         * ListControl.cs
20649                 - Fixes signature
20650         * ListBox.cs:
20651                 - Several fixes
20652                 - ObjectCollection.Insert implementation
20653                 - No selection after clean
20654                 - Small fixes
20655
20656 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20657
20658         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
20659
20660 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
20661
20662         * Combobox.cs:
20663                 - Caches ItemHeight calculation for OwnerDrawVariable
20664                 - Handles dropdown properly
20665                 - Fixes several minor bugs
20666
20667 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20668
20669         * ListBox.cs:
20670                 - Fixes 71946 and 71950
20671                 - Fixes changing Multicolumn on the fly
20672                 - Fixes keyboard navigation on Multicolumn listboxes
20673
20674 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20675         
20676         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
20677         crash reporter log.
20678
20679 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20680
20681         * XplatUIOSX.cs: Allow applications to actually exit.
20682
20683 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20684
20685         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
20686         their parent at creation time rather than lazily later.  Fixes a major
20687         regression we were experiencing.
20688
20689 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20690
20691         * ThemeWin32Classic.cs: more date time picker painting fixes
20692         * DateTimePicker.cs: more monthcalendar drop down fixes
20693         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
20694
20695 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20696
20697         * ScrollBar.cs:
20698                 - When moving the thumb going outside the control should stop the moving
20699                 - Adds the firing of missing events
20700                 - Fixes no button show if Size is not specified
20701                 - End / Home keys for keyboard navigation
20702
20703 2005-01-30  Peter Bartok  <pbartok@novell.com>
20704
20705         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
20706           sanity check to prevent theoretical loop
20707         * XplatUIWin32.cs (SetVisible): Removed debug output
20708         * XplatUIX11.cs (SystrayChange): Added sanity check
20709         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
20710         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
20711           behaviour, valid until the X11 client window rewrite is done
20712         * TextBox.cs (ctor): Setting proper default foreground and background
20713           colors
20714
20715 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
20716
20717         * Theme: Added DrawDateTimePicker to interface
20718         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
20719         * DateTimePicker.cs: Created (still needs keys and painting code)
20720         * DateTimePickerFormat.cs: added
20721         * MonthCalendar.cs: fixed CreateParams for popup window mode
20722           
20723 2005-01-29  Peter Bartok  <pbartok@novell.com>
20724
20725         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
20726           this should also the calculations for ligher/darker
20727         * Theme.cs: Fixed defaults for ScrollBar widths/heights
20728
20729 2005-01-29  Peter Bartok  <pbartok@novell.com>
20730
20731         * ArrangeDirection.cs: Added
20732         * ArrangeStartingPositon.cs: Added
20733         * SystemInformation.cs: Implemented
20734         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20735           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
20736           used by SystemInformation class
20737         * X11Strucs.cs: Added XSizeHints structure
20738         * MenuAPI.cs:
20739           - Fixed CreateParams to make sure the menu window is always visible
20740           - TrackPopupMenu: Added check to make sure we don't draw the
20741             menu offscreen
20742
20743 2005-01-29  Peter Bartok  <pbartok@novell.com>
20744
20745         * HandleData.cs: Added method for altering invalid area
20746         * TextBoxBase.cs: Implemented TextLength
20747
20748 2005-01-28  Peter Bartok  <pbartok@novell.com>
20749
20750         * XplatUIX11.cs: Improvement over last patch, not sending
20751           the WM_PAINT directly anymore, instead we scroll any pending
20752           exposed areas and let the system pick out the WM_PAINT later
20753
20754 2005-01-28  Peter Bartok  <pbartok@novell.com>
20755
20756         * SWF.csproj: Deleted, no longer used. Instead,
20757           Managed.Windows.Forms/SWF.csproj should be used
20758         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
20759           directly, to avoid a potential race condition with the next
20760           scroll
20761
20762 2005-01-28  Peter Bartok  <pbartok@novell.com>
20763
20764         * XplatUI.cs: Made class internal
20765
20766 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
20767
20768         * CheckedListBox.cs:
20769                 - Draw focus
20770                 - Fixed Drawing
20771                 - Missing methods and events
20772
20773 2005-01-27  Peter Bartok  <pbartok@novell.com>
20774
20775         * Application.cs (Run): Don't use form if we don't have one
20776
20777 2005-01-27  Peter Bartok  <pbartok@novell.com>
20778
20779         * TextBoxBase.cs (get_Lines): Fixed index off by one error
20780
20781 2005-01-27  Peter Bartok  <pbartok@novell.com>
20782
20783         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
20784         * GridItem.cs: Added; Patch by Jonathan S. Chambers
20785         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
20786         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
20787         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
20788         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
20789         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20790         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20791         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20792         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20793         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20794         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20795
20796 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20797
20798         * Combobox.cs:
20799                 - Draw focus on Simple Combobox
20800                 - Fixes drawing issues
20801                 - fixes 71834
20802
20803 2005-01-27  Peter Bartok  <pbartok@novell.com>
20804
20805         * Form.cs:
20806           - Place window in default location, instead of hardcoded 0/0
20807           - Send initial LocationChanged event
20808         * Control.cs:
20809           - UpdateBounds after creation to find out where the WM placed us
20810           - Make sure that if the ParentForm changes location the Form
20811             is notified
20812         * XplatUIX11.cs: XGetGeometry will not return the coords relative
20813             to the root, but to whatever the WM placed around us.
20814             Translate to root coordinates before returning toplevel
20815             coordinates
20816         * XplatUIWin32.cs: Removed debug output
20817         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
20818           flag to GetWindowPos, to allow translation of coordinates on X11
20819
20820 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20821
20822         * ListBox.cs: connect LostFocus Event
20823
20824 2005-01-27  Peter Bartok  <pbartok@novell.com>
20825
20826         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20827           XplatUIX11.cs: Extended the Systray API
20828         * Form.cs: Removed debug output
20829         * Application.cs: Fixed focus assignment, always need to call
20830           XplatUI.Activate() since Form.Activate() has rules that may
20831           prevent activation
20832         * NotifyIcon.cs: Should be complete now
20833         * ToolTip.cs: Worked around possible timer bug
20834
20835 2005-01-27  Jackson Harper  <jackson@ximian.com>
20836
20837         * TabControl.cs:
20838         - Only invalidate the effected tabs when the
20839         selected index changes. This reduces drawing and gets rid of some
20840         flicker.
20841         - Only refresh if the tabs need to be shifted, otherwise only
20842         invalidate the slider button.
20843         - On windows the tabs are not filled to right if the slider is
20844         visible.
20845         
20846 2005-01-27  Jackson Harper  <jackson@ximian.com>
20847
20848         * TabControl.cs: Only refresh on mouseup if we are showing the
20849         slider. Also only invalidate the button whose state has changed.
20850
20851 2005-01-26  Peter Bartok  <pbartok@novell.com>
20852
20853         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
20854         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
20855           and SystrayRemove() methods
20856         * XplatUIOSX.cs: Stubbed Systray methods
20857         * XplatUIX11.cs:
20858           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
20859             methods
20860           - Fixed broken XChangeProperty calls (marshalling messed up things)
20861         * X11Structs.cs: Added enums and structs required for Size hinting
20862         * NotifyIcon.cs: Added & implemented
20863
20864 2005-01-26  Jackson Harper  <jackson@ximian.com>
20865
20866         * TabControl.cs: Space vertically layed out tabs properly.
20867
20868 2005-01-26  Peter Bartok  <pbartok@novell.com>
20869
20870         * Form.cs (CreateClientParams): Always set the location to 0,0
20871           since we're a child window.
20872
20873         * Control.cs (SetVisibleCore): Always explicitly setting the location
20874           of a toplevel window, apparently X11 doesn't like to move windows
20875           while they're not mapped.
20876
20877 2005-01-26  Jackson Harper  <jackson@ximian.com>
20878
20879         * TabControl.cs: Implement FillToRight size mode with vertically
20880         rendered tabs.
20881
20882 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20883
20884         * ControlPaint.cs, ThemeWin32Classic.cs
20885                 - Fixes DrawFocusRectangle
20886
20887 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20888
20889         * MenuAPI.cs:
20890                 - MenuBar tracking only starts when item is first clicked
20891                 - Fixes menu hidding for multiple subitems
20892                 - Unselect item in MenuBar when item Executed
20893                 - Fixes bug 71495
20894
20895 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
20896
20897         * ListControl.cs:
20898                 - IsInputKey for ListBox
20899         * ListBox.cs:
20900                 - Focus item
20901                 - Shift and Control item selection
20902                 - Implement SelectionMode.MultiExtended
20903                 - Fixes RightToLeft
20904         * ComboBox.cs:
20905                 - IsInputKey implemented
20906                 - Do not generate OnTextChangedEdit on internal txt changes
20907                 
20908 2005-01-23  Peter Bartok  <pbartok@novell.com>
20909
20910         * AccessibleObject.cs: Partially implemented Select()
20911         * MonthCalendar.cs: Added missing attributes and events
20912         * Form.cs: Fixed CreateParams behaviour, now controls derived from
20913           form can properly override CreateParams.
20914         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20915           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
20916           Control performs Invalidate & Update
20917         * NativeWindow (CreateHandle): Added special handling for Form
20918           and Form.FormParent classes to allow overriding of From.CreateParams
20919         * Control.cs:
20920           - ControlNativeWindow: Renamed 'control' variable to more intuitive
20921             name 'owner'
20922           - ControlNativeWindow: Added Owner property
20923           - Removed usage of Refresh() on property changes, changed into
20924             Invalidate(), we need to wait until the queue is processed for
20925             updates, direct calls might cause problems if not all vars for
20926             Paint are initialized
20927           - Added call to UpdateStyles() when creating the window, to set any
20928             styles that CreateWindow might have ignored.
20929           - Added support for Form CreateParent overrides to UpdateStyles()
20930         * MessageBox.cs: Removed no longer needed FormParent override stuff,
20931           CreateParams are now properly overridable
20932         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
20933           CreateParams are now properly overridable
20934
20935 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
20936
20937         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
20938         OnTextBoxChanged.
20939
20940         Capture LostFocus and OnTextBoxChanged.  The later introduces a
20941         recursive invocation that I have not figured out yet.
20942
20943         Reset the timer when not using (it was accumulating).
20944
20945
20946         (OnTextBoxChanged): Set UserEdit to true here to track whether the
20947         user has made changes that require validation.
20948
20949         Reset changing to avoid loops.
20950
20951 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
20952
20953         * NumericUpDown.cs: Display value at startup.
20954
20955         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
20956         ValidateEditText.
20957
20958         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
20959         filled in.  Added some basic parsing of text.
20960
20961         Still missing the OnXXX method overrides, and figuring out the
20962         events that must be emitted.
20963
20964         * UpDownBase.cs: Handle UserEdit on the Text property.
20965         
20966 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
20967
20968         * ComboBox.cs:
20969           - Fixes IntegralHeight
20970           - ToString method
20971
20972 2005-01-21  Jackson Harper  <jackson@ximian.com>
20973
20974         * TabControl.cs: Set the SelectedIndex property when SelectedTab
20975         is set so that the page visibility is updated and the tabs are
20976         sized correctly.
20977
20978 2005-01-21  Jackson Harper  <jackson@ximian.com>
20979
20980         * TabControl.cs: Use cliping rectangle for blitting. Give the
20981         theme the clipping rect so we can do clipping while
20982         drawing. Remove some debug code.
20983
20984 2005-01-21  Jackson Harper  <jackson@ximian.com>
20985
20986         * TabPage.cs: Add a new method so tab pages can force the tab
20987         control to recalculate the tab page sizes.
20988         * TabControl.cs: UpdateOwner needs to make the tab control recalc
20989         sizes.
20990
20991 2005-01-20  Jackson Harper  <jackson@ximian.com>
20992
20993         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
20994
20995 2005-01-20  Jackson Harper  <jackson@ximian.com>
20996
20997         * TreeView.cs: Set the bounds for nodes properly. They were
20998         getting screwed up when checkboxes were not enabled, but images
20999         were.
21000
21001 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
21002
21003         * ListBox.cs:
21004                 - Owner draw support
21005                 - Fixes
21006                 
21007 2005-01-20  Jackson Harper  <jackson@ximian.com>
21008
21009         * XplatUIStructs.cs: More misc keys
21010         * X11Keyboard.cs: Ignore some control keys.
21011
21012 2005-01-20  Jackson Harper  <jackson@ximian.com>
21013
21014         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
21015         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
21016
21017 2005-01-19  Peter Bartok  <pbartok@novell.com>
21018
21019         * Control.cs: Un-selecting the control when it is loosing focus
21020
21021 2005-01-19  Jackson Harper  <jackson@ximian.com>
21022
21023         * TreeView.cs: Hook up to the text controls leave event so we can
21024         end editing when the users clicks outside the text box.
21025         
21026 2005-01-19  Jackson Harper  <jackson@ximian.com>
21027
21028         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
21029         get set in the conversion array.
21030
21031 2005-01-19  Peter Bartok  <pbartok@novell.com>
21032
21033         * Application.cs (ModalRun): Added a call to CreateControl to ensure
21034           focus is properly set
21035         * Button.cs:
21036           - Added missing attributes
21037           - removed styles, those are already set in the base class
21038         * ButtonBase.cs:
21039           - Added missing attributes
21040           - Added clip window styles
21041         * CheckBox.cs: Added missing attributes
21042         * CommonDialog.cs:
21043           - FormParentWindow.CreateParams: Added required clip styles
21044         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
21045           also filters modifier keys
21046         * MessageBox.cs:
21047           - Added assignment of Accept and Cancel button to enable Enter
21048             and Esc keys in MessageBox dialogs
21049           - FormParentWindow.CreateParams: Added required clip styles
21050         * RadioButton.cs: Added missing attributes
21051         * TextControl.cs: No longer draws selection if control does not
21052           have focus
21053         * TextBoxBase.cs:
21054           - Now draws simple rectangle around test area to make it obvious
21055             there's a control. This is a hack until we properly support borders
21056           - A few simple fixes to support selections better, now erases selected
21057             text when typing, and resets selection when using movement keys
21058
21059 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21060
21061         * UpDownBase.cs: Added some new properties.
21062
21063         * DomainUpDown.cs: Implement a lot to get my test working.
21064
21065 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21066
21067         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
21068
21069 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21070
21071         * OSXStructs (WindowAttributes): Fixed csc complaints
21072
21073 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21074
21075         * XplayUIOSX.cs:
21076           OSXStructs.cs: Initial refactor to move enums and consts into
21077           OSXStructs and use them in the driver for greater readability.
21078
21079 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
21080
21081         * XplatUIOSX.cs: Initial support for Standard Cursors.
21082         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
21083
21084 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
21085
21086         * ComboBox.cs: ability to change style when the ctrl is already
21087         created, missing methods and events, bug fixes, signature fixes
21088
21089 2005-01-19  Peter Bartok  <pbartok@novell.com>
21090
21091         * Cursors.cs (ctor): Added ctor to fix signature
21092
21093 2005-01-18  Peter Bartok  <pbartok@novell.com>
21094
21095         * Button.cs: Implemented DoubleClick event
21096         * ButtonBase.cs:
21097           - Fixed keyboard handling to behave like MS, where the press of
21098             Spacebar is equivalent to a mousedown, and the key release is
21099             equivalent to mouseup. Now a spacebar push will give the same
21100             visual feedback like a mouse click.
21101           - Added missing attributes
21102           - Added ImeModeChanged event
21103           - Added support for generating DoubleClick event for derived classes
21104         * CheckBox.cs:
21105           - Implemented DoubleClick event
21106           - Added missing attributes
21107         * CommonDialog.cs: Added missing attribute
21108         * ContextMenu.cs: Added missing attributes
21109         * RadioButton.cs:
21110           - AutoChecked buttons do not allow to be unselected when clicked
21111             (otherwise we might end up with no selected buttons in a group)
21112           - Added missing attributes
21113           - Implemented DoubleClickEvent
21114         * ThreadExceptionDialog.cs: Enabled TextBox code
21115
21116 2005-01-18  Peter Bartok  <pbartok@novell.com>
21117
21118         * Form.cs: Removed debug output
21119         * Button.cs: Added support for DoubleClick method
21120
21121 2005-01-18  Peter Bartok  <pbartok@novell.com>
21122
21123         * Form.cs:
21124           - Added method to parent window that allows triggering size
21125             calculations when a menu is added/removed
21126           - set_Menu: Cleaned up mess from early days of Form and Control,
21127             now properly triggers a recalc when a menu is added/removed
21128           - Added case to select form itself as focused form if no child
21129             controls exist
21130           - Added PerformLayout call when showing dialog, to ensure properly
21131             placed controls
21132         * Control.cs:
21133           - Select(): Made internal so Form can access it
21134           - Focus(): Only call Xplat layer if required (avoids loop), and sets
21135             status
21136         * Application.cs (Run): Removed hack and calls PerformLayout instead
21137           to trigger calculation when Form becomes visible
21138
21139 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
21140
21141         * ComboBox.cs: fixes for ownerdraw
21142
21143 2005-01-18  Peter Bartok  <pbartok@novell.com>
21144
21145         * TextControl.cs:
21146           - Sentinel is no longer static, each Document gets it's own, this
21147             avoids locking or alternatively overwrite problems when more
21148             than one text control is used simultaneously.
21149           - Switched to use Hilight and HilightText brushes for text selection
21150
21151         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
21152
21153 2005-01-18  Peter Bartok  <pbartok@novell.com>
21154
21155         * Control.cs:
21156           - Hooked up the following events:
21157                 o ControlAdded
21158                 o ControlRemoved
21159                 o HandleDestroyed
21160                 o ImeModeChanged
21161                 o ParentChanged
21162                 o TabStopChanged
21163                 o Invalidated
21164                 o SystemColorsChanged
21165                 o ParentFontChanged
21166                 o Move
21167           - Removed debug output
21168           - Added a call to the current theme's ResetDefaults when a color change
21169             is detected
21170         * Form.cs: Now setting the proper ImeMode
21171         * Theme.cs: Defined a method to force recreation of cached resources
21172           and rereading of system defaults (ResetDefaults())
21173         * ThemeWin32Classic.cs: Added ResetDefaults() stub
21174
21175 2005-01-17  Peter Bartok  <pbartok@novell.com>
21176
21177         * Control.cs: Added missing attributes
21178
21179 2005-01-17  Jackson Harper  <jackson@ximian.com>
21180
21181         * TreeNode.cs: Implement editing. Add missing properties selected
21182         and visible.
21183         * TreeView.cs: Implement node editing. Also some fixes to use
21184         Invalidate (invalid area) instead of Refresh when selecting.
21185
21186 2005-01-17  Peter Bartok  <pbartok@novell.com>
21187
21188         * Control.cs:
21189           - Implemented InvokeGotFocus() method
21190           - Implemented InvokeLostFocus() method
21191           - Implemented InvokePaint() method
21192           - Implemented InvokePaintBackground() method
21193           - Implemented InvokeClick() method
21194           - Implemented FindForm() method
21195           - Implemented RectangleToClient() method
21196           - Implemented ClientToRectangle() method
21197           - Implemented ResetBackColor() method
21198           - Implemented ResetCursor() method
21199           - Implemented ResetFont() method
21200           - Implemented ResteForeColor() method
21201           - Implemented ResetImeMode() method
21202           - Implemented ResetLeftToRight() method
21203           - Implemented ResetText() method
21204           - Implemented Scale() methods
21205           - Implemented ScaleCore() method
21206           - Implemented Update() method
21207           - Removed unused variables
21208           - Stubbed AccessibilityNotifyClients and
21209             ControlAccessibleObject.NotifyClients() methods (dunno what to do
21210             with those yet)
21211           - Now setting proper default for RightToLeft property
21212           - Fixed bug in SetClientSizeCore that would cause windows to get
21213             really big
21214           - Now sending Click/DoubleClick events
21215           - Now selecting controls when left mouse button is clicked on
21216             selectable control
21217         * AccessibleEvents.cs: Added
21218         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
21219         * XplatUIOSX.cs: Stubbed UpdateWindow() method
21220         * XplatUIWin32.cs: Implemented UpdateWindow() method
21221         * XplatUIX11.cs: Implemented UpdateWindow() method
21222         * Form.cs: Removed stray semicolon causing CS0162 warning
21223         * ThemeWin32Classic.cs: Fixed unused variable warnings
21224         * ScrollableControl.cs: Now calls base method for ScaleCore
21225         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
21226           style to avoid interference with internal click handler (which is
21227           different than standard Control click handling)
21228         * RadioButton.cs:
21229           - Now unchecks all sibling radio buttons when control is
21230             selected (Fixes #68756)
21231           - Removed internal tabstop variable, using the one inherited from
21232             Control
21233
21234 2005-01-17  Jackson Harper  <jackson@ximian.com>
21235
21236         * NavigateEventArgs.cs: Fix base type.
21237         * LinkLabel.cs: Sig fix
21238         
21239 2005-01-17  Jackson Harper  <jackson@ximian.com>
21240
21241         * TreeView.cs: Only invalidate the effected nodes bounds when
21242         selecting nodes.
21243
21244 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
21245
21246         * XplatUIWin32.cs: fixes Win32 marshaling
21247         * XplatUIX11.cs: fixes method signature
21248
21249 2005-01-17  Peter Bartok  <pbartok@novell.com>
21250
21251         * XplatUIX11.cs: Clean up resources when we no longer need them
21252
21253 2005-01-17  Peter Bartok  <pbartok@novell.com>
21254
21255         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
21256           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
21257           and DestroyCursor() methods.
21258         * Cursor.cs: Partially implemented, now supports standard cursors;
21259           still contains some debug code
21260         * Cursors.cs: Implemented class
21261         * Control.cs:
21262           - WndProc(): Added handling of WM_SETCURSOR message, setting the
21263             appropriate cursor
21264           - Implemented Cursor property
21265           - Replaced break; with return; more straightforwar and possibly
21266             faster
21267           - Now properly setting the result for WM_HELP
21268         * X11Structs.cs: Added CursorFontShape enum
21269         * XplatUIStructs.cs:
21270           - Added StdCursor enum (to support DefineStdCursor() method)
21271           - Added HitTest enum (to support sending WM_SETCURSOR message)
21272         * XplatUIX11.cs:
21273           - Now sends the WM_SETCURSOR message
21274           - Implemented new cursor methods
21275         * XplatUIOSX.cs: Stubbed new cursor methods
21276         * XplatUIWin32.cs:
21277           - Implemented new cursor methods
21278           - Added GetSystemMetrics function and associated enumeration
21279
21280 2005-01-15  Peter Bartok  <pbartok@novell.com>
21281
21282         * Control.cs:
21283           - WndProc(): Now handles EnableNotifyMessage
21284           - SelectNextControl(): Fixed bug where if no child or sibling
21285             controls exist we looped endlessly
21286
21287 2005-01-14  Jackson Harper  <jackson@ximian.com>
21288
21289         * TreeView.cs: Recalculate the tab pages when a new one is added
21290         so that the proper bounding rects are created.
21291
21292 2005-01-14  Jackson Harper  <jackson@ximian.com>
21293
21294         * TreeView.cs: Draw a gray box instead of a grip in the lower
21295         right hand corner when there are both horizontal and vertical
21296         scroll bars.
21297
21298 2005-01-14  Jackson Harper  <jackson@ximian.com>
21299
21300         * Control.cs: When erasing backgrounds use FromHwnd instead of
21301         FromHdc when there is a NULL wparam. This occurs on the X driver.
21302         * XplatUIX11.cs: Set the wparam to NULL.
21303
21304 2005-01-13  Jackson Harper  <jackson@ximian.com>
21305
21306         * PictureBox.cs: Implement missing methods (except ToString, need
21307         to test that on windows) and events. When visibility is changed we
21308         need to redraw the image because the buffers are killed. When size
21309         is changed refresh if the sizemode needs it.
21310
21311 2005-01-13  Peter Bartok  <pbartok@novell.com>
21312
21313         * Control.cs (SelectNextControl): Was using wrong method to select
21314           a control
21315
21316 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
21317
21318         * ComboBox.cs: fixes dropstyle
21319
21320 2005-01-13  Peter Bartok  <pbartok@novell.com>
21321
21322         * Form.cs:
21323           - Implemented Select() override
21324           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
21325           - Now sets keyboard focus on startup
21326         * Control.cs (SelectNextControl): Now properly handles directed=true
21327         * TextBoxBase.cs:
21328           - WndProc: Now passes tab key on to base if AcceptTabChar=false
21329           - Added (really bad) focus rectangle (mostly for testing)
21330         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
21331           to enforce redraw on focus changes
21332         * ContainerControl.cs:
21333           - Fixed detection of Shift-Tab key presses
21334           - Fixed traversal with arrow keys
21335         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
21336           gonna keep this or if it's complete yet
21337         
21338 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
21339
21340         * ComboBox.cs: missing properties, fixes
21341
21342 2005-01-13  Peter Bartok  <pbartok@novell.com>
21343
21344         * Panel.cs (ctor): Setting Selectable window style to off
21345         * Splitter.cs (ctor): Setting Selectable window style to off
21346         * GroupBox.cs (ctor): Setting Selectable window style to off
21347         * Label.cs (ctor): Setting Selectable window style to off
21348
21349 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
21350
21351         * UpDownBase.cs (InitTimer): If the timer has been already
21352         created, enable it.
21353
21354         Use a TextBox instead of a Label.
21355
21356 2005-01-12  Jackson Harper  <jackson@ximian.com>
21357
21358         * TreeView.cs: Refresh the tree after sorting the nodes. Always
21359         draw the connecting node lines (when ShowLines is true).
21360         * TreeNode.cs: The nodes index can now be updated. This is used
21361         when a node collection is sorted.
21362         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
21363         insert or an existing unsorted node collection can be sorted.
21364         
21365 2005-01-12  Peter Bartok  <pbartok@novell.com>
21366
21367         * ContainerControl.cs: Implemented ProcessDialogKeys()
21368
21369 2005-01-12  Peter Bartok  <pbartok@novell.com>
21370
21371         * Control.cs:
21372           - Implemented SelectNextControl() method
21373           - Several focus related bug fixes
21374           - Fixed Docking calculations to match MS documentation and
21375             behaviour
21376
21377 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
21378
21379         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
21380         bug fixes
21381
21382 2005-01-12  Peter Bartok  <pbartok@novell.com>
21383
21384         * Control.cs:
21385           - Fixed broken Contains() method
21386           - Implemented GetNextControl() method. Finally. This is the pre-
21387             requisite for focus handling.
21388
21389 2005-01-12  Peter Bartok  <pbartok@novell.com>
21390
21391         * OSXStrucs.cs: Added
21392
21393 2005-01-12  Peter Bartok  <pbartok@novell.com>
21394
21395         * XplatUIWin32.cs:
21396           - Removed PeekMessageFlags
21397           - Implemented SetWindowStyle() method
21398         * XplatUIStructs.cs: Added PeekMessageFlags
21399         * X11Structs: Added missing border_width field to XWindowChanges struct
21400         * XplatUIX11.cs:
21401           - PeekMessage: Now throws exception if flags which are not yet
21402             supported are passed
21403           - Implemented SetWindowStyle() method
21404           - Fixed SetZOrder to handle AfterHwnd properly
21405         * XplatUI.cs: Added SetWindowStyle() method
21406         * XplatUIDriver.cs: Added SetWindowStyle() abstract
21407         * Control.cs:
21408           - Implemented UpdateStyles() method
21409           - Implemented UpdateZOrder() method
21410         * XplatUIOSX.cs: Added SetWindowStyle() stub
21411
21412 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
21413
21414         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
21415         button mouse).
21416
21417
21418 2005-01-11  Jackson Harper  <jackson@ximian.com>
21419
21420         * TreeView.cs: Still need to draw lines to siblings even if out of
21421         the current node is out of the clip.
21422
21423 2005-01-11  Jackson Harper  <jackson@ximian.com>
21424
21425         * TreeView.cs: When setting the hbar/vbar/grip position use
21426         SetBounds so that perform layout is only called once. Also suspend
21427         and resume layout so layout is only done once for all controls.
21428         - Removed some debug fluff
21429         * SizeGrip.cs: Call base implmentation in overriding methods.
21430         - When visibility is changed the drawing buffers are killed so we
21431         need to redraw.
21432
21433 2005-01-11  Jackson Harper  <jackson@ximian.com>
21434
21435         * TreeView.cs: Calculate the open node count while drawing. This
21436         saves us an entire tree traversal for every paint operation. Use
21437         a member var for the open node count so less vars are passed around.
21438
21439 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
21440
21441         * MonthCalendar.cs:
21442         - fixed selection to use mousemove, not mouse polling on timer
21443         * ThemeWin32Classic.cs
21444         - removed redundant unused variable "no_more_content"
21445         
21446 2005-01-11  Peter Bartok  <pbartok@novell.com>
21447
21448         * XplatUIX11.cs (DoEvents): Needs to return when no more events
21449           are pending, so it now calls PeekMessage instead of GetMessage;
21450           implemented a incomplete version of PeekMessage
21451         
21452 2005-01-11  Peter Bartok  <pbartok@novell.com>
21453
21454         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
21455           I18n issues
21456         * TextBoxBase.cs: Added sending of TextChanged event
21457
21458 2005-01-10  Jackson Harper  <jackson@ximian.com>
21459
21460         * TreeView.cs: Try not to draw outside the clipping rectangle on
21461         each node element.
21462
21463 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
21464
21465         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
21466
21467 2005-01-10  Jackson Harper  <jackson@ximian.com>
21468
21469         * TreeView.cs:
21470         - Implement fast scrolling. Now only the newly
21471         exposed nodes are drawn and the old image is moved using the
21472         XplatUI::ScrollWindow method.
21473         - Factor in height of nodes when calculating whether or not the
21474         node is in the clipping rect.
21475
21476 2005-01-10  Jackson Harper  <jackson@ximian.com>
21477
21478         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
21479
21480 2005-01-10  Peter Bartok  <pbartok@novell.com>
21481
21482         * Application.cs: Added temporary hack to resolve all our resize
21483           required issues on startup. This will get fixed properly at
21484           some point in the future
21485
21486 2005-01-10  Jackson Harper  <jackson@ximian.com>
21487
21488         * SizeGrip.cs: New internal class that is used as a sizing
21489         grip control...hence the name.
21490
21491 2005-01-10  Peter Bartok  <pbartok@novell.com>
21492
21493         * Control.cs: Implemented proper TabIndex handling, now assigning
21494           a tabindex when a control is added to a container
21495         * GroupBox.cs (ctor): Now sets the Container style bit, required
21496           for Control.GetNextControl()
21497
21498 2005-01-09  Jackson Harper  <jackson@ximian.com>
21499
21500         * TextBoxBase.cs: Clear window when scrolling (fixes build).
21501
21502 2005-01-09  Peter Bartok <pbartok@novell.com>
21503
21504         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
21505           XplatUIX11.cs: Added ability to control ScrollWindow expose and
21506           an overload for ScrollWindow to allow only scrolling a rectangle
21507
21508 2005-01-09  Peter Bartok <pbartok@novell.com>
21509
21510         * Form.cs:
21511           - Implemented SetDesktopBounds method
21512           - Implemented SetDesktopLocation method
21513
21514 2005-01-08  Jackson Harper  <jackson@ximian.com>
21515
21516         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
21517         the node count has changed, this removes to VScroll::Refresh calls
21518         when drawing.
21519
21520 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
21521
21522         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
21523
21524 2005-01-07  Jackson Harper  <jackson@ximian.com>
21525
21526         * TreeNode.cs: Just update the single node when it is
21527         checked. Don't refresh after toggling, the Expand/Collapse already
21528         handles this.
21529         * TreeView.cs: Respect clipping a little more when drawing. Try
21530         not to redraw things that don't need to be redrawn. Just hide the
21531         scrollbars when they are no longer needed instead of removing
21532         them, so they don't have to be created again and again.
21533         
21534 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
21535
21536         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
21537         coordinates to window space to place the caret properly, FIXED.
21538         Implement GetWindowState & SetWindowState
21539
21540 2005-01-06  Peter Bartok <pbartok@novell.com>
21541
21542         * Form.cs:
21543           - Implemented ClientSize property
21544           - Implemented DesktopBounds property
21545           - Implemented DesktopLocation property
21546           - Implemented IsRestrictedWindow property
21547           - Implemented Size property
21548           - Implemented TopLevel property
21549           - Implemented FormWindowState property
21550         * Control.cs:
21551           - Implemented GetTopLevel() method
21552           - Implemented SetTopLevel() method
21553         * X11Structs.cs (Atom):
21554           - Added AnyPropertyType definition
21555           - Added MapState definiton and updated XWindowAttribute struct
21556         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
21557         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
21558         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
21559         * XplatUIWin32.cs:
21560           - Implemented GetWindowState() and SetWindowState() methods
21561           - Fixed Win32GetWindowLong return type
21562         * XplatUIX11.cs:
21563           - Introduced central function for sending NET_WM messages
21564           - Implemented GetWindowState() and SetWindowState() methods
21565         * TextBoxBase.cs (set_Lines):
21566           - Now uses Foreground color for text added via Text property (Duh!)
21567           - Added code to remember programmatically requested size (fixes
21568             behaviour when Multiline is set after Size)
21569           - Added AutoSize logic
21570
21571 2005-01-06  Jackson Harper  <jackson@ximian.com>
21572
21573         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
21574
21575 2005-01-06  Jackson Harper  <jackson@ximian.com>
21576
21577         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
21578         set to less then 0.
21579
21580 2005-01-06  Jackson Harper  <jackson@ximian.com>
21581
21582         * ScrollableControl.cs: Lazy init the scrollbars.
21583         
21584 2005-01-06  Jackson Harper  <jackson@ximian.com>
21585
21586         * Theme.cs: Speed up getting pens and solid brushes, by using
21587         their ARGB as a hash instead of tostring and not calling Contains.
21588
21589 2005-01-06  Peter Bartok <pbartok@novell.com>
21590
21591         * Form.cs:
21592           - Implemented OnActivated and OnDeactivate event trigger
21593           - Implemented Activate() method
21594           - Fixed ShowDialog() to activate the form that was active before
21595             the dialog was shown
21596         * XplatUIX11.cs:
21597           - Added global active_window var that tracks the currently active
21598             X11 window
21599           - Now always grabs Property changes from the root window to always
21600             catch changes on the active window property
21601           - Added code to PropertyNotify handler to send Active/Inactive
21602             messages when state changes. This puts X11 and Win32 en par on
21603             WM_ACTIVATE notifications (except for double notifications when
21604             the user clicks away from our modal window to another one of our
21605             windows)
21606
21607 2005-01-05  Jackson Harper  <jackson@ximian.com>
21608
21609         * ImageList.cs: Implment ctor
21610
21611 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21612
21613         * XplatUIOSX.cs: Implement Activate/SetTopmost
21614
21615 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21616
21617         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
21618
21619 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21620
21621         * XplatUIOSX.cs: Implement GetActive/SetFocus.
21622
21623 2005-01-05  Peter Bartok <pbartok@novell.com>
21624
21625         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
21626           XplatUIOSX.cs: Added GetActive method to return the currently
21627           active window for the application (or null, if none is active)
21628         * Form.cs:
21629           - Implemented ActiveForm
21630           - Commented out owner assignment for modal dialogs (causes problems
21631             on Win32, since the owner will be disabled)
21632           - Reworked some Active/Focus handling (still incomplete)
21633         * CommonDialog.cs: Commented out owner assignment for modal dialogs
21634           (causes problems on Win32, since the owner will be disabled)
21635         * IWin32Window: Added ComVisible attribute
21636
21637 2005-01-05  Peter Bartok <pbartok@novell.com>
21638
21639         * ToolTip.cs (WndProc): Enable setting focus now that we have the
21640           required XplatUI functions.
21641
21642 2005-01-05  Peter Bartok <pbartok@novell.com>
21643
21644         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
21645           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
21646           to implement focus and activation handling; still incomplete and
21647           with debug output
21648
21649 2005-01-04  Peter Bartok <pbartok@novell.com>
21650
21651         * TextBoxBase.cs: Changed access level for Document property to
21652           match switch to internal for TextControl
21653
21654 2005-01-04  Peter Bartok <pbartok@novell.com>
21655
21656         * AccessibleObject: Added ComVisible attribute
21657
21658 2005-01-04  Jackson Harper  <jackson@ximian.com>
21659
21660         * X11Keyboard.cs: Remove unneeded var.
21661
21662 2005-01-04  Jackson Harper  <jackson@ximian.com>
21663
21664         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
21665         but PAINT.
21666         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
21667         ClientMessage. This makes apps exit cleanly (more often).
21668         
21669 2005-01-04  Jackson Harper  <jackson@ximian.com>
21670
21671         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
21672         handling focus, return correct colors and fonts,
21673         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
21674         handle selection, horizontal scrolling, and mouse interaction.
21675
21676 2005-01-04  Peter Bartok <pbartok@novell.com>
21677
21678         * ICommandExecutor.cs: Added
21679         * IDataGridColumnStyleEditingNotificationService.cs: Added
21680         * IFeatureSupport.cs: Added
21681         * IFileReaderService.cs: Added
21682         * IDataObject.cs: Added ComVisible attribute
21683         * AmbientProperties.cs: Added
21684         * BaseCollection.cs: Added missing attributes
21685         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
21686         * BaseCollection.cs: Added missing attributes
21687         * Binding.cs: Added TypeConverter attribute
21688         * BindingContext.cs: Added DefaultEvent attribute
21689         * BindingsCollection.cs: Added DefaultEvent attribute
21690         * Button.cs: Added DefaultValue attribute
21691         * DragEventArgs.cs: Added ComVisible attribute
21692         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
21693         * KeyEventArgs.cs: Added ComVisible attribute
21694         * KeyPressEventArgs.cs: Added ComVisible attribute
21695         * MouseEventArgs.cs: Added ComVisible attribute
21696         * NavigateEventArgs.cs: Added
21697         * NavigateEventHandler.cs: Added
21698         * FeatureSupport.cs: Added
21699         * OSFeature.cs: Added
21700         * Theme.cs: Added abstract Version property to support OSFeature
21701         * ThemeWin32Classic.cs: Added Version property to
21702           support OSFeature.Themes
21703         * ProgressBar.cs: Removed OnPaintBackground override, not required since
21704           the proper styles to avoid background drawing are set, also doesn't
21705           match MS signature
21706         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
21707         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
21708         * ScrollEventArgs.cs: Added ComVisible attribute
21709         * SplitterEventArgs.cs: Added ComVisible attribute
21710         * AccessibleSelection.cs: Added Flags attribute
21711         * Appearance.cs: Added ComVisible attribute
21712         * Border3DSide.cs: Added ComVisible attribute
21713         * Border3DStyle.cs: Added ComVisible attribute
21714         * BorderStyle.cs: Added ComVisible attribute
21715         * DragAction.cs: Added ComVisible attribute
21716         * ErrorBlinkStyle.cs: Added
21717         * ScrollEventType.cs: Added ComVisible attribute
21718         * AnchorStyles.cs: Added Editor attribute
21719         * DockStyle.cs: Added Editor attribute
21720         * HorizontalAlignment.cs: Added ComVisible attribute
21721         * HelpEventArgs.cs: Added ComVisible attribute
21722         * PaintEventArgs.cs: Added IDisposable
21723
21724 2005-01-04  Peter Bartok <pbartok@novell.com>
21725
21726         * TextControl.cs: Switched Line, LineTag and Document classes to
21727           internal
21728
21729 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21730
21731         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
21732         Simple mode, fixes, IntegralHeight, etc.
21733
21734 2005-01-04  Peter Bartok <pbartok@novell.com>
21735
21736         * TextBoxBase.cs: Using proper font variable now
21737
21738 2005-01-04  Peter Bartok <pbartok@novell.com>
21739
21740         * Form.cs (ShowDialog): Set parent to owner, if provided
21741         * GroupBox.cs: Removed unused vars
21742         * TextControl.cs:
21743           - Added GetHashCode() for Document and LineTag classes
21744           - Removed unused variables
21745           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
21746             to allow translation between continuous char position and line/pos
21747         * CheckBox.cs: Removed vars that are provided by base class
21748         * RadioButton.cs: Removed vars that are provided by base class, added
21749           new keyword where required
21750         * LinkLabel.cs: Added new keyword where required
21751         * Control.cs (WndProc): Removed unused variable
21752         * TextBoxBase.cs:
21753           - Finished SelectionLength property
21754           - Implemented SelectionStart property
21755           - Implemented Text property
21756           - Removed unused vars
21757         * MessageBox.cs: Added new keyword where required
21758         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
21759           WndProc signature
21760         * MenuAPI.cs: Added new keyword where required
21761         * ButtonBase.cs: Removed vars that are provided by base class, added
21762           new keyword where required
21763         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
21764           argument to double, to allow compiling with csc 2.0 (Atsushi ran
21765           into this)
21766         * Application.cs (Run): Now triggers the ThreadExit event
21767         * CommonDialog.cs: Added new keyword where required; now properly sets
21768           parent (owner) for dialog
21769         * XplatUIX11.cs: Commented out unused vars
21770         * StatusBar.cs: Fixed signature for Text property
21771         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
21772
21773 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21774
21775         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
21776         TrackBar.cs, MonthCalendar.cs: remove unused vars
21777
21778 2005-01-03  Jackson Harper  <jackson@ximian.com>
21779
21780         * ThemeWin32Classic.cs:
21781         * X11Keyboard.cs: Remove unused vars.
21782
21783 2005-01-03  Peter Bartok  <pbartok@novell.com>
21784
21785         * TextBox.cs:
21786           - set_Text: Tied into TextControl
21787           - set_TextAlignment: Tied into TextControl
21788         * TextControl.cs:
21789           - Added alignment properties and implemented alignment handling
21790             and drawing (still has a bug, not generating proper expose events)
21791           - Added new Line() constructor to allow passing the line alignment
21792           - Fixed selection setting, properly handling end<start now
21793           - Added aligment considerations to RecalculateDocument()
21794         * TextBoxBase.cs:
21795           - Now properly enforces control height for single line controls
21796           - Added support for CharacterCasing
21797           - Added IsInputKey override
21798           - Fixed Keys.Enter logic
21799           - Added SetBoundsCore override
21800           - Fixed mouse selection handling
21801
21802 2005-01-03  Jackson Harper  <jackson@ximian.com>
21803
21804         * TreeView.cs:
21805           - Collapse and uncheck all nodes when CheckBoxes is disabled.
21806           - Checkboxes are always aligned to the bottom of the node,
21807           regardless of item height.
21808           - Use the node bounds to draw the text so we can center it when
21809           the item height is greater then the font height.
21810           - Node::Bounds are only the text part of the node.
21811         * TreeNode.cs: New method to combine collapsing and unchecking all
21812           nodes recursively.
21813
21814 2005-01-02  Jackson Harper  <jackson@ximian.com>
21815
21816         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
21817         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
21818         tree when a check is changed. TODO: Only refresh the checked node.
21819
21820 2004-12-30  Jackson Harper  <jackson@ximian.com>
21821
21822         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
21823         * TreeNode.cs: When collapsing make sure to never collapse the
21824         root node.
21825
21826 2004-12-29  Jackson Harper  <jackson@ximian.com>
21827
21828         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
21829         
21830 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
21831
21832         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
21833
21834 2004-12-28  Peter Bartok  <pbartok@novell.com>
21835
21836         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
21837           not yet assigned
21838
21839 2004-12-28  Peter Bartok  <pbartok@novell.com>
21840
21841         * Control.cs (WndProc): Added WM_HELP handler, now generates
21842           HelpRequested event
21843         * Form.cs: Added HelpButton property and required support code
21844         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
21845
21846 2004-12-28  Peter Bartok  <pbartok@novell.com>
21847
21848         * CommonDialog.cs:
21849           - Made DialogForm.owner variable internal
21850           - Added check to ensure owner form is set before setting
21851             owner properties in CreateParams
21852
21853 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
21854
21855         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
21856           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
21857           GetCursorPos.  Fix major visibility issues.  Rework the windowing
21858           system to support borderless/titleless windows (implements menus).
21859           Fix GetWindowPos.  Implement initial background color support for
21860           views.
21861
21862 2004-12-28  Peter Bartok  <pbartok@novell.com>
21863
21864         * Form.cs (get_CreateParams): Make sure we have an owner before using
21865           the owner variable. Implement proper default if no owner exists
21866
21867 2004-12-28  Peter Bartok  <pbartok@novell.com>
21868
21869         * In preparation for making Managed.Windows.Forms the default build target
21870           for System.Windows.Forms, the following stubbed files were added.
21871           Dialogs are currently being implemented by contributors and are only
21872           short-term place holders.
21873         * ColorDialog.cs: Initial check-in (minmal stub)
21874         * DataGrid.cs: Initial check-in (minimal stub)
21875         * DataGridLineStyle.cs: Initial check-in (minimal stub)
21876         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
21877         * DataGridTableStyle.cs: Initial check-in (minimal stub)
21878         * FontDialog.cs: Initial check-in (minimal stub)
21879         * FileDialog.cs: Initial check-in (minimal stub)
21880         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
21881         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
21882         * OpenFileDialog: Initial check-in (minimal stub)
21883         * IComponentEditorPageSite.cs: Initial check-in
21884         * Splitter.cs: Initial check-in (for Jackson)
21885         * SplitterEventArgs.cs: Initial check-in (for Jackson)
21886         * SplitterEventHandler.cs: Initial check-in (for Jackson)
21887         * TextBox.cs: Initial check-in; still needs some wiring to
21888           TextControl backend
21889         * Form.cs: Implemented ControlBox property
21890         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
21891         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
21892         * TextControl.cs: Added selection functionality; added todo header
21893         * TextBoxBase.cs:
21894           - Implemented Lines property
21895           - Implemented TextHeight property
21896           - Implemented SelectedText property
21897           - Implemented SelectionLength property
21898           - Implemented SelectAll method
21899           - Implemented ToString method
21900           - Removed and cleaned up some debug code
21901           - Implemented (still buggy) mouse text selection
21902
21903 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
21904
21905         * ComboBox.cs: Complete DropDownList implementation, fixes.
21906
21907 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
21908
21909         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
21910         * ComboBoxStyle.cs: ComboBoxStyle enum
21911         * ComboBox.cs: Initial work on ComboBox control
21912
21913 2004-12-21  Peter Bartok  <pbartok@novell.com>
21914
21915         * Control.cs (ctor, CreateParams): Moved setting of is_visible
21916           forward so that anything that creates a window gets the default,
21917           also no longer uses Visible property in CreateParams to avoid
21918           walking up the parent chain and possibly get the wrong visible
21919           status. Fixed IsVisible to no longer walk up to the parent.
21920
21921 2004-12-21  Peter Bartok  <pbartok@novell.com>
21922
21923         * Form.cs (ShowDialog): Unset modality for the proper window
21924  
21925 2004-12-20  Peter Bartok  <pbartok@novell.com>
21926
21927         * CommonDialog.cs: Initial check-in
21928
21929 2004-12-20  Peter Bartok  <pbartok@novell.com>
21930
21931         * Control.cs (Visible): Now uses the parent window instead of the
21932           client area window for the property
21933
21934         * Form.cs
21935           - ShowDialog(): Now uses the proper window for modality
21936           - The default visibility state for the form parent is now false. This
21937             will prevent the user from seeing all the changes to the form and
21938             its controls before the application hits Application.Run()
21939           - Removed some stale commented out code
21940
21941         * NativeWindow.cs:
21942           - Added FindWindow() method to have a method to check for existence
21943             of a window handle
21944           - Added ability to override default exception handling (for example
21945             when debugging with VS.Net; to do this the ExternalExceptionHandler
21946             define must be set
21947           - Removed some useless debug output
21948
21949         * XplatUIX11.cs:
21950           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
21951             not working as expected
21952           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
21953             property to allow switching back to the modal window if focus is
21954             given to another one of our windows (Application Modal)
21955           - Now only sets override_redirect if we create a window
21956             without WS_CAPTION
21957           - Moved EventMask selection before mapping of newly created window
21958             so we can catch the map event as well
21959           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
21960           - Added various Atom related DllImports
21961           - Implemented Exit() method
21962           - .ctor() : No longer shows window if WS_VISIBLE is not defined
21963             in the CreateParams
21964
21965         * MessageBox.cs: Now properly deals with the FormParent window by
21966           providing an override the FormParent CreateParams property to
21967           set as POPUP instead of OVERLAPPED window.
21968
21969 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21970
21971         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
21972         Minor code cleanup.
21973
21974 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21975         
21976         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
21977
21978 2004-12-18  Peter Bartok  <pbartok@novell.com>
21979
21980         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
21981           implementing SetModal() method
21982
21983 2004-12-18  Peter Bartok  <pbartok@novell.com>
21984
21985         * X11Structs.cs (XGCValues): Fixed type of function element
21986         * XplatUI.cs: Added ScrollWindow() method
21987         * XplatUIDriver.cs: Added ScrollWindow() abstract
21988         * XplatUIWin32.cs: Implemented ScrollWindow() method
21989         * XplatUIX11.cs: Implemented ScrollWindow() method
21990         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
21991
21992 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21993
21994         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
21995         Some more keyboard support (INCOMPLETE)
21996
21997 2004-12-17  Peter Bartok  <pbartok@novell.com>
21998
21999         * TextControl.cs:
22000         - Added color attribute to line tags.
22001         - Added color argument to all functions dealing with tags
22002         - Added color argument support to various functions
22003         - Fixed miss-calculation of baseline/shift in certain circumstances
22004
22005         * TextBoxBase.cs: Added new color option to test code
22006
22007 2004-12-17  Jackson Harper  <jackson@ximian.com>
22008
22009         * TreeNode.cs:
22010         * MonthCalendar.cs: Signature fixes
22011
22012 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22013
22014         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
22015         keyboard event moved it.  Create a new graphics context for each paint resolves this
22016
22017 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
22018
22019         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
22020         Make caret exist and go blink blink.  Initial keyboard support.
22021         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
22022         works.
22023
22024 2004-12-17  Jackson Harper  <jackson@ximian.com>
22025
22026         * XplatUIStructs.cs: Updated set of virtual keycodes.
22027         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
22028
22029 2004-12-17  Jackson Harper  <jackson@ximian.com>
22030
22031         * XplatUIX11.cs: Prune old keyboard code.
22032
22033 2004-12-17  Jackson Harper  <jackson@ximian.com>
22034
22035         * XplatUIX11.cs: When generating mouse wparams get the modifier
22036         keys from the ModifierKeys property.
22037
22038 2004-12-17  Jackson Harper  <jackson@ximian.com>
22039
22040         * X11Keyboard.cs: Send up/down input when generating
22041         messages. Remove some unused vars.
22042
22043 2004-12-17  Jackson Harper  <jackson@ximian.com>
22044
22045         * TabControl.cs:
22046         * TreeView.cs: get rid of warnings.
22047
22048 2004-12-17  Jackson Harper  <jackson@ximian.com>
22049
22050         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
22051
22052 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
22053
22054         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
22055           CheckedListBox.cs: Implementation
22056
22057 2004-12-17  Peter Bartok  <pbartok@novell.com>
22058
22059         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
22060
22061 2004-12-16  Peter Bartok  <pbartok@novell.com>
22062
22063         * TextControl.cs:
22064           - InsertCharAtCaret(): Fixed start pos fixup
22065           - CaretLine_get: No longer derives the line from the tag, the tag
22066             could be stale if lines in the document have been added or deleted
22067           - RebalanceAfterDelete(): Fixed bug in balancing code
22068           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
22069           - Line.Streamline(): Now can also elminate leading empty tags
22070           - DumpTree(): Added a few more tests and prevented exception on
22071             uninitialized data
22072           - Added Debug section for Combining lines
22073           - Delete(): Now copies all remaining properties of a line
22074           
22075         * TextBoxBase.cs:
22076           - Left mousebutton now sets the caret (and middle button still acts
22077             as formatting tester, which must go away soon)
22078           - Added Debug section for Deleting/Combining lines
22079           - Fixed calculations for UpdateView after Combining lines
22080
22081 2004-12-16  Peter Bartok  <pbartok@novell.com>
22082
22083         * TextControl.cs: Now properly aligns text on a baseline, using the
22084           new XplatUI.GetFontMetrics() method. Simplified several calculations
22085         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
22086           defined
22087
22088 2004-12-16  Peter Bartok  <pbartok@novell.com>
22089
22090         * XplatUI.cs: Added GetFontMetrics() method
22091         * XplatUIDriver.cs: Added GetFontMetrics() abstract
22092         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
22093           into libgdiplus, our private GetFontMetrics function
22094         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
22095         * XplatUIWin32.cs: Implemented GetFontMetrics() method
22096
22097 2004-12-16  Jackson Harper  <jackson@ximain.com>
22098
22099         * XplatUIStruct.cs: Add enum for dead keys
22100         * X11Keyboard.cs: Map and unmap dead keys.
22101
22102 2004-12-16  Jackson Harper  <jackson@ximian.com>
22103
22104         * X11Keyboard.cs: Detect and use the num lock mask.
22105
22106 2004-12-16  Peter Bartok  <pbartok@novell.com>
22107
22108         * Control.cs (CreateGraphics): Added check to make sure the
22109           handle of the window exists before calling Graphics.FromHwnd()
22110
22111 2004-12-16  Peter Bartok  <pbartok@novell.com>
22112
22113         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
22114           contains a lot of code that's not supposed to be there for the
22115           real thing, but required for developing/testing the textbox
22116           backend.
22117
22118 2004-12-16  Peter Bartok  <pbartok@novell.com>
22119
22120         * TextControl.cs:
22121         - Fixed Streamline method
22122         - Added FindTag method to Line
22123         - Added DumpTree method for debugging
22124         - Added DecrementLines() method for deleting lines
22125         - Fixed UpdateView to update the cursor to end-of-line on single-line
22126           updates
22127         - Added PositionCaret() method
22128         - Fixed MoveCaret(LineDown) to move into the last line, too
22129         - Added InsertChar overload
22130         - Fixed InsertChar tag offset calculations
22131         - Added DeleteChar() method
22132         - Added Combine() method for folding lines
22133         - Fixed Delete() method, no longer allocates wasted Line object and
22134           now copies all properties when swapping nodes
22135         - Delete() method now updates document line counter
22136
22137 2004-12-15  Jackson Harper  <jackson@ximian.com>
22138
22139         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
22140         * X11Keyboard.cs: Expose the currently selected modifier keys
22141         through a property.
22142
22143 2004-12-15  Peter Bartok  <pbartok@novell.com>
22144
22145         * TextControl.cs: Initial check-in. Still incomplete
22146
22147 2004-12-15  Jackson Harper  <jackson@ximian.com>
22148
22149         * TreeNode.cs:
22150         * TreeView.cs: Fix build on csc (second time today ;-))
22151
22152 2004-12-15  Jackson Harper  <jackson@ximian.com>
22153
22154         * TreeView.cs: Store the treenodes plus/minus box bounds when it
22155         is calculated and use this for click testing.
22156         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
22157
22158 2004-12-15  Jackson Harper  <jackson@ximian.com>
22159
22160         * TreeView.cs: Pass the nodes image index to the image list when
22161         drawing that image.
22162
22163 2004-12-15  Jackson Harper  <jackson@ximian.com>
22164
22165         * X11Keyboard.cs: Set messages hwnd.
22166         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
22167         post_message calls.
22168
22169 2004-12-15  Jackson Harper  <jackson@ximian.com>
22170
22171         * X11Keyboard.cs: Fix to compile with csc.
22172         
22173 2004-12-15  Jackson Harper  <jackson@ximian.com>
22174
22175         * X11Structs.cs: Add key mask values
22176         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
22177         * X11Keyboard.cs: New file - Extrapolates and interpolates key
22178         down/up foo into WM_CHAR foo
22179         * KeyboardLayouts.cs: Common keyboard layouts
22180         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
22181         post messages into the main queue.
22182
22183 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
22184
22185         * Button.cs: implement ProcessMnemonic
22186         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
22187           brushes everytime
22188         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
22189         * ButtonBase.cs: Show HotkeyPrefix (not the &)
22190
22191 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
22192         
22193         * MonthCalendar.cs: Implemented click-hold for next/previous month
22194           and date selection
22195           
22196 2004-12-11  Peter Bartok  <pbartok@novell.com>
22197
22198         * X11Structs.cs:
22199           - Added XKeyboardState (moved from XplatUIX11.cs)
22200           - Added XCreateGC related enums and structures
22201           - Added GXFunction for XSetFunction
22202
22203         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
22204
22205         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
22206           CaretVisible() calls
22207
22208         * ToolTip.cs: Added code to prevent stealing focus from app windows
22209
22210         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
22211           DestroyCaret, SetCaretPos and CaretVisible)
22212
22213         * XplatUIX11.cs:
22214           - Added implementation for caret functions
22215           - Moved hover variables into a struct, to make it a bit easier
22216             on the eyes and to debug
22217           - Removed XKeyboardState (moved to XplatUIX11.cs)
22218           - Moved Keyboard properties into the properties region
22219
22220         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
22221           call to get a graphics context for our control
22222
22223         * XplatUIOSX.cs: Added empty overrides for the new caret functions
22224
22225         * TreeView.cs: Fixed bug. No matter what color was set it would always
22226           return SystemColors.Window
22227
22228         * XplatUIWin32.cs: Implemented caret overrides
22229
22230 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
22231
22232         * ListBox.cs: fire events, implement missing methods and properties,
22233         sorting.
22234
22235 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
22236
22237         * MonthCalendar.cs: invalidation bug fixing
22238         * ThemeWin32Classic.cs: paint fixing
22239
22240 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
22241
22242         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
22243         prepare the CGContextRef there now.
22244
22245 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
22246
22247         * MonthCalendar.cs:
22248           - optimisationL only invalidate areas that have changed
22249         * ThemeWin32Classic.cs:
22250           - only paint parts that intersect with clip_area
22251
22252 2004-12-09  Peter Bartok  <pbartok@novell.com>
22253
22254         * Application.cs: Undid changes from r37004 which cause problems
22255         on X11
22256
22257 2004-12-09  Ravindra  <rkumar@novell.com>
22258
22259         * ToolBar.cs: Added support for displaying ContextMenu
22260         attached to a button on ToolBar.
22261         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
22262         property.
22263
22264 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
22265
22266         * Label.cs: autosize works in text change and removes unnecessary
22267         invalidate
22268
22269 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
22270
22271         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
22272         remove warnings
22273
22274 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
22275
22276         * XplatUIOSX.cs: Added mouse move/click/grab support
22277         Remove some debugging WriteLines not needed anymore.
22278         Add window resizing/positioning.
22279         Fix visibility on reparenting.
22280
22281 2004-12-08  Peter Bartok  <pbartok@novell.com>
22282
22283         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
22284
22285 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
22286
22287         * XplatUIOSX.cs: Initial checkin
22288         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
22289
22290 2004-12-03  Ravindra <rkumar@novell.com>
22291
22292         * ListView.cs: Added some keybindings and fixed scrolling.
22293         ScrollBars listen to ValueChanged event instead of Scroll
22294         Event. This would let us take care of all changes being
22295         done in the scrollbars' values programmatically or manually.
22296         * ListView.cs (CanMultiselect): Added a check for shift key.
22297         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
22298         * ListViewItem.cs (Clone): Fixed. We need to make a copy
22299         of ListViewSubItemCollection as well.
22300
22301 2004-12-06  Peter Bartok <pbartok@novell.com>
22302
22303         * Control.cs (Parent): Added check and exception to prevent
22304         circular parenting
22305
22306 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
22307
22308         * ListBox.cs: implemented clipping, selection single and multiple,
22309         bug fixing
22310
22311 2004-12-03  Ravindra <rkumar@novell.com>
22312
22313         * ListView.cs (ListView_KeyDown):
22314         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
22315         when CTRL key is pressed.
22316         * ListViewItem.cs (Selected): Fixed setting the property.
22317
22318 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
22319
22320         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
22321
22322         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
22323         MinimizeBox, ShowInTaskbar, TopMost properties.
22324
22325         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
22326         will be implemented).
22327
22328 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
22329
22330         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
22331
22332         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
22333         tests.
22334         
22335         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
22336         
22337         * TreeView.cs: BackColor is Colors.Window.
22338
22339 2004-12-01  Jackson Harper  <jackson@ximian.com>
22340
22341         * TreeView.cs: When resizing the tree if the user is making it
22342         smaller we don't get expose events, so we need to handle adding
22343         the horizontal scrollbar in the size changed handler as well as
22344         the expose handler.
22345
22346 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
22347
22348         * DrawItemState.cs: fixes wrong enum values
22349
22350 2004-12-01  Jackson Harper  <jackson@ximian.com>
22351
22352         * TreeView.cs: Resize the hbar as well as the vbar on resize.
22353
22354 2004-12-01  Jackson Harper  <jackson@ximian.com>
22355
22356         * NodeLabelEditEventArgs.cs:
22357         * NodeLabelEditEventHandler.cs:
22358         * OpenTreeNodeEnumerator.cs:
22359         * TreeNode.cs:
22360         * TreeNodeCollection.cs:
22361         * TreeView.cs:
22362         * TreeViewAction.cs:
22363         * TreeViewCancelEventArgs.cs:
22364         * TreeViewCancelEventHandler.cs:
22365         * TreeViewEventArgs.cs:
22366         * TreeViewEventHandler.cs: Initial implementation.
22367
22368 2004-12-01  Ravindra <rkumar@novell.com>
22369
22370         * ListView.cs (CalculateListView): Fixed scrolling related
22371         calculations. Also, removed some debug statements from other
22372         places.
22373         * ListViewItem.cs: Changed access to 'selected' instance variable
22374         from private to internal.
22375         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
22376
22377 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
22378
22379         * ThemeWin32Classic.cs: remove cache of brush and pens for
22380         specific controls and use the global system, fixes scrollbutton
22381         bugs (for small sizes, disabled, etc)
22382         
22383         * ScrollBar.cs: does not show the thumb for very small controls
22384         (as MS) and allow smaller buttons that the regular size
22385
22386 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
22387
22388         * UpDownBase.cs: Add abstract methods for the interface.
22389         Add new virtual methods (need to be hooked up to TextEntry when it
22390         exists).
22391         Add override methods for most features.
22392         Computes the size, forces the height of the text entry.
22393
22394         * NumericUpDown.cs: Put here the current testing code.
22395
22396         * Set eol-style property on all files that do not have mixed line
22397         endings, to minimize the future problems.  There are still a few
22398         files with mixed endings, and someone should choose whether they
22399         want to move it or not.
22400
22401 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
22402
22403         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
22404         System.Colors
22405         
22406 2004-11-30  Ravindra <rkumar@novell.com>
22407
22408         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
22409         drawing and replaced use of SystemColors by theme colors.
22410         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
22411         * ListView.cs (ListViewItemCollection.Add): Throw exception when
22412         same ListViewItem is being added more than once.
22413
22414 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
22415
22416         * MonthCalendar.cs:
22417           - ControlStyles love to make the control not flicker
22418           
22419 2004-11-30  Peter Bartok  <pbartok@novell.com>
22420
22421         * CharacterCasing.cs: Added
22422
22423 2004-11-29  Peter Bartok  <pbartok@novell.com>
22424
22425         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
22426           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
22427           I am removing these files as they conflict with already completed
22428           work. While it is fantastic to get contributions to MWF, I
22429           respectfully ask that everyone please coordinate their contributions
22430           through mono-winforms-list or #mono-winforms at this time. We're
22431           explicitly avoiding stubbing and don't want controls that don't have
22432           their basic functionality implemented in svn. Please also see
22433           http://www.mono-project.com/contributing/winforms.html
22434
22435
22436 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
22437
22438         * Application.cs (ModalRun): Don't hang after exit.
22439
22440         * Theme.cs: New TreeViewDefaultSize property.
22441
22442         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
22443         with less hardcoded SystemColors constant.
22444         Implemented TreeViewDefaultSize.
22445
22446         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
22447         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
22448
22449
22450 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
22451
22452         * MonthCalendar.cs:
22453           - Fix NextMonthDate and PrevMonthDate click moving calendar
22454
22455 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
22456
22457         * MonthCalendar.cs:
22458           - Fix usage of ScrollChange Property when scrolling months
22459
22460 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
22461
22462         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
22463          - Fixes menu destroying
22464          - Support adding and removing items on already created menus
22465
22466 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
22467
22468         * MonthCalendar.cs:
22469           - Re-worked all bolded dates handling to match win32
22470         * ThemeWin32Classic.cs:
22471           - Fixed rendering with bolded dates
22472
22473 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
22474
22475         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
22476         - Horizontal scroolbar
22477         - Multicolumn
22478         - Fixes
22479
22480
22481 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
22482
22483         * MonthCalendar.cs:
22484           - Fix Usage of MaxSelectionCount from SelectionRange
22485           - Fixed Shift + Cursor Selection
22486           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
22487           - Fixed normal cursor selection to be compat with win32
22488           - Fixed Shift + Mouse Click selection
22489
22490 2004-11-24  Peter Bartok <pbartok@novell.com>
22491
22492         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
22493         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
22494         * XplatUIX11.cs:
22495           - CreatedKeyBoardMsg now updates keystate with Alt key
22496           - Added workaround for timer crash to CheckTimers, Jackson will
22497             develop a proper fix and check in later
22498           - Implemented DispatchMessage
22499           - Removed calling the native window proc from GetMessage (call
22500             now moved to DispatchMessage)
22501
22502         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
22503           the keydata (Fixes bug #69831)
22504
22505         * XplatUIWin32.cs:
22506           - (DispatchMessage): Switched to return IntPtr
22507           - Added DllImport for SetFocus
22508
22509 2004-11-24  Ravindra <rkumar@novell.com>
22510
22511         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
22512         background drawing.
22513         * ListViewItem.cs: Fixed various properties, calculations
22514         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
22515         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
22516         and some internal properties. Fixed MouseDown handler and Paint
22517         method.
22518
22519 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22520
22521         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
22522
22523 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22524
22525         * ContainerControl.cs: correct accidental check in of local changes
22526
22527 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22528
22529         * ThemeWin32Classic.cs:
22530                 - Fixed Drawing Last month in grid (sometimes not showing)
22531         * MonthCalendar.cs:
22532                 - Fixed title width calculation bug (makeing title small)
22533
22534 2004-11-23  Peter Bartok <pbartok@novell.com>
22535
22536         * XplatUIX11.cs:
22537           - Added generation of WM_MOUSEHOVER event
22538           - Added missing assignment of async_method atom
22539           - Fixed WM_ERASEBKGND; now only redraws the exposed area
22540
22541 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
22542
22543         * ThemeWin32Classic.cs:
22544                 - Fixed Drawing of today circle when showtodaycircle not set
22545                 - fixed drawing of first and last month in the grid (gay dates)
22546         * MonthCalendar.cs:
22547                 - Fixed Drawing of today circle
22548                 - Fixed drawing of grady dates
22549                 - Fixed HitTest for today link when ShowToday set to false
22550                 - Fixed DefaultSize to obey ShowToday
22551
22552 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
22553
22554         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
22555         * System.Windows.Forms/Theme.cs
22556         * MonthCalendar.cs: added for MonthCalendar
22557         * SelectionRange.cs: added for MonthCalendar
22558         * Day.cs: added for MonthCalendar: added for MonthCalendar
22559         * DateRangeEventArgs.cs: added for MonthCalendar
22560         * DateRangeEventHandler.cs: added for MonthCalendar
22561
22562 2004-11-22  Ravindra <rkumar@novell.com>
22563
22564         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
22565         property.
22566
22567 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
22568
22569         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
22570         event handler.
22571         
22572         * NumericUpDown.cs: Added new implementation.
22573         * UpDownBase.cs: Added new implementation.
22574
22575         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
22576         implementations.
22577         
22578         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
22579         implementations.
22580
22581         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
22582         methods.
22583
22584 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
22585
22586         * Timer.cs  (Dispose): Should call the base dispose when
22587         overriding.
22588
22589 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22590
22591         * ScrollBar.cs: updates thumb position when max, min or increment
22592         is changed
22593
22594 2004-11-21  Ravindra <rkumar@novell.com>
22595
22596         * ListView.cs: Implemented item selection, activation and
22597         column header style. Fixed properties to do a redraw, if
22598         required. Added support for MouseHover, DoubleClick, KeyDown
22599         and KeyUp event handling and some minor fixes.
22600         * ListViewItem.cs: Fixed constructor.
22601         * ThemeWin32Classic.cs: Improved drawing for ListView.
22602
22603 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22604
22605         * ThemeWin32Classic.cs: initial listbox drawing code
22606         * DrawMode.cs: new enumerator
22607         * ListControl.cs: stubbed class
22608         * ListBox.cs: initial implementation
22609         * Theme.cs: new methods definitions
22610         * SelectionMode.cs: new enumerator
22611
22612 2004-11-17  Peter Bartok  <pbartok@novell.com>
22613
22614         * XplatUIWin32.cs: Added double-click events to the class style
22615         * Control.cs (WndProc):
22616           - Added handling of click-count to MouseDown/ MouseUp events.
22617           - Added handling of middle and right mouse buttons
22618           - Removed old debug code
22619
22620 2004-11-17  Jackson Harper  <jackson@ximian.com>
22621
22622         * XplatUIX11.cs: Use the new Mono.Unix namespace.
22623
22624 2004-11-17  Ravindra <rkumar@novell.com>
22625
22626         * ListView.cs: Added event handling for MouseMove/Up/Down.
22627         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
22628         * ThemeWin32Classic.cs: We need to clear the graphics context and
22629         draw column header in a proper state.
22630
22631
22632 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
22633
22634         *  Menu.cs: fixes signature
22635
22636 2004-11-16  Peter Bartok  <pbartok@novell.com>
22637
22638         * XplatUIX11.cs (GetMessage): Implemented generation of
22639           double click mouse messages
22640
22641 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
22642
22643         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
22644         not by menu
22645
22646 2004-11-11  Peter Bartok  <pbartok@novell.com>
22647
22648         * HandleData.cs: Added Visible property
22649         * XplatUIX11.cs (IsVisible): Now uses Visible property from
22650           HandleData
22651         * XplatUIX11.cs: Removed old debug leftovers
22652         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
22653         * Control.cs (WndProc): Removed old debug leftovers,
22654           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
22655           needed WM_SIZE handling
22656
22657 2004-11-11  Jackson Harper  <jackson@ximian.com>
22658
22659         * OwnerDrawPropertyBag.cs:
22660         * TreeViewImageIndexConverter.cs: Initial implementation
22661
22662 2004-11-10  Jackson Harper  <jackson@ximian.com>
22663
22664         * ThemeWin32Classic.cs:
22665         * TabControl.cs: instead of moving tabs by the slider pos just
22666         start drawing at the tab that is offset by the slider. This way
22667         scrolling always moves by exactly one tab.
22668
22669 2004-11-10  Jackson Harper  <jackson@ximian.com>
22670
22671         * TabControl.cs: You can only scroll left when the slider has
22672         already ben moved right.
22673         
22674 2004-11-10  Jackson Harper  <jackson@ximian.com>
22675
22676         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
22677         the clip area.
22678         
22679 2004-11-10  Jackson Harper  <jackson@ximian.com>
22680
22681         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
22682         clip area.
22683         
22684 2004-11-09  Jackson Harper  <jackson@ximian.com>
22685
22686         * TabControl.cs (CalcXPos): New helper method so we can determine
22687         the proper place to start drawing vertical tabs.
22688         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
22689         
22690 2004-11-09  Jackson Harper  <jackson@ximian.com>
22691
22692         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
22693         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
22694         and Bottom, left and right are illegal values for this and
22695         multiline is enabled when the alignment is set to left or right.
22696         (DrawTab): Each alignment block should draw the text itself now
22697         because Left requires special love. Also add rendering for Left
22698         aligned tabs.
22699         
22700 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
22701
22702         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
22703         does not destroy the windows, removes debugging messages
22704
22705 2004-11-09  jba  <jba-mono@optusnet.com.au>
22706
22707         * ThemeWin32Classic.cs
22708         (DrawButtonBase): Fix verticle text rect clipping in windows
22709         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22710         rendering and incorrect text rect clipping
22711         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22712         rendering and incorrect text rect clipping
22713         
22714 2004-11-08  Jackson Harper  <jackson@ximian.com>
22715
22716         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
22717         bottom when they are bottom aligned so the bottoms of the tabs get
22718         displayed.
22719         * TabControl.cs (DropRow): Move rows up instead of down when the
22720         tab control is bottom aligned.
22721
22722 2004-11-08 13:59  pbartok
22723
22724         * XplatUIX11.cs:
22725           - Added handling for various window styles
22726           - Added handling for popup windows
22727           - Added SetTopmost handling
22728
22729 2004-11-08 13:55  pbartok
22730
22731         * XplatUIWin32.cs:
22732           - Added argument to SetTopmost method
22733           - Fixed broken ClientToScreen function
22734
22735 2004-11-08 13:53  pbartok
22736
22737         * XplatUIStructs.cs:
22738           - Added missing WS_EX styles
22739
22740 2004-11-08 13:53  pbartok
22741
22742         * XplatUI.cs, XplatUIDriver.cs:
22743           - Added argument to SetTopmost
22744
22745 2004-11-08 13:52  pbartok
22746
22747         * X11Structs.cs:
22748           - Added XSetWindowAttributes structure
22749           - Improved XWindowAttributes structure
22750           - Added SetWindowValuemask enum
22751           - Added window creation arguments enum
22752           - Added gravity enum
22753           - Added Motif hints structure
22754           - Added various Motif flags and enums
22755           - Added PropertyMode enum for property functions
22756
22757 2004-11-08 13:50  pbartok
22758
22759         * Form.cs:
22760           - Fixed arguments for updated SetTopmost method
22761
22762 2004-11-08 13:49  pbartok
22763
22764         * ToolTip.cs:
22765           - Fixed arguments for updated SetTopmost function
22766           - Fixed usage of PointToClient
22767
22768 2004-11-08 13:44  pbartok
22769
22770         * MenuAPI.cs:
22771           - Added Clipping of children and siblings
22772
22773 2004-11-08 13:41  pbartok
22774
22775         * MainMenu.cs:
22776           - Removed SetMenuBarWindow call. We do this in Form.cs
22777
22778 2004-11-08 13:40  jackson
22779
22780         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
22781           scrolling jimmi in the correct location with bottom aligned tabs
22782
22783 2004-11-08 13:36  pbartok
22784
22785         * ContainerControl.cs:
22786           - Implemented BindingContext
22787           - Implemented ParentForm
22788
22789 2004-11-08 12:46  jackson
22790
22791         * TabControl.cs: Put bottom rendered tabs in the right location
22792
22793 2004-11-08 07:15  jordi
22794
22795         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
22796           removes dead code
22797
22798 2004-11-05 17:30  jackson
22799
22800         * TabControl.cs: When selected tabs are expanded make sure they
22801           don't go beyond the edges of the tab control
22802
22803 2004-11-05 14:57  jackson
22804
22805         * TabControl.cs: Reset show_slider so if the control is resized to
22806           a size where it is no longer needed it's not displayed anymore
22807
22808 2004-11-05 13:16  jackson
22809
22810         * TabControl.cs: Make tab pages non visible when added to the
22811           control
22812
22813 2004-11-05 12:42  jackson
22814
22815         * TabControl.cs: Implement SizeMode.FillToRight
22816
22817 2004-11-05 12:16  jackson
22818
22819         * Control.cs: Do not call CreateHandle if the handle is already
22820           created
22821
22822 2004-11-05 11:46  jackson
22823
22824         * TabControl.cs: Remove superflous call to CalcTabRows
22825
22826 2004-11-05 09:07  jackson
22827
22828         * XplatUIX11.cs: Update for Mono.Posix changes
22829
22830 2004-11-05 07:00  ravindra
22831
22832         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
22833           scrolling.
22834
22835 2004-11-04 22:47  jba
22836
22837         * ThemeWin32Classic.cs:
22838           - Fix Button rendering for FlatStyle = Flat or Popup
22839           - Fix RadioButton and CheckBox rendering when Appearance = Button
22840             (normal and flatstyle).
22841           - Correct outer rectangle color when drawing focus rectangle
22842           - Adjust button bounds to be 1 px smaller when focused
22843           - Make button not draw sunken 3d border when pushed (windows compat)
22844           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
22845           - Offset the text in RadioButton and Checkbox when being rendered as
22846           a button.
22847           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
22848           radiobuttons
22849           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
22850           - Fixed disabled text rendering for normally rendered radiobuttons
22851
22852 2004-11-04 10:26  jackson
22853
22854         * TabControl.cs: Recalculate tab rows when resizing
22855
22856 2004-11-04 07:47  jordi
22857
22858         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
22859           collection completion, drawing issues, missing features
22860
22861 2004-11-04 05:03  ravindra
22862
22863         * ScrollBar.cs:
22864                 - We need to recalculate the Thumb area when
22865                 LargeChange/maximum/minimum values are changed.
22866           - We set the 'pos' in UpdatePos() method to minimum, if it's less
22867                 than minimum. This is required to handle the case if large_change is
22868                 more than max, and use LargeChange property instead of large_change
22869                 variable.
22870           - We return max+1 when large_change is more than max, like MS does.
22871
22872 2004-11-04 04:29  ravindra
22873
22874         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
22875                 - Changed default value signatures (prefixed all with ListView).
22876                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
22877                 ListView.
22878           - Fixed calculations for ListViewItem and implemented Clone()
22879           method.
22880
22881 2004-11-04 04:26  ravindra
22882
22883         * Theme.cs, ThemeWin32Classic.cs:
22884                 - Changed default ListView values signatures (prefixed all with
22885                 ListView).
22886           - Fixed default size values for VScrollBar and HScrollBar.
22887                 - Fixed DrawListViewItem method.
22888
22889 2004-11-04 04:05  ravindra
22890
22891         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
22892
22893 2004-11-04 04:04  ravindra
22894
22895         * ImageList.cs: Implemented the missing overload for Draw method.
22896
22897 2004-11-03 19:29  jackson
22898
22899         * TabControl.cs: Handle dropping rows on selection properly
22900
22901 2004-11-03 11:59  jackson
22902
22903         * TabControl.cs: remove debug code
22904
22905 2004-11-03 11:52  jackson
22906
22907         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
22908           the scrolly widgerywoo
22909
22910 2004-11-02 13:52  jackson
22911
22912         * TabControl.cs: Resize the tab pages and tabs when the tab control
22913           is resized
22914
22915 2004-11-02 13:40  jackson
22916
22917         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
22918           selected tab to the bottom
22919
22920 2004-11-02 13:39  jackson
22921
22922         * TabPage.cs: Store the tab pages row
22923
22924 2004-11-02 12:33  jordi
22925
22926         * MenuItem.cs: fixes handle creation
22927
22928 2004-11-02 11:42  jackson
22929
22930         * TabControl.cs: signature fix
22931
22932 2004-11-02 08:56  jackson
22933
22934         * TabControl.cs: Calculate whether the tab is on an edge properly.
22935           Remove top secret debugging code
22936
22937 2004-11-01 19:57  jackson
22938
22939         * TabControl.cs: Add click handling, and proper sizing
22940
22941 2004-11-01 19:47  jackson
22942
22943         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
22944           tab controls
22945
22946 2004-11-01 19:39  jackson
22947
22948         * TabPage.cs: add internal property to store the bounds of a tab
22949           page
22950
22951 2004-10-30 04:23  ravindra
22952
22953         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
22954           values.
22955
22956 2004-10-30 04:21  ravindra
22957
22958         * ListView.cs, ListViewItem.cs: Added support for scrolling and
22959           fixed calculations.
22960
22961 2004-10-30 03:06  pbartok
22962
22963         * XplatUIX11.cs:
22964           - Removed extension of DllImported libs
22965
22966 2004-10-29 09:55  jordi
22967
22968         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
22969           navigation, itemcollection completion, menu fixes
22970
22971 2004-10-27 22:58  pbartok
22972
22973         * XplatUIX11.cs:
22974           - Now throws a nice error message when no X display could be opened
22975
22976 2004-10-26 13:51  jordi
22977
22978         * ListView.cs: removes warning
22979
22980 2004-10-26 03:55  ravindra
22981
22982         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
22983           ThemeWin32Classic.cs: Some formatting for my last checkins.
22984
22985 2004-10-26 03:36  ravindra
22986
22987         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
22988           control and default values.
22989
22990 2004-10-26 03:35  ravindra
22991
22992         * Theme.cs: Added some default values for ListView control.
22993
22994 2004-10-26 03:33  ravindra
22995
22996         * ToolBar.cs: ToolBar should use the user specified button size, if
22997           there is any. Added a size_specified flag for the same.
22998
22999 2004-10-26 03:33  ravindra
23000
23001         * ColumnHeader.cs: Added some internal members and calculations for
23002           ColumnHeader.
23003
23004 2004-10-26 03:32  ravindra
23005
23006         * ListViewItem.cs: Calculations for ListViewItem.
23007
23008 2004-10-26 03:31  ravindra
23009
23010         * ListView.cs: Added some internal members and calculations for
23011           ListView.
23012
23013 2004-10-22 13:31  jordi
23014
23015         * MenuAPI.cs: speedup menus drawing
23016
23017 2004-10-22 13:16  jackson
23018
23019         * XplatUIX11.cs: Make sure to update exposed regions when adding an
23020           expose event
23021
23022 2004-10-22 11:49  jackson
23023
23024         * Control.cs: oops
23025
23026 2004-10-22 11:41  jackson
23027
23028         * Control.cs: Check to see if the window should have its background
23029           repainted by X when drawing.
23030
23031 2004-10-22 11:31  jackson
23032
23033         * XplatUIX11.cs: When invalidating areas only use XClearArea if
23034           clear is true, this way we do not get flicker from X repainting the
23035           background
23036
23037 2004-10-22 11:28  jackson
23038
23039         * XEventQueue.cs: Queue properly
23040
23041 2004-10-21 09:38  jackson
23042
23043         * XEventQueue.cs: Fix access modifier
23044
23045 2004-10-21 09:36  jackson
23046
23047         * XEventQueue.cs: Don't loose messages
23048
23049 2004-10-21 09:22  jackson
23050
23051         * XEventQueue.cs: Don't loose messages
23052
23053 2004-10-20 04:15  jordi
23054
23055         * BootMode.cs: enum need it by SystemInfo
23056
23057 2004-10-19 21:58  pbartok
23058
23059         * XplatUIWin32.cs:
23060           - Small sanity check
23061
23062 2004-10-19 21:56  pbartok
23063
23064         * Form.cs:
23065           - Added private FormParentWindow class which acts as the container
23066             for our form and as the non-client area where menus are drawn
23067           - Added/Moved required tie-ins to Jordi's menus
23068           - Fixed/Implemented the FormStartPosition functionality
23069
23070 2004-10-19 21:52  pbartok
23071
23072         * Control.cs:
23073           - Removed unneeded locals
23074           - Added code to all size and location properties to understand and
23075             deal with the parent container of Form
23076
23077 2004-10-19 21:33  pbartok
23078
23079         * Application.cs:
23080           - Fixed to deal with new Form subclasses for menus
23081
23082 2004-10-19 17:48  jackson
23083
23084         * XEventQueue.cs: commit correct version of file
23085
23086 2004-10-19 16:50  jackson
23087
23088         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
23089
23090 2004-10-19 16:15  jordi
23091
23092         * MenuAPI.cs: MenuBarCalcSize returns the height
23093
23094 2004-10-19 08:31  pbartok
23095
23096         * Control.cs:
23097           - Added missing call to PreProcessMessage before calling OnXXXKey
23098           methods
23099
23100 2004-10-19 00:04  ravindra
23101
23102         * ToolTip.cs: Fixed constructor.
23103
23104 2004-10-18 09:31  jordi
23105
23106         * MenuAPI.cs: menuitems in menubars do not have shortcuts
23107
23108 2004-10-18 09:26  jordi
23109
23110         * MenuItem.cs: fixes MenuItem class signature
23111
23112 2004-10-18 08:56  jordi
23113
23114         * MenuAPI.cs: prevents windows from showing in the taskbar
23115
23116 2004-10-18 00:28  ravindra
23117
23118         * ToolTip.cs: Suppressed a warning message.
23119
23120 2004-10-18 00:27  ravindra
23121
23122         * Control.cs: Default value of visible property must be true.
23123
23124 2004-10-17 23:19  pbartok
23125
23126         * ToolTip.cs:
23127           - Complete implementation
23128
23129 2004-10-17 23:19  pbartok
23130
23131         * XplatUIX11.cs:
23132           - Added EnableWindow method
23133           - Added SetModal stub
23134           - Added generation of WM_ACTIVATE message (still needs testing)
23135           - Added SetTopMost stub
23136           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
23137
23138 2004-10-17 23:17  pbartok
23139
23140         * XplatUIWin32.cs:
23141           - Removed VirtualKeys to XplatUIStructs
23142           - Implemented SetTopMost method
23143           - Implemented EnableWindow method
23144           - Bugfix in ScreenToClient()
23145           - Bugfixes in ClientToScreen()
23146
23147 2004-10-17 22:51  pbartok
23148
23149         * XplatUIStructs.cs:
23150           - Added WS_EX styles to WindowStyles enumeration
23151
23152 2004-10-17 22:50  pbartok
23153
23154         * XplatUI.cs, XplatUIDriver.cs:
23155           - Added method for enabling/disabling windows
23156           - Added method for setting window modality
23157           - Added method for setting topmost window
23158
23159 2004-10-17 22:49  pbartok
23160
23161         * ThemeWin32Classic.cs:
23162           - Added ToolTip drawing code
23163
23164 2004-10-17 22:49  pbartok
23165
23166         * Theme.cs:
23167           - Added ToolTip abstracts
23168
23169 2004-10-17 22:47  pbartok
23170
23171         * Form.cs:
23172           - Fixed Form.ControlCollection to handle owner relations
23173           - Added Owner/OwnedForms handling
23174           - Implemented Z-Ordering for owned forms
23175           - Removed unneeded private overload of ShowDialog
23176           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
23177             so I hope)
23178           - Fixed Close(), had wrong default
23179           - Added firing of OnLoad event
23180           - Added some commented out debug code for Ownership handling
23181
23182 2004-10-17 22:16  pbartok
23183
23184         * Control.cs:
23185           - Fixed/implemented flat list of controls
23186
23187 2004-10-17 22:14  pbartok
23188
23189         * Application.cs:
23190           - Added code to simulate modal dialogs on Win32
23191
23192 2004-10-17 16:11  jordi
23193
23194         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
23195           mouse event
23196
23197 2004-10-17 13:39  jordi
23198
23199         * MenuAPI.cs: menu drawing fixes
23200
23201 2004-10-15 09:10  ravindra
23202
23203         * StructFormat.cs: General Enum.
23204
23205 2004-10-15 09:09  ravindra
23206
23207         * SizeGripStyle.cs: Enum for Form.
23208
23209 2004-10-15 09:08  ravindra
23210
23211         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
23212           in Theme for ListView.
23213
23214 2004-10-15 09:06  ravindra
23215
23216         * ColumnHeader.cs: Flushing some formatting changes.
23217
23218 2004-10-15 09:05  ravindra
23219
23220         * ListViewItem.cs: Implemented GetBounds method and fixed coding
23221           style.
23222
23223 2004-10-15 09:03  ravindra
23224
23225         * ListView.cs: Implemented Paint method and fixed coding style.
23226
23227 2004-10-15 07:34  jordi
23228
23229         * MenuAPI.cs: fix for X11
23230
23231 2004-10-15 07:32  ravindra
23232
23233         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
23234                 - Renamed Paint() method to Draw() for clarity. Also, moved
23235                 DrawImage() to OnPaint().
23236
23237 2004-10-15 07:25  ravindra
23238
23239         * CheckBox.cs, RadioButton.cs:
23240                 - Removed Redraw (), we get it from ButtonBase.
23241                 - Implemented Paint (), to do class specific painting.
23242
23243 2004-10-15 07:16  ravindra
23244
23245         * ButtonBase.cs:
23246                 - Redraw () is not virtual now.
23247                 - Added an internal virtual method Paint (), so that
23248                 derived classes can do their painting on their own.
23249                 - Modified OnPaint () to call Paint ().
23250
23251 2004-10-15 06:43  jordi
23252
23253         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
23254           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
23255
23256 2004-10-15 00:30  ravindra
23257
23258         * MessageBox.cs:
23259                 - MessageBox on windows does not have min/max buttons.
23260                 This change in CreateParams fixes this on Windows. We
23261                 still need to implement this windowstyle behavior in
23262                 our X11 driver.
23263
23264 2004-10-14 05:14  ravindra
23265
23266         * ToolBar.cs:
23267                 - Changed Redraw () to do a Refresh () always.
23268                 - Fixed the MouseMove event handling when mouse is pressed,
23269                 ie drag event handling.
23270                 - Replaced the usage of ToolBarButton.Pressed property to
23271                 ToolBarButton.pressed internal variable.
23272
23273 2004-10-14 05:10  ravindra
23274
23275         * ToolBarButton.cs:
23276                 - Added an internal member 'inside' to handle mouse move
23277                 with mouse pressed ie mouse drag event.
23278                 - Changed 'Pressed' property to return true only when
23279                 'inside' and 'pressed' are both true.
23280                 - Some coding style love.
23281
23282 2004-10-14 00:17  ravindra
23283
23284         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
23285           public method.
23286
23287 2004-10-14 00:15  ravindra
23288
23289         * ButtonBase.cs: Redraw () related improvements.
23290
23291 2004-10-14 00:14  ravindra
23292
23293         * MessageBox.cs: Moved InitFormSize () out of Paint method and
23294           removed unnecessary calls to Button.Show () method.
23295
23296 2004-10-13 17:50  pbartok
23297
23298         * XplatUIX11.cs:
23299           - Formatting fix
23300           - Removed destroying of window until we solve the problem of X
23301             destroying the window before us on shutdown
23302
23303 2004-10-13 16:32  pbartok
23304
23305         * ButtonBase.cs:
23306           - Now Redraws on MouseUp for FlatStyle Flat and Popup
23307
23308 2004-10-13 14:18  pbartok
23309
23310         * XplatUIX11.cs:
23311           - Added code to destroy the X window
23312
23313 2004-10-13 14:18  pbartok
23314
23315         * XplatUIWin32.cs:
23316           - Added code to destroy a window
23317
23318 2004-10-13 14:12  pbartok
23319
23320         * ButtonBase.cs:
23321           - Added the Redraw on Resize that got dropped in the last rev
23322
23323 2004-10-13 09:06  pbartok
23324
23325         * ThemeWin32Classic.cs:
23326           - Path from John BouAntoun:
23327             * Fix check rendering (centre correctly for normal style, offset
23328               correctly for FlatStyle).
23329             * Fix border color usage (use backcolor) for FlatStyle.Popup
23330             * Use checkbox.Capture instead of checkbox.is_pressed when
23331               rendering flatstyle states.
23332
23333 2004-10-12 21:48  pbartok
23334
23335         * ThemeWin32Classic.cs:
23336           - Removed all occurences of SystemColors and replaced them with the
23337             matching theme color
23338
23339 2004-10-12 21:41  pbartok
23340
23341         * ThemeWin32Classic.cs:
23342           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
23343             him using the function for flatstyle drawing
23344           - Changed functions to use the new version of CPDrawBorder3D
23345
23346 2004-10-12 21:15  pbartok
23347
23348         * ControlPaint.cs:
23349           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
23350             match MS documentation. They need to return defined colors if the
23351             passed color matches the configured control color. Thanks to John
23352             BouAntoun for pointing this out.
23353
23354 2004-10-12 20:57  pbartok
23355
23356         * Control.cs:
23357           - Fix from John BouAntoun: Raise ForeColorChanged event when text
23358             color is changed
23359
23360 2004-10-12 20:46  pbartok
23361
23362         * CheckBox.cs:
23363           - Fix from John BouAntoun: Now properly sets the Appearance property
23364
23365 2004-10-12 20:45  pbartok
23366
23367         * ThemeWin32Classic.cs:
23368           - Fixes from John BouAntoun: now handles forecolors and backcolors
23369             for flatstyle rendered controls much better; It also fixes normal
23370             checkbox rendering when pushed or disabled.
23371
23372 2004-10-08 02:50  jordi
23373
23374         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
23375           work
23376
23377 2004-10-07 08:56  jordi
23378
23379         * ThemeWin32Classic.cs: Removes deletion of cached brushes
23380
23381 2004-10-06 03:59  jordi
23382
23383         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
23384           XplatUIWin32.cs: removes warnings from compilation
23385
23386 2004-10-05 12:23  jackson
23387
23388         * RadioButton.cs: Fix ctor
23389
23390 2004-10-05 11:10  pbartok
23391
23392         * MessageBox.cs:
23393           - Partial implementation by Benjamin Dasnois
23394
23395 2004-10-05 10:15  jackson
23396
23397         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
23398           by John BouAntoun
23399
23400 2004-10-05 03:07  ravindra
23401
23402         * ToolBar.cs:
23403                 - Removed a private method, Draw ().
23404                 - Fixed the ButtonDropDown event handling.
23405                 - Fixed MouseMove event handling.
23406
23407 2004-10-05 03:04  ravindra
23408
23409         * ThemeWin32Classic.cs:
23410                 - Added DrawListView method and ListViewDefaultSize property.
23411                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
23412                 - Changed DOS style CRLF to Unix format (dos2unix).
23413
23414 2004-10-05 03:03  ravindra
23415
23416         * Theme.cs:
23417                 - Added DrawListView method and ListViewDefaultSize property.
23418
23419 2004-10-05 02:42  ravindra
23420
23421         * ToolBarButton.cs: Added an internal member dd_pressed to handle
23422           clicks on DropDown arrow.
23423
23424 2004-10-04 22:56  jackson
23425
23426         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
23427           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
23428           Control handle the buffers, derived classes should not have to
23429           CreateBuffers themselves.
23430
23431 2004-10-04 21:20  jackson
23432
23433         * StatusBar.cs: The control handles resizing the buffers now.
23434
23435 2004-10-04 21:18  jackson
23436
23437         * Control.cs: When resizing the buffers should be invalidated. This
23438           should be handled in Control not in derived classes.
23439
23440 2004-10-04 14:45  jackson
23441
23442         * TabPage.cs: oops
23443
23444 2004-10-04 02:14  pbartok
23445
23446         * LeftRightAlignment.cs:
23447           - Initial check-in
23448
23449 2004-10-04 01:09  jordi
23450
23451         * ThemeWin32Classic.cs: fixes right button position causing right
23452           button not showing on horizontal scrollbars
23453
23454 2004-10-02 13:12  pbartok
23455
23456         * XplatUIX11.cs:
23457           - Simplified the Invalidate method by using an X call instead of
23458             generating the expose ourselves
23459           - Added an expose when the window background is changed
23460           - Implemented ClientToScreen method
23461
23462 2004-10-02 13:08  pbartok
23463
23464         * XplatUIWin32.cs:
23465           - Added Win32EnableWindow method (test for implementing modal
23466           dialogs)
23467           - Added ClientToScreen method and imports
23468
23469 2004-10-02 13:07  pbartok
23470
23471         * XplatUI.cs, XplatUIDriver.cs:
23472           - Added ClientToScreen coordinate translation method
23473
23474 2004-10-02 13:06  pbartok
23475
23476         * KeyPressEventArgs.cs:
23477           - Fixed access level for constructor
23478
23479 2004-10-02 13:06  pbartok
23480
23481         * NativeWindow.cs:
23482           - Changed access level for the window_collection hash table
23483
23484 2004-10-02 13:05  pbartok
23485
23486         * Form.cs:
23487           - Added KeyPreview property
23488           - Added Menu property (still incomplete, pending Jordi's menu work)
23489           - Implemented ProcessCmdKey
23490           - Implemented ProcessDialogKey
23491           - Implemented ProcessKeyPreview
23492
23493 2004-10-02 13:02  pbartok
23494
23495         * Control.cs:
23496           - Added private method to get the Control object from the window
23497           handle
23498           - Implemented ContextMenu property
23499           - Implemented PointToScreen
23500           - Implemented PreProcessMessage
23501           - Implemented IsInputChar
23502           - Implemented IsInputKey
23503           - Implemented ProcessCmdKey
23504           - Completed ProcessKeyEventArgs
23505           - Fixed message loop to call the proper chain of functions on key
23506           events
23507           - Implemented ProcessDialogChar
23508           - Implemented ProcessDialogKey
23509           - Implemented ProcessKeyMessage
23510           - Implemented ProcessKeyPreview
23511           - Added RaiseDragEvent stub (MS internal method)
23512           - Added RaiseKeyEvent stub (MS internal method)
23513           - Added RaiseMouseEvent stub (MS Internal method)
23514           - Added RaisePaintEvent stub (MS Internal method)
23515           - Added ResetMouseEventArgs stub (MS Internal method)
23516           - Implemented RtlTranslateAlignment
23517           - Implemented RtlTranslateContent
23518           - Implemented RtlTranslateHorizontal
23519           - Implemented RtlTranslateLeftRight
23520           - Added generation of KeyPress event
23521
23522 2004-10-02 05:57  ravindra
23523
23524         * ListViewItem.cs: Added attributes.
23525
23526 2004-10-02 05:32  ravindra
23527
23528         * ListView.cs: Added attributes.
23529
23530 2004-10-01 11:53  jackson
23531
23532         * Form.cs: Implement the Close method so work on MessageBox can
23533           continue.
23534
23535 2004-09-30 14:06  pbartok
23536
23537         * XplatUIX11.cs:
23538           - Bug fixes
23539
23540 2004-09-30 11:34  jackson
23541
23542         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
23543
23544 2004-09-30 07:26  ravindra
23545
23546         * ListViewItemConverter.cs: Converter for ListViewItem.
23547
23548 2004-09-30 07:26  ravindra
23549
23550         * SortOrder.cs: Enum for ListView control.
23551
23552 2004-09-30 07:25  ravindra
23553
23554         * ColumnHeader.cs: Supporting class for ListView control.
23555
23556 2004-09-30 07:24  ravindra
23557
23558         * ListView.cs, ListViewItem.cs: Initial implementation.
23559
23560 2004-09-30 07:20  ravindra
23561
23562         * ItemActivation.cs: Enum for ListView Control.
23563
23564 2004-09-29 20:29  pbartok
23565
23566         * XplatUIX11.cs:
23567           - Added lookup of pixel value for background color; tries to get a
23568             color 'close' to the requested color, it avoids having to create a
23569             colormap.  Depending on the display this could mean the used color
23570             is slightly off the desired color. Might have to change it to a more
23571             resource intensive colormap approach, but it will work as a
23572           workaround to avoid red screens.
23573
23574 2004-09-29 14:27  jackson
23575
23576         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
23577
23578 2004-09-28 12:44  pbartok
23579
23580         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
23581           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
23582           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
23583           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
23584           TrackBar.cs, VScrollBar.cs:
23585           - Streamlined Theme interfaces:
23586             * Each DrawXXX method for a control now is passed the object for
23587               the control to be drawn in order to allow accessing any state the
23588               theme might require
23589
23590             * ControlPaint methods for the theme now have a CP prefix to avoid
23591               name clashes with the Draw methods for controls
23592
23593             * Every control now retrieves it's DefaultSize from the current
23594             theme
23595
23596 2004-09-28 12:17  jackson
23597
23598         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
23599           drawing
23600
23601 2004-09-24 14:57  jackson
23602
23603         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
23604           Gives us a nice little performance boost.
23605
23606 2004-09-24 12:02  jackson
23607
23608         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
23609           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
23610           Control and supporting classes. Initial checkin
23611
23612 2004-09-23 13:08  jackson
23613
23614         * Form.cs: Temp build fixage
23615
23616 2004-09-23 01:39  ravindra
23617
23618         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
23619           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
23620           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
23621           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
23622           EventHandlers needed by ListView Control.
23623
23624 2004-09-22 14:12  pbartok
23625
23626         * ScrollableControl.cs:
23627           - Implemented DockPadding property
23628           - Implemented AutoScroll property
23629           - Implemented AutoScrollMargin property
23630           - Implemented AutoScrollMinSize property
23631           - Implemented AutoScrollPosition property
23632           - Implemented DisplayRectangle property (still incomplete)
23633           - Implemented CreateParams property
23634           - Implemented HScroll property
23635           - Implemented VScroll property
23636           - Implemented OnVisibleChanged property
23637
23638 2004-09-22 14:09  pbartok
23639
23640         * Form.cs:
23641           - Added Form.ControllCollection class
23642           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
23643             RemoveOwnedForm (still incomplete, missing on-top and common
23644             minimize/maximize behaviour)
23645           - Added StartPosition property (still incomplete, does not use when
23646             creating the form)
23647           - Added ShowDialog() methods (still incomplete, missing forcing the
23648             dialog modal)
23649
23650 2004-09-22 14:05  pbartok
23651
23652         * Application.cs:
23653           - Added message loop for modal dialogs
23654
23655 2004-09-22 14:02  pbartok
23656
23657         * GroupBox.cs:
23658           - Fixed wrong types for events
23659
23660 2004-09-22 14:00  pbartok
23661
23662         * Shortcut.cs, FormWindowState.cs:
23663           - Fixed wrong values
23664
23665 2004-09-22 12:01  jackson
23666
23667         * Control.cs: Text is never null
23668
23669 2004-09-20 22:14  pbartok
23670
23671         * XplatUIWin32.cs:
23672           - Fixed accessibility level for Idle handler
23673
23674 2004-09-20 18:54  jackson
23675
23676         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23677           XplatUIX11.cs: New message loop that uses poll so we don't get a
23678           busy loop
23679
23680 2004-09-17 10:43  pbartok
23681
23682         * ScrollBar.cs:
23683           - Fixed behaviour of arrow buttons. Now properly behaves like
23684             Buttons (and like Microsoft's scrollbar arrow buttons)
23685
23686 2004-09-17 10:14  pbartok
23687
23688         * ScrollBar.cs:
23689           - Added missing release of keyboard/mouse capture
23690
23691 2004-09-17 06:18  jordi
23692
23693         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
23694           Theme.cs: Very early menu support
23695
23696 2004-09-16 17:45  pbartok
23697
23698         * XplatUIWin32.cs:
23699           - Fixed sending a window to the front
23700           - Added overload for SetWindowPos to avoid casting
23701
23702 2004-09-16 17:44  pbartok
23703
23704         * Control.cs:
23705           - Added SendToBack and BringToFront methods
23706
23707 2004-09-16 07:00  ravindra
23708
23709         * Copyright: Added Novell URL.
23710
23711 2004-09-16 07:00  ravindra
23712
23713         * ToolBar.cs: Invalidate should be done before redrawing.
23714
23715 2004-09-15 21:19  ravindra
23716
23717         * ColumnHeaderStyle.cs: Enum for ListView Control.
23718
23719 2004-09-15 21:18  ravindra
23720
23721         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
23722           ListView Control.
23723
23724 2004-09-13 18:26  jackson
23725
23726         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
23727           properly
23728
23729 2004-09-13 18:13  jackson
23730
23731         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
23732           a second thread and post messages into the main threads message
23733           queue. This makes timing much more consistent. Both win2K and XP
23734           have a minimum timer value of 15 milliseconds, so we now do this
23735           too.
23736
23737 2004-09-13 15:18  pbartok
23738
23739         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23740           XplatUIX11.cs:
23741           - Added Z-Ordering methods
23742
23743 2004-09-13 10:56  pbartok
23744
23745         * Form.cs:
23746           - Fixed #region names
23747           - Moved properties and methods into their proper #regions
23748
23749 2004-09-13 10:51  pbartok
23750
23751         * Form.cs:
23752           - Added Accept and CancelButton properties
23753           - Added ProcessDialogKey() method
23754
23755 2004-09-13 08:18  pbartok
23756
23757         * IWindowTarget.cs:
23758           - Initial check-in
23759
23760 2004-09-10 21:50  pbartok
23761
23762         * Control.cs:
23763           - Added DoDragDrop() [incomplete]
23764           - Properly implemented 'Visible' handling
23765           - Added SetVisibleCore()
23766           - Implemented FindChildAtPoint()
23767           - Implemented GetContainerControl()
23768           - Implemented Hide()
23769
23770 2004-09-10 19:28  pbartok
23771
23772         * Control.cs:
23773           - Moved methods into their appropriate #regions
23774           - Reordered methods within regions alphabetically
23775
23776 2004-09-10 18:57  pbartok
23777
23778         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23779           - Added method to retrieve text from window
23780
23781 2004-09-10 18:56  pbartok
23782
23783         * Control.cs:
23784           - Moved some internal functions into the internal region
23785           - Implemented FontHeight
23786           - Implemented RenderRightToLeft
23787           - Implemented ResizeRedraw
23788           - Implemented ShowFocusCues
23789           - Implemented ShowKeyboardCues
23790           - Implemented FromChildHandle
23791           - Implemented FromHandle
23792           - Implemented IsMnemonic
23793           - Implemented ReflectMessage
23794           - All public and protected Static Methods are now complete
23795
23796 2004-09-10 16:54  pbartok
23797
23798         * Control.cs:
23799           - Implemented remaining missing public instance properties
23800           - Alphabetized some out of order properties
23801
23802 2004-09-10 05:51  ravindra
23803
23804         * PictureBox.cs: Added a check for null image.
23805
23806 2004-09-10 00:59  jordi
23807
23808         * GroupBox.cs: remove cvs tag
23809
23810 2004-09-09 05:25  ravindra
23811
23812         * ToolBar.cs: Make redraw accessible from ToolBarButton.
23813
23814 2004-09-09 05:23  ravindra
23815
23816         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
23817           parent redraw.
23818
23819 2004-09-09 02:28  pbartok
23820
23821         * ThemeWin32Classic.cs:
23822           - Improve disabled string look
23823
23824 2004-09-09 01:15  jordi
23825
23826         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
23827           args and handler
23828
23829 2004-09-08 23:56  ravindra
23830
23831         * ItemBoundsPortion.cs: It's enum, not a class!
23832
23833 2004-09-08 23:47  ravindra
23834
23835         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
23836           Enums for Form.
23837
23838 2004-09-08 21:13  ravindra
23839
23840         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
23841           ListView control.
23842
23843 2004-09-08 21:03  ravindra
23844
23845         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
23846           avoid crash.
23847
23848 2004-09-08 21:01  ravindra
23849
23850         * ScrollableControl.cs: Removed unreachable code.
23851
23852 2004-09-08 06:45  jordi
23853
23854         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
23855
23856 2004-09-08 01:00  jackson
23857
23858         * XplatUIX11.cs: Only run the timers when updating the message
23859           queue. This effectively gives X messages a higher priority then
23860           timer messages. Timers still need love though
23861
23862 2004-09-07 14:01  jackson
23863
23864         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
23865           this for us and the handle is no longer valid.
23866
23867 2004-09-07 13:59  jackson
23868
23869         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
23870           loop that manages to not crash. TODO: Add poll and cleanup timers
23871
23872 2004-09-07 11:12  jordi
23873
23874         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
23875
23876 2004-09-07 03:40  jordi
23877
23878         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
23879           fixes, methods, multiple links
23880
23881 2004-09-06 06:55  jordi
23882
23883         * Control.cs: Caches ClientRectangle rectangle value
23884
23885 2004-09-05 02:03  jordi
23886
23887         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
23888           certain situations
23889
23890 2004-09-04 11:10  jordi
23891
23892         * Label.cs: Refresh when font changed
23893
23894 2004-09-02 16:24  pbartok
23895
23896         * Control.cs:
23897           - Added sanity check to creation of double buffer bitmap
23898
23899 2004-09-02 16:24  pbartok
23900
23901         * ButtonBase.cs:
23902           - Fixed selection of text color
23903           - Fixed handling of resize event; now properly recreates double
23904             buffering bitmap
23905           - Added missing assignment of TextAlignment
23906           - Added proper default for TextAlignment
23907
23908 2004-09-02 14:26  pbartok
23909
23910         * RadioButton.cs:
23911           - Added missing RadioButton.RadioButtonAccessibleObject class
23912
23913 2004-09-02 14:26  pbartok
23914
23915         * Control.cs:
23916           - Added missing Control.ControlAccessibleObject class
23917           - Started to implement Select()ion mechanisms, still very incomplete
23918
23919 2004-09-02 14:25  pbartok
23920
23921         * AccessibleObject.cs:
23922           - Added missing methods
23923
23924 2004-09-02 14:23  pbartok
23925
23926         * AccessibleNavigation.cs, AccessibleSelection.cs:
23927           - Initial check-in
23928
23929 2004-09-02 10:32  jordi
23930
23931         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
23932           pool for pens, brushes, and hatchbruses
23933
23934 2004-09-01 15:30  jackson
23935
23936         * StatusBar.cs: Fix typo
23937
23938 2004-09-01 14:44  pbartok
23939
23940         * RadioButton.cs:
23941           - Fixed state
23942
23943 2004-09-01 14:39  pbartok
23944
23945         * Button.cs, RadioButton.cs:
23946           - Functional initial check-in
23947
23948 2004-09-01 14:01  pbartok
23949
23950         * CheckBox.cs:
23951           - Added missing default
23952           - Added missing region mark
23953
23954 2004-09-01 09:10  jordi
23955
23956         * Label.cs: fixes method signatures, new methods, events, fixes
23957           autosize
23958
23959 2004-09-01 07:19  jordi
23960
23961         * Control.cs: Init string variables with an empty object
23962
23963 2004-09-01 04:20  jordi
23964
23965         * Control.cs: fires OnFontChanged event
23966
23967 2004-08-31 20:07  pbartok
23968
23969         * ButtonBase.cs:
23970           - Enabled display of strings
23971
23972 2004-08-31 20:05  pbartok
23973
23974         * Form.cs:
23975           - Added (partial) implementation of DialogResult; rest needs to be
23976             implemented when the modal loop code is done
23977
23978 2004-08-31 19:55  pbartok
23979
23980         * CheckBox.cs:
23981           - Fixed to match the removal of the needs_redraw concept
23982
23983 2004-08-31 19:55  pbartok
23984
23985         * ButtonBase.cs:
23986           - Removed the rather odd split between 'needs redraw' and redrawing
23987           - Now handles the events that require regeneration (ambient
23988             properties and size)
23989
23990 2004-08-31 19:41  pbartok
23991
23992         * Control.cs:
23993           - Added firing of BackColorChanged event
23994           - Added TopLevelControl property
23995           - Fixed handling of WM_ERASEBKGRND message
23996
23997 2004-08-31 12:49  pbartok
23998
23999         * ButtonBase.cs:
24000           - Removed debug
24001           - Minor fixes
24002
24003 2004-08-31 12:48  pbartok
24004
24005         * CheckBox.cs:
24006           - Finished (famous last words)
24007
24008 2004-08-31 04:35  jordi
24009
24010         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
24011           scrolling bugs, adds new methods
24012
24013 2004-08-30 14:42  pbartok
24014
24015         * CheckBox.cs:
24016           - Implemented CheckBox drawing code
24017
24018 2004-08-30 14:42  pbartok
24019
24020         * ButtonBase.cs:
24021           - Made Redraw() and CheckRedraw() virtual
24022           - Improved mouse up/down/move logic to properly track buttons
24023
24024 2004-08-30 09:44  pbartok
24025
24026         * CheckBox.cs:
24027           - Updated to fix broken build. Not complete yet.
24028
24029 2004-08-30 09:28  pbartok
24030
24031         * CheckState.cs:
24032           - Initial checkin
24033
24034 2004-08-30 09:17  pbartok
24035
24036         * Appearance.cs:
24037           - Initial check-in
24038
24039 2004-08-27 16:12  ravindra
24040
24041         * ToolBarButton.cs: Added TypeConverter attribute.
24042
24043 2004-08-27 16:07  ravindra
24044
24045         * ImageIndexConverter.cs: Implemented.
24046
24047 2004-08-27 14:17  pbartok
24048
24049         * Control.cs:
24050           - Removed unneeded stack vars
24051           - First attempt to fix sizing issues when layout is suspended
24052
24053 2004-08-25 15:35  jordi
24054
24055         * ScrollBar.cs: more fixes to scrollbar
24056
24057 2004-08-25 14:04  ravindra
24058
24059         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
24060           Added the missing divider code and grip for ToolBar Control.
24061
24062 2004-08-25 13:20  pbartok
24063
24064         * Control.cs:
24065           - Control now properly passes the ambient background color to child
24066             controls
24067
24068 2004-08-25 13:20  jordi
24069
24070         * ScrollBar.cs: small bug fix regarding bar position
24071
24072 2004-08-25 12:33  pbartok
24073
24074         * Timer.cs:
24075           - Now only calls SetTimer or KillTimer if the enabled state has
24076           changed
24077
24078 2004-08-25 12:33  pbartok
24079
24080         * XplatUIWin32.cs:
24081           - Fixed timer handling, now seems to work
24082           - Improved error message for window creation
24083
24084 2004-08-25 12:32  pbartok
24085
24086         * Control.cs:
24087           - Fixed generation of MouseUp message
24088
24089 2004-08-25 12:29  jordi
24090
24091         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
24092           and fixes for progressbar
24093
24094 2004-08-24 18:43  ravindra
24095
24096         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
24097           in ToolBar control.
24098
24099 2004-08-24 17:15  pbartok
24100
24101         * Panel.cs:
24102           - Added #region
24103           - Added missing events
24104           - Alphabetized
24105
24106 2004-08-24 17:14  pbartok
24107
24108         * StatusBar.cs, PictureBox.cs:
24109           - Now uses Control's CreateParams
24110
24111 2004-08-24 16:36  pbartok
24112
24113         * XplatUIX11.cs:
24114           - Fixed background color handling
24115           - Fixed sending of enter/leave events on a grab
24116
24117 2004-08-24 16:35  pbartok
24118
24119         * X11Structs.cs:
24120           - Refined definitions for CrossingEvent
24121
24122 2004-08-24 12:37  jordi
24123
24124         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
24125           formmating, methods signature, and adds missing events
24126
24127 2004-08-24 12:24  jordi
24128
24129         * Control.cs: fire OnEnabledChanged event
24130
24131 2004-08-24 11:17  pbartok
24132
24133         * XplatUIWin32.cs:
24134           - Implemented SetTimer() and KillTimer()
24135
24136 2004-08-24 11:16  pbartok
24137
24138         * XplatUIX11.cs:
24139           - Now uses Remove instead of Add to kill the timer
24140
24141 2004-08-24 10:16  jackson
24142
24143         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
24144           picture boxes in the theme now. Draw picture box borders and obey
24145           sizing modes
24146
24147 2004-08-24 05:49  jackson
24148
24149         * Timer.cs: Remove top secret debugging code
24150
24151 2004-08-24 05:34  jackson
24152
24153         * PictureBox.cs: Temp hack to make picture boxes draw their full
24154           image
24155
24156 2004-08-24 05:29  jackson
24157
24158         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24159           XplatUIX11.cs: Move timers to the driver level. On X they are
24160           queued by the driver and checked on idle.
24161
24162 2004-08-24 01:07  jackson
24163
24164         * XplatUIX11.cs: Use a queue for async messages instead of passing
24165           them as ClientMessages since that was totally broken. Also simply
24166           check for events and return an idle message if none are found. This
24167           gives us an idle handler, and prevents deadlocking when no messages
24168           are in the queue.
24169
24170 2004-08-23 18:19  ravindra
24171
24172         * XplatUIWin32.cs: Removed the unwanted destructor.
24173
24174 2004-08-23 17:27  pbartok
24175
24176         * ButtonBase.cs:
24177           - Finishing touches. Works now, just needs some optimizations.
24178
24179 2004-08-23 16:53  jordi
24180
24181         * ScrollBar.cs: small fix
24182
24183 2004-08-23 16:45  pbartok
24184
24185         * Application.cs:
24186           - Removed debug output
24187           - Simplifications
24188
24189 2004-08-23 16:43  jordi
24190
24191         * ScrollBar.cs: [no log message]
24192
24193 2004-08-23 16:10  pbartok
24194
24195         * Form.cs:
24196           - Fixed handling of WM_CLOSE message
24197           - Removed debug output
24198
24199 2004-08-23 16:09  pbartok
24200
24201         * Application.cs:
24202           - Added handling of Idle event
24203           - Added handling of form closing
24204           - Fixed reporting of MessageLoop property
24205           - Removed some unneeded code, should provide a bit of a speedup
24206
24207 2004-08-23 15:22  pbartok
24208
24209         * Control.cs:
24210           - Added InitLayout() method
24211           - Added code to properly perform layout when Anchor or Dock property
24212             is changed
24213           - Changed 'interpretation' of ResumeLayout. MS seems to have a
24214             LAMESPEC, tried to do it in a way that makes sense
24215
24216 2004-08-23 14:10  jordi
24217
24218         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
24219           properties and methods
24220
24221 2004-08-23 13:55  pbartok
24222
24223         * Control.cs:
24224           - Properly fixed Jordi's last fix
24225           - Now uses Cursor's Position property instead of calling XplatUI
24226           directly
24227
24228 2004-08-23 13:44  jordi
24229
24230         * PaintEventHandler.cs: Adding missing attribute
24231
24232 2004-08-23 13:39  pbartok
24233
24234         * Cursor.cs:
24235           - Implemented Position property
24236
24237 2004-08-23 13:39  pbartok
24238
24239         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24240           - Added method to move mouse cursor
24241
24242 2004-08-23 13:39  pbartok
24243
24244         * XplatUIX11.cs:
24245           - Fixed setting of background color
24246           - Added method to move mouse cursor
24247
24248 2004-08-23 13:16  jordi
24249
24250         * Control.cs: avoids null exception
24251
24252 2004-08-22 17:46  jackson
24253
24254         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
24255           PictureBox
24256
24257 2004-08-22 17:40  jackson
24258
24259         * XplatUIX11.cs: Add some missing locks
24260
24261 2004-08-22 15:10  pbartok
24262
24263         * Control.cs, Form.cs:
24264           - Removed OverlappedWindow style from Control, instead it's default
24265             now is child
24266           - Made form windows OverlappedWindow by default
24267
24268 2004-08-22 13:34  jackson
24269
24270         * ScrollBar.cs: Update the position through the Value property so
24271           the OnValueChanged event is raised.
24272
24273 2004-08-22 12:04  pbartok
24274
24275         * SWF.csproj:
24276           - Added Cursor.cs and UserControl.cs
24277
24278 2004-08-22 12:03  pbartok
24279
24280         * Cursor.cs:
24281           - Started implementation, not usable yet
24282
24283 2004-08-22 12:00  pbartok
24284
24285         * UserControl.cs:
24286           - Implemented UserControl (complete)
24287
24288 2004-08-21 19:20  ravindra
24289
24290         * ToolBar.cs: Correcting the formatting mess of VS.NET.
24291
24292 2004-08-21 18:49  ravindra
24293
24294         * ToolBar.cs: Probably this completes the missing attributes in
24295           toolbar control.
24296
24297 2004-08-21 18:03  ravindra
24298
24299         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
24300           Fixed toolbar control signatures.
24301
24302 2004-08-21 16:32  pbartok
24303
24304         * LinkLabel.cs:
24305           - Signature Fixes
24306
24307 2004-08-21 16:30  pbartok
24308
24309         * Label.cs:
24310           - Signature fixes
24311
24312 2004-08-21 16:19  pbartok
24313
24314         * Control.cs, Label.cs:
24315           - Signature fixes
24316
24317 2004-08-21 15:57  pbartok
24318
24319         * ButtonBase.cs:
24320           - Added loads of debug output for development
24321           - Fixed typo in method name
24322
24323 2004-08-21 15:52  pbartok
24324
24325         * ToolBarButtonClickEventArgs.cs:
24326           - Added missing base class
24327
24328 2004-08-21 14:53  pbartok
24329
24330         * Control.cs:
24331           - Updated to match new GrabWindow signature
24332
24333 2004-08-21 14:51  pbartok
24334
24335         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24336           - Added method to get default display size
24337
24338 2004-08-21 14:23  pbartok
24339
24340         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24341           - Added method to query current grab state
24342           - Added argument to allow confining a grab to a window
24343
24344 2004-08-21 14:22  pbartok
24345
24346         * Keys.cs:
24347           - Added [Flags] attribute so that modifiers can be used in bitwise
24348           ops
24349
24350 2004-08-21 14:21  pbartok
24351
24352         * TrackBar.cs, ScrollBar.cs:
24353           - Replaced direct XplatUI calls with their Control counterpart
24354
24355 2004-08-21 13:32  pbartok
24356
24357         * Control.cs:
24358           - Implemented Created property
24359
24360 2004-08-21 13:28  pbartok
24361
24362         * Control.cs:
24363           - Implemented ContainsFocus
24364
24365 2004-08-21 13:26  pbartok
24366
24367         * Control.cs:
24368           - Implemented CausesValidation
24369
24370 2004-08-21 13:21  pbartok
24371
24372         * Control.cs:
24373           - Implemented CanFocus
24374           - Implemented CanSelect
24375           - Implemented Capture
24376
24377 2004-08-21 12:35  pbartok
24378
24379         * XplatUIWin32.cs:
24380           - Fixed bug with Async message handling
24381           - Implemented getting the ModifierKeys
24382
24383 2004-08-21 12:32  jackson
24384
24385         * AsyncMethodResult.cs: Make sure we have the mutex before we
24386           release it. Fixes BeginInvoke on windows
24387
24388 2004-08-21 11:31  pbartok
24389
24390         * XplatUIWin32.cs, XplatUIX11.cs:
24391           - Drivers now return proper mouse state
24392
24393 2004-08-21 10:54  jackson
24394
24395         * Control.cs: Implement EndInvoke
24396
24397 2004-08-21 10:48  jackson
24398
24399         * Timer.cs: Remove unneeded finalizer
24400
24401 2004-08-20 19:52  ravindra
24402
24403         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
24404           in mouse event handling in the ToolBar control.
24405
24406 2004-08-20 19:50  ravindra
24407
24408         * ImageList.cs: Changed draw method to use the arguments passed in
24409           to draw the image.
24410
24411 2004-08-20 18:58  pbartok
24412
24413         * XplatUIStructs.cs:
24414           - Added private message for async communication
24415
24416 2004-08-20 17:38  ravindra
24417
24418         * Control.cs: Made RightToLeft property virtual and removed a
24419           Console.WriteLine.
24420
24421 2004-08-20 14:39  jordi
24422
24423         * ThemeGtk.cs: use style_attach
24424
24425 2004-08-20 14:39  pbartok
24426
24427         * XplatUIWin32.cs:
24428           - Added jackson's Async code from X11 to Win32
24429
24430 2004-08-20 14:09  pbartok
24431
24432         * SWF.csproj:
24433           - Added all new files
24434
24435 2004-08-20 14:09  pbartok
24436
24437         * Control.cs:
24438           - Added call to set window background color
24439
24440 2004-08-20 14:03  pbartok
24441
24442         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24443           - Added method for setting the window background
24444
24445 2004-08-20 14:02  pbartok
24446
24447         * XplatUIWin32.cs:
24448           - Added method for setting the background color
24449           - Added handling for erasing the window background
24450
24451 2004-08-20 13:45  jordi
24452
24453         * TrackBar.cs: fixes timer, new properties and methods
24454
24455 2004-08-20 13:34  jackson
24456
24457         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
24458           correct thread
24459
24460 2004-08-20 13:22  jackson
24461
24462         * Timer.cs: Timer Tick events are now handed through Controls Async
24463           mechanism so the callbacks are executed in the same thread as X
24464
24465 2004-08-20 13:19  jackson
24466
24467         * XplatUIDriver.cs: Expose functionality to send async messages
24468           through the driver
24469
24470 2004-08-20 13:18  jackson
24471
24472         * Control.cs: Implement Begininvoke
24473
24474 2004-08-20 13:14  jackson
24475
24476         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
24477           messages through the driver
24478
24479 2004-08-20 13:12  jackson
24480
24481         * XplatUIX11.cs: Lock before all X operations. Also added Async
24482           method functionality through XSendEvent
24483
24484 2004-08-20 13:11  jackson
24485
24486         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
24487           This will screw up on 64 bit systems)
24488
24489 2004-08-20 13:10  jackson
24490
24491         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
24492           Async messages through X/Win32
24493
24494 2004-08-19 19:39  pbartok
24495
24496         * XplatUIX11.cs:
24497           - Updated code to match new HandleData.DeviceContext type
24498
24499 2004-08-19 19:38  pbartok
24500
24501         * HandleData.cs:
24502           - Made DeviceContext a generic object to allow usage from various
24503           drivers
24504           - Added support for queueing Windows messages
24505
24506 2004-08-19 19:37  pbartok
24507
24508         * XplatUIWin32.cs:
24509           - Added generation of MouseEnter, MouseLeave and MouseHover events
24510           - Added cleanup on EndPaint
24511
24512 2004-08-19 19:17  pbartok
24513
24514         * Control.cs:
24515           - Added handling of WM_MOUSEHOVER
24516           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
24517           code
24518
24519 2004-08-19 18:55  jordi
24520
24521         * ThemeGtk.cs: fixes button order
24522
24523 2004-08-19 18:12  jordi
24524
24525         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
24526
24527 2004-08-19 17:09  pbartok
24528
24529         * Control.cs:
24530           - Added Right property
24531           - Added RightToLeft property
24532
24533 2004-08-19 16:27  jordi
24534
24535         * ThemeGtk.cs: experimental GTK theme support
24536
24537 2004-08-19 16:26  jordi
24538
24539         * ITheme.cs, Theme.cs: move themes from an interface to a class
24540
24541 2004-08-19 16:25  jordi
24542
24543         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
24544           theme enhancaments
24545
24546 2004-08-19 16:04  pbartok
24547
24548         * XplatUIX11.cs:
24549           - Added colormap basics
24550           - Added a way to re-initialize with a different display handle
24551           - Fixed setting of the window background color
24552           - Added various X11 imports related to colors and colormaps
24553
24554 2004-08-19 15:51  pbartok
24555
24556         * X11Structs.cs:
24557           - Removed packing hints (Paolo suggested this a while back)
24558           - fixed colormap type
24559           - Added default Atom types
24560           - Added Screen and color structs and enums
24561
24562 2004-08-19 15:39  pbartok
24563
24564         * ImageList.cs:
24565           - Added missing Draw() method
24566           - Added missing RecreateHandle event
24567
24568 2004-08-19 15:30  pbartok
24569
24570         * Form.cs:
24571           - Added handling of WM_CLOSE
24572
24573 2004-08-18 13:16  jordi
24574
24575         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
24576           a table
24577
24578 2004-08-18 09:56  jordi
24579
24580         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
24581
24582 2004-08-17 15:31  ravindra
24583
24584         * SWF.csproj: Updated project.
24585
24586 2004-08-17 15:25  pbartok
24587
24588         * Control.cs:
24589           - Drawing improvement; don't call UpdateBounds if we are not visible
24590             (or have been minimized)
24591
24592 2004-08-17 15:24  pbartok
24593
24594         * XplatUIWin32.cs:
24595           - Finished IsVisible
24596           - Added Win32GetWindowPlacement
24597
24598 2004-08-17 15:08  jackson
24599
24600         * Panel.cs: Initial checkin of the Panel
24601
24602 2004-08-17 14:25  pbartok
24603
24604         * Control.cs:
24605           - Fixed broken handling of default window sizes
24606
24607 2004-08-17 13:29  jackson
24608
24609         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
24610           has a large startup time.
24611
24612 2004-08-17 10:25  jackson
24613
24614         * HandleData.cs: union areas properly
24615
24616 2004-08-17 10:12  jackson
24617
24618         * HandleData.cs: union areas properly
24619
24620 2004-08-16 20:00  ravindra
24621
24622         * ToolBar.cs, ToolBarButton.cs: Added attributes.
24623
24624 2004-08-16 18:48  ravindra
24625
24626         * ToolBar.cs: Added attributes.
24627
24628 2004-08-16 17:17  ravindra
24629
24630         * SWF.csproj: Updated project.
24631
24632 2004-08-16 17:16  jackson
24633
24634         * XplatUIX11.cs: Check for more expose events before sending a
24635           WM_PAINT so they can all be grouped together. This makes dragging a
24636           window across another window redraw in a sane way.
24637
24638 2004-08-16 15:47  pbartok
24639
24640         * Control.cs:
24641           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
24642             support OnMouseEnter/Leave()
24643           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
24644             exposure handling
24645
24646 2004-08-16 15:46  pbartok
24647
24648         * XplatUIStructs.cs, XplatUIX11.cs:
24649           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
24650           OnMouseEnter/Leave()
24651
24652 2004-08-16 15:34  jackson
24653
24654         * XplatUIX11.cs: Group multiple expose events in HandleData, make
24655           sure messages get the message field set to WM_NULL if they are not
24656           handled.
24657
24658 2004-08-16 15:24  jackson
24659
24660         * HandleData.cs: HandleData is used for storing message information
24661           for window handles
24662
24663 2004-08-15 17:23  ravindra
24664
24665         * ColorDepth.cs: Added attribute.
24666
24667 2004-08-15 17:23  ravindra
24668
24669         * SWF.csproj: Updated project for ToolBar Control.
24670
24671 2004-08-15 17:20  ravindra
24672
24673         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
24674           control and also dos2unix format.
24675
24676 2004-08-15 17:13  ravindra
24677
24678         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
24679           ToolBarButtonClickEventArgs.cs,
24680           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
24681           ToolBarTextAlign.cs: First Implementation of ToolBar control.
24682
24683 2004-08-15 15:31  pbartok
24684
24685         * ButtonBase.cs:
24686           - First (mostly) working version
24687
24688 2004-08-13 16:15  pbartok
24689
24690         * Control.cs:
24691           - Fixed Anchor default
24692
24693 2004-08-13 15:43  pbartok
24694
24695         * Control.cs:
24696           - Changed GetCursorPos signature
24697
24698 2004-08-13 15:42  pbartok
24699
24700         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24701           - Changed signature for GetCursorPos
24702
24703 2004-08-13 15:25  pbartok
24704
24705         * XplatUIX11.cs:
24706           - Cleanup
24707           - Fixed resizing/exposure handling
24708
24709 2004-08-13 15:22  jordi
24710
24711         * ThemeWin32Classic.cs: removes redundant code and fixes issues
24712           with tickposition
24713
24714 2004-08-13 14:55  jordi
24715
24716         * TrackBar.cs: change from wndproc to events
24717
24718 2004-08-13 13:00  jordi
24719
24720         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24721           XplatUIX11.cs: implements PointToClient (ScreenToClient)
24722
24723 2004-08-13 12:53  pbartok
24724
24725         * XplatUIWin32.cs:
24726           - Changed GetWindowPos to also provide client area size
24727           - Fixed broken prototypes for several win32 functions
24728
24729 2004-08-13 12:53  pbartok
24730
24731         * XplatUI.cs, XplatUIDriver.cs:
24732           - Changed GetWindowPos to also provide client area size
24733
24734 2004-08-13 12:52  pbartok
24735
24736         * XplatUIX11.cs:
24737           - Added generation of WM_POSCHANGED
24738           - Changed GetWindowPos to also provide client area size
24739
24740 2004-08-13 12:52  pbartok
24741
24742         * Control.cs:
24743           - Added Dispose() and destructor
24744           - Fixed resizing and bounds calculation
24745           - Fixed Layout
24746           - Added memory savings for invisible windows
24747
24748 2004-08-13 12:46  jordi
24749
24750         * TrackBar.cs: adds timer and grap window
24751
24752 2004-08-13 10:25  jackson
24753
24754         * Timer.cs: SWF Timer
24755
24756 2004-08-12 16:59  pbartok
24757
24758         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24759           - Implemented method to get current mouse position
24760
24761 2004-08-12 14:29  jordi
24762
24763         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
24764           enhancement, fix mouse problems, highli thumb, etc
24765
24766 2004-08-12 13:31  pbartok
24767
24768         * Control.cs:
24769           - Fixed Anchoring bugs
24770
24771 2004-08-12 13:01  jackson
24772
24773         * StatusBar.cs: Don't forget things
24774
24775 2004-08-12 12:54  jackson
24776
24777         * ThemeWin32Classic.cs: Handle owner draw status bars
24778
24779 2004-08-12 12:54  jackson
24780
24781         * StatusBar.cs: Implement missing properties, events, and methods.
24782           Handle mouse clicking
24783
24784 2004-08-12 10:19  jackson
24785
24786         * StatusBarPanelClickEventArgs.cs,
24787           StatusBarPanelClickEventHandler.cs: Classes for handling status
24788           bar panel click events
24789
24790 2004-08-12 10:10  jackson
24791
24792         * Control.cs: Add missing properties
24793
24794 2004-08-12 09:46  pbartok
24795
24796         * BindingsManagerBase.cs:
24797           - Name changed to BindingManagerBase.cs
24798
24799 2004-08-12 09:25  jordi
24800
24801         * ScrollableControl.cs: calls ctrlbase instead of exeception
24802
24803 2004-08-11 16:28  pbartok
24804
24805         * InputLanguageChangingEventArgs.cs:
24806           - Never check in before compiling. Fixes the last check-in
24807
24808 2004-08-11 16:26  pbartok
24809
24810         * InputLanguageChangingEventArgs.cs:
24811           - More signature fixes
24812
24813 2004-08-11 16:20  pbartok
24814
24815         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
24816           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
24817           ImageListStreamer.cs, InputLanguage.cs,
24818           InputLanguageChangedEventArgs.cs,
24819           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
24820           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
24821           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
24822           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24823           - Signature fixes
24824
24825 2004-08-11 16:16  pbartok
24826
24827         * Application.cs:
24828           - Fixed Signature
24829           - Added .Net 1.1 method
24830
24831 2004-08-11 15:25  pbartok
24832
24833         * SWF.csproj:
24834           - Fixed BindingManagerBase.cs filename
24835
24836 2004-08-11 15:22  pbartok
24837
24838         * BindingManagerBase.cs:
24839           - Was checked in with wrong filename
24840
24841 2004-08-11 14:50  pbartok
24842
24843         * SWF.csproj:
24844           - Updated
24845
24846 2004-08-11 13:41  jordi
24847
24848         * XplatUIWin32.cs: Fixes ClientRect
24849
24850 2004-08-11 13:19  pbartok
24851
24852         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24853           XplatUIX11.cs:
24854           - We had SetWindowPos and MoveWindow to set window positions and
24855             size, removed MoveWindow. We have GetWindowPos, so it made sense to
24856             keep SetWindowPos as matching counterpart
24857           - Added some X11 sanity checking
24858
24859 2004-08-11 12:59  pbartok
24860
24861         * Control.cs:
24862           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
24863             (It seems that SetBounds is just a front for SetBoundsCore and
24864              SetBoundsCore updates the underlying window system and
24865              UpdateBounds is responsible for updating the variables associated
24866              with the Control and sending the events)
24867           - Major cleanup of Size handling; we now have two sizes, client_size
24868             and bounds. Bounds defines the window with decorations, client_size
24869             without them.
24870
24871 2004-08-11 12:55  pbartok
24872
24873         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24874           - Added method to calculate difference between decorated window and
24875             raw client area
24876
24877 2004-08-11 12:54  pbartok
24878
24879         * Label.cs:
24880           - Forcing redraw on resize
24881
24882 2004-08-11 11:43  pbartok
24883
24884         * ImageList.cs:
24885           - Removed disposing of the actual images when the list is disposed
24886
24887 2004-08-11 09:13  pbartok
24888
24889         * Control.cs:
24890           - Now properly reparents windows
24891
24892 2004-08-11 08:37  pbartok
24893
24894         * Control.cs:
24895           - Duh!
24896
24897 2004-08-11 07:47  pbartok
24898
24899         * Control.cs:
24900           - Rewrote the collection stuff. Might not be as fast now, not
24901             keeping the number of children around and accessible directly, but
24902             it's more straightforward
24903
24904 2004-08-11 07:44  pbartok
24905
24906         * AccessibleObject.cs:
24907           - Fixed to match ControlCollection rewrite
24908
24909 2004-08-11 07:43  pbartok
24910
24911         * ImageList.cs:
24912           - Added missing creation of the collection list
24913
24914 2004-08-10 20:08  jackson
24915
24916         * StatusBar.cs: Get the paint message from WndProc
24917
24918 2004-08-10 19:31  jackson
24919
24920         * ThemeWin32Classic.cs: Create Brushes as little as possible
24921
24922 2004-08-10 19:20  jackson
24923
24924         * UICues.cs: Add Flags attribute
24925
24926 2004-08-10 19:19  jackson
24927
24928         * StatusBarPanel.cs: Signature cleanup
24929
24930 2004-08-10 19:10  jackson
24931
24932         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
24933           Initial implementation of status bar item drawing
24934
24935 2004-08-10 17:27  jordi
24936
24937         * TrackBar.cs: add missing methods, properties, and restructure to
24938           hide extra ones
24939
24940 2004-08-10 16:24  jackson
24941
24942         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
24943           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
24944           attribute
24945
24946 2004-08-10 13:21  jordi
24947
24948         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
24949           enhancements and standarize on win colors defaults
24950
24951 2004-08-10 12:52  jackson
24952
24953         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
24954           ThemeWin32Classic.cs: Implement DrawItem functionality
24955
24956 2004-08-10 12:47  jordi
24957
24958         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
24959
24960 2004-08-10 12:32  jordi
24961
24962         * Control.cs: throw ontextchange event
24963
24964 2004-08-10 11:43  pbartok
24965
24966         * Control.cs:
24967           - Added more to the still unfinished Dock/Anchor layout code
24968
24969 2004-08-10 11:39  pbartok
24970
24971         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24972           - Added GetWindowPos method
24973
24974 2004-08-10 11:36  pbartok
24975
24976         * XplatUIWin32.cs:
24977           - Implemented several methods
24978
24979 2004-08-10 09:47  jackson
24980
24981         * TrackBar.cs: Allow control to handle buffering
24982
24983 2004-08-10 09:41  jackson
24984
24985         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
24986
24987 2004-08-10 09:24  jackson
24988
24989         * Label.cs, LinkLabel.cs: Let Control handle buffering.
24990
24991 2004-08-10 09:09  jackson
24992
24993         * StatusBar.cs: Let Control handle all the buffering.
24994
24995 2004-08-10 09:08  jackson
24996
24997         * Control.cs: Control will now handle the buffering code, so each
24998           control does not have to implement this.
24999
25000 2004-08-10 08:34  jackson
25001
25002         * XplatUIDriver.cs: Use default colors from the theme
25003
25004 2004-08-09 17:12  pbartok
25005
25006         * ImageList.cs:
25007           - Fixed several bugs Ravindra pointed out
25008
25009 2004-08-09 16:11  pbartok
25010
25011         * Control.cs:
25012           - Added incomplete dock layout code
25013           - Added support for mouse wheel
25014
25015 2004-08-09 16:09  pbartok
25016
25017         * XplatUIX11.cs:
25018           - Added handling for middle and right mousebutton
25019           - Added handling for mouse wheel
25020           - Added handling for key state and mouse state and position
25021           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
25022           messages
25023
25024 2004-08-09 15:40  jackson
25025
25026         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
25027           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
25028           checkin
25029
25030 2004-08-09 15:37  jackson
25031
25032         * StatusBar.cs: Initial implementation of StatusBar
25033
25034 2004-08-09 15:36  jackson
25035
25036         * ITheme.cs: Add support for drawing status bar and getting status
25037           bar item sizes
25038
25039 2004-08-09 15:35  pbartok
25040
25041         * MouseButtons.cs:
25042           - Fixed values
25043
25044 2004-08-09 15:34  jackson
25045
25046         * ThemeWin32Classic.cs: Add support for drawing status bar and get
25047           status bar item sizes
25048
25049 2004-08-09 15:21  jackson
25050
25051         * ThemeWin32Classic.cs: Use known colors for default control
25052           colours
25053
25054 2004-08-09 15:12  jackson
25055
25056         * ThemeWin32Classic.cs: Make the default font static, it is static
25057           in control so this doesn't change functionality and creating fonts
25058           is sloooooow.
25059
25060 2004-08-09 14:56  pbartok
25061
25062         * X11Structs.cs:
25063           - Added GrabMode enum
25064
25065 2004-08-09 14:55  pbartok
25066
25067         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25068           - Removed Run method, was only required for initial development
25069
25070 2004-08-09 14:51  pbartok
25071
25072         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
25073           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
25074           capture
25075
25076 2004-08-09 13:48  pbartok
25077
25078         * XplatUIX11.cs:
25079           - Fixed default sizing for child windows
25080
25081 2004-08-09 12:56  pbartok
25082
25083         * XplatUIX11.cs:
25084           - Added generation of WM_DESTROY message
25085           - Added handling of window manager induced shutdown
25086
25087 2004-08-09 11:31  jackson
25088
25089         * ThemeWin32Classic.cs: New names for control properties
25090
25091 2004-08-09 11:25  jackson
25092
25093         * Control.cs: Use new color names
25094
25095 2004-08-09 11:02  jackson
25096
25097         * XplatUI.cs: Get default window properties from the theme
25098
25099 2004-08-09 11:01  jackson
25100
25101         * ITheme.cs: The theme engine now controls default window
25102           properties
25103
25104 2004-08-09 11:00  jackson
25105
25106         * ThemeWin32Classic.cs: Add default window color properties
25107
25108 2004-08-09 10:17  jackson
25109
25110         * ThemeWin32Classic.cs: Use correct default back color
25111
25112 2004-08-09 10:05  jackson
25113
25114         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
25115           the theme now.
25116
25117 2004-08-09 09:56  jackson
25118
25119         * XplatUI.cs: Remove defaults, these are handled by the theme now.
25120
25121 2004-08-09 09:54  jackson
25122
25123         * Control.cs: Get default properties from the theme.
25124
25125 2004-08-09 09:53  jackson
25126
25127         * ITheme.cs: Themes now handle default control properties
25128
25129 2004-08-09 09:53  jackson
25130
25131         * ThemeWin32Classic.cs: Themes now handle default control
25132           properties so coloring will be consistent
25133
25134 2004-08-08 16:54  jordi
25135
25136         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
25137
25138 2004-08-08 15:08  jordi
25139
25140         * XplatUIX11.cs: fixes keyboard crash
25141
25142 2004-08-08 13:47  jordi
25143
25144         * Label.cs: add cvs header info
25145
25146 2004-08-08 12:09  jackson
25147
25148         * ThemeWin32Classic.cs: Add pen_buttonface
25149
25150 2004-08-08 11:52  jordi
25151
25152         * Label.cs, LinkLabel.cs: [no log message]
25153
25154 2004-08-08 11:34  jordi
25155
25156         * ThemeWin32Classic.cs: Use Windows Standard Colours
25157
25158 2004-08-07 17:32  jordi
25159
25160         * TrackBar.cs: throw exceptions of invalid enums values
25161
25162 2004-08-07 17:31  jordi
25163
25164         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
25165           draw method name
25166
25167 2004-08-07 16:56  jackson
25168
25169         * HorizontalAlignment.cs: Initial checkin
25170
25171 2004-08-07 13:16  jordi
25172
25173         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
25174           methods
25175
25176 2004-08-07 13:05  jordi
25177
25178         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
25179           GetSysColor defines
25180
25181 2004-08-06 18:01  pbartok
25182
25183         * ThemeWin32Classic.cs:
25184           - Fixed some rounding issues with float/int
25185
25186 2004-08-06 18:00  jackson
25187
25188         * DockStyle.cs, AnchorStyles.cs:
25189
25190                   Add flags and serializable attributes.
25191
25192 2004-08-06 17:46  pbartok
25193
25194         * XplatUIX11.cs:
25195           - Implemented GetParent
25196
25197 2004-08-06 17:18  pbartok
25198
25199         * TrackBar.cs:
25200           - Fixed some rounding issues with float/int
25201
25202 2004-08-06 17:17  pbartok
25203
25204         * X11Structs.cs, XplatUIX11.cs:
25205           - Fixed Refresh and Invalidate
25206
25207 2004-08-06 15:30  pbartok
25208
25209         * Control.cs, X11Structs.cs, XplatUIX11.cs:
25210           - Fixed recursive loop when resizing
25211           - Improved/fixed redrawing on expose messages
25212
25213 2004-08-06 09:53  jordi
25214
25215         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
25216           keyboard navigation
25217
25218 2004-08-06 08:02  pbartok
25219
25220         * X11Structs.cs, XplatUIX11.cs:
25221           - Fixed reparenting
25222           - Fixed window border creation
25223
25224 2004-08-05 15:38  pbartok
25225
25226         * XplatUIX11.cs:
25227           - Attempted fix for reparenting problems
25228
25229 2004-08-04 15:14  pbartok
25230
25231         * Control.cs:
25232           - Fixed Invalidation bug (calculated wrong client area)
25233           - Added ClientSize setter
25234
25235 2004-08-04 15:13  pbartok
25236
25237         * Form.cs:
25238           - Added AutoScale properties
25239
25240 2004-08-04 15:13  pbartok
25241
25242         * SWF.csproj:
25243           - Added latest files
25244
25245 2004-08-04 14:11  pbartok
25246
25247         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25248           XplatUIX11.cs:
25249           - Added Invalidate handling
25250
25251 2004-08-03 17:09  jordi
25252
25253         * XplatUIDriver.cs: fixes spelling mistake
25254
25255 2004-07-27 09:53  jordi
25256
25257         * TrackBar.cs: fixes trackbar events, def classname, methods
25258           signature
25259
25260 2004-07-27 09:29  jordi
25261
25262         * ScrollBar.cs: fixes scrollbar events
25263
25264 2004-07-27 04:38  jordi
25265
25266         * Control.cs: changes to be able to run winforms samples
25267
25268 2004-07-26 11:42  jordi
25269
25270         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
25271           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
25272
25273 2004-07-26 05:41  jordi
25274
25275         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
25276           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
25277           implementation
25278
25279 2004-07-22 09:22  jordi
25280
25281         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
25282           check link overlapping, implement events, and fixes
25283
25284 2004-07-21 10:28  jordi
25285
25286         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
25287
25288 2004-07-21 10:19  jordi
25289
25290         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
25291           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
25292           LinkLabelLinkClickedEventArgs.cs,
25293           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
25294           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
25295           implementation
25296
25297 2004-07-19 13:09  jordi
25298
25299         * Control.cs, Label.cs: label control re-written: added missing
25300           functionlity, events, and properties
25301
25302 2004-07-19 10:49  jordi
25303
25304         * Control.cs: fixes SetBounds logic
25305
25306 2004-07-19 01:29  jordi
25307
25308         * Control.cs: Call RefreshWindow only if the window has created
25309
25310 2004-07-15 14:05  pbartok
25311
25312         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
25313           - Implemented ImageList and ImageList.ImageCollection classes
25314           - Added ColorDepth enumeration
25315           - Updated SWF VS.Net project
25316
25317 2004-07-15 11:06  jordi
25318
25319         * XplatUIStructs.cs: added MsgButons enum
25320
25321 2004-07-15 11:03  jordi
25322
25323         * Control.cs: added basic mouse handeling events
25324
25325 2004-07-15 03:38  jordi
25326
25327         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
25328           Vertical TrackBar control implementation
25329
25330 2004-07-13 09:33  jordi
25331
25332         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
25333
25334 2004-07-13 09:31  jordi
25335
25336         * Control.cs, Form.cs: commit: new properties and fixes form size
25337           problems
25338
25339 2004-07-09 14:13  miguel
25340
25341         * ProgressBar.cs: Spelling
25342
25343 2004-07-09 11:25  pbartok
25344
25345         * ProgressBar.cs:
25346           - Removed usage of Rectangle for drawing. Miguel pointed out it's
25347           faster
25348
25349 2004-07-09 11:17  miguel
25350
25351         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25352
25353                 * ProgressBar.cs: Fixed spelling for `block'
25354
25355                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
25356                 style guidelines.
25357
25358                 Avoid using the += on rect.X, that exposed a bug in the compiler.
25359
25360 2004-07-08 23:21  pbartok
25361
25362         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
25363           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
25364           BaseCollection.cs, Binding.cs, BindingContext.cs,
25365           BindingMemberInfo.cs, BindingsCollection.cs,
25366           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
25367           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
25368           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
25369           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
25370           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
25371           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
25372           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
25373           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
25374           FrameStyle.cs, GiveFeedbackEventArgs.cs,
25375           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
25376           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
25377           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
25378           InputLanguageChangedEventArgs.cs,
25379           InputLanguageChangedEventHandler.cs,
25380           InputLanguageChangingEventArgs.cs,
25381           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
25382           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
25383           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
25384           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
25385           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
25386           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
25387           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
25388           QueryAccessibilityHelpEventArgs.cs,
25389           QueryAccessibilityHelpEventHandler.cs,
25390           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
25391           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
25392           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
25393           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
25394           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
25395           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
25396           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
25397           XplatUIX11.cs, lang.cs:
25398           - Initial check-in
25399
25400