ad72616008b58a99ff11a73752933210107b9f87
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
2
3         * PaddingConverter.cs: Added.
4
5 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6         
7         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
8         ShowPanels is false (fixes #80600). Only draw up to 127 characters
9         of text (fixes #80601). For panels clip the text to draw to the
10         panel (fixes #80603).
11
12 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
13
14         * ComboBox.cs: Fixed implementation of ResetText.
15
16 2007-01-25  Jackson Harper  <jackson@ximian.com>
17
18         * TextControl.cs: For the last char of a line we need to use the
19         line size, not that chars width, since it won't actually be
20         computed since the right side of a char is based on the start of
21         the left side of the next char, and the next char does not exist.
22
23 2007-01-25  Chris Toshok  <toshok@ximian.com>
24
25         * Splitter.cs: fix the new unit tests, and reindent some switch
26         statements.
27
28 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
29
30         * ComboBox.cs: Implemented 2.0 methods and events.
31         * TextBoxBase.cs: Added OnTextUpdate, so that
32         ComboBox.ComboTextBox can inform ComboBox of it.
33
34 2007-01-25  Jackson Harper  <jackson@ximian.com>
35
36         * TextControl.cs: Respect ShowSelection when deciding whether or
37         not to display the caret, this allows comboboxes to have carets
38         when the combotextbox does not have focus.
39
40 2007-01-25  Jackson Harper  <jackson@ximian.com>
41
42         * TextControl.cs: Add a Suspend/Resume for updating, basically the
43         same as the Suspend/Resume for recalc, except this will do actual
44         Invalidates.
45         - New Undo manager, works much like the MS version.
46         - Implemented Redo
47         * TextBoxBase.cs: The Cut operation is undoable.
48
49 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
50         
51         * TextBoxBase.cs: Don't antialias text. Makes it look way better
52         on Windows (no difference on Linux).    
53
54 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
55
56         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
57         we don't want to activate any windows. Fixes #79433.
58
59 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
60
61         - ButtonBase.cs: Fix capitalization of parameter: disposing.
62         [Fixes bug #80609]
63
64 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
65
66         * FileDialog.cs:
67         - Move to using System.ComponentModel.EventHandlerList
68         - Replace Refresh with Invalidate
69         - Clear the mime filecache on closing
70         - Some other memory reducing work. After beeing closed FD now uses
71           only about 300 KB for the fdo mime stuff plus the memory of the
72           cached icons.
73         * Mime.cs: Changed coding style and removed unnecessary commented
74         code. Some more memory memory reducing work.
75
76 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
77
78         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
79         a few other missing 2.0 properties.
80         * Theme.cs: Added DrawFlatStyleComboBox.
81         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
82
83 2007-01-24  Chris Toshok  <toshok@ximian.com>
84
85         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
86         wake_waiting flag, not just when there's data to be read.  if we
87         don't, then future wakeup's won't reach us and we'll be doomed to
88         wait for the entire 1 second timeout forever (unless there are X
89         events to be had).
90
91 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
92
93         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
94         until you pass Items.Count, not Items.Count - 1 like 1.1.
95
96 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
97
98         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
99
100 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
101
102         * ToolStripContainer.cs: The recent Dock fix exposed that I was
103         adding the panels in the wrong order.
104
105 2007-01-24  Jackson Harper  <jackson@ximian.com>
106
107         * TextBoxBase.cs: When we move the caret we also need to move the
108         selection, this fixes some random crashing after doing select
109         text, unselect, delete a char, paste.
110
111 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
112
113         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
114
115 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
116
117         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
118         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
119         * ToolBar.cs: Force redraw in BackgroundImageChanged.
120
121 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
122
123         * ToolBar.cs:
124         - Implement support for vertical toolbars. Fixes #80539;
125         - Call LayoutToolBar when resize, it fix some other problems in layout.
126         - Rename requested_height to requested_size, as we can have width on it
127         when toolbar is vertical.
128         - Create a private property "Vertical" that uses Dock to verify when 
129         toolbar is vertical or not.
130         - Set ControlStyles when change Dock property.
131         - Refactory in LayoutToolBar to have better variables names and to support
132         vertical toolbars.
133         - Fixes default value for ButtonSize when button count is equal zero, size
134         must be (39, 36) test case writed.
135
136 2007-01-23  Chris Toshok  <toshok@ximian.com>
137
138         * Control.cs: fix the checks so that they work correctly for mdi
139         parents/children.
140
141 2007-01-23  Chris Toshok  <toshok@ximian.com>
142
143         * Control.cs: ControlCollection seems to have super-secret
144         abstraction breaking knowledge of Mdi containers.  allow MdiClient
145         to add toplevel controls.
146
147 2007-01-23  Chris Toshok  <toshok@ximian.com>
148
149         * Control.cs: throw an ArgumentException if a toplevel control is
150         added to our control collection from ControlCollection.Add, as
151         well as from ControlCollection.IList.Add.  This fixes the
152         ControlSetTopLevelTest.TestTopLevelAdd unit test.
153
154         Also, in ControlCollection.IList.Add, don't through an
155         ArgumentNullException, throw an ArgumentException, when value ==
156         null.  This matches MS.
157
158 2007-01-23  Chris Toshok  <toshok@ximian.com>
159
160         * BindingSource.cs: initial, incomplete, implementation of
161         BindingSource.
162
163 2007-01-23  Jackson Harper  <jackson@ximian.com>
164
165         * TextControl.cs:
166         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
167         that I can fix a broken unit test (TextBoxTest::ClearUndo)
168         
169 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
170
171         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
172
173 2007-01-23  Andreia Gaita  <avidigal@novell.com>
174
175         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
176         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
177         IndexOfKey() for 2.0
178
179 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
180
181         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
182         to prevent it from changing z-order.
183         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
184         leave UI updates in MdiWindowManager.
185         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
186         1 sized (NC handling goes weird on Linux otherwise).
187         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
188         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
189         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
190         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
191         and SetWindowState(s) to allow for changing the size of an activated child
192         before activating it (reduces a lot of flicker).
193
194 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
195
196         * Form.cs: Changing FormBorderStyle has different semantics based
197         on whether the Form is visible or not.  If not visible, don't change
198         the Size.  But InvalidateNC needs to be called to force the window
199         to pick up the changes and redraw itself.  [Fixes bug #80574]
200
201 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
202
203         [Moma work]
204         * ContainerControl.cs: ProcessCmdKey.
205         * ErrorProvider.cs: new constructor.
206         * Form.cs: fix AutoValidateEvent compiler warning.
207         * Label.cs: fix OnAutoSizeChanged compiler warning.
208         * MenuStrip.cs: fix CanOverflow compiler warning.
209         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
210         * TextBox.cs: Dispose.
211         * ToolStrip.cs: CanOverflow, re-enable double buffering.
212         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
213         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
214         * ToolStripItem.cs: Overflow, RightToLeft properties.
215
216 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
217
218         * Form.cs: Move the layout of the main form to MdiWindowManager.
219         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
220         do a layout of the main window to update MdiClient's client area to
221         the right area. Fixes #80533. Remove the calculation of nc size, 
222         it was just wrong and the correct one is the same as for 
223         InternalWindowManager. 
224
225 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
226
227         * Control.cs: Setting Anchor or Dock needs to reset the other
228         to its default.  [Fixes bug #80556]
229
230 2007-01-20  Chris Toshok  <toshok@ximian.com>
231
232         * CheckedListBox.cs: class status changes.
233
234         * ScrollableControl.cs: same.
235
236         * RichTextBox.cs: same.
237
238         * ContainerControl.cs: same.
239
240         * ListView.cs: same.
241
242         * NotifyIcon.cs: same.
243
244         * MenuStrip.cs: same.
245
246         * RadioButton.cs: same.
247
248         * CheckBox.cs: same.
249
250         * PrintPreviewDialog.cs: same.
251
252         * Form.cs: same.
253
254 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
255
256         * TreeNode.cs: Apply Alan's patch for Name property.
257
258 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
259         
260         * Form.cs: Implemented SizeGripStyle.
261         * SizeGrip.cs: Check for minimum and maximum size for the
262         control being resized and only resize if size has actually
263         changed.
264
265 2007-01-19  Chris Toshok  <toshok@ximian.com>
266
267         * DataGridColumnStyle.cs: stop setting _readonly in the
268         PropertyDescriptor setter.  fixes a unit test failure.
269
270         also, rename ParentReadOnly to TableStyleReadOnly, and have it
271         just consult our table style (if we have one).  We don't need to
272         consult the datagrid readonly attribute because that's passed in
273         as the _ro arg to Edit.  this simplifies things a little.
274         
275         * DataGrid.cs: use CurrentColumn instead of
276         current_cell.ColumnNumber just to simplify some of the code.
277
278         switch the order of some things in the CurrentCell setter to keep
279         the previous cell from getting a textbox again -
280         EnsureCellVisibility causes scrolling to happen, which calls Edit.
281         So we need to set the new cell before calling it.
282         
283         call Edit in OnEnter, as does Microsoft.
284         
285         also, make sure the current table style isn't the one we create
286         initially when checking to see if it's different than the one
287         we're setting it to in BindColumns (this fixes #80421).
288
289         * GridTableStylesCollection.cs: table styles can have "" for a
290         mapping name.  part of the fix for #80421.
291
292         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
293         Edit significantly.
294
295 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
296
297         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
298         and less GDI object leaky-er.
299
300 2007-01-18  Andreia Gaita  <avidigal@novell.com>
301
302         * LinkLabel.cs: Add opaque control style
303
304 2007-01-18  Jackson Harper  <jackson@ximian.com>
305
306         * TextControl.cs: Calculate width properly.
307         - Don't store the tag's X offset, this can be figured out very
308         easily.
309         - When getting the caret tag make sure to get the last empty tag.
310
311 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
312
313         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
314         [Fixes bug #79959]
315
316         * Control.cs: Color.Empty shouldn't count for previous transparent
317         redraw changes.
318
319 2007-01-18  Jackson Harper  <jackson@ximian.com>
320
321         * TextBox.cs:
322         * RichTextBox.cs:
323         * TextControl.cs: Starting to merge in some pieces of my older
324         undo work.  Basically just some slight cleanup of the undo API.
325
326 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
327
328         * TrackBar.cs: Fix signature of RightToLeftLayout.
329         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
330         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
331         * Application.cs: Implemented UseWaitCursor.
332
333 2007-01-18  Jackson Harper  <jackson@ximian.com>
334
335         * TextControl.cs: We can't skip tags if any part of the tag is
336         visible.
337
338 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
339
340         * ContainerControl.cs: Override OnLayout.
341
342 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
343
344         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
345
346         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
347         everything else.
348
349 2007-01-18  Chris Toshok  <toshok@ximian.com>
350
351         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
352         (leftover from the container_selected days, I'd wager).  fixes bug
353         #80546.
354
355 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
356
357         * Control.cs: Apply patch from George to fix the new testcase on
358         bug #80451.  We can't just check for Color.Transparent, we need 
359         to check if the back color's alpha channel is < 255.
360
361 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
362
363         * Form.cs: Move setting show_icon = true to before the constructor
364         so that the base constructor has that information when it calculates
365         the form's size.  Was causing forms to be (6, 6) bigger than they
366         were supposed to be.  Thanks for catching this Rolf!
367
368 2007-01-18  Jackson Harper  <jackson@ximian.com>
369
370         * TextControl.cs: When replacing a selection we need to invalidate
371         from the initial selection start, because selection start is moved
372         to the end of the replacement.
373
374 2007-01-18  Andreia Gaita  <avidigal@novell.com>
375
376         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
377
378 2007-01-18  Chris Toshok  <toshok@ximian.com>
379
380         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
381         I just added.
382
383 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
384
385         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
386         layout methods and properties from ToolBarButton must be available
387         into ToolBarButtonInfo.
388
389 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
390
391         * Control.cs: If the control has a transparent background, we
392         need to refresh it when it moves and when it's parent's background
393         image changes.  [Fixes bug #80451]
394
395 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
396
397         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
398
399 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
400
401         * XplatUIWin32.cs: Implement proper double buffering for Windows.
402         [Fixes bug #80447, and probably speeds up things as well]
403
404 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
405
406         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
407         * XplatUIWin32.cs: We need to recalculate NC size after changing 
408         window style to toolwindow (otherwise the client rectangle will be
409         3 pixels to small for some reason).
410         * MdiWindowManager.cs: Revert NC size calculations to match how
411         they are calculated only based on window styles (to match
412         Win32AdjustWindowRectEx, since otherwise when setting size or 
413         location, Control will call Win32AdjustWindowRectEx to update client 
414         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
415         calculate a different value of client size causing another paint 
416         (and flickering))
417         * InternalWindowManager.cs: When moving or resizing a window only
418         update size or location if they actually changed.
419         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
420         (seems to match Windows behaviour better). Cleaned up 
421         ManagedWindowDecorations to draw what's needed and nothing else
422         (was drawing borders and lines where they shouldn't be)
423         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
424         (style = 0xFFFF) and takes into account caption height when 
425         calculating window rectangle.   
426
427 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
428
429         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
430         can be added to toolbar multiple times, we need to maintain a list of 
431         button information for each positions.
432
433 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
434
435         * ToolBar.cs: Some small stetic changes.
436
437 2007-01-16  Jackson Harper  <jackson@ximian.com>
438
439         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
440         that allow us to have nested recalc = false blocks.
441         - Add paste support for images in the RichTextBox
442         * RichTextBox.cs: flush the text after the color is changed, so
443         the change takes effect.
444         - Use SuspendRecalc
445         - Some extra debugging info
446         * TextControl.cs: Tags no longer track their length, it is just
447         computed from the next tags length, this makes things a little
448         simpler and reduces places that we have to track length changes.
449         - Refactored the linetag class a little so we could make it
450         a base class for different kinds of tags
451         - Created a image tag, a tag that can have a single image inserted
452         into it
453         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
454         that we can call suspend multiple times.
455         - Add some debugging methods
456
457 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
458
459         * MdiClient.cs: Add ActivatePreviousChild for 
460         mdi child window navigation.
461         * Form.cs: Use MdiClient.ActivateNextChild/
462         ActivatePreviousChild instead of Form.SelectNextControl
463         to select the next/previous child since 
464         SelectNextControl doesn't do it in the same order
465         as mdi children should do it.
466
467 2007-01-16  Chris Toshok  <toshok@ximian.com>
468
469         * Control.cs: remove container_selected field.
470
471 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
472
473         * MdiClient.cs: Update main form's ActiveChild when
474         updating keyboard focus for the mdi child.
475
476 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
477
478         * Control.cs: PreferredSize fix.
479
480         * Form.cs: Add several 2.0 events, properties, and methods.
481
482 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
483
484         * Form.cs: Provide meaningful message when MdiParent is assigned a
485         Form that is not an MdiContainer.
486
487 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
488
489         * MdiClient.cs: Update main form's ActiveChild when
490         activating a mdi child.
491
492 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
493
494         * MdiWindowManager.cs: Fix NRE when merging menus and main form
495         doesn't have a menu.
496
497         * Form.cs: Request NCRecalc after creating a mdi child window.
498         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
499         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
500         
501         * MdiClient.cs: Add new method SendFocusToActiveChild that either
502         sends keyboard focus to the active child, or to the MdiClient
503         if there are no child forms.
504         
505 2007-01-15  Chris Toshok  <toshok@ximian.com>
506
507         * ListView.cs: drop the *Internal overrides, just do our work in
508         ItemControl's WndProc instead.
509
510         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
511         of the various controls, and forward the events properly (in the
512         same manner as MS) from the textbox to the UpDown.  Also the
513         ActiveControl of the UpDownBase gets set properly now.  Finally,
514         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
515
516         * NumericUpDown.cs: set Text in the ctor.
517
518         * DomainUpDown.cs: call UpdateEditText in the ctor.
519         
520         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
521         so even a Selectable = false textbox can be focused if you click
522         in it.  Go figure.
523
524         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
525         just add their handling in their respective WndProc's.  Also add
526         an explicit FocusInternal method that doesn't consult CanFocus
527         before calling Select(this).
528
529         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
530         do our work in WndProc instead.
531
532         * TabControl.cs: same.
533
534         * ComboBox.cs: same.
535
536 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
537
538         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
539         Fixes #80006.
540
541 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
542
543         * ListViewItem.cs:
544         * ThemeWin32Classic.cs: Don't draw the item text outside
545         item bounds in Details view, as well as use trimming.
546         Fixes bug #80376.
547
548 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
549
550         * Form.cs: Implement Form.ShowIcon.
551         
552         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
553         null, which when combined with the DlgModalFrame window style removes
554         the icon from the title bar.
555
556 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
557
558         * Control.cs: Call OnMouseClick after OnClick. (2.0)
559
560 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
561
562         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
563         menu when mdi child windows theres a menu, uses insert to get icon
564         at first position. Partially fix #80006.
565
566 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
567
568         * Clipboard.cs: Implement 2.0 methods.
569
570 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
571
572         * Menu.cs: Implement Insert method of MenuItemCollection class
573         to fix MenuMerge.
574
575 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
576
577         * ListView.cs: Implement 2.0 FindItemWithText method.
578
579 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
580
581         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
582         to calculate menu bar size. Fixes #80290.
583
584 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
585
586         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
587
588 2007-01-11  Chris Toshok  <toshok@ximian.com>
589
590         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
591         initial form.
592
593 2007-01-11  Chris Toshok  <toshok@ximian.com>
594
595         * LinkLabel.cs: make sure to call base.Select in our Select method
596         if it turns out we're going to be selected (i.e. if we have a link
597         that is going to receive focus).  That way our container's
598         ActiveControl is updated properly.
599
600 2007-01-11  Chris Toshok  <toshok@ximian.com>
601
602         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
603         they have 1 or more links.  this fixes the crash gert reported.
604
605 2007-01-11  Andreia Gaita  <avidigal@novell.com>
606
607         * ContainerControl.cs: Remove ContainerSelected flag, not needed
608         anymore.
609
610         * Control.cs (Controls.Add): Check if control to be added to the collection
611         is a top level control, and throw an ArgumentException if it is.
612         Remove ContainerSelectedFlag, not needed anymore.
613
614         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
615         top most control doesn't activate the form. This fixes a problem in the
616         MessageBox, where the default button wouldn't get focus because the form
617         was activated before being Loaded - when the Owner is set, SetTopMost is
618         called, and it would activate it.
619
620 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
621
622         * Button.cs: When clicked and setting the parent form's DialogResult,
623         use FindForm instead of Parent, since parent could be a container
624         control and not the Form.  Fixes bug #80495.
625
626 2007-01-10  Chris Toshok  <toshok@ximian.com>
627
628         * Form.cs: move the call to SendControlFocus into the same
629         is_loaded check.
630
631 2007-01-10  Chris Toshok  <toshok@ximian.com>
632
633         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
634         It breaks in the face of the new ActiveControl stuff, and should
635         be unnecessary.
636
637         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
638         activecontrol's focus if it's not already set, after we set
639         ActiveControl, but before we call OnActivated.  Re-fixes #79667
640         after the previous focus/active control fixes regressed it.
641
642         * Control.cs: reindent some code.
643         
644 2007-01-10  Chris Toshok  <toshok@ximian.com>
645
646         * Splitter.cs: clearing some outstanding changes from my tree.
647         Replace all accesses (not writes) to the internal dock_style field
648         with the Dock property.
649
650 2007-01-10  Chris Toshok  <toshok@ximian.com>
651
652         * Control.cs: make FireEnter, FireLeave, FireValidating, and
653         FireValidated virtual.
654
655         * Form.cs: override and don't chain up calls to FireEnter and
656         FireLeave.
657
658 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
659
660         * ListView.cs: Add more text padding space when using
661         auto resize for columns (the previous value didn't work fine).
662
663         * ThemeWin32Classic.cs: Update text position inside columns,
664         to match the appeareance of .Net.
665
666         * ColumnHeader.cs: When using auto resize, only the Width should
667         depend on the sub items, not the Height. Also, set width after
668         auto resizing (the value of Width should never remain as -1 or -2).
669
670 2007-01-10  Chris Toshok  <toshok@ximian.com>
671
672         * Application.cs: fix compilation errors when debug is enabled.
673
674 2007-01-10  Chris Toshok  <toshok@ximian.com>
675
676         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
677         add some nice ascii art pictures and explanation of the process).
678         (GetMostDeeplyNestedActiveControl): new utility function we need
679         because our ActiveControl can refer to a child container with its
680         own ActiveControl.
681
682         * Form.cs (OnActivated): remove the call to SelectActiveControl
683         from here, since you can override this method and not chain up,
684         and winforms still sets the active control.
685         (OnCreateControl): also remove the unnecessary SelectActiveControl
686         call from here.
687         (WndProc): it's actually called from the WM_ACTIVATE block, just
688         before calling OnActivated.
689
690         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
691         inside the else.  the ActiveControl setter will end up setting
692         focus on @control.  This keeps us from setting it again (and
693         generating an extra LostFocus/GotFocus pair).
694         (Select (bool, bool)): reindent.
695
696 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
697
698         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
699         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
700         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
701         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
702         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
703         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
704         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
705         ToolStripTextBox.cs: Another wave of corcompare work.
706
707 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
708
709         * ColumnHeader.cs: Implement 2.0 AutoResize method using
710         the Width property.
711
712         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
713         methods by callling Column.AutoResize method on columns.
714
715 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
716
717         * Control.cs: Provide proper implementations of PreferredSize
718         and GetPreferredSize (2.0).
719
720 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
721
722         * Form.cs: Remove one character (!) to make my previous OnClosing
723         stuff work for modal windows like MessageBox.
724
725 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
726
727         * ListView.cs:
728         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
729         ListView.Columns to get the last displayed column. Fixes #80452.
730
731 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
732
733         * Label.cs, LinkLabel.cs: Source code identation fixes.
734
735 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
736
737         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
738         we dont need to invalidate only borders because when we invalidate four
739         border lines the invalidate's generates a complete redraw of button, 
740         because it now invalidate a complete rect some other redraws operations
741         are fixed. Fixes #80196.
742         
743         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
744         Remove ToolBarInvalidateEntireButton as it is not used.
745
746 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
747         
748         * Form.cs: Make sure that both OnClosing and OnFormClosing are
749         called for 2.0 profile.
750         * CloseReason.cs: Make class internal for 1.1.
751
752 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
753
754         * ToolStripManager.cs: Implement FindToolStrip functionality.
755         * ToolStrip.cs: Register and unregister with ToolStripManager.
756
757 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
758
759         * Control.cs: This was messy.  2.0 moves much of ControlCollection
760         to ArrangedElementCollection.  Implemented this with as few #if's as 
761         possible (which is still too many).
762
763 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
764
765         * Control.cs: Implement SizeFromClientSize() [2.0].
766
767 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
768
769         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
770         use Theme.BorderSize to calculate area instead of static value 1, 
771         by the way use new BorderStaticSize instead     Border3DSize when 
772         border_static is true. Fixes #79537.
773         
774         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
775         
776         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
777         it is not needed.
778
779 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
780
781         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
782
783 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
784
785         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
786         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
787         
788         * Hwnd.cs: 
789         - border_static field added, it will used to define when a control 
790         theres 3D border but it must be static (thin).
791         - In GetWindowRectangle use Theme.BorderSize to calculate area 
792         instead of static value 1, by the way use new BorderStaticSize instead
793         Border3DSize when border_static is true.
794
795         * XplatUIX11.cs, XplatUIOSX.cs: 
796         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
797         
798         * Theme.cs: BorderStaticSize field added.
799
800 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
801
802         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
803
804 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
805
806         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
807         mimic same behavior than win32 that set border only in CreateParams,
808         it fix problems under CreateParams overrides. Fix #79442 and partial
809         fix #79537.
810         
811         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
812         of thi control you must call recreate handle. 
813         
814         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
815         need to do anything as RecreateHangle will take care about borders.
816
817 2007-01-05  Mike Kestner  <mkestner@novell.com>
818
819         * ListView.cs: hack to eliminate Lost/Got focus notifications on
820         cycles between the ItemControl and parent.  Fixes #80388.
821
822 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
823
824         * Control.cs: Lazy init layout engine. Do not directly use 
825         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
826
827 2007-01-05  Chris Toshok  <toshok@ximian.com>
828
829         * DataGrid.cs: don't forceably rebind columns in SetDataSource
830         unless our list manager has changed (i.e. unless we have reason to
831         believe our columns have changed).  Fixes #80422.
832         
833         also, disable the call do BindColumns in
834         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
835         1.1 the event isn't raised in response to a column addition on a
836         table.)
837
838 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
839
840         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
841         that inheritors can not call it if they choose.  Fixes bug #80456.
842
843 2007-01-05  Andreia Gaita  <avidigal@novell.com>
844
845         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
846         doesn't blow up with a null exception on marshalling.
847         
848 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
849
850         * Control.cs: Implement several 2.0 protected properties and methods.
851         Ensure that all necessary events are being called when properties
852         are set.
853
854 2007-01-05  Mike Kestner  <mkestner@novell.com>
855
856         * ListView.cs: implement PgUp/PgDn for Details view.  Also
857         fixes First/LastVisibleIndex to use the item_control.ClientRect 
858         instead of the parent control.  Fixes #80378.
859
860 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
861
862         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
863           determine whether to use yard-pound or not (bug #78399).
864
865 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
866
867         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
868         problems. So it is time to bring back the old popupbutton colors.
869
870 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
871
872         * ColumnHeader.cs:
873         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
874         property by using the internal information of the
875         columns order in ListView.
876
877 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
878
879         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
880         Add 2.0 Tag properties.
881
882         * LinkArea.cs: Add 2.0 ToString method.
883
884 2007-01-03  Chris Toshok  <toshok@ximian.com>
885
886         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
887         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
888         when we're editing, which fixes #80047.
889
890 2007-01-03  Chris Toshok  <toshok@ximian.com>
891
892         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
893         #80404.
894
895 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
896
897         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
898         property and implementation.
899
900         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
901         for MdiWindowListItem property.
902
903         * ToolStripDropDown.cs: Don't consider hidden menu items while
904         laying out the menu.
905
906 2007-01-03  Andreia Gaita  <avidigal@novell.com>
907
908         * SendKeys.cs: window handle is not needed in win32, so just
909         get the active window for X after parsing keys and don't use
910         it when building the message; it is passed by parameter to the 
911         Xplat method and used there to build the message instead. Also,
912         wait for events to be processed on SendWait, as opposed to Send,
913         which doesn't wait :) Playing with threads and Send() completely 
914         hangs on ms.net, only SendWait() works.
915         
916         XplatUIX11.cs
917         X11Display.cs: Check for valid window handle.
918
919 2007-01-03  Jackson Harper  <jackson@ximian.com>
920
921         * TextControl.cs: Need to prevent wrap calculations when replacing
922         text (this was there before i removed it accidently).
923         - Don't update the cursor during the positioning, just set it to
924         selection_start at the end of the operaion.
925
926 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
927
928         * Control.cs:
929         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
930         
931 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
932
933         * MonthCalendar.cs: Added Click and DoubleClick events again,
934         but this time they only hide Control's Click and DoubleClick.
935         
936 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
937
938         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
939         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
940
941 2007-01-02  Jackson Harper  <jackson@ximian.com>
942
943         * TextBoxBase.cs: We move the caret with the split now, so we
944         don't need to explicitly move the caret after splitting.  This
945         fixes the caret bumping down an extra line on Enter.
946
947 2007-01-02  Miguel de Icaza  <miguel@novell.com>
948
949         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
950         2.72). 
951
952         * ScrollableControl.cs: Add Scroll event.
953
954 2007-01-02  Mike Kestner  <mkestner@novell.com>
955
956         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
957         to fix all hdr height padding codepaths.  Fixes #80207.
958
959 2007-01-02  Chris Toshok  <toshok@ximian.com>
960
961         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
962         setting it to the Control defaults anyway, and it being after the
963         Dock set was screwing up layout.
964         (set_Dock): don't short circuit out of setting base.Dock.  Also,
965         no need to call UpdateStatusBar here, as it'll be re-layed out if
966         it needs to be.
967
968 2007-01-02  Mike Kestner  <mkestner@novell.com>
969
970         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
971         to header height for width == -1. Fixes the rest of #80207.
972
973 2007-01-02  Mike Kestner  <mkestner@novell.com>
974
975         * ListView.cs: rework the mouse event forwarding everaldo added
976         to translate the coordinates to the parent control not
977         raise the parent events until after we've done our work. Hover
978         needs more work, in the case where HoverSelection is on, because
979         the item control receives more than one MouseHover per Enter
980         event, so we need to ensure only the "first" hover gets forwarded.
981         Opening a minor bug for that.
982
983 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
984
985         * CheckedListBox.cs: Fixed SelectionMode to match MS.
986         * ListControl.cs: Implemented AllowSelection property. Removed extra
987         tabs.
988         * ListBox.cs: Implemented AllowSelection property.
989
990 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
991
992         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
993         SelectedItem, it prevent for errors when you must disable item
994         before perform click. Fixes #80409.
995
996 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
997
998         * MenuAPI.cs: Prevent second level and beyond submenus to close
999         until first level when move out side of popup.
1000         
1001 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1002
1003         * MenuAPI.cs:
1004         - Down submenu positin in three pixels.
1005         - Closes sub menu when mouse leaves from menu. Fixes #80402.
1006
1007 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
1008
1009         * ThemeWin32Classic.cs:
1010         - Fix popup menu size adding one pixel on the top.
1011         - Down menu item border from two to one to mimic Win32.
1012         - Some source identation fixes. 
1013
1014 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1015
1016         * ThemeWin32Classic.cs: Use float numbers to calculate size and
1017         position of menu arrows, it fix wrong arrow size.
1018
1019 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
1020
1021         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
1022         instead of line, it simplify draw operation and fix it using 3D
1023         borders to mimic Win32.
1024
1025 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
1026
1027         * StatusStrip.cs: Add implementation of the sizing grip.
1028
1029         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
1030         StatusStrip rendering.
1031
1032 2006-12-31  Chris Toshok  <toshok@ximian.com>
1033
1034         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
1035         override the layout style (anchor/dock) of the control.  assign to
1036         Dock instead.  Fixes bug #80416.
1037
1038         * ToolStrip.cs: same.
1039
1040 2006-12-31  Andreia Gaita  <avidigal@novell.com>
1041
1042         * ContainerControl.cs: Use ContainerSelected flag to check if 
1043         a Container is directly selected, or if Select is called on a 
1044         non-container. If a container is directly selected, focus events 
1045         should not be raised.
1046         Apply #80411 patch to throw exception on set_ActiveControl if 
1047         control is the same as the current one.
1048         
1049         * Control.cs: Use ContainerSelected flag (see above).
1050         Add invalidation check to raise event but not invalidate if 
1051         dimensions are 0.       
1052         Apply #80411 patch.
1053         
1054
1055 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
1056
1057         * MenuAPI.cs: After click, dont close popup menu when menu is
1058         ContextMenu. Fixes #80399.
1059
1060 2006-12-30  Chris Toshok  <toshok@ximian.com>
1061
1062         * ContainerControl.cs: make sure we throw the exception if the
1063         container control doesn't contain the control we're setting
1064         ActiveControl to.
1065
1066 2006-12-30  Chris Toshok  <toshok@ximian.com>
1067
1068         * Control.cs (SetTopLevel): fix the exception raised by
1069         SetTopLevel for child controls.
1070         (set_Anchor): call UpdateDistances when setting the anchor type.
1071         This fixes bug #80336.
1072
1073 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1074
1075         * Theme.cs: For now, revert back to 8pt font.
1076
1077 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
1078
1079         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
1080         Fixes #80395.
1081
1082 2006-12-29  Chris Toshok  <toshok@ximian.com>
1083
1084         * Control.cs: reorder the code in OnResize to give the same event
1085         ordering as MS.
1086
1087 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1088
1089         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
1090         TileHorizontally and TileVertically.
1091         
1092 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
1093
1094         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
1095         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
1096         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
1097         Corrected copyright and email adress.
1098
1099 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1100
1101         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
1102         of Exception in FullPath property if no TreeView is associated with
1103         the TreeNode.
1104
1105 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
1106
1107         * Theme.cs: Marked default_font as private, and initialize it in ctor
1108         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
1109         on 2.0 profile.
1110         * ThemeGtk.cs: Removed default_font intialization.
1111         * ThemeWin32Classic.cs: Removed default_font initialization.
1112
1113 2006-12-28  Chris Toshok  <toshok@ximian.com>
1114
1115         * Control.cs: fix a couple of place where we were creating handles
1116         more aggressively than we should be.  Fixes ControlRefresh unit
1117         tests.
1118
1119 2006-12-28  Chris Toshok  <toshok@ximian.com>
1120
1121         * Control.cs: contrary to what the comment said, Control.Dock does
1122         not supercede Control.Anchor - the last one you assign to decides
1123         the layout behavior.  so we need to keep track of which was the
1124         last set.  Also, fix some of the affected property arguments in
1125         PerformLayout calls, and remove an redundant parent.PerformLayout
1126         call in OnResized.
1127
1128         Add a VisibleInternal property, which returns is_visible.  We
1129         can/should get rid of all the usage of this field elsewhere.
1130
1131 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1132         
1133         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
1134         control style, not DoubleBuffer. Added UseDoubleBuffering property
1135         that indicates whether doublebuffering is enabled and supported.
1136         (comment from and code based on Gert Driesen's patch in #80324).
1137         Fixes #80324.
1138
1139 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1140         
1141         * Control.cs: Fixed a NRE.
1142
1143 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1144
1145         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
1146         for 2.0.
1147
1148 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1149
1150         * Control.cs: Rewrote double buffering, now a seperate
1151         class handles all the buffering, no Graphics is disposed of
1152         until the painting is finished (earlier implementation 
1153         would crash if the control was resized in the OnPaint, 
1154         since it would cause the double buffer to be recreated
1155         and the old one disposed), a separate Graphics is 
1156         created for every paint (MS behaviour and anyways the state
1157         of the Graphics would have to be saved and restored otherwise)
1158         
1159         * XplatUIDriver.cs: 
1160         * XplatUIX11.cs:
1161         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
1162         so that we can get the graphics for the back buffer without
1163         having to create a new one and remove the offscreen_dc parameter
1164         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
1165         
1166 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1167
1168         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
1169         Also make virtual all the key-related methods.
1170
1171         * ListViewItem.cs: Make virtual the key related methods for
1172         ListViewSubItemCollection.
1173
1174 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1175
1176         * ListView.cs:
1177         * ListViewItem.cs:
1178         * ThemeWin32Classic.cs:
1179         * Theme.cs: Initial support for Tile view in ListView,
1180         as well as the implementation of the required bits for it (Item
1181         and Subitem).
1182
1183 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1184
1185         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
1186         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
1187         Provide useful exception messages.
1188
1189 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1190
1191         * TrackBar.cs: Remove a warning.
1192         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
1193         when used by DateTimePicker, fixes #80287. This also requires that 
1194         MonthCalendar implements it's own drawing for the yearly updown control,
1195         otherwise the Capture tracking would be too complicated. Removed the Click 
1196         and DoubleClick events (according to comments they were hiding the base class
1197         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
1198         raise these events, not that they cannot be raised. It is possible to raise 
1199         them by calling OnClick and OnDoubleClick). Added two internal fields in 
1200         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
1201         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
1202         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
1203         event, no longer needed.
1204         
1205 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1206
1207         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
1208         true if new value differs from current value.
1209
1210 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1211
1212         * Control.cs: ControlCollection.Count must be public. Fixed build of
1213         unit tests.
1214
1215 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1216
1217         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
1218
1219 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
1220
1221         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
1222
1223 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1224
1225         * Control.cs: Invalidates control including when Width and Height is 
1226         equal zero or is not visible, only Paint event must be care about 
1227         this. Fixes #79913.
1228
1229 2006-12-26  Chris Toshok  <toshok@ximian.com>
1230
1231         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
1232         more corcompare work.
1233
1234         * DataGridView.cs: fix compiler warning.
1235
1236         * ColumnHeader.cs: some corcompare work, and also take the
1237         opportunity to make the internal fields private.
1238
1239         * ListView.cs: fix the fallout from the above field change.
1240
1241 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1242
1243         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
1244         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
1245         ToolStripTextBox.cs: Fixes to events and corcompare.
1246
1247 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
1248
1249         * ListView.cs: Call owner.OnMousexx event to propagate events from
1250         item to ListView. Fixes #80367.
1251
1252 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1253
1254         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
1255         if value is less than one. ItemHeight should not be set to a value
1256         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
1257         Removed extra tabs.
1258
1259 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
1260
1261         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
1262         * ToolStripStatusLabel.cs: Add Spring for Moma.
1263
1264 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1265
1266         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
1267         Fixed code formatting. Removed debug code.
1268         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
1269
1270 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
1271
1272         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
1273         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
1274         ArgumentOutOfRangeException if ColumnCount is negative. In 
1275         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
1276         less than 4 or higher than 32768.
1277         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
1278         Fixed FormatProvider to return CurrentCulture unless explicitly set.
1279         Fixed IsFormatProviderDefault to return true if FormatProvider has
1280         not been explicitly set.
1281
1282 2006-12-25  Chris Toshok  <toshok@ximian.com>
1283
1284         * Application.cs: add a couple of 2.0 events.
1285
1286 2006-12-25  Chris Toshok  <toshok@ximian.com>
1287
1288         * Control.cs: fix compiler warning.
1289
1290         * AxHost.cs: corcompare fixes.
1291
1292         * ApplicationContext.cs: corcompare fixes.
1293
1294 2006-12-25  Chris Toshok  <toshok@ximian.com>
1295
1296         * Control.cs: only update dist_right/dist_bottom if the
1297         width/height is > 0.  this fixes anchored controls being resized
1298         smaller until they disappear and then resized larger again.
1299
1300 2006-12-25  Chris Toshok  <toshok@ximian.com>
1301
1302         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
1303         since they're nothing more than X/Left and Y/Top, respectively.
1304
1305         Also, move back to a per-control Bitmap/Graphics for
1306         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
1307         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
1308         Height.
1309
1310 2006-12-25  Miguel de Icaza  <miguel@novell.com>
1311
1312         * MessageBox.cs: Implemented overload that takes a new "bool
1313         displayHelpButton" by adding a new internal field "show_help".
1314         When clicked this will raise the HelpRequested on the owner or the
1315         main form. 
1316
1317         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
1318         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
1319
1320         * ListView.cs: Add support ColumnWidthChanged and
1321         ColumnWidthChanging. 
1322
1323         Add support for ColumnReordered event.
1324         (ReorderColumn): Add NET_2_0 specific support for cancelling the
1325         reorder.
1326
1327         Very nice codebase!
1328
1329         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
1330
1331         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
1332
1333 2006-12-24  Chris Toshok  <toshok@ximian.com>
1334
1335         * GridTablesFactory.cs: 2.0 corcompare work.
1336
1337         * ToolStripContainer.cs: add "override" to
1338         ContextMenuStripChanged, and remove the local event object.
1339
1340         * ToolStripDropDown.cs: same with a couple properties.
1341
1342         * ToolStripPanel.cs: same with AutoSizeChanged event.
1343
1344         * TextBoxBase.cs: add "override" to AutoSizeChanged.
1345
1346         * Form.cs: add the remaining 2.0 events, and do some corcompare
1347         attribute work.
1348
1349         * DateTimePicker.cs: add "new" to padding.
1350
1351         * ButtonBase.cs: use Control's use_compatible_text_rendering.
1352
1353         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
1354
1355         * DataGridView.cs: PaddingChanged is overridden.
1356
1357 2006-12-24  Chris Toshok  <toshok@ximian.com>
1358
1359         * Control.cs: corecompare work here too.
1360
1361         * DataGridViewElement.cs, DataGridView.cs,
1362         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
1363         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
1364         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
1365         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
1366         work.
1367
1368 2006-12-24  Miguel de Icaza  <miguel@novell.com>
1369
1370         * Control.cs: Switched the error message on the console for a
1371         todo.  A review of the code will have to cope with this anyways
1372         (since its a large feature, it is in our radar) and it was
1373         producing too much output when running PDN.
1374
1375         * ToolStripComboBox.cs: Set the text when the SelectedIndex
1376         changes.  Applications depend on this (PDN 2.72)
1377
1378 2006-12-23  Chris Toshok  <toshok@ximian.com>
1379
1380         * TableLayoutSettings.cs: finish up the corcompare work for this
1381         class.
1382
1383 2006-12-23  Chris Toshok  <toshok@ximian.com>
1384
1385         * Control.cs: make SetImplicitBounds internal, do some futzing
1386         with LayoutEngine so that it's available in 1.1, and remove the
1387         entire duplicated code mess from PerformLayout.  Use
1388         System.Windows.Forms.Layout.DefaultLayout instead.
1389
1390         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
1391
1392 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1393
1394         * Form.cs: Add MainMenuStrip property.
1395
1396 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
1397
1398         * Control.cs: Add ContextMenuStrip property and implementation.
1399         Fix ContextMenu implementation to show menu centered on control when
1400         activated using the keyboard instead of showing at screen (0,0).
1401
1402         * ToolStripDropDown.cs: Fix needed overload of Show ().
1403
1404 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1405
1406         * Menu.cs: Name property added for 2.0 profile.
1407         
1408 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1409
1410         * Menu.cs: Update information about FindMenuItem, method to be
1411         implemented soon.
1412
1413 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1414
1415         * MenuAPI.cs: When deselect items deselect also selected subitems.
1416         
1417 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
1418
1419         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
1420         FindSubItemByCoord to found itens that is not active, also an
1421         cheking added to FindSubItemByCoord to search for items only 
1422         in visible popup windows. Fixes #80274.
1423
1424 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
1425
1426         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
1427         internal property, it be care about change ExStyle. 
1428
1429 2006-12-22  Andreia Gaita  <avidigal@novell.com>
1430
1431         * ContainerControl.cs: set activeControl for parent forms up the 
1432         tree when the new activecontrol is a container.
1433         When validating the active control, if it is a container, also
1434         raise up the validation for it's active control. Fixes #80280
1435         
1436         * Control.cs: Add internal property flag and check to prevent
1437         Focus events from getting raised when Select() is called for
1438         a ContainerControl. There are still too many focus events being
1439         raised at the moment though.
1440         Cleaned up the code a bit.
1441
1442 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1443
1444         * Control.cs: Added all missing 2.0 events.and
1445         fixed a couple of corcompare issues.
1446         * TrackBar.cs: Implemented missing 2.0 bits.
1447         * MonthCalendar.cs, 
1448         * DateTimePicker.cs, 
1449         * MdiClient.cs: Fixed some corcompare issues.
1450
1451 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1452
1453         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
1454         SplitterPanel.cs: corecompare work.
1455
1456 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1457
1458         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
1459         Clean up warnings for BackgroundImageChanged and PaddingChanged
1460         events now that they are implemented in Control.cs.
1461
1462 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
1463
1464         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
1465         
1466         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
1467         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
1468         of TableLayoutPanel and supporting cast.
1469
1470 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1471
1472         * XplatUIWin32.cs: 
1473         - GrabWindow now confines the mouse pointer to the confine window.
1474         - Added Win32ClipCursor and Win32GetClipCursor.
1475
1476         * Control.cs: 
1477         - Added CaptureWithConfine to be able to capture and confine 
1478         mouse pointer.
1479         
1480         * InternalWindowManager.cs: 
1481         - Call CaptureWithConfine instead of Capture if we're an
1482         MdiChild (fixes #79982).
1483
1484 2006-12-21  Chris Toshok  <toshok@ximian.com>
1485
1486         * DataGrid.cs: guard against the initial state of selection, where
1487         selection_start == -1.  make sure we only select from index >= 0.
1488         Fixes bug #80291.
1489
1490 2006-12-21  Chris Toshok  <toshok@ximian.com>
1491
1492         * Control.cs: we don't need to be so draconian with
1493         UpdateDistances, and we thusly don't need to call it before
1494         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
1495
1496 2006-12-21  Daniel Nauck  <dna@mono-project.de>
1497
1498         * ComboBox.cs,
1499         TextBox.cs: Implemented AutoComplete properties.
1500
1501 2006-12-20  Chris Toshok  <toshok@ximian.com>
1502
1503         * DataGridView*.cs: some corecompare work.
1504
1505 2006-12-20  Jackson Harper  <jackson@ximian.com>
1506
1507         * XplatUIX11.cs: We need to hide the caret when deleting it,
1508         otherwise you get carets left lying around everywhere.
1509         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
1510         prevents getting some weird half drawn caret tracers when
1511         scrolling.
1512         * TextControl.cs: Attempt to reduce the number of times we need to
1513         recreate the caret.
1514
1515 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1516
1517         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
1518
1519 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1520
1521         * DateTimePicker.cs:
1522         - Implemented missing 2.0 bits.
1523         - Changed some default values to match MS.
1524         
1525 2006-12-20  Jackson Harper  <jackson@ximian.com>
1526
1527         * TextBoxBase.cs: When changing the font across the document we
1528         can't recalculate after changing each line, since that will cahnge
1529         the line count.
1530         - PreferredHeight is a little different than i thought.
1531         - When backspacing, move the caret before we do the actual char
1532         delete, because when that delete crosses a wrap boundary the
1533         positional information will change.
1534
1535 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1536
1537         * Control.cs: Added some missing 2.0 bits: 
1538         BackgroundImageLayout, BackgroundImageLayoutChanged, 
1539         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
1540         add IBindableComponent and IDropTarget implementation.
1541         
1542         * MonthCalendar.cs: 
1543         - Added all missing 2.0 features:
1544         BackgroundImageLayout, RightToLeftLayout, 
1545         OnHandleDestroyed, RightToLeftLayoutChanged, 
1546         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
1547         PaddingChanged.
1548         - Rewrote all the BoldDate code, it was completely broken.
1549         - Fixed all the tests (the tests can now be re-enabled, the
1550         problems were not with the tests, but with the control, it was
1551         mostly broken).
1552         
1553         * DateTimePicker.cs: Changed the location where the 
1554         MonthCalendar is shown.
1555         
1556 2006-12-19  Chris Toshok  <toshok@ximian.com>
1557
1558         * DataGridView.cs: add IDropTarget implementation.
1559
1560         * ToolStripPanel.cs: add IDropTarget implementation.
1561
1562 2006-12-19  Jackson Harper  <jackson@ximian.com>
1563
1564         * TextControl.cs: soft now means something different than what it
1565         used to mean, we want to move the caret regardless of whether or
1566         not this break was soft (would we really have wanted the caret
1567         to not move with the break in the old context?)
1568         * TreeView.cs: Make sure we factor in the vert scrollbar when
1569         calculating the horizontal scrollbar's maximum.
1570
1571 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1572
1573         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
1574         check for keywords in alternate casing, close bug #80049.
1575
1576 2006-12-19  Chris Toshok  <toshok@ximian.com>
1577
1578         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
1579         methods (which all do nothing).
1580
1581         * IDropTarget.cs: add the 4 missing methods.
1582
1583 2006-12-19  Chris Toshok  <toshok@ximian.com>
1584
1585         * TableLayoutRowStyleCollection.cs: corcompare work.
1586         
1587         * TableLayoutSettings.cs: same.
1588
1589         * TableLayoutStyle.cs: same.
1590
1591         * TableLayoutColumnStyleCollection.cs: same.
1592
1593 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
1594
1595         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
1596         TableLayoutPanel I've had in my local tree for way too long.
1597
1598 2006-12-19  Miguel de Icaza  <miguel@novell.com>
1599
1600         * TableLayoutSettings.cs: Finish the public API (still needs all
1601         the logic to update on changes). 
1602
1603         * TableLayoutPanelCellPosition.cs: new file.
1604         
1605         * TableLayoutRowStyleCollection.cs,
1606         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
1607         TableLayoutSettings.cs: Track the final 2.0 table api.
1608
1609 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1610
1611         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
1612         and Image List 2.0 members for ColummnHeader.
1613         * ListView.cs: Add key-related 2.0 methods for
1614         ColumnHeaderCollection.
1615
1616 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1617
1618         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
1619         ArgumentNullException if items argument is null. Ignore null item in
1620         arrays. Removed extra tabs.
1621
1622 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1623
1624         * MonthCalendar.cs: Fixed InvalidCastException.
1625
1626 2006-12-19  Jackson Harper  <jackson@ximian.com>
1627
1628         * TextControl.cs: Don't increment the position here.
1629         - When calculating char positions only add in the line break size
1630         for hard line breaks.
1631
1632 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1633
1634         * SendKeys.cs: Changed some things to match ms.net behaviour
1635         when parsing shifted capital letters.
1636         
1637         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
1638         Add window handle as parameter to SendInput. X11 needs the 
1639         window handle, and the handle being passed      to it in the keys 
1640         queue is the active control handle (which windows needs), not 
1641         the window handle.
1642         
1643         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
1644         to support SendKeys on X.       
1645         
1646         * X11Keyboard: Implement helper method to lookup a linux keycode
1647         given the virtual keycode. Added table of keycode-2-virtualkey
1648         values to support this.
1649
1650 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1651
1652         * ListView.cs: Add support for SelectedIndexCollection
1653         and SelectedItemCollection 2.0 methods. Implement support
1654         for ImageKey too.
1655         * ListViewItem.cs: Add support for ListViewSubItemCollection
1656         2.0 methods. Also, fix an incorrect behavior of AddRange method
1657         (it shouldn't call Clear).
1658         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
1659
1660 2006-12-19  Jackson Harper  <jackson@ximian.com>
1661
1662         * RichTextBox.cs: 
1663         * TextBoxBase.cs: New args for FormatText
1664         * TextControl.cs: Rewrote the main drawing method, this version
1665         feels a little easier to understand and debug to me.  Hopefully it
1666         does to others also
1667         - Fix FormatText to OR in the new formating values.  Added
1668         FormatSpecified param, basically this works in the same way as
1669         BoundsSpecified in Control.
1670         - Set the caret properties when the caret is positioned.
1671         - When wrapping text make sure that we calculate the width of the
1672         last character
1673         - when calculating alignments we might have wrapped down to the
1674         next line, so don't search for an individual tag, search for the
1675         end of the line
1676         - We need to invalidate the selection area when we replace the
1677         selection.
1678         
1679 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1680
1681         * Application.cs: add Restart () 2.0 support
1682
1683 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1684
1685         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1686         property. Fixes #80268.
1687         
1688 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1689
1690         * MenuAPI.cs: Dont trigger select event when closes top menu
1691         item. Fixes #80270.
1692
1693 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1694
1695         * MenuAPI.cs: When you click on menuitem only trigger onselect
1696         event for top menu itens. Fixes #80271.
1697         
1698 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1699
1700         * MdiWindowManager.cs: Make IconicBounds depend on
1701         the bottom of MdiClient, not the top (fixes #80267)
1702         
1703 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1704
1705         * MdiClient.cs: Added missing 2.0 attribute
1706
1707 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1708
1709         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1710         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1711
1712 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1713
1714         * MenuAPI.cs: Fix click when menuitem is not popup,
1715         this regression was caused by last commit (#80272).
1716
1717 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1718
1719         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1720         fire click event or close menu. Fixes #80272.
1721
1722 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1723
1724         * ListViewHitTestInfo.cs: add
1725
1726 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1727
1728         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1729         * FlatButtonAppearance.cs: add
1730         * DockingAttribute.cs: add
1731
1732 2006-12-17  Chris Toshok  <toshok@ximian.com>
1733
1734         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1735         and rebind our columns when it does - this way, if you make
1736         changes to the DataTable (or set the Table attribute on a DataView
1737         after setting it as the DataGrid's DataSource, the changes are
1738         made visible.)  Fixes bug #80107.
1739
1740 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1741
1742         * ListViewGroup.cs: add internal Location property for layouting.
1743         * Theme.cs: add abstract ListViewGroupHeight function.
1744         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1745
1746 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1747
1748         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1749         Added reset of selected index to 0 when adding first tab page.
1750         Fixes #80264
1751         
1752         * NumericUpDown.cs: Fix NET_2_0 check
1753
1754 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1755
1756         * ListViewGroup.cs: fixed DefaultValueAttribute value
1757
1758 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1759
1760         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1761
1762 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1763
1764         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1765         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1766         ScrollableControl.cs: Add a handful of methods that are
1767         overwritten in 2.0 
1768
1769 2006-12-15  Chris Toshok  <toshok@ximian.com>
1770
1771         * XplatUIWin32.cs: initial implementation of the Reversible
1772         drawing functions.  there are some problems.  DrawReversibleFrame
1773         doesn't seem to work at all for Dashed FrameStyle, and in the
1774         Thick case there are drawing errors at the corners (we probably
1775         need to bind Rectangle instead of doing moveto/lineto's.)
1776
1777 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1778         
1779         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1780         to send blocks of key messages. Send accumulates keys to send with Flush, 
1781         while SendWait sends all keys immediately.
1782                 
1783         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1784         XplatUIX11.cs,  XplatUIX11-new.cs:
1785         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1786         to Win32 SendInput.
1787         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1788         
1789         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1790         testing for ms.net on this class is very tricky, as the tests run too fast 
1791         to allow the hook to release, essentially freezing the keyboard and the 
1792         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1793         category :p
1794
1795 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1796
1797         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1798                         added missing attributes.
1799  
1800 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1801
1802         * ListViewGroup.cs: Added missing attributes.
1803         * ListViewGroupCollection.cs: Added missing attributes.
1804
1805 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1806
1807         * ListViewItem.cs: fixed ListViewSubItem text property.
1808
1809 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1810         
1811         * Control.cs: Added missing 2.0 attributes
1812         
1813 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1814         
1815         * MdiClient.cs: Added missing 2.0 attribute.
1816         * MonthCalendar.cs: Added some missing 2.0 attributes 
1817         and properties.
1818         
1819 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1820
1821         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1822
1823 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1824
1825         * MainMenu.cs: Add the new 2.0 constructor to help out people
1826         using the MainMenu in VS2005.
1827
1828 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1829         
1830         * MdiChildContext.cs: Removed it, no longer used.
1831         * MdiClient.cs: Added missing 2.0 attributes.
1832         
1833 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1834         
1835         * InternalWindowManager.cs: Fix a NullRef with previous 
1836         changes for toolwindows.
1837         
1838 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1839
1840         * Control.cs: 
1841         - Added AfterTopMostControl to allow for certain controls 
1842         to always stay on top when normal controls are brought to 
1843         front.
1844         
1845         * XplatUIWin32.cs: 
1846         - (DrawInversibleRectangle): Get window rectangle from Win32 
1847         in stead of from control, since Win32 doesn't calculate
1848         screen coords correctly from control's Location if it 
1849         have docked siblings.
1850         
1851         * MdiWindowManager.cs:
1852         - Correct the control menu popup location when clicked on
1853         the maximized form icon. (fixes #80223.1)
1854         - Don't show moving rectangle if mouse hasn't moved from
1855         the original clicked point.
1856         - Removed FormGotFocus handler (not used).
1857         - Calculate the control buttons location from the main
1858         window's size and not client size (fixes #79770).
1859         - Form is now closed when the form icon is double-clicked
1860         (fixes #79775). 
1861         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1862         
1863         * InternalWindowManager.cs:
1864         - Moved some MDI-only methods to MdiWindowManager.
1865         - Removed unused properties and methods.
1866         - Unified method naming for methods handling wm messages.
1867         - Moved all message handling to seperate methods for
1868         each message.
1869         
1870         * ThemeWin32Classic.cs:
1871         - DrawManagedWindowDecorations now draws the title bar 
1872         with a gradient brush.
1873         - Add a CPDrawButtonInternal that allows us to specify
1874         light, normal and dark colors for the buttons (control 
1875         buttons for MDI children were drawn with the same light
1876         color as the background, therefore loosing the 3D effect).
1877         
1878         * SizeGrip.cs:
1879         - Add a CapturedControl property that is used to 
1880         determine the control to resize (defaults to parent). 
1881         Needed for MdiClient, since its SizeGrip's parent is
1882         MdiClient, but the control to resize is the main form.
1883         
1884         * MdiClient.cs:
1885         - Set SizeGrip's CapturedControl to the main form in order
1886         to resize the main form and not the MdiClient.
1887         - Override AfterTopMostControl to leave the scrollbars 
1888         always on top.
1889
1890 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1891
1892         * ListView.cs: fixed ListViewItemCollection AddRange and
1893                         implemented ListViewItemCollection AddRange 2.0 support.
1894
1895 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1896
1897         * ListViewGroup.cs: Add.
1898         * ListViewGroupCollection.cs: Add
1899         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1900         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1901                                 stub for ImageKey 2.0 support.
1902
1903 2006-12-14  Mike Kestner  <mkestner@novell.com>
1904
1905         * ListView.cs: add text padding to the autocalculation for columns
1906         of width -2.  Fixes #80207.
1907  
1908 2006-12-14  Mike Kestner  <mkestner@novell.com>
1909
1910         * ListView.cs: add some index guarding for partial row navigation 
1911         logic.  Fixes #80250.
1912
1913 2006-12-14  Mike Kestner  <mkestner@novell.com>
1914
1915         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1916         are added or inserted to the collection.  Fixes #81099.
1917
1918 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1919
1920         * MenuAPI.cs: Closes menu when right click out side of popup
1921         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1922
1923 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1924
1925         * ListViewItem.cs: Fix dumb error.
1926
1927         * ListView.cs: Add Find and ContainsKey methods in 
1928         ListViewItemCollection, and also return true for IsReadOnly
1929         and IsFixedSize (changes for 2.0). 
1930
1931 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1932
1933         * Control.cs: Allow Region to be set to null.
1934
1935 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1936
1937         * MdiWindowManager.cs: Remove unused (commented out) code.
1938         * Form.cs: When the MdiChild is maximized, the form needs 
1939         WM_NCMOUSELEAVE, so request it.
1940         * InternalWindowManager.cs: 
1941         - Added tooltips to control buttons.
1942         - Removed duplicated control button handling code.
1943         - Removed unused (commented out) code.
1944         
1945 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1946
1947         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1948         was used because we must set cursor without trigger ChangeCursor event
1949         and without change Cursor control property. Fixes #79963.
1950
1951 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1952         
1953         * Control.cs: Check if Region setter value is null, and ignore
1954
1955 2006-12-12  Jackson Harper  <jackson@ximian.com>
1956
1957         * TextControl.cs: We were almost always drawing one more line then
1958         needed, since the GetLineByPixel will return the last line found
1959         at that pixel. In most cases though, we were invalidating up to
1960         the junction between two lines.
1961         - Improve debug code.
1962
1963 2006-12-12  Chris Toshok  <toshok@ximian.com>
1964
1965         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1966         and FillReversibleRectangle.
1967
1968         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1969         and FillReversibleRectangle.
1970
1971         * XplatUIWin32.cs: add stubs which do nothing for
1972         DrawReversibleFrame, DrawReversibleLine, and
1973         FillReversibleRectangle.
1974
1975         * XplatUIOSX.cs: add stubs which raise NIE for
1976         DrawReversibleFrame, DrawReversibleLine, and
1977         FillReversibleRectangle.
1978
1979         * XplatUIX11.cs: add working implementation for
1980         DrawReversibleFrame, DrawReversibleLine, and
1981         FillReversibleRectangle.
1982         
1983         * ControlPaint.cs: implement DrawReversibleFrame,
1984         DrawReversibleLine, and FillReversibleRectangle, by calling into
1985         the appropriate XplatUI method.
1986
1987 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1988
1989         * Form.cs: Make MdiClient have the focus even if it's
1990         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1991         messages. Fixes #79907.
1992         
1993 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1994
1995         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1996         queried after the window is created.
1997         
1998         * XplatUIX11.cs: Added SendParentNotify to implement 
1999         WM_PARENTNOTIFY logic. Fixes #79965.
2000         
2001         * Control.cs: Added MakeParam.
2002         
2003 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2004
2005         * MdiClient.cs: Resume Layout before setting window
2006         states (fixes #80201).
2007
2008 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2009
2010         * MenuAPI.cs: Deselect a menu item after performing
2011         the click (fixes #80197).
2012
2013 2006-12-11  Jackson Harper  <jackson@ximian.com>
2014
2015         * TextBoxBase.cs: We need to cap this value, since Maximum -
2016         ViewPortHeight can be less than zero.
2017         - Only do selection with the left mouse button.
2018         * TextBox.cs: Don't tell the world that we have a context menu.
2019         * Control.cs: New method so that we can control whether or not the
2020         context menu is visible outside MWF.
2021
2022 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2023
2024         * ToolBarButton.cs: Fix text positon. 
2025
2026 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2027
2028         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
2029
2030         * Control.cs (DoubleBuffered): Add implementation.
2031
2032         * Application.cs (OpenForms): Add.
2033
2034 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2035
2036         * Form.cs: Use opacity instead of Opactiy to determine if we need
2037         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
2038
2039 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
2040
2041         * Control.cs: Fix NRE if Control.Site was set to null.
2042
2043 2006-12-11  Chris Toshok  <toshok@ximian.com>
2044
2045         * Control.cs: ControlCollection.Remove should return if the arg is
2046         null, and ControlCollection.SetChildIndex should raise a ANE.
2047
2048 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
2049
2050         * Control.cs: Verify value set for Dock property. Code formatting
2051         updates.
2052
2053 2006-12-11  Jackson Harper  <jackson@ximian.com>
2054
2055         * TextControl.cs: Draw the caret and the selection when a flag is
2056         set on the owner.
2057         * TextBoxBase.cs: We want to draw the caret and the selection for
2058         TextBox but not for TextBoxBase.
2059         - If the window is resized and scrolling is no longer needed (the
2060         whole doc is visible) set the scroll position to zero.
2061         - The default SelectWord (the one TextBox uses) should move the
2062         caret to the end of the word.
2063         - SelectAll moves the caret to the end of the selection.
2064         * TextBox.cs: We don't selectall on focus, we just do it when the
2065         control is created.
2066         
2067 2006-12-11  Mike Kestner  <mkestner@novell.com>
2068
2069         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
2070
2071 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2072
2073         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
2074         2.0 support.
2075         * ListViewItem.cs: Add Name 2.0 property.
2076
2077 2006-12-11  Andreia Gaita  <avidigal@novell.com>
2078
2079         * TabControl.cs: Set visibility on selected or default tab 
2080         when tabcontrol handle is created, so that it's contents
2081         actually show up (duh). Fixes #80193
2082         Don't redraw the control if there is no handle created, as
2083         the selected index might be completely invalid. Added some tests
2084         to check for this.
2085
2086 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
2087
2088         * ToolBar.cs: Uses maximun width and height of all buttons as 
2089         button rectangle when ButtonSize specified, it looks strange but
2090         is what happens in Win32. Fixes #80189.
2091
2092 2006-12-11  Jackson Harper  <jackson@ximian.com>
2093
2094         * TextControl.cs: Need to track undo levels ourself, since
2095         compound actions will mess them up.
2096
2097 2006-12-10  Andreia Gaita  <avidigal@novell.com>
2098
2099         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
2100         SelectedIndex value is changed (even if it's not valid).
2101         Reset SelectedIndex to 0 when the handle is created and if
2102         the current index is invalid.
2103         Fixes SelectdeIndex unit tests and #80128
2104
2105 2006-12-08  Chris Toshok  <toshok@ximian.com>
2106
2107         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
2108         calls EndEdit, it needs to be called before we set current_cell to
2109         its new value.  Otherwise, we end up committing the value in the
2110         textbox to the new cell as well.  Fixes bug #80160.
2111
2112 2006-12-08  Chris Toshok  <toshok@ximian.com>
2113
2114         * Form.cs (set_CancelButton): if the button's DialogResult is
2115         None, set it to Cancel.  Fixes bug 80180.
2116
2117 2006-12-08  Jackson Harper  <jackson@ximian.com>
2118
2119         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
2120         to watch ourselves when setting the canvas size and setting the
2121         scrollbar values.
2122
2123 2006-12-08  Chris Toshok  <toshok@ximian.com>
2124
2125         * DataGrid.cs: comment out the two MakeTransparent calls for the
2126         time being so people using trunk (and not 1.2.2) on windows can
2127         actually use the datagrid.  This deals with bug #80151.
2128
2129 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2130
2131         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
2132         Graphics.DrawImage (image, int, int, int, int) overload instead
2133         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
2134         the dpi difference and was blurring images it drew.
2135         [Fixes bug #79960]
2136
2137 2006-12-08  Chris Toshok  <toshok@ximian.com>
2138
2139         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
2140         rowcnt is 0 (such as with an empty datasource), and make sure we
2141         initialize not_usedarea.Y to cells.Y, so we don't draw over the
2142         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
2143
2144 2006-12-08  Chris Toshok  <toshok@ximian.com>
2145
2146         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
2147         grid.
2148
2149 2006-12-08  Chris Toshok  <toshok@ximian.com>
2150
2151         [ Fixes bug #80167 ]
2152         
2153         * ThemeWin32Classic.cs: don't draw the image if the button's flat
2154         style is FlatStyle.System.
2155
2156         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
2157         ButtonBase.flat_style private, and switch uses of it to the public
2158         property.
2159         
2160 2006-12-08  Chris Toshok  <toshok@ximian.com>
2161
2162         [ Fixes bug #80121 ]
2163         
2164         * ThemeWin32Classic.cs: center the caption text in the datagrid
2165         when we draw it.
2166
2167         * DataGrid.cs: lessen the amount we add to the caption height from
2168         6 to 2.  6 was making it huge.
2169
2170 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2171
2172         * UpDownBase: Handle MouseWheel call directly instead of capturing
2173         the inner textbox's OnMouseWheel. Fixes #80166
2174
2175 2006-12-08  Jackson Harper  <jackson@ximian.com>
2176
2177         * TextControl.cs: We need to invalidate the textbox when we empty
2178         it (how had this not been discovered before?)
2179
2180 2006-12-08  Jackson Harper  <jackson@ximian.com>
2181
2182         * TextBoxBase.cs: Reworked the mouse down code so I could get it
2183         to behave like MS, we now ignore the eventargs.Click and just
2184         track state ourself, which we were already doing anyways.
2185         - Constrain the double click handler to the double click size.
2186         
2187 2006-12-08  Chris Toshok  <toshok@ximian.com>
2188
2189         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
2190         direction if that scrollbar isn't shown.  fixes bug #80158.
2191
2192 2006-12-08  Andreia Gaita  <avidigal@novell.com>
2193
2194         * NumericUpDown.cs: Update value on getter. Fixes #79950
2195
2196 2006-12-08  Chris Toshok  <toshok@ximian.com>
2197
2198         * MenuItem.cs: add back in the event cloning code.  I didn't know
2199         how to do it in the face of the EventHandlerList work i'd done
2200         last week.  Fixes bug #80183.
2201
2202 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
2203
2204         * Control.cs: Add an invalidate to the BackgroundImage setter.
2205         [Fixes 80184]
2206
2207 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2208
2209         * ToolStrip*: Add some small properties reported by MoMA, fix event
2210         firing and default properties based off of unit tests, and add some
2211         attributes based off of the class status page.
2212
2213 2006-12-07  Jackson Harper  <jackson@ximian.com>
2214
2215         * TextBoxBase.cs: Take HideSelection into account when determining
2216         whether or not to show the selection.
2217         * RichTextBox.cs: After inserting the RTF into the document move
2218         the cursor to the beginning of the document.
2219
2220 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
2221
2222         * Control.cs: Remove static ArrayList "controls" which maintained
2223         a reference to every control created.
2224         * Application.cs: Create a static FormCollection to maintain a reference
2225         to every form created.  Use it in places that formerly enumerated through
2226         the controls one looking for forms.
2227         * Form.cs: Add and remove self from above FormCollection.
2228
2229 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
2230
2231         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
2232           not libgdk (though it makes me wonder why I didn't have any
2233           problems)
2234
2235 2006-12-07  Chris Toshok  <toshok@ximian.com>
2236
2237         [ you had to know this was coming after that last commit...]
2238         
2239         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
2240         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
2241         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
2242         XCopyArea).
2243
2244 2006-12-07  Chris Toshok  <toshok@ximian.com>
2245
2246         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
2247         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
2248         all the behavior we need for double buffering.
2249
2250         * XplatUIDriver.cs: implement the 3 double buffer methods using a
2251         client side Bitmap, just like the old Control-based double buffer
2252         code did.  The methods are virtual, so each XplatUI driver
2253         subclass can replace the implementation to use a faster, platform
2254         specific approach.
2255
2256         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
2257         double buffer code, and clean things up a bit in the process.
2258
2259 2006-12-06  Chris Toshok  <toshok@ximian.com>
2260
2261         * Control.cs: reindent WndProc.
2262
2263 2006-12-06  Chris Toshok  <toshok@ximian.com>
2264
2265         [ I wanna be like BenM when I grow up ]
2266         
2267         * Hwnd.cs: create a single static Graphics object on the static
2268         Bitmap we create.  use this for our text measurements.
2269
2270         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
2271         This was causing us to allocate a backbuffer for every control,
2272         even when it wasn't flagged as double buffered.  Instead use the
2273         single graphics instance.  This might have implications for
2274         multithreaded applications.  If we run into problems we can switch
2275         to creating 1 Graphics per control, on the static Hwnd bitmap.
2276
2277         this change nets us a 7M savings in private dirty mappings when
2278         running FormsTest.exe.
2279
2280 2006-12-06  Chris Toshok  <toshok@ximian.com>
2281
2282         * ListView.cs: the BackgroundImage override is just to set
2283         attributes.  chain up to base.BackgroundImage.
2284
2285         * RichTextBox.cs: same.
2286
2287         * ToolBar.cs: same, but we need to also redraw the toolbar when it
2288         changes, so instead a handler for BackgroundImageChanged.
2289         
2290         * Control.cs: make background_image private.
2291
2292 2006-12-06  Chris Toshok  <toshok@ximian.com>
2293
2294         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
2295         sure we even need this assignment, but roll with it for now.
2296
2297         * Control.cs: make the cursor field private.
2298
2299 2006-12-06  Chris Toshok  <toshok@ximian.com>
2300
2301         * Form.cs: we don't need to explicitly set ImeMode to
2302         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
2303         behavior in the face of ImeMode.Inherit.
2304
2305         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
2306         change the ctor's assignment to use ImeMode instead of ime_mode.
2307
2308         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
2309         ImeModeInherit.  Only check for the parent's imemode (and return
2310         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
2311         This fixes the button unit test, which sets both ImeMode and
2312         DefaultImeMode to ImeMode.Disable.
2313
2314         also make the ime_mode field private.
2315
2316 2006-12-06  Chris Toshok  <toshok@ximian.com>
2317
2318         * Control.cs: make control_style private.
2319
2320         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
2321         setting the styles to true, then setting them to false instead of
2322         reverting to their previous values.
2323
2324         also, call SetStyle on the scrollbars instead of using
2325         control_style directly.
2326
2327 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
2328
2329         * FormCollection.cs: Implement. [2.0]
2330
2331 2006-12-06  Chris Toshok  <toshok@ximian.com>
2332
2333         * Control.cs: make tab_stop private.
2334
2335         * Label.cs: set TabStop, not tab_stop.  reformat some event
2336         add/remove methods to make them more compact.
2337
2338 2006-12-06  Chris Toshok  <toshok@ximian.com>
2339
2340         * RadioButton.cs: fix TabStop handling.
2341
2342 2006-12-06  Chris Toshok  <toshok@ximian.com>
2343
2344         * TextBox.cs: remove the explicit assignments to has_focus.
2345         Control does that.
2346
2347         * ButtonBase.cs: remove the assignment to has_focus.  Control will
2348         manage that.
2349         
2350 2006-12-06  Chris Toshok  <toshok@ximian.com>
2351
2352         * ButtonBase.cs: remove all uses of is_enabled from this code.
2353         it's always true when any of the code containing the checks is
2354         executed.
2355
2356 2006-12-06  Chris Toshok  <toshok@ximian.com>
2357
2358         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
2359         with different semantics (some are present in both 1.1 and 2.0
2360         profiles) so that we match MS's behavior in our unit tests.
2361
2362 2006-12-06  Jackson Harper  <jackson@ximian.com>
2363
2364         * TextControl.cs: Make this operation undoable.
2365         * TextBoxBase.cs: Factor the border width into the preferred
2366         height.
2367         - implement Modified as per the spec.
2368
2369 2006-12-06  Chris Toshok  <toshok@ximian.com>
2370
2371         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
2372
2373 2006-12-06  Chris Toshok  <toshok@ximian.com>
2374
2375         * Control.cs: make right_to_left and context_menu fields private.
2376
2377 2006-12-06  Chris Toshok  <toshok@ximian.com>
2378
2379         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
2380         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
2381         Control.child_controls private.  switch all uses over to
2382         Control.Controls.
2383
2384 2006-12-06  Chris Toshok  <toshok@ximian.com>
2385
2386         * System.Windows.Forms/GroupBox.cs,
2387         System.Windows.Forms/AccessibleObject.cs,
2388         System.Windows.Forms/ErrorProvider.cs,
2389         System.Windows.Forms/Control.cs,
2390         System.Windows.Forms/UpDownBase.cs,
2391         System.Windows.Forms/ScrollBar.cs,
2392         System.Windows.Forms/DateTimePicker.cs,
2393         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
2394         System.Windows.Forms/ToolTip.cs,
2395         System.Windows.Forms/RadioButton.cs,
2396         System.Windows.Forms/LinkLabel.cs,
2397         System.Windows.Forms/Splitter.cs,
2398         System.Windows.Forms/TextBoxBase.cs,
2399         System.Windows.Forms/ToolStripTextBox.cs,
2400         System.Windows.Forms/ContainerControl.cs,
2401         System.Windows.Forms/ThemeWin32Classic.cs,
2402         System.Windows.Forms/SizeGrip.cs,
2403         System.Windows.Forms/ToolStripDropDown.cs,
2404         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
2405         private.  switch all uses over to Control.Parent.
2406
2407 2006-12-06  Chris Toshok  <toshok@ximian.com>
2408
2409         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
2410         Control does this before calling emitting these events.
2411
2412         * TabControl.cs: same.
2413
2414         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
2415         Control.client_rect.
2416
2417         * ButtonBase.cs: use the ClientSize property instead of the
2418         client_size field.
2419
2420         * ScrollableControl.cs: same.
2421
2422         * Control.cs: another pass at making properties private.  also,
2423         move the initialization of tab_stop to the ctor.
2424
2425 2006-12-05  Andreia Gaita <avidigal@novell.com>
2426
2427         * TabControl.cs: Let the selected index be set freely if the 
2428         control handle is not yet created.
2429
2430 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2431
2432         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
2433         internal until I can rewrite DefaultLayout.
2434         * ToolStrip.cs: Fix build error and some general cleaning.
2435         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
2436         Fix build errors caused by making some of Control's fields private.
2437
2438 2006-12-05  Jackson Harper  <jackson@ximian.com>
2439
2440         * TextControl.cs: Redo Insert a little so that it use IndexOf
2441         instead of Split, this prevents it from messing up on things like
2442         \n\n\n. Also more effecient since the split array doesn't need to
2443         be created.
2444         * TextBoxBase.cs: AppendText doesnt handle multiline and non
2445         multiline text differently, this is the first of many fixes that
2446         will make multiline/non-multiline the same thing as far as the
2447         TextBoxBase is concerned.
2448         - Don't split the text and insert lines, this can lose some line
2449         endings (like is the last line a soft or hard break). Instead use
2450         the new Insert.
2451         - Fix an off by one when combining all the lines in the Text
2452         getter.
2453         - Remove separate multiline handling from the Text getter/setter.
2454
2455 2006-12-05  Chris Toshok  <toshok@ximian.com>
2456
2457         * ButtonBase.cs: a few changes:
2458
2459         - don't reinitialize internal Control fields in the ctor when they
2460         have the same values as Control sets them.
2461
2462         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
2463         this before calling those methods.
2464
2465         - we don't need to call Refresh for anything.  use Invalidate
2466         instead.
2467
2468         - OnEnabledChanged doesn't need to redraw at all - Control.cs
2469         calls Refresh in its OnEnabledChanged.
2470         
2471         - several of the events we were registered for in the ctor to
2472         redraw ourselves already include calls to Invalidate in the
2473         property setters that raise the events.  remove the extra
2474         invalidation.
2475
2476         - reformat a switch statement that was 83274658 columns wide.
2477         
2478 2006-12-05  Mike Kestner  <mkestner@novell.com>
2479
2480         * ComboBox.cs: fix a unit test regression from a TextBox
2481         SelectionLength return of -1 when there's no selection.  
2482
2483 2006-12-05  Chris Toshok  <toshok@ximian.com>
2484
2485         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
2486         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
2487         cleaning up some of the internal Control fields being used by
2488         subclasses.
2489
2490 2006-12-05  Mike Kestner  <mkestner@novell.com>
2491
2492         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
2493         listbox after AddImplicit calls since it defaults to hidden. Add a 
2494         hack to preserve requested heights across DropDownStyle changes.
2495
2496 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2497
2498         * PropertyGrid.cs: Hide FindFirstItem method from public API.
2499
2500 2006-12-05  Chris Toshok  <toshok@ximian.com>
2501
2502         * DataGridView.cs: fix compiler warnings.
2503
2504         * PrintControllerWithStatusDialog.cs: same.
2505
2506         * ToolBar.cs: same.
2507
2508         * FolderBrowserDialog.cs: same.
2509
2510         * Splitter.cs: same.
2511
2512         * DataGridViewComboBoxCell.cs: same.
2513
2514         * XplatUIWin32.cs: same.
2515
2516         * PictureBox.cs: same.
2517
2518         * Win32DnD.cs: same.
2519
2520         * PageSetupDialog.cs: same.
2521
2522         * FileDialog.cs: same.
2523
2524         * PrintDialog.cs: same.
2525
2526         * DataGridTextBoxColumn.cs: same.
2527
2528         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
2529
2530 2006-12-05  Chris Toshok  <toshok@ximian.com>
2531
2532         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
2533         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
2534         System.ComponentModel.EventHandlerList work.
2535
2536 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
2537
2538         * DrawTreeNodeEventArgs.cs: Added.
2539
2540 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2541         
2542         * InternalWindowManager.cs: Remove an unused field.
2543         
2544 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2545
2546         * InternalWindowManager.cs:
2547         - Save the point where the title bar is clicked.
2548         
2549         * MdiWindowManager.cs:
2550         - Only allow moving of the window as long as the 
2551         clicked point on the title bar does not get out of
2552         MdiClient's rectangle. Fixes #79982.
2553         
2554         * MdiClient.cs:
2555         - Added Horizontal/VerticalScrollbarVisible.
2556         - Simplified the scrollbar sizing algorithm.
2557         - Cache the difference in scrolled value in
2558         H/VBarValueChanged and move the calculation out
2559         of the for loop.
2560
2561 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2562
2563         * Control.cs: Make the Console.WriteLine in WndProc 
2564         write more info.
2565
2566 2006-12-05  Chris Toshok  <toshok@ximian.com>
2567
2568         * ToolStripManager.cs, ToolStripButton.cs,
2569         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
2570         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
2571         ToolStripSplitButton.cs, ToolStripSeparator.cs,
2572         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
2573         ToolStripProgressBar.cs, ToolStripContainer.cs,
2574         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
2575         to using System.ComponentModel.EventHandlerList.
2576
2577 2006-12-04  Chris Toshok  <toshok@ximian.com>
2578
2579         * LinkLabel.cs: fix up compiler warnings.
2580
2581         * TableLayoutSettings.cs: same.
2582
2583         * TreeView.cs: same.
2584
2585         * ToolBar.cs: same.
2586
2587         * TabControl.cs: same.
2588
2589         * RichTextBox.cs: same.
2590
2591         * ListViewItem.cs: same.
2592
2593         * PropertyGrid.cs: same.
2594
2595         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
2596
2597         * ToolTip.cs same.
2598
2599         * TextRenderer.cs: fix up compiler warnings.
2600
2601         * Label.cs: same.
2602
2603         * Form.cs: corcompare fixes.
2604
2605         * PictureBox.cs: fix up compiler warnings.
2606
2607         * ImageListStreamer.cs: same.
2608
2609         * TrackBar.cs: corcompare fix.
2610
2611         * Control.cs: fix up compiler warnings.
2612
2613         * SplitterPanel.cs: same.
2614
2615         * NumericTextBox.cs: same.
2616
2617         * ImageList.cs: same.
2618
2619         * StatusStrip.cs: same.
2620
2621         * ProgressBar.cs: corcompare fix.
2622
2623         * ToolStripButton.cs: fix up compiler warnings.
2624
2625         * ToolStripStatusLabel.cs: same.
2626
2627         * ToolStripSplitButton.cs: same.
2628
2629         * ToolStripSeparator.cs: same.
2630
2631         * ToolStripProgressBar.cs: same.
2632
2633         * ToolStripDropDownMenu.cs: same
2634
2635         * ToolStripDropDown.cs: same.
2636
2637         * ToolStripDropDownButton.cs: same.
2638
2639         * ToolStrip.cs: same.
2640
2641         * ToolStripControlHost.cs: same.
2642
2643         * ToolStripContentPanel.cs: same.
2644
2645         * ToolStripDropDown.cs: same.
2646
2647         * ToolStripContainer.cs: same.
2648
2649         * ToolStripPanel.cs: same, and add "new" where we need it to work
2650         with the new ArrangedElementCollection.
2651
2652         * ToolStripItemCollection.cs: add "new" where we need it to work
2653         with the new ArrangedElementCollection.
2654
2655 2006-12-04  Andreia Gaita <avidigal@novell.com>
2656
2657         * TabControl.cs: Fix default tab selection to after TabControl
2658         gets focus and not before. Fixes #80128
2659
2660 2006-12-04  Chris Toshok  <toshok@ximian.com>
2661
2662         * DataGridTableStyle.cs: remove the gross calling of
2663         datagrid.Refresh from here.  It's a broken idea and it doesn't
2664         work anyway.
2665
2666         * DataGrid.cs: instead, just register/unregister from the
2667         DataGridTableStyle events in CurrentTableStyle.  we play it
2668         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
2669         even though some would most likely not require it.  Fixes bug
2670         #80115 (and one portion of #80117 as a side effect).
2671
2672 2006-12-04  Chris Toshok  <toshok@ximian.com>
2673
2674         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2675         so the textbox (if any) goes away.  Fixes bug #80117.
2676
2677 2006-12-04  Chris Toshok  <toshok@ximian.com>
2678
2679         * DataGridColumnStyle.cs: set the column's readonly property
2680         initially based on the property descriptor's IsReadOnly.  Fixes
2681         bug #80044.
2682
2683 2006-12-04  Chris Toshok  <toshok@ximian.com>
2684
2685         * ComboBox.cs: wrap the dropdown style changing work in
2686         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2687
2688 2006-12-04  Jackson Harper  <jackson@ximian.com>
2689
2690         * TextBoxBase.cs: Fix off by one, since these are one-based.
2691         * TextBox.cs: Select all the text when we get focus.  The TextBox
2692         does this but the RTB does not.
2693
2694 2006-12-04  Chris Toshok  <toshok@ximian.com>
2695
2696         * DataGridTextBoxColumn.cs: remove some spew.
2697
2698         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2699         but some part of me is saying "it shouldn't be here.."  At any
2700         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2701         setting the value.
2702
2703 2006-12-04  Chris Toshok  <toshok@ximian.com>
2704
2705         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2706         to reassign the propertydescriptor.
2707
2708 2006-12-04  Jackson Harper  <jackson@ximian.com>
2709
2710         * TextBoxBase.cs:
2711         * TextControl.cs: Remove some unused variables.  Maybe this will
2712         patch things up between mike and I.
2713         - don't split lines less then one char wide, if the viewport is
2714         that small text won't be visible anyways.
2715         
2716 2006-12-04  Jackson Harper  <jackson@ximian.com>
2717
2718         * TextBoxBase.cs: Default selection length is -1, need to do some
2719         more testing on windows to see when this is used for the property.
2720         - Redid the Lines [] property to that we properly remove soft line
2721         breaks
2722         - added support for preserving carriage returns
2723         -  CanUndo is not a variable like 'is undo enabled' it just returns
2724         true if there is undo operations available.
2725         - AppendText doesn't need to grab the last tag itself anymore,
2726         this happens automatically when we move the cursor.
2727         * TextControl.cs: Add CompoundActions to the undo class. This
2728         allows combining the other operations into one big option.  ie a
2729         paste will combine { delete old, insert new, move cursor }
2730         - Add InsertString undo operation
2731         - New method for deleting multiline text
2732         - Add carriage returns to lines. So we can preserve carriage
2733         returns when text is 'roundtripped'
2734
2735 2006-12-04  Chris Toshok  <toshok@ximian.com>
2736
2737         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2738         minimum 0.  Fixes the scrollbar exception in bug #80136.
2739
2740 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2741
2742         * MdiClient.cs: 
2743         * MdiWindowManager: Removed unused fields and methods.
2744         
2745 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2746         
2747         * StatusBar.cs: Update all panels when a AutoSize=Contents
2748         panel needs updating.
2749         
2750         * StatusBarPanel.cs: Remove twidth and only use initialize.
2751         Fixes #80031.
2752                 
2753 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2754
2755         * Form.cs: When a form's MdiParent is set add it directly
2756         on top of the z-order in stead of relying on MdiClient's
2757         ActivateChild to do it. Fixes #80135.
2758         
2759         * MdiClient.cs: 
2760         - Remove original_order, mdi_child_list is already doing
2761         the same thing.
2762         - Create mdi_child_list on construction in
2763         stead of first use (avoids a few null checks).
2764
2765         * MenuItem.cs: Use an already existing list of mdi children
2766         to get the correct order of children and remove the other
2767         redundant list.
2768
2769 2006-12-04  Chris Toshok  <toshok@ximian.com>
2770
2771         * PropertyGridView.cs: cached_splitter_location is only used in
2772         !DOUBLEBUFFER code.
2773
2774         * PropertyGrid.cs: implement the ComComponentNameChanged event
2775         using Events, hoping that would fix the warning.  Looks like a
2776         compiler bug instead (#80144).
2777
2778         * PropertyManager.cs: remove unused method.
2779
2780 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2781
2782         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2783         include parentesis to fix expression evaluation. Fixes #79634.
2784
2785 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2786         
2787         * MenuAPI.cs:
2788         - Changes to fix behavior in Menu control, some reported in #80097
2789         and other detected during behavior refactory like a select event
2790         problems.
2791         - Remove unneded "if's" conditions.
2792         - Created an internal to flag when popup is active in control, we need 
2793         it because in .NET you can have menu active but without popup active
2794         when you active menu using popup without visible items.
2795         - Mimic win32 behavior for Select and Popup events.  
2796         - Dont open popup menu when you dont have visible subitems.
2797         - Do nothing when click on disabled menu item.
2798         - Some small changes to follow the coding style guidelines.
2799         - Unselect menu only when another control gives focus. Fixes #80097.
2800         - Remove unused code.
2801         
2802         * MenuItem.cs: internal VisibleItems method to check if menu
2803         theres visible subitems, it will be usefull to fix some 
2804         behavior in Menu control.
2805         
2806 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2807         
2808         * Timer.cs: Tag property for 2.0 profile.
2809         
2810 2006-12-01  Chris Toshok  <toshok@ximian.com>
2811
2812         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2813         
2814         * Win32DnD.cs: comment out some unused fields.
2815
2816         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2817         some unused properties/methods.
2818
2819         * XplatUIX11.cs: fix MousePosition so we override the base class's
2820         property instead of conflicting with it.
2821
2822         * PictureBox.cs: comment out some unused fields
2823
2824         * OSXStructs.cs: make some struct fields public.
2825
2826         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2827         MousePosition so we override the base class's property instead of
2828         conflicting with it.
2829
2830         * X11Dnd.cs: comment out some unused fields
2831
2832         * X11DesktopColors.cs: fix some struct field visibility to quiet
2833         the compiler.
2834
2835         * X11Dnd.cs: remove some debug code.
2836
2837         * ThemeClearlooks.cs: comment out unused field.
2838
2839         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2840
2841         * ThemeGtk.cs: comment out some unused pinvokes.
2842
2843         * Timer.cs: remove some unused fields.
2844
2845         * ThemeClearlooks.cs: comment out unused field.
2846
2847         * UpDownBase.cs: comment out unused field.
2848
2849         * DataObject.cs: comment out unused field.
2850
2851         * DataGridBoolColumn.cs: reomve unused field.
2852
2853         * DataGrid.cs: remove unused field.
2854
2855         * Cursor.cs: remove old ToBitmap code.
2856
2857         * ControlPaint.cs: remove unused method.
2858
2859         * ScrollBar.cs: remove unused fields.
2860
2861         * ComboBox.cs: remove unused field, and chain up to
2862         AccessibleObject ctor.
2863
2864         * ListBox.cs: remove unused field.
2865
2866         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2867
2868         * GridEntry.cs: remove unused fields.
2869
2870         * Binding.cs: remove unused fields.
2871
2872         * AxHost.cs: remove unused method.
2873
2874         * ContainerControl.cs: remove unused field.
2875
2876         * ScrollableControl.cs: remove unused fields.
2877
2878 2006-12-01  Chris Toshok  <toshok@ximian.com>
2879
2880         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2881         the Where/WhereString stuff.  it's easy enough to CWL
2882         Environment.StackTrace.
2883
2884         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2885         unused private fields.
2886
2887 2006-12-01  Jackson Harper  <jackson@ximian.com>
2888
2889         * TextControl.cs: Do not update the view while inserting multiline
2890         text. If we update the view we might wrap lines, before entering
2891         the new lines, which causes the new line insertion calculations to
2892         be totally fubared.
2893         - Remove an old TODO
2894         - Make debug output a little nicer
2895         
2896 2006-12-01  Chris Toshok  <toshok@ximian.com>
2897
2898         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2899
2900 2006-12-01  Chris Toshok  <toshok@ximian.com>
2901
2902         [ fix the majority of the CS0108 warnings we've been suppressing ]
2903         
2904         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2905
2906         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2907         to "LayoutToolBar" to quiet mcs.
2908         
2909         * TabControl.cs: mark our ControlCollection class as 'new'.
2910
2911         * TextBoxBase.cs: mark some events as 'new'.
2912
2913         * Splitter.cs: TabStop is 'new'.
2914
2915         * ControlBindingsCollection.cs: mark a few methods as new since
2916         they change the visibility from protected to public.
2917
2918         * RadioButton.cs: DoubleClick -> base class, and remove unused
2919         HaveDoubleClick.
2920
2921         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2922         events as new.
2923
2924         * NumericUpDown.cs: TextChanged -> base class.
2925
2926         * CheckedListBox.cs: mark our ObjectCollection class as new to
2927         quiet mcs.
2928
2929         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2930         muck with the base class.
2931
2932         * StatusBar.cs: fix some mcs warnings about Update being the same
2933         name as a base class method.
2934
2935         * RichTextBox.cs: mark some events as new, and make them do things
2936         to the base class impl.
2937
2938         * UserControl.cs: mark TextChanged as new, and have it manipulate
2939         base.TextChanged.
2940
2941         * UpDownBase.cs: mark some things new.
2942
2943         * CheckBox.cs: mark DoubleClick "new", and add some text about
2944         what we need to look at.
2945
2946         * Panel.cs: make the events "new", and manipulate the base
2947         version.  these are just here for attributes.
2948
2949         * AccessibleObject.cs: make owner private.
2950
2951         * Control.cs: deal with AccessibleObject.owner being private.
2952         cache our own copy if we need it.
2953
2954         * Button.cs: add "new" to the DoubleClickEvent.
2955
2956         * ListBox.cs: no need to track our own has_focus here.  let
2957         Control.has_focus do it for us.  Also some other work to clear up
2958         warnings about not overriding base class methods of the same name.
2959         
2960         * ComboBox.cs: clear up some warnings about not override base
2961         class methods of the same name.
2962
2963 2006-12-01  Chris Toshok  <toshok@ximian.com>
2964
2965         * Form.cs: flag a few things as "new" to quiet some of the mcs
2966         warnings.
2967
2968         * AxHost.cs: same.
2969
2970         * PrintPreviewDialog.cs: same.
2971
2972         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2973         now DGV isn't so horrible on the class status page.  also, move
2974         all events to using System.ComponentModel.EventHandlerList.  my
2975         wrists hurt.
2976
2977 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2978
2979         * MdiWindowManager.cs:
2980         - Set form to active mdi child if shown,
2981         and update the active mdi child to the next 
2982         remaining child in the z-order if the form is hidden.
2983
2984         * Form.cs: 
2985         - Track if the form has been visible and if its 
2986         visibility is beeing changed, so that the MdiClient
2987         can properly decide the ActiveMdiChild. The MdiClient 
2988         cannot track this since the form can change visibility 
2989         before MdiClient is created.
2990
2991         * MdiClient.cs:
2992         - Don't activate anything of the parent form is changing
2993         its visibility.
2994         - Rework ActiveMdiChild to only return visible mdi 
2995         children and take into account several other corner 
2996         cases.
2997
2998 2006-12-01  Chris Toshok  <toshok@ximian.com>
2999
3000         * IBindableComponent.cs: new 2.0 interface.
3001
3002 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
3003
3004         * DataGrid.cs: Font for caption area is bold by default.
3005
3006 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
3007
3008         * Menu.cs: Tag property for 2.0.
3009         
3010 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
3011
3012         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
3013         
3014 2006-12-01  Chris Toshok  <toshok@ximian.com>
3015
3016         * TreeView.cs: doh, the Begin* events should be
3017         TreeViewCancelEventHandler.
3018
3019 2006-12-01  Chris Toshok  <toshok@ximian.com>
3020
3021         * Form.cs: Form.ControlCollection already stores off the
3022         form_owner field.  don't access the base class's internal "owner"
3023         field.
3024
3025         * Control.cs: make all the fields in Control.ControlCollection
3026         private.  there's no need for any internal fields here.
3027
3028 2006-12-01  Chris Toshok  <toshok@ximian.com>
3029
3030         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
3031         OnHandleCreated.  Fixes bug #80109.
3032
3033 2006-12-01  Chris Toshok  <toshok@ximian.com>
3034
3035         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
3036         SplitContainer.cs, Control.cs, StatusStrip.cs,
3037         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
3038         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
3039         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
3040         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
3041         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
3042         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
3043         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
3044         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
3045         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
3046         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
3047
3048         do most of the work to convert our code over to use
3049         System.ComponentModel.Component.Events for
3050         adding/removing/dispatching events.
3051
3052
3053 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3054
3055         * DataGridView.cs: Fix an ArgumentNullException reported 
3056         twice today in IRC.
3057
3058 2006-11-30  Mike Kestner  <mkestner@novell.com>
3059
3060         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
3061         grabbed listbox.  Fixes #80036 and #80101.
3062
3063 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3064
3065         * Message.cs: Changed ToString() to match MS.
3066         
3067 2006-11-30  Jackson Harper  <jackson@ximian.com>
3068
3069         * TextBoxBase.cs: You can still change the selected text on a read
3070         only textbox.
3071         * TextControl.cs: Lower magic number for wrap calculations. This
3072         lets text get closer to the right (far) edge.
3073
3074 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
3075
3076         * Control.cs: Tweak 2.0 layout properties.
3077         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
3078         * TextRenderer.cs: Add a new overload.
3079         * ToolStrip*: Huge amount of changes and new features.
3080
3081 2006-11-30  Mike Kestner  <mkestner@novell.com>
3082
3083         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
3084         scroll range correct.  Fixes #79994.
3085
3086 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
3087
3088         * MdiWindowManager.cs: Update main form's text when
3089         a form is closed. (fixes #80038)
3090         
3091 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
3092
3093         * ToolBar.cs:
3094         - Fix an regression in ButtonSize.
3095         - Get ImeMode default value change to "Disable".
3096         - Get ShowTooltips default value change to true, default value is 
3097         "false" but after make a test in .NET we get "true" result as default.
3098         
3099 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
3100
3101         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
3102
3103 2006-11-29  Chris Toshok  <toshok@ximian.com>
3104
3105         * XplatUIWin32.cs (GetWindowTransparency): check return value of
3106         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
3107         SetWindowTransparency hasn't been called.
3108
3109 2006-11-29  Chris Toshok  <toshok@ximian.com>
3110
3111         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
3112         if it's supported.
3113         (set_AllowTransparency): reorder things a little so that the
3114         WS_EX_LAYERED style is removed properly.
3115
3116 2006-11-29  Chris Toshok  <toshok@ximian.com>
3117
3118         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
3119         
3120         * Form.cs: only call the XplatUI transparency method (get/set) if
3121         SupportsTransparency says it's supported. Otherwise fallback to
3122         doing nothing (in the set case) or returning the instance field we
3123         cache (in the get case).
3124
3125         * XplatUIStructs.cs: add TransparencySupport flag enum.
3126         
3127         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
3128         change to SupportsTransparency.
3129
3130         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
3131         TransparencySupport.None from SupportsTransparency.
3132
3133         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
3134         TransparencySupport.Set from SupportsTransparency.
3135
3136         * XplatUIWin32.cs: implement GetWindowTransparency calling
3137         GetLayeredWindowAttributes, and implement SupportsTransparency by
3138         checking whether or not both
3139         GetWindowTransparency/SetWindowTransparency are available
3140         entrypoints.  We need to do this since SetWindowTransparency is
3141         available as of win2k, but GetWindowTransparency requires winxp.
3142         yay win32 api.
3143
3144         * XplatUI.cs: Add GetWindowTransparency, and change
3145         SupportsTransparency to allow for either/both Get/Set.
3146
3147 2006-11-29  Chris Toshok  <toshok@ximian.com>
3148
3149         * DataGrid.cs: keep from going into an infinite loop redrawing a
3150         datagrid that has no datasource.  Fixes bug #80033.
3151
3152 2006-11-29  Chris Toshok  <toshok@ximian.com>
3153
3154         * MenuItem.cs: fix the NRE when we assign text (and therefore call
3155         Invalidate) before the mainmenu has been assigned to a control.
3156
3157 2006-11-29  Chris Toshok  <toshok@ximian.com>
3158
3159         * DataGrid.cs: detect when we should be double the double click
3160         row/column autosize stuff, although that codepath has yet to be
3161         written.  part of the work for bug #79891.
3162
3163 2006-11-29  Chris Toshok  <toshok@ximian.com>
3164
3165         * Binding.cs (SetControl): fix unit test.
3166
3167 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3168
3169         * PageSetupDialog.cs: Validate the margins and set them in
3170         PageSettings. 
3171         * NumericTextBox.cs: New class to mimic the behavior of the
3172         textboxes used in the printing dialogs.
3173
3174 2006-11-29  Andreia Gaita  <avidigal@novell.com>
3175         
3176         * Form.cs: Revert previous change (remove call UpdateBounds
3177         from form constructor), because it messes with the handle creation
3178         order, and that one needs lots and lots of love.
3179         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
3180         for valid printer and throw InvalidPrinterException if document
3181         is set but printer not valid), adding a MonoTODO. Once 
3182         handle creation is done properly, we can put this back in.
3183
3184 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3185
3186         * MenuItem.cs: Create a invalidate method for menu item, to be
3187         calling from set text, it make text changes to imadiate update
3188         on screen. Fixes #80013. 
3189         
3190 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3191
3192         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
3193         fixes bug #80070 and some other problem on toolbar buttons
3194         layout.
3195
3196 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
3197
3198         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
3199         with dotted brush.      Fixes #79564
3200         
3201 2006-11-28  Andreia Gaita  <avidigal@novell.com>
3202
3203         * Form.cs: Removed call to UpdateBounds on Form
3204         constructor, it was causing a call to CreateHandle
3205         before it was supposed to.
3206         * PrintControllerWithStatusDialog: Applied patch
3207         by Chris Toshok to hide controller when there are
3208         no printers available.
3209         PrintDialog.cs: initialize printer settings to 
3210         null - correct DefaultValues test #5
3211         * PrintPreviewControl.cs: Move PrintController
3212         initialization to GeneratePreview
3213         * PrintPreviewDialog.cs: 
3214         - Remove Preview generation     from Document_set(). It is 
3215         called on OnPaint
3216         - Throw InvalidPrinterException on CreateHandle if
3217         a Document is set but there are no printers or 
3218         printer is not valid.
3219         * ThemeWin32Classic: don't paint PrintPreviewControl
3220         if there is nothing to paint    
3221
3222 2006-11-28  Miguel de Icaza  <miguel@novell.com>
3223
3224         * Form.cs: Add another popular method.
3225
3226         * TabPage.cs: ditto.
3227
3228 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3229
3230         * MenuItem.cs: Fixed a warning.
3231         * InternalWindowManager: Fixed a warning.
3232
3233 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3234
3235         * MenuItem.cs:
3236         - When cloning a menu also clone MdiList and clone the 
3237           window menu items properly (as the forms and menuitems
3238           are kept in an internal hashtable, these need updating 
3239           as well)
3240         - Rewrote the window menu code, menu items are added in the
3241           order the forms were added to their parent, and they are
3242           updated every time the window menu is shown (before the
3243           list was only generated once, in the current order of the
3244           forms, and would never be updated). A checkmark is shown
3245           next to the item corresponding to the active mdi child.
3246
3247 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3248
3249         * XplatUIStructs.cs: 
3250         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
3251         
3252         * XplatUIWin32.cs: 
3253         - Added TME_NONCLIENT to TMEFlags.
3254         - Handles WM_NCMOUSEMOVE in GetMessage to 
3255           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
3256
3257         * MdiWindowManager:
3258         - Now merges mdi child menu to parent menu when maximized.
3259         - Recalculate NC areas of both mdi child and mdi parent. 
3260           Fixes #79757 (4).
3261           on window state and size changes.Fixes #79844 (3).
3262         - Handle WM_NCCALCSIZE to properly calculate borders.
3263
3264         * Form.cs:
3265         - Add/remove to the mdi containers list of mdi children 
3266           in the order they are added.
3267         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
3268           to the maximized mdi child.
3269         
3270         * InternalWindowManager.cs:
3271         - Only execute a click on the control buttons on the mouse up,
3272           not on the mouse down. Show the state of the button 
3273           (was only showing Normal state, never Pressed state). The
3274           pressed button now follows the mouse (if you click the Close 
3275           button and move the mouse over the Maximize button, the 
3276           Maximize button will be shown as pressed). Since Win32 does
3277           not generate WM_NCLBUTTONUP if you release the button outside
3278           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
3279           it as a mouse up.
3280         
3281         * ThemeWin32Classic.cs:
3282         - Draw a missing border around mdi child forms. Fixes #79844 (2).
3283
3284         * MdiClient.cs:
3285         - Added a list of forms which contains the order the forms are
3286           added to the mdi parent.
3287         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
3288         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
3289         - If the active form changes set the scrollbars to the top
3290           of the Z order, otherwise the form could hide them.
3291         - Scrollbars are now sized according to ClientSize, not 
3292           to Size, and they take into account the other scrollbar
3293           to determine maximum.
3294         
3295 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
3296         
3297         * XplatUI.cs:
3298         * XplatUIDriver.cs:
3299         * XplatUIX11.cs:
3300         * XplatUIWin32.cs:
3301         * XplatUIOSX.cs:
3302         - Added RequestAdditionalWM_NCMessages for windows to 
3303           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
3304           Currently only implemented in XplatUIWin32.
3305
3306 2006-11-27  Chris Toshok  <toshok@ximian.com>
3307
3308         * Hwnd.cs: only add the hwnd to the windows hash in
3309         set_WholeWindow and set_ClientWindow if whole_window/client_window
3310         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
3311
3312 2006-11-27  Mike Kestner  <mkestner@novell.com>
3313
3314         * ComboBox.cs: remove redundant OnDropDown call.  It is called
3315         from the ComboListBox.ShowWindow code. Fixes #79969.
3316
3317 2006-11-27  Chris Toshok  <toshok@ximian.com>
3318
3319         * Hwnd.cs: remove the setters for ExposePending and
3320         NCExposePending - noone uses them.
3321
3322 2006-11-27  Jackson Harper  <jackson@ximian.com>
3323
3324         * TextControl.cs: new param for ReplaceSelection which determines
3325         whether we select the new selection, or set the cursor to the end
3326         of the new selection.
3327         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
3328         pasting, select the new text.
3329         * RichTextBox.cs: Use new param for ReplaceSelection.
3330
3331 2006-11-27  Jackson Harper  <jackson@ximian.com>
3332
3333         * TextBoxBase.cs: Set the selection to the caret after the caret
3334         is moved, otherwise they get out of sync.
3335
3336 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3337
3338         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
3339         it fixes #80015
3340
3341 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
3342
3343         * ThemeWin32Classic.cs: 
3344         - Fix toolbar drop down arrow position.
3345         - Fix drop down appearance when ToolBar.Appearance is normal,
3346         it fixes #80018.
3347         
3348 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
3349
3350         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
3351         * Control.cs: Same.
3352         * UpDownBase.cs: Same.
3353         * ButtonBase.cs: Same.
3354         * ScrollBar.cs: Same.
3355         * TrackBar.cs: Same.
3356         * PictureBox.cs: Same.
3357         * UserControl.cs: Same.
3358         * Label.cs: Same.
3359         * ListControl.cs: Same.
3360         * TextBoxBase.cs: Same.
3361         * ListView.cs: Same.
3362         * RichTextBox.cs: Same.
3363         * TreeView.cs: Same.
3364
3365 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
3366
3367         * PrintDialog.cs:
3368         - Text label for where 
3369         - Text label comment was not shown
3370
3371 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
3372
3373         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
3374
3375 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3376
3377         * InternalWindowManager.cs: 
3378         - Handle WM_PARENTNOTIFY to activate the form
3379         if any child control is clicked.
3380         - The form is only sizable if not minimized.
3381
3382         * MdiWindowManager.cs:
3383         - Save the IconicBounds if the form is moved.
3384         - Rework SetWindowState, now the window bounds 
3385         are stored only if the old window state is Normal.
3386         
3387         * MdiClient.cs:
3388         - In SetWindowStates store the old window state if 
3389         the window is maximized and restore window state if
3390         the window looses focus.
3391         - Don't handle any scrollbar value changes if 
3392         initializing the scroll bars. Fixes #79771.
3393         - Reworked ArrangeIconicWindows. Current algorithm
3394         tests bounds agains all other minimized windows, if
3395         any intersections create new bounds (going left to 
3396         right, bottom to top) and then test again. When 
3397         successful the bounds are saved and never computed
3398         again. Fixes #79774.
3399
3400 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3401
3402         * InternalWindowManager.cs: Added HandleTitleBarUp.
3403
3404 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3405
3406         * NumericUpDown.cs: In .NET 1.1, user entered text is still
3407         hexadecimal in ParseUserEdit.
3408
3409         
3410 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
3411
3412         * MdiWindowManager.cs: 
3413         - Handle a click on the form's icon to show the 
3414         system menu (when maximized). Fixes #79775.
3415         - Change the existing click handler for the form's
3416         icon when not maximized to show on MouseUp.
3417         Fixes #79776.
3418
3419         * Form.cs: In OnResize only layout the mdi child's
3420         parent if it actually has a parent. Might not if
3421         the window is closing.
3422
3423
3424 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3425
3426         * MdiClient.cs: Ignore active MDI client for text of parent, if
3427         child has no text set.
3428
3429 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
3430
3431         * ToolBar.cs: Fixed ToString to match MS.
3432
3433 2006-11-22  Andreia Gaita  <avidigal@novell.com>
3434
3435         * NumericUpDown: 
3436         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
3437         update inner values on set. Fixes #79966.
3438         - Override OnLostFocus to update value on NET 2. Fixes #79950.
3439         - Fix hexadecimal parsing.
3440         
3441         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
3442         parent. Fixes #79957
3443
3444 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3445
3446         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
3447         the actual size has to be queried, since if height /
3448         width is negative Win32 changes it to 0. 
3449         Fixes #79999 on Windows.
3450         
3451         * XplatUIX11.cs: Set height / width to 0 if negative
3452         in SetWindowPos. Fixes #79999 on Linux.
3453         
3454 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3455
3456         * ThemeWin32Classic.cs: Fix text redenring when button is
3457         pressed.
3458
3459 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
3460
3461         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
3462         and later navigate by mouse. Fixes #79528.
3463
3464 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3465
3466         * ToolBar.cs: Set default value for TabStop to false in
3467         constructor, it fixes remaining behavior of bug #79863.
3468
3469 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3470
3471         * MdiWindowManager.cs:
3472         * InternalWindowManager.cs:
3473         - Moved a few methods specific to Mdi from 
3474         InternalWindowManager to MdiWindowManager.
3475         Fixes #79996.
3476         
3477 2006-11-21  Chris Toshok  <toshok@ximian.com>
3478
3479         * XplatUIOSX.cs: stub out InvalidateNC.
3480
3481         * XplatUIWin32.cs: implement InvalidateNC using the call I found
3482         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
3483
3484         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
3485
3486         * XplatUIDriver.cs: add InvalidateNC abstract method.
3487
3488         * XplatUI.cs: add InvalidateNC.
3489
3490 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3491
3492         * ToolBar.cs: Invalidate complete button area when pressed status 
3493         was changed.
3494         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
3495         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
3496         by 1 when button is pressed.
3497
3498 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3499
3500         * ToolButton.cs: Invalidate middle of DropDown button when
3501         ToolBar theres DropDownArrows.
3502         * ThemeWin32Classic.cs: Change position of DropDown arrow and
3503         fix DropDown drawing operations.
3504
3505 2006-11-20  Chris Toshok  <toshok@ximian.com>
3506
3507         * NativeWindow.cs: fix the formatting of functions ('{' on the
3508         following line), and enable the thread exception dialog.
3509
3510         * Application.cs: remove the duplicate exception catching from
3511         here.
3512
3513 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3514
3515         * Toolbar.cs: Triggers button click event when click on icon
3516         of dropdown ToolBarButton. Fixes #79912.
3517         
3518 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3519
3520         * Theme.cs:
3521         * ThemeWin32Classic.cs:
3522         - Added a property WindowBorderFont to enable themeing
3523           of mdi child windows' Text.
3524           
3525 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3526
3527         * InternalWindowManager.cs:
3528         * Form.cs:
3529         * MdiClient.cs:
3530         * MdiWindowManager.cs: 
3531         - If mdi child is maximized, set mdi parent's
3532           text to "Parent - [Child]". Fixes #79770.
3533         - If there is any maximized mdi child windows, only the active 
3534           window (and any new windows) is maximized, the rest are normal.
3535         - On a WindowState change only save mdi child's window bounds 
3536           if the old window state was normal. Fixes #79774.
3537         - The scroll bars are now calculated on hopefully all
3538           necessary events. Fixed #79771 / #79844->6 / #79906.
3539         - MdiClient.SizeScrollBars() now takes into account docked 
3540           controls in the parent when calculating available space.
3541         - InternalWindowManager now always repaints the entire title
3542           area. Fixes #79844->1/4/5.
3543         - Added RequestNCRecalc on mdi child windowstate changes.
3544           Fixes #79772.
3545
3546 2006-11-20  Mike Kestner  <mkestner@novell.com>
3547
3548         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
3549         in the MouseUp handler of the listbox and move the return handling
3550         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
3551
3552 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3553
3554         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
3555
3556 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3557
3558         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
3559           working in 1.2.x anymore. So, updated.
3560
3561 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
3562
3563         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
3564         NumberGroupSeparator of current culture instead of assuming en-US.
3565         Fixed bug #79967.
3566
3567 2006-11-17  Mike Kestner  <mkestner@novell.com>
3568
3569         * Control.cs: Add the concept of implicit bounds setting so that
3570         dock/undock round trips preserve explicitly set size/locations.
3571         Fixes #79313.
3572
3573 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3574
3575         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
3576           can't handle those filters. (Fixes bug #79961)
3577
3578 2006-11-17  Chris Toshok  <toshok@ximian.com>
3579
3580         [ fixes the exit/crashes associated with #79835.  it's clearly
3581         suboptimal though, we need to figure out a better way to solve
3582         this. ]
3583         
3584         * PrintPreviewControl.cs: deal with the new invalid printer
3585         exceptions.
3586
3587         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
3588         and return false (so CommonDialog.ShowDialog doesn't actually show
3589         the form.)
3590
3591         * PrintDialog.cs: enable/disable the Ok button depending on
3592         whether or not the printer is valid.
3593
3594         * CommonDialog.cs (ShowDialog): only actually show the form if
3595         RunDialog returns true.
3596
3597 2006-11-17  Jackson Harper  <jackson@ximian.com>
3598
3599         * TextControl.cs: When soft splitting a line, mark it as a soft
3600         split line. Also carry over the current line break to the next
3601         line.
3602
3603 2006-11-17  Chris Toshok  <toshok@ximian.com>
3604
3605         * XplatUIX11.cs: when scrolling a window with an invalid area, we
3606         only want to shift the part of the invalid area that overlaps the
3607         area we're scrolling.  we also don't want to clear the invalid
3608         area unless the invalid area was entirely contained within the
3609         scrolling area.
3610
3611 2006-11-16  Chris Toshok  <toshok@ximian.com>
3612
3613         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
3614         also make sure to free the memory returned by XGetWindowProperty
3615         in GetText().
3616
3617         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
3618
3619 2006-11-16  Chris Toshok  <toshok@ximian.com>
3620
3621         * XplatUI.cs: add a new super secret way to get at the totally
3622         unsupported X11 backend.
3623
3624 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
3625
3626         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
3627
3628 2006-11-16  Jackson Harper  <jackson@ximian.com>
3629
3630         * TreeView.cs: Allow more explicit setting of top node position
3631         for scrollbars. Slower algo, but more accurate.
3632         - CollapseAll should maintain the current top node.
3633         * TextBoxBase.cs: When positioning the caret, use the line, pos
3634         method, since the x, y method does not grab the correct tag, and
3635         the caret height never gets set correctly. (Maybe I should just do
3636         away with the caret having its own height, and always use the
3637         carets current tag for height).
3638
3639 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
3640
3641         [Fixes 79778, 79923]
3642
3643         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
3644         Parent to the FosterParent instead.
3645
3646 2006-11-16  Jackson Harper  <jackson@ximian.com>
3647
3648         * TreeView.cs: Need to recalc the topnode when we expand or
3649         collapse. The scrolling methods can't handle this on their own,
3650         since they use differences between the last scroll position, and
3651         those difference get completely messed up since we are expanding
3652         nodes.  This problem should probably be fixed in the scrolling
3653         methods, so they can figure out exactly where they are, but this
3654         will slow things down a little.
3655         * ThemeWin32Classic.cs: Special case for groupboxes with empty
3656         strings, makes nunit-gui look a lot nicer.
3657
3658 2006-11-16  Chris Toshok  <toshok@ximian.com>
3659
3660         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
3661         the broken multithreaded event handling we have in here.  File
3662         this entry under "Why we should move to the new X11 backend".
3663
3664         Any thread can make it into UpdateMessageQueue, which gets events
3665         from the X socket - some of which could belong to hwnds being
3666         managed by a different thread.  We can also have multiple threads
3667         in UpdateMessageQueue at the same time, with each one reading from
3668         the X socket.  This leads to many problems, with the following
3669         solutions:
3670
3671         We can't use hwnd.Queue.Enqueue anywhere in here and must use
3672         EnqueueLocked.
3673
3674         The MotionNotify compression we do can't work across threads
3675         (without locking the entire queue, perhaps) since we call
3676         hwnd.Queue.Peek, so we just punt and don't compress motion events
3677         unless the owning thread is the one which got the X event.
3678
3679         ConfigureNotify is another fun one, since it modifies the hwnd's
3680         bounds and then enqueues the event.  We add a lock to Hwnd which
3681         is held when setting configure_pending to true (and enqueuing the
3682         event).
3683
3684         There is a race wrt the wake socket.  we need to make sure that
3685         only 1 thread is waiting on that socket, or else a thread could
3686         sleep waiting for data that never comes.  It's difficult (but not
3687         impossible) to make happen, because it seems to require something
3688         like the following:
3689
3690             1. Thread 1 polls on wake_receive
3691         
3692             2. poll returns saying there's data to be read on
3693                wake_receive.
3694         
3695             3. Thread 2 polls on wake_receive and immediately returns
3696                saying there's data to be read.
3697
3698             4. Thread 2 reads the wakeup byte from wake_receive
3699
3700             5. Thread 1 attempts to read the wakeup byte from
3701                wake_receive.
3702
3703             6. Thread 2 exits (due to a form closing, perhaps).
3704
3705             7. Thread 1 blocks forever.
3706         
3707         Fun, eh?
3708
3709         Fixing the Expose handling isn't done yet, and the races inherent
3710         in that piece of code are responsible for the drawing mistakes you
3711         see when generating expose events in a MT app (like NPlot).  This
3712         one is the likely to be the hardest to bandaid, and it doesn't
3713         appear to cause anything but drawing problems.  The other issues
3714         caused apps to exit or hang.
3715
3716         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3717         called from a different thread than the one that should be calling
3718         these functions.
3719
3720         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3721
3722 2006-11-15  Chris Toshok  <toshok@ximian.com>
3723
3724         * Application.cs: null out the context's MainForm when we exit
3725         RunLoop.  Fixes a newly checked in unit test as well as the last
3726         ODE from bug #79933.
3727
3728 2006-11-15  Chris Toshok  <toshok@ximian.com>
3729
3730         * Form.cs (set_Owner): allow a null value so we can clear the
3731         form's owner.
3732         (Dispose): set all our owned_form's Owner properties to null, and
3733         clear the owned_forms collection.
3734         (WM_CLOSE): clean up this a little bit.. still not right though.
3735
3736         * ApplicationContext.cs: OnMainFormClosed should only call
3737         ExitThreadCore if the main form isn't recreating.  Fixes unit
3738         test.
3739
3740 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3741
3742         [Fixes 78346]
3743
3744         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3745
3746 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3747
3748         [Fixes 79433]
3749
3750         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3751         keep popup window types from stealing focus from the main form
3752         on Windows.
3753
3754         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3755
3756         * MenuAPI.cs: Set above flag to true.
3757
3758 2006-11-15  Chris Toshok  <toshok@ximian.com>
3759
3760         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3761         the button being released is not in wParam.
3762
3763 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3764
3765         * Form.cs: Add the released button to MouseEventArgs.Button
3766         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3767         on Win32.
3768
3769 2006-11-15  Chris Toshok  <toshok@ximian.com>
3770
3771         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3772         GetText().  untested because it's unused in our implementation.
3773         Control.Text always caches the text, even if
3774         ControlStyles.CacheText is not set.
3775
3776         fixes bug #79939.
3777
3778 2006-11-15  Chris Toshok  <toshok@ximian.com>
3779
3780         [ fixes #79933 ]
3781         
3782         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3783         message.  no hiding, no disposing.
3784
3785         in the WM_CLOSE handler, hide the form if it's modal.
3786
3787 2006-11-15  Chris Toshok  <toshok@ximian.com>
3788
3789         * XplatUIX11.cs: use AddExpose instead of sending a message.
3790         fixes textbox border drawing.
3791
3792 2006-11-15  Chris Toshok  <toshok@ximian.com>
3793
3794         * PropertyGridView.cs: keep from crashing on mouse move/down when
3795         the property grid is empty.
3796
3797 2006-11-14  Jackson Harper  <jackson@ximian.com>
3798
3799         * TextControl.cs: Make PageUp and PageDown more like the MS
3800         versions.
3801         * TextBoxBase.cs: When we set the text property position the
3802         cursor at the beginning of the document.
3803
3804 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3805
3806         * Form.cs: if a mdi child's WindowState has changed
3807         before it's creation, it would display wrong control
3808         buttons.
3809         
3810 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3811
3812         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3813           (Fixes bug #79927)
3814
3815 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3816
3817         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3818         the window gets to paint its borders even if the window is
3819         getting smaller.
3820         
3821         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3822         otherwise the old control buttons would still be painted 
3823         if the window gets bigger.
3824         
3825         * PaintEventArgs.cs: add an internal method so that the clip 
3826         rectangle can be changed.
3827         
3828 2006-11-13  Chris Toshok  <toshok@ximian.com>
3829
3830         [ fixes bug #79745 ]
3831         
3832         * NotifyIcon.cs: lots of cleanup.
3833
3834         * X11Structs.cs: add an enum for XEMBED messages.
3835
3836         * XplatUIX11.cs: reindent one of the giant switch statements, it
3837         was taking up an additional tab stop, and this file is already way
3838         too wide for my laptop's screen.
3839
3840         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3841         we get it, resize the hwnd to the WMNormalHints max_width/height.
3842
3843 2006-11-13  Jackson Harper  <jackson@ximian.com>
3844
3845         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3846         teh simple way.
3847
3848 2006-11-13  Chris Toshok  <toshok@ximian.com>
3849
3850         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3851         #79898.  force a reference to the Region to stick around so the
3852         unmanaged object isn't collected (rendering our handle in the MSG
3853         stale).
3854
3855 2006-11-13  Chris Toshok  <toshok@ximian.com>
3856
3857         * XplatUIX11.cs: fix #79917 for window managers which support
3858
3859         using XStoreName on the raw utf8, and we need to convert to
3860         COMPOUND_TEXT if it's non-latin1.
3861
3862 2006-11-13  Chris Toshok  <toshok@ximian.com>
3863
3864         * Form.cs (set_DialogResult): we need to set closing to false if
3865         we're setting our result to None.  fixes bug #79908.
3866
3867 2006-11-13  Jackson Harper  <jackson@ximian.com>
3868
3869         * TextControl.cs: When formatting text, compute the adjusted tag
3870         lengths correctly, using FindTag for the end tag instead of trying
3871         to figure it out outselves.
3872         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3873         the item, ItemHeight doesn't work, because trees with large
3874         imagelists use those for their height
3875         * TreeView.cs: ActualItemHeight factors in the image height
3876         - compute left edge of checkboxes correctly
3877         - when expanding/collapsing move the bottom down one pixel, so we
3878         aren't moving part of the node
3879
3880 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3881
3882         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3883         stack in PaintEventStart so that it won't get disposed by the gc
3884         before reaching PaintEventEnd.
3885
3886 2006-11-13  Jackson Harper  <jackson@ximian.com>
3887
3888         * TextBoxBase.cs: Don't select the word if we are on a line with
3889         no text.
3890         - We don't need to position the caret on mouse up, since the mouse
3891         move handler should be doing this
3892         - When double clicking a blank line, the caret is advanced to the
3893         next line.
3894
3895 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3896
3897         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3898
3899 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3900
3901         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3902         Fixes part of bug #79910.
3903
3904 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3905
3906         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3907           (bug #79903). Some minor string updates to match ms.
3908
3909 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3910
3911         * FileDialog.cs: Don't add an extension if the filename
3912           already ends with that extension.
3913
3914 2006-11-10  Jackson Harper  <jackson@ximian.com>
3915
3916         * TreeView.cs: Use the currently highlighted node for the
3917         BeforeSelect event.
3918         * TextBoxBase.cs: There is no need to expand selection on
3919         MouseMove.
3920         - CanUndo means 'is there any undo operations', not 'is undo
3921         allowed on this textcontrol. Fixed ClearUndo unit test.
3922
3923 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3924
3925         * Button.cs: only perform click when button is Selectable (so as 
3926         not to activate default buttons when they're disabled)
3927         
3928         * Control.cs: Rewrite of the SelectNextControl and related 
3929         methods. HandleClick now selects next control if the current one
3930         is being disabled.
3931         
3932         * Form.cs: OnActivated selects next active control only if Load 
3933         has already occurred. If Load hasn't run, there's no point in 
3934         selecting here, Load might change the state of controls.
3935         
3936         * FocusTest.cs: Tests marked as working again for these fixes
3937
3938 2006-11-10  Chris Toshok  <toshok@ximian.com>
3939
3940         * XplatUIX11.cs: a couple of fixes.
3941
3942         - use XInternAtoms with almost all the atoms we need to register,
3943         instead of many, many calls to XInternAtom.  should help a bit on
3944         startup time, at the expense of making the code look a little
3945         worse.
3946
3947         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3948         isn't reparented (which seems to be a clue that we're running fon
3949         compiz) and they have an Owner form.  This fixes the tool windows
3950         in paint.net when running under compiz.
3951
3952         - when setting the opacity of a window, support both the case
3953         where the window has been reparented and also when it hasn't been.
3954         Since compiz/beryl doesn't seem to reparent windows, and these are
3955         the only window managers which support translucency, I'm not sure
3956         why we need the hwnd.reparented case at all.. but leave it in.
3957         now we get translucent windows in paint.net under compiz/beryl.
3958
3959 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3960
3961         * FileDialog.cs: Always return the value for FilterIndex that
3962           was set. Internally convert it to values that make sense.
3963
3964 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3965         
3966         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3967
3968 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3969
3970         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3971         signature still using false to make it compatible with MS but the 
3972         initial value is true. Fixes #79855.
3973
3974 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3975
3976         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3977           only available on Linux.
3978
3979 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3980
3981         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3982         reduce number of calls to redraw method during toolbar creation.
3983
3984 2006-11-09  Mike Kestner  <mkestner@novell.com>
3985
3986         * ListView.cs : raise SelectedIndexChanged when an item is selected
3987         programmatically via the Item.Selected property.  Gert's nice 
3988         ListViewSelectedIndexChanged test fixture now runs clean.
3989
3990 2006-11-09  Mike Kestner  <mkestner@novell.com>
3991
3992         * ListView.cs : raise SelectedIndexChanged when a selected item is
3993         removed from the item collection using Remove or RemoveAt.
3994
3995 2006-11-09  Mike Kestner  <mkestner@novell.com>
3996
3997         * ListView.cs : raise SelectedIndexChanged once per selected item
3998         for compat with MS.  Fixes #79849+.
3999
4000 2006-11-09  Chris Toshok  <toshok@ximian.com>
4001
4002         * TabControl.cs: initialize row_count to 0, and set it to 1 when
4003         we need to (if we have any tab pages).  Fixes unit test.
4004
4005 2006-11-09  Chris Toshok  <toshok@ximian.com>
4006
4007         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
4008         width is 0, not 3.  Fixes a unit test.
4009
4010 2006-11-09  Mike Kestner  <mkestner@novell.com>
4011
4012         * ListView.cs : use Implicit scrollbars so that focus isn't 
4013         stolen from the listview when they are clicked. Fixes #79850.
4014
4015 2006-11-09  Chris Toshok  <toshok@ximian.com>
4016
4017         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
4018         have a root item.  Fixes #79879.
4019
4020 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
4021
4022         * FileDialog.cs:
4023           - Fix ToString ()
4024           - An ArgumentException is now thrown if a wrong filter
4025             is applied (matches ms). The previous filter doesn't change
4026             anymore if an exception is thrown.
4027           - Changing the FileName property also affects FileNames
4028         * ColorDialog.cs: The length of the CustomColors array is always
4029           16. It doesn't matter if we use a smaller array or null to update
4030           or change the custom colors property.
4031         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
4032           for RootFolder if we get a undefined value.
4033
4034 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4035
4036         * StatusBarPanel.cs: 
4037         - Width is set to MinWidth if Width is smaller than
4038         MinWidth. Fixes #79842.
4039         - MinWidth now always overrides Width (MSDN says MinWidth
4040         is set to Width when AutoSize = None, but they do not 
4041         behave like that).
4042         - Style has now the the correct default value.
4043         
4044 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4045  
4046         * TrackBar.cs: 
4047         - The control is completely invalidated on 
4048         Got/LostFocus to draw the focus rectangle correctly.
4049         - When AutoSize then height is always 45 (width for 
4050         vertical controls).
4051         
4052         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
4053         on the mouse when moved and it doesn't move when grabbed
4054         until the mouse moves as well. Also fixed some wrong 
4055         calculations when clicking on the thumb (control thought
4056         click was outside of thumb and didn't grab it).
4057         Fixes some of the issues in #79718.
4058
4059 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
4060
4061         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
4062
4063 2006-11-08  Chris Toshok  <toshok@ximian.com>
4064
4065         * PropertyGridView.cs: only call ToggleValue if the item is not
4066         readonly.
4067
4068 2006-11-08  Jackson Harper  <jackson@ximian.com>
4069
4070         * TextBoxBase.cs: The RichTextBox and textbox have very different
4071         word selection methods.  Implement the textbox's simple word
4072         selection here, and let the RichTextBox override and provide it's
4073         own.
4074         - Don't do extra selection on mouseup
4075         * RichTextBox.cs: Use the documents word selection algorithm, I
4076         think ideally, this function will be pulled into the
4077         RichTextBox.cs code someday.
4078
4079 2006-11-08  Chris Toshok  <toshok@ximian.com>
4080
4081         * RootGridEntry.cs: new class to represent GridItemType.Root.
4082
4083         * CategoryGridEntry.cs: reformat, and add boilerplate.
4084         
4085         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
4086         returns the UI parent anyway, and we need special handling to
4087         implement the GetTarget method in the face of it.  Also, implement
4088         Select().
4089
4090         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
4091         a root grid item, and use that instead of PropertyGrid.grid_items.
4092         Also, make use of TypeConverters (and add limitted support for
4093         ICustomTypeDescriptors) when initially populating the grid.
4094         Arrays now show up more or less properly.
4095
4096 2006-11-08  Chris Toshok  <toshok@ximian.com>
4097
4098         * Application.cs: set the modal dialog to non modal after we close
4099         it.  Fixes bug #79866.
4100
4101 2006-11-08  Jackson Harper  <jackson@ximian.com>
4102
4103         * TextControl.cs: When combining lines carry over the line end
4104         style from the end line.
4105         - Invalidate the selected area when setting it, if it is visible.
4106         * TextBoxBase.cs: Only rich text box can do full line selects.
4107         - Make sure to set the cursor position when there is a click,
4108         otherwise two clicks in separate areas could cause a large chunk
4109         to be selected.
4110
4111 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4112
4113         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
4114         Fixes #79863.
4115
4116 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4117
4118         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
4119         time. Remove tooltips when ToolButton click events.  Fixes #79856.
4120
4121 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4122
4123         * MenuAPI.cs: Ignore right click for menu actions and fixes
4124         menu border when clicked.  Fixes #79846.
4125
4126 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4127
4128         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
4129         MouseState after create wParam for message, this fixes mouse button 
4130         equal none in mouse up events.
4131         
4132 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
4133
4134         * Control.cs : Focus() now calls Select to set the Container's
4135         Active Control and to give it focus. To avoid infinite recursion
4136         (because ActiveControl also calls Focus at one point), a check 
4137         is made in Focus with the help of a new internal variable
4138         is_focusing.
4139
4140 2006-11-07  Mike Kestner  <mkestner@novell.com>
4141
4142         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
4143         if there's a selection.  Fixes #79849.
4144
4145 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
4146
4147         * PropertyGrid.cs: Avoid fixed height of help description label.
4148         Fixes part of bug #79829.
4149
4150 2006-11-07  Chris Toshok  <toshok@ximian.com>
4151
4152         * XplatUIX11.cs: fix #79790 again, by using the
4153         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
4154
4155 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4156
4157         * ToolBar.cs: Fix left click checking.
4158
4159 2006-11-07  Chris Toshok  <toshok@ximian.com>
4160
4161         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
4162
4163 2006-11-07  Chris Toshok  <toshok@ximian.com>
4164
4165         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
4166         PropertyManager unit tests.
4167
4168         * PropertyManager.cs: make property_name internal.
4169
4170 2006-11-07  Chris Toshok  <toshok@ximian.com>
4171
4172         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
4173         pass a unit test.  Also, don't set image_index to anything in
4174         response to setting the ImageList property.
4175
4176 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
4177
4178         * ToolBar.cs: Ignore click events when mouse button is not a
4179         left button, only accepts other button for dropdown menus.  
4180         Fixes #79854.
4181
4182 2006-11-07  Chris Toshok  <toshok@ximian.com>
4183
4184         * DataGrid.cs: make the back and parent row buttons a little less
4185         ugly.
4186
4187 2006-11-07  Jackson Harper  <jackson@ximian.com>
4188
4189         * TextBoxBase.cs: When converting to Text don't put line breaks in
4190         for soft line breaks.
4191         * TextControl.cs: There is an initial "fake" line in the document,
4192         this is now a soft break line, so that an extra line feed doesn't
4193         get added to the end of documents.
4194
4195 2006-11-07  Chris Toshok  <toshok@ximian.com>
4196
4197         [ fix bug #79778 ]
4198         
4199         * CurrencyManager.cs: if the list is readonly, don't bother
4200         checking if IBindingList.AllowNew is true.
4201
4202         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
4203         for non-DataRowView datasources..  or rather, make it not crash.
4204         (DataGridPaintRelationRow): make sure we limit the row painting to
4205         the area not covered by the row header, and make our cell width at
4206         least large enough to cover the relation area.  This allows grids
4207         that have relations but no rows to render correctly.
4208         (DataGridPaintRowContents): same type of changes here.
4209         (SetDataSource): move back to always calling
4210         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
4211         navigating back through relations.
4212         (HitTest): handle the case where we have no cells but have
4213         relations.  Right now we generate a hit in cell 0 of whatever the
4214         row is, not sure if this is strictly correct, but it works for our
4215         purposes.
4216         
4217         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
4218         bother doing anything.
4219
4220 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
4221
4222         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
4223         early version of StatusStrip.  Not responsible for eaten
4224         application or firstborn children.
4225
4226 2006-11-06  Chris Toshok  <toshok@ximian.com>
4227
4228         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
4229         call GetTabRect with a -1 index.  Fixes #79847.
4230
4231 2006-11-06  Jackson Harper  <jackson@ximian.com>
4232
4233         * TreeNodeCollection.cs: Update scrollbars after clearing.
4234
4235 2006-11-06  Chris Toshok  <toshok@ximian.com>
4236
4237         * NumericUpDown.cs: fix the ToString method for some unit test
4238         love.
4239
4240 2006-11-06  Chris Toshok  <toshok@ximian.com>
4241
4242         * PropertyGrid.cs:
4243         - set the initial SelectedGridItem if we can.
4244
4245         - Exclude non-mergable properties only if we're merging > 1
4246         object.  Merging 1 object isn't really merging, obviously.
4247
4248         - Handle PropertySort.NoSort just like Alphabetical, which is
4249         wrong of course, but at least gets things on the screen.
4250         
4251         * PropertyGridView.cs:
4252         - Add method "FindFirstItem" which finds the first property grid
4253         item, so we can select it by default.
4254
4255         - make use of GridEntry.CanResetValue.
4256
4257         - Don't call RedrawBelowItemOnExpansion here anymore, the
4258         individual GridEntry's will do that.
4259
4260         - Remove the ITypeDescriptorContextImpl internal class.
4261         
4262         * GridEntry.cs:
4263         - this class needs to implement ITypeDescriptorContext, as it's
4264         what MS's PropertyDescriptorGridEntry does, which means we can
4265         remove the ITypeDescriptorContextImpl internal class from
4266         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
4267
4268         - keep a reference to our PropertyGridView, and move the call to
4269         RedrawBelowItemOnExpansion here from PGV.  This means
4270         programmaticly setting Expanded actually does something visible.
4271
4272         - add a CanResetValue() function which takes into account our
4273         possibly multiple "selected_objects" in the merged case.  Shifting
4274         PropertyGridView to use this method fixes another unreported
4275         crasher found running the test for #79829.
4276
4277         - when Top or Bounds is updated, make sure the PropertyGridTextBox
4278         is updated to reflect this.
4279
4280         * CategoryGridEntry.cs: the ctor takes the PGV now.
4281         
4282 2006-11-06  Jackson Harper  <jackson@ximian.com>
4283
4284         * TextControl.cs: These are 1 based.
4285         * TextBoxBase.cs: When setting the selected text, don't change the
4286         selected text tags, this is done by ReplaceText, just position the
4287         cursor at the end of the new text.
4288
4289 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4290
4291         * ListView.cs: Allow label edit only when, when LabelEdit is
4292           set to true.
4293
4294 2006-11-06  Jackson Harper  <jackson@ximian.com>
4295
4296         * TextControl.cs: If a suitable wrapping position isn't found,
4297         just wrap right in the middle of a word.
4298
4299 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
4300
4301         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
4302           bug #79820.
4303
4304 2006-11-06  Jackson Harper  <jackson@ximian.com>
4305
4306         * TreeView.cs: Can't use the VisibleCount property when setting
4307         scrollbar heights, because this doesn't take into account whether
4308         or not the horz scrollbar just came visible.
4309
4310 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
4311
4312         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
4313         activated.  Fixes #79369, #79832.
4314
4315 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
4316
4317         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
4318           had to remove support for links that point to a directory. FileInfo
4319           returns no usefull information (means, the directory they point to)
4320           for such links. Replaced some empty string ("") with String.Empty.
4321
4322 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4323
4324         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
4325         NullReferenceException when attempting to remove node that is not in
4326         collection. Throw NullReferenceException when null is passed to 
4327         Remove. Allow first element of the collection to be removed. Fixes
4328         bug #79831.  In GetEnumerator ().Current return null if positioned 
4329         before the first element of the collection. In GetEnumerator ().Reset,
4330         position before first element of the collection.
4331
4332 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
4333
4334         * PropertyGrid.cs: To match MS, remove default title and description
4335         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
4336         buttons.
4337
4338 2006-11-04  Chris Toshok  <toshok@ximian.com>
4339
4340         * Theme.cs: add a Clamp method, just for kicks.
4341
4342         * ThemeWin32Classic.cs: clamp all color components to [0..255].
4343
4344 2006-11-04  Chris Toshok  <toshok@ximian.com>
4345
4346         * Form.cs: if the form isn't visible, Close() does nothing.
4347
4348 2006-11-03  Chris Toshok  <toshok@ximian.com>
4349
4350         * Form.cs (Close): if the form is modal, don't Dispose of it, only
4351         Hide it.
4352         (WndProc): don't Dispose after handling the WM_CLOSE message.
4353
4354         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
4355         them as such, instead of using casts from Control to Form.  Also,
4356         don't Dispose of the modal dialog when we fall out of the loop -
4357         Close() it instead.
4358
4359         fixes bug #79813.
4360
4361 2006-11-03  Chris Toshok  <toshok@ximian.com>
4362
4363         * Control.cs (Dispose): only go through the dispose thing if we're
4364         @disposing, and we haven't already been disposed.  Fixes bug
4365         #79814.
4366
4367         * Form.cs: no reason to call "base.Dispose()" here instead of
4368         "Dispose()".
4369
4370 2006-11-03  Mike Kestner  <mkestner@novell.com>
4371
4372         * ComboBox.cs : use ToString instead of casts in AddItem for
4373         sorting functionality.  Fixes #79812.
4374
4375 2006-11-03  Chris Toshok  <toshok@ximian.com>
4376
4377         * Application.cs: pave the way for actually using the thread
4378         exception dialog.  it's ifdefed out at the moment.
4379
4380 2006-11-03  Chris Toshok  <toshok@ximian.com>
4381
4382         * ThreadExceptionDialog.cs: until we get a better layout, actually
4383         hide the details textbox and label when we shouldn't see them.
4384
4385 2006-11-03  Jackson Harper  <jackson@ximian.com>
4386
4387         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
4388         multiline textboxes anymore.  This method also determines the
4389         width/height of a textboxes canvas area.
4390         - Sorta a revert of the last patch.  For multiline just position
4391         the controls, then bail.  This way the scrollbar width won't be
4392         altered.
4393
4394 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
4395
4396         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
4397         it dont need.  Fixes #79537.
4398
4399 2006-11-02  Jackson Harper  <jackson@ximian.com>
4400
4401         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
4402         send the status after firing the DndOver event.
4403
4404 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4405
4406         * TrackBar.cs: Now orientation only switches height / width if
4407         the control's handle is created (Win32 does it like this). Also 
4408         fixed a typo in ToString() for a test to pass, changed the 
4409         exception thrown in set_LargeChange and set_SmallChange to 
4410         match Win32 behaviour, and added TrackBar tests to the unit 
4411         tests.
4412
4413 2006-11-02  Chris Toshok  <toshok@ximian.com>
4414
4415         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
4416         not _NET_WM_STATE_NO_TASKBAR.
4417
4418 2006-11-02  Jackson Harper  <jackson@ximian.com>
4419
4420         * TextControl.cs: Increment count by one, since in the update view
4421         count - 1 is used.
4422
4423 2006-11-02  Jackson Harper  <jackson@ximian.com>
4424
4425         * TextBoxBase.cs: Use client rectangle not bounds for checking if
4426         the mouse is in the client rectangle (duh).
4427
4428 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4429         
4430         * TrackBar.cs: Fixed trackbar jumping around when clicking
4431         on it - the trackbar was not detecting correctly at which
4432         side of the thumb the click was done. (fixes #79718)
4433
4434 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4435
4436         * ListBox.cs: scroll visible area when change SelectedIndex to
4437         a non visible area.  Fixes #79481.
4438
4439 2006-11-01  Jackson Harper  <jackson@ximian.com>
4440
4441         * TextControl.cs: When replacing the selection move the selection
4442         start/end/anchor to the end of the new text.
4443
4444 2006-11-01  Jackson Harper  <jackson@ximian.com>
4445
4446         * XplatUIWin32.cs: When setting the parent change the controls
4447         visibility to it's visibility flag, not to it's old parents
4448         visibility (.Visible walks the parent chain).
4449
4450 2006-11-01  Chris Toshok  <toshok@ximian.com>
4451
4452         * XplatUIX11.cs: revert the #79790 fix, as the simple.
4453         XSetTransientForHint fix breaks paint .net's tool windows.  more
4454         work needed for that one.
4455
4456 2006-11-01  Chris Toshok  <toshok@ximian.com>
4457
4458         * ScrollBar.cs: throw ArgumentException instead of Exception in
4459         LargeChange/SmallChange setters.  fixes unit tests.
4460
4461 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4462
4463         * ContainerControl.cs: reverted rev.67183 (which was itself
4464         a reversion of rev.66853... eh).
4465         
4466         * Control.cs: Fixes Reflector hang by changing Focus() call
4467         to what it was before rev.66643 (calling Select() here sets 
4468         ActiveControl, which in some situations calls back Focus and 
4469         eventually does a stack overflow). Temp fix.    
4470         Changes to GetNextControl() to not look for children to select when
4471         parent cannot be selectable (so it looks for siblings instead)  
4472         
4473 2006-10-31  Mike Kestner  <mkestner@novell.com>
4474
4475         * CheckedListBox.cs : off by one error in returned index from
4476         ObjectCollection.Add.  Fixes #79758.
4477
4478 2006-10-31  Chris Toshok  <toshok@ximian.com>
4479
4480         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
4481         calls for the textbox/spinner, to keep from recursing to the point
4482         where we crash.  Fixes #79760.
4483
4484 2006-10-31  Chris Toshok  <toshok@ximian.com>
4485
4486         * ListControl.cs (set_SelectedValue): don't throw exceptions on
4487         null/"" value, just return.  matches ms's behavior and fixes some
4488         failing tests.
4489
4490 2006-10-31  Chris Toshok  <toshok@ximian.com>
4491
4492         * Control.cs (set_Capture): make a logic a little easier to
4493         follow.
4494
4495         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
4496         if it's being destroyed.  A necessary fix surely, but a bandaid
4497         also, to fix the stuck capture problem in bug #78413.
4498
4499 2006-10-31  Chris Toshok  <toshok@ximian.com>
4500
4501         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
4502         convention of clearing hwnd.ClientRect when we set the
4503         width/height (so it'll be recalculated by Hwnd).
4504
4505 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4506
4507         * ContainerControl.cs: reversed Contains check from
4508         ActiveControl due to hanging problems. This fix
4509         partly regresses #79667 (button does not have
4510         initial focus), so this might be a symptom for 
4511         a larger parenting problem (set_ActiveControl
4512         is being called but the child control does
4513         not have the parent set yet?)   
4514         
4515 2006-10-31  Mike Kestner  <mkestner@novell.com>
4516
4517         * MenuAPI.cs : fix keynav when menu is click activated.
4518
4519 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
4520
4521         * ToolStrip*: Version 0.2.
4522
4523         * MenuStrip.cs: Version 0.1.
4524
4525         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
4526
4527 2006-10-30  Chris Toshok  <toshok@ximian.com>
4528
4529         [ fixes the oversized notify icon issue in bug #79745 ]
4530         
4531         * NotifyIcon.cs: scale the icon down to the size we're given by
4532         the XplatUI layer (this would be faster if we did it once instead
4533         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
4534         since it's never invoked.
4535
4536         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
4537         pixels high by default, so let's hardcode our systray icon to that
4538         size.  The SYSTEM_TRAY protocol should really have a way for
4539         client apps to query for the correct icon size.. but oh well.  A
4540         couple of patches to deal with the screwy client_window ==
4541         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
4542         instance, and also make sure we don't XSelectInput twice).
4543
4544 2006-10-30  Chris Toshok  <toshok@ximian.com>
4545
4546         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
4547         recreating forms.  Control recreation is the bane of my existence.
4548         Fix it in a way that keeps everyone happy.
4549
4550 2006-10-30  Chris Toshok  <toshok@ximian.com>
4551
4552         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
4553         just non-CHILD ones.  otherwise sometimes scrollbars end up with
4554         client_windows not being resized to the proper size (ReportBuilder
4555         shows this extremely well).
4556
4557 2006-10-30  Chris Toshok  <toshok@ximian.com>
4558
4559         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
4560         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
4561         showing up in the gnome taskbar.  Fixes bug #79790.
4562
4563 2006-10-30  Chris Toshok  <toshok@ximian.com>
4564
4565         * ApplicationContext.cs: guard against a NRE.
4566
4567         * Application.cs: null out the old MainForm for the context, so we
4568         don't try to use it again once it's disposed.  Fixes bug #79783.
4569
4570 2006-10-30  Chris Toshok  <toshok@ximian.com>
4571
4572         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
4573         BindingContext, set the data source directly, otherwise do the
4574         lazy approach - the actual ListManager will be created when we get
4575         a BindingContext. Fixes bug #79700.
4576
4577 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4578
4579         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
4580           XplatUIX11.cs: Remove old 2 parameter SetVisible.
4581
4582         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
4583
4584 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4585
4586         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
4587         of SetVisible that allows a window to be shown, but not activated.
4588         This is needed on Windows for MenuStrip, and can probably be used
4589         with MainMenu and ComboBox to fix the focus stealing issues on
4590         Windows.
4591
4592         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
4593
4594 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
4595
4596         * PictureBox.cs: Fix the output of the ToString method.
4597
4598 2006-10-29  Chris Toshok  <toshok@ximian.com>
4599
4600         * Control.cs (get_TopLevelControl): fix bug #79781.
4601
4602 2006-10-29  Chris Toshok  <toshok@ximian.com>
4603
4604         * ListControl.cs (set_DataSource): throw Exception here, not
4605         ArgumentException, to match MS behavior.
4606
4607 2006-10-29  Chris Toshok  <toshok@ximian.com>
4608
4609         * Form.cs: remove the try-catch's around calls to GetWindowState.
4610         We can just check the return value.
4611
4612         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
4613         Instead return -1.
4614
4615         * XplatUI.cs: Add note about additional return value for
4616         GetWindowState.
4617
4618 2006-10-29  Chris Toshok  <toshok@ximian.com>
4619
4620         * Control.cs (CreateHandle): when we create our handle, we also
4621         create the handles of our child controls.  Fixes one of the
4622         Control unit tests (CH11).
4623
4624 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4625
4626         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
4627
4628 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4629
4630         * ThemeClearlooks.cs: A little speedup.
4631
4632 2006-10-27  Chris Toshok  <toshok@ximian.com>
4633
4634         * Control.cs: implement Control.FromChildHandle in a way that
4635         matches the docs (and fixes the failed test.)
4636
4637 2006-10-27  Chris Toshok  <toshok@ximian.com>
4638
4639         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
4640         comments).
4641
4642         * DataGrid.cs: implement ResetForeColor such that the tests
4643         succeed.
4644         
4645 2006-10-27  Chris Toshok  <toshok@ximian.com>
4646
4647         * ToolBarButton.cs: setting text/tooltiptext to null results in it
4648         being set to "".  Fixes bug #79759.
4649
4650 2006-10-27  Jackson Harper  <jackson@ximian.com>
4651
4652         * TextControl.cs: We need to clear the entire selection area when
4653         setting the start, otherwise multiline selections are still
4654         visible.
4655
4656 2006-10-26  Chris Toshok  <toshok@ximian.com>
4657
4658         * PropertyGridView.cs: 
4659
4660         - ifdef all the code specific to the double
4661         buffer case, and provide some alternatives in the non-doublebuffer
4662         code, which makes heavy use of XplatUI.ScrollWindow to move things
4663         around without having to invalidate (and cause flicker).  There
4664         are still some drawing problems in the non-doublebuffered case, so
4665         DOUBLEBUFFER is defined by default.
4666
4667         - Fix the way dropdowns are handled.  now we explicitly watch for
4668         the events which might cause the dropdown to close, and break out
4669         of the nested event loop there.  This gets rid of all Capture
4670         code, at the expense of the Msg special casing.  Seems to work,
4671         though, and fixes bug #79743.
4672
4673 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4674         * Control.cs: SetIsRecreating now recreates implicitly added
4675         child controls as well. Finally fixes #79629. The flag passed to 
4676         SetIsRecreating has also been removed since it wasn't used.
4677         
4678 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4679
4680         * PageSetupDialog.cs: Clean some code, fix some bits, 
4681         add some checks, and add a printer sub-dialog.
4682
4683 2006-10-26  Chris Toshok  <toshok@ximian.com>
4684
4685         * PropertyGrid.cs: make set_SelectedObject call
4686         set_SelectedObjects, and move the duplicate logic to the
4687         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4688
4689         * PropertyGridView.cs: hide the textbox when we get a
4690         SelectedObjectsChanged event.
4691
4692         Fixes bug #79748.
4693
4694 2006-10-26  Chris Toshok  <toshok@ximian.com>
4695
4696         * PropertyGridView.cs: deal with the type converter not supporting
4697         GetStandardValues() or GetStandardValues() returning null, which
4698         is does in the default case.  Fixes #79742.
4699
4700 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4701
4702         * CheckedListBox.cs: nunit no longer crashes when selecting 
4703         Project/Edit menu option
4704         
4705 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4706
4707         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4708         is no menu selected. fixes #79739
4709
4710 2006-10-25  Chris Toshok  <toshok@ximian.com>
4711
4712         * PropertyGridView.cs: factor out the splitter invalidation code
4713         into the SplitterPercent setter, and for kicks implement the
4714         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4715         amount in either direction.
4716
4717 2006-10-25  Chris Toshok  <toshok@ximian.com>
4718
4719         * PropertyGridView.cs: do some cleanup of the brush used to draw
4720         text - read only fields should be grayed out.  not sure how to do
4721         this with the textbox, though.  but the textbox's should also be
4722         readonly now at least.  Also, hide/show the textbox when resizing
4723         the control.
4724         
4725         * CursorConverter.cs: use System.Reflection when getting the
4726         properties of Cursors, as TypeDescriptor.GetProperties isn't
4727         returning static properties.
4728
4729 2006-10-25  Chris Toshok  <toshok@ximian.com>
4730
4731         * PropertyGridView.cs: factor out the up/down handling, and reuse
4732         it for page up/down.  also add End/Home support.
4733
4734 2006-10-25  Chris Toshok  <toshok@ximian.com>
4735
4736         * PropertyGridView.cs:
4737
4738         - ensure the selected grid item is visible in the scrolled area,
4739         fixes bug #79572.
4740
4741         - fix Keys.Down handling when you're on the last item in the
4742         propertygrid.
4743
4744 2006-10-25  Mike Kestner  <mkestner@novell.com>
4745
4746         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4747         clicks too.  Fixes #79725.
4748
4749 2006-10-24  Chris Toshok  <toshok@ximian.com>
4750
4751         * PropertyGrid.cs: use property.Converter instead of
4752         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4753         TypeConverters declared on the property as well as on the
4754         PropertyType.  Fixes bug #79678.
4755
4756 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4757
4758         * MimeIcon.cs, Mime.cs:
4759           Fallback to the default platform handler if no shared mime info
4760           stuff exists (fixes #79693).
4761
4762 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4763         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4764         from previous fix (duh).
4765
4766 2006-10-20  Chris Toshok  <toshok@ximian.com>
4767
4768         * PropertyGridView.cs: the dropdown should be MIN(number of items
4769         in list, 15).  Fixes #79551.
4770
4771 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4772         Fixes #79384, #79394, #79652, #79667
4773         * Application.cs: 
4774         
4775         - Modal windows are now destroyed in the proper order for windows
4776         
4777         * ContainerControl.cs:
4778         
4779         - ActiveControl setter has more conditions on when to return:
4780                 - if we're reselecting the active control, but it actually
4781                 didn't have focus (window hidden or some such), it runs
4782                 - if the active control being selected doesn't actually 
4783                 exist in the container, it returns
4784         
4785         * Form.cs
4786         
4787         - The ShowDialog now gets the current form as the owner when
4788         invoking without parameters, and correctly activates the owner 
4789         when returning
4790         
4791         * MessageBox.cs
4792         
4793         - MessageBox now catches the Escape key to exit
4794
4795 2006-10-20  Chris Toshok  <toshok@ximian.com>
4796
4797         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4798         most of bug #79676):
4799
4800         - you can navigate around the property grid with the arrow keys.
4801
4802         - the dropdown is sized properly when the pg has a vertical
4803         scrollbar.
4804
4805         - fix the indentation for subentries, and properly select the
4806         entire label rect.
4807
4808         - fix the gray bar's drawing (only draw it to the last element,
4809         not for the height of the control.  Also make sure we draw that
4810         last horizontal grid line.
4811
4812         - use the same mechanism the datagrid uses wrt the editing textbox
4813         when scrolling/resizing/etc.  Namely, we hide it first, do the
4814         operation, then show it again (if it's still visible).
4815         
4816         - aggressively remove a lot of unnecessary refreshes (and also
4817         calls to Invalidate(). call more limited variants, and only redraw
4818         what we need.)
4819         
4820         * PropertyGrid.cs:
4821
4822         - when we're populating the merged collection, fill in the UI
4823         parent with either the passed in item, or the category item we
4824         create.
4825
4826         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4827
4828         * GridItem.cs: drop some fully qualified names.
4829         
4830         * GridEntry.cs: add a "UIParent", which is basically the parent
4831         treenode.
4832
4833         * GridItemCollection.cs: add an IndexOf method.
4834
4835 2006-10-20  Mike Kestner  <mkestner@novell.com>
4836
4837         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4838         a working win32 NC invalidation mechanism, we can't invalidate
4839         menus.  [Fixes #79705]
4840
4841 2006-10-20  Mike Kestner  <mkestner@novell.com>
4842
4843         * ListBox.cs : don't update the VScrollbar if the list is empty,
4844         just hide it.  [Fixes #79692]
4845
4846 2006-10-20  Jackson Harper  <jackson@ximian.com>
4847
4848         * RichTextBox.cs: Handle some special chars better, and don't skip
4849         the entire group when we encounter a special char that we don't
4850         handle correctly.
4851
4852 2006-10-18  Chris Toshok  <toshok@ximian.com>
4853
4854         * PropertyGridView.cs: address a number of issues from bug #79676,
4855         mostly of the cosmetic variety.
4856
4857         - The highlight rectangle for indented items not extends all the
4858         way to the left.
4859
4860         - Indented items aren't indented so much.
4861
4862         - the dropdown is properly sized width-wise if the pg has a
4863         vertical scrollbar.
4864
4865 2006-10-18  Chris Toshok  <toshok@ximian.com>
4866
4867         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4868         systray stuff is rather convoluted to begin with.
4869
4870         systray icons are a single window for some reason (that I haven't
4871         figured out yet), and for them, client_window == whole_window.
4872         Given the way the tests are structured elsewhere to determine
4873         which paints are pending (client vs. nc), that situation will
4874         always yield PAINT, not NCPAINT.  So, if we have a pending
4875         nc_expose and no pending expose, remove the hwnd from the paint
4876         queue, and also set nc_expose_pending to false, to keep us from
4877         blocking further expose's adding the hwnd to the paint queue.
4878
4879         phew.  like i said, a rather convoluted change.  Fixes the
4880         notifyicon repaint issues in bug #79645.
4881
4882 2006-10-18  Chris Toshok  <toshok@ximian.com>
4883
4884         * Form.cs: when getting the backcolor of the form, don't get
4885         base.BackColor, as this allows parents to influence the background
4886         color.  This breaks mdi forms.  Instead, if the background_color
4887         is empty, return the default.
4888
4889 2006-10-18  Chris Toshok  <toshok@ximian.com>
4890
4891         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4892         to being private instead of internal static.
4893
4894         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4895         crap, it wasn't working for more deeply nested controls anyway,
4896         and we already have the is_recreating flag - use that instead.
4897         Before calling DestroyHandle in RecreateHandle, recurse through
4898         the control tree setting it to true.  this returns the recreate
4899         code to much of its original simplicity, while now guaranteeing we
4900         actually recreate everything we're supposed to.  This change gets
4901         fyireporting actually showing mdi children.
4902
4903 2006-10-17  Chris Toshok  <toshok@ximian.com>
4904
4905         * Form.cs: remove some debug spew, and collapse some duplicate
4906         code at the end of SetClientSizeCore.
4907
4908         * XplatUIX11.cs: 
4909         - add some more debug spew here too wrt Destroy handling.
4910         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4911         in Control's handling of WM_DESTROY.
4912         - Remove the handling of zombie window DestroyNotifies from the
4913         event loop - we don't need it.  Now the only DestroyNotifies we
4914         actually handle are ones generated by X.
4915         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4916         match gtk's (functioning) handling of this. This keep metacity
4917         from leaving droppings in the form of wm borders with no window
4918         contents all over the place.
4919
4920         * Control.cs:
4921         - add a bunch of debug spew wrt control recreation.
4922         - fix a bug where we weren't tracking Visible properly on
4923         recreated hwnds.
4924         - fixed the WM_PAINT double buffer handling to support re-entrant
4925         calls (yes, i know it's gross, but it's happening to us).
4926
4927 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4928         * ThemeWin32Classic.cs: changed drawing of selected days
4929         to make them look better.
4930
4931 2006-10-16  Chris Toshok  <toshok@ximian.com>
4932
4933         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4934         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4935
4936         * XplatUIX11.cs: move away from using hwnd.client_dc and
4937         hwnd.non_client_dc and on to a stack of dc's (and in window's
4938         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4939         without puking or not disposing of Graphics objects.
4940
4941         * XplatUIOSX.cs: same.
4942
4943         * XplatUIWin32.cs: same.
4944
4945 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4946
4947         * FileDialog.cs: Don't call on_directory_changed inside
4948           OnSelectedIndexChanged (it changes the SelectedIndex too).
4949           Instead move it to OnSelectionChangeCommitted.
4950
4951 2006-10-13  Chris Toshok  <toshok@ximian.com>
4952
4953         * XplatUIX11.cs: more Destroy work.  the current code does the
4954         following things, in order:
4955
4956         1. Enumerates all handles of all controls at or below the one
4957         being destroyed, in pre-order.  As it is doing this, it marks the
4958         handles as zombie and clears all references to them.
4959         
4960         2. calls XDestroyWindow on the window passed in.
4961
4962         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4963         list.
4964
4965 2006-10-13  Chris Toshok  <toshok@ximian.com>
4966
4967         * XplatUIX11.cs: set hwnd.zombie to true before calling
4968         SendMessage (WM_DESTROY).  this keeps us from marking the new
4969         window a zombie, and also keeps us from calling sendmessage at
4970         all.
4971
4972 2006-10-13  Jackson Harper  <jackson@ximian.com>
4973
4974         * TextControl.cs: Do not show the caret and selection at the same
4975         time.  Reduces ugliness by 35%.
4976
4977 2006-10-13  Chris Toshok  <toshok@ximian.com>
4978
4979         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4980         zombie after we do the recursive call, so we actually do call
4981         SendMessage on the children controls.
4982         (GetMessage): if we find a pending paint event for a zombie hwnd,
4983         remove the hwnd from the paint queue, or else it will always be
4984         there (and we'll effectively loop infinitely)
4985
4986 2006-10-13  Mike Kestner  <mkestner@novell.com>
4987
4988         * MenuItem.cs : add Selected format under keynav too.
4989         Fixes #79528.
4990
4991 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4992
4993         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4994         implementation and that of MS.
4995
4996 2006-10-13  Chris Toshok  <toshok@ximian.com>
4997
4998         * Control.cs (OnInvalidated) only futz with the invalid_region if
4999         the control is double buffered.  this fixes the apparent hang in
5000         the ListView unit tests.  Someone needs to make the
5001         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
5002
5003 2006-10-13  Chris Toshok  <toshok@ximian.com>
5004
5005         * PropertyGridView.cs:
5006
5007         - do a little refactoring so that only one place calls
5008         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
5009         else call that.  Also make it Refresh, since there are redraw bugs
5010         otherwise (we should take a look at that...)
5011
5012         - do a little more refactoring work to share the body of code
5013         involved with the drop down.  it was duplicated in the code
5014         dealing with the listbox handling and in the code dealing with the
5015         UITypeEditors.
5016
5017         - add a Capture to the dropdown form's control once it's
5018         displayed, and add a MouseDown handler that checks to make sure
5019         the position is inside the control.  If it's not, close the
5020         dropdown.  This fixes #78190.
5021
5022         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
5023         if the value is different than the initial value.
5024         
5025 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
5026
5027         * Control.cs: see #78650
5028         - Fixed GetNextControl for several cases:
5029                 - Changed FindFlatForward to return 
5030                 correct sibling control when more than one
5031                 control has same TabIndex as the currently 
5032                 focused one.
5033                 - Changed FindFlatBackward to loop children
5034                 from last to first and apply same logic as in
5035                 FindFlatForward
5036                 - Changed FindControlForward to search for
5037                 children when control is not a container
5038                 but has children, or search for siblings if
5039                 control is a container...
5040                 - Changed FindControlBackward   to continue
5041                 searching for child controls when hitting 
5042                 Panel-like parents
5043                 
5044         - Fixed Focus method to update ActiveControl
5045         (FocusTest.FocusSetsActive failure)
5046         
5047         * TabControl.cs:
5048         - Focus rectangle now refreshes when gaining
5049         or losing focus
5050         - Removed grab for Tab key on IsInputKey that 
5051         was keeping tab navigation from working (#78650)
5052
5053 2006-10-13  Chris Toshok  <toshok@ximian.com>
5054
5055         * PropertyGridView.cs:
5056         - Rewrite SetPropertyValue to loop over SelectedGridItem's
5057         SelectedObjects.
5058
5059         - Deal with GridItem.Value == null a few places.
5060
5061         * PropertyGrid.cs: 
5062         - replace the PopulateGridItemCollection with a pair of methods
5063         which compute the intersection of all the properties in the
5064         SelectedObjects array.  Fixes #79615.
5065
5066         - Throw ArgumentException from set_SelectedObjects if there's a
5067         null in the array.
5068
5069         - Add GetTarget method which can be used to traverse up the
5070         GridItem.Parent chain.  It depends on the assumption that
5071         selected_objects for different GridEntries are always in the same
5072         order (a safe assumption).  Use this method and loop over all the
5073         selected objects in the entry when calling RemoveValueChanged and
5074         AddValueChanged.
5075         
5076         * GridEntry.cs: Make this handle multiple selected objects.
5077         .Value returns null if not all the selected objects share the same
5078         value.
5079
5080 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
5081         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
5082           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
5083           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
5084           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
5085           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
5086         add additional functionality.
5087
5088 2006-10-12  Mike Kestner  <mkestner@novell.com>
5089
5090         * ErrorProvider.cs : new ToolTipWindow ctor sig.
5091         * HelpProvider.cs : new ToolTipWindow ctor sig.
5092         * ToolTip.cs : remove ToolTip param from Window sig since it is
5093         not used.
5094         * ToolBar.cs : add tooltip support.  Fixes #79565.
5095
5096 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5097
5098         * ComboBox.cs: move the events in set_SelectedIndex to 
5099         after the call to HighlightIndex in order to avoid 
5100         possible recursion and subsequent problems with the call
5101         to HighlightIndex and include a range check in 
5102         set_HighlightIndex. Fixes #79588
5103         
5104 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5105
5106         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
5107         to ui thread's settings instead of sunday. 
5108         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
5109
5110 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
5111
5112         * DateTimePicker.cs
5113         * MonthCalendar.cs
5114         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
5115         and implement missing functionality (selecting different parts 
5116         of the date and edit them individually with the keyboard).
5117         
5118 2006-10-11  Chris Toshok  <toshok@ximian.com>
5119
5120         * Control.cs (OnInvalidated): fix NRE relating to last change.
5121
5122 2006-10-11  Chris Toshok  <toshok@ximian.com>
5123
5124         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
5125         atoms in _NET_WM_STATE here if the window is maximized.  We need
5126         to do this because we're *replacing* the existing _NET_WM_STATE
5127         property, so those atoms will be lost otherwise, and any further
5128         call to GetWindowState will return Normal for a window which is
5129         actually maximized.  Fixes #79338.
5130
5131 2006-10-11  Jackson Harper  <jackson@ximian.com>
5132
5133         * TextControl.cs: Special case for setting selection end to
5134         selection start, we basically kill the anchor.
5135         - some todo comments.
5136
5137 2006-10-11  Chris Toshok  <toshok@ximian.com>
5138
5139         * Control.cs: switch to using an "invalid_region" to track which
5140         parts of the image buffer need updating.  This is more code than
5141         the simple fix from r66532.  That version just attempted to always
5142         fill the entire buffer on redraw, which turns out to be
5143         inefficient when invalidating small rectangles.  This version
5144         simply adds the invalid rectangle to the invalid region.  When we
5145         get any WM_PAINT message we see if it can be filled using the
5146         image buffer, and if it can't (if the paint event's clip rectangle
5147         is visible in the invalid region) we first fill the image buffer.
5148         So, the image buffer is still a cache, we just fill it lazily.
5149
5150         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
5151         need it any longer.
5152
5153 2006-10-11  Chris Toshok  <toshok@ximian.com>
5154
5155         * XplatUIX11.cs (SetWindowPos): we need to update both position as
5156         well as size after calling XMoveResizeWindow.  This keeps us from
5157         ignoring future SetWindowPos calls.  Fixes the disappearing
5158         DateTimePicker in the ToolBarDockExample from bug #72499.
5159
5160 2006-10-11  Chris Toshok  <toshok@ximian.com>
5161
5162         * TextBoxBase.cs: reorder things a bit when it comes to
5163         resizing-causing-recalculation.  we were recalculating the
5164         document when our position was changed, which shouldn't happen.
5165         We only care about size changes.  Clear up some more redundant
5166         recalculation calls while I'm at it.  This makes the toolbar dock
5167         example snappy when you're just dragging toolbars around (since it
5168         causes a relayout whenever you move one.)
5169
5170 2006-10-11  Chris Toshok  <toshok@ximian.com>
5171
5172         * ToolBarButton.cs (get_Rectangle): this only returns
5173         Rectangle.Empty if Visible == false, or Parent == null.
5174         Parent.Visible doesn't matter.
5175
5176 2006-10-10  Chris Toshok  <toshok@ximian.com>
5177
5178         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
5179         by .net 1.1, so switch to an internal method instead.
5180
5181 2006-10-10  Chris Toshok  <toshok@ximian.com>
5182
5183         * Control.cs (WM_PAINT): when a control is double buffered we draw
5184         initially to the ImageBuffer and then copy from there.  But when a
5185         parent control which has child controls is double buffered, the
5186         initial drawing doesn't encompass the entire ClientRectangle of
5187         the parent control, so we end up with uninitialized bits (this is
5188         easily seen by dragging the top toolbar in
5189         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
5190         manually set the ClipRectangle of the paint_event (only the one we
5191         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
5192         of the nastiness in bug #72499.
5193
5194         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
5195         which we use in Control.cs's WM_PAINT handling.
5196
5197 2006-10-10  Jackson Harper  <jackson@ximian.com>
5198
5199         * TextBoxBase.cs: Finish off the autoscrolling stuff.
5200
5201 2006-10-10  Chris Toshok  <toshok@ximian.com>
5202
5203         * Cursor.cs: Apply a slightly different patch to the one suggested
5204         in #79609.
5205
5206 2006-10-10  Jackson Harper  <jackson@ximian.com>
5207
5208         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
5209         not the parent form.
5210         * TextControl.cs: use difference in old line count vs new count to
5211         calculate how many lines were added, this takes into account soft
5212         line breaks properly.
5213
5214 2006-10-10  Chris Toshok  <toshok@ximian.com>
5215
5216         * LinkLabel.cs: don't call MeasureCharacterRanges against a
5217         rectangle located at 0,0 and the size of the text.  Use
5218         ClientRectangle instead.  This fixes rendering of non-left aligned
5219         link labels.
5220
5221 2006-10-10  Jackson Harper  <jackson@ximian.com>
5222
5223         * TextBoxBase.cs: When we set the selection start position the
5224         caret.
5225         * TextControl.cs: Need to update the caret when we decrement it to
5226         zero.
5227         - Make sure that the selection_visible flag gets reset to false if
5228         the selection isn't visible.  Before this you could get it set to
5229         visible by changing the selection start, then changing the end to
5230         equal the start.
5231
5232 2006-10-09  Jackson Harper  <jackson@ximian.com>
5233
5234         * TreeView.cs: Don't update scrollbars when we aren't visible.
5235         * TreeNodeCollection.cs: Only need to update scrollbars if being
5236         added to an expanded visible node or the root node.
5237
5238 2006-10-09  Chris Toshok  <toshok@ximian.com>
5239
5240         * XplatUIX11.cs (SendMessage): fix NRE.
5241
5242 2006-10-09  Jackson Harper  <jackson@ximian.com>
5243
5244         * TextBoxBase.cs: Implement horizontal autoscrolling.
5245         * TextControl.cs: Add a movement types that allows moving forward
5246         and backwards without wrapping.
5247
5248 2006-10-09  Mike Kestner  <mkestner@novell.com>
5249
5250         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
5251         with focus "expansion" of labels.  Fixes #79532 and then some.
5252         * ThemeWin32Classic.cs : add LineLimit to ListView label format
5253         when wrapping.
5254
5255 2006-10-09  Jackson Harper  <jackson@ximian.com>
5256
5257         * TextBoxBase.cs: Set the default max values to MaxValue since
5258         we use the scrollbar for autoscrolling and the default value is
5259         100.  If we don't do this the caret won't keep up with typing
5260         after about 18 characters.
5261         * TextControl.cs: Make sure the selection is offset by the
5262         viewport x.  This fixes selection when using auto scrolling.
5263
5264 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
5265         
5266         * Form.cs: The active control should be selected after the 
5267         OnLoad so that any child control initialization that affects
5268         the selection is done. Fixes #79406
5269
5270 2006-10-06  Chris Toshok  <toshok@ximian.com>
5271
5272         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
5273         to have no evil effects.
5274
5275         - Stop selecting StructureNotifyMask on non-toplevel windows.
5276
5277           The only way children should be resized is by using the SWF api,
5278           and we already send WM_WINDOWPOSCHANGED messages in those cases.
5279           Toplevel windows can be interacted with via the window manager,
5280           and so we keep the input mask there.
5281
5282           The other event StructureNotifyMask gives us (that we care
5283           about) is DestroyNotify.  The code is already structured such
5284           that it assumes we won't be getting a DestroyNotify event for
5285           the window we pass to XDestroyWindow (which is what
5286           StructureNotifyMask is supposed to guarantee.)  So, that code
5287           shouldn't be affected by this either.
5288
5289         - Stop selecting VisibilityChangeMask altogether.
5290
5291           We weren't doing anything with the resulting events anyway.
5292         
5293         This vastly reduces the number of X requests and events we see
5294         when resizing/laying out a large ui.
5295
5296 2006-10-06  Chris Toshok  <toshok@ximian.com>
5297
5298         * ScrollableControl.cs (DisplayRectangle): we need to take into
5299         account the DockPadding regardless of whether or not auto_scroll
5300         == true.  rework this slightly to this effect, and fix bug #79606,
5301         and part of #72499 (you can now see the drag handles and drag
5302         toolbars around).
5303
5304 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
5305
5306         * ListViewItem.cs: Collections of selected and checked items are now
5307         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
5308         we mark the collection "dirty".
5309         * ListView.cs: Marked collections readonly. Modified UpdateSelection
5310         to only clear SelectedItems when a new item is selected and MultiSelect
5311         is enabled. CheckedItems and SelectedItems now subscribe to Changed
5312         event of ListViewItemCollection, and mark its list dirty whenever
5313         that event is fire. This allows us to return selected/checked items 
5314         in the same order as they are in the Items collection. This matches
5315         the MS behavior.
5316
5317 2006-10-06  Chris Toshok  <toshok@ximian.com>
5318
5319         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
5320         right mouse clicks.  Fixes bug #79593.
5321
5322 2006-10-06  Chris Toshok  <toshok@ximian.com>
5323
5324         * Splitter.cs: doh, fix splitters that don't want to cancel the
5325         movement when you drag them.  Also, impose the limits on the
5326         values we send to the SplitterMovingEvent.  Fixes #79598.
5327
5328 2006-10-06  Jackson Harper  <jackson@ximian.com>
5329
5330         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
5331         since we use this for auto scrolling also.
5332
5333 2006-10-05  Chris Toshok  <toshok@ximian.com>
5334
5335         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
5336         beginning to think that most datagrid column types don't need this
5337         method.  Fixes bug #79392.
5338
5339 2006-10-05  Chris Toshok  <toshok@ximian.com>
5340
5341         * DataGrid.cs: move back to a more lazy scheme for creating the
5342         CurrencyManager, so we aren't updating it every time you set
5343         either DataSource or DataMember.  Also, don't call
5344         RecreateDataGridRows if the currency manager hasn't changed.
5345
5346 2006-10-05  Chris Toshok  <toshok@ximian.com>
5347
5348         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
5349         emitted, SelectedIndex should already be updated.  Fixes bug
5350         #78929.
5351
5352 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
5353
5354         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
5355           ToolStripTextBox.cs: Initial commit.
5356         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
5357
5358 2006-10-05  Jackson Harper  <jackson@ximian.com>
5359
5360         * TabControl.cs: We need to invalidate the tab control area when
5361         new ones are added (duh).
5362
5363 2006-10-03  Chris Toshok  <toshok@ximian.com>
5364
5365         * Form.cs (ProcessDialogKey): if the focused control is in this
5366         form and is a button, call its PerformClick method here.  Fixes
5367         #79534.
5368
5369 2006-10-04  Jackson Harper  <jackson@ximian.com>
5370
5371         * TabPage.cs: Ignore setting of Visible, and add an internal
5372         method for setting the controls visibility.  TabPage's Visible
5373         property is a little strange on MS, this seems to make us
5374         compatible, and fixes cases where people set all the tab pages to
5375         visible.
5376         * TabControl.cs: Use the new internal setting on tab pages
5377         visibility.
5378
5379 2006-10-03  Mike Kestner  <mkestner@novell.com>
5380
5381         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
5382
5383 2006-10-03  Mike Kestner  <mkestner@novell.com>
5384
5385         * ListView.cs : use is_visible instead of Visible to check if 
5386         scrollbars should be placed/sized.  Also some max_wrap_width
5387         love for LargeIcon view.  [Fixes #79533]
5388
5389 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
5390
5391         * TextControl.cs :
5392           Make set_TextAlign() do actually update the align. Fixed #78403.
5393
5394 2006-10-03  Chris Toshok  <toshok@ximian.com>
5395
5396         * DataGrid.cs: fix a crash when switching datasources if the
5397         vertical scrollbar is at someplace other than Value = 0.  Also,
5398         reduce the number of recalculation passes we do in SetDataSource
5399         from 2 to 1.
5400
5401 2006-10-03  Jackson Harper  <jackson@ximian.com>
5402
5403         * TextBoxBase.cs: Move the if value the same bail check up, we
5404         don't want to empty the document if it is already empty, this
5405         seems to severly mess up the caret.  TODO: I should probably fix
5406         the empty statement to update teh caret somehow.
5407
5408 2006-10-03  Chris Toshok  <toshok@ximian.com>
5409
5410         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
5411         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
5412         reflection, an internal row type, properties on said type, etc.)
5413         will work with our datagrid.  Fixes #79531.
5414
5415 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
5416
5417         * FileDialog.cs: Don't crash if a path is not accessible
5418           (System.UnauthorizedAccessException). Fixes #79569.
5419         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
5420           a ':' too. Return unknown icon for those paths/files.
5421
5422 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
5423
5424         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
5425         GetContainerControl returns null.
5426
5427 2006-10-02  Chris Toshok  <toshok@ximian.com>
5428
5429         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
5430         call to XGetWindowAttributes instead of "handle".  fixes an X
5431         error using notifyicon after the NotifyIconWindow to Form base
5432         class switch.
5433
5434 2006-10-02  Chris Toshok  <toshok@ximian.com>
5435
5436         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
5437         server grab and looping we need to do to get down to the most
5438         deeply nested child window.
5439         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
5440         QueryPointer again after the WarpPointer so we can generate a
5441         proper (fake) MotionNotify event to be enqueued in the destination
5442         window's queue.
5443         (GetCursorPos): call QueryPointer.
5444
5445         Fixes #79556.
5446
5447 2006-10-02  Jackson Harper  <jackson@ximian.com>
5448
5449         * NotifyIcon.cs: Derive the notify icon from a form, so things
5450         like FindForm work on it.
5451         - Swallow the WM_CONTEXTMENU message, since that is generated on
5452         mouse down, and context menu is a mouse up kinda guy.  I believe
5453         the correct fix here is probably to make the notify icon entirely
5454         NC area, but this seems to work fine for anyone not manipulating
5455         WndProc.
5456
5457 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
5458
5459         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
5460           ToolStripItemCollection.cs, ToolStripLabel.cs,
5461           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
5462           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
5463           Initial implementation.
5464         * TextRenderer.cs: Provide padding to MeasureText.
5465
5466 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
5467
5468         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
5469         of ButtonBaseAccessibleObject. Fix bug #79552.
5470
5471 2006-10-02  Jackson Harper  <jackson@ximian.com>
5472
5473         * MdiWindowManager.cs: When maximizing use the containers client
5474         rect, not it's bounds, so nc area is accounted correctly.
5475         - Use the parent form's size for the menu position, since the
5476         client isn't always the full form size.
5477
5478 2006-10-01  Chris Toshok  <toshok@ximian.com>
5479
5480         * ScrollableControl.cs: make sure neither right_edge or
5481         bottom_edge are < 0, since they're used as LargeChange for the
5482         horiz/vert scrollbars respectively.  Fixes #79539.
5483
5484 2006-10-01  Chris Toshok  <toshok@ximian.com>
5485
5486         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
5487         the xplatuix11 code can cause us to destroy/recreate our handle.
5488
5489         * XplatUIX11.cs
5490         (SystrayAdd):
5491         - this code can be invoked many times for the same Hwnd.  Make
5492           sure we only destroy the client window once (the first time this
5493           method is called).  This fixes bug #79544.
5494         - Remove the call to the improperly bound XSync.  why we had two
5495           bindings to this, I will never know, but this call resulted in
5496           events being discarded from the queue(!).
5497         - correct a misunderstanding of _XEMBED_INFO - the second atom is
5498           not our current state but the state we wish to be in.  So, 0 if
5499           we don't want to be mapped.  Change it to 1.
5500         (SystrayRemove): The XEMBED spec makes mention of the fact that
5501         gtk doesn't support the reparent of client windows away from the
5502         embedder.  Looking at gtksocket-x11.c seems to agree with this.
5503         The only avenue we have for removing systray icons is to destroy
5504         them.  We don't want the handle to go away for good, though, so
5505         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
5506         #79545.
5507         
5508 2006-10-01  Chris Toshok  <toshok@ximian.com>
5509
5510         * Form.cs (WndProc): inline the native_enabled variable usage into
5511         the cases in which it's used.  Fixes #79536.
5512
5513 2006-09-29  Mike Kestner  <mkestner@novell.com>
5514
5515         * ListView.cs : toggle the selection state for ctrl clicks in 
5516         multiselect mode. [Fixes #79417]
5517
5518 2006-09-29  Mike Kestner  <mkestner@novell.com>
5519
5520         * ListView.cs : kill CanMultiSelect and refactor the selection
5521         code to support multiselection in the absence of mod keys. Steal
5522         arrow/home/end keys by overriding InternalPreProcessMessage to
5523         restore regressed keynav behavior.
5524         [Fixes #79416]
5525
5526 2006-09-29  Jackson Harper  <jackson@ximian.com>
5527
5528         * MdiClient.cs: Repaint the titlebars when the active window is
5529         changed.
5530
5531 2006-09-29  Chris Toshok  <toshok@ximian.com>
5532
5533         * Application.cs: when entering a runloop with a modal, make sure
5534         the hwnd is enabled.  Fixes #79480.
5535
5536 2006-09-29  Chris Toshok  <toshok@ximian.com>
5537
5538         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
5539         when ListManager.CanAddRows == false, bump us back one.
5540
5541         * DataGridColumnStyle.cs (ParentReadOnly): remove the
5542         listmanager.CanAddRows check.  This makes ArrayLists uneditable
5543         using a datagrid, which is not right.
5544         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
5545         is an IEditable, but call property_descriptor.SetValue regardless.
5546         fixes #79435.
5547
5548 2006-09-29  Chris Toshok  <toshok@ximian.com>
5549
5550         * DataGridBoolColumn.cs: we need to test equality in the face of
5551         possible null values (as is the case with the default NullValue).
5552         This patch keeps us from crashing in that case.
5553
5554 2006-09-29  Jackson Harper  <jackson@ximian.com>
5555
5556         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
5557         here, since it will get called for every node collection in the
5558         tree. This is now done in the treeview once the sorting is
5559         finished.
5560         * TreeView.cs: Recalculate the visible order, and update the
5561         scrollbars after sorting, set the top nope to the root so that the
5562         recalc actually works.
5563
5564 2006-09-29  Chris Toshok  <toshok@ximian.com>
5565
5566         * LinkLabel.cs: more handling of the default link collection in
5567         the face of LinkArea manipulation.  The default link collection
5568         contains 1 element (start=0,length=-1).  If the user sets LinkArea
5569         to anything and the links collection is the default, clear it.
5570         Then only add the link if its nonempty.  Fixes #79518.
5571
5572 2006-09-29  Chris Toshok  <toshok@ximian.com>
5573
5574         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
5575         piece correctly when we hit a '\n'.  Fixes #79517.
5576
5577 2006-09-29  Chris Toshok  <toshok@ximian.com>
5578
5579         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
5580         change the binding of gdk_init_check to take two IntPtr's, and
5581         pass IntPtr.Zero for both of them.  Fixes #79520.
5582
5583 2006-09-29  Mike Kestner  <mkestner@novell.com>
5584
5585         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
5586         [Fixes #78779]
5587
5588 2006-09-28  Jackson Harper  <jackson@ximian.com>
5589
5590         * XplatUIX11.cs: When translating NC messages make sure we go from
5591         whole window to screen, not client window to screen.
5592         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
5593         method doesn't exist
5594         - Skip over controls that aren't forms when arranging.
5595
5596 2006-09-28  Jackson Harper  <jackson@ximian.com>
5597
5598         * XplatUIWin32.cs: Clip the rect to the parent window.
5599         * XplatUIStructs.cs: Add clipping modes struct.
5600         * InternalWindowManager.cs: New private method that factors title
5601         bar heights in when calculating the pos of an NC mouse message.
5602         - Use SendMessage to force a paint when the form's size is changed
5603         instead of painting the decorations immediately.
5604         - Don't let the NC button click messages get to DefWndProc,
5605         because they will attempt to handle windowing themself, and this
5606         messes up z-order (it will put them in front of the scrollbars).
5607         * XplatUIX11.cs: Make sure that we don't reset window managers if
5608         we already have one (ie the window is an MDI window).
5609
5610 2006-09-28  Chris Toshok  <toshok@ximian.com>
5611
5612         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
5613         menu code really needs going over.
5614
5615 2006-09-27  Chris Toshok  <toshok@ximian.com>
5616
5617         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
5618         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
5619         window is maximizable.  So, we need to make sure that even if we
5620         clear the border/wm frame of those functions, they're still
5621         available (basically, we remove the decoration without removing
5622         the function).  Half the fix for #79338.
5623
5624 2006-09-27  Chris Toshok  <toshok@ximian.com>
5625
5626         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
5627         Fixes bug #79515.
5628
5629 2006-09-27  Chris Toshok  <toshok@ximian.com>
5630
5631         * Splitter.cs: reorder things a bit so that we don't actually
5632         draw/move the splitter until after calling OnSplitterMoving.  This
5633         lets users cancel/disallow the movement by explicitly setting
5634         event.SplitX/SplitY.  Fixes #79372.
5635
5636 2006-09-27  Jackson Harper  <jackson@ximian.com>
5637
5638         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
5639         because it is most likely on a window being destroyed, and that
5640         will give us an X11 error.
5641
5642 2006-09-27  Chris Toshok  <toshok@ximian.com>
5643
5644         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
5645         the dropdown button now toggles between showing and hiding the
5646         dropdown.  Also, get rid of dropdown_form_showing and just use
5647         dropdown_form.Visible.  We still don't do a grab, but I'll leave
5648         that part to someone who has handled Capture-fu before.
5649
5650 2006-09-27  Chris Toshok  <toshok@ximian.com>
5651
5652         * DataGrid.cs: return false if alt isn't pressed when '0' is
5653         pressed.  this keeps the '0' key from being swallowed, and fixes
5654         bug #79350.
5655
5656 2006-09-27  Chris Toshok  <toshok@ximian.com>
5657
5658         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
5659         Calling Refresh (in response to a scrollbar event) screws up the
5660         scrollbar painting.  Fixes bug #78923.
5661
5662 2006-09-27  Chris Toshok  <toshok@ximian.com>
5663
5664         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
5665         then insert into hashtable" blocks threadsafe.
5666
5667 2006-09-27  Chris Toshok  <toshok@ximian.com>
5668
5669         * MessageBox.cs (CreateParams): the styles should be |'ed with our
5670         baseclass's, since otherwise the
5671         ControlBox/MinimizeBox/MaximizeBox assignments above have no
5672         effect.  This gets the close button back in messageboxes.
5673
5674 2006-09-27  Chris Toshok  <toshok@ximian.com>
5675
5676         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5677         flag, not just != 0.  this makes flags that are actually multiple
5678         bits (like WS_CAPTION) work.  fixes bug #79508.
5679
5680 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5681
5682         * PageSetupDialog.cs: add support for getting and settings the 
5683         paper size, source and orientation.
5684
5685 2006-09-26  Chris Toshok  <toshok@ximian.com>
5686
5687         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5688         and caption == "", we need to remove the resize handles as well as
5689         the title bar.
5690
5691         * Control.cs (set_Text): turns out that setting Text on a form
5692         should change the WM styles on the window, since if ControlBox ==
5693         false, the only way to get a window border is to have a non-""
5694         Text property.  check winforms/forms/text.cs for an example.  so,
5695         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5696         update both window styles and title.  This fixes a lot of dialogs
5697         (including the preferences dialog in MonoCalendar.)
5698
5699 2006-09-26  Chris Toshok  <toshok@ximian.com>
5700
5701         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5702         control isn't a Form), call Win32ShowWindow to hide the window,
5703         but don't update the control Visible property.  When we reparent
5704         back to a parent control, call SetVisible in order for the
5705         window's visibility to be reinstated.
5706
5707         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5708         the FosterParent.
5709
5710         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5711         call for good, since it breaks MonoCalendar (and other things I'm
5712         sure.) Also, set all_controls to null *after* the owner calls,
5713         which end up regenerating it.
5714         (ChangeParent): allow new_parent to be == null, passing
5715         IntPtr.Zero down to XplatUI.
5716
5717         this fixes #79294 the right way.
5718
5719 2006-09-26  Mike Kestner  <mkestner@novell.com>
5720
5721         * GridEntry.cs : internal SetParent method.
5722         * PropertyGrid.cs : attach to property changed on the proper
5723         target if we have a hierarchical grid with subobjects. Setup
5724         GridItem.Parent for hierarchical items.
5725         * PropertyGridView.cs : Set value on the correct target for
5726         hierarchical grids. [Fixes #78903]
5727
5728 2006-09-26  Chris Toshok  <toshok@ximian.com>
5729
5730         * Control.cs (ChildNeedsRecreating): this should return true if
5731         either we're being recreated and the child is in our list, or our
5732         parent is waiting for our recreation.
5733
5734 2006-09-26  Chris Toshok  <toshok@ximian.com>
5735
5736         * Control.cs (ControlCollection.Remove): reinstate the
5737         value.Hide() call as suggested in bug #79294.
5738
5739 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5740
5741         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5742         coordinates (versus a relative move).
5743
5744 2006-09-26  Chris Toshok  <toshok@ximian.com>
5745
5746         * Control.cs: rework child recreation a little bit.  It turns out
5747         that we race between the DestroyNotify the WM_DESTROY message.  If
5748         the parent gets its DestroyNotify before the child gets the
5749         WM_DESTROY message, the child ends up not recreating (since the
5750         parent finishes its recreation on DestroyNotify, and the child
5751         checks ParentIsRecreating.)
5752
5753         So, instead we store off a list of all the child controls which
5754         need to be recreated when the parent control starts to recreate
5755         itself.  Then, when child controls get their WM_DESTROY message we
5756         check to see if they're in the parent's pending recreation list,
5757         and if so, we recreate.  This removes all dependency on ordering
5758         from the code and fixes the initial MonoCalendar upgrade dialog.
5759         
5760 2006-09-26  Jackson Harper  <jackson@ximian.com>
5761
5762         * TextControl.cs: Use the Line to get the length of the line,
5763         since soft line breaks can change the end line.
5764
5765 2006-09-26  Chris Toshok  <toshok@ximian.com>
5766
5767         * Control.cs (ControlCollection.AddImplicit): don't add the
5768         control again if it's already in one of our lists.  This keeps us
5769         from adding controls over and over again for comboboxes when their
5770         handle gets recreated (as the combobox adds implicit controls in
5771         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5772
5773 2006-09-26  Jackson Harper  <jackson@ximian.com>
5774
5775         * TextControl.cs: When deleting characters make sure that any
5776         orphaned zero lengthed tags get deleted.
5777         - Fix ToString for zero lengthed tags.
5778
5779 2006-09-25  Jackson Harper  <jackson@ximian.com>
5780
5781         * TextControl.cs: When getting a tag at the location there can be
5782         multiple tags at the same spot, these are 0-lengthed tags that
5783         appear when extra formatting has been stuck in a location.  We
5784         need to pull out the last of these 0 lengthed tags.
5785
5786 2006-09-25  Jackson Harper  <jackson@ximian.com>
5787
5788         * TextControl.cs: Fix print out in debug method.
5789         * TextBoxBase.cs: When text is set bail if we are setting to the
5790         previous value.
5791         
5792 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5793
5794         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5795           It is now possible to change the selected index in a FontXXXListBox
5796           with the up and down arrow keys from the FontXXXTextBoxes.
5797           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5798           FontXXXListBoxes to match ms.
5799
5800 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5801
5802         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5803         anyone can dispose it, anytime. All other properties returns enums, 
5804         structs or basic types so they don't need such tricks.
5805
5806 2006-09-22  Jackson Harper  <jackson@ximian.com>
5807
5808         * XplatUI.cs:
5809         * XplatUIWin32.cs:
5810         * Clipboard.cs:
5811         * DataFormats.cs:
5812         * XplatUIOSX.cs:
5813         * XplatUIDriver.cs: Update interface to add a primary selection
5814         flag, so the driver can use the primary selection buffer if
5815         needed.
5816         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5817
5818         * RichTextBox.cs: We need to supply the data object to paste now
5819         (so we can choose to supply CLIPBOARD or PRIMARY).
5820         * TextBoxBase.cs: Supply data object to paste (see above).
5821         - Middle click uses the primary selection data object.
5822         
5823 2006-09-21  Chris Toshok  <toshok@ximian.com>
5824
5825         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5826         of SetWMStyles.  It's still a rat's nest and is largely
5827         order-dependent which I dislike immensely.  This also fixes the X
5828         button disappearing from toplevel forms.
5829
5830 2006-09-21  Mike Kestner <mkestner@novell.com>
5831
5832         * ListBox.cs: move Jordi's click/dblclick raising code to the
5833         mouse up handler.
5834
5835 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5836
5837         * ListBox.cs: Fixes 79450
5838
5839 2006-09-21  Mike Kestner <mkestner@novell.com>
5840
5841         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5842         to deal with people updating the TreeNodeCollection after the tree
5843         is disposed.  "Fixes" 79330.
5844
5845 2006-09-20  Jackson Harper <jackson@ximian.com>
5846
5847         * TextControl.cs: Push the cursor record onto the undo stack
5848         before the delete action. This fixes 78651.
5849
5850 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5851
5852         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5853         CreateParams. Fixes 79329.
5854
5855 2006-09-19  Chris Toshok  <toshok@ximian.com>
5856
5857         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5858         things up a bit.  First, get rid of the NetAtoms array (and the NA
5859         enum), and just embed the atoms as static fields.  Also, add a
5860         couple of functions (StyleSet and ExStyleSet) to clean up all the
5861         bitmask testing of styles.
5862
5863         * X11Structs.cs: remove the NA enum, not needed anymore.
5864         
5865 2006-09-19  Chris Toshok  <toshok@ximian.com>
5866
5867         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5868         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5869         added cleanup to get MessageBox titles appearing again, which were
5870         broken by my earlier fix for caption-less/ControlBox-less windows.
5871
5872 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5873
5874         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5875           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5876           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5877           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5878           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5879           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5880           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5881           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5882           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5883           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5884           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5885             Inital import.
5886         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5887           ToolStripButton.cs: Stubs needed for above.
5888         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5889
5890 2006-09-15  Chris Toshok  <toshok@ximian.com>
5891
5892         * XplatUIX11.cs:
5893         - make the MessageQueues hashtable Synchronized.
5894         
5895         - SendMessage: if the Hwnd is owned by a different thread, use the
5896         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5897         thread.  Fixes bug #79201.
5898
5899 2006-09-15  Chris Toshok  <toshok@ximian.com>
5900
5901         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5902         ControlBox == false, we disallow maximize/minimize/close.  If the
5903         form Caption is "" we also disallow move (and get rid of the Title
5904         decoration).  Unfortunately, regardless of how things are set,
5905         we're stuck with the Title and WM menu.
5906
5907 2006-09-15  Chris Toshok  <toshok@ximian.com>
5908
5909         * Application.cs: add locking around the static message_filters
5910         ArrayList, part of #79196.
5911
5912 2006-09-15  Chris Toshok  <toshok@ximian.com>
5913
5914         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5915         Form.ControlBox == false, the window has no titlebar nor resize
5916         handles.  fixes bug #79368.
5917
5918 2006-09-15  Chris Toshok  <toshok@ximian.com>
5919
5920         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5921         >= 0.  Fixes bug #79370.
5922
5923 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5924         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5925         * Control.cs:
5926             Add properties: LayoutEngine, Margin, DefaultMargin.
5927             Add method: GetPreferredSize.
5928             Move layout logic from PerformLayout to layout engines. 
5929
5930 2006-09-13  Chris Toshok  <toshok@ximian.com>
5931
5932         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5933         fix for #79326 broke #78718, so this change addresses that.
5934
5935         - in SendWMDestroyMessages remove the call to
5936         CleanupCachedWindows, since we might be recreating the control and
5937         need to maintain the references to right Hwnd handles.  Also, set
5938         the zombie flag to true for each of the children in the hierarchy
5939         instead of calling hwnd.Dispose.  This will cause GetMessage to
5940         ignore all events for the window except for DestroyNotify.
5941
5942         - In GetMessage, ignore messages except for DestroyNotify for
5943         zombie hwnds.
5944         
5945         * Control.cs: revert the is_recreating fix from the last
5946         ChangeLog.  It's definitely "right", but it breaks switching from
5947         an MDI form to a non-MDI form.  Will need to revisit that.
5948
5949         * Hwnd.cs: add a zombie flag, which means "the
5950         client_window/whole_window handles are invalid, but we're waiting
5951         for the DestroyNotify event to come in for them".  Set the flag to
5952         false explicitly if setting WholeWindow/ClientWindow, and also
5953         when Disposing.
5954         
5955 2006-09-13  Chris Toshok  <toshok@ximian.com>
5956
5957         * XplatUIX11.cs: rework window destruction slightly.
5958
5959         - when destroying the windows associated with a control, we don't
5960         need 2 separate XDestroyWindow calls.  Just the one for the
5961         whole_window (or for client_window if whole_window is somehow
5962         IntPtr.Zero -- can this happen?) is enough.
5963
5964         - reworked SendWMDestroyMessages slightly, so we always dispose
5965         the child control hwnd's after sending the messages.
5966         
5967         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5968         the two places it was used (one was even using hwnd.Handle and the
5969         other hwnd.client_window.  ugh), adding another call in
5970         SendWMDestroyMessages.  We need this new call because now the
5971         DestroyNotify events in the queue will be ignored for the child
5972         controls (as their hwnd's were disposed, and the window id's
5973         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5974
5975         - this fixes bug #79326.
5976
5977 2006-09-13  Chris Toshok  <toshok@ximian.com>
5978
5979         * Control.cs: don't always set is_recreating to false at the end
5980         of RecreateHandle, since sometimes we're not done (and won't be
5981         until WndProc handles the WM_DESTROY message).  Also, set
5982         is_recreating to false in the WM_DESTROY handling code.  Part of
5983         the fix for bug #79326.
5984
5985 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5986
5987         * X11DesktopColors.cs: Start the droppage of debugging messages.
5988
5989         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5990
5991 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5992
5993         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5994
5995 2006-09-12  Chris Toshok  <toshok@ximian.com>
5996
5997         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5998         to create it using SetDataSource.  Fixes bug #79151.
5999
6000 2006-09-11  Chris Toshok  <toshok@ximian.com>
6001
6002         * XEventQueue.cs: add a DispatchIdle property.
6003
6004         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
6005         either the queue is null, or the queue has DispatchIdle set to
6006         true.
6007         (DoEvents): set queue.DispatchIdle to false around the
6008         peek/translate/dispatch message loop in this method.  This keeps
6009         Application.Doevents from emitting idle events.  Part of the fix
6010         for #78823.
6011
6012 2006-09-11  Chris Toshok  <toshok@ximian.com>
6013
6014         * DataGrid.cs (set_DataSource): make this work for both the
6015         winforms/datagrid test and ReportBuilder.  It seems as though when
6016         we've created a ListManager (or maybe it's if we have a
6017         BindingContext?), when we set the DataSource it clears the
6018         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
6019         #79333.
6020
6021 2006-09-11  Chris Toshok  <toshok@ximian.com>
6022
6023         * XplatUIX11.cs: deal with queue being null, which happens in all
6024         the Clipboard functions.  Fixes one of the two problems mentioned
6025         in #78612.
6026
6027 2006-09-11  Chris Toshok  <toshok@ximian.com>
6028
6029         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
6030         button on various spots (including outside the menu) works closer
6031         to MS, and doesn't crash.  Fixes #79343.
6032
6033 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
6034
6035         * ListView.cs: Do not initialize item_sorter in init. To match MS,
6036         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
6037         and the internal comparer is set. When a new ListViewItemSorter is set,
6038         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
6039         was specified. No further processing is necessary if SortOrder is set
6040         to it's current value. If Sorting is modified to None, and View is
6041         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
6042         (either custom or our internal ItemComparer) to null, on 1.0 profile
6043         only set item_sorter to null if its our internal IComparer. If Sorting
6044         is modified to Ascending or Descending, then use our internal IComparer
6045         if none is set, and if the current IComparer is our internal one then:
6046         on 2.0 profile always replace it with one for new Sorting, and on 1.0
6047         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
6048         Enum.IsDefined to verify whether a valid View value is specified in
6049         its setter. Automatically sort listview items when listview is
6050         created. In Sort, do nothing if ListView is not yet created, or if
6051         no item_sorter is set (no Sorting was set, Sorting was explicitly set
6052         to None or ListViewItemSorter was set to null). Added Sort overload
6053         taking a bool to indicate whether the ListView should be redrawn when
6054         items are sorted (we use this in ListViewItemCollection to avoid double
6055         redraws). Modified our internal IComparer to take the sort order into
6056         account. In Add and AddRange methods of ListViewItemCollection, also
6057         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
6058         view), but use overload with noredraw option to avoid double redraw.
6059         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
6060         true when View is Tile, and do the same when attempting to set View to
6061         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
6062         for selected/checked indices, as it involves overhead when sorting is
6063         done while these collections are not used all that often. Instead
6064         we'll build the indices on demand. Modified IList implementation of
6065         CheckedIndexCollection to use public methods if object is int.
6066         Modified CheckedListViewItemCollection to hide checked items if
6067         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
6068         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
6069         IList implementation in SelectedIndexCollection to use public methods
6070         if object is int. Modified SelectedListViewItemCollection to hide
6071         selected items if listview is not yet created.
6072         * ListViewItem.cs: CheckedIndices list no longer needs to be
6073         maintained separately (see ListView changes). Also clone font, fixes
6074         test failure.
6075
6076 2006-09-11  Mike Kestner  <mkestner@novell.com>
6077
6078         * ComboBox.cs: if we are updating the contents of the currently
6079         selected index, refresh the control or the textbox selection.
6080         [Fixes #79066]
6081
6082 2006-09-11  Mike Kestner  <mkestner@novell.com>
6083
6084         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
6085         the 'specified' logic has been moved there.  This seems like a bug 
6086         in Control.cs, since our current SetBoundsCore completely ignores 
6087         the specified parameter.  Peter's commit seems to indicate that is 
6088         the way the MS control implementation works.  [Fixes #79325]
6089
6090 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
6091
6092         * XplatUI.cs: Set default_class_name to be composed
6093         of current domain id. This allows MWF to be loaded in multiple
6094         domains on Win32.
6095
6096 2006-09-09  Miguel de Icaza  <miguel@novell.com>
6097
6098         * X11Keyboard.cs: If we are unable to obtain the input method, do
6099         not call CreateXic to create the input context.   Should fix
6100         #78944/79276.
6101
6102 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
6103
6104         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
6105           Simplified gnome support by adding more pinvokes to get the
6106           icon for a file or mime type.
6107
6108 2006-09-08  Jackson Harper  <jackson@ximian.com>
6109
6110         * MenuAPI.cs: Deslect popup context menu items before closing the
6111         window, so that you don't see the previously selected item
6112         selected when you reopen the menu.
6113         * TextControl.cs: Update the cursor position even if we don't have
6114         focus.  This fixes typing in things like the ComboBox.  I'm not
6115         totally sure we should always set the visibility if we don't have
6116         focus, but couldn't find any corner cases where the cursor showed
6117         up when it shouldn't.
6118
6119 2006-09-08  Chris Toshok  <toshok@ximian.com>
6120
6121         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
6122         our arrays are length 256.  & 0xff before indexing.  Fixes the
6123         crash in bug #78077.
6124         
6125 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6126
6127         * ThemeWin32Classic.cs: 
6128         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
6129         is true. Handle that check box too.
6130
6131 2006-09-07  Chris Toshok  <toshok@ximian.com>
6132
6133         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
6134         79244.
6135
6136 2006-09-07  Chris Toshok  <toshok@ximian.com>
6137
6138         * Control.cs: in set_BackColor only do the work if
6139         background_color != value.
6140
6141         * XplatUIX11.cs: move the clearing of invalid areas (both client
6142         and nc) to the same block of code where we set (nc_)expose_pending
6143         to false.  That is, move it from PaintEventEnd to PaintEventStart,
6144         so things that cause invalidates from within OnPaint will trigger
6145         another call to OnPaint.  Fixes bug #79262.
6146
6147 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
6148
6149         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
6150         * FileDialog.cs: Fix typo
6151
6152 2006-09-07  Jackson Harper  <jackson@ximian.com>
6153
6154         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
6155         for tab pages if they have any.
6156
6157 2006-09-06  Mike Kestner  <mkestner@novell.com>
6158
6159         * Splitter.cs: use the "current" rect when finishing drag handle
6160         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
6161
6162 2006-09-06  Mike Kestner  <mkestner@novell.com>
6163
6164         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
6165         support offset splitters. [Fixes #79298]
6166
6167 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
6168
6169         * Mime.cs: Fixed a bug that could override the global mime type
6170           result.
6171
6172 2006-09-05  Jackson Harper  <jackson@ximian.com>
6173
6174         * TabControl.cs: Better calculation method for setting the slider
6175         pos. Prevents crashes on really wide tabs.
6176         - Draw Image on tab pages if an image list is used.
6177
6178 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6179
6180         * MonthCalendar.cs: When Font changes, the Size should be
6181         updated to fit the new font's space requirements.
6182
6183 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
6184
6185         * ListBox.cs: If the items are cleared with Items.Clear set
6186           top_index to 0.
6187
6188 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6189
6190         * MonthCalendar.cs: Handle arrow keys as input keys. Also
6191         fire DateChanged event instead of DateSelected event when
6192         the date was changed by keyboard interaction.
6193
6194 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6195
6196         * DateTimePicker.cs: Handle DateChanged for the associated
6197         month_calendar control, and set month_calendar.Font from 
6198         OnFontChanged method, as well as resize the height of the
6199         control when needed. Make PreferredHeight proportional.
6200
6201 2006-09-01  Chris Toshok  <toshok@ximian.com>
6202
6203         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
6204         properties.
6205
6206         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
6207
6208 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
6209
6210         * FileDialog.cs: Set ClientSize instead of window size, to allow space
6211           for decorations (Fixes #79219)
6212
6213 2006-09-01  Mike Kestner  <mkestner@novell.com>
6214
6215         * ComboBox.cs: first stab at sorting plus some selection handling
6216         fixes to bring us more in line with MS behavior.  Also switches back
6217         to index based selection.  Alternative patches for index-based 
6218         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
6219         and latency@gmx.de on bug 78848.  I assume they were similar to this
6220         code I've had simmering in my tree forever.
6221         [Fixes #78848]
6222
6223 2006-09-01  Chris Toshok  <toshok@ximian.com>
6224
6225         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
6226         when setting list position guard against ending up with a -1 index
6227         (the other part of the fix for #78812).  Should probably make sure
6228         we don't need the analogous fix in the ItemDeleted case.
6229
6230         * DataGrid.cs:
6231         - in SetDataSource, work around the fact that the way
6232         OnBindingContextChanged is invoked will cause us to re-enter this
6233         method.  I'll remove the hack once I investigate
6234         OnBindingContextChanged.
6235
6236         - fix the logic in set_DataSource and set_DataMember (basically
6237         what to do if the other of the two is null.)
6238         
6239         - in OnListManagerItemChanged, we need to take into account the
6240         edit row when deciding whether or not to call RecreateDataGridRows
6241         (part of the fix for #78812).
6242
6243 2006-09-01  Jackson Harper  <jackson@ximian.com>
6244
6245         * Splitter.cs: Don't do anything if there is no control to affect
6246         (prevents us from crashing in weird tet cases).
6247         * TreeView.cs: Bounding box for the mouse movement reverting
6248         focus/selection back to previously selected node.  This matches
6249         MS, and makes the tree a lot more useable.
6250         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
6251         use clipping so they are not drawn.  This fixes when the control
6252         is set to have a transparent background, or if it was over an
6253         image.
6254
6255 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
6256
6257         * MimeIcon.cs: Improved handling for reading default icons when
6258           using gnome (2.16 made it necessary). Check and read svg icons
6259           first, then 48x48 and then 32x32 icons.
6260
6261 2006-08-31  Chris Toshok  <toshok@ximian.com>
6262
6263         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
6264         visible.
6265
6266         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
6267         ProcessKeyPreview.  Fixes part of #77806.
6268
6269         * DataGrid.cs: big patch.
6270
6271         - revert the queueing up of DataSource/DataMember if inside
6272         BeginInit/EndInit calls.  That's not the way the datagrid achieves
6273         its delayed databinding.  Instead, call SetDataSource in
6274         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
6275         #78811.
6276
6277         - Also, it wasn't mentioned in #78811, but the test case exhibits
6278         behavior that was lacking in our datagrid implementation - Columns
6279         that have mapping names that don't exist in the datasource's
6280         properties aren't shown.  Yuck.  To fix this I added the bound
6281         field to the column style, and basically any calculation to figure
6282         out anything about columns uses a loop to find the bound columns.
6283         still need to investigate if I can cache an array of the bound
6284         columns or if the indices must be the same.
6285
6286         - When setting CurrentCell, we no longer abort if the cell being
6287         edited was in the add row.  This fixes the other part of #77806.
6288
6289         - The new code also fixes #78807.
6290         
6291         * ThemeWin32Classic.cs: perpetrate the same disgusting
6292         column.bound field hack, and only render bound fields.
6293
6294 2006-08-31  Chris Toshok  <toshok@ximian.com>
6295
6296         * DataGridColumnStyle.cs: add bound field.  this field is true if
6297         the datasource has a property corresponding to the mapping name.
6298
6299         * DataGridTableStyle.cs: set the bound field on the column styles
6300         depending on whether or not we have a column for that property.
6301
6302 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
6303
6304         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
6305           splitter control (fixes #79228)
6306
6307 2006-08-31  Chris Toshok  <toshok@ximian.com>
6308
6309         * DataGridColumnStyle.cs: we need to delay the assignment of
6310         property descriptor until the last possible moment due to the lazy
6311         databinding stuff in the datagrid.  Also, fix the exceptions
6312         thrown by CheckValidDataSource to match MS.
6313
6314 2006-08-31  Jackson Harper  <jackson@ximian.com>
6315
6316         * Form.cs: When activated select the active control, if there is
6317         no active control, we select the first control.
6318         * XplatUIX11.cs: If there is no focus control when we get a
6319         FocusIn event, find the toplevel form and activate it.  This
6320         occurs when you popup a window, it becomes the focus window, then
6321         you close that window, giving focus back to the main window.
6322
6323 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6324
6325         * MonthCalendar.cs: 
6326         * ThemeWin32Classic.cs: Cache Font in bold style, as well
6327         as StringFormat with Center alignments in MonthCalendar,
6328         instead of creating new ones when drawing the control. 
6329         Also, draw the month name in bold style.
6330
6331 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
6332
6333         * Control.cs:
6334           - PerformLayout(): It would seem MS performs the fill even if the 
6335             control is not visible (part of #79218 fix)
6336           - ResetBackColor(): Use the setter to reset the color, to allow
6337             overriders to catch the change.
6338         * Form.cs:
6339           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
6340           - CreateHandle(): dito (part of $79218 fix)
6341           - Don't set an icon if we have a dialog
6342         * ScrollableControl.cs:
6343           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
6344           - ScrollIntoView(): No need to scroll if control is already visible
6345             (resolves fixme and fixes #79218)
6346
6347 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6348
6349         * MonthCalendar.cs: Change proportions in SingleMonthSize
6350         to match the aspect of the original control.
6351
6352 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
6353
6354         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
6355           get updated when they get maximized.
6356
6357 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
6358
6359         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
6360
6361 2006-08-29  Chris Toshok  <toshok@ximian.com>
6362
6363         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
6364
6365 2006-08-29  Jackson Harper  <jackson@ximian.com>
6366
6367         * TreeView.cs: Need to track selected node and highlighted node,
6368         they aren't always the same thing, when the mouse is down on a
6369         node it is hilighted, but not selected yet.
6370         - Do the HideSelection stuff right
6371         - Need to focus on rbutton mouse down. And redraw selection when
6372         right click is mouse upped.
6373
6374 2006-08-29  Mike Kestner  <mkestner@novell.com>
6375
6376         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
6377         when SubItems.Count < Columns.Count.  [Fixes #79167]
6378
6379 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
6380
6381         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
6382
6383 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
6384
6385         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
6386           from X. Only send based on ConfigureNotify if we don't have the
6387           correct location in hwnd (if the window manager moved us)
6388
6389 2006-08-28  Mike Kestner  <mkestner@novell.com>
6390
6391         * ListView.cs: remove a TODO. 
6392         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
6393         [Fixes ListView part of #79166]
6394
6395 2006-08-28  Mike Kestner  <mkestner@novell.com>
6396
6397         * ListView.cs: move wheel handler to parent since it is focused
6398         instead of the item_control now.  [Fixes #79177]
6399
6400 2006-08-28  Mike Kestner  <mkestner@novell.com>
6401
6402         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
6403         when the control is focused. [Fixes #79171]
6404
6405 2006-08-28  Mike Kestner  <mkestner@novell.com>
6406
6407         * ListView.cs: size the item and header controls for empty and
6408         unscrollable views.
6409         * ThemeWin32Classic.cs: draw disabled backgrounds.
6410         [Fixes #79187]
6411
6412 2006-08-28  Chris Toshok  <toshok@ximian.com>
6413
6414         * Form.cs: remove unused "active_form" static field.
6415
6416         * Hwnd.cs: lock around accesses to static windows collection.
6417
6418         * Application.cs: lock threads in Exit ().
6419
6420 2006-08-28  Chris Toshok  <toshok@ximian.com>
6421
6422         * NativeWindow.cs: lock around accesses to window_collection.
6423         
6424 2006-08-28  Chris Toshok  <toshok@ximian.com>
6425
6426         * Control.cs: err, fix this the right way, by locking on controls
6427         when using it.  not by making it synchronized.
6428
6429 2006-08-28  Chris Toshok  <toshok@ximian.com>
6430
6431         * Control.cs: make the static "controls" field synchronized, as it
6432         gets updated from multiple threads.
6433
6434 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6435
6436         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
6437           Prevent other threads from exiting when calling thread sets quit state.
6438         * XEventQueue.cs: Added PostQuitState property
6439
6440 2006-08-27  Chris Toshok  <toshok@ximian.com>
6441
6442         * AsyncMethodData.cs: add a slot for the window handle.
6443
6444         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
6445         window (the destination control's window, not the foster window).
6446
6447         * Control.cs (BeginInvokeInternal): store the window's handle in
6448         the AsyncMethodData.
6449         
6450
6451 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
6452
6453         * XplatUIX11.cs:
6454           - PostQuitMessage: Removed resetting S.D display handle, we might have
6455             another loop started after calling PostQuitMessage (Fixes #79119)
6456           - Created destructor to reset S.D handle
6457
6458 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
6459
6460         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
6461
6462 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6463
6464         * TextControl.cs (Insert): Update the caret position even if we don't
6465           have a handle yet, just don't call the driver in that case.
6466         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
6467           to the end of the new selection text (Fixes #79184)
6468
6469 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6470
6471         * Form.cs (Activate): Only activate if the handle is created)
6472         * Control.c:
6473           - Mark window as invisible when it's disposed
6474           - Check if window handle is created when setting window visible, 
6475             instead of relying just on the is_created variable
6476           - Check if object is disposed when creating the control (Fixes #79155)
6477
6478 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6479
6480         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
6481           when allowing layout again. Otherwise we re-generate the anchoring 
6482           distance to the border again and actually alter what the user wanted
6483           This is ugly, it'd be better if we used DisplayRectangle instead of
6484           ClientRectangle for Control.UpdateDistances, but that causes us to
6485           have other problems (initial anchoring positons would be wrong)
6486           (Fixes #78835)
6487
6488 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6489
6490         * Control.cs:
6491           - The size and location setters shouldn't go directly to 
6492             SetBoundsCore, but to SetBounds, which triggers layout on the
6493             parent, then calls SetBoundsCore. (Related to fix for #78835)
6494           - SetBounds: Moved actual location update code into this function
6495             from SetBoundsCore, to match MS. Added call to PerformLayout if
6496             we have a parent (to trigger resizing of anchored parents if the 
6497             child size has changed (see testcase for #78835) 
6498         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
6499           new control code
6500         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
6501
6502 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6503
6504         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
6505           System.Drawing when a toplevel window gets closed; there might
6506           be other toplevel windows belonging to the same app (Fixes #78052)
6507
6508 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
6509
6510         * FileDialog.cs: After reading FileDialog settings from mwf_config
6511           use Desktop prefix only if a real folder doesn't exist anymore.
6512         * FontDialog.cs: Added char sets.
6513           It is now possible to select the font, size or style with the
6514           textboxes.
6515
6516 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
6517
6518         * PrintPreviewDialog.cs: Use assembly name constants.
6519
6520 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6521
6522         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
6523           scrollbar from whacking it's buttons)
6524
6525 2006-08-24  Chris Toshok  <toshok@ximian.com>
6526
6527         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
6528         in this patch (aggregating setting Left/Top/Width/Height to
6529         setting Bounds on the scrollbars), but the crux of the fix is in
6530         Recalculate, where we scroll by the remaining scroll_position if
6531         we're hiding a scrollbar.  The 2*$5 reward in the comment is
6532         serious.
6533
6534 2006-08-24  Jackson Harper  <jackson@ximian.com>
6535
6536         * MdiClient.cs:
6537         * MdiWindowManager.cs: If the form is made a non-mdi window we
6538         need to remove the form closed event so that closing forms works
6539         correctly.
6540
6541 2006-08-24  Jackson Harper  <jackson@ximian.com>
6542
6543         * Control.cs: Make IsRecreating internal so that the driver can
6544         check it
6545         - Temporarily remove the Hide when controls are removed, its
6546         making a whole bunch of things not work because visibility isn't
6547         getting reset elsewhere correctly
6548         * Form.cs: Need to do a full handle recreation when the mdi parent
6549         is set.
6550         * XplatUIX11.cs: If we are recreating handles don't dispose the
6551         HWNDs.  What was happening is the handles were being recreated in
6552         SendWMDestroyMessages, but then flow continued on in that method
6553         and destroyed the new handles.
6554
6555 2006-08-23  Jackson Harper  <jackson@ximian.com>
6556
6557         * Form.cs: MdiClient is always at the back of the bus
6558         * Control.cs: When the order of items in the collection is changed
6559         we need to reset the all_controls array
6560         - do the same sorta setup thats done when adding a control when a
6561         control is set on the collection.
6562
6563 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6564
6565         * TextBoxBase.cs (get_Text): Return an empty array if our document
6566           is empty (fixes #79052)
6567
6568 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6569
6570         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
6571           on WM_SYSCHAR messages (fixes #79053)
6572
6573 2006-08-23  Chris Toshok  <toshok@ximian.com>
6574
6575         * DataGrid.cs: fix flickering when scrolling vertically.
6576
6577 2006-08-23  Chris Toshok  <toshok@ximian.com>
6578
6579         * DataGrid.cs (EndEdit): only invalidate the row header when we
6580         need to.
6581
6582 2006-08-23  Chris Toshok  <toshok@ximian.com>
6583
6584         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
6585         methods.  fixes the flicker when scrolling around.
6586
6587 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6588
6589         * FileDialog.cs: Making sure the control is created before we get a 
6590           chance to use it with BeginInvoke (Fixes #79096)
6591
6592 2006-08-23  Chris Toshok  <toshok@ximian.com>
6593
6594         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
6595         width to use when painting the rows.
6596
6597 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6598
6599         * TextBoxBase.cs:
6600           - Throw ArgumentException if a negative value is passed to SelectionLength
6601           - Update the selection end if start is moved. end needs to be always
6602             after start. (Fixes #79095)
6603           - Track selection length; MS keeps the selection length even if start
6604             is changed; reset on all other operations affection selection
6605
6606 2006-08-22  Jackson Harper  <jackson@ximian.com>
6607
6608         * TreeView.cs: Make sure both scrollbars get displayed and sized
6609         correctly when the other bar is visible.
6610         - Use the original clip rectangle for checking if the area between
6611         the two scrollbars is visible, not the viewport adjusted clipping
6612         rectangle.
6613
6614 2006-08-22  Jackson Harper  <jackson@ximian.com>
6615
6616         * Binding.cs: We don't use IsBinding because it requires the
6617         control to be created, which really shouldn't be necessary just to
6618         set a property on the control.
6619
6620 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6621
6622         * ComboBox.cs: Some CB.ObjectCollection methods must throw
6623         ArgumentNullReferenceException when the argument is null.
6624
6625 2006-08-21  Jackson Harper  <jackson@ximian.com>
6626
6627         * Timer.cs: Track the thread that the timer is started in (NOT
6628         CREATED), this way messages for it will only be triggered on its
6629         queue.
6630         * XEventQueue.cs: Track the timers here, this makes timers per
6631         thread, like MS.
6632         * XplatUIX11.cs: The timers are moved to the XEventQueue.
6633
6634 2006-08-19  Chris Toshok  <toshok@ximian.com>
6635
6636         * XplatUIX11.cs: after further communication with pdb, we get the
6637         best of both worlds.  SetZOrder working for un-Mapped windows, and
6638         no X errors for un-mapped windows.
6639
6640 2006-08-19  Chris Toshok  <toshok@ximian.com>
6641
6642         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
6643         as it was causing pdn toolbars to not have the correct stacking.
6644
6645 2006-08-18  Mike Kestner  <mkestner@novell.com> 
6646
6647         * ListView.cs : guard against negative ClientArea.Width in scrollbar
6648         calculation.  Not sure why control should ever be setting a negative
6649         width though.  Fixes #78931.
6650
6651 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6652
6653         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
6654         null items in ObjectCollection class.
6655         * ListBox.cs.: Likewise.
6656
6657 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
6658
6659         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
6660           as the base method in ThemeWin32Classic should work fine.
6661           Fixed bug #78607.
6662
6663 2006-08-18  Jackson Harper  <jackson@ximian.com>
6664
6665         * Binding.cs: When validating if the value entered doesn't convert
6666         properly reset to the old value.
6667         * RadioButton.cs: Don't fire click when we get focus.
6668
6669 2006-08-18  Jackson Harper  <jackson@ximian.com>
6670
6671         * FileDialog.cs: Paint the selection on the directory combobox the
6672         same way as on MS. 
6673
6674 2006-08-17  Jackson Harper  <jackson@ximian.com>
6675
6676         * ErrorProvider.cs: Don't allow the error control to be selected.
6677         * Control.cs: Don't send the SetFocus messages, the control
6678         activation will do this, and if we do it blindly here validation
6679         does not work.
6680
6681 2006-08-17  Jackson Harper  <jackson@ximian.com>
6682
6683         * Control.cs:
6684         * ContainerControl.cs: Make validation events fire in the correct
6685         order.  TODO: For some reason the first validation event is not
6686         getting fired.
6687
6688 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6689
6690         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6691
6692 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6693
6694         * ComboBox.cs : implement scroll wheel support for popped-down
6695         state. Fixes #78945. 
6696
6697 2006-08-17  Jackson Harper  <jackson@ximian.com>
6698
6699         * TreeView.cs: Specify treeview actions (old patch that didn't get
6700         committed for some reason).
6701         - Don't let the mouse wheel scroll us too far.  Just want to make
6702         the bottom node visible, not scroll it all the ways to the top.
6703
6704 2006-08-17  Jackson Harper  <jackson@ximian.com>
6705
6706         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6707
6708 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6709
6710         * ComboBox.cs : don't do mouseover selection in simple mode.
6711
6712 2006-08-16  Jackson Harper  <jackson@ximian.com>
6713
6714         * Form.cs: Fire the closing events for all the mdi child windows
6715         when a window is closed.  If the cancel args are set to true, the
6716         main window still gets the event fired, but it doesn't not close.
6717         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6718         handler, instead of when the button is clicked, so cancelling the
6719         close works correctly.
6720         * ComboBox.cs: Send the mouse down to the scrollbar.
6721
6722 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6723
6724         * ListBox.cs: When passing 'null' to SelectedItem,
6725         set SelectedIndex to -1, to unselect items. This is the
6726         observed behaviour in .Net.
6727
6728 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6729
6730         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6731           MS flags saying there won't be any. (fixes #78800)
6732         * Control.cs (HandleClick): Made virtual
6733
6734 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6735
6736         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6737           cultures. Fixed bug #78399.
6738
6739 2006-08-16  Jackson Harper  <jackson@ximian.com>
6740
6741         * Form.cs: Use the MdiClients MdiChildren property to access
6742         MdiChildren instead of creating the array from the child controls.
6743         * MdiClient.cs: Maintain a separate array of the mdi children, so
6744         that insertion order is maintained when the Z-order is changed.
6745
6746 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6747
6748         * ListView.cs : add an ItemComparer and default to it for sorting.
6749         Fixes #79076, but sorting needs a complete overhaul to be compat with
6750         MS.
6751
6752 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6753
6754         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6755
6756 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6757
6758         * Hwnd.cs (Mapped): Properly traverse the tree
6759
6760 2006-08-15  Chris Toshok  <toshok@ximian.com>
6761
6762         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6763         pass manager.Current.GetType() to ParseData.  It has to be the
6764         property type.  So, hold off doing the ParseData until we're in
6765         SetPropertyValue where we know the type.  This fixes the crash in
6766         #78821 but the textbox is still empty.
6767
6768 2006-08-15  Chris Toshok  <toshok@ximian.com>
6769
6770         * DataGrid.cs:
6771         - when we're scrolling, only call Edit() again if the
6772         current cell is still unobscured. Fixes bug #78927.
6773         - when handling mousedown on a cell, ensure the cell is visible
6774         before calling Edit.
6775         - remove the properties from DataGridRow, and remove the
6776         DataGridParentRow class altogether.
6777         
6778
6779 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6780
6781         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6782           fire OnTextChanged by ourselves. There's no point calling base,
6783           we don't set the base value anywhere else. Fixes #78773.
6784
6785 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6786
6787         * ListBox.cs: Call CollectionChanged when modifying
6788         an item from Items indexer, to update the actual items
6789         in the list box.
6790
6791 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6792
6793         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6794         to match .Net behaviour.
6795
6796 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6797
6798         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6799
6800 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6801
6802         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6803
6804 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6805
6806         * MessageBox.cs: Prevent potential NRE exception.
6807         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6808
6809 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6810
6811         * MessageBox.cs: Calculate the owner of a messagebox, also make
6812           it topmost. Fixes #78753
6813
6814 2006-08-14  Chris Toshok  <toshok@ximian.com>
6815
6816         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6817         programmatically move windows.  first, set the PPosition hint as
6818         well as the USPosition hint.  Second include some code from pdb
6819         that sets the window type to NORMAL when we set the transient for
6820         hint.  This is because, in the absence of a window type, metacity
6821         thinks any window with TransientFor set is a dialog, and refuses
6822         to let us move it programmatically.  fascists.
6823
6824 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6825
6826         * XplatUIX11.cs: When setting normal hints, take into consideration
6827           an different hints previously set so we don't delete them (fixes #78866)
6828
6829 2006-08-12  Chris Toshok  <toshok@ximian.com>
6830
6831         * ToolBarButton.cs: make Layout return a boolean, if something to
6832         do with the button's layout changed.
6833
6834         * ToolBar.cs:
6835         - add another parameter to Redraw, @force, which all existing
6836           calls set to true.
6837         - make the Layout function return a boolean which is true if the
6838           layout has actually changed.  Redraw now uses this (and @force)
6839           to determine when to invalidate.  At present the only place
6840           where @force can be false is the call from OnResize, when
6841           background_image == null.  So, resizing a toolbar when the
6842           layout doesn't change results in no drawing.
6843
6844 2006-08-12  Chris Toshok  <toshok@ximian.com>
6845
6846         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6847         the VScrollBar and HScrollbar reversed.  oops.
6848
6849         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6850         scrollbars.  we were assigning them twice (once in
6851         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6852         therefore causing two scrollbar resizes (and redraws?) to happen
6853         per grid resize.
6854
6855 2006-08-12  Chris Toshok  <toshok@ximian.com>
6856
6857         * ToolBarButton.cs: redraw the entire button if the theme tells us
6858         to.
6859
6860         * Theme.cs: add ToolBarInvalidateEntireButton.
6861
6862         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6863         buttons, just the border.
6864
6865         * ThemeNice.cs: redraw the entire toolbar button since we need to
6866         draw the highlight image.
6867
6868         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6869         we need to redraw the entire button (not just the border).
6870
6871 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6872
6873         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6874           for vertical bars. Fixes the mismatches shown by #78513
6875
6876 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6877
6878         * FileDialog.cs: If a saved/remembered path doesn't exist
6879           anymore, fall back to "Desktop".
6880
6881 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6882
6883         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6884           parent. It's apparently legal to not have one
6885         * XplatUIX11.cs:
6886           - SetZOrder: Don't try to set Z-Order on an unmapped window
6887           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6888             it unless the coordinates are negative
6889
6890 2006-08-10  Mike Kestner  <mkestner@novell.com>
6891
6892         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6893         when setting to null per msdn docs.  Fixes #78854.
6894
6895 2006-08-10  Chris Toshok  <toshok@ximian.com>
6896
6897         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6898         flickering by setting a clip rectangle on the Graphics when we
6899         need to redraw just a particular menuitem.  Also, rename "OnClick"
6900         to "OnMouseDown" to reflect what it actually is.
6901         
6902         * Form.cs: track the OnMouseDown change.
6903
6904 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6905
6906         * CommonDialog.cs: Properly inherit the CreateParams from the form
6907           and only change what we need. Fixes #78865
6908
6909 2006-08-10  Chris Toshok  <toshok@ximian.com>
6910
6911         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6912         flickering in flat mode (and most of the flickering in general) by
6913         only invalidating the button border (and not the entire rectangle)
6914         when the state changes.  A couple of cases still flicker:
6915         ToggleButtons, and the dropdown arrow case when the user mouse
6916         ups.
6917
6918 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6919
6920         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6921           for german keyboards. Numlock state shouldn't affect the behaviour
6922           of the Del key. Fixes bug #78291.
6923
6924 2006-08-10  Chris Toshok  <toshok@ximian.com>
6925
6926         * ListControl.cs: remove the items.Clear line from BindDataItems,
6927         as this is the first thing done by both subclasses in their
6928         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6929         passed -1, refresh the list.  This gets databinding working when
6930         the datasource is set on the list before the datasource is
6931         populated (as in wf-apps/ReportBuilder.)
6932
6933         * ComboBox.cs: remove the argument to BindDataItems.  This call
6934         should really go away, and be initiated by the ListControl code.
6935
6936         * ListBox.cs: same.
6937
6938 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6939
6940         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6941           if no data is in the document when the control is displayed
6942
6943 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6944
6945         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6946           yes (fixes #78806)
6947         * TextControl.cs: 
6948           - PositionCaret: Allow positioning of caret but don't call methods 
6949             requiring a handle if the window isn't created yet
6950           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6951           - owner_HandleCreated: Don't position the caret, just update it's 
6952             location. User might have already set a different position
6953
6954 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6955
6956         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6957           windows. Screws up the returned coordinates for child windows. 
6958           Fixes #78825. I'm hoping this doesn't break something, since the
6959           code was explicitly put in 8 months ago, but no bug was attached.
6960           Menus still seem to work properly.
6961
6962 2006-08-08  Chris Toshok  <toshok@ximian.com>
6963
6964         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6965         supposed to do - delay data binding until the EndInit call.  Also,
6966         make the table style collection's CollectionChangeAction.Refresh
6967         work properly.
6968
6969         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6970         (with action = Refresh) when a consituent table's MappingName is
6971         changed.
6972
6973 2006-08-08  Chris Toshok  <toshok@ximian.com>
6974
6975         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6976         Invalidate, since changing the text can change the size of the all
6977         toolbar buttons.
6978
6979 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6980
6981         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6982           we don't have it yet
6983
6984 2006-08-08  Chris Toshok  <toshok@ximian.com>
6985
6986         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6987         dialog, as this causes X errors later on, since we actually
6988         destroy the window.  Instead, .Hide() it.
6989
6990 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6991
6992         * ComboBox.cs: Added focus reflection for popup window
6993         * XplatUIX11.cs: 
6994           - Removed transient setting for non-app windows for now, not sure it
6995             was needed
6996           - Fixed logic checking if we have captions when deciding 
6997             override_redirect, WS_CAPTION is two bits and a 0 check was not
6998             sufficient
6999           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
7000             complicated
7001         * Form.cs: 
7002           - AddOwnedForm: Don't just add the form to the list, call the property
7003             to ensure the driver is informed about the ownership as well
7004           - CreateHandle: Set the TopMost status in the driver if we have an owner
7005         * XplatUI.cs: Fixed debug statement
7006
7007 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
7008         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7009           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
7010           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
7011           TrackBarRenderer.cs: Make constructor private.
7012         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
7013         * ProfessionalColorTable.cs: Make properties virtual.
7014
7015 2006-08-06  Duncan Mak  <duncan@novell.com>
7016
7017         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
7018         is not changing.
7019
7020 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7021         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
7022           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
7023           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
7024           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
7025           Initial import of new 2.0 classes.
7026
7027 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7028         * Application.cs: Add 2.0 VisualStyles properties.
7029
7030 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
7031         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7032           XplatUIX11.cs: Create property to allow access to existing private
7033           variable "themes_enabled"
7034
7035 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7036
7037         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
7038         file size, as otherwise our class libraries fail using windows. Fixes
7039         bug #78759.
7040
7041 2006-08-04  Jackson Harper  <jackson@ximian.com>
7042
7043         * Form.cs:
7044         * XplatUIX11.cs: Move the toolwindow window manager creation into
7045         the X11 driver, this way on win32 we can let windows create/handle
7046         the toolwindows.
7047
7048 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7049
7050         * PrintDialog.cs: Remove some redundant checks, add some others,
7051         clean some code, and move the focus to the text boxes when the
7052         values are incorrect.
7053
7054 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
7055
7056         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
7057
7058 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7059
7060         * NumericUpDown.cs: Setting the Minimum and Maximum is now
7061           handled correctly. Fixes bug #79001.
7062
7063 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7064
7065         * PrintDialog.cs: The "Copies" numeric up down must have
7066         set the Minimum property to 1; only if the value is bigger
7067         than 1, activate "Collate" check box. This is the behaviour of .Net.
7068         Also modify the Document elements only if it is not null.
7069
7070 2006-08-03  Jackson Harper  <jackson@ximian.com>
7071
7072         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
7073         length. (We have a larger array then actual node count).
7074                 
7075 2006-08-03  Jackson Harper  <jackson@ximian.com>
7076
7077         * ComboBox.cs: Don't show selection by default.
7078         - The SelectAll isn't needed here, since the focus code should do
7079         that
7080         - DDL style lists to manual selection drawing, so when they
7081         get/lose focus they have to invalidate.
7082
7083 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
7084
7085         * TextBoxBase.cs: Don't always show all selections by default.
7086
7087 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
7088         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
7089           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
7090           Fixed various typos.
7091
7092 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
7093
7094         * Control.cs: Removing the controls in a ControlCollection with
7095           Clear now hides the controls as expected. Fixes bug #78804. 
7096
7097 2006-08-03  Jackson Harper  <jackson@ximian.com>
7098
7099         * Control.cs: Revert previous focus patch, it breaks reflector.
7100
7101 2006-08-03  Jackson Harper  <jackson@ximian.com>
7102
7103         * ComboBox.cs: Cleanup selection and focus with the combobox.
7104         This also eliminates some duplicated keyboard code, since now
7105         everything is handled by the main class.
7106         - Make list selection work on mouse up instead of down, to match
7107         MS.
7108
7109 2006-08-02  Jackson Harper  <jackson@ximian.com>
7110
7111         * Control.cs: Setting focus needs to go through the whole
7112         selection mechanism.
7113
7114 2006-08-02  Chris Toshok  <toshok@ximian.com>
7115
7116         * PrintPreviewDialog.cs: change MinimumSize to use
7117         base.MinimumSize so it works.
7118
7119 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
7120
7121         * TextControl.cs:
7122           - UpdateCaret: Added sanity check in case caret isn't defined yet
7123           - Line.Delete: Now updating selection and caret markers if we're
7124             transfering a node (Properly fixes #78323)
7125           - SetSelectionEnd: Added sanity check
7126         * TextBoxBase.cs: Removed broken attempt to fix #78323
7127
7128 2006-08-01  Chris Toshok  <toshok@ximian.com>
7129
7130         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
7131         Close() call is handled in Form, not here.
7132
7133 2006-08-01  Chris Toshok  <toshok@ximian.com>
7134
7135         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
7136         layout/rendering.
7137
7138         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
7139         for sizes < 100% zoom.  The code now aggressively attempts to keep
7140         from calling document.Print (), and tries not to use the scaling
7141         g.DrawImage whenever possible (it still does if you scale to >
7142         100%, since usually that involves huge images).
7143
7144         * PrintPreviewControl.cs: hook up the close button.
7145
7146 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
7147         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
7148           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
7149           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
7150           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
7151           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
7152           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
7153           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
7154           Removed [Serializable] for 2.0 Event Handlers.
7155
7156 2006-07-31  Jackson Harper  <jackson@ximian.com>
7157
7158         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
7159         * TextControl.cs: Uncomment out the body of this method.
7160
7161 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
7162
7163         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
7164           standard cursors.
7165
7166 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7167
7168         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
7169           that embed TextBox and need selections visible even if textbox is not
7170           focused to enforce that behaviour.
7171         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
7172           selection drawing
7173
7174 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7175
7176         * TextControl.cs:
7177           - Added new SetSelectionStart/SetSelectionEnd overloads
7178           - Fixed viewport width assignment to be accurate
7179           - Adjusted alignment line shift calculations to allow cursor on right
7180             aligned lines to be always visible at the right border (like MS)
7181         * TextBoxBase.cs:
7182           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
7183           - TextBoxBase_SizeChanged: recalculating canvas on size changes
7184           - CalculateScrollBars: Use ViewPort size instead of window size, to
7185             properly consider space occupied by the border and scrollbars 
7186             (Fixes #78661)
7187           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
7188             calculations; no longer leaves artifacts
7189           - CaretMoved: Adjusted window scrolling to match MS and fixed several
7190             calculation bugs (Still missing right/center align calculations)
7191
7192 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
7193
7194         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
7195           use of both scroll rect and clip rect, as they do the same.
7196
7197 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
7198
7199         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
7200           in the event handler (fixes #78912)
7201
7202 2006-07-31  Chris Toshok  <toshok@ximian.com>
7203
7204         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
7205         grid.ListManager.Count, since grid.ListManager might be null.
7206         This of course begs the question "why are we drawing rows for a
7207         grid with no list manager (and therefor no rows)?"  Fixes the
7208         crash in bug #78929.
7209
7210 2006-07-31  Chris Toshok  <toshok@ximian.com>
7211
7212         * RelatedPropertyManager.cs: Don't always chain up to the parent
7213         ctor.  instead, call SetDataSource if the parent's position is !=
7214         -1.  Fixes the crash in #78822.
7215
7216 2006-07-31  Chris Toshok  <toshok@ximian.com>
7217
7218         * DataGrid.cs (get_ListManager): use field instead of property
7219         accessors for datasource and datamember.
7220         (RowsCount): make internal again.
7221         (OnMouseDown): end edits before resizing columns/rows.
7222         (OnMouseUp): restart edits after resizing columns/rows.
7223
7224 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
7225
7226         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
7227           This fixes the situation where the last set cursor is displayed
7228           whenever the mouse is over scrollbars.
7229
7230 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7231
7232         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
7233         Document properties, as well as initial values.
7234
7235 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
7236
7237         * XplatUIWin32.cs (SetBorderStyle): Setting both border
7238           and ClientEdge results in a 3-pixel border, which is
7239           wrong.
7240
7241 2006-07-28  Jackson Harper  <jackson@ximian.com>
7242
7243         * TreeNodeCollection.cs: Fix the clear method.
7244         - Fix the Shrink also
7245
7246 2006-07-27  Jackson Harper  <jackson@ximian.com>
7247
7248         * TreeView.cs: Make sure the visible order is computed when we
7249         attempt to size the scrollbars (for trees that mess with the
7250         scrolling when they shouldn't.
7251         - Make sure to give the scrollbars valid values.
7252
7253 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7254
7255         * XplatUIX11.cs: Move motion compression code to where it
7256           has less performance impact
7257
7258 2006-07-26  Jackson Harper  <jackson@ximian.com>
7259
7260         * UpDownBase.cs: When the control is selected make the child
7261         controls non selectable, so that a click on them won't do a
7262         focus/unfocus cycle.
7263         - Don't give focus to the text box when the spinner is selected.
7264         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
7265
7266 2006-07-26  Chris Toshok  <toshok@ximian.com>
7267
7268         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
7269         satisfied with this solution.  If the bitmaps are small, we should
7270         just cache them in the PrintPreviewDialog and draw them here.
7271         Also, the layout is broken for the 2-up and 3-up cases.
7272
7273         * Theme.cs: add PrintPReviewControlPaint.
7274
7275         * PrintPreviewDialog.cs: first pass implementation.
7276
7277         * PrintPreviewControl.cs: first pass implementation.  No
7278         scrollbars yet.
7279
7280         * PrintDialog.cs: only validate fields if that particular portion
7281         of the UI is enabled.  Also, set the document's controller to a
7282         PrintControllerWithStatusDialog wrapping the document's print
7283         controller.
7284
7285         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
7286         bring up a SaveFileDialog (i hope we don't want to match the
7287         behavior of the crappy windows file entry) and set the
7288         PrinterSettings.PrintFileName accordingly.
7289
7290 2006-07-26  Jackson Harper  <jackson@ximian.com>
7291
7292         * ContainerControl.cs: Add a field that disables auto selecting
7293         the next control in a container when the container is activated.
7294         * UpDownBase.cs: Don't select the text box when the up down is
7295         selected.
7296
7297 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
7298
7299         * XEventQueue.cs: Added methods for peeking (used for compression
7300           of successive events)
7301         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
7302           mouse move events (fixes #78732)
7303
7304 2006-07-25  Jackson Harper  <jackson@ximian.com>
7305
7306         * UpDownBase.cs: Use an internal class for the textbox so that we
7307         can control focus.  the updown control should always have focus,
7308         if either the text area or the buttons are clicked.
7309         - Send the key messages to the textbox, since it never actually
7310         has focus
7311         - Activate and decativate the textbox caret.
7312
7313 2006-07-24  Jackson Harper  <jackson@ximian.com>
7314
7315         * Control.cs: Use the directed select when selecting a control,
7316         this way the container controls override will get called and the
7317         whole ActiveControl chain will get triggered.  TODO: probably need
7318         to make sure this gets done everywhere instead of the old
7319         Select(Control).
7320         * ContainerControl.cs: Implement the directed Select method to
7321         find and activate the correct child control.    
7322         
7323 2006-07-22  Mike Kestner  <mkestner@novell.com>
7324
7325         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
7326         menu handling code so that clicks without a grab work too.
7327         [Fixes #78914]
7328
7329 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
7330
7331         * FileDialog.cs: Enable the BackButton when dirstack has one element.
7332           Added some small optimizations.
7333
7334 2006-07-21  Matt Hargett  <matt@use.net>
7335
7336         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
7337
7338 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
7339
7340         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
7341           tests pass and match MS in some strange border cases.
7342
7343 2006-07-21  Chris Toshok  <toshok@ximian.com>
7344
7345         * ThemeWin32Classic.cs: handle drawing of the relation links and
7346         parent row buttons.
7347
7348         * Theme.cs: change args to DataGridPaintParentRow.
7349
7350         * DataGrid.cs: Don't use controls for the relation links and
7351         parent buttons, so we have to handle all their interactions in
7352         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
7353         when we're navigating through child tables, so we can reinstate
7354         selection, expanded state, current cell, etc.
7355
7356 2006-07-20  Chris Toshok  <toshok@ximian.com>
7357
7358         * ToolBar.cs: When we redraw a button, for whatever reason,
7359         there's no reason to redraw the entire toolbar.  Also, don't call
7360         Control.Refresh from within Redraw, as it's much heavier than
7361         Invalidate (which is really what we want).
7362
7363 2006-07-20  Chris Toshok  <toshok@ximian.com>
7364
7365         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
7366         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
7367         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
7368         traces from within a debug IBindingList datasource
7369         (in mono/winforms/datagrid) for *days*, I've finally gotten things
7370         to work in a similar fashion.
7371
7372 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7373
7374         * ListBox.cs: Don't call Sort () when setting 
7375         the Sorted property to false (avoid an unnecessary sort).
7376
7377 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7378
7379         * ListControl.cs: DataSource should throw an ArgumentException
7380         instead of a normal exception when the argument is not of the 
7381         correct type.
7382
7383 2006-07-20  Mike Kestner  <mkestner@novell.com>
7384
7385         * Control.cs: add InternalPreProcessMessage to allow us to steal
7386         key events before MWF gets its paws on them.  Adapted from a
7387         suggestion by eno.
7388         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
7389         up/down/left/right navigation. Override the new internal control
7390         method to steal the events since they never make it to WndProc.
7391         * ToolBarButton.cs: don't worry about pushed when setting hilight
7392         since the drawing code prefers pushed to hilight. Invalidate on 
7393         Hilight changes. Fixes #78547 and #78525.
7394
7395 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7396
7397         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
7398           the canvas size. Fixes #78868
7399
7400 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
7401
7402         * Splitter.cs: Track requested split position until first layout
7403           is performed. Fixes #78871
7404
7405 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
7406
7407         * Application.cs: Removed code that forces 1.x for the version
7408           number if the version started with 0. Not sure why that code was
7409           there and I couldn't find any bugs that indicated we needed it.
7410           Fixes #78869
7411
7412 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
7413
7414         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
7415           ResetDefaults(), just write some output to the console until it's
7416           implemented. Fixes bug #78907 for now. Eliminated two warnings.
7417
7418 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
7419
7420         * PropertyGridView.cs: set StartPosition of drop down forms
7421         so they appear in correct initial spot.  Fixes #78190.
7422
7423 2006-07-19  Mike Kestner  <mkestner@novell.com>
7424
7425         * ThemeWin32Classic.cs: use parent background color when drawing
7426         flat toolbars.  Restructure the conditionals to make sure non-flat
7427         non-Divider toolbars are filled too.  Fixes #78837.
7428
7429 2006-07-19  Mike Kestner  <mkestner@novell.com>
7430
7431         * ListBox.cs: Sort on collection changes even if the handle
7432         isn't created yet.  Fixes #78813.
7433
7434 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7435
7436         * ListControl.cs: DisplayMember should never be null,
7437         and now we assign String.Empty when null is passed to it (this
7438         is the .Net way).
7439
7440 2006-07-17  Mike Kestner  <mkestner@novell.com>
7441
7442         * ListViewItem.cs: restructure Font and subitem Font handling 
7443         to hold a specific font and refer back to owner on null.
7444         Fixes #78761.
7445
7446 2006-07-17  Mike Kestner  <mkestner@novell.com>
7447
7448         * ToolBar.cs: bandaid for side-effect of previous patch which was
7449         discarding explicit heights for non-AutoSize toolbars.  Need to
7450         extend my format tester to deal with AutoSize=false. Fixes #78864.
7451
7452 2006-07-15  Jackson Harper  <jackson@ximian.com>
7453
7454         * LabelEditTextBox.cs:
7455         * TreeView.cs: Use a new LabelEdit class for node editing, this
7456         class automatically 'closes' itself when it gets the enter key or
7457         loses focus.
7458         - Use the client rectangle when setting the trees scrollbars, so
7459         border style is taken into account.
7460         
7461 2006-07-14  Jackson Harper  <jackson@ximian.com>
7462
7463         * TreeNode.cs:
7464         * TreeView.cs: Make the editing work similar to MSs, firing the
7465         events correctly and ending edits correctly.
7466
7467 2006-07-14  Mike Kestner  <mkestner@novell.com>
7468
7469         * ToolBarButton.cs:
7470         * ToolBar.cs: layout restructuring and redraw enhancements to support
7471         formatting changes gracefully, like setting TextAlign, ImageList, 
7472         ButtonSize, and Appearance.  Handles explicit button sizing quirks
7473         of the MS controls.  Things like flat toolbars ignoring button size
7474         but becoming constant sized at the largest button's size.  Normal
7475         toolbars with an image set cannot be shrunk smaller than the image,
7476         but text can be clipped/ignored.
7477         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
7478         is zero.  Seems like DrawString should be smart enough to not put
7479         anything on screen though. Also trim labels and ellipsize at the char
7480         boundary, not word.
7481         Fixes #78711 and #78483.
7482
7483 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7484
7485         * FolderBrowserDialog.cs: Disable "New Folder" button and
7486           "New Folder" contextmenu menuitem if a folder like "My Computer"
7487           is selected.
7488
7489 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7490
7491         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
7492         * FolderBrowserDialog.cs:
7493           - Use MWFConfig to store and read size and position settings
7494           - Added code to create a new folder (button or context menu).
7495             Use TreeView labeledit to change the name of the new folder.
7496
7497 2006-07-14  Jackson Harper  <jackson@ximian.com>
7498
7499         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
7500         when the tree is scrolled we end editing.
7501
7502 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7503
7504         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
7505           Down arrows
7506
7507 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
7508
7509         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
7510         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
7511         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
7512         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
7513         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
7514         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
7515         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
7516         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
7517         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
7518         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
7519         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
7520         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
7521         ListViewItemSelectionChangedEventHandler.cs,
7522         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
7523         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
7524         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
7525         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
7526         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
7527         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
7528         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
7529         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
7530         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
7531         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
7532         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
7533         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
7534         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
7535         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
7536         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
7537         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
7538         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
7539         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
7540         WebBrowserNavigatingEventHandler.cs, 
7541         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
7542
7543 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
7544
7545         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
7546         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
7547         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
7548         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
7549         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
7550         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
7551         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
7552         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
7553         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
7554         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
7555         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
7556         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
7557         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
7558         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
7559         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
7560         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
7561         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
7562         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
7563         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
7564         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
7565         ListViewItemStates.cs, MaskFormat.cs: Added
7566
7567 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
7568
7569         * PropertyGridView.cs: Fix keyboard navigation of drop down.
7570         Patch from eno for bug 78558.
7571         
7572 2006-07-13  Jackson Harper  <jackson@ximian.com>
7573
7574         * TreeView.cs: When an edit is finished make sure that the
7575         selected node is visible.
7576         - When setting the top/bottom use the scrollbars is_visible, so
7577         everything will be set correctly even if the tree isn't visible
7578         yet.
7579
7580 2006-07-13  Jackson Harper  <jackson@ximian.com>
7581
7582         * ComboBox.cs: Revert the item->index part of my previous patch.
7583         * TreeView.cs: Use LostFocus instead of Leave for detecting when
7584         the edit box has lost focus (duh).
7585         - Just make the edit box not visible when we get return, that will
7586         take the focus, which will call EndEdit
7587         * TreeNode.cs When we start editing, notify the treeview.
7588
7589 2006-07-12  Jackson Harper  <jackson@ximian.com>
7590
7591         * ComboBox.cs: Clear out old items before setting the item list.
7592         This prevents databound controls from having their items added
7593         twice.
7594         - Switch the combobox to use indices whereever possible instead of
7595         using Item's.  This allows usto navigate through lists that have
7596         more then one item with the same string value (ie a, b, b, a).
7597         - Scroll the listboxes scrollbar when a non visible item is
7598         highlighted
7599         - Allow keypress to cycle through all the possible values. For
7600         example if you have b1, b2, b3 and hold down the B key all the
7601         values will be cycled through.
7602         
7603 2006-07-12  Jackson Harper  <jackson@ximian.com>
7604
7605         * TextBoxBase.cs:
7606         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
7607         this using the internal methods.
7608         * Control.cs: Add OnGotFocusInternal.  A new method that allows
7609         controls to "override" OnGotFocus and change focus behavior if
7610         needed.
7611         - Same thing for LostFocus
7612         * ComboBox.cs: Pass off focus to the text control properly.
7613
7614 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
7615
7616         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
7617         * FolderBrowserDialog.cs: Almost a complete rewrite.
7618           - Better support for Environment.Specialfolders
7619           - Added support for MWFVFS
7620           - Made setting SelectedPath work
7621
7622 2006-07-12  Jackson Harper  <jackson@ximian.com>
7623
7624         * Control.cs: Optimze getting all the controls.
7625
7626 2006-07-11  Jackson Harper  <jackson@ximian.com>
7627
7628         * ContainerControl.cs: Override SETFOCUS in the container control,
7629         so that it is not selected on mouse click.
7630
7631 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
7632
7633         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
7634           Hopefully we will have a better way once all of focus is complete.
7635
7636 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
7637
7638         * ThemeWin32Classic.cs: Commented out some debug code and fixed
7639           a compile error with csc.
7640
7641 2006-07-11  Jackson Harper  <jackson@ximian.com>
7642
7643         * Control.cs: When hiding a control only select the next control
7644         if the current control was focused.
7645         - Don't handle enter/leave when setting/killing focus, this is
7646         done by the container control.
7647         - Remove is_selected, it's not needed anymore.
7648         - Add utility methods for selecting a child control, and for
7649         firing the Enter/Leave events.
7650         * ContainerControl.cs: When a control is activated fire the
7651         enter/leave events.
7652         - Don't wrap when processing the tab key, so that focus can be
7653         moved outside of the container.
7654         - Use the correct active control
7655
7656 2006-07-11  Jackson Harper  <jackson@ximian.com>
7657
7658         * ComboBox.cs: Remove some debug code that was blinding me.
7659         * UpDownBase.cs: These controls actually aren't implicit, they are
7660         visible to the user.
7661
7662 2006-07-10  Chris Toshok  <toshok@ximian.com>
7663
7664         * DataGrid.cs: move back to the is_adding boolean field.  god i
7665         hate this is_editing/is_adding/is_changing stuff.
7666
7667 2006-07-10  Chris Toshok  <toshok@ximian.com>
7668
7669         * DataGridTableStyle.cs: just check if the property type is bool.
7670         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
7671         Don't use CanRenderType.
7672
7673         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7674         if our text == NullText.  Remove CanRenderType.
7675
7676         * DataGridBoolColumn.cs: nuke CanRenderType.
7677
7678         * DataGrid.cs: reenable some code to end the current edit inside
7679         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7680         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7681         Also, remove the visible_row_count arg from CalcRowHeaders, since
7682         we don't need to worry about the actual height of the area.
7683
7684 2006-07-10  Chris Toshok  <toshok@ximian.com>
7685
7686         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7687         mode, just return.
7688
7689         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7690         the real sense of the IsInEditOrNavigateMode property (true =
7691         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7692
7693         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7694         column style exists, we still need to set its property descriptor
7695         to match up with our list manager.
7696
7697 2006-07-10  Chris Toshok  <toshok@ximian.com>
7698
7699         * ThemeWin32Classic.cs: implement the new row/header painting
7700         approach.  The parent row painting will likely go away and
7701         replaced with label controls, but the rest seems to work ok (and
7702         efficiently).
7703
7704         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7705         the row headers as a block now.  Instead we draw them in the
7706         normal draw-row loop.  Add some calls for drawing parent rows and
7707         relation rows.
7708
7709         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7710         a default table style.  Set the defaults from ThemeEngine.Current,
7711         not SystemColors.  Fix lots of misc issues with property setters.
7712
7713         * DataGrid.cs: move loads of style information out of this class
7714         as it's being duplicated with DataGridTableStyle.  keep track of a
7715         special DataGridTableStyle for the properties we used to mirror
7716         here.  Switch all the style properties to access this table style
7717         instead of instance fields of this class.  Also add a internal
7718         class to represent parent rows (more needs to be stored here, like
7719         the selection state from the parent table, as well as the
7720         expansion state.)  Also, for datasources with relations, do the
7721         right thing for collapse/expand, and add support for the
7722         navigation/parent row buttons.
7723
7724         Lastly, fix the crash in the 1.1.16 build.
7725
7726         * GridTableStylesCollection.cs: make the explicit interface
7727         implementations call the class's methods as opposed to duplicating
7728         them.
7729
7730         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7731         0 so the text doesn't jump around when we move the cursor.
7732
7733 2006-07-10  Jackson Harper  <jackson@ximian.com>
7734
7735         * TextBoxBase.cs:
7736         * ListBox.cs: Match MS's ToString (this makes debugging focus
7737         stuff infinitely easier).
7738
7739 2006-07-10  Jackson Harper  <jackson@ximian.com>
7740
7741         * Control.cs (SelectNextControl): When checking the control's
7742         parent use this instead of ctrl.parent so that null can be passed
7743         to SelectNextControl. (I have unit tests for this).
7744         - Remove unused var.
7745
7746 2006-07-10  Chris Toshok  <toshok@ximian.com>
7747
7748         * CurrencyManager.cs: correct one regression, the removal of the
7749         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7750         Refresh() correctly, and fix some event emission in
7751         ListChangedHandler.
7752
7753 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7754
7755         * FileDialog.cs: Don't use brackets for new folders if they exist
7756           under *nix. Instead use -(number of existing folders +1).
7757
7758 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7759
7760         * FileDialog.cs:
7761           - Fixed really nasty bug #78771
7762           - Don't block the whole GUI when reading directories with a lot of
7763             entries. Use an other thread instead and call BeginInvoke to
7764             update the ListView in MWFFileView
7765
7766 2006-07-07  Chris Toshok  <toshok@ximian.com>
7767
7768         * Control.cs (Dispose): release any Capture when disposing.
7769
7770 2006-07-07  Chris Toshok  <toshok@ximian.com>
7771
7772         * LinkLabel.cs (Select): if we chain up to the parent, set
7773         focused_index to -1 so we'll search for the first available link
7774         the next time the user tabs into us.  Also, if the direction is
7775         backward and focused_index == -1, start the search from the last
7776         element.
7777
7778 2006-07-07  Chris Toshok  <toshok@ximian.com>
7779
7780         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7781         is beyond the end of the text, don't do anything.
7782         (CreateLinkPieces): set our ControlStyles.Selectable based on
7783         whether or not we have any links.
7784         (Link.Invalidate): use a loop instead of foreach.
7785         (Link.set_Start): null out owner.sorted_links so it'll be
7786         recreated by CreateLinkPieces.
7787
7788 2006-07-06  Chris Toshok  <toshok@ximian.com>
7789
7790         * LinkLabel.cs: revert the SetStyle change.
7791
7792 2006-07-06  Chris Toshok  <toshok@ximian.com>
7793
7794         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7795         (OnEnableChanged): s/Refresh/Invalidate
7796         (OnGotFocus): if we have a focused index already, refocus it (so
7797         if we mouse out/in to the window it'll focus the right link).
7798         (OnKeyDown): move the tab handling out of here.
7799         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7800         when we lose focus.
7801         (OnMouseDown): don't Capture here - Control handles it.  Also,
7802         focus the active link.
7803         (OnMouseUp): don't deal with Capture.
7804         (OnPaintBackgroundInternal): remove.
7805         (OnTextAlignChanged): CreateLinkPieces before calling the
7806         superclass's method.
7807         (OnTextChanged): call CreateLinkPieces before calling superclass's
7808         method.
7809         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7810         move around.
7811         (Select): implement this, moving the selection between different
7812         links, and call parent.SelectNextControl if we don't have another
7813         link to focus in the given direction.
7814         (CreateLinkPieces): call Invalidate instead of Refresh.
7815         
7816 2006-07-06  Chris Toshok  <toshok@ximian.com>
7817
7818         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7819         new LinkLabel internals.
7820
7821         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7822         over pieces looking for active/focused/etc links.  also, deal with
7823         runs of text (and links) with embedded \n's in them, and use
7824         MeasureCharacterRanges instead of MeasureString to figure out the
7825         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7826         two-step.
7827
7828 2006-07-04  Jackson Harper  <jackson@ximian.com>
7829
7830         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7831         XKB or key auto repeat, do it manually.  Without key auto repeat,
7832         when a key is held down we get key press, key release, key press,
7833         key release, ... with auto repeat we get key press, key press, key
7834         press ..., and then a release when the key is actually released.
7835
7836 2006-07-03  Jackson Harper  <jackson@ximian.com>
7837
7838         * TabControl.cs:
7839         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7840         rules, they are always control color regardless of the background
7841         color.
7842
7843 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7844
7845         * FileDialog.cs: Added internal class MWFConfig.
7846           Removed Registry support and replaced it with support for the new
7847           MWFConfig class. See MWFConfig comments for more information.
7848
7849 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7850
7851         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7852           rectangle. Added some patches from eno from bug #78490 and fixed
7853           the arrow position for small up and down CPDrawScrollButtons.
7854
7855 2006-06-30  Jackson Harper  <jackson@ximian.com>
7856
7857         * InternalWindowManager.cs: Remove some debug code.
7858         * Form.cs: When an MdiParent is set to null, the window is
7859         "detatched" and becomes a normal window.
7860         * MdiClient.cs: Don't bring the new child form to the front until
7861         it is activated (setting it as active does this), this makes the
7862         previously active forms titlebar get redrawn as inactive.
7863
7864 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7865
7866         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7867           with later controls
7868
7869 2006-06-29  Mike Kestner  <mkestner@novell.com>
7870
7871         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7872         arrow in keynav state.  Fixes #78682.
7873
7874 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7875
7876         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7877           order (fixes #78393)
7878
7879 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7880
7881         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7882           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7883           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7884           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7885           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7886           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7887           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7888           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7889           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7890           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7891           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7892           values)
7893
7894 2006-06-28  Mike Kestner  <mkestner@novell.com>
7895
7896         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7897
7898 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7899
7900         * PropertyGrid.cs,
7901           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7902           item lines from other area (It also makes BackColor consistent and
7903           compatible with .NET). Fixed bug #78564.
7904
7905 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7906
7907         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7908         Patch from Eno for #78555.
7909
7910 2006-06-27  Chris Toshok  <toshok@ximian.com>
7911
7912         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7913
7914         * DataGridColumnStyle.cs: same.
7915
7916         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7917         
7918         * DataGridDrawingLogic.cs: nuke.
7919
7920 2006-06-27  Chris Toshok  <toshok@ximian.com>
7921
7922         * DataGridTableStyle.cs: clean up the constructors, and build the
7923         list of child relations for this table.  I have no idea if this is
7924         where we should be doing it (it probably isn't), but since we're
7925         already iterating over the properties..
7926
7927         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7928         struct and array for keeping track of row information, similar to
7929         what's shown in a hack on
7930         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7931
7932         * Theme.cs: be consistent about the naming of DataGrid methods,
7933         prefering ColumnWidths and RowHeights over columnsWidths and
7934         RowsHeights.
7935
7936         * ThemeWin32Classic.cs: same, and also add support for variable
7937         sized rows (and the +/- expansion icons for related rows).
7938
7939 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7940
7941         * TextBoxBase.cs: Applied Eno's patch from #78660
7942
7943 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7944
7945         * Form.cs (ScaleCore): We don't want to scale our form if it's
7946           state is minimized or maximized, but we still need to scale our
7947           child windows. Also, added try/finally block to ensure layout
7948           gets reset (Fixes #78697)
7949
7950 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7951
7952         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7953
7954 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7955
7956         * Form.cs: Fixed c+p error and added check to resize form if minimum
7957           size is bigger than current size (Fixes #78709)
7958
7959 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7960
7961         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7962
7963 2006-06-26  Mike Kestner  <mkestner@novell.com>
7964
7965         * ComboBox.cs: only do Keypress handling in the combo when there  
7966         are items in the collection. Fixes #78710.
7967
7968 2006-06-26  Chris Toshok  <toshok@ximian.com>
7969
7970         * Binding.cs: make this work bi-directionally.  also, clear up
7971         other mixups between Push/Pull Data (e.g. we're supposed to pull
7972         data when validating).
7973
7974         * BindingManagerBase.cs: trim some fully qualified collection
7975         types.
7976
7977         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7978
7979 2006-06-23  Chris Toshok  <toshok@ximian.com>
7980
7981         * PropertyManager.cs: It appears (according to the unit tests)
7982         that PropertyManager doesn't use
7983         PropertyDescriptor.AddValueChanged to track propery value changes
7984         in its datasource, but uses the same scheme as Binding, where it
7985         looks for a <Property>Changed event and binds to it.
7986
7987         Also, according to the docs, IsSuspended always returns false for
7988         a property manager with a non-null datasource.
7989
7990 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7991
7992         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7993           need to update the actual DialogResult. (Fixes #78613)
7994
7995 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7996
7997         * Form.cs (ShowDialog): Release any captures before running the
7998           new message pump (fixes #78680)
7999
8000 2006-06-22  Mike Kestner  <mkestner@novell.com>
8001
8002         * ListView.cs: Layout column widths properly in details mode even 
8003         if HeaderStyle.None is set.  Fixes #78691.
8004
8005 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
8006
8007         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
8008
8009 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
8010
8011         * Control.cs (ContainsFocus): Using new driver method to get focused
8012           window, instead of trying to use internal tracking var, which can
8013           recursion issues (Fixes #78685)
8014         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8015           XplatUIWin32.cs: Added GetFocus method to return focused window
8016
8017 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8018
8019         * ColorDialog.cs: when the mouse button is pressed inside the color
8020         matrix, don't let the cursor move out of it until the button is
8021         released, which is the behavior on windows. Changed 'colours' by
8022         'colors' to use the same word consistently.
8023
8024 2006-06-21  Chris Toshok  <toshok@ximian.com>
8025
8026         * DataGrid.cs: add in some basic navigation stuff (navigating to a
8027         child relation and back, using a stack).  Also, remove
8028         GetDataSource and the code that calls it - it's not needed.  Also,
8029         track CurrencyManager.ListName's removal.
8030
8031 2006-06-21  Chris Toshok  <toshok@ximian.com>
8032
8033         * CurrencyManager.cs: push some of the original type checking from
8034         BindingContext.CreateBindingManager to here, and remove some of
8035         the finalType stuff.  Need more tests to make sure I've got the
8036         ListName part right, and we might need more in SetDataSource.
8037
8038         * PropertyManager.cs: add a ctor that takes just the datasource,
8039         and no property name.  Make SetDataSource work with a null
8040         property_name, and make Current return the data_source if the
8041         property descriptor is null.  this makes 'string foo = "hi";
8042         BindingContext[foo].Current' return "hi" as it should.
8043
8044         * RelatedCurrencyManager.cs: make this code more generic - there's
8045         no reason the parent manager has to be CurrencyManager, and
8046         there's no reason to pass the DataRelation.  It suffices to use a
8047         BindingManagerBase and PropetyDescriptor.
8048
8049         * RelatedPropertyManager.cs: make a similar change here.
8050         
8051         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
8052         flower I knew it could be.
8053
8054 2006-06-20  Chris Toshok  <toshok@ximian.com>
8055
8056         * PropertyManager.cs: the PropertyChangedHandler is invoked when
8057         data in the source has changed and we need to update the control,
8058         so s/PullData/PushData.
8059
8060         * CurrencyManager.cs: Refresh is meant to update the control from
8061         data in the datasource.  So, s/PullData/PushData.
8062
8063         * BindingContext.cs: add more ugliness (we weren't handling the
8064         case where data_source = DataTable and data_member = column_name).
8065
8066         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
8067         from the perspective of the datasource.  PullData pulls from the
8068         control, PushData pushes to the control.
8069
8070 2006-06-20  Chris Toshok  <toshok@ximian.com>
8071
8072         * BindingContext.cs: rewrite the CreateBindingManager code to
8073         handle navigation paths more or less properly.  This could
8074         definitely stand some more work, in particular to push the
8075         recursion up to the toplevel.  But that relies on fixes in other
8076         places (System.Data comes to mind).
8077
8078         Also, move to a flat hashtable (and encode the twolevel nature of
8079         the dictionary into the hash key).  This lets us implement the
8080         IEnumerable.GetEnumerator method.
8081
8082         * RelatedCurrencyManager.cs: new class.  Update our view based on
8083         our relation and our parent CurrencyManager's position.
8084
8085         * CurrencyManager.cs: split out some logic from the ctor into
8086         SetView, so it can be called from the new RelatedCurrencyManager
8087         subclass.
8088
8089         * RelatedPropertyManager.cs: new class.  Update our datasource
8090         based on the position of our parent CurrencyManager.
8091
8092         * PropertyManager.cs: split out some logic from the ctor into
8093         SetDataSource, so it can be called from the new RelatedDataSource
8094         subclass.  Also, make the Current getter return the value
8095         of the PropertyDescriptor, not the data_source.
8096
8097         * Binding.cs: no need to duplicate the string splitting code here.
8098
8099 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8100
8101         * Control.cs:
8102           - set_Enabled: OnEnabledChanged is not called if the inherited state 
8103             of the control is not altered, even though  we might be changing the
8104             internal state of the control (#78458)
8105           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
8106             OnEnabledChanged, to allow easy altering of any child window state
8107           - OnEnabledChanged: Added code to enable/disable driver window state
8108           - OnParentEnabledChanged: Instead of firing the event, call 
8109             OnEnabledChanged, which will fire the event and also a) set driver
8110             window state and pass the enabled state to any grandchildren (#78458)
8111
8112 2006-06-19  Jackson Harper  <jackson@ximian.com>
8113
8114         * InternalWindowManager.cs: We don't set the cursor explicitly
8115         thats done via the response to NCHITTESTs.
8116         - Don't need to adjust for titlebar heights anymore, the
8117         coordinates are coming in the correct coordinates now (see peters
8118         last patch).
8119
8120
8121 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
8122
8123         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
8124           being translated relative to whole window, instead of client window.
8125           That caused broken offsets on mouseclick (and caused gas for our
8126           InternalWindowManager)
8127
8128 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8129
8130         * TextControl.cs:
8131           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
8132           - Undo(): Added replay of cursor move on DeleteChars action; added
8133             calling Undo() again if a recorded cursor move is invalid (to
8134             ensure that some action is performed on Undo)
8135         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
8136
8137 2006-06-16  Jackson Harper  <jackson@ximian.com>
8138
8139         * MdiClient.cs: Instead of just sizing maximized windows when
8140         there is a resize we also have to adjust the Y of minimized
8141         windows, so they stay pinned to the bottom of the mdi container.
8142         - Eliminate separate tracking of the active control, we can just
8143         get this from the controls collection.
8144         - Paint the decorations for the newly activated titlebar so we get
8145         a pretty blue bar.
8146         * InternalWindowManager.cs:
8147         * ThemeWin32Classic.cs: Minimized windows get all three buttons
8148         even if they are a tool window.
8149         
8150 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
8151
8152         * TextControl.cs (Undo): Handle non-existent cursor locations in the
8153           undo buffer, these can happen when text was deleted and the cursor
8154           was recorded first. Since we will also have a recorded cursor
8155           after the delete this is not an issue. (Fixes #78651)
8156
8157 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
8158
8159         * AccessibleObject.cs: Remove dependence on Control.is_selected;
8160           instead properly track control states internally (allows us to
8161           remove is_selected from Control)
8162
8163 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8164
8165         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
8166         whose width is not a multiple of 8.
8167
8168 2006-06-13  Jackson Harper  <jackson@ximian.com>
8169
8170         * MdiClient.cs:  Only maximize the next child if the current one
8171         is maximized.
8172
8173 2006-06-13  Chris Toshok  <toshok@ximian.com>
8174
8175         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
8176         modified.  Also, guard against grid or grid_drawing being null in
8177         Invalidate.
8178
8179         * DataGrid.cs: Reformat tons of getters/setters.  In the
8180         DataMember setter, just call SetNewDataSource instead of
8181         duplicating some of its functionality.  In SetNewDataSource, don't
8182         check ListManager for null, since the property getter creates the
8183         object if needed.
8184
8185         * DataGridTableStyle.cs: don't set TableStyle or call
8186         SetDataGridInternal on the column here, it's done in
8187         GridColumnStylesCollection.Add.
8188
8189         * GridColumnStylesCollection.cs: fix all the explicit interface
8190         implementations to just call our methods.  Nuke AddInternal() and
8191         move the body of it to Add().  Also, add a call to
8192         column.SetDataGridInternal to Add().
8193
8194         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
8195         base()+duplicate code.  Also, use the Format property instead of
8196         format to generate an Invalidate ala MS.  Lastly, create the
8197         textbox here, unconditionally.
8198         (set_Format): call Invalidate.
8199         (get_TextBox): no need to call EnsureTextBox.
8200         (Commit): remove the message box.
8201         (Edit) remove the call to EnsureTextBox.
8202         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
8203         (EnterNullValue): no need to check textbox for null.
8204         (HideEditBox): no need to check textbox for null.
8205         (SetDataGridInColumn): add the textbox to the grid's controls.
8206         (EnsureTextBox): nuke.
8207         
8208 2006-06-13  Jackson Harper  <jackson@ximian.com>
8209
8210         * MdiWindowManager.cs: Hook up to the maximized menus paint event
8211         and redraw the buttons when needed. Unhook when the window is
8212         unmaximized.
8213         * MainMenu.cs: Add an internal Paint event, the mdi window manager
8214         needs this so that it can redraw its buttons when the menu is
8215         repainted.
8216         * InternalWindowManager.cs:
8217         * Form.cs: The method order has changed for DrawMaximizedButtons,
8218         so that it can be a PaintEventHandler.
8219         
8220 2006-06-13  Jackson Harper  <jackson@ximian.com>
8221
8222         * MdiClient.cs: When we close a maximized mdi window, the next mdi
8223         window is activated and maximized, even if it wasn't before.
8224         - When  a new window is activated repaint the decorations of the
8225         old one, so that it no longer has the Active "look" (the blue
8226         titlebar).
8227         * InternalWindowManager.cs: Open up CreateButtons to base classes
8228         so they can recreate the buttons on state changes.
8229         - If a window is maximized give it all three buttons
8230         * MdiWindowManager.cs: Create the titlebar buttons when the state
8231         is changed, this is needed because a toolwindow will not have all
8232         three buttons until it is maximized.
8233
8234 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
8235
8236         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
8237           Fixed bug #78609.
8238
8239 2006-06-12  Jackson Harper  <jackson@ximian.com>
8240
8241         * KeysConverter.cs: Make sure we handle the Ctrl special case
8242         if its the only key.
8243         
8244 2006-06-12  Jackson Harper  <jackson@ximian.com>
8245
8246         * Theme.cs: Add a method to get the size of a managed window
8247         toolbar button.
8248         * InternalWindowManager.cs: Remove the ButtonSize property, this
8249         should be retrieved from the theme.
8250         * MdiWindowManager.cs: Get the button size from the theme
8251         * ThemeWin32Classic.cs: Make the method to get the managed window
8252         titlebar button size public.
8253         - Handle the different button sizes of maximized toolwindows
8254         (should match any maximized window).
8255         - Get the titlebar height from the theme, not the WM (which gets
8256         it from the theme).
8257
8258 2006-06-12  Jackson Harper  <jackson@ximian.com>
8259
8260         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
8261         event down to the mdi window manager.
8262         - Expose some extra stuff to base classes
8263         - Make sure to end the Capture on an NC Mouse up, so that we can
8264         get double clicks properly, and the sizing doens't stick.
8265         - When doing PointToClient contain it in the workable desktop
8266         area, this prevents windows from changing size when the cursor is
8267         pulled outside of the working area while sizing.
8268         * MdiWindowManager.cs: When we get a double click maximize the
8269         window.
8270         - Reset the cursor after handling mode changes.
8271
8272 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
8273
8274         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
8275           current desktop, instead of just assuming a 0, 0 origin. This
8276           is needed for our internal window manager, to know the top
8277           margin of the desktop
8278
8279 2006-06-12  Chris Toshok  <toshok@ximian.com>
8280
8281         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
8282         we need this to get rid of the selected background in the bool
8283         column.
8284         (CancelEditing): move the ConcedeFocus call to above the Abort
8285         call.  Also, set is_changing to false and invalidate the row
8286         header if we were changing before.
8287         (ProcessKeyPreviewInternal): remove, since noone outside this
8288         class calls it anymore.  Roll the code into ProcessKeyPreview.
8289         (EndEdit): remove the internal version.
8290         (InvalidateCurrentRowHeader): make private.
8291
8292         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
8293         Keys.Escape handling (and with it the last call to
8294         DataGrid.EndEdit from outside the class.)
8295
8296
8297 2006-06-12  Chris Toshok  <toshok@ximian.com>
8298
8299         * DataGridTextBox.cs (.ctor): isedit defaults to false.
8300         (OnKeyPress): set isedit to true.
8301         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
8302         already handled by the grid.
8303
8304         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
8305         right.  ugh.
8306         (set_DataSource): SetDataSource always returns true, so stop
8307         putting it in an if statement.
8308         (EndEdit): get rid of some {}'s
8309         (ProcessGridKey): return true in case Keys.Escape.
8310         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
8311         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
8312         PositionChanged, stopped connecting to CurrentChanged.
8313         (GetDataSource): simplify this a bunch.
8314         (SetDataSource): change return type from bool to void.
8315         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
8316         to this, and make sure we don't set ListManager.Position inside
8317         set_CurrentCell.
8318         (OnListManagerItemChanged): if we're passed an actual index,
8319         redraw that row.
8320
8321         * CurrencyManager.cs (set_Position): don't call PullData here.
8322
8323 2006-06-09  Jackson Harper  <jackson@ximian.com>
8324
8325         * TreeNode.cs:  Recalculate the visible order before doing the
8326         Expand/Collapse Below calls, because those calls generate an
8327         expose.
8328         - Reduce calls to the TreeView property, which is mildly expensive
8329         by using a local var.
8330         * Form.cs: Layout the MDI child windows when creating the parent
8331         form.
8332         - Don't use the internal constructor anymore
8333         * MdiClient.cs: use the parent form width/height (if available)
8334         when laying out the child windows, we do this because the
8335         mdiclient isn't docked yet when the initial layout is done.
8336         - Don't need an internal constructor anymore.
8337
8338 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8339
8340         * FileDialog.cs: handle access errors when trying to create a folder
8341         or changing to a directory. No need to initialize out parameters.
8342
8343 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8344
8345         * FileDialog.cs: Append a number when creating a new folder if the
8346           folder already exists (use parenthesis instead of square brackets)
8347
8348 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8349
8350         * FileDialog.cs:
8351           - Disabled registry support for windows and added better registry
8352             error checking for other systems (need to investigate why it
8353             works perfectly on my system)
8354           - If a folder already exist show an error MessageBox instead of
8355             trying to create an indexed name.
8356           - Fixed a non intentional typo.
8357
8358 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8359
8360         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
8361
8362 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8363
8364         * FileDialog.cs: When creating a new folder don't crash if the
8365           folder already exists.
8366
8367 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8368
8369         * FileDialog.cs: Allmost a complete rewrite.
8370           - added a "virtual" file system that handles the differences
8371             between unix and windows file systems (especially the directory
8372             structure). Moved most of the directory and file handling code
8373             into the vfs.
8374             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
8375             UnixFileSystem and FSEntry.
8376           - Recently used folder/directory, size, location and used file names
8377             (file name ComboBox) are now stored in the registry and get read
8378             before the dialog shows up (fixes part 6 of bug #78446).
8379           - Creation of new folders/directories is now possible (context menu
8380             or ToolBar). Added TextEntryDialog for this that fills in the gap
8381             until ListView.LabelEdit works.
8382           - Fixed cursor handling (bug #78527) and focus handling for
8383             PopupButtonPanel
8384           - Various "Search in" ComboBox enhancements. The content of the
8385             dropdown listbox now almost matches ms.
8386           - Changed the behaviour when the user switches to SpecialFolder
8387             Recent to show the ListView in View.Details.
8388           - Beside using the ToolBar to change the View property of the
8389             file ListView it is now possible to use the context menu too.
8390
8391 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
8392
8393         * ComboBox.cs: Don't create a new ObjectCollection when an item
8394           gets inserted. Just insert the item in the existing object_items
8395           ArrayList.
8396
8397 2006-06-08  Jackson Harper  <jackson@ximian.com>
8398
8399         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
8400         that the treeview and root node checks are done also, this fixes a
8401         regression i caused in the unit tests.
8402
8403 2006-06-07  Wade Berrier <wberrier@novell.com> 
8404
8405         * RichTextBox.cs: More ISO8859-1 -> unicode
8406
8407 2006-06-07  Mike Kestner  <mkestner@novell.com>
8408
8409         * ComboBox.cs : use items to hold highlight/selection so that
8410         collection insertions don't require synchronization.
8411
8412 2006-06-07  Jackson Harper  <jackson@ximian.com>
8413
8414         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
8415         routine.  We now always keep the sized edge at the cursor instead
8416         of computing movement and adjusting rects.  There is one buglet
8417         with this method though when the cursor is moved over area that
8418         the window can not expand too (such as the toolbars on the desktop).
8419
8420 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8421
8422         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
8423         here. Fixes crash on startup in AlbumSurfer.
8424
8425 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
8426
8427         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
8428           values
8429
8430 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8431
8432         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
8433         statement to avoid calling XNextEvent which will block if another thread
8434         took the event that we were expecting. Fixes bug #78605.
8435
8436 2006-06-07  Mike Kestner  <mkestner@novell.com>
8437
8438         * ListView.cs : isolated checkbox clicking from the selection logic.
8439         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
8440
8441 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8442
8443         * Form.cs: Check that the value passed to Form.DialogResult
8444         is a valid enum value.
8445
8446 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8447
8448         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
8449         Computer'. Clicking it in the network view goes to 'My Computer'.
8450         Added CIFS filesystem type. Display the mount point of filesystems.
8451         Avoid duplicate mount points (happens for me with CIFS);
8452
8453 2006-06-06  Jackson Harper  <jackson@ximian.com>
8454
8455         * InternalWindowManager.cs: Draw the maximized windows buttons
8456         when resizing.
8457
8458 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8459
8460         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
8461         all other dialogs. Fixes bug #78585.
8462
8463 2006-06-06  Mike Kestner  <mkestner@novell.com>
8464
8465         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
8466         Only invalidate checkbox on checkstate changes to avoid flicker.
8467         * ListBox.cs : avoid unselect/select when clicking selected item.
8468         avoid reselection flicker for already multiselected items.
8469         Fixes #78382.
8470
8471 2006-06-06  Jackson Harper  <jackson@ximian.com>
8472
8473         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
8474         the parent form so that the menu is removed if needed.
8475
8476 2006-06-06  Mike Kestner  <mkestner@novell.com>
8477
8478         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
8479         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
8480
8481 2006-06-06  Mike Kestner  <mkestner@novell.com>
8482
8483         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
8484
8485
8486 2006-06-06  Jackson Harper  <jackson@ximian.com>
8487
8488         * Control.cs: Use the property (instead of the field) to get the
8489         default cursor so it is instantiated correctly.
8490         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
8491         resizes so we need to manually repaint the window decorations here.
8492         - Set the titlebar button locations as soon as they are created,
8493         otherwise they are not set correctly on win32.
8494         
8495 2006-06-06  Chris Toshok  <toshok@ximian.com>
8496
8497         * CurrencyManager.cs (set_Position): call PullData before
8498         OnCurrentChanged.
8499         (AddNew): after calling IBindingList.AddNew, update our
8500         listposition, and call OnCurrentChanged/OnPositionChanged (without
8501         calling PullData).
8502         (OnCurrentChanged): remove the call to PullData from here.
8503         (OnItemChanged): remove the call to PushData from here.
8504         (OnPositionChanged): change the test from == null to != null to
8505         match the other methods.
8506         (ListChangedHandler): the grossest part of the patch.  Implement
8507         this such that it passes the unit tests in CurrencyManagerTest and
8508         the output more or less matches that of MS's implementation.
8509  
8510 2006-06-06  Mike Kestner  <mkestner@novell.com>
8511
8512         * ListView.cs : only update check state on single click.
8513         * ThemeWin32Classic.cs : fix focus drawing for details view without
8514         fullrowselect.  Fixes #78454.
8515         * XplatUIX11.cs : fix for double click emission.
8516
8517 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8518
8519         * PropertyGridView.cs : Applied Atsushi's patch to fix
8520         font dialog bug  (#78197).
8521
8522 2006-06-05  Jackson Harper  <jackson@ximian.com>
8523
8524         * TreeNode.cs: Compute the next node for expanding/collapsing
8525         correctly. We now factor in nodes without a NextNode
8526         correctly. (Fixes somes cases in nunit-gui).
8527         * InternalWindowManager.cs: Set the bounds when updating the
8528         virtual position of a tool window.
8529         
8530 2006-06-05  Chris Toshok  <toshok@ximian.com>
8531
8532         * DataGrid.cs: rename cached_currencymgr to list_manager.
8533         (set_CurrentCell): move SetCurrentCell code here, and clean it up
8534         some.
8535         (CurrentRow, CurrentColumn): single accessors so we can make the
8536         cursor movement code a lot easier to understand.
8537         (CurrentRowIndex): implement this in terms of CurrentRow.
8538         (BeginEdit): clean this up a bit.
8539         (CancelEditing): sort out the is_editing/is_changing/is_adding
8540         stuff a little.
8541         (EndEdit): minor changes.
8542         (OnKeyDown): add a comment about a (most likely) unnecessary
8543         check.
8544         (OnMouseDown): cancel editing when we click on a row header.  And
8545         use the CurrentRow setter, not CurrentCell.
8546         (ProcessDialogKey): directly call ProcessGridKey.
8547         (UpdateSelectionAfterCursorMove): factor out this common block of
8548         code (it's used everywhere that we move the cursor by updating row
8549         or column).
8550         (ProcessGridKey): pretty substantial overhaul.  Use the
8551         CurrentRow/CurrentColumn properties to make the code a lot more
8552         readable.  Only use the CurrentCell property when we have to
8553         modify both row and column at once.  Tab behavior is still broken,
8554         and Delete is untested.
8555         (Select): if we have no selected rows, set selection_start to
8556         @row.
8557         (EditCurrentCell): rename EditCell this.  It was only ever invoked
8558         with CurrentCell as the arg, so drop the arg and rename it.
8559
8560         * DataGridColumnStyle.cs: clean up the constructors a little, and
8561         drop CommonConstructor().
8562
8563         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
8564         actually get notified when the user hits it.
8565         (ProcessKeyMessage): *substantially* simplify this method.
8566         There's no reason (that I can see) for the textbox to be making
8567         calls into the datagrid at all.  Remove all of them but the ones
8568         for Enter handling.  those will take some more work.
8569
8570         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
8571         calling HideEditBox.
8572         (HideEditBox): if we have an active textbox, render it invisible
8573         without causing a re-layout of the datagrid.
8574
8575 2006-06-05  Mike Kestner  <mkestner@novell.com>
8576
8577         * ListView.cs : fix NRE crasher when focuseditem is cleared by
8578         collection changes by resetting it to Items[0].  Fixes #78587.
8579
8580 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8581
8582         * MessageBox.cs: if the height of the text is larger than the icon_size,
8583         use that. Fixes bug #78575.
8584
8585 2006-06-05  Jackson Harper  <jackson@ximian.com>
8586
8587         * TreeView.cs: Fix line drawing when scrolling.  To do this each
8588         node is basically responsible for drawing its entire horizontal
8589         area.  When drawing a node it draws its parent node lines if
8590         needed.
8591         - Adjust the clip area to the viewport rectangle
8592         - Fix Left/Right key handling to match MS. (It expand/collapses
8593         and moves to parents/first child but does not move selection to
8594         sibling nodes).
8595         - Fix SetTop to work with new bound calculation code
8596         - When scrollbars are no longer needed we need to reset scrolling
8597         vars and recalculate the visible order so the redraw is correct
8598         * TreeNode.cs: We can't expand/collapse nodes with no children.
8599
8600 2006-06-03  John Luke  <john.luke@gmail.com> 
8601
8602         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
8603         so the colors work without dev packages
8604         
8605 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
8606
8607         * Control.cs 
8608           - Select: Implemented to just use activate. Seems to match MS 
8609             behaviour closest. Documented to only do actual control walking 
8610             based on it's parameters if in a container control so I moved 
8611             the code there.
8612           - Removed selection check logic from our internal Select() method
8613         * ContainerControl.cs:
8614           - Select: Moved selection logic from Control here, since MS documents
8615             that containers obey the bool arguments. No longer calling base
8616
8617 2006-06-02  Jackson Harper  <jackson@ximian.com>
8618
8619         * TreeView.cs: If the selected node isn't changed when we get
8620         focus update the previously selected node so that we see the
8621         selection box.
8622
8623 2006-06-02  Mike Kestner  <mkestner@novell.com>
8624
8625         * ComboBox.cs: restructure grab and general mouse event handling.
8626         Make the composite control raise mouse events like it was a single
8627         control for leaves/enters/motion/up/down events.  fix dropdown list
8628         coordinate mangling and refactor it into the scrollbar subclass to
8629         reduce code duplication.  Fixes #78282 #78361 and #78457.
8630
8631 2006-06-02  Mike Kestner  <mkestner@novell.com>
8632
8633         * ScrollBar.cs: remove Capture setting/clearing, as it happens
8634         automatically in the Control.WndProc.
8635
8636 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8637
8638         * FileDialog.cs: fix crash when running SharpChess, which sets the
8639         FilterIndex to 2 with only one Filter.
8640
8641 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8642
8643         * ToolBar.cs: add SizeSpecified property.
8644         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
8645         try to figure out our real size, otherwise fallback to what the
8646         container says.
8647
8648 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8649
8650         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
8651         * Control.cs (WndProc): MS always calls the DefWndProc to pass
8652           up the event
8653
8654 2006-06-01  Mike Kestner  <mkestner@novell.com>
8655
8656         * ListView.cs: revamp the focus management in ListView.  It still
8657         causes churn of LostFocus/GotFocus emissions on clicks, but it's
8658         better than not handling focus at all.  Will revisit when pdb feels
8659         the general focus handling is solid.  Fixes #78526.
8660
8661 2006-06-01  Jackson Harper  <jackson@ximian.com>
8662
8663         * TreeView.cs: Set the default border style in the constructor.
8664         - Move painting to use OnPaintInternal instead of capturing
8665         WM_PAINT, this is the correct way of doing things
8666         - UpdateBelow shouldn't invalidate the scrollbar area
8667         - Cap the top on update below in case the node was above the top
8668         of the viewport rectangle.
8669         - ExpandBelow and Collapse below need to obey Begin/End Update.
8670         * TreeNode.cs: Make is_expanded internal so the treenode
8671         collection can change it without firing the whole event chain.
8672         * TreeNodeCollection.cs: When clearing all the child nodes make
8673         sure to recalc the visible order.
8674         - Improve algo for remove the top node
8675
8676 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8677
8678         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8679           SendMessage directly calling window procedures, which in turn might
8680           call SetFocus()
8681
8682 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8683
8684         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8685           has focus (works around X11 sending a FocusIn after our SetFocus)
8686         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8687
8688 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8689
8690         * Mime.cs: Fix for the NET_2_0 build.
8691           NameValueCollection needs StringComparer now.
8692
8693 2006-05-31  Chris Toshok  <toshok@ximian.com>
8694
8695         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8696         return (via an out parameter) the starting X of the column.
8697         (UpdateVisibleColumn): track change to FromPixelToColumn.
8698         (HitTest): add a ColumnResize case here.
8699         (DrawResizeLine): new function, probably poorly named.
8700
8701         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8702         only need to keep one reference.
8703         (set_ListManager): same.
8704         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8705         Also, add support for HitTestType.ColumnResize.
8706         (OnMouseMove): add column resize behavior here, and change the
8707         cursor to the correct one as we move around the datagrid.
8708         (OnMouseUp): terminate the column resize if we're resizing.
8709         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8710         for the current cell.
8711         (ConnectListManagerEvents): use cached_currencymgr.
8712         (DisconnectListManagerEvents): fill this in, using
8713         cached_currencymgr.
8714         (SetCurrentCell): remove cached_currencymgr_events handling.
8715         (SetDataMember): only call DisconnectListManagerEvents if
8716         cached_currencymgr is != null.
8717         (SetDataSource): same.
8718         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8719         cached_currencymgr.
8720
8721 2006-05-31  Jackson Harper  <jackson@ximian.com>
8722
8723         * BindingManagerBase.cs: Remove somedebug code that creeped into
8724         SVN.
8725         * TreeNode.cs: We get the indent level dynamically right now, so
8726         don't track it as a member.
8727         * TreeNodeCollection.cs: Make sure all nodes added to the list
8728         have parents, treeviews/topnodes setup properly.
8729         - Don't attempt to track indent level.
8730
8731 2006-05-30  Jackson Harper  <jackson@ximian.com>
8732
8733         * BindingContext.cs: Create the currency manager tables here.
8734         This allows us to more easily create null tables (when bad data
8735         members are used), and more easily create related currency
8736         managers.
8737         * CurrencyManager.cs: All the table creation stuff is done by the
8738         binding context now.
8739         - Current should throw an exception if listposition is -1.
8740         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8741         been bound yet.
8742
8743 2006-05-30  Mike Kestner  <mkestner@novell.com>
8744
8745         * ListView.cs: allow reexpansion of zero-width column headers.
8746         Fixes #78528.
8747
8748 2006-05-28  Chris Toshok  <toshok@ximian.com>
8749
8750         * CurrencyManager.cs (get_Current): after the late binding
8751         listposition = -1 fix, we need to guard against it here and return
8752         null, otherwise we raise an exception (which is swallowed
8753         elsewhere, and breaks datagrid databinding.)
8754
8755 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8756
8757         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8758           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8759
8760 2006-05-26  Jackson Harper  <jackson@ximian.com>
8761
8762         * ControlPaint.cs:
8763         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8764         values, it's faster and it's all we care about (we don't care if
8765         the names aren't equal).
8766         * KeyboardLayouts.cs: Eliminate some dead code.
8767         - Lazy init things
8768         * X11Keyboard.cs: Lazy init keyboard detection.
8769         - Cleanup access modifiers a little.
8770
8771 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8772
8773         * XplatUIX11.cs: Once again, attempting to get layout just right.
8774
8775 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8776
8777         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8778           the sizes of each link section, that will result in sizes that
8779           match DrawString's layout (Fixes #78391)
8780
8781 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8782
8783         * FileDialog.cs: If AddExtension property is true autocomplete the
8784           extensions in SaveFileDialog correctly. Fixes bug #78453.
8785           Set MyNetwork and MyComputer to "C:\" for windows. This should
8786           fix part 8 of bug #78446 for now.
8787
8788 2006-05-26  Chris Toshok  <toshok@ximian.com>
8789
8790         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8791         invalidate the current row header if we need to, but presumably
8792         we'll invalidate the row corrsponding to the bounds or
8793         editingControl.
8794         (GridHScrolled): switch back to this method, as it's part of the
8795         public api.  *sigh*.
8796         (GridVScrolled): same.
8797         (OnMouseWheel): hack up something that more or less works.  Call
8798         GridHScrolled/GridVScrolled directly, instead of duplicating much
8799         of their code here.
8800         (EnsureCellVisibility): reinstate a bunch of this code, since we
8801         can't just set the scrollbar Value and expect to do all the work
8802         in the ValueChanged handler.  Also, Call Update() after scrolling
8803         in one direction so the other XplatX11.ScrollWindow call has the
8804         proper stuff in the proper places.
8805         (EditCell): set is_editing to true before calling .Edit.
8806
8807         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8808         don't bother comparing first.
8809         (OnKeyPress): call grid.ColumnStartedEditing before calling
8810         base.OnKeyPress.  this will set is_changing and invalidate the row
8811         header if necessary.
8812         (ProcessKeyMessage): for WM_CHAR messages, call
8813         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8814         and WM_KEYDOWN.
8815         
8816         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8817         it's done in the DataGrid.
8818         (NextState): call grid.ColumnStartedEditing, which takes care of
8819         invalidating the row header (and setting is_changing).
8820
8821         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8822         here.  it's done in the DataGrid.
8823
8824 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8825
8826         * Control.cs: allow changing the cursor when the mouse position is
8827         out of bounds but Capture is set.
8828         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8829         linklabel but released somewhere else.
8830
8831 2006-05-25  Jackson Harper  <jackson@ximian.com>
8832
8833         * TreeView.cs: When we get focus if there is no selected node make
8834         it the top node
8835         - Remove some uneeded setup code from Draw.
8836         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8837         a new node is inserted make the new node the top.
8838         * XplatUIX11.cs:
8839         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8840         be used (should be faster).
8841         
8842 2006-05-25  Chris Toshok  <toshok@ximian.com>
8843
8844         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8845         problem with the last commit.
8846
8847 2006-05-25  Chris Toshok  <toshok@ximian.com>
8848
8849         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8850         need the invalidate call here, while scrolling right-to-left via
8851         the left arrow key (i.e. moving the editing cell while scrolling).
8852
8853         * DataGrid.cs (.ctor): remove the initialization of
8854         ctrl_pressed/shift_pressed.  We no longer track them using key
8855         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8856         to using ValueChanged handlers on the scrollbars instead of
8857         Scrolled event handlers.  This simplifies a bunch of the scrolling
8858         code.
8859         (GridHValueChanged): rename from GridHScrolled, and change it to
8860         work with the new event args.
8861         (GridVValueChanged): same.
8862         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8863         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8864         selected cell.
8865         (ProcessGridKey): correct all the keyboard navigation stuff I
8866         could find.  Ctrl up/down/left/right/home/end work now.
8867         (EnsureCellVisibility): correct method name spelling.  Also,
8868         simplify this a touch by not explicitly calling the
8869         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8870         scrollbar value.
8871         (OnKeyUpDG): no need for this method now.
8872         
8873 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8874
8875         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8876         Fixes bug #78392.
8877
8878 2006-05-25  Chris Toshok  <toshok@ximian.com>
8879
8880         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8881         r61019.
8882
8883 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8884
8885         * Application.cs: Moved setting of is_modal and closing to before
8886           we create the control, to allow the event handlers called as a
8887           result of creation affect closing. Also removed Gonzalo's previous
8888           change to setting DialogResult, the behaviour has been moved to 
8889           Form.ShowDialog()
8890         * Form.cs: 
8891           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8892             handle it instead
8893           - ShowDialog(): If no dialog result is set, we need to return Cancel
8894           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8895             the close is cancelled
8896
8897 2006-05-25  Jackson Harper  <jackson@ximian.com>
8898
8899         * StatusBar.cs: We only need to update the sizes of the other
8900         panels when we have auto size contents.  Also we are only updating
8901         the contents of the panel, not the borders, so compensate for the
8902         border width (TODO: get this width from the theme somehow).
8903         * TreeView.cs: Scrollable is true by default
8904         - Use invalidate instead of refresh where needed
8905         - Factor the scrollable value into scrollbar updating
8906         - Update the scrollbars if the Scrollable property is altered
8907         - Update the selected node if its ImageIndex is changed
8908         - Handle null nodes in UpdateNode (mainly so we don't have to
8909         check if selected is null when updating it
8910         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8911         are factored into the visible count
8912         - Use VisibleCount for clarity in the code
8913         - When the font is changed we need to recurse through all the
8914         nodes and invalidate their sizes
8915         
8916 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8917
8918         * Application.cs: set the DialogResult to fixed when the main form is
8919         hidden or destroyed while being modal.
8920
8921 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8922
8923         * Theme.cs: Use Tangoified messagebox icons. 
8924
8925         (GetSizedResourceImage): Also cope with width = 0 and do not
8926         trigger a warning in that case (0 means "give me your icon from
8927         the resouce, no special size needed).
8928
8929 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8930
8931         * Application.cs: Leave runloop if the the main modal form is 
8932           hidden (fixes #78484)
8933
8934 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8935
8936         * BindingContext.cs : reject null datasource in Contains() and
8937           Item[].
8938         * CurrencyManager.cs : check data_member validity when data_source
8939           is dataset. When it is late binding, the initial position is -1.
8940
8941 2006-05-24  Jackson Harper  <jackson@ximian.com>
8942
8943         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8944         inserted nodes that aren't visible.  This changes the
8945         max_visible_order which confuses scrollbar settings.
8946         - Use the enumerator to get the prev node instead of duplicating
8947         code.
8948         * TreeView.cs: Use new method for setting scrollbar values
8949         - Don't set the bounds every time the scrollbar is updated
8950         - When updating below the root node use an invalidate instead of a
8951         refresh to prevent the child controls (scrollbars) from being
8952         refreshed. (UpdateBelow still needs to be reworked anyways).
8953         - Reenable SetBottom now that visible orders are set correctly,
8954         added some debug code incase we ever get bad values there again.
8955         - Set the scrollbar max to 2 less then the max value, this
8956         compensates for the max value being one above the node count, and
8957         for scrollbars adding one extra "notch".
8958         - When drawing image nodes if there is an imagelist we draw the
8959         first image in the list if the supplied image index is out of the
8960         image list's bounds.
8961         
8962 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8963
8964         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8965           we receive a size change from the WM (Fixes #78503)
8966
8967 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8968
8969         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8970           rectangle (Fixes #78501)
8971
8972 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8973
8974         * ButtonBase.cs: 
8975           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8976             as a bitfield.
8977           - Fixed MouseMove to no longer switch pressed state unless the left
8978             mouse button is pressed. Atsushi provided the original patch (#78485)
8979           
8980 2006-05-24  Jackson Harper  <jackson@ximian.com>
8981
8982         * ScrollBar.cs: New internal methods that allow us to change a
8983         couple values on the scrollbar (the most common case is maximum
8984         and large change) without getting multiple invalidates.
8985
8986 2006-05-24  Chris Toshok  <toshok@ximian.com>
8987
8988         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8989         (Edit): save off the original state in oldState, and set
8990         grid.is_editing to true.
8991         (OnKeyDown): abort editing if escape is pressed.  also, call
8992         NextState if space is pressed.
8993         (OnMouseDown): call NextState.
8994         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8995         here.  Also, only invalidate the row header once (on the initial
8996         is_changing switch) to save on redraws.
8997
8998 2006-05-24  Chris Toshok  <toshok@ximian.com>
8999
9000         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
9001         if the value in the cell is different than it was before.  This
9002         keeps us from triggering a layout when we move around a datarid
9003         with a highlighted cell.
9004         (Edit): suspend layout when creating/positining the text box, and
9005         resume passing false so we don't ever actually re-layout.
9006         (ReleaseHostedControl): same.
9007         (EnsureTextBox): reformat slightly, and set WordWrap to false.
9008
9009         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
9010         control-key sequences should go to the datagrid - remove that
9011         lock.  Also, modify the conditions under which we move between
9012         cells when moving the cursor within a cell, and remove the "this"
9013         and "base" from field accesses.  We weren't even consistent, given
9014         they all were in the base class.
9015
9016 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
9017
9018         * Binding.cs : (.ctor)
9019           An obvious NRE fix for BindingTest.CtorNullTest().
9020
9021 2006-05-23  Chris Toshok  <toshok@ximian.com>
9022
9023         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
9024         them between lines.  This fixes some quirks editing cells in the
9025         datagrid.
9026
9027 2006-05-23  Jackson Harper  <jackson@ximian.com>
9028
9029         * TreeView.cs: Use begin/end update when doing expand/collapse all
9030         so that we don't get flicker on the scrollbar.
9031
9032 2006-05-23  Jackson Harper  <jackson@ximian.com>
9033
9034         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
9035         treenode calculations to be independant of the painting code. To
9036         do this nodes track a visible order which is calculated by the
9037         treeview.
9038         - Call new methods for expanding/collapsing nodes.  These methods
9039         use scrollwindow so we don't have to update everything below the
9040         node.
9041         * TreeView.cs: Refactored drawing and scrolling code.  We don't
9042         need to update nodes when drawing anymore or calculate scrollbar
9043         stuff.
9044         - Added new methods for expanding/collapsing nodes. These methods
9045         use ScrollWindow so as to not have to redraw all the nodes below.
9046         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
9047         we add/remove nodes or sort.
9048         - Handle removing the selected and the top node properly.
9049
9050 2006-05-23  Chris Toshok  <toshok@ximian.com>
9051
9052         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
9053         maybe this should actually happen in the datagrid code?
9054         (EndEdit): no need to invalidate anything, given that
9055         ReleaseHostedControl causes the datagrid to relayout, which
9056         invalidates everything anyway.
9057
9058         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
9059         in SetCurrentCell).
9060         (set_SelectionBackColor): call InvalidateSelection instead of
9061         Refresh.
9062         (set_SelectionForeColor): same.
9063         (BeginEdit): Flesh this out a bit.
9064         (CancelEditing): only do any of this if we're editing/adding.
9065         (EndEdit): same.
9066         (OnMouseDown): there's no need to cancel editing here, it's done
9067         in SetCurrentCell.
9068         (SetCurrentCell): only invalidate the current row header if it's a
9069         different row than the new one.
9070         (ShiftSelection): fix this to work like MS does.
9071         (ResetSelection): factor out the invalidation of selected_rows to
9072         InvalidateSelection.
9073         (SetDataSource): cancel any editing that's going on.
9074
9075         * DataGridColumnStyle.cs
9076         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
9077         call the non-interface version.
9078
9079         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
9080         header rectangle with the clip rectangle so we don't redraw the
9081         entire header for just a small area.  Gets rid of the last flicker
9082         when horizontally scrolling.
9083         (DataGridPaintRow): same.
9084
9085 2006-05-23  Mike Kestner  <mkestner@novell.com>
9086
9087         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
9088         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
9089         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
9090         Critical bug report.
9091
9092 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9093
9094         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
9095           and this fixes #78493
9096
9097 2006-05-23  Miguel de Icaza  <miguel@novell.com>
9098
9099         * Theme.cs (GetSizedResourceImage): Scale images if the proper
9100         size is not found.  
9101         
9102         * FileDialog.cs: Do not change the background for the side bar as
9103         it wont work nicely with the theme, and also reduces the artifacts
9104         in rendering the icons (which I want to fix too).
9105
9106         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
9107         resources, not resgen resources. 
9108
9109         (PlatformDefaultHandler): Pull images using the new API.
9110
9111 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
9112
9113         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
9114           a reference to the hwnd and will not remove it unless there are
9115           no pending exposures (fixes #78341)
9116         * XplatUI.cs: Improved debug
9117
9118 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
9119
9120         * MenuAPI.cs : don't handle OnClick event when it was not the left
9121           button. Fixed bug #78487.
9122
9123 2006-05-23  Mike Kestner  <mkestner@novell.com>
9124
9125         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
9126         prefer submenus to the top menu for item lookup, to avoid popping down
9127         top-row items.
9128
9129 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
9130
9131         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
9132           Graphics.FillRectangle as the visual results are really bad (even
9133           on win). We now draw perfect arrows (and perfect shadows when the
9134           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
9135           Pen.DashPattern to draw the dots of each line.
9136
9137 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
9138
9139         * FileDialog.cs: Update the filename combobox when navigating through
9140           the ListView with the cursor keys. Fixes part 7 of bug #78446.
9141
9142 2006-05-22  Mike Kestner  <mkestner@novell.com>
9143
9144         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
9145         Fixes #78463.
9146
9147 2006-05-22  Mike Kestner  <mkestner@novell.com>
9148
9149         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
9150         requests. Fix a misspelled parameter and a copy paste exception error
9151         in Select.
9152
9153 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
9154
9155         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
9156           to get the same width/height (5/13) on X11 as the default font has on
9157           win32. This means that our DefaultFont emSize is smaller than the 
9158           the MS SWF equivalent (even thought the width/height stays the same)
9159
9160 2006-05-20  Jackson Harper  <jackson@ximian.com>
9161
9162         * MdiClient.cs:
9163         * MdiWindowManager.cs:
9164         * InternalWindowManager.cs: Make sure to use the border width from
9165         the theme.
9166
9167 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
9168
9169         * PrintDialog.cs: Implements printer details
9170
9171 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
9172
9173         * FileDialog.cs: Added focus handling for PopupButtonPanel.
9174           Fixes part 1 and 2 of bug #78446
9175
9176 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
9177
9178         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
9179           instead of sticking to the first ever calculated value
9180
9181 2006-05-19  Mike Kestner  <mkestner@novell.com>
9182
9183         * ComboBox.cs: fix mouse motion selection to use MousePosition and
9184         PointToClient, since Capture is set. Fixes #78344.
9185
9186 2006-05-19  Mike Kestner  <mkestner@novell.com>
9187
9188         * ListView.cs: match MS behavior in Details view where items are not
9189         drawn if Columns.Count == 0. 
9190         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
9191         Use a separate pen to draw the check, since changing the width affects
9192         the box as well.  Fixes #78454.
9193
9194 2006-05-18  Miguel de Icaza  <miguel@novell.com>
9195
9196         * ListView.cs: ArgumentOutOfRangeException, single versions of the
9197         exception should throw the name of the invalid argument.
9198
9199         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
9200         there are no files listed. 
9201
9202 2006-05-18  Jackson Harper  <jackson@ximian.com>
9203
9204         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
9205         up.
9206
9207 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9208
9209         * Control.cs: Brought back our old UpdateZOrder method as a private
9210           function and switched our calls from UpdateZOrder to the new one.
9211           This fixes the Paint.Net canvas disappearing bug.
9212
9213 2006-05-18  Jackson Harper  <jackson@ximian.com>
9214
9215         * Theme.cs:
9216         * ThemeWin32Classic.cs:
9217         * InternalWindowManager.cs: Move the drawing into the theme,
9218         expose everything the theme should need from the window manager.
9219
9220 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9221
9222         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
9223           from the call to NativeWindow to avoid walking up the parent chain
9224           further than needed (speeds up setting cursors and avoids setting
9225           the wrong cursor if a parent has another cursor defined)
9226         * Cursor.cs: When loading an icon as cursor, MS uses the center of
9227           the icon as hotspot, not what's contained as hotspot in the icon
9228           file. This fixes the perceived drawing offset seen with Paint.Net
9229         
9230 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
9231
9232         * XplatUIX11.cs: 
9233           - Store the calculated rectangle in Hwnd object and use it when 
9234             setting the client size
9235           - Force Toolwindows to always be type Dock, to ensure they're on top
9236
9237 2006-05-18  Mike Kestner  <mkestner@novell.com>
9238
9239         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
9240         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
9241         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
9242         Substantial refactoring to remove confusing nested classes. Coding
9243         standard and Get+Set->property refactorings.  Shift to index based
9244         highlighting in ComboListBox instead of constantly using IndexOf and
9245         Items[]. Add invalidations on resize for DropDownList to fix ugliness
9246         in FileDialog growth.  Draw borders manually since Simple mode needs
9247         to look like two independent controls.  Make listbox border
9248         conditional to DropDownStyle.  Improved OwnerDraw support.
9249
9250 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
9251
9252         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
9253         Don't set the disposed graphics to null, so we can throw the "right"
9254         exception if the graphics is reused later (added a flag to avoid 
9255         double disposing). Some behaviours are different under 2.0 and are
9256         filled under bug #78448.
9257
9258 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
9259
9260         * Control.cs: When double-buffering is enabled, we need to reset
9261           our graphics context between paint calls. Otherwise, any 
9262           transformations and other alterations on the context will 
9263           become cumulative (#77734)
9264
9265 2006-05-18  Mike Kestner  <mkestner@novell.com>
9266
9267         * ListView.cs: do focused item selection like MS on clicks. 
9268         Rework focus handling for ItemControl so LostFocus invalidates as
9269         well.
9270         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
9271         the ListView ItemControl has focus.
9272
9273 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
9274
9275         * XplatUIX11.cs: If client_window ends up being width or height zero
9276           due to border settings, move it off window inside whole_window (#78433)
9277
9278 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9279
9280         * Mime.cs: Shrink the mime file cache correctly.
9281
9282 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
9283
9284         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
9285
9286 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9287
9288         * XplatUIX11.cs (AddExpose): More sanity checks
9289
9290 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9291
9292         * XplatUIX11.cs:
9293           - AddExpose: Don't add expose ranges outside the size of our
9294             window
9295           - Cast opacity values to Int32 to avoid crashes with certain
9296             values
9297           - Added disabled code paths that protect against illegal cross-
9298             thread painting (Developers.exe)
9299
9300 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9301
9302         * ProgressBar.cs: Invalidate the control when it's resized
9303           since block size is based on control size. (#78388)
9304
9305 2006-05-16  Miguel de Icaza  <miguel@novell.com>
9306
9307         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
9308         of setting the incoming argument to the "reset" value, we set the
9309         this.datamember to string.empty (before we were invalidating the
9310         incoming data).   
9311
9312         Fixes 78420
9313
9314 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9315
9316         * Form.cs: Only apply transparency settings after the form
9317           is created. (Fixes #77800)
9318
9319 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
9320
9321         * ApplicationContext.cs: Grab the HandleDestroyed event so
9322           we know when to fire OnMainFormClosed 
9323
9324 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9325
9326         * Application.cs: Introduced sub-class to allow tracking of
9327           threads and centralized triggering of the event mess for
9328           ThreadExit, AppExit, etc..  (#76156)
9329
9330 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
9331
9332         * MimeIcon.cs:
9333           - Do not return a null icon index value for a mime subclass.
9334             Instead try the main mime type class too.
9335           - Seems that some newer distributions don't have a link to some
9336             gnome default icons anymore. So check the default gnome dir too.
9337           
9338
9339 2006-05-16  Jackson Harper  <jackson@ximian.com>
9340
9341         * MdiClient.cs: Don't paint the parent background image if we have
9342         our own background image.
9343
9344 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
9345
9346         * Control.cs:
9347           - PerformLayout: Do not shrink space filled by DockStyle.Fill
9348             controls, all filled controls are supposed to overlap (#78080)
9349           - UpdateZOrder is supposed to update the control's z-order in the
9350             parent's z-order chain. Fixed to behave like that
9351           - BringToFront: Removed obsolete code
9352           - SendToBack: Simplyfied
9353           - SetChildIndex: Trigger layout calculations when Z-order changes
9354             since layout is done by z-order
9355
9356 2006-05-16  Chris Toshok  <toshok@ximian.com>
9357
9358         [ fixes bug #78410 ]
9359         * DataGrid.cs (set_AlternatingBackColor): use
9360         grid_drawing.InvalidateCells instead of Refresh().
9361         (set_BackColor): call grid_drawing.InvalidateCells.
9362         (set_BackgroundColor): use Invalidate instead of Refresh.
9363
9364         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
9365         invalidate the cell area.
9366
9367 2006-05-15  Chris Toshok  <toshok@ximian.com>
9368
9369         [ fixes bug #78011 ]
9370         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
9371         on to DataGridPaintRow.
9372         (DataGridPaintRow): take a clip argument, and only draw the cells
9373         which intersect it.  same with the not_usedarea.
9374
9375         * Theme.cs (DataGridPaintRow) add @clip parameter.
9376
9377         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
9378         XplatUI.ScrollWindow.
9379         (ScrollToRow): same.
9380
9381         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
9382         with last column which was causing a gray swath to appear with the
9383         XplatUI.ScrollWindow code.
9384
9385 2006-05-15  Chris Toshok  <toshok@ximian.com>
9386
9387         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
9388         use XplatUI.ScrollWindow.
9389         (VerticalScrollEvent): use XplatUI.ScrollWindow.
9390
9391 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
9392
9393         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
9394
9395 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9396
9397         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
9398           file since there are no equivalent X11 cursors
9399
9400 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9401
9402         * MonthCalendar.cs : DateTimePicker should reflect selected date
9403           on mouse*up*, not mouse*down*. Fixed originally reported part of
9404           bug #76474.
9405
9406 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
9407
9408         * TabControl.cs : When argument index is equal or more than tab
9409           count, just ignore. Fixed bug #78395.
9410
9411 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
9412
9413         * Control.cs: Dispose all child controls when control is diposed (#78394)
9414
9415 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9416
9417         * ColorDialog.cs: Finally it is possible to select the color with
9418           the text boxes
9419
9420 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9421
9422         * PrintDialog.cs: Fix typo
9423
9424 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
9425
9426         * PrintDialog.cs: PrintDialog is not resizable
9427         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
9428           color. Made some ToolBar drawing methods protected virtual.
9429
9430 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
9431
9432         * PrintDialog.cs: Implementation of the PrintDialog
9433
9434 2006-05-12  Chris Toshok  <toshok@ximian.com>
9435
9436         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
9437         thumb, instead use MoveThumb.  This has the side effect of making
9438         most of the other thumb moving machinery use MoveThumb as well.
9439         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
9440         need to actually invalidate the rectangle where the new thumb will
9441         go.
9442         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
9443         We force an Update() after, so it's not as fast as it could be,
9444         but at least there's zero flicker and no droppings.
9445         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
9446         (UpdateThumbPos): add another argument (dirty), which says whether
9447         or not to calculate/add dirty regions which we later invalidate.
9448         For cases where we know we're going to use MoveThumb, we pass
9449         false for this.  Otherwise, pass true.
9450
9451 2006-05-12  Jackson Harper  <jackson@ximian.com>
9452
9453         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
9454         the status bar.
9455         
9456 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
9457
9458         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
9459           and GetClipRegion methods and UserClipWontExposeParent property.
9460         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
9461           overriding UserClipWontExposeParent property, setting to false, since
9462           Win32 handles the required expose messages to draw our clipped parent
9463           areas internally
9464         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
9465           PaintEventStart to set the user clip region if set.
9466         * Control.cs: 
9467           - Now internally tracking the Region for the control since we need to
9468             store it if the handle is not yet created and only set it when it
9469             becomes created. Before setting the region forced handle creation
9470           - Added code to draw the parents underneath a user-clipped region
9471         * Hwnd.cs: Added UserClip property
9472
9473 2006-05-12  Chris Toshok  <toshok@ximian.com>
9474
9475         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
9476         (set_Maximum): same.
9477         (set_Minimum): same.
9478         (set_SmallChange): same.
9479         (OnMouseUpSB): remove the call to refresh when releasing the
9480         thumb.  We shouldn't need it.
9481         
9482 2006-05-12  Miguel de Icaza  <miguel@novell.com>
9483
9484         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
9485         AutoSize set to None, we do not need to relayout everything, we
9486         just need to invalidate the current region.
9487
9488         (Draw): Do not draw the entire ClientArea, just redraw the
9489         clip area being passed.
9490
9491         * MdiClient.cs: Make MdiClient constructor with the Form argument
9492         internal. 
9493
9494 2006-05-12  Jackson Harper  <jackson@ximian.com>
9495
9496         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
9497         parents background image,  but strangely not their own.
9498         - (DrawStatusBarPanel): Take into account horizontal alignment
9499         when drawing the strings and icons.
9500
9501 2006-05-12  Mike Kestner  <mkestner@novell.com>
9502
9503         * ListBox.cs: avoid invalidations for focus when the collection is
9504         empty. 
9505
9506 2006-05-12  Chris Toshok  <toshok@ximian.com>
9507
9508         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
9509         invalidate the entire thumb area.  Call InvalidateDirty which
9510         limits the redraw to the thumb itself and surrounding pixels.
9511
9512         * XplatUIX11.cs (ScrollWindow): optimize copying.
9513         
9514 2006-05-12  Chris Toshok  <toshok@ximian.com>
9515
9516         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
9517         Figure out the positioning/layout in a single pass instead of
9518         multiple recursive invocations.  Speeds up the initial display of
9519         the data grid.  Also, make many things private that were
9520         originally public but unused outside this class.
9521
9522 2006-05-11  Jackson Harper  <jackson@ximian.com>
9523
9524         * MdiClient.cs: Improved layout code.
9525
9526 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
9527
9528         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
9529           not SelectedObject.
9530
9531 2006-05-11  Chris Toshok  <toshok@ximian.com>
9532
9533         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
9534         union of that will always be {0,0,width,height}.
9535
9536 2006-05-11  Jackson Harper  <jackson@ximian.com>
9537
9538         * Form.cs: Match MS's DefaultSize for forms (they must have
9539         changed the size in sp2).
9540
9541 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9542
9543         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
9544
9545 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9546
9547         * TextControl.cs : Fixed bug #78109. This incorrect position
9548           comparison caused crash on automatic line split.
9549         * TextBoxBase.cs : reduce duplicate code.
9550
9551 2006-05-10  Jackson Harper  <jackson@ximian.com>
9552
9553         * MdiClient.cs: Active form is only sent to the back when using
9554         the Next form functionality, when a form is clicked the current
9555         active shouldn't be sent to the back.
9556         - Layout the mdi windows when the container is first made visible.
9557         * Form.cs: Give the MdiClient a ref to the containing form when we
9558         create it.
9559         
9560 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9561
9562         * LinkLabel.cs : link_font could be uninitialized, so populate one
9563           before actual use. Fixed bug #78340.
9564
9565 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9566
9567         * XplatUIX11.cs : clipboard format native value is IntPtr.
9568           Fixed bug #78283.
9569
9570 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9571
9572         * Control.cs: 
9573           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
9574             which is passed up the parent chain by DefWndProc
9575           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
9576             to DefWndProc (#77956)
9577         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
9578
9579 2006-05-10  Jackson Harper  <jackson@ximian.com>
9580
9581         * MdiClient.cs: We need to remove the controls from the mdi
9582         collection, when we close the window.
9583         * MdiWindowManager.cs: Special handling of closing mdi windows.
9584         * InternalWindowManager.cs: Make the close method virtual so the
9585         mdi window manager can handle it specially.
9586
9587 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
9588
9589         * DataGrid.cs:
9590           - Recalculate grid when the data source has changed
9591           - Matches styles provided by user from all data sources types
9592         * DataGridTableStyle.cs: For columns that provided by the user set the
9593         with the preferred value is there was unassigned.
9594         * CurrencyManager.cs: throw OnItemChanged event
9595
9596 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
9597
9598         * PictureBox.cs: Don't animate until handle is created. Start animation
9599           when handle is created.
9600
9601 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9602
9603         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
9604           current codebase.
9605         * XEventQueue.cs: We don't need to provide the extra info
9606
9607 2006-05-10  Jackson Harper  <jackson@ximian.com>
9608
9609         * MdiClient.cs: If the mdi clients parent form has a background
9610         image set, we draw that background image for the mdi area's
9611         background.
9612
9613 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9614
9615         * TextBoxBase.cs: Set IBeam cursor (#78347)
9616
9617 2006-05-10  Mike Kestner  <mkestner@novell.com>
9618
9619         * ToolBar.cs: fix some text padding issues with ButtonSize
9620         calculation. Update the default size to match MS documentation.
9621         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
9622         button size. Fixes #78296.
9623
9624 2006-05-10  Mike Kestner  <mkestner@novell.com>
9625
9626         * ListBox.cs: use is_visible for scrollbar positioning in case the
9627         control isn't on screen yet.  Fix off by one with Right vs Width
9628         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
9629         
9630 2006-05-10  Jackson Harper  <jackson@ximian.com>
9631
9632         * X11Dnd.cs: Drop to a control with another control on top of it.
9633         * ToolBar.cs: Work on a copy of the buttons list, so that it can
9634         be modified in click handlers. TODO: Look for similar problems in
9635         other controls.
9636
9637 2006-05-09  Jackson Harper  <jackson@ximian.com>
9638
9639         * Form.cs: Window managers need the old window state when setting
9640         window state now.
9641         * InternalWindowManager.cs: Allow the base mdi window manager to
9642         handle more of the MDI only stuff (like maximize buttons).
9643         * MdiWindowManager.cs: Fix some snafus in changing the window
9644         state.  Add all the menu functionality, for both popup and
9645         maximized menus.
9646         * MdiClient.cs: When a new form is selected the currently
9647         activated form is sent to the back, this matches MS.
9648         - Implement a new method to activate the next mdi child window.
9649
9650 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
9651
9652         * Control.cs: 
9653           - Added new InternalCapture method to allow controls to prevent
9654             the capture behaviour on the click handlers
9655           - Switched to use InternalCapture
9656         * ComboBox.cs:
9657           - Using InternalCapture to prevent mouse captures from being released
9658             on mouse button release (Fixes #78100)
9659         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
9660           returns Form borders if a caption is present. (Fixes #78310)
9661
9662 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
9663
9664         * TreeNode.cs: Changed serialization .ctor to not require every field
9665           to be present. (#78265)
9666         * OwnerDrawPropertyBag.cs: Added serialization .ctor
9667
9668 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
9669
9670         * MimeIcon.cs: for is faster than foreach for strings.
9671
9672 2006-05-05  Mike Kestner  <mkestner@novell.com>
9673
9674         * CheckedListBox.cs: update check handling code to not use selected.
9675         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9676         behavior for visual feedback, motion response, shift/ctrl handling,
9677         and properly deal with all 4 selection modes. Updates to bounds
9678         handling logic.  Add scroll wheel support. [Fixes #77842]
9679
9680 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9681
9682         * ListView.cs:
9683           - Moved adding of Implicit controls into .ctor. That way, subsequent
9684             creation of the controls will not cause them to think they are 
9685             toplevel windows (fixes #78200 header problem)
9686           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9687           - Switched visibility setting of header control to use internal field
9688             to avoid triggering handle creation
9689           - Now checking if handle is created before causing a refresh when items
9690             are added (This makes us now match handle creation time with MS)
9691         * Splitter.cs: Removed loading of private splitter cursor, switched to
9692           Cursors version now that that is loading the right ones
9693         * Cursors.cs: Load proper splitter cursors from resources
9694         * Cursor.cs: Added second method of loading resource cursors for the 
9695           VS.Net users amongst us
9696
9697 2006-05-05  Mike Kestner  <mkestner@novell.com>
9698
9699         * ListView.cs: give header_control a minimum size based on the
9700         ListView size.
9701
9702 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9703
9704         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9705           window seems to do that with metacity, so set that type. (#78120)
9706
9707 2006-05-05  Mike Kestner  <mkestner@novell.com>
9708
9709         * ListViewItem.cs: fix Details mode checkbox layout bug.
9710         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9711         at the end of the header, if it exists. [Fixes for #78200]
9712
9713 2006-05-04  Jackson Harper  <jackson@ximian.com>
9714
9715         * MdiClient.cs: Add a helper property to get the container form.
9716         * MdiWindowManager.cs: We have to make sure to use the menu origin
9717         when drawing the icons and buttons, this fixes maximized window
9718         icons/buttons on win32.
9719         * InternalWindowManager.cs: Reset the restore captions when a
9720         window goes from Maximized to Minimized and vice versa. Move the
9721         DrawMaximizedButtons into the MdiWindowManager source, tool
9722         windows can't be maximized. NOTE: This could use a little
9723         refactoring if time ever permits.
9724         
9725 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9726
9727         * TextBox.cs: Add MWFCategoryAttributes
9728         * TextBoxBase.cs: Add MWFCategoryAttributes
9729         * Form.cs: Add MWFCategoryAttributes
9730
9731 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9732
9733         * Control.cs: Add MWFCategoryAttributes
9734         * ScrollableControl.cs: Add MWFCategoryAttributes
9735
9736 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9737
9738         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9739           Divider is true. Fix a little glitch in PropertyToolBar
9740           drawing code
9741
9742 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9743
9744         * Control.cs:
9745           - Dispose: Call base.Dispose, this causes the disposed event
9746             to be fired (and probably other, more important stuff)
9747           - SetVisibleCore: Set is_visible to true after creating the
9748             window so that the window still gets created invisible (if
9749             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9750             to generate a WM_ACTIVE message
9751         * Form.cs: Call Dispose when we want to destroy the window, instead of
9752           just destroying the handle (Dispose will do that for us)
9753         * XplatUIX11.cs:
9754           - RootWindow also needs a queue, so we can properly process the
9755             property change events from RootWindow (like Activate)
9756           - Generatic synthetic WM_ACTIVE message when the active window is
9757             being destroyed
9758
9759 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9760
9761         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9762           bounds are changed
9763
9764 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9765
9766         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9767           for determining width and height (image might not be assigned if
9768           we're drawing an imagelist)
9769
9770 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9771
9772         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9773         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9774           height from system
9775         * Theme.cs: No longer returns hardcoded menu height, instead calls
9776           new driver method
9777         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9778           on MS (# 78257)
9779
9780 2006-05-01  Mike Kestner  <mkestner@novell.com>
9781
9782         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9783
9784 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9785
9786         * TextBoxBase.cs: Removed Fixme
9787         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9788
9789 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9790
9791         * XplatUIX11.cs:
9792           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9793             the rectangle relative to the parent, considering borders. We
9794             don't really want that.
9795           - ScrollWindow: Fixed warning to be more understandable
9796         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9797           scrollbars and scroll only the visible area
9798         * RichTextBox.cs: Removed debug output
9799
9800 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9801
9802         * NumericUpDown.cs (Text): Just use base
9803         * UpDownBase.cs: Ensure txtView is created before using it
9804
9805 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9806
9807         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9808           casting to IntPtr to avoid 64bit overflow errors
9809
9810 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9811
9812         * Control.cs:
9813           - AllowDrop: Don't force handle creation.
9814           - CreateHandle: Added call to tell driver if we're allowed to drop
9815
9816 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9817
9818         * FileDialog.cs: Remember the last directory not only for the
9819           current instance but also for new FileDialog instances.
9820
9821 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9822         
9823         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9824           broke sending async messages
9825
9826 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9827
9828         * XplatUIX11.cs:
9829           - ScrollWindow: Fixed method. We finally generate expose events again
9830             for scrolled areas. This was causing 'garbage' when scrolling
9831             textbox and other controls that used ScrollWindow
9832           - Switched from using the regular queue for paint events to the MS 
9833             model of 'generating' paint events when the queue is empty.
9834             We use the new XQueueEvent.Paint subclass to store which windows
9835             need painting.
9836           - AddExpose now takes the x/y/width/height of the exposed area
9837             and inserts the window into the paint queue if not already there
9838           - InvalidateWholeWindow: Switched to use new AddExpose method
9839           - UpdateMessageQueue: Added which queue to monitor for paint events
9840           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9841             the unlikely case nothing above handles it. We reset the expose
9842             pending states to get them off the queue.
9843           - GetMessage: Now pulls a paint event if no other events are in the
9844             queue
9845           - Invalidate: Switched to new AddExpose method
9846           - PeekMessage: Updated to understand pending paint events
9847           - UpdateWindow: Fixed logic bug. We were only updating if the window
9848             didn't need updating. Also switched to sending WM_PAINT directly,
9849             like MS does.
9850         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9851           and random access Remove(). The random access is needed to handle
9852           UpdateWindow() where a WM_PAINT is sent directly without accessing
9853           the queue.
9854         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9855           allow for better feedback when scrolling. Scrollbars are small and
9856           the immediate update should make it 'feel' more responsive without
9857           slowing things down. ScrollBar still needs it's invaliate logic
9858           updated to not always invalidate the whole bar on certain changes.
9859
9860 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9861
9862         * Control.cs:
9863         (BackColor): if the control does not support a transparent background,
9864         return the default backcolor when the parent backcolor is transparent.
9865
9866 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9867
9868         * Application.cs: Updated to new StartLoop/GetMessage API
9869         * RichTextBox.cs: Provide some output on RTF parsing errors
9870         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9871           new queue_id argument to GetMessage and PeekMessage to allow faster
9872           handling of per-thread queues in drivers.
9873         * Hwnd.cs: Added Queue tracking and property
9874         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9875         * XEventQueue.cs: Added thread trackingA
9876         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9877         * XplatUIX11.cs:
9878           - Implemented new per-thread queue
9879           - GetMessage: Fixed return/break behaviour on several cases. We were
9880             returning stale messages in some cases, instead of just processing
9881             the next message
9882
9883 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9884
9885         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9886
9887 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9888
9889         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9890           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9891
9892 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9893
9894         * PropertyGridView.cs: Fix drop down width.
9895
9896 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9897
9898         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9899           a mess in DrawToolBar, so I removed one of them.
9900
9901 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9902
9903         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9904           needed (clip). Otherwise we get artifacts.
9905
9906 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9907
9908         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9909           dimension is fixed
9910         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9911           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9912         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9913           if it matches the scale base font (avoids unneeded scaling)
9914
9915 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9916
9917         * X11DesktopColors.cs: One gtk_init_check should be enough
9918
9919 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9920
9921         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9922           match MS behaviour
9923
9924 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9925
9926         * TextBoxBase.cs: 
9927           - Generate OnTextChanged for Backspace even if we're only deleting
9928             the current selection
9929           - When setting the Text property, only select all text if the
9930             control does not have focus when it is being set. Otherwise
9931             just place the cursor at the beginning of the control
9932
9933 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9934
9935         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9936           Added a little helper to draw PropertyGrid ToolBar with a different
9937           border and a different BackColor.
9938         * PropertyGrid.cs: Some background parts didn't get painted with the
9939           correct background color. Added a class that helps us to draw the
9940           correct border for PropertyGridView and a class that helps us to
9941           draw ToolBars with a different backcolor
9942         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9943
9944 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9945
9946         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9947         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9948
9949 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9950
9951         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9952           into the palette entries. Also, since we're working on a copy
9953           we needed to copy the palette back onto the bitmap.
9954         * Cursor.cs: Same fix as XplatUIWin32.cs.
9955
9956 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9957
9958         * ImageListStreamer.cs: Need to read the var (or we're off)
9959
9960 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9961
9962         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9963           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9964           TextBoxBase.cs: Unused var fixes
9965         * AxHost.cs: Small 2.0 fix
9966         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9967           as it seems that is what at least Metacity expects. This will make
9968           icons show up on 64bit platforms. We still have some 64bit size
9969           issues, though, since the startup app window size still won't match.
9970
9971 2006-04-25  Mike Kestner  <mkestner@novell.com>
9972
9973         * *.cs: cleanup newly reported exception var unused warnings.
9974
9975 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9976
9977         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9978           ms
9979
9980 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9981
9982         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9983           image. The image position is always the same, no matter if the
9984           button is pressed or not.
9985
9986 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9987
9988         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9989           selection and set the correct filename for SaveFileDialog.
9990           Patch by Emery Conrad.
9991
9992 2006-04-24  Mike Kestner  <mkestner@novell.com>
9993
9994         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9995         check for item.X outside the ClientRect instead of item.Y. Fixes
9996         #78151.
9997
9998 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9999
10000         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
10001         trust that value blindly and do some sanity check. Fixes bug #77814.
10002
10003 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10004
10005         * ImageListStreamer.cs: save the mask as a 1bpp image.
10006
10007 2006-04-21  Mike Kestner  <mkestner@novell.com>
10008
10009         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
10010         pass Checked and Indeterminate to the Theme Engine. Improve
10011         encapsulation with ListBox.
10012         * ListBox.cs: Keep a StringFormat instead of calculating it every item
10013         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
10014         nested types.  Move all CheckState functionality to CheckedListBox.
10015         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
10016         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
10017         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
10018         single base list. Fix scrollbar sizing and placement to mirror MS.
10019         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
10020         used.
10021         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
10022         for CheckedListBox by using new DrawItemState info.  Center the
10023         checkboxes on the items. Use new StringFormat property.
10024
10025 2006-04-18  Jackson Harper  <jackson@ximian.com>
10026
10027         * Form.cs: MdiChildren don't do default locations the same way as
10028         regular forms.  This prevents a crash when trying to position the
10029         mdi windows.
10030
10031 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
10032
10033         * PropertyGridTextBox.cs: Formatting, copyright
10034         * PropertiesTab.cs: Formatting
10035         * PropertyGrid.cs: Formatting
10036         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
10037           click toggling of values
10038           
10039 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
10040
10041         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
10042         * Control.cs (.ctor): verify_thread_handle is static, don't reset
10043           every time a control is created
10044         * Application.cs: Removed obsolete EnableRTLMirroring method
10045
10046 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
10047
10048         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
10049         SelectedIndex to -1. Fixes bug #78121.
10050
10051 2006-04-17  Jackson Harper  <jackson@ximian.com>
10052
10053         * Binding.cs: Handle null values for Current and BindingContext.
10054         This occurs when binding is a little delayed.
10055         * CurrencyManager.cs: return null for Current when there are no
10056         items in the list.
10057         - Hookup to the listchanged event on the DataView and update
10058         bindings when the list is changed.  This fixes late binding of
10059         controls.
10060
10061 2006-04-17  Jackson Harper  <jackson@ximian.com>
10062
10063         * X11Dnd.cs:
10064         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
10065         Ringenbach.
10066
10067 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
10068
10069         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
10070           place
10071         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
10072           with the correct ButtonState
10073
10074 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
10075
10076         * XplatUIX11.cs: Improved distinguishing between window types to
10077           tell the WM a type closer to what the app wants (Fixes #78107)
10078
10079 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10080
10081         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
10082           GrabHandle
10083
10084 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
10085
10086         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
10087           drawing code to reflect the size grip changes
10088
10089 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10090
10091         * ImageListStreamer.cs: fix handling of the mask that follows the main
10092         bitmap when deserializing and serialize it properly. The generated mask
10093         should better be a 1bpp image, but I'll do that later.
10094
10095 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10096
10097         * FileDialog.cs: Show something in the DirComboBox on *nix if the
10098           path doesn't fit into some of our Current.Places
10099
10100 2006-04-13  Jackson Harper  <jackson@ximian.com>
10101
10102         * ComboBox.cs: Use borders instead of drawing our own decorations,
10103         try to obey correct rules for heights.
10104         * Theme.cs:
10105         * ThemeNice.cs:
10106         * ThemeClearLooks.cs:
10107         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
10108         this is now handled by borders.
10109         - Remove unused DrawListBoxDecorationSize method.
10110         
10111 2006-04-13  Mike Kestner  <mkestner@novell.com>
10112
10113         * MenuAPI.cs: null guarding for the disbled click check fixes crash
10114         reported by Alex.
10115
10116 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
10117
10118         * ThemeWin32Classic.cs: 
10119           - Fixed CPDrawStringDisabled
10120           - Corrected drawing of disabled menu items
10121           - Fixed drawing of disabled radio buttons (bug #78095)
10122           - Draw check in a disabled CheckBox with color ControlDark 
10123
10124 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10125
10126         * Form.cs: Use the provided width when calculating the menu size;
10127           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
10128           and ClientSize.Width won't be updated yet
10129         * Application.cs: Use Visible instead of Show() to make form visible,
10130           this way we create the handle later and menusize is considered
10131
10132 2006-04-12  Mike Kestner  <mkestner@novell.com>
10133
10134         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
10135         reporting.
10136
10137 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10138
10139         * TextBox.cs: Implemented context menu
10140
10141 2006-04-12  Mike Kestner  <mkestner@novell.com>
10142
10143         * ListView.cs: implement box selection. fixes #77838.
10144         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
10145
10146 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10147
10148         * XplatUIX11.cs: Added setting of window type when transient window
10149           is created (metacity would move it otherwise)
10150         * X11Structs.cs: Added WINDOW_TYPE atoms
10151         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
10152           background (the control is Opaque but still wants transparent
10153           backgrounds)
10154
10155 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10156
10157         * Control.cs: Added OnPaintBackgroundInternal to allow controls
10158           that set Opaque but don't mean it (like all ButtonBase-derived
10159           controls) to still draw their background
10160         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
10161           the background
10162
10163 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
10164
10165         * Control.cs (PaintControlBackground): Set the graphics object
10166           on our PaintEvent to null to prevent it from being disposed
10167           when the PaintEvent gets disposed
10168
10169 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
10170
10171         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
10172         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
10173
10174 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
10175
10176         * Control.cs: 
10177           - Added transparency check to BackColor property. Transparent
10178             backgrounds are only allowed if the control styles permit it
10179           - Added recursive painting of parent control background and
10180             foreground if a control with a transparent backcolor is drawn
10181             (Thanks to Tim Ringenback for providing his 'hack' as a base
10182              for this patch) Fixes #77985 and #78026.
10183           - Added Opaque style check before calling OnPaintBackground, no
10184             need to draw the background if the control is opaque
10185           - Removed ControlAccessibleObject owner variable (inherited from
10186             base, no need to define again)
10187           - Added some documentation links explaining the drawing events
10188             and styles
10189
10190 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10191
10192         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
10193           that the affected control is the located at the left border of our
10194           parent (Fixes #77936)
10195
10196 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10197
10198         * TextBoxBase.cs: When rendering disabled or readonly controls,
10199           draw the background with 'Control' instead of 'Window' color as
10200           long as the user hasn't specifically set a color
10201
10202 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
10203
10204         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
10205           since that won't be updated if the user types text (only if it's
10206           programatically set)
10207
10208 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10209
10210         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
10211           layout changes do to app-triggered resizes will have the proper
10212           display rectangle for layout
10213
10214 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
10215
10216         * ThemeWin32Classic.cs:
10217           - Make use of the SystemBrushes and SystemPens wherever possible
10218           - Corrected some highlight colors
10219           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
10220             drawing
10221         * Theme.cs: Added Empty field to CPColor struct
10222
10223 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
10224
10225         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
10226           is displayed when calculating the display rectangle. Thanks to Mike
10227           for teaching me the err of my ways.
10228
10229 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
10230
10231         * ScrollableControl.cs:
10232           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
10233             (instead of 0,0) and we now return the real width/height instead of
10234             just the clientrectangle, adjusted for padding. The rectangle is
10235             now cached and created by the new CalculateDisplayRectangle method.
10236           - Created new CalculateDisplayRectange method, which basically does
10237             what get_DisplayRectangle() did originally, but now using the 
10238             right edge instead of DisplayRectangle to determine the size of
10239             our scrollbars
10240           - get_Canvas(): Fixed it to properly calculate canvas for 
10241             right/bottom controls which seem to be placed to the right/bottom
10242             of any controls that have a fixed location
10243           - Removed TODO that's taken care of
10244           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
10245             and SetDisplayRectLocation according to new MSDN2 docs
10246           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
10247             event when that is called, this is added for compatibility
10248           - ScrollControlIntoView(): Implemented.
10249           - Switched scrollbars to be implicit, they shouldn't be selectable
10250         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
10251           call it when the active control is set/changed
10252         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
10253         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
10254           implicit_control variable (used for native Win32 message generation)
10255         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
10256           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
10257         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
10258         * XplatUIStructs.cs: Added ScrollBarCommands enum
10259
10260 2006-04-10  Jackson Harper  <jackson@ximian.com>
10261
10262         * ButtonBase.cs:
10263         * CheckedListBox.cs:
10264         * ComboBox.cs:
10265         * DataGrid.cs:
10266         * DataGridView.cs:
10267         * Form.cs:
10268         * GroupBox.cs:
10269         * ListBox.cs:
10270         * PrintPreviewControl.cs:
10271         * ProgressBar.cs:
10272         * PropertyGrid.cs:
10273         * Splitter.cs:
10274         * StatusBar.cs:
10275         * TrackBar.cs:
10276         * UpDownBase.cs: Fixup base event overrides.
10277         
10278 2006-04-06  Mike Kestner  <mkestner@novell.com>
10279
10280         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
10281         all user-initiated value changes to min <= value <= max-thumbsz+1.
10282         (set_Value): check for vert/horiz when calculating new thumb position.
10283         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
10284         like MS does.
10285         (OnMouseMoveSB): refactor the thumb dragging code and refine
10286         invalidation logic to reduce flicker.
10287         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
10288         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
10289         (UpdateThumbPosition): small code readability cleanup
10290
10291 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
10292
10293         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
10294           different
10295
10296 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10297
10298         * ThemeNice.cs: Use a better graphics effect when a button is pressed
10299
10300 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
10301
10302         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
10303         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
10304           This dramatically reduces the number of Pen.Dispose calls. 
10305           Where possible call ResPool methods only once instead of calling it
10306           over and over again (for example for the same color).
10307
10308 2006-04-06  Mike Kestner  <mkestner@novell.com>
10309
10310         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
10311         Also remove an unused private field on the collection. Fixes #77972.
10312
10313 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10314
10315         * ThemeNice.cs: Added ToolBar drawing code
10316
10317 2006-04-06  Mike Kestner  <mkestner@novell.com>
10318
10319         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
10320         I'm assuming that means we need to look up the toplevel for the
10321         provided control. Fixes the crash trace in #77911 but exposes another
10322         crash in some strange reflection usage in NDocGui.
10323
10324 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
10325
10326         * ThemeNice.cs: Gave it a little silver touch and added Images
10327           method
10328         * FontDialog.cs: FontDialog is not resizable
10329         * FileDialg.cs: Added SizeGripStyle.Show
10330
10331 2006-04-05  Jackson Harper  <jackson@ximian.com>
10332
10333         * KeyboardLayouts.cs: Remove warning.
10334
10335 2006-04-05  Jackson Harper  <jackson@ximian.com>
10336
10337         * Control.cs: Enable OnPaintInternal so we can use it for drawing
10338         all of our controls instead of Paint +=.
10339         * ListBox.cs:
10340         * ListView.cs:
10341         * MenuAPI.cs:
10342         * MessageBox.cs:
10343         * NotifyIcon.cs:
10344         * ProgressBar.cs:
10345         * ScrollBar.cs:
10346         * Splitter.cs:
10347         * StatusBar.cs:
10348         * TabControl.cs:
10349         * TextBoxBase.cs:
10350         * ToolBar.cs:
10351         * TrackBar.cs:
10352         * UpDownBase.cs:
10353         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
10354         use OnPaintInternal. Remove Width/Height and Visible checks in
10355         paint handler, this is done at a higher level now.
10356         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
10357         * PaintEventArgs.cs: Add a handled flag so controls that don't
10358         want anymore painting after OnPaintInternal can make sure OnPaint
10359         isn't called.
10360
10361 2006-04-05  Mike Kestner  <mkestner@novell.com>
10362
10363         * Form.cs: fix the menu WndProc hacks to respect the native enabled
10364         state of the form, so that we don't process events when Modal dialogs
10365         are up. Fixes #77922.
10366
10367 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
10368
10369         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
10370           checking is done.
10371
10372 2006-04-05  Mike Kestner  <mkestner@novell.com>
10373
10374         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
10375
10376 2006-04-05  Mike Kestner  <mkestner@novell.com>
10377
10378         * ListView.cs (HeaderMouseMove): null guarding for the over column
10379         when setting up the drag_to_index.  Fixes #78015.
10380
10381 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
10382
10383         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
10384           in the taskbar. Transient windows seem to accomplish that.
10385
10386 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
10387
10388         * Form.cs:
10389           - Re-enabled CreateParams.X/Y code for FormStartPosition
10390           - Added code for manual placement when creating the Control
10391           - Incomplete patch to treat MDI forms differently when
10392             setting the ClientSizeCore. (Still need to figure out handling
10393             x/y coords there)
10394         * XplatUIX11.cs:
10395           - When we're explicitly setting the X/Y position of a non-Child
10396             window, let the WM know. Metacity really wants this.
10397
10398 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10399
10400         * ThemeNice.cs: Added CPDrawButton
10401
10402 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10403
10404         * ThemeNice.cs: Changed the color for focused buttons and activated
10405           the arrows for small scroll buttons.
10406
10407 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
10408
10409         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
10410           anymore. Changed some method modifiers to protected (virtual)
10411         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
10412           changes
10413         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
10414           Updated drawing of menus, buttons and progressbars; added
10415           CPDrawBorder3D 
10416
10417 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10418
10419         * ImageListStreamer.cs: implemented serialization/deserialization
10420         of the images.
10421
10422 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
10423
10424         * ThemeWin32Classic.cs:
10425           - Removed all the DrawFrameControl stuff; CPDrawButton,
10426             CPDrawCheckBox and CPDrawRadioButton are now handled directly
10427             inside the methods
10428           - Updated and corrected the drawing code of CPDrawButton,
10429             CPDrawCheckBox and CPDrawRadioButton to better match ms
10430           - Updated theme checkbox and radiobutton code to use the CP*
10431             methods
10432
10433 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10434
10435         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
10436           bug is fixed
10437
10438 2006-03-31  Jackson Harper  <jackson@ximian.com>
10439
10440         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
10441         sometimes.
10442         * UpDownBase.cs: Don't CreateGraphics manually, use a
10443         Refresh. Ideally we would invalidate the correct areas here.
10444
10445 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
10446
10447         * XplatUIX11.cs: 
10448           - We now track the mapping state of windows. If a window (or 
10449             one of it's parents) is not mapped we no longer permit
10450             WM_PAINT messages to be generated since we'd otherwise get 
10451             lots of BadMatch X errors. Jackson did all the work figuring
10452             out the problem.
10453           - Destroying the caret if the window it's contained in is 
10454             destroyed. Can't use regular DestroyCaret method since it
10455             might fall into a drawing function (trying to remove the
10456             caret) and with that generate new BadMatch errors. Again,
10457             Jackson tracked this down.
10458           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
10459             make sure we send the messages to all windows. (The old code
10460             would send the WM_DESTROY to the window, and then all child
10461             windows would be 'gone' because the WM_DESTROY handle lookup
10462             would no longer find the destroyed window)
10463         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
10464         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
10465
10466 2006-03-31  Jackson Harper  <jackson@ximian.com>
10467
10468         * ScrollableControl.cs: Dont recalc if we are not visible.
10469
10470 2006-03-31  Mike Kestner  <mkestner@novell.com>
10471
10472         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
10473         the visibility branch.
10474
10475 2006-03-31  Jackson Harper  <jackson@ximian.com>
10476
10477         * ScrollBar.cs: Cap values when incrementing/decrementing.
10478
10479 2006-03-31  Mike Kestner  <mkestner@novell.com>
10480
10481         * MenuAPI.cs: setup menu.tracker for popup/context menus.
10482         * ToolTip.cs: guard against timer expirations with no active control.
10483         Not sure why it happened.
10484
10485 2006-03-31  Mike Kestner  <mkestner@novell.com>
10486
10487         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
10488         text.
10489         * ToolTip.cs: Position the tooltip based on where the cursor is at
10490         popup time, not at MouseEnter time.  Add a Down state so that we don't
10491         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
10492         positioning offset. Lookup DisplaySize at positioning time, since it
10493         can theoretically change during invocation.
10494         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
10495         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
10496
10497 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10498
10499         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
10500           Fixes behaviour when the Text property of the box is String.Empty
10501
10502 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
10503
10504         * XplatUIX11.cs: Only send mouseleave for our client windows, not
10505           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
10506           a window)
10507
10508 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10509
10510         * FileDialog.cs: Visual enhancement for the popup buttons in 
10511           PopupButtonPanel
10512
10513 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10514
10515         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
10516           code
10517
10518 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
10519
10520         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
10521           highlighted menu items to match ms
10522
10523 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
10524
10525         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
10526
10527 2006-03-30  Mike Kestner  <mkestner@novell.com>
10528
10529         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
10530         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
10531         go active to account for HotLight to Selected transition.
10532         * MenuItem.cs: add internal Selected prop. Fill out the Status
10533         property by calculating it from item info. Add HotLight,
10534         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
10535
10536 2006-03-30  Mike Kestner  <mkestner@novell.com>
10537
10538         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
10539
10540 2006-03-29  Jackson Harper  <jackson@ximian.com>
10541
10542         * Form.cs: Implement TODO.
10543
10544 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
10545
10546         * PrintPreviewDialog.cs: Implemented missing methods and events; still
10547           missing proper dialog setup in the constructor
10548
10549 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
10550
10551         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
10552         * Control.cs:
10553           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
10554           - Fixed ResetBindings and removed TODO
10555           - Added check for cross-thread calls to get_Handle()
10556           - Added Marshaller attribute for set_Font to satisfy class status
10557         * FontDialog.cs: Removed TODOs that seemed implemented
10558         * UpDownBase.cs: Removed unneeded TODO and Fixme
10559         * MessageBox.cs: Implemented support for Default button and removed TODO
10560         * FileDialog.cs: Removed obsolete TODO
10561         * DomainUpDown.cs: Removed obsolete TODO
10562         * ButtonBase.cs: Removed obsolete TODO
10563         * XplatUIWin32.cs: Removed obsolete TODO
10564         * Form.cs:
10565           - Removed obsolete TODO
10566           - Calling CheckAcceptButton when the acceptbutton is changed to allow
10567             internal status updates
10568           - Making sure the active control is selected when the control is created
10569         * CurrencyManager.cs: Removed obsolete TODO
10570
10571 2006-03-29  Mike Kestner  <mkestner@novell.com>
10572
10573         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
10574         of PrintPreviewDialog and RichTextBox.
10575
10576 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10577
10578         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
10579           DarkDark, Light and LightLight colors for a specific color
10580         * ThemeWin32Classic.cs:
10581           - Use Button drawing code to draw RadioButtons and CheckBoxes with
10582             Appearance = Button 
10583           - Make use of the new ResPool helper CPColor
10584           - Draw ProgressBar and StatusBar with correct 3D borders
10585
10586 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10587
10588         * ColorDialog.cs: Return selected color. Fixes bug #77940.
10589
10590 2006-03-28  Mike Kestner  <mkestner@novell.com>
10591
10592         * ListView.cs: fix Icon layout to plan for scrollbar widths when
10593         calculating col/row counts.
10594
10595 2006-03-28  Mike Kestner  <mkestner@novell.com>
10596
10597         * ColumnHeader.cs:
10598         * ListView.cs:
10599         * ListViewItem.cs:
10600         * Menu.cs: 
10601         switch to explicit interface method implementation for some methods
10602         corcompare identifies as inconsistent with MS.
10603
10604 2006-03-28  Mike Kestner  <mkestner@novell.com>
10605
10606         * MainMenu.cs: 
10607         * Menu.cs:
10608         add a few missing methods from the class status output.
10609
10610 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
10611
10612         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
10613           correct.
10614
10615 2006-03-28  Mike Kestner  <mkestner@novell.com>
10616
10617         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
10618
10619 2006-03-27  Mike Kestner  <mkestner@novell.com>
10620
10621         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
10622         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
10623
10624 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
10625
10626         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
10627
10628 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10629
10630         * ThemeWin32Classic.cs:
10631           - GroupBox: Inserted a little gap between the text and the lines
10632             on the right side
10633           - Made the code in CPDrawBorder3D more readable
10634           - Corrected the drawing location of the up and down arrows in 
10635             CPDrawScrollButton
10636
10637 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10638
10639         * ControlPaint.cs: Corrected line widths in DrawBorder for
10640           ButtonBorderStyle Inset and Outset
10641
10642 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10643
10644         * ThemeWin32Classic.cs:
10645           - Rewrote the totally broken CPDrawBorder3D method. That was
10646             one of the main problems for the terrific ThemeWin32Classic
10647             look
10648           - Updated and corrected Button drawing
10649           - Correct the dimensions of the SizeGrip to match ms ones
10650           - Removed a small drawing glitch in DrawComboBoxEditDecorations
10651         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
10652           Border3DStyle.Sunken to match ms.
10653
10654 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10655
10656         * ThemeWin32Classic.cs: First small part of the "de-uglify
10657           ThemeWin32Classic" effort, SizeGrip
10658
10659 2006-03-24  Jackson Harper  <jackson@ximian.com>
10660
10661         * XplatUIX11.cs: Give a max idle time of one second, this matches
10662         MS and forces an Idle event every second when there are no other
10663         events in the queue.
10664
10665 2006-03-24  Mike Kestner  <mkestner@novell.com>
10666
10667         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
10668         * ListView.Item.cs: fix layout issues with null image lists and images
10669         smaller than checkbox size.
10670         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
10671         mode like MS does.  It's weird, but consistent.  ;-)
10672         Fixes #77890.
10673
10674 2006-03-24  Mike Kestner  <mkestner@novell.com>
10675
10676         * ListView.cs: Scroll wheel support for the item control.  Fixes
10677         #77839.
10678
10679 2006-03-23  Jackson Harper  <jackson@ximian.com>
10680
10681         * ScrollableControl.cs: Special case negative sized areas, not
10682         zero.
10683         * MonthCalendar.cs: Save the rect of the clicked date so we can
10684         use it for invalidation.
10685         - Try to cut down on the number of invalidates
10686         - Invalidate the rect the mouse is over and was over when moving
10687         the mouse, so we get the focus box following the cursor.
10688
10689 2006-03-23  Mike Kestner  <mkestner@novell.com>
10690
10691         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10692         focus rectangle drawing. Fixes #77835.
10693
10694 2006-03-23  Mike Kestner  <mkestner@novell.com>
10695
10696         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10697         the if and else if and reverting back to the original == check on the
10698         None conditional.
10699
10700 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10701
10702         * FontDialog.cs: Update the example panel if the selected index of
10703           the fontListBox changes.
10704
10705 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10706
10707         * FileDialog.cs: Make FileDialog remember which directory it was in
10708           last in the same execution.
10709
10710 2006-03-22  Mike Kestner  <mkestner@novell.com>
10711
10712         * FileDialog.cs: make the DropDownMenu on the toolbar display
10713         RadioChecks since they are mutually exclusive and that's what MS does.
10714
10715 2006-03-22  Mike Kestner  <mkestner@novell.com>
10716
10717         * Theme.cs: add Color param to CPDrawMenuGlyph.
10718         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10719         checks and radio marks and arrows are visible on highlighted items.
10720         * ControlPaint.cs: update to use new Theme signature.
10721
10722 2006-03-22  Mike Kestner  <mkestner@novell.com>
10723
10724         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10725         is active. Fixes #77870.
10726
10727 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10728
10729         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10730           to be focused/selected after startup
10731
10732 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10733
10734         * ColorDialog.cs: 
10735           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10736             CustomColors and ShowHelp properties
10737           - Some internal rewrites to get better results when using the
10738             ColorMatrix
10739
10740 2006-03-22  Mike Kestner  <mkestner@novell.com>
10741
10742         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10743         HoverSelection.  Fixes #77836.
10744
10745 2006-03-22  Mike Kestner  <mkestner@novell.com>
10746
10747         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10748         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10749         1, not 0.  Update ButtonSize based on a pixel count of the win32
10750         control.  Adjust the toolbar size/location for new button size.
10751
10752 2006-03-22  Jackson Harper  <jackson@ximian.com>
10753
10754         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10755         true.
10756         * ScrollBar.cs: When doing increments and decrements we need to
10757         set the Value property so that ValueChanged gets raised. A
10758         possible optimization here would be to make an internal SetValue
10759         that doesn't invalidate immediately.
10760         * ToolTip.cs: Tooltips get added to their container (when
10761         supplied) so they get disposed when the container is disposed.
10762         - Don't create tooltips for String.Empty. This prevents all these
10763         little 2-3 pixel windows from showing up when running nunit-gui
10764         and driving me mad.
10765         * Form.cs: Don't set topmost when setting the owner if the handles
10766         haven't been created yet.  The topmost set will happen when the
10767         handles are created.
10768
10769 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10770
10771         * XplatUIX11.cs:
10772           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10773           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10774             visible (to allow them to recalculate their sizes)
10775
10776 2006-03-21  Mike Kestner  <mkestner@novell.com>
10777
10778         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10779         methods. Removed a ton of redundant code.  Still not really happy with
10780         the border rendering, but I think that's mainly because of the
10781         ControlDarkDark being black instead of a dark grey. Depending on how 
10782         close we want to be, we might want to revisit those color choices.
10783         Among the new features added during the refactor were DropDownArrow
10784         pressed rendering, Disabled image rendering.  Proper flat appearance
10785         boundary rendering.  Removed the Divider and Wrapping dividers since I
10786         can't figure out any combination of themes and conditions to make the
10787         MS control draw a horizontal line on a toolbar despite what the
10788         Divider property docs indicate.
10789         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10790         conditions and incorrect layout.  Updated to coding standard.
10791         * ToolBarButton.cs: refactored layout and positioning code from
10792         ToolBar to here.  Invalidate wherever possible instead of forcing
10793         redraws of the whole toolbar. 
10794         (Known remaining issues: explicit ButtonSize smaller than provided
10795         images.)
10796
10797 2006-03-21  Mike Kestner  <mkestner@novell.com>
10798
10799         * ContextMenu.cs (Show): use the position parameter instead of just
10800         showing at the MousePosition.
10801
10802 2006-03-21  Jackson Harper  <jackson@ximian.com>
10803
10804         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10805         control handle this.
10806         * TreeNodeCollection.cs: If we are clearing the root node we need
10807         to reset top_node so calcs can still happen.
10808         * ThemeWin32Classic.cs: This is a Flags so we need to check
10809         properly.
10810         
10811 2006-03-21  Jackson Harper  <jackson@ximian.com>
10812
10813         * DataGrid.cs: Create columns when the binding context has been
10814         changed.
10815         * X11Structs.cs: Keysyms are uints.
10816         - Add size to fix build.
10817
10818 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10819
10820         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10821           XplatUIOSX.cs: 
10822           - Added ResetMouseHover method to allow controls to retrigger
10823             hovering if they need it more than once
10824           - Implemented MouseHoverTime and MouseHoverSize properties
10825         * Timer.cs: Start() must reset the interval
10826         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10827           properties
10828
10829 2006-03-21  Jackson Harper  <jackson@ximian.com>
10830
10831         * X11Keyboard.cs: improved layout detection. Move the nonchar
10832         tables into this file.
10833         * KeyboardLayouts.cs: Move the tables into resource files.
10834
10835 2006-03-21  Mike Kestner  <mkestner@novell.com>
10836
10837         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10838
10839 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10840
10841         * Mime.cs: Various speed optimizations. Looking up mime types
10842           is now 2 times faster than before
10843
10844 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10845
10846         * CreateParams.cs: Added internal menu field
10847         * Control.cs: 
10848           - Switched call order for UpdateBounds; now we always call
10849             the one that also takes ClientSize, and we're calculating the 
10850             client size via driver method in the others. The previous
10851             method of tracking client size by difference wasn't working
10852             for forms where even the starting client size wouldn't match
10853             the overall form size (due to borders) (Part of fix for #77729)
10854           - CreateParams(): Do not use parent.Handle unless the handle is
10855             already created. Causes havoc with Nexxia and throws off our
10856             creation of controls
10857         * XplatUIX11.cs:
10858           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10859           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10860             method (consolidates code)
10861           - Changed RequestNCRecalc to use new PerformNCCalc method
10862           - Added calls to RequestNCRecalc when menus and borders are changed
10863             to allow app to set NC size. (Part of fix for #77729) This matches
10864             when MS send a WM_NCRECALC on Win32 windows.
10865           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10866             (Part of fix for #77729). This matches what MS does, they also
10867             send that message when the form is made visible.
10868           - XException.GetMessage: Improved usability of X errors by including
10869             a translation of the window into Hwnd and Control class
10870           - Improved debug info for window creation, reparenting and destruction
10871           - Created helper method WindowIsMapped() [Currently not used]
10872         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10873         * Form.cs:
10874           - CreateParams: Now setting our menu on the new internal menu field
10875           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10876             avoid calculating the same property twice
10877         * Hwnd.cs:
10878           - Improved usability of ToString() for debugging purposes
10879           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10880             determine the height of the menu, instead of just the font. This
10881             required to also create a graphics context and to keep a bmp 
10882             around (for performance reasons)
10883
10884 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10885
10886         * MenuAPI.cs: Added OnMouseUp method
10887         * Form.cs:
10888           - Now remembering the requested client size, avoids size errors
10889           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10890             instead of base if the menu is active. This is required due to
10891             control now capturing and releasing on down/up and it would
10892             prematurely release our menu capture
10893
10894 2006-03-17  Jackson Harper  <jackson@ximian.com>
10895
10896         * KeyboardLayouts.cs: Add the czech layouts.
10897
10898 2006-03-16  Jackson Harper  <jackson@ximian.com>
10899
10900         * Control.cs: Use the viewport space when sizing not the controls
10901         client size, so things like ScrollableControl that effect the
10902         viewport size (when scrollbars are added) are computed correctly.
10903         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10904         of ManagerEntrys.
10905         - Handle creating BindingManagers for null data sources.
10906         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10907         source, otherwise when rows are added they are added to the 'fake'
10908         datasource and we will crash when trying to set the position in
10909         those rows.
10910         - Use Implicit scrollbars on the datagrid so they arent
10911         selectable.
10912         
10913 2006-03-16  Jackson Harper  <jackson@ximian.com>
10914
10915         * Binding.cs:
10916         * InternalWindowManager.cs:
10917         * MdiWindowManager.cs:
10918         * X11Keyboard.cs: I really want Mike to love me again (fix
10919         compiler warnings).
10920
10921 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10922
10923         * DataGrid.cs:
10924           - OnMouseDown: Switch to editing mode when clicking on the cell
10925                          even if we're clicking on the cell that's currently 
10926                          selected
10927           - ProcessGridKey: Left/Right now wrap like MS.Net does
10928           - ProcessGridKey: Tab now knows to add a new row when tab is
10929                             pressed in the cell of the last column of the 
10930                             last row
10931           - ProcessGridKey: Enter now adds another row  if pressed in the last
10932                             row and selectes the new row, same column cell
10933           - ProcessGridKey: Home/End navigate columns, not rows, like 
10934                             originally implemented
10935           - Broke ProcessKeyPreview code out into an extra Internal method
10936             so it can be called from the edit code
10937         * DataGridTextBox.cs (ProcessKeyMessage):
10938           - Switched to accept Tab keypresses
10939           - Added F2 handling to allow jumping to the end of the edited cell
10940           - Added logic to allow moving caret left/right inside edited cell
10941             and making the edited cell jump when the caret hits cell borders
10942           - Tab and Enter are now passed to the datagrid after being handled
10943         * TextBoxBase.cs:
10944           - Removed capture code now that Control handles it
10945           - set_SelectionStart now ensures caret is visible
10946
10947 2006-03-16  Jackson Harper  <jackson@ximian.com>
10948
10949         * TrackBar.cs: Debackwards the increment/decrement for handling
10950         mouse clicks on the bar with vertical trackbars.
10951         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10952         bottom to match MS.
10953
10954 2006-03-16  Mike Kestner  <mkestner@novell.com>
10955
10956         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10957         consistent with the MS control. Fix a bug in
10958         SelectedListViewItemCollection.Clear that was pissing me off for the
10959         better part of a day because the collection was being altered
10960         underneath us as we walked the list.
10961
10962 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10963
10964         * Control.cs: Not sure how we could miss this so long, but it seems
10965           that MS.Net has Capture set all the way from before calling 
10966           OnMouseDown through sending the mouse events until after
10967           OnMouseUp. This will fix DataGrid's selection being set to end
10968           at the location of the MouseUp.
10969
10970 2006-03-15  Jackson Harper  <jackson@ximian.com>
10971
10972         * BindingContext.cs: Check the binding after its added so that it
10973           can initialize the binding managers and hookup to events.
10974         * Binding.cs: Data members seem to sometimes include rows/cols in
10975           the format Row.Column we now take this into account.
10976           - Hookup to the position changed event so we can update the
10977           control when the position has changed in the data set.
10978         * CurrencyManager.cs: Take into account the row/col naming
10979           convention when creating dataset tables.
10980         * BindingContext.cs: Using a newer better way of storing
10981           datasource/datamember pairs.  Hopefully this better matches MS for
10982           looking up binding managers.
10983
10984
10985 2006-03-15  Jackson Harper  <jackson@ximian.com>
10986
10987         * BindingContext.cs: The currency manager needs the data member
10988         name, if the member is a data set we use the name to find the
10989         correct table.
10990         * CurrencyManager.cs: When creating the list prefer an IList over
10991         an IListSource.
10992         - Attempt to create a DataTable from a DataSet (TODO: might need
10993         some better error checking here, although MS doesn't seem to have much)
10994         - If we have a DataTable create a view and use it as our list.
10995
10996 2006-03-15  Mike Kestner  <mkestner@novell.com>
10997
10998         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10999         keyboard navigation. Support Up/Down/Left/Right selection correctly
11000         for all 4 View modes.
11001         * ListViewItem.cs: add internal row/col fields for icon layouts.
11002
11003 2006-03-15  Jackson Harper  <jackson@ximian.com>
11004
11005         * TabControl.cs: Redraw the tabs when we resize so their newly
11006         calculated sizes are drawn on screen.
11007         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
11008         composite characters.
11009         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
11010         - filter events so that composite characters can be created
11011         patches by peter
11012         * X11Structs.cs: Add XIMProperties enum.
11013
11014 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11015
11016         * Control.cs (BringToFront, SendToBack): Don't use window or handle
11017           unless it's created
11018
11019 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11020
11021         * Control.cs (PerformLayout): We don't need to consider visiblity
11022           for anchoring, only for docking. This fixes 'whacky' alignment
11023           in listbox and other controls that use implicit scrollbars after
11024           the previous PerformLayout patch
11025         * ListBox.cs: Switched to use implicit scrollbars
11026           
11027 2006-03-14  Mike Kestner  <mkestner@novell.com>
11028
11029         * ToolBar.cs: 
11030         * VScrollBar.cs:
11031         - chain up the "new event" overrides to base and use
11032         OnEvent to raise them.  Part of fix for bug #76509.
11033
11034 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
11035
11036         * FileDialog.cs: Do not select an item in the parent directory
11037           on backspace
11038
11039 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
11040
11041         * Control.cs (PerformLayout): It would seem that we considered
11042           invisible windows for our layout. Not quite the right thing
11043           to do. Now we don't any longer, thereby fixing bug #76889.
11044
11045 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
11046
11047         * Control.cs (CanFocus): I goofed. A control can have focus 
11048           even though it's not selectable. Made it match MS docs.
11049
11050 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11051
11052         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
11053           center by default (fixes #76895)
11054         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
11055           all uses of Border3DSides.All with the explicit ORd together
11056           Left|Right|Top|Bottom because I assume that nobody was aware 
11057           that All also implies a center fill. Most places I checked had
11058           a fill right above.
11059         * ProgressBarStyle.cs: Added
11060
11061 2006-03-13  Mike Kestner  <mkestner@novell.com>
11062
11063         * ListView.cs: fix breakage in drag shadow header positioning 
11064         from Peter's csc compilation fix.
11065
11066 2006-03-13  Mike Kestner  <mkestner@novell.com>
11067
11068         * ListView.cs: fix NRE produced by backspacing twice in a focused
11069         FileDialog.
11070
11071 2006-03-13  Mike Kestner  <mkestner@novell.com>
11072
11073         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
11074
11075 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11076
11077         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
11078           be changed
11079         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
11080           the allowed size before making programmatic size changes
11081
11082 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
11083
11084         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
11085           set, metacity is broken and will still use the emty sizes in 
11086           the struct. (Fix for #77089)
11087
11088 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
11089
11090         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
11091           WindowExStyles and marked both enums as Flags
11092         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
11093           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
11094           to match WindowStyles split
11095         * XplatUIX11.cs:
11096           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
11097           - Updated to match WindowStyles split
11098         * XplatUIWin32.cs:
11099           - Fixed FosterParent creation, was using ExStyle on the Style field
11100             (This should help with Popup focus issues)
11101           - Updated to match WindowStyles split
11102
11103 2006-03-13  Jackson Harper  <jackson@ximian.com>
11104
11105         * MdiWindowManager.cs: Use the system menu height. Fixes some
11106         strange sizing issues.
11107
11108 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11109
11110         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
11111         * TextBoxBase.cs:
11112           - Scroll to caret after inserting text (#77672)
11113           - Make scroll range one pixel higher, fixes off-by-one error (and
11114             makes underlines visible on the last line)
11115
11116 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
11117
11118         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
11119           the keyboard state from being stuck with keys in 'pressed' state when
11120           focus is switched away via keyboard
11121         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
11122           reset the keyboard if no X11 KeyUp events are expected to come
11123         * X11Structs.cs: Switched type of Visible to bool to match driver
11124
11125 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
11126
11127         * TextControl.cs:
11128           - Switched caret to be just 1 pixel wide, matches MS and looks less
11129             clunky
11130           - Moved caret display 1 pixel down from the top of the control
11131             to improve view
11132           - InsertCharAtCharet: Update the selection start if moving the caret
11133             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
11134           - No longer always creating the caret when the caret methods are
11135             called. Only the actual ShowCaret/HideCaret will do that now
11136           - Only setting caret visible if the owner control has focus
11137           - UpdateView: Added invalidation-shortcut logic for center and right 
11138             aligned text. Previously we'd update all according to the left
11139             logic which caused drawing errors. Also fixed height of invalidated
11140             areas, now properly invalidating the whole area (was off-by-one)
11141           - owner_HandleCreated: Always generate the document when the
11142             handle is created; this ensures that 
11143         * TextBoxBase.cs:
11144           - Fixed situation where caret would disappear under the right
11145             window border, also improved scrolling behaviour on left-
11146             aligned textboxes
11147           - Fixed right-aligned textboxes to have a border to the
11148             right instead of the caret being under the right border
11149         * XplatUIX11.cs:
11150           - Switched from 'nested' to simple visible/not visible tracking 
11151             for caret (part of fix for #77671)
11152           - No longer passing through translated FocusIn/FocusOut messages
11153             since we were notifying too often and the wrong windows. Instead
11154             we just notify our focussed window of receiving or loosing focus
11155         * XplatUIWin32.cs: Switched from 'nested' show/hide 
11156           counting for caret to simple visible yes/no behaviour (part of 
11157           fix for #77671)
11158
11159 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11160
11161         * Mime.cs: Remove debug code...
11162
11163 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
11164
11165         * MimeGenerated.cs: Removed
11166         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
11167           and subclasses) from /usr/(local/)share/mime and
11168           $HOME/.local/share/mime.
11169
11170 2006-03-10  Jackson Harper  <jackson@ximian.com>
11171
11172         * MdiWindowManager.cs: Recalc the NC area when a window is
11173         maximized/restored so that the menu area is drawn on forms that
11174         don't have a menu.
11175
11176 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11177
11178         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
11179           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
11180           us to force a WM_NCCALCRESIZE message being sent. This is needed
11181           for MDI maximizing.
11182
11183 2006-03-10  Jackson Harper  <jackson@ximian.com>
11184
11185         * Form.cs: We need to use the ActiveMenu when calculating menu
11186         height.
11187         - Fix nullref when the window manager hasn't been created yet.
11188         * Control.cs: Fix nullref when we try to bring a control to the
11189         front that has no parent.
11190         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
11191         height.
11192         - Add a dummy item to the maximized menu so it always has the
11193         correct height. Otherwise when there are no menus we don't get our
11194         icon and buttons.
11195         
11196
11197 2006-03-10  Jackson Harper  <jackson@ximian.com>
11198
11199         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
11200         stuff.
11201         * Form.cs: Make the window_state internal so the window managers
11202         can track it.
11203         - When an MDI child is maximized let its window manager create the
11204         main menu (so it can add its icon).
11205         - Notify the window managers of state changes
11206         - Let the window manager paint its buttons and handle button
11207         clicks on the menu when it is maximized.
11208         * InternalWindowManager.cs: Move the prev_bounds into the mdi
11209         window manager, since tool windows don't use it, only mdi windows.
11210         - Tell the main form that we don't want it to handle NCPAINT
11211         itself to avoid extra painting.
11212         - Handle clicks on a maximized windows menu.
11213         - Handle window state changes
11214         - Handle minimize/maximize clicks correctly by setting the window state.
11215         * MdiWindowManager.cs: Add an icon menu that (the menu you get
11216         when clicking on the forms icon).
11217         - New method to create a forms maximized menu. This is its normal
11218         menu + an icon.
11219         - Handle window state changes.
11220         - Handle sizing of maximized windows.  Maximized windows are just
11221         drawn bigger then the parent visible area. All controls are still
11222         there, they are just outside the visible area (this matches windows).
11223         * MdiClient.cs: No scrollbars when a child window is maximized.
11224         - Let the children windows figure out how big they should be when
11225         sizing maximized windows.
11226         - Implement a version of ArrangeIconicWindows somewhat similar to
11227         Windows version.  There are some little differences, but I don't
11228         think any app will rely on the layout of minimized mdi windows.
11229
11230 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11231
11232         * Padding.cs: Several fixes to allow compiling with csc 2.0
11233
11234 2006-03-09  Jackson Harper  <jackson@ximian.com>
11235
11236         * Menu.cs:
11237         * MenuItem.cs: Cheap hack so we can add items to the list without
11238         the events being raised.  This allows adding mdi items during
11239         drawing. TODO: Should probably find a better time to add the items.
11240
11241 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11242
11243         * ThemeWin32Classic.cs:
11244           - CheckBox_DrawText: Added logic to not wrap if not enough space
11245             is available (Fix for bug #77727)
11246           - RadioButton_DrawText: Added logic not to wrap if not enough
11247             space is available (Fix for bug #77727). Also removed some
11248             duplicate code, DrawString always drawing the regular text
11249             before hitting the if statement.
11250
11251 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
11252
11253         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
11254
11255 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
11256
11257         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
11258         * ContainerControl.cs: Partial implementation of some 2.0 scaling
11259           methods. Moved the new 2.0 properties into alphabetical order with
11260           other properties and added MonoTODO tags
11261
11262 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11263
11264         * AutoScaleMode.cs: Added. Fix build.
11265
11266 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11267
11268         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
11269           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
11270           and was requiring premature handle creation for calls from above
11271         * Form.cs, Control.cs: Removed handle arguments from calls to
11272           CalculateClientRect()
11273
11274 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11275
11276         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
11277           drag_column.column_rect is MarshalByRef and can't be used that way
11278
11279 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11280
11281         * AxHost.cs: Added deserialization constructor for 
11282           AxHost+State (fixes 77743)
11283
11284 2006-03-09  Mike Kestner  <mkestner@novell.com>
11285
11286         * ListView.cs: 
11287         - Added column drag reordering for details view.
11288         - fixed behavior when mouse is dragged off column and
11289         AllowColumnReorder is false.
11290         * ColumnHeader.cs: clone the format too in Clone.
11291         * Theme.cs: add DrawListViewHeaderDragDetails method.
11292         * ThemeWin32Classic.cs:
11293         - impl new method for drawing drag column shadows and targets.
11294         - support column offset for details mode in DrawListViewItem.
11295
11296 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11297
11298         * TextControl.cs: Reset the char_count when the document is cleared
11299           (Fixes bug reported on mono-winforms mailing list)
11300
11301 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
11302
11303         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
11304           of calling base we simply process the key ourselves, since both
11305           DefWindowProc and the handled method would set m.Result. 
11306           (Fixes #77732)
11307
11308 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
11309
11310         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
11311           method also moves the window; instead implemented a copy of
11312           Control.ScaleCore (Part of fix for #77456)
11313         * TextBoxBase.cs: 
11314           - Created new CreateGraphicsInternal method to allow providing
11315             a graphics context when no handle is created without triggering
11316             handle creation. (Part of fix for #77456)
11317           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11318         * TextControl.cs: 
11319           - Switched Constructor to require TextBoxBase instead of Control (to
11320             allow uncast access to CreateGraphicsInternal)
11321           - Safeguarded use of owner.Handle property. No longer accessing it
11322             unless the handle is already created.
11323           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
11324           - Now triggering a recalc when owning control becomes visible
11325         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
11326           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
11327           premature handle creation (Part of fix for #77456)
11328         * Control.cs:
11329           - We now only destroy our double-buffering buffers when the
11330             control is resized or disposed, but not when visibility
11331             changes. (The code even re-created them twice every time)
11332           - Now requiring a redraw of the buffer on visibility changes
11333             (fixes bug 77654 part 2)
11334           - Not passing OnParentVisibleChanged up unless the control
11335             is visible
11336           - CanFocus: Fixed to match MS documentation
11337           - Focus: Fixed to return actual focus state and to check if
11338             setting focus is legal before setting it
11339
11340 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
11341
11342         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
11343           when to draw focus rectangle by looking at parent focus and
11344           selected state instead. This fixes TabPages on Linux sometimes
11345           having none or multiple focus rectangles.
11346         * XplatUIX11.cs (SetFocus): 
11347           - Don't set the focus if the same window already has focus
11348           - Use SendMessage instead of PostMessage (like it's Win32
11349             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
11350             to match MS behaviour
11351         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
11352           are not selectable.
11353
11354 2006-03-07  Jackson Harper  <jackson@ximian.com>
11355
11356         * PictureBox.cs: Revert line I accidently committed last week.
11357
11358 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
11359
11360         * Control.cs: 
11361           - Added new IsRecreating and ParentIsRecreating properties to
11362             allow testing if RecreateHandle has been called on ourselves
11363             or one of our parents
11364           - WndProc(WM_DESTROY): If our control handle is being recreated
11365             we immediately need to create the handle when receiving the
11366             destroy, that way our child windows find a valid parent handle
11367             when they themselves are being recreated upon WM_DESTROY receipt
11368             (fix for bug #77654 part 1)
11369         * XplatUIX11.cs:
11370           - DestroyWindow: WM_DESTROY must be sent to our own window before
11371             notifying any child windows. MS documents that child windows
11372             are still valid when WM_DESTROY is received. (Control now relies on
11373             this behaviour)
11374           - Added some fine-grain debug options
11375
11376 2006-03-06  Jackson Harper  <jackson@ximian.com>
11377
11378         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
11379         box and base calculations off this.
11380         * MdiChildContext.cs:
11381         * MdiWindowManager.cs: Don't need to ensure scrollbars here
11382         anymore.
11383         
11384 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
11385
11386         * Splitter.cs: In situations where the affected control is added
11387           to the parent's control list after the splitter, we would not
11388           populate affected. Now we try populating it on mousedown, if
11389           it's not already set, and force it to be re-set whenever our
11390           parent changes.
11391
11392 2006-03-03  Matt Hargett  <matt@use.net>
11393
11394         * Control.cs: implement Control.Padding
11395         * Padding.cs: -Padding.All returns -1 when constructing with the
11396         implicit default ctor
11397         -Padding.ToString() matches MS.NET
11398         * ContainerControl.cs: implement
11399         ContainerControl.AutoScaleDimensions
11400         * ListControl.cs: implement ListControl.FormattingEnabled
11401         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
11402         * ButtonBase.cs:
11403         * TabPage.cs: Implement UseVisualStyleBackColor.
11404         * PictureBox.cs: Implement PictureBox.InitialImage.
11405
11406 2006-03-03  Mike Kestner  <mkestner@novell.com>
11407
11408         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
11409         event declarations to proxy to base event.
11410         * ListViewItem.cs: update to use ItemControl.
11411         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
11412         * ThemeWin32Classic.cs: update to new ListView theme API and fix
11413         column header label rendering for 0 width columns.
11414
11415 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
11416
11417         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
11418           that causes the control to be created. Fixes #77476.
11419
11420 2006-03-02  Jackson Harper  <jackson@ximian.com>
11421
11422         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
11423         expose_pending.
11424
11425 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
11426
11427         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
11428           passed in for the EventArgs (fixes #77690)
11429
11430 2006-03-01  Jackson Harper  <jackson@ximian.com>
11431
11432         * ScrollBar.cs: Refresh afterbeing resized.
11433
11434 2006-02-28  Mike Kestner  <mkestner@novell.com>
11435
11436         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
11437         Clean up a tracker compile warning.
11438         * MenuItem.cs: add internal PerformPopup method.
11439         [Fixes #77457]
11440
11441 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11442
11443         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
11444           implicit expose) when the text is set to null
11445
11446 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
11447
11448         * RichTextBox.cs (FlushText): When newline is true, we always
11449           need to split the line, even if no text is on it and we may
11450           never eat newlines. (Fixes #77669)
11451
11452 2006-02-28  Mike Kestner  <mkestner@novell.com>
11453
11454         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
11455         and set Selected instead.
11456         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
11457         collections.
11458
11459 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
11460
11461         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
11462
11463 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
11464
11465         * FontDialog.cs:
11466           - Got rid of the panel. All controls are now directly added to
11467             the dialog form
11468           - It is now possible to set a font with the Font property
11469           - MinSize and MaxSize property do now what they should
11470           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
11471           - Searching and selecting a font with the font textbox works now,
11472             the same applies to the style and size textbox
11473           - Draw the correct 3D border in the example panel
11474           - Fixed a little mem leak (unused fonts didn't get disposed)
11475           - Many other internal updates/rewrites...
11476           - Fix typo
11477
11478 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11479
11480         * TextControl.cs: 
11481           - InsertRTFFromStream: Added 'number of characters inserted' argument
11482           - set_SelectedRTF: Now using the number of characters to calculate
11483             the new location for the selection and cursor (x/y cannot be used
11484             due to potentially already wrapped text)
11485
11486 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
11487
11488         * TextControl.cs: Added property and implemented means to allow 
11489           disabling recalculation of a document (can be used to speed up
11490           multiple inserts and is needed to make RTF inserts predictable, see
11491           bug #77659)
11492         * RichTextBox.cs: Using the new NoRecalc property of Document to
11493           keep x/y insert locations predictable. Also makes it faster inserting
11494           large chunks of RTF
11495
11496 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11497
11498         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
11499           it's easier for a child control to handle the other messages without
11500           having to duplicate the special functionality
11501         * TextBoxBase.cs
11502           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
11503             code to handle processing the key ourselves, in order to get 
11504             access to the result of KeyEventArgs.Handled. We now only call 
11505             ProcessKey if they key hasn't been handled already. Fixes #77526.
11506           - set_Text: If null or empty string is given, just clear the 
11507             document. Fixes part of #77526
11508
11509 2006-02-27  Jackson Harper  <jackson@ximian.com>
11510
11511         * SizeGrip.cs: Paint the background color before painting the grip
11512         so things look right.
11513         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
11514
11515 2006-02-27  Mike Kestner  <mkestner@novell.com>
11516
11517         * ListView.cs:
11518           - Restructure layout and invalidation model to remove a ton of
11519           flicker from the control and speed up performance in general.
11520           - Add manual column resize, flickers like crazy, but I already have
11521           some ideas on how I'll fix that. (#76822)
11522           - Merge the three Icon-based views into a single layout method.
11523           - Move item selection interaction logic from the item since 
11524           interaction with the collections is more appropriate to the view.
11525           - Deselection on non-item clicks.
11526         * ListViewItem.cs:
11527           - Encapsulate most of the layout. Add some internal props to trigger
11528           layout.  Move to a model where Items invalidate themselves instead
11529           of just invalidating the whole control every time something changes.
11530           - Invalidate on Text/Caption changes.
11531           - switch to an offset based layout model to avoid having to absolute
11532           position every element on item moves.
11533           - correct checkbox layout to conform to MS layout.
11534         * ThemeWin32Classic.cs:
11535           - refactor some column header drawing code.
11536           - fix string justification for column headers (#76821)
11537           - make SmallIcon labels top justified for compat with MS impl.
11538         * ThemeClearlooks.cs:
11539           - adjust to new ListViewItem internal checkbox bounds api.
11540
11541 2006-02-27  Jackson Harper  <jackson@ximian.com>
11542
11543         * Control.cs:  Change where implicit controls fall in the zorder.
11544         They are now on top of all children.
11545         - Synced AddImplicit code with Add
11546         - Removed unused enumerator.
11547         * SizeGrip.cs: Remove the TODO as its been TODONE.
11548
11549 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
11550
11551         * TextControl.cs(Insert): Combine the last lines unless the insertion
11552           string ends with \n\n, otherwise we leave one line too many (Fixes
11553           something I noticed with the testapp for #77526; the bug itself was
11554           already fixed in the previous checkin)
11555
11556 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
11557
11558         * RichTextBox.cs:
11559           - SelectionColor and SelectionFont methods no longer set absolute
11560             styles. Instead, the keep font or color respectively (This 
11561             resolves a long-standing FIXME in the code)
11562           - When flushing RTF text, the insert code now considers text trailing
11563             behind the insertion point (Fixes the bug where when replacing
11564             the selected text via SelectedRTF the remainder of the line behind 
11565             the selection would stay on the first insertion line)
11566         * TextBoxBase.cs:
11567           - AppendText now updates the selection points after inserting text
11568           - AppendText now ensures that the last tag (sometimes 0-length) of
11569             the document is used for the style information (Fixes part of 
11570             bug #77220)
11571         * TextControl.cs:
11572           - Created new FontDefiniton class to allow describing partial style
11573             changes
11574           - StreamLine() now takes a lines argument, to allow it to decide
11575             whether an encountered zero-length tag is the last in the document
11576             (which must be kept to not loose the font/color contained in it,
11577             for later appends)
11578           - Created Combine() and Split() methods for Marker structs, to 
11579             support marker updates due to reformatted documents (soft line
11580             wraps)
11581           - Implemented Document.CaretTag setter
11582           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
11583             of the last line (Not the cause, but also exposed by bug #77220)
11584           - Added LineTag argument to InsertString method, to allow callers
11585             to force a certain tag to be used (required to force use of the
11586             trailing zero-length tag of a document)
11587           - Now updating markers in Combine(), to avoid stale tag markers
11588           - Added some method descriptions to aid maintenance
11589           - Implemented new FormatText concept, allowing additive/subtractive
11590             formatting by only specifying the components that are to be 
11591             changed. This was needed for resolving the RTB.SelectedColor/
11592             RTB.SelectedFont fixmes
11593           - Added Break() support method to allow breaking up linetags (used
11594             for partial formatting)
11595           - Added GenerateTextFormat() method. It is used for partial 
11596             formatting and allows to generate a full font/color from given
11597             attributes and an existing tag.
11598
11599 2006-02-26  Jackson Harper  <jackson@ximian.com>
11600
11601         * XplatUIX11.cs:  Use the correct caption height.
11602         - Translate hittest coordinates to screen coords to match MS.
11603         * XplatUIWin32.cs: When we create MDI windows we need to reset
11604         some of the style flags, so we get a nice blank window, and can
11605         draw all the decorations ourselves.
11606         - Set a clipping rectangle on the non client paint event, the
11607         window manager drawing code needs one.
11608         * Form.cs: The window manager needs to know when the window state
11609         has been updated.
11610         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
11611         don't need to factor in border and title sizes in these
11612         methods. TODO: Remove the args and fix the call points.
11613         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
11614         properly.
11615         - Let the driver set the cursors.
11616         - Improve active window handling
11617         - Correct sizes for title bars and buttons.
11618         - Match MS drawing better
11619         * MdiWindowManager.cs: We don't need to handle border style
11620         updates specially anymore.
11621         - Check for scrollbars when windows are done moving
11622         - Handle Active properly.
11623         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
11624         correctly. I am spewing the exception though, so we don't hide the
11625         bugs.
11626         
11627 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
11628
11629         * DataGridViewRowPostPaintEventArgs.cs,
11630           DataGridViewCellPaintingEventArgs.cs,
11631           DataGridViewRowCollection.cs,
11632           DataGridViewRowPrePaintEventArgs.cs,
11633           DataGridViewCell.cs: Clear a few warnings and implement a few
11634           exceptions that should be thrown.
11635
11636 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11637
11638         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
11639           'inheriting' our parent's (non-default) cursor. (Part of
11640            the fix for #77479)
11641
11642 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
11643
11644         * XplatUIX11.cs: Fixed cast to make csc happy
11645
11646 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11647
11648         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
11649           it's for the client area (part of fix for #77479 and needed
11650           for MDI window cursor handling)
11651         * XplatUIX11.cs
11652           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
11653             the appropriate default cursors and also passing the message
11654             up the parent chain 
11655           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
11656             for non-client areas
11657
11658 2006-02-15  Jackson Harper  <jackson@ximian.com>
11659
11660         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
11661         is a real MDI window
11662
11663 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
11664
11665         * X11DesktopColors.cs: Instead of checking the desktop session
11666           string for "KDE" check if it starts with "KDE"
11667
11668 2006-02-10  Jackson Harper  <jackson@ximian.com>
11669
11670         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
11671         systems).
11672
11673 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11674
11675         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11676           errors
11677         * ColorDialog.cs:
11678           - Got rid of the panel. All controls are now directly added to
11679             the dialog form
11680           - Changed to mono coding style
11681
11682 2006-02-10  Jackson Harper  <jackson@ximian.com>
11683
11684         * InternalWindowManager.cs: We don't need the set visibility to
11685         false hack anymore now that peter has written beautiful shutdown
11686         code.
11687
11688 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11689
11690         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11691           where already explicitly destroyed
11692
11693 2006-02-10  Jackson Harper  <jackson@ximian.com>
11694
11695         * MdiClient.cs: Handle the case where windows are too high or to
11696         the left and we need scrollbars.
11697
11698 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11699
11700         * MimeIcon.cs: Added some icons
11701         * FileDialog.cs:
11702           - Fixed bug #77477
11703           - Got rid of the panel. All controls are now directly added to
11704             the dialog form
11705           - Changed to mono coding style
11706           - On Linux "My Computer" and "My Network" will now show some
11707             more usefull information. A new class, MasterMount, gathers
11708             this information from /proc/mount. Updated MWFFileView to make
11709             use of this information
11710           - Fixed a bug that caused FileDialog to crash when
11711             ".recently_used" file had a zero size
11712           - FilterIndex does now what it should
11713           - Some Refactoring
11714         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11715             FileDialog changes
11716
11717 2006-02-09  Jackson Harper  <jackson@ximian.com>
11718
11719         * ComboBox.cs: Don't touch if null.
11720
11721 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11722
11723         * Cursor.cs: 64bit safeness fix
11724         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11725
11726 2006-02-09  Jackson Harper  <jackson@ximian.com>
11727
11728         * Form.cs: If a form is made into an MDI form update the styles so
11729         all the props can get set correctly.
11730         - Kill the mdi_container when we dont need it anymore.
11731         * InternalWindowManager.cs: Add missing NOT
11732
11733 2006-02-08  Jackson Harper  <jackson@ximian.com>
11734
11735         * InternalWindowManager.cs: Respek clipping when drawing MDi
11736         decorations.
11737
11738 2006-02-08  Jackson Harper  <jackson@ximian.com>
11739
11740         * Hwnd.cs: Add bits to track non client expose events.
11741         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11742         gives us a proper invalid rect and will allow for some nice
11743         optimizations with NC client drawing
11744         - MDI windows are children windows, so move their style handling
11745         into the child window block.
11746         * InternalWindowManager.cs: Remove a state reset that was
11747         getting invoked at the wrong time. Fixes managed windows getting
11748         into a 'stuck' captured state.
11749
11750 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11751
11752         * TextControl.cs (Document.ctor): Now initializing 
11753           selection_anchor. Fixes #77493
11754
11755 2006-02-07  Jackson Harper  <jackson@ximian.com>
11756
11757         * TrackBar.cs: The increment/decrements were backwards.
11758
11759 2006-02-07  Mike Kestner  <mkestner@novell.com>
11760
11761         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11762         to the instance itself.
11763
11764 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11765
11766         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11767           on ulongs and pointers, the size differs between 32bit and 64bit
11768           systems. 
11769
11770 2006-02-07  Mike Kestner  <mkestner@novell.com>
11771
11772         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11773         for 64 bit platforms to work around a metacity bug. 
11774
11775 2006-02-07  Jackson Harper  <jackson@ximian.com>
11776
11777         * TrackBar.cs: Process the input keys we need, and hookup to
11778         KeyDown instead of using WndProc, so we get key messages.
11779
11780 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11781
11782         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11783           machine we're on. 
11784         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11785           we need to translate the XdndVersion atoms array before sending it
11786
11787 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11788
11789         * XplatUIX11.cs: 
11790           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11791             number of bits for the property, not the number of bytes. The
11792             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11793             but would not crash since it specified 8 bits instead of 4 bits)
11794           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11795             defined as XID -> long in the C headers)
11796           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11797             references since those are now IntPtr to begin with
11798           - Switched all Atom.XXX 'int' casts to IntPtr casts
11799           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11800           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11801           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11802         * X11Structs.cs:
11803           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11804           - Changed atom in HoverStruct to be IntPtr
11805         * X11DnD.cs:
11806           - Removed local DllImports, switched code to use those from XplatUIX11
11807           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11808
11809 2006-02-06  Mike Kestner  <mkestner@novell.com>
11810
11811         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11812         method signatures in the import region.  There may still be some
11813         lingering struct marshaling issues, as I didn't drill down into those.
11814         Yet.
11815
11816 2006-02-06  Jackson Harper  <jackson@ximian.com>
11817
11818         * ComboBox.cs: Dont manually set the top_item, this is computed
11819         when the scrollbar position is set.
11820
11821 2006-02-06  Mike Kestner  <mkestner@novell.com>
11822
11823         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11824         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11825         usage of Atom needs to be mapped to IntPtr for example.  And there are
11826         likely other int/long issues to be addressed.
11827
11828 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11829
11830         * FileDialog.cs: One more...
11831
11832 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11833
11834         * FileDialog.cs: Next try
11835
11836 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11837
11838         * FileDialog.cs: First part of fix for #77464
11839
11840 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11841
11842         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11843           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11844           AcceptButton border drawing.
11845
11846 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11847
11848         * Form.cs: Moved positioning of form after auto scaling is applied,
11849           otherwise it would possibly use wrong form size.
11850
11851 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11852
11853         * Control.cs (RecreateHandle): No need to re-create any child
11854           controls, the child windows will get destroyed automatically by
11855           the windowing system or driver, and re-created when the handle
11856           is being accessed the first time. Fixes #77456
11857         * Form.cs: No longer setting the form to closing if the handle is 
11858           being recreated. This seems like the right thing to do, don't
11859           have a bug or testcase for this, though.
11860
11861 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11862
11863         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11864           controls to avoid unwanted side effects
11865
11866 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11867
11868         * Control.cs: 
11869           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11870             control. Fixes #77416.
11871           - DefaultSize is 0,0 for control
11872         * TextBoxBase.cs: 
11873           - DefaultSize is 100, 20
11874           - SetBoundsCore: Now enforcing the height, no matter if the provided
11875             height is more or less than the preferred one, as long as AutoSize
11876             is on
11877         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11878
11879 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11880
11881         * Control.cs:
11882           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11883             call unless both performLayout is true *and* we have a pending
11884             layout change
11885           - ResumeLayout: MS does not completely nest Suspend and Resume,
11886             they bottom out at 0, fixed our code to match that.
11887           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11888             SetBoundsCore, we were updating even when we shouldn't. This fixes
11889             swf-anchors mis-anchoring when resizing the app fast and lots.
11890           - UpdateDistances: Now only setting the left and top distance if 
11891             we have a parent and are not suspended, this is based on
11892             a suggestion by Don Edvaldson in bug #77355.
11893           - OnVisibleChanged: Fixed logic when to create the control. We may
11894             not create the control if we have no parent or if it's not visible;
11895             switched to using Visible property instead of is_visible field 
11896             since the property also considers parent states. This fixes a bug
11897             when starting Paint.Net
11898
11899 2006-02-02  Jackson Harper  <jackson@ximian.com>
11900
11901         * Form.cs: If the forms handle hasn't been created yet don't call
11902         into xplatui to make it top most, just set the topmost flag on the
11903         form in CreateParams
11904         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11905
11906 2006-02-01  Jackson Harper  <jackson@ximian.com>
11907
11908         * ScrollableControl.cs: Refactored the Recalculate method a
11909         little, this wasn't handling all the variants of bottom and right
11910         bars needed to be added and added/removed based on their
11911         counterparts being added/removed (which changes the drawable
11912         size). Also we special case client widths and heights of 0 and
11913         don't add the scrollbar for those.
11914
11915 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11916
11917         * XplatUIX11.cs: 
11918           - Added method to get AbsoluteGeometry(); currently unused, but might
11919             be used in the future, if we try again to figure out toplevel
11920             coordinates with some more crappy window managers
11921           - Added FrameExtents() method to retrieve the WM set decoration size
11922           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11923             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11924         * Hwnd.cs: 
11925           - Added whacky_wm tracking var for metacity
11926           - Added logic to have default menu height if the actual menu height
11927             has not yet been calculated (part of fix for #77426)
11928         * Form.cs: Keep track whether client size has been set and re-set 
11929           it if a menu is added/removed afterwards (Fixes #77426)
11930
11931 2006-01-31  Jackson Harper  <jackson@ximian.com>
11932
11933         * Control.cs: When a new Site is set on the component attempt to
11934         pull the AmbientProperties from it.
11935
11936 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11937
11938         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11939           in the background of the owning form. Fixes #77332
11940
11941 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11942
11943         * MimeIcon.cs: Fix for #77409
11944
11945 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11946
11947         * XplatUIX11GTK.cs: Initial import
11948
11949 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11950
11951         * FixedSizeTextBox: fixes class signature
11952
11953 2006-01-30  Jackson Harper  <jackson@ximian.com>
11954
11955         * FixedSizeTextBox.cs: New internal class that represents a
11956         textBox that will not be scaled.
11957         * TreeView.cs:
11958         * ComboBox.cs:
11959         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11960         standard TextBox.
11961                 
11962 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11963
11964         * XplatUIX11.cs: Retrieve default screen number instead of
11965           assuming 0. Attempted fix for #77318
11966
11967 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11968
11969         * XplatUIWin32.cs: 
11970           - GetWindowPos: When a window is parented by FosterParent, use 
11971             the desktop instead of FosterParent as the base to get coordinates
11972           - CreateWindow: Don't make FosterParent the parent window for Popups
11973             if we don't want a taskbar entry, Popups automatically don't get one
11974         * Hwnd.cs: Need to call remove to actually remove the key from the
11975           hash table
11976
11977 2006-01-30  Mike Kestner  <mkestner@novell.com>
11978
11979         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11980
11981 2006-01-30  Jackson Harper  <jackson@ximian.com>
11982
11983         * TreeView.cs:
11984         * TreeNode.cs: Raise events no matter how the treenode is
11985         checked. Patch by Don Edvalson.
11986
11987 2006-01-30  Jackson Harper  <jackson@ximian.com>
11988
11989         * TreeNode.cs: Signature fix.
11990
11991 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11992
11993         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11994
11995 2006-01-20  Mike Kestner  <mkestner@novell.com>
11996
11997         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11998         event forwarding when menus are active.
11999         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
12000         Most of the patch is pdb's with a little rework.
12001
12002 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12003
12004         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
12005           Removed GetMenuDC and ReleaseMenuDC methods; replaced
12006           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
12007         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
12008         * InternalWindowManager.cs: Added use of PaintEventStart/End to
12009           handling of WM_NCPAINT message, now passing the PaintEventArgs to
12010           the PaintWindowDecorations method
12011         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
12012         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
12013         * MenuAPI.cs: Made tracker window invisible
12014         * XplatUIWin32.cs:
12015           - Removed GetMenuDC and ReleaseMenuDC methods
12016           - Implemented the client=false path for PaintEventStart and
12017             PaintEventEnd
12018
12019 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12020
12021         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
12022         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
12023           styles
12024         * Form.cs: 
12025           - MaximizeBox, MinimizeBox: Recreate the handle when setting
12026             the style
12027           - CreateParams: Reworked the styles to match MS look'n'feel,
12028             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
12029             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
12030
12031 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
12032
12033         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
12034           window is not mapped, since otherwise every form that's being 
12035           created is considered minimized, which is wrong.
12036         * Form.cs: Catching the exception and returning our internal value
12037           instead
12038
12039 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
12040
12041         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
12042           SetWindowMinMax() to have means to tell the driver about the minimum,
12043           maximum and maximized state window sizes. (Part of the fix for #76485)
12044         * Form.cs:
12045           - Implemented tracking of minimum and maximum window size, now calling
12046             new SetWindowMinMax() driver method to tell the driver (Part of the
12047             fix for #76485)
12048           - Finished handling of WM_GETMINMAXINFO method, now setting all values
12049             (Completes fix for #76485)
12050           - Calling new SetWindowMinMax driver method when the handle for a 
12051             form is created, to make sure the driver knows about it even if
12052             the values have been set before the window was created
12053           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
12054             to avoid messing up our anchoring calculations (partial fix
12055             for #77355)
12056         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
12057         * XplatUIX11.cs:
12058           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
12059           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
12060             (and presumably other freedesktop.org compliant WMs). Left the
12061             assumption unmapped=minimized, needed for SetVisible to work.
12062           - Now setting the window state when creating windows
12063           - Fixed SetVisible to consider/set the window state when mapping
12064             a Form. We cannot set the state before it's mapped, and we cannot
12065             use Form.WindowState once it's mapped (since it would ask the
12066             driver and get 'normal'. Therefore, we grab the state before
12067             mapping, map, and then set state.
12068           - Implmemented SetWindowMinMax method; Metacity does not seem to
12069             honor the ZoomHints, though.
12070         * XplatUIWin32.cs:
12071           - Removed MINMAXINFO (moved to XplatUIStructs)
12072           - Added SetWindowMinMax stub (on Win32 the only way to set that
12073             information is in response to the WM_GETMINMAXINFO message, which
12074             is handled in Form.cs)
12075           - Added logic to SetVisible to set the proper window state when a 
12076             form is made visible (fixes #75720)
12077
12078 2006-01-26  Jackson Harper  <jackson@ximian.com>
12079
12080         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
12081         same way we handle them with Invoke.
12082
12083 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
12084
12085         * Form.cs:
12086           - Added tracking of window state so CreateParams can return
12087             the appropriate style
12088           - Moved setting of WS_CAPTION style in CreateParams to allow
12089             styles without caption
12090         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
12091           control if the TextBox property is accessed. Fixes #77345
12092         * Control.cs:
12093           - get_Created: now uses is_disposed and is_created to determine
12094             return value (suggested by Jackson)
12095           - CreateHandle: No longer exits if the handle is being recreated
12096           - RecreateHandle: If the handle is not yet created call the 
12097             appropriate method to create either control or handle. If the
12098             control is already created CreateHandle will simply exit instead
12099             of just creating the handle
12100         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
12101           now SendMessage WM_DESTROY directly to the control when DestroyWindow
12102           is called.
12103         * XplatUIX11.cs: 
12104           - When DestroyWindow is called, instead of waiting for the 
12105             DestroyNotification from X11, we directly post it to the WndProc
12106             and immediately dispose the hwnd object.
12107             Same applies to DestroyChildWindows, and this obsoletes the
12108             expose_pending tracking. Contrary to Win32 behaviour we destroy our
12109             child windows before our own, to avoid X11 errors.
12110           - Removed the direct sending of WM_PAINT on UpdateWindow
12111         * XplatUIWin32.cs:
12112           - Reworked DoEvents and GetMessage to allow access to internal queue
12113             even when trying non-blocking access to the queue.  Fixes #77335. 
12114             Based on a patch suggestion by Don Edvalson. The new private
12115             GetMessage can now also be used as a backend for a PeekMessage
12116             frontend version.
12117         * XplatUI.cs: Improved debug output for CreateWindow
12118
12119 2006-01-25  Jackson Harper  <jackson@ximian.com>
12120
12121         * Help.cs: Allow param to be null. Patch by Don Edvalson.
12122
12123 2006-01-24  Jackson Harper  <jackson@ximian.com>
12124
12125         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
12126         when we have a MaxDropItems lower then the selected index.
12127
12128 2006-01-24  Jackson Harper  <jackson@ximian.com>
12129
12130         * Control.cs: Don't allow selection of non visible controls, allow
12131         selection of controls without parents.
12132
12133 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12134
12135         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
12136         * DataGridDrawingLogic.cs: Add editing row only when is necessary
12137
12138 2006-01-23  Jackson Harper  <jackson@ximian.com>
12139
12140         * UpDownBase.cs: Make the textbox handle all the selection and
12141         tabbing. This fixes tabing to updown controls.
12142
12143 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
12144
12145         * TextBoxBase.cs: fixes exception thown the object was null
12146
12147 2006-01-23  Jackson Harper  <jackson@ximian.com>
12148
12149         * ButtonBase.cs: Just use the base CreateParams. They set
12150         visibility and enabled correctly.
12151         * ComboBox.cs:
12152         * TrackBar.cs:
12153         * MonthCalendar.cs: Lets let the base set as much of the
12154         createparams as possible so we don't have duplicate code all over
12155         the place.
12156
12157 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
12158
12159         * ThemeGtk.cs: Added TrackBar and some experimental code to
12160           get double buffering back
12161
12162 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
12163
12164         * DataGrid.cs: Allows row number set internally higher than the last
12165         when creating a new row. Restores the editing functionality.
12166
12167 2006-01-20  Mike Kestner  <mkestner@novell.com>
12168
12169         * MimeIcon.cs: delay Image creation until the icons are accessed
12170         instead of creating 190 scaled images on GnomeHandler startup.
12171
12172 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
12173
12174         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
12175           first call base before processing the event. Fixes #77279
12176
12177 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
12178
12179         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
12180           that the stride for the GDI bitmap would match the stride of
12181           a DIB or a Cursor.
12182
12183 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
12184
12185         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
12186
12187 2006-01-19  Jackson Harper  <jackson@ximian.com>
12188
12189         * ComboBox.cs: Hookup the text controls keydown event so we get
12190         those when the text control has the focus.
12191
12192 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12193
12194         * Label.cs: Now using the base events instead of defining new ones;
12195           this allows us to just call the base properties without having to
12196           duplicate all base property logic 
12197
12198 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12199
12200         * Label.cs: A label by default is not a tabstop (Fixes one of our
12201           failing nunit tests)
12202
12203 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
12204
12205         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
12206         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
12207
12208 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
12209
12210         * Cursor.cs: Reimplemented creating cursor bitmaps without using
12211           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
12212           This fixes #77218
12213         * XplatUIWin32.cs: 
12214           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
12215             constructor creates images that can't be saved. Part of the fix
12216             for #76103
12217           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
12218           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
12219             bug fix for handling window state in forms properly)
12220
12221 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12222
12223         * ThemeGtk.cs: Simplify ScrollBar drawing
12224
12225 2006-01-18  Jackson Harper  <jackson@ximian.com>
12226
12227         * Splitter.cs: Set the default dock style for the splitter control
12228         in the constructor.
12229
12230 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12231
12232         * ThemeGtk.cs: Corrected StateType and ShadowType for
12233           gtk_paint_box
12234
12235 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12236
12237         * Control.cs: Make use of Theme.DoubleBufferingSupported
12238         * ThemeGtk.cs:
12239           - Added drawing for flat style buttons
12240           - Added ScrollBar drawing
12241
12242 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
12243
12244         * ThemeClearlooks.cs: Removed some unneeded code.
12245         * ThemeGtk.cs: First part of ThemeGtk enhancements.
12246
12247 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12248
12249         * LinkLabel.cs: We need to update the hover drawing when
12250           leaving the control as well.
12251
12252 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
12253
12254         * DataGrid.cs: Clicking on non empty areas in the columns
12255            area was giving an exception
12256
12257 2006-01-17  Jackson Harper  <jackson@ximian.com>
12258
12259         * ThemeWin32Classic.cs:
12260         * ListView.cs: Do not draw/clip the headers when the header style
12261         is None.
12262
12263 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12264
12265         * DataGrid.cs: Fixes 77260
12266         
12267 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
12268
12269         * DataGrid.cs: Clicking on a column on a empty grid was giving
12270           an exception
12271
12272 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
12273
12274         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
12275           or any keypress will crash the grid.
12276
12277 2006-01-17  Mike Kestner  <mkestner@novell.com>
12278
12279         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
12280         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
12281         invisible/previously-visible items.
12282         [Fixes #76909]
12283
12284 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
12285
12286         * ThemeClearlooks.cs:
12287         - Added CL_Draw_Button method; now other theme controls that are 
12288           not derived from button or do not have a button can draw buttons
12289           too
12290         - Updated ComboBox drawing
12291         - Beautified RadioButton drawing
12292         - Corrected drawing of bottom and left tabs
12293         - Beautified DateTimePicker and MonthCalendar
12294         - Added CPDrawButton and CPDrawRadioButton
12295
12296 2006-01-16  Jackson Harper  <jackson@ximian.com>
12297
12298         * ComboBox.cs: Set the initial value of the scrollbar to the
12299         current index. Reduce the numbers of refreshs and IndexOfs called.
12300
12301 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
12302
12303         * FileDialog.cs: When the file listview is focused hitting the
12304           backspace key moves the fileview to the parent directory
12305
12306 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12307
12308         * Form.cs: 
12309           - Added RecreateHandle call when changing taskbar visibility to 
12310             trigger reparenting in Win32 driver (Fixes #75719)
12311           - If a window has minimize or maximize buttons, it cannot have
12312             a help button
12313         * XplatUIWin32.cs:
12314           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
12315             the toplevel form with FosterParent (A toolwindow not on the
12316             taskbar) (Fixes #75719)
12317           - Made FosterParent a toolwindow
12318
12319 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12320
12321         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
12322
12323 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12324
12325         * ToolTip.cs: If SetToolTip is called from a control and the mouse
12326           is currently over that control, make sure that tooltip_window.Text
12327           gets updated
12328
12329 2006-01-13  Mike Kestner  <mkestner@novell.com>
12330
12331         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
12332
12333 2006-01-13  Jackson Harper  <jackson@ximian.com>
12334
12335         * TreeView.cs: On MS GetNodeAt never actually factors in the X
12336         value passed.  Also redraw the selected node when we recieve
12337         focus, so tabbing between trees works correctly.
12338
12339 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
12340
12341         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
12342           ~/.gconf/%gconf-tree.xml, so use
12343           .gconf/desktop/gnome/interface/%gconf.xml
12344
12345 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12346
12347         * TextControl.cs: Draw text in gray if control is disabled
12348
12349 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
12350
12351         * TreeView.cs: Draw the focus rectangle outside the highlight, to
12352           make sure it's always visible. Fixes #76680.
12353
12354 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
12355
12356         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
12357
12358 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
12359
12360         * PageSetupDialog.cs: Added.
12361         * PrintDialog.cs: Attributes.
12362         * PrintPreviewControl.cs: Updates.
12363         * PrintPreviewDialog.cs: Updates.
12364         
12365 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12366
12367         * Control.cs: Undid my selection check fix, since it's not needed
12368         * TextBoxBase.cs:
12369           - Now considering the presence of hscroll/vscroll when sizing
12370             vscroll/hscroll respectively. Fixed bug #77077
12371           - Added Left/Up/Down/Right to IsInputKey list to prevent
12372             ContainerControl from stealing them. This fixes what I broke
12373             with my last checkin.
12374
12375 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
12376
12377         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
12378           I finally understand how the property can be set without a setter :-)
12379
12380 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12381
12382         * Application.cs:
12383           - Switched RunLoop to use static Message.Create to create a 
12384             Message object
12385           - Added PreProcessMessage call in runloop for keyboard events; this
12386             is part of the fix for #77219, I overlooked this originally in the
12387             MSDN doc for PreProcessMessage
12388         * Control.cs:
12389           - Removed call to PreProcessMessage from handling of keyboard 
12390             messages; it's supposed to be done in the message pump
12391           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
12392             per MSDN documentation.
12393           - IsInputChar: All chars are input chars by default; removed the 
12394             parent calling chain, MS does not document that
12395           - PreProcessMessage: If IsInputChar is true, we want to return false
12396             to allow dispatching of the message
12397           - When selecting the next control, now also check that we're not
12398             selecting ourselves again and therefore return a false positive.
12399         * TextBoxBase.cs:
12400           - Tried to match return values for IsInputKey and ProcessDialogKey
12401             to what MS returns; moved processing of our special keys outside
12402             ProcessDialogKey since MS does not seem to return true on those.
12403           - Moved code that previously was in ProcessDialogKey into new private
12404             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
12405           - Reworked handling of WM_CHAR to not have to duplicate code from
12406             Control.cs anymore, instead we simply call down to base.
12407            
12408 2006-01-12  Jackson Harper  <jackson@ximian.com>
12409
12410         * ComboBox.cs: We always need to refresh the text area when
12411         EndUpdate is called. Fixes the combobox in the file dialog.
12412         * Control.cs: Don't create the creator_thread until the controls
12413         handle is created.  Also in InvokeRequired we check if the
12414         creator_thread is null. This gives the effect of InvokeRequired
12415         returning true if the controls handle is not created yet, and
12416         matches MS.
12417
12418 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12419
12420         * XplatUI.cs:
12421           - Added StartLoop() driver method. This is used to allow drivers to
12422             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
12423             loop for a particular thread
12424           - Added EndLoop() driver method. This is called once the message
12425             pump for the thread is shut down
12426           - Added SupportsTransparency method to allow the driver to indicate
12427             opacity support for windows
12428         * Form.cs:
12429           - Removed TODO attribute, completed AllowTransparency property
12430           - Added documented logic to Opacity
12431         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
12432           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
12433           versions of CompatibleTextRendering
12434         * X11Structs.cs: Added opacity atom to our atom enumeration
12435         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
12436           of a form might be set before it's reparented by the WM, and we need
12437           the opacity value without calling up to Form)
12438         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
12439           SupportsTransparency() driver methods
12440         * Application.cs: Now calling StartLoop and EndLoop driver methods
12441         * XplatUIX11.cs:
12442           - Added opacity atom registration
12443           - Added StartLoop()/EndLoop() methods. They're empty right now but
12444             will need to get implemented when we switch to a per-thread queue
12445           - Implemented SupportsTransparency() method
12446           - Implemented SetWindowTransparency() method
12447           - Added support for setting the opacity value when a window is
12448             reparented (since the opacity needs to be set on the WM frame)
12449         * XplatUIOSX.cs, XplatUIWin32.cs:
12450           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
12451
12452 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12453
12454         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
12455
12456 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
12457
12458         * FileDialog.cs: Added ToolTip for MWFFileView
12459         * MimeIcon.cs: Rewrote GnomeHandler.
12460           - Get currently used gnome icon theme from
12461             ($HOME)/.gconf/%gconf-tree.xml
12462           - Make use of inherited icon themes
12463           - Support SVG icon themes like Tango via librsvg
12464
12465 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12466
12467         Revert's Jackson's revert which broke 2.0 builds.   Fix both
12468         builds. 
12469         
12470         * Application.cs: Move the use_compatible_text_rendering outside
12471         the NET_2_0 define.  If we ever need to use the
12472         use_compatible_text_rendering on the individual controls they will
12473         access the variable from the common shared code paths.
12474
12475 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12476
12477         * XplatUI.cs:
12478           - Added more granular debug options
12479           - Added method to print both window text and id
12480           - Switched debug output to use new Window() debug method
12481           - Added IsEnabled() driver method
12482           - Added EnableWindow() driver method
12483         * Form.cs:
12484           - Removed end_modal; no longer needed, new loop handles termination
12485             via 'closing' variable
12486           - If form is modal, setting DialogResult will now initiate loop
12487             termination via 'closing' variable
12488           - Added support for is_enabled/WS_DISABLED to CreateParams
12489           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
12490             does all the work
12491           - Removed code that's now in RunLoop from ShowDialog()
12492           - Added various documented sanity checks to ShowDialog()
12493           - Added handling of WM_DESTROY message; we set 'closing' on getting
12494             the message to indicate the message pump to terminate
12495           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
12496             send by the Application.ExitThread method. (We send the message
12497             to destroy the window after all other events have been
12498             processed through the queue, instead of destroying the handle 
12499             directly)
12500           - Moved code from Close() method to WM_CLOSE handler; added logic
12501             to only send close-related events if the form is not displayed
12502             modal
12503         * Splitter.cs (..ctor): Fixed typo in resource name
12504         * Control.cs:
12505           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
12506             brush now
12507           - set_Cursor: Now only setting calling into XplatUI if the handle for
12508             the control is already created; this avoids implict handle creation
12509             or crashes if it's not created
12510           - set_Enabled: Now setting the enabled state via the new driver method
12511             instead of just tracking it
12512           - CreateParams: Added logic to set WS_DISABLED based on enabled state
12513           - CreateControl: Reordered event firing and method calls to more
12514             closely fire events in the order MS does. Now setting the
12515             enabled state in the driver when creating the control.
12516           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
12517             match MS order
12518         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
12519           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
12520         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
12521         * Hwnd.cs:
12522           - Added tracking of window enabled state (get_Enabled/set_Enabled)
12523           - Added EnabledHwnd property to easily allow a driver to find the
12524             handle of the first enabled window in the parent chain (this is
12525             used by drivers to pass up input events of disabled windows)
12526         * XplatUIDriver.cs: Added IsEnabled() method
12527         * Application.cs:
12528           - Removed crude and obsolete exiting tracking variable
12529           - Removed internal ModalRun(); replaced by RunLoop()
12530           - Implemented private CloseForms() method to allow closing all 
12531             windows owned by a particular (or all) threads
12532           - Exit() now properly closes all windows without forcing the message
12533             pump to quit
12534           - Removed obsolete InternalExit() method
12535           - Changed Run() methods to use new RunLoop() message pump
12536           - Implemented new RunLoop() method for both modal and non-modal forms
12537         * CommonDialog.cs:
12538           - get_CreateParams: Added setting of WS_DISABLED
12539           - Simplified ShowDialog(); now all the work is done in RunLoop(),
12540             invoked via Form.ShowDialog()
12541         * NativeWindow.cs: We don't remove the window from the collection when
12542           the handle is destroyed; there might still be messages for it in the
12543           queue (mainly the resulting WM_DESTROY); instead it will be removed
12544           when Control calls InvalidateHandle in the WM_DESTROY handler
12545         * XplatUIX11.cs:
12546           - CreateWindow: Added logic to handle the WS_DISABLED window style
12547           - EnableWindow: Implemented based on Hwnd.Enabled
12548           - GetMessage: Reset PostQuitState so the method can be called again
12549           - Implemented support for disabled windows (passing messages to the
12550             first enabled parent) in handling all input messages
12551           - Added optimizations for handling Expose events
12552           - Implemeted new driver method IsEnabled()
12553           - Now always resetting paint pending tracking vars when we start paint
12554           - Re-implemented UpdateWindow via just sending a WM_PAINT message
12555         * XplatUIOSX.cs: Added IsEnabled method stub
12556         * XplatUIWin32.cs: Implemented new IsEnabled() method
12557
12558 2006-01-11  Jackson Harper  <jackson@ximian.com>
12559
12560         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12561         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
12562         variables a little.
12563         * ColorDialog.cs: Clear out the old form before adding the new
12564         panel.  
12565
12566 2006-01-11  Jackson Harper  <jackson@ximian.com>
12567
12568         * X11Dnd.cs: Make sure to add all the text formats when adding
12569         strings to the data object.
12570         * TreeNodeCollection.cs: When adding to a sorted tree we need to
12571         do some redrawing too.  Also change the UpdateNode to an
12572         UpdateBelow so the newly added node gets painted.
12573         
12574 2006-01-11  Miguel de Icaza  <miguel@novell.com>
12575
12576         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12577         LinkLabel.cs, PropertyGrid.cs: Implement the
12578         UseCompatibleTextRendering property for 2.x
12579
12580         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
12581
12582 2006-01-11  Jackson Harper  <jackson@ximian.com>
12583
12584         * TreeView.cs: Use the property for setting the selected node so
12585         the correct events get raised.
12586         * TreeNode.cs: Update the tree when the fore/back colours of a
12587         node are set.
12588
12589 2006-01-10  Jackson Harper  <jackson@ximian.com>
12590
12591         * TreeView.cs: Allow setting SelectedNode to null.
12592
12593 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12594
12595         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
12596
12597 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12598
12599         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
12600
12601 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12602
12603         * PrintDialog.cs: Added attributes and set default property values.
12604
12605 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12606
12607         * PrintControllerWithStatusDialog.cs: 
12608         Added PrintControllerWithStatusDialog.
12609
12610 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12611
12612         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12613         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
12614
12615 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12616
12617         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
12618
12619 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12620
12621         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
12622         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
12623
12624 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12625
12626         * MimeIcon.cs: Added internal class SVGUtil.
12627
12628 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12629
12630         * FileDialog.cs: Don't crash if there are two files with the
12631           same name but different locations.
12632
12633 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
12634
12635         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
12636         dates across multiple month grids. Used to not highlight entire 
12637         month, but does now.
12638         
12639 2006-01-06  Jackson Harper  <jackson@ximian.com>
12640
12641         * MonthCalendar.cs: Removed DoEvents call to prevent a running
12642         message loop. Change timer intervals to numbers that seem more
12643         natural.
12644
12645 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
12646
12647         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
12648           object for location info since screen object is now implemented.
12649
12650 2006-01-05  Jackson Harper  <jackson@ximian.com>
12651
12652         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
12653         * AsyncMethodResult.cs: We no longer use a WeakReference for the
12654         AsyncMethodResult, this is because we ALWAYS want the
12655         ManualResetEvent to get set.
12656         * Control.cs: When disposing use an async invoke to call shutdown
12657         code, so that thigns don't block on the finalizer thread.  Also
12658         check if we even have a message loop before trying to send
12659         messages, if we don't then don't bother sending messages.
12660         - No more weak references for async methods
12661         * XplatUIDriver.cs: No more weak references for async methods.
12662
12663 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12664
12665         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
12666           returns two FontFamily with the same name
12667
12668 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12669
12670         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
12671           drawing disabled text. Instead using the ColorGrayText color
12672
12673 2006-01-04  Jackson Harper  <jackson@ximian.com>
12674
12675         * TreeNode.cs: redraw the node when its image index is changed.
12676
12677 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12678
12679         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12680           time I checked there are no others like it.
12681
12682 2006-01-04  Jackson Harper  <jackson@ximian.com>
12683
12684         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12685         this gives the behavoir I was looking for.
12686         * Control.cs: Special case Invoking EventHandlers, this matches MS
12687         and fixes part of bug #76326.
12688
12689 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12690
12691         * ThemeClearlooks.cs, FileDialog.cs:
12692           - Reflect the latest Theme class changes
12693           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12694             with DateTime
12695             
12696 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12697
12698         * Theme.cs: Cache UI resource images and resize them if needed
12699
12700 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12701
12702         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12703           is called. This fixes the crash in Nexxia when setting the font
12704           attributes in the chat. [However, RTF needs a look-over to make sure
12705           that all SelectionXXX methods handle the special case that selection
12706           is empty and therefore the change must be applied to all text starting
12707           at the cursor/selection start]
12708
12709 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12710
12711         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12712           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12713         * X11Keyboard.cs: Switched to new way of calling PostMessage
12714
12715 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12716
12717         * Theme.cs: Added theme interface for images to allow the theme to
12718           control what images are used for things like FileDialog, MessageBox
12719           icons, etc.
12720         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12721
12722 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12723
12724         * FileDialog.cs:
12725           - Removed some dead code
12726           - Opening a recently used file does work now
12727           - Small UI enhancements
12728           - Refactoring
12729
12730 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12731
12732         * FileDialog.cs: Forgot too add __MonoCS__
12733
12734 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12735
12736         * FileDialog.cs: We are able to read recently used files now let's
12737           go on and write them.
12738
12739 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12740
12741         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12742           button
12743         * MimeIcon.cs: Do a check for the top level media type also
12744
12745 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12746
12747         * ThemeClearlooks.cs:
12748           - Added CPDrawStringDisabled
12749           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12750             some chars if the text doesn't fit into text_rect
12751           - DrawListViewItem: If View = View.LargeIcon center the image;
12752             rewrote the drawing of ListViewItem.Text if View = 
12753             View.LargeIcon
12754
12755 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12756
12757         * MimeIcon.cs: Use default KDE icon theme if there is no
12758           "48x48" directory for the current icon theme, fixes #77114
12759         * Mime.cs: Disable not working and actually not used code. 
12760         * ThemeWin32Classic.cs:
12761           - Replace "new SolidBrush" in GetControlBackBrush and
12762             GetControlForeBrush with ResPool.GetSolidBrush
12763           - Changed DrawListViewItem from private to protected virtual
12764         * FileDialog.cs:
12765           - Added form.MaximizeBox = true
12766           - Don't throw an exception if there is a broken symbolic link
12767
12768 2005-12-23  Jackson Harper  <jackson@ximian.com>
12769
12770         * TabControl.cs: Give the panels focus, keyboard navigation is
12771         fixed so this works correctly now.
12772         - We need these key events also.
12773         * ToolBar.cs: Remove some of the poor mans double buffering.
12774         
12775 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12776
12777         * ComboBox.cs: The internal TextBox now returns the focus.
12778
12779 2005-12-23  Jackson Harper  <jackson@ximian.com>
12780
12781         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12782
12783 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12784
12785         * Control.cs: Removed debug code
12786         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12787           implicit children
12788
12789 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12790
12791         * Control.cs: When creating the control, update the Z-order after
12792           all it's children are created, too. (Fixes nexxia not showing
12793           picturebox bug)
12794
12795 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12796
12797         * Control.cs: Do not update the anchoring distances if layout is
12798           suspended, instead do it once layout is resumed
12799
12800 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12801
12802         * Control.cs: 
12803           - After many hours of debugging, for both Jackson and
12804             myself, it turns out that it helps to set the parent of a control
12805             if you want to actually see it onscreen. In the spirit of that
12806             discovery, we're now setting the parent of the control and
12807             it's children when the control's handle is created. This fix
12808             will make Lutz Roeder's Reflector run happily. 
12809           - now just creating the handle instead of the whole control when
12810             getting a graphics context for the control.
12811
12812 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12813
12814         * ScrollableControl.cs: When calculating the canvas, don't consider
12815           the scrollbar widths. Instead, predict if horizontal scrollbar
12816           will affect canvas when deciding on vertical display and vice versa.
12817
12818 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12819
12820         * RichTextBox.cs: Set default RTF font for documents that don't
12821           have a font table (Fixes #77076)
12822
12823 2005-12-22  Jackson Harper  <jackson@ximian.com>
12824
12825         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12826         clipboard. This prevents a NullRef in that case.
12827         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12828         clipboard. PRIMARY is for the currently selected text only. (We
12829         should implement PRIMARY at some point.
12830
12831 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12832
12833         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12834           a Unicode function with a structure that was defined in Ansi way.
12835           This fixes #76942.
12836
12837 2005-12-21  Jackson Harper  <jackson@ximian.com>
12838
12839         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12840         on. Because thats how it rolls. (and this avoids it using ambient
12841         colours).
12842         * ThemeWin32Classic.cs: Use the proper back color for filling.
12843         * Menu.cs: Use the system menu bar color for drawing menu
12844         bars. Using the window back color will bring ambient colours into
12845         the picture.
12846
12847 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12848
12849         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12850           Bitmaps were created and not disposed.
12851
12852 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12853
12854         * Control.cs (CreateControl): Don't do anything if the control is
12855           already created, otherwise we'd fire the OnCreated event more than
12856           once
12857
12858 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12859
12860         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12861           will always match. Instead return -1. Fixes #76464.
12862
12863 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12864
12865         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12866           neither the beginning nor the end of the line (Fixes bug #76479)
12867
12868 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12869
12870         * Control.cs:
12871           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12872             where handle is invalid
12873           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12874             instead of slower linear search
12875         * NativeWindow.cs: Don't remove the window from the hashtable until
12876           after the driver has destroyed it (since the driver might use
12877           Control.FromHandle to lookup the control object
12878         * Hwnd.cs: Added DestroyPending property to track if a window is 
12879           already destroyed as far as the driver is concerned and only hasn't
12880           yet notified the control
12881         * XplatUIX11.cs:
12882           - Activate(): Check if the window is still valid before using the 
12883             handle
12884           - Implemented DestroyChildWindow() method to mark child windows as
12885             destroyed when a window is destroyed. This prevents situations 
12886             where we might call an X method based on queued events for a
12887             window that already has been destroyed but we haven't yet pulled
12888             the destroy method from the queue.
12889           - Added a call to the new DestroyChildWindow() method to the drivers
12890             DestroyWindow code. Also now marking the destroyed window itself
12891             as pending
12892
12893 2005-12-20  Jackson Harper  <jackson@ximian.com>
12894
12895         * StatusBar.cs:
12896         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12897         anymore. Just do them when needed, also track the rects of panels
12898         so that we can optimize refreshing more in the future.
12899
12900 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12901
12902         * ColorDialog.cs: Fixed focus drawing in small color controls
12903
12904 2005-12-19  Jackson Harper  <jackson@ximian.com>
12905
12906         * InternalWindowManager.cs:
12907         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12908         moving windows works properly.
12909
12910 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12911
12912         * Control.cs: 
12913           - Removed call to InitLayout() from SetBoundsCore(); doc says
12914             it's only called when a control is added to a container
12915           - Split InitLayout logic, moved to separate UpdateDistances() method
12916             since we need to perform those calculations more often than just
12917             when adding the control to a container. (Needed to fix #77022)
12918           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12919           - Reduced the OnBindingContextChanged events count, don't send them
12920             unless the control is created, we still aren't totally matching
12921             MS, but I can't quite figure out some of their rules
12922
12923 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12924
12925         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12926           stripes
12927
12928 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12929
12930         * ThemeClearlooks.cs:
12931           - Updated ProgressBar drawing
12932           - Corrected drawing of ScrollBars and scroll buttons
12933           - Some temporary fixes for minor pixel artefacts
12934
12935 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12936
12937         * Control.cs:
12938           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12939             cause events to be sent in the same order as MS does.
12940           - Added ChangeParent() method to trigger various OnXXXChanged events
12941             that need to be fired when a parent changes (This is a reworking
12942             of the patch from r54254, with the X11 errors fixed)
12943           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12944             since on MS we get OnLayoutChanged events when calling Clear()
12945           - Changed Enabled property to consider parent state as well, if a
12946             parent is not enabled, the control will not be either
12947           - Changed Parent property to simply call Controls.Add() since that
12948             now does all the work required, this way we avoid code duplication
12949           - Threw in a few OnBindingsContextChanged calls to try and match
12950             when MS sends them. We seem to send a few too many, though.
12951           - Added call to CreateControl when adding the control to a parent.
12952             We were never calling CreateControl. Still needs some work, in
12953             some places we treat HandleCreated and ControlCreated as equal, 
12954             which is wrong
12955           - Removed obsolete commented out code from UpdateZOrder()
12956
12957 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12958
12959         * ThemeClearlooks.cs: Updated TrackBar drawing.
12960
12961 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12962
12963         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12964
12965 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12966
12967         * FileDialog.cs: Add the Help button and the open readonly
12968           checkbox only if needed
12969
12970 2005-12-16  Jackson Harper  <jackson@ximian.com>
12971
12972         * Control.cs: Make sure we have an active menu before trying to
12973         process commands on it. Prevents menu-less forms from crashing
12974         when Alt is pressed.
12975         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12976         Dieter Bremes.
12977         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12978         2.0 build.
12979
12980 2005-12-16  Jackson Harper  <jackson@ximian.com>
12981
12982         * InternalWindowManager.cs: Don't translate tool windows screen
12983         coordinates. This fixes windows 'bouncing' around when being moved.
12984
12985 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12986
12987         * TextBoxBase.cs:
12988           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12989             not quite MS compatible, MS uses that number only for single line
12990             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12991             the limit at 2GB)
12992           - Now enforcing the MaxLength limit when entering characters
12993           - Added argument to internal Paste() method to track if it's called
12994             from programatically or via keyboard, since keyboard driven pastes
12995             need to enforce max-length
12996           - Added logic to Paste to only paste as many chars as MaxLength 
12997             allows
12998         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12999         * TextControl.cs:
13000           - Added Length property to return number of characters in document
13001           - Added private CharCount property which only tracks actual chars
13002             in the document (no linefeeds) and fires event when CharCount
13003             changes
13004           - Added tracking of character count to all methods that alter it
13005           - Added LengthChanged event to allow applications to subscribe
13006             to any changes to the document
13007
13008 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
13009
13010         * TextBox.cs: 
13011           - Removed local password_char field (moved to TextBoxBase)
13012           - Now setting the document's password var when password is
13013             set
13014         * TextBoxBase.cs:
13015           - Added password_char field (needed here so MultiLine can
13016             access it)
13017           - Added logic to MultiLine property setter to set the document's
13018             variable when password display is allowed
13019           - Removed debug code and made some debug code conditional
13020         * TextControl.cs:
13021           - Added RecalculatePasswordLine() method to handle special password
13022             char only lines
13023           - Added PasswordChar property, also added related tracking vars
13024           - Draw() method now uses local text var for grabbing text to draw,
13025             this var is set to line.text unless we're doing password display,
13026             then it is set to the pre-generated all-password-chars line
13027           - Added calling RecalculatePasswordLine() method for password lines
13028
13029 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13030
13031         * Hwnd.cs: 
13032           - Added Reparented property to allow tracking of Window Manager
13033             reparenting actions (which affect X/Y calculations of toplevel 
13034             windows)
13035           - Made ToString() print window handles in hex
13036         * XplatUIX11.cs:
13037           - AddConfigureNotify(): Now uses reparented state off Hwnd to
13038             determine if X/Y needs offsetting
13039           - AddConfigureNotify(): Fixed offset calculations
13040           - Now adds ReparentNotify messages into the queue
13041           - Now processes ReparentNotify messages and causes a 
13042             WM_WINDOWPOSCHANGED message to be sent upstream if a window
13043             is reparented (as most likely it's X/Y coordinates are changed
13044             due to that)
13045
13046 2005-12-14  Jackson Harper  <jackson@ximian.com>
13047
13048         * XplatUIX11.cs: Tool windows still need to respek focus.
13049
13050 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
13051
13052         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
13053           have a working release
13054
13055 2005-12-13  Jackson Harper  <jackson@ximian.com>
13056
13057         * Form.cs: Update styles after setting the border style regardless
13058         of whether or not the window is using a window manager.
13059
13060 2005-12-13  Jackson Harper  <jackson@ximian.com>
13061
13062         * Form.cs: We now hook into an internal window manager instead of just an
13063         MDI subsystem, this is so we can have properly behaving tool windows.
13064         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
13065         * InternalWindowManager.cs: New internal class that acts as a
13066         window manager for tool windows and as a base for mdi windows.
13067         * MdiWindowManager.cs: New class that acts as a window manager for
13068         mdi windows.
13069
13070 2005-12-12  Jackson Harper  <jackson@ximian.com>
13071
13072         * Control.cs: Updates so we match behavoir for for implicit
13073         controls. Fixes explosions in MDI.
13074
13075 2005-12-12  Jackson Harper  <jackson@ximian.com>
13076
13077         * Control.cs: Implement Invalidate (Region).
13078
13079 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
13080
13081         * Control.cs: 
13082           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
13083             the same events as MS does. MS fires events for each property 
13084             except, for unknown reasons, Cursor, when the control is reparented. 
13085             I can't seem to totally match add/remove since MS also fires some 
13086             VisibleChanged events, which makes no sense. Consolidated the
13087             parenting code into a separate method so it can be called from
13088             both Add and Remove. set_Parent no longer needs any special logic
13089             as it calls the parent's add method which implicitly fires
13090             all events
13091           - Removed some obsolete code and debug output
13092           - Enabled state is inherited from parents, if this is enabled
13093
13094 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
13095
13096         * Form.cs: Removed commented out code
13097
13098 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
13099
13100         * Control.cs:
13101           - Added internal version of Invoke, with additional argument 
13102             indicating if we're calling it from a Dispose() handler. That
13103             way we can avoid BeginInvoke throwing an exception if we're
13104             calling for an already destroyed window.
13105           - Added a dispose argument to BeginInvokeInternal, and made the
13106             check if a valid window handle chain exists conditional on
13107             it not being a dispose call
13108           - Removed code in DestroyHandle to destroy our children. Since we
13109             now handle the WM_DESTROY message we will catch all our children
13110             being destroyed.
13111           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
13112         * Form.cs:
13113           - Added a field to track the application context of the form.
13114           - No need to set closing variable as response to WM_CLOSE, instead
13115             we destroy the window. We also call PostQuitMessage if the form
13116             has an application context (which makes it the main app form,
13117             which, when closed terminates the app)
13118         * XplatUI.cs:
13119           - Dropped Exit() method, it's naming was confusing
13120           - Added PostQuitMessage() which causes GetMessage to return false
13121             once the message queue is empty
13122         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
13123           PostQuitMessage()
13124         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
13125           no longer a valid XplatUI method, but left it in since it's used
13126           internally. Added empty PostQuitMessage() method.
13127         * MenuAPI.cs: Replaced call to Exit() with call to
13128           PostQuitMessage, even though this is probably no longer needed.
13129         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
13130         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
13131         * Application.cs:
13132           - Replaced call to XplatUI.Exit() with PostQuitMessage()
13133           - Removed old debug code that would call XplatUI for exception
13134             display, enabled standard exception handling (Still not enabled
13135             though, until NativeWindow's ExternalExceptionHandler define
13136             is removed
13137         * NativeWindow.cs:
13138           - Added internal method to allow control to update NativeWindow
13139             after a window has been destroyed
13140           - Added handling of already destroyed windows when calling i
13141             DestroyWindow
13142           - Added removal of handle from list on ReleaseHandle
13143         * XplatUIX11.cs:
13144           - Dropped GetMessageResult var and related code
13145           - Added PostQuitState to field to track if PostQuitMessage has been
13146             called
13147           - Dropped Exit() method
13148           - Added PostQuitMessage() method
13149           - GetMessage now will return false if PostQuitState is set and no
13150             more messages are in the queue.
13151           - Expose handler will no longer generate WM_PAINT messages if we are
13152             in PostQuitState since it's very likely any windows have already
13153             been destroyed, and since Hwnd won't get updated until we have
13154             processed the DestroyNotify we'd be causing X errors.
13155         
13156 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13157
13158         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
13159           Thanks to Mike for pointing out the err of my ways.
13160
13161 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13162
13163         * Control.cs(PreProcessMessage): Moved menu handling back, but
13164           after all other key handling, to match MS (who handles Menu in
13165           DefWndProc)
13166         * Menu.cs (WndProc): Removed my brainfart
13167
13168 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13169
13170         * Control.cs(PreProcessMessage): Removed special menu handling 
13171         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
13172
13173 2005-12-07  Mike Kestner  <mkestner@novell.com>
13174
13175         * Control.cs : special case SYSKEYUP so that we can adjust keynav
13176         state according in tracker.
13177         * Menu.cs : promote tracker field to base class and provide a tracker
13178         lookup capability.  Add/Remove shortcuts dynamically if the top menu
13179         has a tracker. Unparent items that are removed from the collection.
13180         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
13181         * Theme*.cs: add always_show_hotkeys field to support configurability
13182         of mnemonic display.  win32 doesn't show mnemonics until Alt is
13183         pressed.
13184
13185 2005-12-07  Jackson Harper  <jackson@ximian.com>
13186
13187         * MdiChildContext.cs: Use Control.ResetCursor.
13188         * Control.cs: ResetCursor needs to set the property so that the
13189         correct XplatUI call gets made.
13190
13191 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13192
13193         * Control.cs: More fixes to make our key events match MS. We
13194           were not setting the modifier state on KeyData, and we were
13195           not generating any events when Alt was pressed with a key
13196           since handling of WM_SYSxxx was missing for the OnKey methods.
13197
13198 2005-12-07  Jackson Harper  <jackson@ximian.com>
13199
13200         * MdiChildContext.cs: reenable the sizing code.
13201         - When the mouse leaves a window reset its cursor.
13202
13203 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13204
13205         * ThemeClearlooks.cs: Reflect latest Hwnd changes
13206
13207 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
13208
13209         * Hwnd.cs: Now using the theme 3d bordersize to calculate
13210           widths of Fixed3D borders
13211
13212 2005-12-07  Jackson Harper  <jackson@ximian.com>
13213
13214         * MdiClient.cs: Fix warnings. Earn Mike's love.
13215
13216 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
13217
13218         * ThemeClearlooks.cs:
13219           - Adjusted mouse over button color
13220           - Added first parts of CheckBox drawing
13221           - Added correct color for selected text background
13222           - Fixed ComboBox drawing
13223           - Added CPDrawBorder3D and CPDrawBorder
13224
13225 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13226
13227         * XplatUIX11.cs: Added call to XBell for AudibleAlert
13228
13229 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
13230
13231         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
13232           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
13233           alert users via sound. We could add an enum arg with different
13234           types of alerts in the future
13235
13236 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
13237
13238         * Control.cs: Fix behaviour problems pointed out by Mike
13239
13240 2005-12-05  Mike Kestner  <mkestner@novell.com>
13241
13242         * StatusBarPanel.cs: add Invalidate method and hook it into all the
13243         prop setters.  Calls parent.Refresh for now, but could be maybe be
13244         optimized with an internal method on StatusBar at some point.
13245         [Fixes #76513]
13246
13247 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
13248
13249         * RichTextBox.cs: Implemented get_SelectionColor
13250
13251 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
13252
13253         * ThemeClearlooks.cs:
13254           - Removed dead code
13255           - Draw black button border only if button is Form.AcceptButton
13256           - Draw correct button color for pressed RadioButton if the mouse 
13257             has entered the button
13258           - Updated ProgressBar drawing!
13259           - Updated CPDrawSizeGrip drawing
13260           - Updated StatusBarPanel drawing
13261
13262 2005-12-05  Mike Kestner  <mkestner@novell.com>
13263
13264         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
13265         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
13266
13267 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
13268
13269         * ThemeClearlooks.cs: Initial check-in, activate with
13270           export MONO_THEME=clearlooks
13271         * ThemeEngine.cs: Added ThemeClearlooks
13272
13273 2005-12-03  Mike Kestner  <mkestner@novell.com>
13274
13275         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
13276         [Fixes #76897]
13277
13278 2005-12-02  Jackson Harper  <jackson@ximian.com>
13279
13280         * Form.cs: If the child form has no menu the default main menu is
13281         used as the active menu.
13282
13283 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
13284
13285         * ListBox.cs: Check if any items exist before trying to resolve 
13286           coordinates into items
13287
13288 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13289
13290         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
13291           as the second color for the background hatch
13292
13293 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
13294
13295         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
13296         * RichTextBox.cs: FormatText position arguments are 1-based, now making
13297           sure that what we pass to FormatText is always 1-based. Fixes #76885
13298
13299 2005-11-29  Miguel de Icaza  <miguel@novell.com>
13300
13301         * NumericUpDown.cs (EndInit): When we are done initializing,
13302         reflect any updates on the UI.
13303
13304 2005-12-02  Jackson Harper  <jackson@ximian.com>
13305
13306         * ImplicitHScrollBar.cs:
13307         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
13308         their container controls.
13309         * TreeView.cs: Use the new implicit scrollbars.
13310
13311 2005-12-02  Jackson Harper  <jackson@ximian.com>
13312
13313         * TreeView.cs: Make top_node internal so the TreeNodeCollections
13314         can play with it.
13315         * TreeNodeCollection.cs: If we remove the topnode we need to
13316         update topnode to the next node in line.
13317         - When clearing nodes go through the same process as removing
13318         them, so they get depareneted and checked if they are top node.
13319
13320 2005-12-01  Jackson Harper  <jackson@ximian.com>
13321
13322         * TreeView.cs: When imagelists are used the image area is
13323         selectable as well as the text.
13324         - If there are no selected nodes select the first one.
13325         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
13326         so don't do it more then we need to.
13327
13328 2005-12-01  Jackson Harper  <jackson@ximian.com>
13329
13330         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
13331         that arrows can be scaled.
13332
13333 2005-12-01  Jackson Harper  <jackson@ximian.com>
13334
13335         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
13336         fail. Patch by Dieter Bremes
13337
13338 2005-11-30  Jackson Harper  <jackson@ximian.com>
13339
13340         * Form.cs: Property is 2.0 only
13341         * PrintDialog.cs: Signature fix.
13342
13343 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13344
13345         * TextControl.cs: 
13346           - No longer artificially moves text 2 pixels down (now that we have
13347             borders this is no longer needed)
13348           - Added calcs for left, hanging and right indent
13349
13350 2005-11-23  Mike Kestner  <mkestner@novell.com>
13351
13352         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
13353
13354 2005-11-30  Jackson Harper  <jackson@ximian.com>
13355
13356         * MdiChildContext.cs: Set the cloned menus forms, as these don't
13357         get cloned as part of CloneMenu ().
13358         * Menu.cs: Make sure the parent of the items get set correctly
13359         when they are added.  And the owners are notified of the changes.
13360         * Form.cs: Create an ActiveMenu property, so that when MDI is used
13361         we can change the menu being displayed/handled by the form without
13362         changing the menu assosciated with the form.
13363         - Don't let Mdi children draw/handle menus.
13364         
13365 2005-11-30  Jackson Harper  <jackson@ximian.com>
13366
13367         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
13368         a MenuChanged event. Just to make the API a little more
13369         consistent.
13370         * MainMenu.cs:
13371         * MenuItem.cs: Use the new OnMenuChanged
13372         * MdiChildContext.cs: Handle menu merging.
13373         * Form.cs: Implement MergedMenu.
13374         
13375 2005-11-30  Jackson Harper  <jackson@ximian.com>
13376
13377         * Menu.cs: We were misusing Add. Add goes behind the specified
13378         index according to the docs, and does not replace the specified
13379         index. So I added an Insert method.
13380
13381 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
13382
13383         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
13384           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
13385           is for Jackson
13386         * RichTextBox.cs: Added calls to base for DnD events
13387
13388 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
13389
13390         * TextControl.cs:
13391           - Fixed drag-selection related crash; style fixes
13392           - Implemented undo class
13393             o Implemented method to capture document state for specified
13394               range in document tree
13395             o Implemented method to restore captured document state
13396             o Implemented cursor tracking
13397             o Implemented basic undo stack
13398           - Added undo cursor tracking to methods altering cursor location
13399           - Added undo tracking to selection deletion (still missing
13400             other text-altering hookups)
13401         * RichTextBox.cs:
13402           - Added SelectionLength property
13403           - Implemented CanPaste()
13404           - Implemented Paste()
13405           - Added missing protected methods
13406           - Fixed RTF->Document conversion; now uses font index 0 and color 
13407             index 0 as the default font for the parsed text
13408           - Fixed RTF<->Document font size translation
13409           - Fixed RTF generation, now properly handles cross-tag boundaries
13410             for single line selection
13411           - No longer always appends blank line to generated RTF
13412           - Removed TODOs
13413           - Added missing attributes
13414           - Hooked up undo-related methods
13415         * TextBoxBase.cs:
13416           - Implemented Copy()
13417           - Implemented Paste()
13418           - Implemented Cut()
13419           - Fixed caret mis-behaviour on backspace across line-boundaries
13420
13421 2005-11-29  Jackson Harper  <jackson@ximian.com>
13422
13423         * MdiClient.cs: Add a method for activating mdi children. Very
13424         basic right now. I imagine someday it might need more girth.
13425         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
13426         children windows names are added to the menu item.
13427         * ThemeWin32Classic.cs: Draw the arrow if the item is an
13428         mdilist. This happens regardless of whether or not there are any
13429         mdi windows to see in the list, and according to my tests happens
13430         before the items are even added. Also happens if there isn't even
13431         an mdi client to get windows from.
13432
13433 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
13434
13435         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
13436         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
13437
13438 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
13439
13440         * DataGridTableStyle.cs:
13441           - Create always the styles for the missing columns even if they are
13442             provided by the user (not default table style)
13443         * DataGrid.cs:
13444           - Fixes bug 76770
13445           - Fixes SetDataBinding (always re-attach source)
13446           - Fixes SetNewDataSource (only clear styles if they are not for 
13447             this source)
13448          -  Expands OnTableStylesCollectionChanged to handle style refresh 
13449             and remove properly
13450
13451 2005-11-29  Jackson Harper  <jackson@ximian.com>
13452
13453         * FileDialog.cs: Implement missing bits, remove some dead
13454         code.
13455         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
13456         creation of the panel so that the options set on the dialog are
13457         seen when the panel is created.
13458         * TreeView.cs: raise a click when items are clicked.
13459         
13460 2005-11-29  Jackson Harper  <jackson@ximian.com>
13461
13462         * MdiClient.cs: Pass some signature methods through to base.
13463
13464 2005-11-28  Jackson Harper  <jackson@ximian.com>
13465
13466         * ListView.cs: Raise the click event when items are clicked.
13467
13468 2005-11-28  Jackson Harper  <jackson@ximian.com>
13469
13470         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
13471         a nullref.
13472
13473 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
13474
13475         * ThemeNice.cs: - Removed 1 pixel bitmaps
13476           - Use SmoothingMode.AntiAlias where it makes sense
13477             (ScrollButton arrow for example)
13478           - Enhanced Button focus drawing
13479           - Fixed ComboBox drawing (no artefacts anymore, focus
13480             rectangle is back again, reduced size of ComboButton, etc.)
13481           - Fixed RadioButton focus drawing for Appearence.Button
13482           - Slight ScrollButton redesign
13483           - Some LinearGradientBrush size fixes
13484           - GroupBoxes have now rounded edges
13485           - Fixed StatusBar drawing
13486
13487 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
13488
13489         * ThemeNice.cs: - Remove dead code
13490           - use correct background colors for menus, etc.
13491           - Fake pixel drawing with 1 pixel bitmaps
13492
13493 2005-11-24  Jackson Harper  <jackson@ximian.com>
13494
13495         * MdiClient.cs: Size the scrollbars when resizing the window.
13496         - Resize the maximized windows when the client is resized
13497         * Form.cs: Make the child context available
13498         
13499 2005-11-23  Jackson Harper  <jackson@ximian.com>
13500
13501         * MdiChildContext.cs: Don't size windows if they are maximized.
13502
13503 2005-11-23  Mike Kestner  <mkestner@novell.com>
13504
13505         * ContextMenu.cs: use MenuTracker.
13506         * Control.cs: remove menu handle usage.
13507         * Form.cs: remove menu handle usage.
13508         * Hwnd.cs: remove menu handle usage.
13509         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
13510         motion and clicks to the new Tracker handlers.
13511         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
13512         and handle usage.
13513         * MenuAPI.cs: refactored to combine popup and menubar event handling.
13514         Killed the MENU and MENUITEM data types and associated collections
13515         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
13516         MenuTracker class that exposes the leftovers from the old MenuAPI
13517         static methods. Restructured Capture handling so that only one grab is
13518         done for the entire menu hierarchy instead of handing off grabs to
13519         submenus. Tracker now has an invisible control to Capture when active.
13520         * MenuItem.cs: add sizing accessors, kill Create
13521         and handle usage.
13522         * Theme.cs: remove menu handle and MENU(ITEM) usage.
13523         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
13524         MENU(ITEM). remove menu handle usage, use Menu directly.
13525         * XplatUIDriver.cs: remove menu handle usage.
13526         * XplatUIOSX.cs: remove menu handle usage.
13527         * XplatUIWin32.cs: remove menu handle usage.
13528         * XplatUIX11.cs: remove menu handle usage.
13529
13530 2005-11-22  Jackson Harper  <jackson@ximian.com>
13531
13532         * Hwnd.cs: Don't compute the menu size for
13533         DefaultClientRectangle.
13534         - Reenable menu sizes being computed for GetClienRectangle.
13535         * Form.cs: Remove comment of trechery
13536         
13537 2005-11-22  Jackson Harper  <jackson@ximian.com>
13538
13539         * Hwnd.cs: The adjustments for the menu bar are made when it is
13540         attached to the form.
13541
13542 2005-11-19  Jackson Harper  <jackson@ximian.com>
13543
13544         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
13545         (just like on windows).
13546
13547 2005-11-19  Jackson Harper  <jackson@ximian.com>
13548
13549         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
13550         use real buttons anymore because they are in non client area. The
13551         one TODO here is that I need to somehow invalidate a section of
13552         the non client area.
13553
13554 2005-11-18  Jackson Harper  <jackson@ximian.com>
13555
13556         * Control.cs: Put the enum check back in now that MDI doesnt have
13557         to use this to set border styles.
13558         * Form.cs: Only set mdi child windows borders if the handle has
13559         been created.
13560         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
13561         this directly on to the driver.
13562         - Get the move start position before adjusting for the titlebar
13563         height, this fixes the windows "skipping" when they are first
13564         moved.
13565
13566 2005-11-18  Jackson Harper  <jackson@ximian.com>
13567
13568         * XplatUIX11.cs: Just compute the mdi borders separately as they
13569         don't totally match up with normal form borders.
13570
13571 2005-11-18  Jackson Harper  <jackson@ximian.com>
13572
13573         * Control.cs: Set WS_ styles for borders, so that the driver does
13574         not have to retrieve the control instance to figure out what kind
13575         of borders it should have.
13576         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
13577         driver can know its an mdi child easily.
13578         * XplatUIX11.cs: Get the border styles and whether the window is
13579         MDI from the Styles and ExStyles params instead of having to get a
13580         control. This prevents a chicken and egg problem.       
13581
13582 2005-11-18  Jackson Harper  <jackson@ximian.com>
13583
13584         * MdiClient.cs: Fix typo so scrollbars show up correctly.
13585
13586 2005-11-18  Jackson Harper  <jackson@ximian.com>
13587
13588         * MdiClient.cs: Calculate when to add and remove scrollbars
13589         correctly.
13590         * MdiChildContext.cs: Adjust the y position to take the titlebar
13591         into account.
13592         - No height for FormBorderStyle.None
13593
13594 2005-11-18  Jackson Harper  <jackson@ximian.com>
13595
13596         * Control.cs: Allow non enum values to be used for
13597         InternalBorderStyle.  MDI does this to set a special border style.
13598         - New utility methods for converting points to/from client coords
13599         - Add the newly created control to the Controls collection before
13600         updating its style. This way UpdateStyle can walk the control
13601         heirarchy to find the control if needed.
13602         so I don't need to create a new Point object all the time.
13603         * Form.cs: Let MDI windows handle their border styles.
13604         - Set styles on MDI windows so the correct title style is derived.
13605         * MdiChildContext.cs: Move all the painting and window handling
13606         into the non client area.
13607         - Use correct sizing and put correct buttons on frames based on
13608         the FormBorderStyle.
13609         - Notify the mdi client about scrolling
13610         - Need to handle the buttons ourselves now, because they are all
13611         in non client areas and we can't add controls there.
13612         * MdiClient.cs: Halfway to scrolling, this implementation is
13613         somewhat broken though, we need to check to make sure other
13614         windows aren't causing scrolling before removing the bars. Also
13615         the bars need to be drawn on top, maybe I can switch implicit
13616         controls to be on top.
13617         * Hwnd.cs: caption_height and tool_caption_height are now
13618         properties of an hwnd, this way they can be set by the driver
13619         based on the type of window they are.  In X11 the window manager
13620         handles the decorations so caption_height is zero unless its an
13621         MDI window.
13622         - Add 3 pixel borders for MDI windows (0xFFFF).
13623         - Get rid of some code duplication, have DefaultClientRectanle
13624         just call GetClientRectangle.
13625         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
13626         Hwnd now.
13627         - Set border styles differently for mdi windows.
13628         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
13629         Hwnd now.
13630         
13631 2005-11-15  Mike Kestner  <mkestner@novell.com>
13632
13633         * Menu.cs: when adding an item to the collection, if item is already 
13634         parented, remove it from the parent.
13635
13636 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
13637
13638         * X11DesktopColors.cs: Added KDE support
13639
13640 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
13641
13642         * XplatUIWin32.cs: 
13643           - Clipboard methods now can translate Rtf format
13644           - No longer removes clipboard contents whenever a new format is added
13645             to allow placing multiple formats on the clipboard
13646         * Clipboard.cs: Clipboard now supports getting a IDataObject and
13647           will place all formats contained in it onto the clipboard. Also
13648           now cleans the clipboard before placing a new object onto it
13649         * RichTextBox.cs:
13650           - Implemented set_Rtf
13651           - Implemented set_SelectedRtf
13652           - Created InsertRTFFromStream() method to allow single code base
13653             for all properties and methods that insert RTF into document
13654           - Removed debug output
13655         * TextControl.cs:
13656           - Fixed Delete(int) to fix up line numbers
13657           - Fixed ReplaceSelection to combine start and end line
13658           - Fixed serious DeleteChars bug that would leave the document tree
13659             broken
13660           - Improved DumpTree with several logic checks to detect broken
13661             document trees
13662           - Removed debug lines
13663           - Fixed Caret.WordForward/WordBack moving code, now always also 
13664             updates caret.tag (fixes crash when word-selecting across tag
13665             boundaries via keyboard)
13666           - Added Insert() method for inserting multiline text into documents
13667           - Fixed DeleteChars() calculation errors that would cause a broken
13668             tag chain with multiple tag lines
13669           - DeleteChars() no longer crashes on multi-tag lines if not all tags
13670           - Split() no longer moves caret if split is at caret location
13671           - ReplaceSelection() now updates the cursor and re-displays it
13672           - ReplaceSelection() now uses new Insert() method to avoid code
13673             duplication
13674           - FormatText() can now handle formatting partial lines
13675         * TextBoxBase.cs:
13676           - Append now uses new TextControl.Insert() method (this avoids 
13677             duplicate code)
13678           - Implemented Ctrl-X (Cut) (
13679           - Implemented Ctrl-C (Copy)
13680           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13681             regeneration when pasting text; roundtripping Copy&Paste within
13682             edit control still fails due to some calculation bugs in GenerateRTF)
13683           - The Delete key will now remove the current selection if it is visible
13684         * TextBox.cs: Removed debug lines
13685         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13686           driver to be initialized and can't therefore be done via a static ctor)
13687
13688 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13689
13690         * TextControl.cs: Added backend code for finding char arrays and strings
13691         * TextBoxBase.cs:
13692           - Added mouse wheel scroll support
13693           - Added support for VScroll and HScroll events
13694         * RichTextBox.cs:
13695           - Implemented all seven Find() variants
13696           - Implemented GetCharFromPosition()
13697           - Implemented GetCharIndexFromPosition()
13698           - Implemented GetLineFromIndex()
13699           - Implemented GetPositionFromCharIndex();
13700           - Implemented SaveFile for PlainText and UnicodeText
13701           - Fixed set_Font, now setting a new font applies that font to
13702             the whole document
13703           - Implemented generic Document to RTF converter
13704           - Implemented SaveFile for RichText format (still missing unicode
13705             conversion for non-ansi chars)
13706           - Implemented get_Rtf
13707           - Implemented get_SelectedRtf
13708
13709 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13710
13711         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13712           to allow any captures to be released before triggering OnClick. This
13713           way a click handler may capture the mouse without interference.
13714         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13715           This way we send them even though X may not allow a grab (if the window
13716           isn't visible, for example)
13717
13718 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13719
13720         * DataGridViewRowEventArgs.cs: DataGridView implementation
13721         * DataGridViewElement.cs: DataGridView implementation
13722         * DataGridViewComboBoxCell.cs: DataGridView implementation
13723         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13724         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13725         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13726         * ImageLayout.cs: DataGridView implementation
13727         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13728         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13729         * DataGridViewSelectionMode.cs: DataGridView implementation
13730         * IDataGridViewEditingControl.cs: DataGridView implementation
13731         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13732         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13733         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13734         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13735         * DataGridViewColumnSortMode.cs: DataGridView implementation
13736         * DataGridView.cs: DataGridView implementation
13737         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13738         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13739         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13740         * Padding.cs: DataGridView implementation
13741         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13742         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13743         * DataGridViewRowEventHandler.cs: DataGridView implementation
13744         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13745         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13746         * DataGridViewButtonCell.cs: DataGridView implementation
13747         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13748         * DataGridViewEditMode.cs: DataGridView implementation
13749         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13750         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13751         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13752         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13753         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13754         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13755         * DataGridViewCellEventHandler.cs: DataGridView implementation
13756         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13757         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13758         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13759         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13760         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13761         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13762         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13763         * QuestionEventArgs.cs: DataGridView implementation
13764         * IDataGridViewEditingCell.cs: DataGridView implementation
13765         * DataGridViewTriState.cs: DataGridView implementation
13766         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13767         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13768         * DataGridViewColumnCollection.cs: DataGridView implementation
13769         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13770         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13771         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13772         * DataGridViewColumn.cs: DataGridView implementation
13773         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13774         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13775         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13776         * DataGridViewRow.cs: DataGridView implementation
13777         * DataGridViewImageCellLayout.cs: DataGridView implementation
13778         * DataGridViewImageCell.cs: DataGridView implementation
13779         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13780         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13781         * DataGridViewHeaderCell.cs: DataGridView implementation
13782         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13783         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13784         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13785         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13786         * QuestionEventHandler.cs: DataGridView implementation
13787         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13788         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13789         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13790         * DataGridViewCell.cs: DataGridView implementation
13791         * DataGridViewCellEventArgs.cs: DataGridView implementation
13792         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13793         * DataGridViewCellStyle.cs: DataGridView implementation
13794         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13795         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13796         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13797         * TextFormatFlags.cs: DataGridView implementation
13798         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13799         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13800         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13801         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13802         * DataGridViewButtonColumn.cs: DataGridView implementation
13803         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13804         * HandledMouseEventArgs.cs: DataGridView implementation
13805         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13806         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13807         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13808         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13809         * DataGridViewRowCollection.cs: DataGridView implementation
13810         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13811         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13812         * DataGridViewHitTestType.cs: DataGridView implementation
13813         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13814         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13815         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13816         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13817         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13818         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13819         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13820         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13821         * DataGridViewContentAlignment.cs: DataGridView implementation
13822         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13823         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13824         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13825         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13826         * DataGridViewPaintParts.cs: DataGridView implementation
13827         * DataGridViewCellCollection.cs: DataGridView implementation
13828         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13829         * DataGridViewImageColumn.cs: DataGridView implementation
13830         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13831         * DataGridViewElementStates.cs: DataGridView implementation
13832         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13833         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13834         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13835         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13836         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13837         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13838         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13839         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13840         * DataGridViewTextBoxCell.cs: DataGridView implementation
13841         * DataGridViewBand.cs: DataGridView implementation
13842         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13843         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13844         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13845         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13846         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13847         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13848         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13849         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13850         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13851         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13852         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13853
13854 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13855
13856         * ThemeWin32Classic.cs: 
13857           - Draw the outside focus rectangle around buttons
13858           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13859             doesn't use end caps for every dash of a line anymore. This
13860             workaround ignores the forecolor.
13861
13862 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13863
13864         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13865           endian safe.
13866
13867 2005-11-07  Jackson Harper  <jackson@ximian.com>
13868
13869         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13870
13871 2005-11-07  Jackson Harper  <jackson@ximian.com>
13872
13873         * ScrollableControl.cs: Calculate the maximum and change vars
13874         (more) correctly so that scrollbars appear as a sensible size.
13875
13876 2005-11-04  Jackson Harper  <jackson@ximian.com>
13877
13878         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13879         collection.
13880         * TreeView.cs: When the tree is sorted null out the top_node so
13881         that it is recalculated.
13882         - Use dotted lines instead of dashed lines to match MS better.
13883
13884 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13885
13886         * ListView.cs: 
13887           - Implements key search for items. Useful when browsing files with FileDialog
13888           - When changing view mode or when clear the items reset scrollbar positions
13889
13890 2005-11-04  Jackson Harper  <jackson@ximian.com>
13891
13892         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13893         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13894         as to what the method may do as there is no real way of creating a
13895         derived CurrencyManager and calling the method. 
13896
13897 2005-11-03  Jackson Harper  <jackson@ximian.com>
13898
13899         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13900         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13901         method which seems to just be used internally to refresh the tabs.
13902
13903 2005-11-03  Jackson Harper  <jackson@ximian.com>
13904
13905         * TabControl.cs: Implement the remove method. Fix some broken
13906         comments.
13907
13908 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13909
13910         * DateTimePicker.cs:
13911           - Added missing DateTimePickerAccessibleObject class
13912           - Added missing events
13913           - Added OnFontChanged method
13914         * Form.cs: Added missing attributes
13915         * TreeView.cs: Added missing attributes
13916
13917 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13918
13919         * GridItemCollection.cs: Fix signatures
13920
13921 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13922
13923         * XplatUI.cs: Updated build rev/date
13924         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13925           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13926         * Application.cs: Trigger context-specific ExitThread events
13927
13928 2005-11-03  Jackson Harper  <jackson@ximian.com>
13929
13930         * Menu.cs:
13931         * MainMenu.cs:
13932         * GridTableStylesCollection.cs:
13933         * Timer.cs:
13934         * TabPage.cs:
13935         * HelpProvider.cs:
13936         * StatusBar.cs:
13937         * MonthCalendar.cs: Signature fixes
13938
13939 2005-11-03  Jackson Harper  <jackson@ximian.com>
13940
13941         * TreeNodeCollection.cs: Remove should not be virtual.
13942         * TreeView.cs: Implement the last of the missing methods.
13943
13944 2005-11-03  Jackson Harper  <jackson@ximian.com>
13945
13946         * TreeNodeConverter.cs: Implement to get off my class-status back.
13947
13948 2005-11-03  Jackson Harper  <jackson@ximian.com>
13949
13950         * TreeView.cs: Hookup the bits for drag and drop.
13951         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13952         that nodes can be moved from tree to tree easily this just causes
13953         all sorts of problems.
13954         * TreeNodeCollection: Don't need to give treenodes an index and
13955         treeview anymore when they are added, these are computed on the
13956         fly. Also make sure to remove a node before its added.
13957
13958 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13959
13960         * TextControl.cs:
13961           - Added CaretSelection enum
13962           - Added comparison methods to Marker struct, makes selection code
13963             more readable
13964           - Added SelectionStart and SelectionEnd as 'moveable' location for
13965             the CaretDirection enum and handler
13966           - Added selection_prev variable to track optimized invalidation for
13967             word and line selection
13968           - Added SelectionVisible property (returns true if there is a valid 
13969             selection)
13970           - Switched CaretHasFocus to only display the caret if there is no
13971             visible selection
13972           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13973             using the direct character index; should be much faster
13974           - Added various conditional debug statements
13975           - Fixed invalidation calculation for selection ranges
13976           - Added ExpandSelection() method to support word and line selection
13977           - Switched SetSelectionToCaret to use new Marker compare overloads
13978           - Added central IsWordSeparator() method to determine word 
13979             separators/whitespace and FindWordSeparator() to streamline common
13980             usage of IsWordSeparator()
13981         * TextBoxBase.cs:
13982           - Removed unneeded grabbed variable, it was just mirroring
13983             Control.Capture
13984           - No longer firing OnTextChanged event when Text setter is called,
13985             since the base will fire the event for us
13986           - Added handling of Ctrl-Up/Down selection
13987           - Added handling of Shift-Cursorkey selection
13988           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13989             words
13990           - Added handling of Shift and Ctrl-Shift-Home/End selection
13991           - Removed some debug output
13992           - Added handling for single/double/tripple-click to place caret/
13993             select word/select line respectively (Fixes bug #76031)
13994           - Added support for drag expansion of word/line selection
13995         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13996           current selection
13997
13998 2005-11-02  Jackson Harper  <jackson@ximian.com>
13999
14000         * X11Dnd.cs: If the drag is going to and from a MWF window just
14001         copy the data instead of sending it out through the X Selection
14002         mechanism.
14003
14004 2005-11-02  Jackson Harper  <jackson@ximian.com>
14005
14006         * X11Dnd.cs:
14007         * XplatUIX11.cs: When in a drag we don't want motion notify
14008         messages to get passed on to the other controls. This prevents
14009         mouse move messages from showing up in the drag source.
14010
14011 2005-11-02  Jackson Harper  <jackson@ximian.com>
14012
14013         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
14014         the correct button is release to end a drag.
14015         * XplatUIX11.cs: Make the button state internal so the drag system
14016         can access it.  Dragging needs to know about all button releases,
14017         not just left button.
14018
14019 2005-11-02  Miguel de Icaza  <miguel@novell.com>
14020
14021         * Form.cs (Icon): If the icon is null, reset the icon to the
14022         default value. 
14023
14024         * Cursor.cs: When writing the AND-mask bitmap do not include the
14025         number of colors, but hardcode those to two (black and white),
14026         fixes the loading of color cursors (Paint Dot Net).
14027
14028         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
14029         turn off autoscaling.
14030
14031         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
14032
14033 2005-11-02  Jackson Harper  <jackson@ximian.com>
14034
14035         * X11Dnd.cs: Make sure to send a status message if the pointer
14036         enters a control that can not accept a drop, otherwise the cursor
14037         isn't updated correctly. Also tried to compress the lines of code
14038         a bit.
14039
14040 2005-11-02  Jackson Harper  <jackson@ximian.com>
14041
14042         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
14043         set actions correctly.  This isn't perfect as XDND and win32 have
14044         some differences on how you allow actions. I'll clear this up by
14045         adding a path for drag from MWF to MWF windows.
14046         * XplatUIX11.cs: Hook into the dnd system.
14047
14048 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
14049
14050         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
14051         previously shown but they are no longer need it. Very obvious when 
14052         browsing files with FileDialog.
14053
14054 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
14055
14056         * Control.cs: We always need to call OnPaintBackground. We pretty much
14057           ignore AllPaintingInWmPaint and always do the painting there, whether 
14058           it's set or not, since we always ignore the WM_ERASEBKGND message 
14059           (which we don't generate on X11). This fixes #76616.
14060         * Panel.cs: Removed unneeded background painting. This happens properly
14061           in Control.cs already
14062
14063 2005-10-31  Mike Kestner  <mkestner@novell.com>
14064
14065         * Menu.cs: Add items to collection before setting their index.
14066         * MenuItem.cs : add range checking with ArgumentException like MS.
14067         [Fixes #76510]
14068
14069 2005-10-31  Jackson Harper  <jackson@ximian.com>
14070
14071         * ListBox.cs: Invalidate if the area is visible at all not just
14072         contained in the visible rect. Fixes unselection of semi visible
14073         items.
14074
14075 2005-10-31  Jackson Harper  <jackson@ximian.com>
14076
14077         * Control.cs: Consistently name the dnd methods. Make them
14078         internal so we can override them to match some MS behavoir
14079         internally.
14080         * Win32DnD.cs: Use the new consistent names.
14081
14082 2005-10-31  Jackson Harper  <jackson@ximian.com>
14083
14084         * TreeView.cs: Don't draw the selected node when we lose focus.
14085
14086 2005-10-31  Jackson Harper  <jackson@ximian.com>
14087
14088         * X11Dnd.cs: We still need to reset the state even though a full
14089         reset isn't being done, otherwise status's still get sent all over
14090         the place.
14091
14092 2005-10-31  Jackson Harper  <jackson@ximian.com>
14093
14094         * Control.cs: Make the dnd_aware flag internal so the dnd
14095         subsystem can check it. Catch exceptions thrown in dnd handlers to
14096         match MS behavoir.
14097         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
14098         * X11Dnd.cs: Handle null data in the converters. Set the XDND
14099         version when sending a XdndEnter. Use the control/hwnd dnd_aware
14100         flags to reduce the number of dnd enters/status's sent.
14101
14102 2005-10-31  Jackson Harper  <jackson@ximian.com>
14103
14104         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
14105
14106 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
14107
14108         * PictureBox.cs: Fixes 76512
14109
14110 2005-10-28  Jackson Harper  <jackson@ximian.com>
14111
14112         * X11Dnd.cs: Early implementation to support winforms being a drag
14113         source for data on X11. Also restructured the converters so they
14114         can go both ways now.
14115         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
14116         
14117 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
14118
14119         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
14120           clipboard requests
14121
14122 2005-10-27  Jackson Harper  <jackson@ximian.com>
14123
14124         * TreeNode.cs: Implement serialization so my DnD examples will work.
14125
14126 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
14127
14128         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
14129           TreeView.cs: Don't dispose objects that are not owned.
14130           
14131 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
14132
14133         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
14134           should retrieve the current cursor and report that, but XplatUI
14135           doesn't (yet) have an interface for that (and I'm not sure I even
14136           can, on X11)
14137         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
14138           until any message loop processing is done (and the WM_SETCURSOR
14139           replaces the cursor to the proper one)
14140         * XplatUIX11.cs: 
14141           - Fixed override behaviour, we can't set the cursor globally on X11, 
14142             just for our windows.
14143           - Invalidating the System.Drawing X11 display handle when we are
14144             shutting down
14145         * Control.cs: Fix to make csc happy
14146
14147 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
14148
14149         * TextBoxBase.cs: 
14150           - get_Text: Add last line (without trailing newline) to returned
14151             value (Fixes 76212)
14152           - get_TextLength: Count last line in returned length
14153           - ToString: Call Text property instead of duplicating code
14154
14155 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
14156
14157         * ImageList.cs: Dispose ImageAttributes objects.
14158
14159 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14160
14161         * ImageList.cs: Use attribute constructors with less arguments where
14162           possible.
14163
14164 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
14165
14166         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
14167           Use typeof instead of strings when assembly is referenced. Added
14168           some more comments.
14169
14170 2005-10-21  Jackson Harper  <jackson@ximian.com>
14171
14172         * ListView.cs: Raise a double click event. Also tried to somewhat
14173         fix when the selectedindexchanged event is raised. Its still
14174         broken though.
14175
14176 2005-10-21  Jackson Harper  <jackson@ximian.com>
14177
14178         * TreeView.cs: New method to invalidate the plus minus area of a
14179         node without invalidating the whole node (maybe this can be used
14180         in some more places).
14181         * TreeNodeCollection.cs: When adding to an empty node we need to
14182         invalidate its plus minus area so the little block shows up.
14183         
14184 2005-10-21  Jackson Harper  <jackson@ximian.com>
14185
14186         * TreeView.cs: Make sure that when we invalidate a node the bounds
14187         are big enough to cover the selected box and the focus
14188         rectangle. Use a different colour for the lines connecting nodes
14189         so they show up with all themes.
14190
14191 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14192
14193         * NativeWindow.cs: Don't call anything that could call into the driver,
14194           we might be on a different thread.
14195
14196 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
14197
14198         * Control.cs(Dispose): Since Dispose might run on a different thread,
14199           make sure that we call methods that could call into the driver via
14200           invoke, to avoid thread issues
14201
14202 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
14203
14204         * XplatUI.cs: Removed finalizer
14205         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
14206           not allowing to be called on the finalizer thread.
14207
14208 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
14209
14210         * ImageList.cs:
14211           - Reverted r51889 and r51891.
14212           - Added ImageListItem class that stores unmodified image items and image
14213             properties required to create list images until handle is created.
14214           - Added AddItem and moved image creation logic to AddItemInternal.
14215           - Added CreateHandle method that creates images based on unmodified items.
14216           - Added DestroyHandle that changes state to store unmodified items.
14217           - Add and AddStrip methods no more create handle.
14218           - ReduceColorDepth has no return value.
14219           - Dispose destroys handle.
14220           - Modified other methods to reflect the above changes.
14221           - Implemented key support.
14222           - Added profile 2.0 members and attributes.
14223           - Added private Reset and ShouldSerialize methods that provide the same
14224             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
14225             them as they are private.
14226           - Added some more comments about implementation details.
14227
14228 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14229
14230         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
14231
14232 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14233
14234         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
14235
14236 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
14237
14238         * DataGridDrawingLogic.cs: Fixes column hit calcultation
14239         * DataGridColumnStyle.cs: Remove debug message
14240
14241 2005-10-20  Jackson Harper  <jackson@ximian.com>
14242
14243         * TreeView.cs: We can always get input keys regardless of whether
14244         or not editing is enabled. They are used for navigation.
14245
14246 2005-10-20  Jackson Harper  <jackson@ximian.com>
14247
14248         * TreeNode.cs: Use the viewport rect for determining if a node
14249         needs to be moved for visibility. Don't use Begin/End edit. This
14250         calls a full refresh when its done.
14251         * TreeView.cs: New SetBottom works correctly.  Make the viewport
14252         rect property internal so the treenodes can see it. When clicking
14253         on a node we need to ensure that its visible because it might just
14254         be partly visible when clicked.
14255
14256 2005-10-20  Jackson Harper  <jackson@ximian.com>
14257
14258         * TreeNodeCollection.cs: Remove debug code.
14259
14260 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14261
14262         * Datagrid.cs: Implements column sorting in Datagrid
14263         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
14264
14265 2005-10-20  Jackson Harper  <jackson@ximian.com>
14266
14267         * TreeNodeCollection.cs: Remove items properly. Update the correct
14268         area after removing them.
14269
14270 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
14271
14272         * Datagrid.cs: Should not call base.OnPaintBackground
14273
14274 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14275
14276         * XplatUIX11.cs (GetMessage):
14277           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
14278             window instead of client window
14279           - Now properly calculates NC_xBUTTONUP message coordinates
14280           - ScreenToMenu now properly calculates it's coordinates of whole 
14281             window, since menus are in the whole window, not in the client
14282             window
14283           - Added WholeToScreen coordinate translation method
14284
14285 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
14286
14287         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
14288           want to return a message, loop back to the beginning of the function
14289           and grab the next real message to process instead.
14290
14291 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
14292
14293         * Splitter.cs: Properly set limits if no filler control is used
14294
14295 2005-10-19  Jackson Harper  <jackson@ximian.com>
14296
14297         * ColorDialog.cs: Don't show the help button if it is not enabled
14298         instead of disabling it (this is what MS does). Don't create the
14299         panel until the dialog is run, otherwise the vars (such as
14300         ShowHelp) are not set yet.
14301
14302 2005-10-19  Jackson Harper  <jackson@ximian.com>
14303
14304         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
14305         are reduced when adding nodes.
14306         * TreeNode.cs:
14307         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
14308         tree.
14309         
14310 2005-10-19  Jackson Harper  <jackson@ximian.com>
14311
14312         * FolderBrowserDialog.cs: End editing our treeview so the window
14313         actually gets refreshed.
14314
14315 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14316
14317         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
14318           Obsoleted handling of WM_ERASEBKGND, now always draws our background
14319           inside of WM_PAINT
14320
14321 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14322
14323         * MenuAPI.cs: Returns after Hidding window
14324         * XplatUIX11.cs: Added TODO found while debugging menu issues
14325
14326 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
14327
14328         * XplatUIX11.cs: Do not re-map the whole window when it's size
14329           becomes non-zero unless it's supposed to be actually visible
14330
14331 2005-10-18  Jackson Harper  <jackson@ximian.com>
14332
14333         * TreeView.cs: We don't need to keep a count anymore.
14334         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
14335         use the Grow method.
14336
14337 2005-10-18  Jackson Harper  <jackson@ximian.com>
14338
14339         * TreeNodeCollection.cs: Insert is not supported on arrays, so
14340         implement it manually here.
14341
14342 2005-10-18  Jackson Harper  <jackson@ximian.com>
14343
14344         * ImageList.cs: Dont kill the list when the colour depth is
14345         changed, just change the colour depth of all the images.
14346         - Same goes for setting the image size. Just resize them all
14347         instead of killing the list softly.
14348
14349 2005-10-18  Jackson Harper  <jackson@ximian.com>
14350
14351         * Control.cs: Don't invalidate empty rectangles.
14352
14353 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14354
14355         * ListViewItem.cs:
14356           - Adds checked item to the Checked/Item lists (where empty before)
14357           - Do not add items to the Selected lists if they are already present
14358         * ListView.cs:
14359           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
14360           - When deleting items make sure that we delete them for the Selected
14361           and Checked list also.
14362
14363 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
14364
14365         * Label.cs: Dispose objects no longer used
14366         * ThemeWin32Classic.cs: Dispose objects no longer used
14367
14368 2005-10-18  Jackson Harper  <jackson@ximian.com>
14369
14370         * TabControl.cs: Don't refresh the whole control when the tabs are
14371         scrolled, we just need to refresh the tab area.
14372
14373 2005-10-17  Jackson Harper  <jackson@ximian.com>
14374
14375         * XplatUIX11.cs: Compress code a little bit. Only calculate the
14376         after handle when we need it.
14377
14378 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14379
14380         * Control.cs: When the parent size changes, recalculate anchor 
14381           positions. Partial fix for #76462
14382
14383 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
14384
14385         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
14386           drawn. Fixes #76462
14387
14388 2005-10-17  Jackson Harper  <jackson@ximian.com>
14389
14390         * MonthCalendar.cs: Don't create the numeric up down until our
14391         handle is created. Otherwise our handle is created in the
14392         constructor and we don't know if we are a WS_CHILD or WS_POPUP
14393         yet.
14394
14395 2005-10-17  Jackson Harper  <jackson@ximian.com>
14396
14397         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
14398         correctly.
14399
14400 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14401         * TreeNode.cs : small logical fix (was using local var instead of field)
14402         
14403 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14404
14405         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
14406
14407 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
14408
14409         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
14410
14411 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
14412
14413         * Control.cs: 
14414           - Re-implemented anchoring code. My first version was really broken.
14415             This fixes bug #76033. Unlike the previous implementation we will
14416             no longer have round errors since all numbers are calculated from
14417             scratch every time. Removed various anchor-related obsolete vars.
14418           - InitLayout no longer causes layout event firing and layout to be 
14419             performed
14420
14421 2005-10-16  Jackson Harper  <jackson@ximian.com>
14422
14423         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
14424         which was broken).
14425
14426 2005-10-16  Jackson Harper  <jackson@ximian.com>
14427
14428         * TabControl.cs: Remove debug code.
14429
14430 2005-10-16  Jackson Harper  <jackson@ximian.com>
14431
14432         * XEventQueue.cs: Increase the default queue size (very simple
14433         apps needed to grow the queue).
14434         * Hwnd.cs: No finalizer so we don't need to suppress
14435         finalization. Compute the invalid area manually so a new rectangle
14436         does not newto be created.
14437         * ScrollableControl.cs: Don't set any params (otherwise visibility
14438         isn't set correctly).
14439         * MdiChildContext.cs: New constructor takes the mdi parent so it
14440         doesn't have to be computed and avoids a crash on windows. Draw
14441         the window icon properly, and allow the text to be seen.
14442         * Form.cs: Use new MdiChildContext constructor. Make sure the
14443         child context isn't null in wndproc.
14444         * TabControl.cs: Don't set focus, this is muddling keyboard
14445         behavoir. Expand the tab rows when a window size increase will
14446         allow extra tabs to be seen. Don't allow tabs smaller than the
14447         width of a window to be scrolled out of view.
14448         * TreeNode.cs:
14449         * TreeView.cs: Use measure string to calculate a nodes width, the
14450         width is cached and only updated when the text or the font is
14451         changed. Don't check for expand/collapse clicks on the first level
14452         nodes if root lines are disabled.
14453         
14454 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
14455
14456         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
14457
14458 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14459
14460         * DataGridBoolColumn.cs: fixes warning
14461
14462 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
14463
14464         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
14465         to match more to match more precisely the MS Net behavior
14466
14467 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14468
14469         * Hwnd.cs: Added field to track if window is mapped
14470         * XplatUIX11.cs: 
14471           - Unmap windows if they become 0-size, re-map when 
14472             they are >0 again; fixes #76035
14473           - Re-set our error handler after initializing X11Desktop
14474             to override any error handlers Gtk or whatever was called
14475             may have set.
14476
14477 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14478
14479         * CheckedListBox.cs: Removed unused vars
14480         * ListView.cs: Fixed signatures
14481         * RichTextBox.cs: Removed unused vars
14482         * TextBoxBase.cs: Removed unused vars
14483         * XplatUIWin32.cs: Removed unused vars
14484         * XplatUIX11.cs: Removed unused vars
14485         * XplatUI.cs: Updated version and date to latest published
14486
14487 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14488
14489         * Cursor.cs: Added private .ctor to work around a bug in
14490           resourceset (Thanks to Geoff Norton for the help on this)
14491         * SplitterEventArgs.cs: Made fields accessible so we don't
14492           waste boatloads of objects and can reuse the same one
14493           in Splitter
14494         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
14495           any captions and borders when generating screen coordinates
14496         * Splitter.cs: Reimplemented control, now fully complete, uses
14497           rubberband drawing, supports and obeys all properties, has
14498           proper cursors
14499
14500 2005-10-13  Miguel de Icaza  <miguel@novell.com>
14501
14502         * Form.cs (Form): Setup default values for autoscale and
14503         autoscale_base_size;  Make these instance variables, not static
14504         variables. 
14505
14506         (OnLoad): on the first load, adjust the size of the form.
14507
14508 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14509
14510         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
14511           width argument to DrawReversibleRectangle()
14512         * XplatUIWin32.cs, XplatUIX11.cs: 
14513           - Implemented width for DrawReversibleRectangle()
14514           - Added logic to DrawReversibleRectangle that recognizes a zero
14515             width or height and only draws a line in that situation
14516         
14517 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
14518
14519         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
14520         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
14521         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
14522           method (it uses our FosterParent window to get a graphics context)
14523
14524 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
14525
14526         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
14527           and SetWindowBackground methods
14528         * Control.cs:
14529           - Setting proper ControlStyles
14530           - We no longer call XplatUI.SetWindowBackground and XplatUI.
14531             EraseWindowBackground, instead we draw the window background
14532             ourselves in PaintControlBackground. This behaviour is
14533             required to match MS, where, when OnPaintBackground is not
14534             called, the background is not drawn.
14535           - Removed unneeded Refresh() in set_Text
14536         * Hwnd.cs: Dropped the ErasePending support. No longer needed
14537         * XplatUIX11.cs:
14538           - Created DeriveStyles method to translate from CreateParams to
14539             FormBorderStyle and TitleStyle, also handles BorderStyle (which
14540             matches FormBorderStyle enum values)
14541           - Consolidated SetHwndStyles and CalculateWindowRect border/title
14542             style calculations into single DeriveStyles method
14543           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
14544             from redrawing the whole window on any resize or expose.
14545           - Fixed CreateWindow usage of SetWindowValuemask. Before not
14546             all styles were applied to our whole/client window appropriately
14547           - Removed EraseWindowBackground() and SetWindowBackground() methods
14548           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
14549             no longer clear/redraw the background through X
14550           - Removed handling of erase_pending bit, we have no use for it (or
14551             so it seems)
14552         * XplatUIOSX.cs:
14553           - Removed generation and handling of WM_ERASEBKGND message
14554           - Removed EraseWindowBackground() and SetWindowBackground() methods
14555           - Removed handling of hwnd.ErasePending flag
14556         * XplatUIWin32.cs:
14557           - Removed EraseWindowBackground() and SetWindowBackground() methods
14558           - We no longer call EraseWindowBackground on PaintEventStart, we 
14559             ignore the fErase flag, erasing is handled in Control in the
14560             background handler
14561         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
14562           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
14563           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
14564           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
14565           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
14566           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
14567           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
14568
14569 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
14570
14571         * PropertyGrids.cs: Get sub properties
14572         * PropertyGridView.cs: Fix drawing code
14573
14574 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14575
14576         * ListBox.cs: Fixes 76383
14577
14578 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14579
14580         * DataGridTextBoxColumn.cs: Sets location and size before attachment
14581         * ThemeWin32Classic.cs: Fixes border drawing and calculations
14582         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
14583
14584
14585 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14586
14587         * ComboBox.cs: Fixes border drawing
14588
14589 2005-10-10  Miguel de Icaza  <miguel@novell.com>
14590
14591         * MimeIcon.cs: Ignore errors if the file can not be read.
14592
14593 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14594
14595         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
14596          - Fixed border calculations
14597          - Fixed horizontal scrolling in single column listboxes
14598          - Fixed drawing issues
14599
14600 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
14601
14602         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
14603           FormBorderStyle enum
14604         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
14605           code to determine FormBorderStyles from CreateParams
14606         * Form.cs:
14607           - Fixed bug where we'd set the wrong window styles if we were
14608             not creating an MDI window
14609           - Added call to XplatUI.SetBorderStyle when form borders are set
14610         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
14611         * Hwnd.cs:
14612           - Removed obsolete edge style
14613           - Switched from BorderStyle to FormBorderStyle
14614         
14615 2005-10-10  Jackson Harper  <jackson@ximian.com>
14616
14617         * Form.cs: Use the property to get the window handle instead of
14618         accessing it directly. Prevents a null reference exception.
14619
14620 2005-10-10  Jackson Harper  <jackson@ximian.com>
14621
14622         * TreeView.cs: Don't adjust the rect given to DrawString now that
14623         our libgdiplus draws correctly.
14624
14625 2005-10-08  Jackson Harper  <jackson@ximian.com>
14626
14627         * TreeView.cs: Don't try to find the clicked on node if there are
14628         no nodes in the tree.
14629
14630 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14631
14632         * RichTextBox.cs:
14633
14634           restore
14635
14636 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14637
14638         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
14639           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
14640           ErrorProvider.cs:
14641           Use ResPool for brushes and dispose System.Drawing objects that
14642           are not used anymore.
14643
14644 2005-10-07  Jackson Harper  <jackson@ximian.com>
14645
14646         * MdiChildContext.cs: Use the new borders instead of drawing them
14647         ourselves.
14648
14649 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14650
14651         * Calling UpdateBounds after changing the window's BorderStyle 
14652         since the style can change the ClientSize
14653
14654 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14655
14656         * Control.cs: Made PaintControlBackground virtual
14657         * Panel.cs: Overriding PaintControlBackground instead of using paint
14658           event; paint event method was interfering with 'real' users of the
14659           event.
14660
14661 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14662
14663         * ThemeWin32Classic.cs: remove border drawing since it is handled
14664         by the base control class now and was causing double border drawing.
14665
14666 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14667
14668         * Panel.cs: Redraw our background on paint. Not a pretty solution,
14669           but it does seem to match MS behaviour. This fixes bug #75324
14670
14671 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14672
14673         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14674           somewhat hackish looking
14675
14676 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14677
14678         * TextBoxBase.cs:
14679           - We now accept Enter even if AcceptEnter is false, if the containing
14680             form does not have an AcceptButton configured (fixes bug #76355)
14681           - Calculations are now fixed to no longer use Width/Height, but
14682             ClientSize.Width/Height, since we now support borders (this was
14683             a result of fixing borders and therefore bug #76166)
14684           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14685             true (fixes bug #76354)
14686         
14687 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14688
14689         * Control.cs: 
14690           - Defaulting BorderStyle and setting it in XplatUI when our window 
14691             is created
14692           - Added enum check to InternalBorderStyle setter
14693         * XplatUIX11.cs: 
14694           - Added drawing of window borders
14695           - Now properly calculates WM decorations offset for toplevel 
14696             windows (fixes bug #74763)
14697         * XplatUIWin32.cs: 
14698           - Implemented BorderStyles for windows (we're letting win32 draw 
14699             the border for us)
14700           - Fixed the signature for SetWindowLong
14701         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14702           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14703           setting borders
14704         * UpDownBase.cs: Remove drawing of borders, this is handled by
14705           the driver, outside the client area
14706         * ListView.cs: Removed bogus border calculations. The control should
14707           be oblivious to borders, since those are not part of the client
14708           area. 
14709         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14710         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14711           drawing code
14712
14713 2005-10-06  Jackson Harper  <jackson@ximian.com>
14714
14715         * MdiChildContext.cs: Clear out the old virtual position remove
14716         all the unneeded calls to CreateGraphics.
14717
14718 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14719
14720         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14721
14722 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14723
14724         * Form.cs: 
14725           - Added loading and setting of our new default icon
14726           - Only set icon if window is already created
14727
14728 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14729
14730         * Label.cs:
14731           - Do not explicitly set the foreground and background colors, to
14732             allow inheriting from parents (fixes #76302)
14733           - Use Control's InternalBorderStyle property to deal with borders
14734
14735 2005-10-06  Jackson Harper  <jackson@ximian.com>
14736
14737         * MdiChildContext.cs: Use the new xplatui function to draw a
14738         reversible rect.
14739
14740 2005-10-06  Jackson Harper  <jackson@ximian.com>
14741
14742         * Form.cs: Add the parent before creating the child context cause
14743         we need the parent when setting up the child.
14744
14745 2005-10-06  Jackson Harper  <jackson@ximian.com>
14746
14747         * FolderBrowserDialog.cs: redo the tree population code so a
14748         second thread isn't used. Should be a lot faster and more stable
14749         now.
14750
14751 2005-10-05  Jackson Harper  <jackson@ximian.com>
14752
14753         * TreeView.cs: There are no expand/collapse boxes if the node has
14754         no children.
14755
14756 2005-10-05  Jackson Harper  <jackson@ximian.com>
14757
14758         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14759
14760 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14761
14762         * FileDialog.cs: Fix InitialDirectory
14763
14764 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14765
14766         * ComboBox.cs:
14767                 - Fixes changing between styles
14768                 - Fixes simple mode
14769                 - Fixes last item crashing when navigating with keyboard
14770
14771 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14772
14773         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14774
14775 2005-10-05  Jackson Harper  <jackson@ximian.com>
14776
14777         * TreeView.cs: If updating the root node do a full refresh.
14778         * TreeNode.cs: The root node should be expanded by default. Also
14779         added a utility prop to tell if we are the root node.
14780         * TreeNodeCollection.cs: Only refresh if the node we are being
14781         added to is expanded. Also added a comment on a potential
14782         optimization.
14783         
14784 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14785
14786         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14787           in dispose method. Fixes #76330
14788
14789 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14790
14791         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14792
14793                 - Implements vertical and horizontal scrolling using XplatUI
14794                 - Fixes keyboard navagation
14795                 - Fixes EnsureVisible
14796                 - Drawing fixes
14797                 - Handles and draws focus properly
14798
14799
14800 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14801
14802         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14803           Create handle. NET_2_0: Destroy handle when value is null.
14804
14805 2005-10-03  Jackson Harper  <jackson@ximian.com>
14806
14807         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14808         revert and a new patch to prevent the thumb from refreshing so
14809         much.
14810
14811 2005-10-02  Jackson Harper  <jackson@ximian.com>
14812
14813         * ScrollBar.cs: Don't update position if it hasn't actually
14814         changed. This occurs when you hold down the increment/decrement
14815         buttons and the thumb gets to the max/min.
14816
14817 2005-10-01  Jackson Harper  <jackson@ximian.com>
14818
14819         * Form.cs:
14820         * MdiChildContext.cs:
14821         * MdiClient.cs: Implement ActiveMdiChild in Form.
14822
14823 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14824
14825         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14826
14827 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14828
14829         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14830           be found
14831
14832 2005-09-30  Jackson Harper  <jackson@ximian.com>
14833
14834         * ListBox.cs: Don't do a full refresh unless some data has
14835         actually changed.
14836
14837 2005-09-30  Jackson Harper  <jackson@ximian.com>
14838
14839         * TreeView.cs: Make sure that the checkboxes size is factored in
14840         even when not visible.
14841
14842 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14843
14844         * FileDialog.cs: Fix Jordi's build break
14845
14846 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14847
14848         * FileDialog.cs: 
14849                 - Use standard the Windows colours for the combobox as espected
14850                 - Dispose objects that use resouces when no longer need them
14851
14852 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14853
14854         * X11DesktopColors.cs: Initial incomplete implementation
14855         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14856
14857 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14858
14859         * Theme.cs: 
14860           - Switched Theme color names to match the names defined in 
14861             System.Drawing.KnownColors. Life's hard enough, no need to make 
14862             it harder.
14863           - Added setters to all theme color properties so themes can set
14864             their color schemes. The setters also propagate the color changes
14865             to System.Drawing.KnownColors via reflection
14866         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14867           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14868           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14869           use the new, more logical theme color names
14870         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14871           post-NT colors
14872         * ThemeWin32Classic.cs:
14873           - Removed code to set the old classic Windows colors. Instead it
14874             now relies on the colors returned by System.Drawing.KnownColors
14875             which will be either modern static colors (Unix) or colors
14876             read from the user's configuration (Win32)
14877           - Updated to use the new, more logical theme color names
14878           - Switched DataGrid drawing code to use only Theme colors instead of
14879             a mix of System.Drawing.KnownColors and Theme colors
14880           - DrawFrameControl(): Removed code that fills the button area, the
14881             fill would overwrite any previous fill done by a control. This
14882             fixes bug #75338 
14883           - Added DrawReversibleRectangle() stub
14884         * ScrollableControl.cs: Set visible state to false when scrollbars
14885           are removed (pdn fix)
14886         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14887           DrawReversibleRectangle() method to allow drawing primitive 
14888           'rubber bands'
14889         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14890
14891 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14892
14893         * ImageList.cs: Add(Icon): Create handle.
14894
14895 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14896
14897         * ListView.cs:
14898         * ThemeWin32Classic.cs:
14899                 - Fixes detail mode
14900                 - Sets clippings
14901                 - Issues with drawing
14902
14903 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14904
14905         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14906           source has to be the ImageList.
14907
14908 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14909
14910         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14911
14912 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14913
14914         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14915
14916 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14917
14918         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14919
14920 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14921         * GridItem.cs: Fixed TODOs
14922         * GridItemCollection.cs: Added ICollection interface
14923
14924 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14925
14926         * ImageList.cs: Resize icons when needed.
14927
14928 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14929
14930         * ListViewItem.cs
14931                 - Fixes GetBounds and returns on screen rects
14932         * ListView.cs:
14933                 - Fixes vertical and horzintal scrolling of items
14934         * ThemeWin32Classic.cs:
14935                 - Fixes drawing
14936                 
14937 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14938
14939         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14940
14941 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14942
14943         * ImageList.cs: Added comments about handle creation. Moved Handle,
14944           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14945           Handle is created in Add methods.
14946
14947 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14948          
14949         * DataGridDrawingLogic.cs: 
14950                 - Takes rows into account on Colum calculations
14951                 - Returns the column when clickig
14952         * DataGrid.cs:
14953                 - Fixes default HitTestInfo values
14954                 - Fixes HitTestInfo.ToString
14955                 - Fixes ResetBackColor          
14956         
14957 2005-09-28  Jackson Harper  <jackson@ximian.com>
14958
14959         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14960         sizing or cursor changes). Also added some temp code to draw the
14961         titlebars text (Makes dev a little easier).
14962
14963 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14964
14965         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14966
14967 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14968          
14969         * ListBox.cs: Fixes bug 76253
14970
14971 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14972
14973         * ImageList.cs: Added comments about the current implementation. Added
14974           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14975           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14976           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14977           with Bitmap.LockBits for better performance. Revised the whole file to
14978           match MS.NET behaviour and provide better performance. Non-public
14979           interface members are calling public members even when they throw
14980           NotSupportedException for better maintainability. Moved ColorDepth,
14981           ImageSize, ImageStream and TransparentColor implementations to
14982           ImageCollection for better performance as these properties are not used
14983           by ImageList.
14984         * ImageListStreamer.cs: Added a new internal constructor that takes an
14985           ImageList.ImageCollection and serializes Images based on
14986           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14987           match ImageList property name.
14988
14989 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14990
14991         * ListBox.cs: Fixes IndexFromPoint for last item
14992
14993 2005-09-27  Jackson Harper  <jackson@ximian.com>
14994
14995         * Form.cs: Set the position of new mdi children correctly.
14996
14997 2005-09-27  Jackson Harper  <jackson@ximian.com>
14998
14999         * MdiClient.cs: New mdi children need to be added to the back of
15000         the controls collection so the zorder is set correctly. Also add a
15001         count of all the child windows that have been created.
15002
15003 2005-09-27  Jackson Harper  <jackson@ximian.com>
15004
15005         * Form.cs (CreateParams): Setup MDI forms correctly.
15006
15007 2005-09-27  Jackson Harper  <jackson@ximian.com>
15008
15009         * MdiChildContext.cs:
15010         * MonthCalendar.cs:
15011         * UpDownBase.cs:
15012         * ListBox.cs:
15013         * ListView.cs:
15014         * TextBoxBase.cs:
15015         * TreeView.cs:
15016         * ScrollableControl.cs:
15017         * ComboBox.cs: Add implicit controls using the new implict control
15018         functionality in ControlCollection. Also try to block multiple
15019         control add in a suspend/resume layout to save some cycles.
15020         
15021 2005-09-27  Jackson Harper  <jackson@ximian.com>
15022
15023         * Control.cs: Add functionality to the controls collection to add
15024         'implicit controls' these are controls that are created by the
15025         containing control but should not be exposed to the user. Such as
15026         scrollbars in the treeview.
15027         * Form.cs: The list var of the ControlsCollection is no longer
15028         available because of the potential of implicit controls getting
15029         ignored by someone accessing the list directly.
15030
15031 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
15032
15033         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
15034           loose it's parent. (Fixed bug introduced in r49103 when we added
15035           setting the child parent to null on Remove)
15036
15037 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
15038
15039         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
15040         * Splitter.cs: Added missing attributes for BorderStyle property.
15041         * TextBoxBase.cs: Marked Calculate* methods internal.
15042         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
15043         MS.NET.
15044
15045 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
15046          
15047         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
15048
15049 2005-09-25  Jackson Harper  <jackson@ximian.com>
15050
15051         * TreeView.cs: Update the node bounds correctly regardless of
15052         whether the node is visible.
15053
15054 2005-09-25  Jackson Harper  <jackson@ximian.com>
15055
15056         * ImageList.cs: Don't dispose the image after it is added to the
15057         image list. Only reformat images that need to be resized.
15058
15059 2005-09-25  Jackson Harper  <jackson@ximian.com>
15060
15061         * ImageList.cs: Don't set the format when changing the image.
15062
15063 2005-09-25  Jackson Harper  <jackson@ximian.com>
15064
15065         * TreeView.cs: We can't just assume the node has a font. Use the
15066         treeviews font if no node font is available.
15067
15068 2005-09-25  Jackson Harper  <jackson@ximian.com>
15069
15070         * TreeView.cs: Allow the scrollbars to be reset with negative
15071         values.
15072         - Don't add scrollbars to negative sized windows.
15073
15074 2005-09-23  Jackson Harper  <jackson@ximian.com>
15075
15076         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
15077         old Mono.Posix. Also remove some stray code that shouldn't have
15078         been committed.
15079
15080 2005-09-23  Jackson Harper  <jackson@ximian.com>
15081
15082         * TreeView.cs: Attempt at proper sizing of the horizontal
15083         scrollbar. Also don't resize the scrollbars unless they are
15084         visible.
15085
15086 2005-09-23  Jackson Harper  <jackson@ximian.com>
15087
15088         * TreeView.cs: We don't need to expand the invalid area when the
15089         selection changes, as this is all drawn in the node's bounding
15090         box. The area needs to be expanded (previous typo was contracting
15091         it) when the focus rect moves.
15092
15093 2005-09-23  Jackson Harper  <jackson@ximian.com>
15094
15095         * TreeView.cs: Display the selection box under the correct
15096         circumstances. We were rendering white text with no selection box
15097         before.
15098
15099 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
15100
15101         * TextControl.cs(Split): Now updates selection start/end if it points 
15102           into a line that's being split. Fixes a FIXME and bug #75258
15103
15104 2005-09-23  Jackson Harper  <jackson@ximian.com>
15105
15106         * Binding.cs:
15107         * ListControl.cs: Don't use the path when retrieving binding
15108         managers from the binding context. My bat sense tells me that the
15109         path is only used on insertion.
15110
15111 2005-09-22  Jackson Harper  <jackson@ximian.com>
15112
15113         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
15114
15115 2005-09-22  Jackson Harper  <jackson@ximian.com>
15116
15117         * Splitter.cs: There are special cursors used for splitting.
15118         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
15119
15120 2005-09-22  Jackson Harper  <jackson@ximian.com>
15121
15122         * Splitter.cs: Change the cursor appropriately when the splitter
15123         is moused over, so the user actually knows there is a splitter
15124         there.
15125
15126 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15127
15128        * Label.cs : Fix ToString method to give same output as MS.NET
15129
15130 2005-09-22  Jackson Harper  <jackson@ximian.com>
15131
15132         * TreeView.cs: Create the scrollbars when the handle is created
15133         and add them right away, just make them invisble. Also account for
15134         the window being shrunk vertically to the point that the vert
15135         scrollbar needs to be added.
15136         - Remove some 0.5 adjustments to get around anti aliasing issues.
15137         
15138 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
15139          
15140         * MainMenu.cs: Fixes default value
15141         * MenuItem.cs: Fixes default value
15142
15143 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
15144
15145         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
15146
15147 2005-09-21  Jackson Harper  <jackson@ximian.com>
15148
15149         * Control.cs: Don't try to set the border style on the window if
15150         it hasn't been created. When the window is created the border
15151         style will be used.
15152
15153 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15154
15155         * Control.cs (Update): Don't call XplatUI if we don't have a
15156           window handle yet
15157
15158 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15159
15160         * ContainerControl.cs: Instead of throwing an exception, print
15161           a one-time warning about Validate not being implemented
15162         * XplatUIWin32.cs: Removed debug output
15163
15164 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
15165
15166         * Control.cs: Only set XplatUI background if we expect the windowing
15167           system to handle the background. This stops controls that draw their
15168           own background from flickering
15169
15170         * XplatUIX11.cs: Support custom visuals and colormaps for window 
15171           creation. This allows, amongst other things, using MWF X11 windows 
15172           with OpenGL.
15173
15174 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
15175
15176         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
15177           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
15178           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
15179           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
15180           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
15181           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
15182           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
15183           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
15184           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
15185           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
15186           GridColumnStylesCollection.cs, 
15187           IDataGridColumnStyleEditingNotificationService.cs,
15188           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
15189           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
15190           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
15191           TreeNodeCollection.cs, AmbientProperties.cs, 
15192           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15193           DataObject.cs, ErrorProvider.cs, Splitter.cs,
15194           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
15195           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
15196           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
15197           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
15198           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
15199           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
15200           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
15201           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
15202           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
15203           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
15204           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
15205           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
15206           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
15207           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
15208           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
15209           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
15210           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
15211           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
15212           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
15213           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
15214           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
15215           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
15216           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
15217           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
15218           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
15219           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
15220           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
15221           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
15222           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
15223           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
15224           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
15225           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
15226           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
15227           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
15228           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
15229
15230 2005-09-21  Jackson Harper  <jackson@ximian.com>
15231
15232         * TreeNode.cs: Call Before/After Expand not Collapse when
15233         expanding.
15234
15235 2005-09-20  Jackson Harper  <jackson@ximian.com>
15236         
15237         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
15238
15239 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15240          
15241         * ListViewItem.cs:
15242                 - Fixes bug 76120
15243                 - Fixes proper storing of subitems
15244                 - Fixes not updated items
15245
15246 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
15247
15248         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
15249           things if our window handle isn't created yet. Also disabled 
15250           debug for TextBoxBase
15251
15252 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
15253
15254         * MenuAPI.cs: Remove filtering of events to allow menu usage
15255
15256 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15257
15258         * Cursor.cs: Allow null to be passed to Cursor.Current.
15259
15260 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
15261
15262         * ThemeWin32Classic.cs:
15263           - Change some private methods/fields to protected virtual so that 
15264             they can be accessed and overriden in derived classes
15265           - First refactoring of some methods. Derived themes now don't 
15266             need to duplicate the complete code from ThemeWin32Classic
15267         * ThemeNice.cs:
15268           - Added nice StatusBar
15269           - Derive from ThemeWin32Classic and not Theme
15270           - Removed duplicate ThemeWin32Classic code
15271
15272 2005-09-20  Miguel de Icaza  <miguel@novell.com>
15273
15274         * Control.cs (ControlCollection.Add): If the value null is passed
15275         the control is ignored. 
15276
15277         Optimize this loop.
15278
15279 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
15280
15281         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
15282           PostQuitMessage state.
15283         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
15284
15285 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
15286
15287         * Application.cs: Our constructor will never get called, move 
15288           initialization to fields; fixes bug #75933
15289
15290 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
15291
15292         * FileDialog.cs :
15293                 - Allow files to be selected properly using file name
15294                 combo box.
15295                 - Add ability to change diretory (absolute / relative)
15296                 using file name combo box.
15297
15298 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
15299          
15300         * ListBox.cs: 
15301                 - Fixes Multicolumn listboxes item wrong calculations
15302                 - Allows to click when only one item is in the listbox
15303                 - Fixes crash when no items using keyboard navigation
15304
15305 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
15306
15307         * ComboBox.cs: Reverted almost everything from the latest patch which
15308           broke ComboBox
15309
15310 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
15311         
15312         * ToolTip.cs:
15313                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
15314         * ComboBox.cs:
15315                 - When DropDownStyle is Simple, it does not show scrollbar 
15316                 to the last item of the list.
15317                 - When DropDownStyle is Simple, it crashed when the list was 
15318                 scrolled down with the down cursor key.
15319                 - Fixed a bug that when DropDownStyle is DropDownList, the 
15320                 selected item was not shown.
15321                 - The position of the selected item was not preserved when 
15322                 the next dropdown happened.
15323         * ThemeWin32Classic.cs:
15324                 - Items were wrapped at the right end.
15325         * CheckedListBox.cs:
15326                 - Fixed Add method
15327         * ListBox.cs:
15328                 - Items should be fully shown.
15329                 - When resizing and vertical scrollbar disappeared, the item 
15330                 of index 0 should be on the top of the list.
15331                 - GetItemRectangle should consider the size of ver. scrollbar
15332         * StatusBar.cs:
15333                 - SizingGrip area should not be allocated when it is not 
15334                 displayed.
15335                 - Now it reflects MinWidth of the containing panel and 
15336                 fixed a crash that happens when its width becomes so small.
15337
15338 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15339
15340         * CheckedListBox.cs: Fixes bug 76028
15341         * ListBox.cs: Fixes bug 76028
15342
15343 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
15344
15345         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
15346         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
15347
15348 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
15349
15350         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
15351
15352 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15353
15354         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
15355
15356 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15357
15358         * IRootGridEntry.cs: Added
15359         * PropertyGridCommands.cs: Added
15360         * PropertiesTab.cs: Added missing methods and property
15361         * PropertyGridView.cs: Made class internal
15362         * PropertyGridTextBox.cs: Made class internal
15363
15364 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15365
15366         * MimeIcon.cs: Try to check some other environment variables
15367           if "DESKTOP_SESSION" returns "default"
15368
15369 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15370
15371         * ThemeNice.cs: Corrected background colors (e.g. menus)
15372         * ColorDialog.cs: Use correct background colors for controls
15373
15374 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
15375
15376         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
15377
15378 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
15379
15380         * RichTextBox.cs: Added initial implementation
15381         * lang.cs: Removed. Was accidentally checked in long time ago
15382         * TODO: Removed. Contents were obsolete
15383
15384 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15385                                                                                 
15386         * PropertiesTab.cs : Added
15387
15388 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
15389                                                                                 
15390         * PropertyGrid.cs : Update
15391         * PropertyGridView.cs : Update
15392         * System.Windows.Forms.resx : Added images and strings
15393
15394 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
15395
15396         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
15397  
15398 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
15399
15400         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
15401           a busy loop right after the Ungrab the X11 display is otherwise 
15402           blocked
15403
15404 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
15405
15406         * ThemeWin32Classic.cs: Optimise the use of clipping
15407
15408 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
15409
15410         * DataGrid.cs: fixes recursion bug
15411
15412 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
15413
15414         * ThemeNice.cs: 
15415           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
15416           - Cleanup
15417
15418 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
15419
15420         * ThemeNice.cs: Draw nice ProgressBars
15421
15422 2005-09-01  Miguel de Icaza  <miguel@novell.com>
15423
15424         * VScrollBar.cs: Another buglet found by Aaron's tool. 
15425
15426         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
15427         bug finder.
15428
15429 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
15430
15431         * ThemeNice.cs:
15432           - Added nicer menu drawing
15433           - Updated DrawTab
15434           - some refactoring
15435
15436 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15437
15438         * CreateParams.cs (ToString): Made output match MS
15439         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
15440             handle is already created (to avoid forcing window creation)
15441         * XplatUIX11.cs: Set window text to caption after creating window,
15442           in case Text was set before window was created
15443         * Form.cs: Use this.Text instead of a static string as caption
15444
15445 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15446
15447         * NotifyIcon.cs: Don't set the window to visible; this screws
15448           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
15449           OnPaint without a bitmap)
15450         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
15451           happen very often anyway; we could add the check to the WM_PAINT 
15452           event generation code
15453
15454 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
15455
15456         * NotifyIcon.cs: Fill the icon area with a background color, to 
15457           avoid 'residue' when transparent icons are drawn
15458         * XplatUIX11.cs:
15459           - Handle whole_window == client_window when destroying windows
15460           - SystrayAdd(): Set client_window to whole_window value to
15461             get mouse and other events passed to NotifyIcon
15462
15463 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
15464
15465         * Form.cs: Set proper default for Opacity property
15466         * NotifyIcon.cs:
15467           - ShowSystray(): Don't bother creating telling the OS
15468             about the systray item if no icon is provided
15469           - Now handles WM_NCPAINT message to deal with whole/client window
15470             split
15471           - Create window as visible to not get caught by Expose optimization
15472         * Hwnd.cs: Removed debug message
15473         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
15474           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
15475             PaintEventStart/End to use new client argument
15476         * TextBoxBase.cs:
15477           - Commented out debug messages
15478           - Switched PaintEventStart/End to use new client argument
15479         * XplatUI.cs: Added client window bool to PaintEventStart()/
15480           PaintEventEnd() calls, to support drawing in non-client areas
15481         * XplatUIDriver.cs: 
15482           - Added client window bool to PaintEventStart()/PaintEventEnd() 
15483             calls, to support drawing in non-client areas
15484           - Added conditional compile to allow using MWF BeginInvoke 
15485             on MS runtime
15486         * XplatUIX11.cs:
15487           - Added some conditional debug output
15488           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
15489             whole/client window split
15490           - Implemented handling of client argument to PaintEventStart()/End()
15491         * Control.cs:
15492           - Throw exception if BeginInvoke() is called and the window handle
15493             or one of the window's parent handles is not created
15494           - Added conditional compile to allow using MWF BeginInvoke on
15495             MS runtime
15496           - get_Parent(): Only sets parent if handle is created. This avoids
15497             forcing window handle creation when parent is set.
15498           - Now fires Layout and Parent changed events in proper order
15499           - Switched to use Handle instead of window.Handle for Z-Order setting,
15500             the get_Parent() patch above causes us to possibly get null for 'window'
15501           - Implemented handling of client argument to PaintEventStart()/End()
15502           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
15503             default handling)
15504           - Now sends a Refresh() to all child windows when Refresh() is called
15505
15506 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
15507
15508         * Form.cs: Added (non-functional) Opacity property
15509         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
15510
15511 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
15512         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
15513           use export MONO_THEME=nice to activate it.
15514           Currently supported controls:
15515           - Button
15516           - ComboBox
15517           - ScrollBar
15518           - TabControl (TabAlignment.Top only, other will follow)
15519         * ThemeEngine.cs: Add theme nice
15520         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
15521           if enabled
15522
15523 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
15524
15525         * Splitter.cs: Resize docked control and its neighbor.
15526
15527 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15528         -- Making Windows with Menus layout correctly --
15529         * Form.cs : The first leg of the fix
15530                 Menu setter - adjust Client Size as needed to make space for the menu
15531                 SetClientSizeCore - doesn't call base version to be able to pass the 
15532                         menu handle to XplatUI.CalculateWindowRect
15533         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
15534         * XplatUIX11.cs: The critical second leg of the fix
15535                 GetWindowPos needs to use a recalculated client_rect
15536                 so that resizing the window doesn't break layout of child controls. 
15537                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
15538                 Lots of \t\n killed
15539
15540 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
15541
15542         * Label.cs: Now properly recalculates width and height on Font and Text
15543           changes if AutoSize is set
15544
15545 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15546         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
15547
15548 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
15549
15550         * ImageList.cs: Makes ToString method compatible with MS
15551
15552 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
15553
15554         * MenuAPI.cs: fixes bug 75716
15555
15556 2005-08-11 Umadevi S <sumadevi@novell.com>
15557         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
15558
15559 2005-08-11 Umadevi S <sumadevi@novell.com>
15560         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
15561
15562 2005-08-10  Umadevi S <sumadevi@novell.com>
15563         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
15564
15565 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
15566
15567         * Menu.cs: fixes bug 75700
15568         * MenuAPI.cs: fixes navigation issues
15569
15570 2005-08-09  Umadevi S <sumadevi@novell.com>
15571         * CheckedListBox.cs - simple fix for GetItemChecked.
15572
15573 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
15574
15575         * ComboBox.cs: Serveral fixes
15576         * ListBox.cs: Serveral fixes
15577
15578 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15579
15580         * ComboBox.cs: Fixes FindString methods and GetItemHeight
15581         * ListBox.cs: Fixes FindString methods
15582
15583 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15584
15585         * DataGrid.cs: fixes bugs exposed by new tests
15586
15587 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
15588
15589         * Mime.cs: Compile Mono assembly references only if compiling
15590           with Mono (Allows to build with VS.Net again)
15591
15592 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
15593
15594         * Control.cs (PaintControlBackground): Draw background image
15595         corrrectly.
15596         (CheckForIllegalCrossThreadCalls): Stubbed.
15597         
15598         * Form.cs (OnCreateControl): Center when should be centered.
15599         
15600         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
15601
15602 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
15603
15604         * Binding.cs: Binding to properties should be case unsensitive
15605
15606 2005-07-18 vlindos@nucleusys.com
15607
15608         * DataGrid.cs: fixes setmember order
15609
15610 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
15611
15612         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
15613         * FileDialog.cs: FileDialog is now resizable and uses the new
15614           MimeIconEngine
15615
15616 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
15617
15618         * DataGridTextBoxColumn.cs: default value
15619         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
15620         * GridTableStylesCollection.cs: fixes checking MappingName
15621         * DataGridDrawingLogic.cs: fixes drawing logic issues
15622         * DataSourceHelper.cs: rewritten to make compatible with more data sources
15623         * DataGrid.cs: fixes    
15624
15625 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
15626
15627         * MimeGenerated.cs: Use case sensitive comparer for
15628           NameValueCollections
15629
15630 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
15631
15632         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
15633         * ThemeWin32Classic.cs: bug fixes, code refactoring
15634         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
15635         * DataGrid.cs: bug fixes, code refactoring
15636         * DataGridTextBox.cs: bug fixes, code refactoring
15637         * DataGridColumnStyle.cs:  bug fixes, code refactoring
15638         * Theme.cs:  bug fixes, code refactoring
15639
15640 2005-07-01  Peter Bartok  <pbartok@novell.com> 
15641
15642         * TextControl.cs: Quick fix for the reported crash on ColorDialog
15643           and other text box usage
15644
15645 2005-07-01  Jackson Harper  <jackson@ximian.com>
15646
15647         * TabControl.cs: Make sure the bottom of the tab covers the pages
15648         border.
15649
15650 2005-06-30  Peter Bartok  <pbartok@novell.com> 
15651
15652         * Form.cs (ShowDialog): Assign owner of the dialog
15653         * TextBoxBase.cs: Always refresh caret size when deleting, caret
15654           might have been moved to a tag with different height
15655
15656 2005-06-30  Jackson Harper  <jackson@ximian.com>
15657
15658         * Form.cs: Don't create an infinite loop when setting focus
15659         * MenuItem.cs: Don't dirty the parents if we don't have any
15660
15661 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
15662
15663         * LibSupport.cs: Rename
15664
15665 2005-06-29  Peter Bartok  <pbartok@novell.com>
15666
15667         * TextBoxBase.cs: Re-align caret after deleting a character
15668         * TextControl.cs:
15669           - DeleteChars(): Ensure that tag covers the provided position
15670           - StreamLine(): Drop reference for dropped tag
15671
15672 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15673
15674         * TextControl.cs: 
15675           - Selections now work properly, anchoring at the initial location
15676             and properly extending in either direction (SetSelectionToCaret(),
15677             SetSelectionStart() and SetSelectionEnd())
15678           - No longer redraws the whole control on selection change, now
15679             calculates delta between previous and new selection and only
15680             invalidates/redraws that area
15681           - Fixed FindPos() math off-by-one errors
15682           - Changed DeleteChars() to verify the provided tag covers the
15683             provided position, selections may have a tag that doesn't cover
15684             the position if the selection is at a tag border
15685           - Fixed off-by-one errors in DeleteChars()
15686           - Added missing streamlining check in DeleteChars() to remove
15687             zero-length tags
15688           - Implemented Invalidate() method, now properly calculates exposures
15689             between two given lines/positions
15690           - Implemented SetSelection()
15691           - Obsoleted and removed FixupSelection()
15692           - Improved RecalculateDocument() logic, removing code duplication
15693
15694 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15695
15696         * LibSupport.cs: changes to match different input/output arguments.
15697
15698 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15699
15700         * LibSupport.cs: added libsupport.so init routine.
15701
15702 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15703         
15704         * ControlBindingsCollection.cs
15705                 - Throws an exception on null datasource when adding
15706                 - Checks for duplicated bindings when adding
15707
15708 2005-06-28  Jackson Harper  <jackson@ximian.com>
15709
15710         * TreeView.cs (OnKeyDown): Support left and right properly
15711         (navigates as well as expanding and collapsing.
15712         - Add support for Multiply, this expands all the selected nodes
15713         children.
15714         - Fix some tabbing.
15715
15716 2005-06-28  Jackson Harper  <jackson@ximian.com>
15717
15718         * TreeView.cs: Implement keyboard navigation, currently supports,
15719         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15720         support for toggling checkboxes with the space bar.
15721
15722 2005-06-28  Jackson Harper  <jackson@ximian.com>
15723
15724         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15725         tree.
15726
15727 2005-06-28  Jackson Harper  <jackson@ximian.com>
15728
15729         * TreeView.cs: Add missing event.
15730
15731 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15732
15733         * TextControl.cs:
15734           - Made line ending size configurable (now allows for counting 
15735             lineendings as \n or \r\n)
15736           - Added margin to viewport to keep caret visible on right side
15737           - Fixed translation routines for line/pos to documentpos to consider
15738             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15739           - Fixed some line-endings to be unix style
15740           - Fixed Document.FormatText to perform it's calculations 1-based
15741           - Added descriptions for a few methods that might otherwise get 
15742             used wrong
15743           - Added NOTE section with some basic conventions to remember at 
15744             the top of the file
15745           - Major fixup for RichTextBox selection drawing:
15746             * Fixed crashes when multiple tags on a single line were selected
15747             * fixed selection box drawing not overlaying text
15748             * fixed bogus offset calculation for tags not starting at index 1
15749             * Switched behaviour from using multiple Substrings of a 
15750               StringBuilder.ToString() to using multiple 
15751               StringBuilder.ToString(start, length) statements, hoping this is
15752               faster (kept original version commented out in the code, in case
15753               original version was faster)
15754         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15755           alignment != Left
15756         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15757           call it as well
15758
15759 2005-06-27  Jackson Harper  <jackson@ximian.com>
15760
15761         * TabControl.cs: Move to the left and right with the arrow
15762         keys. These keys don't cycle beyond first and last like
15763         tab. Refresh all the tabs when scrolling them to the left or
15764         right.
15765
15766 2005-06-27  Jackson Harper  <jackson@ximian.com>
15767
15768         * TabControl.cs:
15769           - ToString: Added method
15770           - CreateParams: Remove TODO and comment
15771           - OnKeyDown: Cycle through bounds properly.
15772           - SelectedIndex: Scroll to the right or left if we need to
15773           display the newly selected tab.
15774
15775 2005-06-23  Jackson Harper  <jackson@ximian.com>
15776
15777         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15778         set.
15779
15780 2005-06-23  Jackson Harper  <jackson@ximian.com>
15781
15782         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15783         CTRL-SHIFT-TAB, and HOME, END are there any others?
15784
15785 2005-06-23  Jackson Harper  <jackson@ximian.com>
15786
15787         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15788
15789 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15790         
15791         * DataGridTextBoxColumn.cs: fixes and enhancements
15792         * ThemeWin32Classic.cs: fixes and enhancements
15793         * DataGridBoolColumn.cs:  fixes and enhancements
15794         * DataGridDrawingLogic.cs:  fixes and enhancements
15795         * CurrencyManager.cs: fixes and enhancements
15796         * DataGrid.cs: fixes and enhancements
15797         * DataGridColumnStyle.cs:  fixes and enhancements
15798
15799 2005-06-22  Jackson Harper  <jackson@ximian.com>
15800
15801         * TabControl.cs: Add some missing methods that just call into the
15802         base. Make the TabPageCollection's IList interface behave in the
15803         same manner as the MS implementation.
15804
15805 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15806
15807         * TextControl.cs: Added sanity check
15808         * TextBoxBase.cs: 
15809           - Fixed wrapping behaviour, don't set wrap on single line controls
15810             (this fixes the breakage of colordialog introduced in an earlier
15811              checkin)
15812           - Added rudimentary support for autoscrolling right-aligned controls
15813             (still needs fixing, also, center alignment scroll is missing)
15814
15815 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15816         
15817         * ScrollBar.cs: Fixes thumbpos on Maximum values
15818
15819 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15820         
15821         * PropertyGridView.cs: Pass context information to UITypeEditors 
15822
15823 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15824
15825         * TextBoxBase.cs:
15826           - Now calling PositionCaret with absolute space coordinates
15827           - Enabled vertical scrolling
15828           - Better tracking of scrollbar changes, tied into WidthChange
15829             event
15830           - Improved cursor tracking
15831           - Removed debug output
15832         * TextControl.cs:
15833           - PositionCaret coordinates are now works in absolute space, not 
15834             the canvas
15835           - Improved tracking of document size
15836           - Added events for width and height changes
15837
15838 2005-06-21  Peter Bartok  <pbartok@novell.com>
15839
15840         * Form.cs: Set focus to active control when form is activated
15841         * TextControl.cs: 
15842           - Added word-wrap functionality to RecalculateLine() 
15843           - Added some short function descriptions for VS.Net to aid in
15844             writing dependent controls
15845           - Added Caret property, returning the current coords of the caret
15846           - Added ViewPortWidth and ViewPortHeight properties
15847           - Added Wrap property
15848           - Added CaretMoved event
15849           - Removed some old debug code
15850           - Split() can now create soft splits
15851           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15852           - Added method to format existing text
15853           - Fixed size/alignment calculations to use viewport
15854           - RecalculateDocument now can handle changing line-numbers while
15855             calculating lines
15856
15857         * TextBox.cs:
15858           - Added some wrap logic, we don't wrap if alignment is not left
15859           - Added casts for scrollbar var, base class switched types to
15860             also support RichTextBoxA
15861           - Implemented handling of scrollbar visibility flags
15862
15863         * TextBoxBase.cs:
15864           - Switched scrollbars type to RichTextBoxScrollBars to support
15865             RichTextBox
15866           - Added tracking of canvas width/height
15867           - Switched scrollbars to be not selectable (to keep focus on text)
15868           - Added central CalculateDocument() method to handle all redraw
15869             requirements
15870           - Added ReadOnly support
15871           - Added WordWrap support
15872           - Fixed handling of Enter key (we now treat it as a DialogKey)
15873           - Fixed caret positioning when h or v scroll is not zero
15874           - Fixed placing/generation of vertical scrollbar
15875           - Added CalculateScrollBars() method to allow updating scrollbar
15876             limits and visibility
15877           - Fixed handling of horizontal scroll
15878           - Added handling of vertical scroll
15879           - Implemented auto-'jump' when caret moves to close to a left or
15880             right border and there is text to be scrolled into view (currently
15881             there's the potential for a stack overflow, until a bug in
15882             scrollbar is fixed)
15883
15884 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15885         
15886         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15887
15888 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15889
15890         * Mime.cs:
15891         - added inodes.
15892         - return application/x-zerosize for files with size zero
15893           (if no extension pattern matches).
15894         - check matches collection for strings too.
15895         - return only the first mime type if the name value
15896           collection has more than one mime type.
15897
15898 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15899         
15900         * PropertyGrid.cs: Cleaned up some TODOs
15901         * PropertyGridView.cs: Added support for UITypeEditors
15902
15903 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15904         
15905         * DataGrid.cs: clears cached value
15906
15907 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15908
15909         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15910         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15911         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15912         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15913         
15914 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15915
15916         * ThemeWin32Classic.cs: fixes colour
15917
15918 2005-06-15  Peter Bartok  <pbartok@novell.com>
15919
15920         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15921         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15922         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15923         * Control.cs: Added some MWFCategory and MWFDescription attributes
15924         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15925
15926 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15927
15928         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15929         usage
15930
15931 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15932
15933         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15934         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15935         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15936         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15937         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15938         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15939
15940 2005-06-13  Jackson Harper  <jackson@ximian.com>
15941
15942         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15943         isn't printed when the user enables dropping. (X11 does accept
15944         drops).
15945         
15946 2005-06-13  Jackson Harper  <jackson@ximian.com>
15947
15948         * TreeView.cs: Remove some TODOS.
15949
15950 2005-06-13  Jackson Harper  <jackson@ximian.com>
15951
15952         * Form.cs: Hook into the mdi framework.
15953         * MdiClient.cs: Use the base control collections add method so
15954         parents get setup correctly. Set the default back colour and dock
15955         style.
15956         * MdiChildContext.cs: New class, this bad actor handles an
15957         instance of an MDI window. Right now there is only basic
15958         support. You can drag, close, and resize windows. Minimize and
15959         Maximize are partially implemented.
15960
15961 2005-06-13  Jackson Harper  <jackson@ximian.com>
15962
15963         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15964         freaky when both vals are negative. NOTE: There are probably other
15965         places in XplatUIX11 that this needs to be done.
15966
15967 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15968
15969         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15970         * DataGridColumnStyle.cs: fixes signature
15971
15972 2005-06-12  Jackson Harper  <jackson@ximian.com>
15973
15974         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15975         windows.
15976
15977 2005-06-11  Jackson Harper  <jackson@ximian.com>
15978
15979         * StatusBarPanel.cs: Signature cleanups. Implement
15980         BeginInit/EndInit.
15981
15982 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15983
15984         * DataGridTextBoxColumn.cs: Honors aligment
15985         * GridColumnStylesCollection.cs: Contains is case unsensitive
15986         * GridTableStylesCollection.cs: several fixes
15987         * DataGridTableStyle.cs: default column creation
15988         * DataGridDrawingLogic.cs: fixes
15989         * CurrencyManager.cs: ListName property
15990         * DataGrid.cs: multiple styles support
15991         * DataGridColumnStyle.cs: fixes
15992         
15993
15994 2005-06-10  Peter Bartok  <pbartok@novell.com>
15995
15996         * Control.cs(Select): Moved SetFocus call to avoid potential
15997           loops if controls change the active control when getting focus
15998         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15999           the up/down buttons
16000
16001 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
16002
16003         * ImageListConverter.cs: Implemented
16004
16005 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16006
16007         * MonthCalendar.cs: Wired in NumericUpDown control for year
16008
16009 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
16010
16011         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
16012           DoubleClick events, since they are not meant to be fired.
16013
16014 2005-06-09  Peter Bartok  <pbartok@novell.com>
16015
16016         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
16017           Jonathan's standalone controls into MWF, implemented missing
16018           events, attributes and methods; added xxxAccessible classes
16019         * AccessibleObject.cs: Made fields internal so other classes
16020           can change them if needed
16021
16022 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
16023
16024         * UpDownBase.cs: Complete implementation
16025         * NumericUpDown.cs: Complete implementation
16026         * DomainUpDown.cs: Complete implementation
16027
16028 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
16029
16030         * DataGridTextBoxColumn.cs: drawing fixes
16031         * DataGridCell.cs: fixes ToString method to match MSNet
16032         * DataGridTableStyle.cs: fixes
16033         * DataGridBoolColumn.cs: fixes, drawing
16034         * DataGridDrawingLogic.cs: fixes, new methods
16035         * DataGridTextBox.cs: Keyboard and fixes
16036         * DataGrid.cs:
16037                 - Keyboard navigation
16038                 - Scrolling fixes
16039                 - Row selection (single, multiple, deletion, etc)
16040                 - Lots of fixes
16041         
16042 2005-06-07  Jackson Harper  <jackson@ximian.com>
16043
16044         * ThemeWin32Classic.cs: Clear the background area when drawing
16045         buttons.
16046
16047 2005-06-06  Peter Bartok  <pbartok@novell.com>
16048
16049         * ImageListStreamer.cs: Fixed signature for GetData
16050         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
16051         * ComboBox.cs:
16052           - Added missing ChildAccessibleObject class
16053           - Added missing OnXXXFocus overrides, switched to using those
16054             instead of the event handler
16055         * Control.cs:
16056           - Added Parent property for ControlAccessibleObject
16057           - Fixed signatures
16058           - Fixed attributes
16059           - Added ResetBindings()
16060         * ListBindingConverter.cs: Implemented some methods
16061         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
16062         * ImageList.cs: Implemented basic handle scheme, removed TODOs
16063         * ContainerControl.cs: Fixed signature, now subscribing to the
16064           ControlRemoved event instead of overriding the handler, LAMESPEC
16065         * CurrencyManager.cs: Added missing attribute
16066         * MonthCalendar.cs: Added missing properties
16067
16068 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16069
16070         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
16071         
16072 2005-06-06  Gaurav Vaish and Ankit Jain
16073
16074         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
16075         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
16076         
16077 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
16078
16079         * Control.cs: fixes CreateParams Width / Height.
16080
16081 2005-06-05  Peter Bartok  <pbartok@novell.com>
16082
16083         * Win32DnD.cs: Removed compilation warnings
16084
16085 2005-06-05  Peter Bartok  <pbartok@novell.com>
16086
16087         * Control.cs (CreateParams): Since we don't know if one of the
16088           properties we use is overridden, lets make sure if we fail accessing
16089           we continue with a backup plan
16090
16091 2005-06-05  Peter Bartok  <pbartok@novell.com>
16092
16093         * Win32DnD.cs:
16094           - Removed debug output
16095           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
16096             struct
16097           - Plugged resource leak
16098         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
16099           MS size
16100
16101 2005-06-05  Peter Bartok  <pbartok@novell.com>
16102
16103         * XplatUIWin32.cs: Removed DnD code
16104         * Win32DnD.cs: Implemented drop source and drop target functionality
16105
16106 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16107
16108         * UpDownBase.cs: remove duplicate addition of event, enable some code
16109         that was commented out.
16110         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
16111         Validate input when a key is pressed. It works fine now for every
16112         combination of Hexadecimal. Only missing some drawing love when sharing
16113         space with other controls.
16114
16115 2005-06-04  Peter Bartok  <pbartok@novell.com>
16116
16117         * Control.cs:
16118           - We need to pass a window for DragDrop, so enable callback events
16119           - Added DnD callback events when being a DragSource
16120         * XplatUI.cs (StartDrag): Added window handle argument
16121         * XplatUIDriver.cs (StartDrag): Added window handle argument
16122         * QueryContinueDragEventArgs: Made fields internally accessible so
16123           drivers can set them
16124         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
16125           can set them
16126
16127 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
16128
16129         * DataGridTextBoxColumn.cs: column text editing
16130         * DataGridTableStyle.cs: Respect columns styles created by the user
16131         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
16132         * DataGridBoolColumn.cs: bool column editing
16133         * DataGrid.cs: fixes to scrolling, properties, etc
16134         * DataGridTextBox.cs: handle keyboard
16135         * DataGridColumnStyle.cs: fixes
16136
16137 2005-06-02  Jackson Harper  <jackson@ximian.com>
16138
16139         * ImageListStreamer.cs: Somewhat broken implementation of
16140         GetObjectData. The RLE needs some work to match MS properly.
16141
16142 2005-06-02  Jackson Harper  <jackson@ximian.com>
16143
16144         * X11Dnd.cs: Attempting to keep at least one file in MWF
16145         monostyled.
16146
16147 2005-06-02  Peter Bartok  <pbartok@novell.com>
16148
16149         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
16150           that way
16151
16152 2005-06-02  Peter Bartok  <pbartok@novell.com>
16153
16154         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
16155         * XplatUI.cs: Added DoDragDrop() method
16156         * XplatUIDriver.cs: Added DoDragDrop() method
16157
16158 2005-06-02  Jackson Harper  <jackson@ximian.com>
16159
16160         * Splitter.cs: Implement BorderStyle.
16161
16162 2005-06-02  Jackson Harper  <jackson@ximian.com>
16163
16164         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
16165         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
16166         X11 using XDND.
16167
16168 2005-06-02  Peter Bartok  <pbartok@novell.com>
16169
16170         * DataObject.cs:
16171           - Added Data setter
16172           - Fixed broken insertion code for SetData, now also
16173             overwrites any existing entry of the same format name
16174         * Hwnd.cs: Added list of pointers that automatically gets
16175           freed when the window is disposed
16176         * XplatUI.cs: Call driver initialization method when loading
16177           a driver
16178         * Control.cs:
16179           - OnDragLeave takes EventArgs, not DragEventArgs
16180           - Added setting of WS_EX_ACCEPTFILES style when dropping is
16181             supported
16182           - Forces style update when drop state changes
16183         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
16184           not perfect since we cannot (yet) call the IDataObject.GetData()
16185           method, we keep getting 0x80004005 error, dunno why)
16186
16187 2005-06-02  Peter Bartok  <pbartok@novell.com>
16188
16189         * DragEventArgs.cs: Make fields internal so we can cache the
16190           object and re-set the fields from XplatUI
16191
16192 2005-06-02  Jackson Harper  <jackson@ximian.com>
16193
16194         * Control.cs: Add some internal methods so the DnD subsystem can
16195         raise DnD events. Also call into the driver when AllowDrop is set.
16196         * XplatUI.cs:
16197         * XplatUIDriver.cs: New method for setting whether or not a window
16198         is allowed to accept drag and drop messages.
16199                 
16200 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
16201         
16202         * ScrollBar.cs: Make sure that values sent in Scroll events
16203         are always between Maximum and Minimum.
16204
16205 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
16206
16207         * Menu.cs: Call MenuChanged when menuitem visibility has been
16208         changed.
16209         * MenuItem.cs: Rebuild menu when item is (not) visible.
16210         * MainMenu.cs: MainMenu has special MenuChanged.
16211         * Theme.cs: Caption and FrameBorderSize are not fixed.
16212         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
16213         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
16214         * XplatUIX11.cs,
16215         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
16216         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
16217
16218 2005-05-30  Jackson Harper  <jackson@ximian.com>
16219
16220         * DataFormat.cs: We can't statically initialize this stuff because
16221         it calls into the xplatui and could create a loop. So we lazy init
16222         it.
16223
16224 2005-05-28  Jackson Harper  <jackson@ximian.com>
16225
16226         * Control.cs: Proper implementation of Product(Name/Version).
16227
16228 2005-05-27  Jackson Harper  <jackson@ximian.com>
16229
16230         * DataObject.cs: Dont crash if no data is found.
16231
16232 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
16233         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
16234                 as per status page, guessing it should be set to true
16235
16236 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
16237
16238         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
16239         * DataGridTableStyle.cs: set proper formatting text, def header text
16240         * ThemeWin32Classic.cs: new themable paramaters
16241         * DataGridBoolColumn.cs: paint check box, get data, fixes
16242         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
16243         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
16244         * DataGridColumnStyle.cs: fixes
16245         * Theme.cs: new themable paramaters
16246                 
16247 2005-05-26  Peter Bartok  <pbartok@novell.com>
16248
16249         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
16250
16251 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16252         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
16253
16254 2005-05-24  Peter Bartok  <pbartok@novell.com>
16255
16256         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
16257           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
16258           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
16259           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
16260           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
16261           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
16262           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
16263           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
16264           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
16265           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
16266           missing attributes, etc
16267         * DataGridPreferredColumnWidthTypeConverter.cs: Added
16268
16269 2005-05-24  Peter Bartok  <pbartok@novell.com>
16270
16271         * Help.cs: Added, implemented trivial functions, throws up MessageBox
16272           when user tries to get help
16273         * DataObject.cs, DataFormats.cs, LinkArea.cs,
16274           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
16275           to suppress warnings
16276         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
16277           avoid unreachable code warning
16278
16279 2005-05-20  Peter Bartok  <pbartok@novell.com>
16280
16281         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
16282
16283 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16284
16285         * DataGridTextBoxColumn.cs: Basic painting methods
16286         * DataGridTableStyle.cs: Set table style in the column
16287         * ThemeWin32Classic.cs: Use Theme for colors
16288         * DataGridDrawingLogic.cs: Implement more drawing
16289         * DataGrid.cs: drawing, theming, enhacements, fixes
16290         * DataGridColumnStyle.cs: fixes, drawing
16291         * Theme.cs: theming for Datagrid
16292
16293 2005-05-20  Peter Bartok  <pbartok@novell.com>
16294
16295         * Cursor.cs: Implemented GetObjectData() method
16296
16297 2005-05-20  Peter Bartok  <pbartok@novell.com>
16298
16299         * Cursors.cs: Added setting of cursor name
16300         * Cursor.cs:
16301           - Implemented constructors
16302           - Implemented Draw and DrawStretched
16303           - Implemented Current property
16304           - Implemented == and != operators
16305           - Implemented Dispose()
16306           - Implemented ToString
16307           - Added missing attributes
16308         * XplatUIX11.cs:
16309           - Added missing reset for OverrideCursor when DoEvents is called
16310           - Fixed creation of cursor, logic was wrong
16311         * XplatUIWin32.cs:
16312           - Added missing reset for OverrideCursor when DoEvents is called
16313           - Fixed creation of cursor, bit arrays were swapped
16314         * Clipboard.cs: Removed obsolete MonoTODO attribute
16315
16316 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16317
16318         * ComboBox.cs: fixes OnSelectedItemChanged
16319         * ControlBindingsCollection.cs: fixes item range check
16320
16321 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
16322
16323         * UpDownBase.cs:
16324                 - Calc preferred height properly
16325                 - Implement missing properties
16326                 
16327         * NumericUpDown.cs: Implement missing events
16328
16329 2005-05-19  Jackson Harper  <jackson@ximian.com>
16330
16331         * TabControl.cs: New method that resizes the tab pages before
16332         redrawing them. This as needed as the control is double buffered
16333         and sizing will not be recalculated unless ResizeTabPages is
16334         called.
16335         * TabPage.cs: Set base.Text instead of Text in the constructor so
16336         that UpdateOwner does not get called. Use the new Redraw method of
16337         TabControl instead of Refresh so the sizing is recalculated.
16338         * ThemeWin32Classic.cs: Draw the text for button tabs.
16339
16340 2005-05-19  Jackson Harper  <jackson@ximian.com>
16341
16342         * Control.cs: Paint control background images. Fix typo where
16343         PaintControlBackground was not getting called correctly.
16344
16345 2005-05-19  Peter Bartok  <pbartok@novell.com>
16346
16347         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
16348           I can investigate, apparently I broke FileDialog
16349
16350 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
16351
16352         * AxHost.cs: Some simple properties.
16353         * Control.cs: window must be accessible after ctor.
16354         * Form.cs: Added TransparencyKey property.
16355         * TextBoxBase.cs: Implemented Clear. Text property can be null.
16356         * XplatUIWin32.cs: SetBorderStyle implemented.
16357
16358 2005-05-18  Peter Bartok  <pbartok@novell.com>
16359
16360         * DataObject.cs: Entries are not global but particular to the
16361           DataObject, now it behaves that way
16362         * XplatUIWin32.cs: Implemented Clipboard methods
16363         * Clipboard.cs: Implemented
16364         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
16365         * XplatUIOSX.cs: Updated to final clipboard prototypes
16366         * XplatUIX11.cs: Implemented Clipboard methods
16367         * XplatUIDriver.cs: Updated to final clipboard prototypes
16368         * XplatUIStructs.cs:
16369           - Added BITMAPINFOHEADER struct
16370           - Added ClipboardFormats enum
16371         * X11Structs.cs:
16372           - Added ClipboardStruct
16373           - Added Atom enum items for clipboard types
16374           - Fixed atom types for Selection event structures
16375         * DataFormats.cs:
16376           - Added internal properties and methods for drivers to enumerate
16377             all known formats
16378           - Switched initialization method to allow drivers to assign their
16379             own IDs even for the MS predefined clipboard IDs
16380         * XplatUI.cs: Updated to final clipboard interface
16381
16382 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16383         * PropertyGridView.cs: Fixed compiler warnings.
16384
16385 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
16386         * PropertyGrid.cs: Added some event calls
16387         * PropertyGridView.cs: Change drawing code to use double buffering
16388         * PropertyGridTextBox.cs: Changed Text property name
16389         * GridItem.cs: Added Bounds property.
16390         * GridEntry.cs: Added Bounds property.
16391
16392 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
16393
16394         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
16395         since GetType() may not return the correct type if the object is
16396         a remoting proxy.
16397
16398 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
16399
16400         * TreeNodeCollection.cs: fixes get/set item ranges
16401         
16402 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16403
16404         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
16405                 
16406 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
16407
16408         * ComboBox.cs: Fix item range comparation
16409         * ListView.cs: Fix item range comparation
16410
16411 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16412
16413         * FontDialog.cs:
16414           - Clear example panel when OnPaint is called
16415           - Better solution for displaying the example panel text
16416           - Select default indexes in the ListBoxes
16417
16418 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16419
16420         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
16421
16422 2005-05-11  Peter Bartok  <pbartok@novell.com>
16423
16424         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
16425         * SelectionRangeConverter.cs: Implemented
16426         * PropertyGrid.cs: Fixed attribute value
16427         * Control.cs:
16428           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
16429           - Added Sebastien Pouliot's CAS Stack Propagation fixes
16430         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
16431           that's common to all drivers. First methods to go there are
16432           Sebastien Pouliot's CAS Stack Propagation helper methods
16433         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
16434           Sebastien Pouliot for CAS Stack Propagation
16435
16436 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
16437
16438         * OSXStructs.cs:
16439           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
16440
16441 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
16442
16443         * DataGridTextBoxColumn.cs: fixed some members
16444         * GridColumnStylesCollection.cs: indexed column is case insensitive
16445         * DataGridTableStyle.cs: fixes
16446         * ThemeWin32Classic.cs: add new theme parameter
16447         * Theme.cs: add new theme parameter
16448         * DataGridDrawingLogic.cs: Datagrid's drawing logic
16449         * DataGrid.cs: fixes, new internal properties, etc.
16450         * DataGridColumnStyle.cs: allows to set grid value
16451         *
16452
16453 2005-05-10  Peter Bartok  <pbartok@novell.com>
16454
16455         * AccessibleObject.cs:
16456           - Removed MonoTODO attribute on help, method is correct
16457           - Fixed Bounds property
16458         * AxHost.cs: Moved MonoTODO
16459         * ButtonBase.cs: Now setting AccessibleObject properties
16460         * RadioButton.cs: Setting proper AccessibleObject role
16461         * CheckBox.cs: Setting proper AccessibleObject role
16462         * ControlBindingsCollection.cs: Added properties, methods and attributes
16463         * DataFormats.cs: Fixed awkward internal API, and changed to enable
16464           userdefined DataFormats.Format items as well
16465         * ListControl.cs: Removed data_member from the public eye
16466         * OpenFileDialog.cs:
16467           - Made class sealed
16468           - Added missing attributes
16469         * SaveFileDialog.cs: Added missing attributes
16470         * ImageListStreamer.cs: Fixed code that caused warnings
16471         * LinkLabel.cs: Removed unreachable code
16472         * TreeView.cs: Fixed code that caused warnings
16473         * PropertyGridView.cs: Fixed code that caused warnings
16474         * GridColumnStylesCollection.cs: Added missing attributes
16475         * GridTableStylesCollection: Added missing attribute
16476         * PropertyManager: Added .ctor
16477         * SecurityIDType: Added
16478         * DataObject.cs: Implemented class
16479         * LinkArea.cs: Added missing attribute
16480
16481 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
16482
16483         * RadioButton.cs: call base method to allow to fire OnClick event
16484         * UpDownBase.cs: OnMouseUp call base method
16485         * CheckedListBox.cs: call base method before returning
16486         * TrackBar.cs: call base method before returning
16487         
16488
16489 2005-05-10  Peter Bartok  <pbartok@novell.com>
16490
16491         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
16492           for messages
16493
16494 2005-05-10  Peter Bartok  <pbartok@novell.com>
16495
16496         * DataFormats.cs: Implemented
16497         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
16498           XplatUIX11.cs: Added Clipboard APIs
16499         * XplatUIWin32.cs: Implemented Clipboard APIs
16500         * FolderBrowserDialog.cs: Added missing event, attributes
16501
16502 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
16503
16504         * CheckBox.cs: call base method to allow to fire OnClick event
16505
16506 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
16507
16508         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
16509
16510 2005-05-06  Peter Bartok  <pbartok@novell.com>
16511
16512         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
16513         * Screen.cs: Implemented
16514         * HelpNavigator.cs: Added
16515         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
16516           property
16517         * HelpProvider.cs: Implemented all we can do until we have a CHM
16518           help library (which means that "What's This" does work now)
16519
16520 2005-05-06  Jackson Harper  <jackson@ximian.com>
16521
16522         * XplatUIX11.cs: Fix waking up the main loop.
16523                 
16524 2005-05-05  Peter Bartok  <pbartok@novell.com>
16525
16526         * XplatUI.cs: Updated revision
16527         * Form.cs: Removed enless loop
16528         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
16529         * Label.cs (OnPaint): Added call to base.OnPaint()
16530         * ToolTip.cs: Made ToolTipWindow reusable for other controls
16531         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
16532         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
16533         * AxHost.cs: Added
16534         * ButtonBase.cs: Moved base.OnPaint() call to end of method
16535         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
16536           to ToolTip.ToolTipWindow for drawing and size methods; this allows
16537           reuse of ToolTipWindow by other controls
16538         * SizeGrip.cs: Moved base.OnPaint() call to end of method
16539         * XplatUIX11.cs: Now clipping drawing area (experimental)
16540         * PictureBox.cs: Moved base.OnPaint() call to end of method
16541         * Theme.cs: Fixed ToolTip abstracts to match new format
16542         * ErrorProvider.cs: Implemented
16543
16544 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
16545
16546         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
16547         * LinkLabel.cs:
16548                 - Adds cursors
16549                 - Handles focus
16550                 - Implements LinkBehavior
16551                 - Fixes many issues
16552
16553 2005-05-03  Jackson Harper  <jackson@ximian.com>
16554
16555         * ListView.cs: Calculate the scrollbar positioning on resize and
16556         paint, so they get put in the correct place.
16557
16558 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16559
16560         * ColorDialogs.cs: The small color panels are now handled by
16561           SmallColorControl. This fixes drawing of the focus rectangle
16562           and adds a 3D border.
16563
16564 2005-05-03  Peter Bartok  <pbartok@novell.com>
16565
16566         * Control.cs: Modified version of Jonathan Chamber's fix for
16567           double-buffering
16568
16569 2005-05-03  Jackson Harper  <jackson@ximian.com>
16570
16571         * ListView.cs: Remove redraw variable. Control now handles whether
16572         or not a redraw needs to be done, and will only raise the paint
16573         event if redrawing is needed.
16574
16575 2005-05-03  Jackson Harper  <jackson@ximian.com>
16576
16577         * Splitter.cs: No decorations for the splitter form. Cache the
16578         hatch brush.
16579
16580 2005-05-03  Jackson Harper  <jackson@ximian.com>
16581
16582         * TreeView.cs: Use dashed lines to connect nodes. Use the
16583         ControlPaint method for drawing the focus rect instead of doing
16584         that in treeview.
16585
16586 2005-05-02  Peter Bartok  <pbartok@novell.com>
16587
16588         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
16589
16590 2005-04-29  Jackson Harper  <jackson@ximian.com>
16591
16592         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
16593         entire image buffer. Just clear the clipping rectangle.
16594
16595 2005-04-29  Jackson Harper  <jackson@ximian.com>
16596
16597         * ThemeWin32Classic.cs: Don't draw list view items that are
16598         outside the clipping rectangle.
16599
16600 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
16601
16602         * ListBox.cs: added horizontal item scroll
16603
16604 2005-04-29  Jackson Harper  <jackson@ximian.com>
16605
16606         * ThemeWin32Classic.cs: Remove some old debug code that was
16607         causing flicker with the new double buffering code.
16608
16609 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
16610
16611         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
16612         behave like combobox and comboboxlist (still not sure if this is
16613         correct though).
16614
16615 2005-04-28  Jackson Harper  <jackson@ximian.com>
16616
16617         * ThemeWin32Classic.cs: Don't fill the middle of progress
16618         bars. This fills areas outside of the clip bounds that don't need
16619         to be filled.
16620
16621 2005-04-28  Jackson Harper  <jackson@ximian.com>
16622
16623         * Control.cs: Don't expose functionality to touch the image buffers.
16624         * ProgressBar.cs:
16625         * ListView.cs: We do not need to (and no longer can) manipulate
16626         the image buffers directly. All of this is handled by Control.
16627
16628 2005-04-28  Peter Bartok  <pbartok@novell.com>
16629
16630         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16631           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
16632           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
16633
16634 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16635
16636         * Combobox:
16637                 - Adjust control's height for non-simple comboboxes (bug fix)
16638                 - Remove dead code
16639         * MenuAPI.cs: remove unused var
16640         * ScrollBar.cs: remove unsed var
16641                  
16642         * ListBox.cs: unselect items when clearing
16643
16644 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16645
16646         * ListControl.cs: honors OnPositionChanged and default Selected Item
16647         * ListBox.cs: unselect items when clearing
16648
16649 2005-04-27  Jackson Harper  <jackson@ximian.com>
16650
16651         * X11Keyboard.cs: Initialize a default keyboard and give a warning
16652         if a "correct" keyboard is not found. This will make us not crash,
16653         but might give some users bad keyboard layouts...seems to be the
16654         same thing rewind does.
16655
16656 2005-04-27  Jackson Harper  <jackson@ximian.com>
16657
16658         * BindingManagerBase.cs: Attach the current/position changed
16659         handlers to their respective events.
16660
16661 2005-04-27  Jackson Harper  <jackson@ximian.com>
16662
16663         * Control.cs: Make sure that the first WM_PAINT does a full draw,
16664         not just a blit.
16665         * ThemeWin32Classic.cs: Don't fill the background for picture
16666         boxes. This could overright user drawing.
16667         * ComboBox.cs: Just fill the clipping rect not the entire client
16668         rect when drawing the background. This prevents pieces of the
16669         image buffer from getting overwritten and is theoretically faster.
16670
16671 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
16672
16673         * ComboBox.cs: Databinding support fixes, fire missing events
16674         * ListControl.cs: implement missing methods and properties, fixes
16675         * ThemeWin32Classic.cs: Databiding support on Drawing
16676         * CheckedListBox.cs: Databinding support fixes, fire missing events
16677         * ListBox.cs: Databinding support fixes, fire missing events
16678         
16679 2005-04-25  Peter Bartok  <pbartok@novell.com>
16680
16681         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16682
16683 2005-04-25  Jackson Harper  <jackson@ximian.com>
16684
16685         * TreeView.cs: Use the horizontal scrollbars height not width when
16686         determining how much of the client area is available.
16687
16688 2005-04-25  Jackson Harper  <jackson@ximian.com>
16689
16690         * Control.cs: Double buffering is handled differently now. As per
16691         the spec, the extra buffer is created in the WM_PAINT message and
16692         passed down to the control's drawing code.
16693         * GroupBox.cs:
16694         * Label.cs:
16695         * CheckBox.cs:
16696         * ProgressBar.cs:
16697         * RadioButton.cs:
16698         * ColorDialog.cs:
16699         * ComboBox.cs:
16700         * PropertyGridView.cs:
16701         * UpDownBase.cs:
16702         * MessageBox.cs:
16703         * MenuAPI.cs:
16704         * ListView.cs:
16705         * ButtonBase.cs:
16706         * SizeGrip.cs:
16707         * ScrollBar.cs:
16708         * ListBox.cs:
16709         * TrackBar.cs:
16710         * ToolBar.cs:
16711         * PictureBox.cs:
16712         * DateTimePicker.cs:
16713         * StatusBar.cs:
16714         * TreeView.cs: Update to new double buffering system.
16715         * MonthCalendar.cs: Uncomment block, as Capture is now
16716         working. Update to new double buffering
16717         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16718         * PaintEventArgs.cs: New internal method allows us to set the
16719         graphics object. This is used for double buffering.
16720         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16721         rectangle. The internal paint_area var has been removed from
16722         StatusBar. The clipping rect should be used instead.
16723         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16724         * TabPage.cs: The RefreshTabs method was removed, so just call the
16725         tab controls Refresh method now.
16726         * TabControl.cs: Update to new double buffering. Make sure the
16727         handle is created before sizing the tab pages, otherwise we will
16728         get stuck in a loop.
16729
16730 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16731
16732         * LinkLabel.cs: Fix typo, bug #74719; patch
16733           from Borja Sanchez Zamorano
16734
16735 2005-04-22  Jackson Harper  <jackson@ximian.com>
16736
16737         * TreeNode.cs: Implement Handle stuff.
16738         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16739
16740 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16741
16742         * DataGridTextBoxColumn.cs: call base constructors, fixes
16743         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16744         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16745         * DataGridTableStyle.cs: implements create default column styles
16746         * DataGridBoolColumn.cs: which types can handle
16747         * DataGrid.cs: missing methods, fixes, new functionality
16748         * DataGridColumnStyle.cs: fixes
16749
16750 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16751         * FolderBrowserDialog.cs:
16752         - Use a thread to fill the TreeView
16753         - Adjusted some sizes
16754
16755 2005-04-19  Peter Bartok  <pbartok@novell.com>
16756
16757         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16758           property. Fixes #74360.
16759
16760 2005-04-19  Jackson Harper  <jackson@ximian.com>
16761
16762         * XEventQueue.cs: Lock when getting the lockqueue size.
16763         * PictureBox.cs: Call base OnPaint
16764         
16765 2005-04-19  Peter Bartok  <pbartok@novell.com>
16766
16767         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16768           messages were no longer being processed (this broke BeginInvoke)
16769
16770           
16771 2005-04-18  Jackson Harper  <jackson@ximian.com>
16772
16773         * TreeView.cs: buglet that caused node images to get drawn
16774         regardless of whether or not they were in the clipping rectangle.
16775
16776 2005-04-18  Jackson Harper  <jackson@ximian.com>
16777
16778         * CurrencyManager.cs: There are four rules for GetItemProperties:
16779         - If the type is an array use the element type of the array
16780         - If the type is a typed list, use the type
16781         - If the list contains an Item property that is not an object, use
16782         that property
16783         - use the first element of the list if there are any elements in
16784         the list.
16785         
16786 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16787
16788         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16789         click. This handles offsets for scrolling properly and reduces
16790         memory. Also fixed GetNode to not offset now that TopNode works
16791         properly.
16792         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16793         
16794 2005-04-17  Jackson Harper  <jackson@ximian.com>
16795
16796         * CursorConverter.cs: Initial implementation.
16797
16798 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16799
16800         * ListControl.cs: work towards complex data binding support on ListControl
16801         * CurrencyManager.cs: work towards complex data binding support on ListControl
16802         * ListBox.cs: work towards complex data binding support on ListControl
16803
16804
16805 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16806
16807         * GridTableStylesCollection.cs: fixes name and constructor
16808         * DataGridTableStyle.cs: fixes
16809         * DataGridBoolColumn.cs: fixes names and constructors
16810         * DataGrid.cs: define methods and properties. Some init implementations
16811         * DataGridCell.cs: define methods and properties. Some init implementations
16812         * GridTablesFactory.cs: Define methods and properties
16813
16814 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16815
16816         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16817         graphics port changes.  We still want the coordinates in global screen
16818         coordinates.
16819
16820 2005-04-14  Jackson Harper  <jackson@ximian.com>
16821
16822         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16823         check plus minus or checkbox clicks unless those features are enabled.
16824
16825 2005-04-14  Jackson Harper  <jackson@ximian.com>
16826
16827         * TreeView.cs: Add methods for setting the top and bottom visible
16828         nodes. TreeNode::EnsureVisible uses these methods.
16829         * TreeNode.cs: Implement EnsureVisible
16830
16831 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16832
16833         * Form.cs: Pospone menu assignation if the window has not been created yet
16834         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16835         size and position
16836
16837 2005-04-12  Jackson Harper  <jackson@ximian.com>
16838
16839         * TreeView.cs: Set the TopNode properly when scrolling
16840         occurs. This has the added benifit of reducing the amount of
16841         walking that needs to be done when drawing. Also removed an old
16842         misleading TODO.
16843         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16844         
16845 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16846
16847         * Timer.cs: fixes interval setting when the timer is already enabled
16848         
16849 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16850
16851         * FolderBrowserDialog.cs: First approach
16852
16853 2005-04-09  Peter Bartok  <pbartok@novell.com>
16854
16855         * FolderBrowserDialog: Added
16856
16857 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16858
16859         * LinkLabel.cs: move drawing code into the theme
16860         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16861         * Theme.cs: define DrawLinkLabel method
16862
16863 2005-04-05  Jackson Harper  <jackson@ximian.com>
16864
16865         * BindingContext.cs: Use weak references so these bad actors don't
16866         stay alive longer then they need to.
16867
16868 2005-04-05  Jackson Harper  <jackson@ximian.com>
16869
16870         * ListControl.cs: Basic implementation of complex databinding.
16871         * ComboBox.cs:
16872         * ListBox.cs: Add calls to ListControl databinding methods.
16873
16874 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16875
16876         * FileDialog.cs:
16877           - Don't change PopupButtonState to Normal when the
16878             PopupButton gets pressed several times.
16879           - Renamed ButtonPanel to PopupButtonPanel
16880
16881 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16882
16883         * ColorDialog.cs: Use cached objects instead of creating them
16884         * LinkLabel.cs: Use cached objects instead of creating them
16885         * Splitter.cs: Use cached objects instead of creating them
16886         * FontDialog.cs: Use cached objects instead of creating them
16887         * PropertyGridView.cs: Use cached objects instead of creating them
16888         * MessageBox.cs: Use cached objects instead of creating them
16889         * FileDialog.cs: Use cached objects instead of creating them
16890         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16891         * TreeView.cs: Use cached objects instead of creating them
16892         
16893 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16894
16895         * Control.cs: use Equals to compare the font since no == op
16896         * ScrollBar.cs: use Equals to compare the font since no == op
16897
16898 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16899
16900         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16901
16902 2005-04-01  Jackson Harper  <jackson@ximian.com>
16903
16904         * Binding.cs: Implement IsBinding.
16905         * BindingManagerBase.cs:
16906         * PropertyManager.cs:
16907         * CurrencyManager.cs: Add IsSuspended property.
16908
16909 2005-04-01  Jackson Harper  <jackson@ximian.com>
16910
16911         * Binding.cs: Had some IsAssignableFrom calls backwards.
16912
16913 2005-04-01  Jackson Harper  <jackson@ximian.com>
16914
16915         * Binding.cs: Handle null data members when pulling data.
16916         * PropertyManager.cs: Handle the data member being a property that
16917         does not exist.
16918
16919 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16920
16921         * DataGridTextBoxColumn.cs: fixes signature
16922         * DataGrid.cs: calls right constructor
16923
16924 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16925
16926         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16927         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16928         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16929         * DataGridTableStyle.cs: implements DataGridTableStyle
16930         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16931         * DataGridTextBox.cs: implements DataGridTextBox
16932         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16933
16934 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16935
16936         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16937
16938 2005-03-29  Peter Bartok  <pbartok@novell.com>
16939
16940         * Application.cs:
16941           - Properly implemented CompanyName property
16942           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16943             returns a path that includes CompanyName, ProductName and
16944             Version (fixes bug #70330)
16945
16946 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16947
16948         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16949           fixes bug #72588.
16950
16951 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16952
16953         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16954         
16955           - Added ReadOnly CheckBox
16956           - Further refactoring: moved some code from Open-/SaveFileDialog
16957             to FileDialog
16958
16959 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16960
16961         * OpenFileDialog.cs: Fixed CheckFileExists
16962         * FileDialog.cs:
16963           Moved FileView and DirComboBox outside FileDialog class.
16964           They can now be used outside FileDialog
16965
16966 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16967
16968         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16969         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16970
16971 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16972
16973         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16974           - Added missing CreatePrompt property in SaveDialog
16975           - Overall SaveDialog handling should be better now
16976           - Added non standard ShowHiddenFiles property
16977           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16978           - Added InitialDirectory and RestoreDirectory support
16979
16980 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16981
16982         * FileDialog.cs: Made dirComboBox usable
16983
16984 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16985
16986         * FileDialog.cs: Added Filter support (case sensitiv)
16987
16988 2005-03-24  Jackson Harper  <jackson@ximian.com>
16989
16990         * TabControl.cs: Need a couple more pixels for the lines.
16991
16992 2005-03-23  Jackson Harper  <jackson@ximian.com>
16993
16994         * TabControl.cs: Give the tab page focus when it is selected.
16995
16996 2005-03-23  Jackson Harper  <jackson@ximian.com>
16997
16998         * TabControl.cs: Account for the drawing of tabs borders when
16999         invalidating. If the slider was clicked dont do click detection on
17000         the tabs.
17001
17002 2005-03-23  Jackson Harper  <jackson@ximian.com>
17003
17004         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
17005
17006 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
17007
17008         * CategoryGridEntry.cs: Added
17009         * GridItem.cs: Added helper properties
17010         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
17011         * GridEntry.cs: Updated code for collection
17012         * PropertyGrid.cs: Cleaned up some formatting
17013         * PropertyGridView.cs: Added drop down functionality for enums.
17014         * GridItemCollection.cs: Added enumerator logic
17015         * PropertyGridEntry.cs: Added
17016
17017 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17018
17019         * FileDialog.cs:
17020           - Removed unnecessary commented code
17021           - Fixed handling for entering the filename manually in the combobox
17022
17023 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
17024
17025         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
17026
17027 2005-03-18  Peter Bartok  <pbartok@novell.com>
17028
17029         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
17030           them being touching the border
17031
17032 2005-03-18  Peter Bartok  <pbartok@novell.com>
17033
17034         * TextControl.cs: Quick hack to center text better
17035
17036 2005-03-18  Peter Bartok  <pbartok@novell.com>
17037
17038         * ControlPaint.cs:
17039           - Don't throw NotImplemented exceptions, just print a notice once
17040             instead (requested by Miguel). This makes running existing SWF
17041             apps a bit easier
17042         * Control.cs:
17043           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
17044           - Added context menu trigger on right click
17045         * Panel.cs: Trigger invalidate on resize
17046         * StatusBar.cs:
17047           - Removed old double-buffer drawing
17048           - Added ResizeRedraw style to force proper update of statusbar
17049         * ListView.cs:
17050           - Removed debug output
17051         * ThemeWin32Classic.cs:
17052           - Fixed drawing of status bar, now draws Text property if there
17053             are no defined panels
17054
17055 2005-03-18  Jackson Harper  <jackson@ximian.com>
17056
17057         * ImageList.cs: When the image stream is set pull all the images
17058         from it.
17059         * ImageListStreamer.cs: Implement reading image list streams.
17060
17061 2005-03-18  Peter Bartok  <pbartok@novell.com>
17062
17063         * ThemeWin32Classic.cs (DrawPictureBox):
17064           - Fixed calculations for centered drawing
17065           - Fixed drawing for normal mode, not scaling the image on normal
17066
17067 2005-03-18  Peter Bartok  <pbartok@novell.com>
17068
17069         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
17070           textbox
17071         * FileDialog.cs:
17072           - Made Open/Save button the accept button for FileDialog
17073           - Tied the cancel button to the IButtonControl cancel button
17074           - Save/Open now properly builds the pathname
17075           - Now handles user-entered text
17076           - Preventing crash on right-click if no item is selected
17077           - Fixed Text property, now uses contents of textbox
17078           - Fixed SelectedText property, now just returns the text part that
17079             is selected in the text box
17080
17081 2005-03-18  Jackson Harper  <jackson@ximian.com>
17082
17083         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
17084         rect, make sure to de-adjust the interior rect after drawing the
17085         tab text.
17086
17087 2005-03-18  Peter Bartok  <pbartok@novell.com>
17088
17089         * MenuAPI.cs: Remove menu *before* executing selected action to
17090           prevent the menu from 'hanging around'
17091           
17092 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
17093
17094         * XplatUIOSX.cs: Implemented WorkingArea property
17095
17096 2005-03-17  Peter Bartok  <pbartok@novell.com>
17097
17098         * XplatUIX11.cs: Fixed menu coord calculations
17099         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
17100           for calculating offsets
17101
17102 2005-03-17  Peter Bartok  <pbartok@novell.com>
17103
17104         * Hwnd.cs: Do not consider menu presence for default client
17105           rectangle location/size
17106         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
17107           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
17108           translation functions
17109         * FileDialog.cs: Fixed (what I presume is a) typo
17110
17111 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
17112
17113         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
17114           X access (avoids X-Async errors)
17115
17116 2005-03-16  Jackson Harper  <jackson@ximian.com>
17117
17118         * TabControl.cs: Raise the SelectedIndexChanged event.
17119
17120 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
17121
17122         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
17123           - Removed vertical ToolBar and replaced it with a custom panel
17124             (desktop and home button already work)
17125           - Added Help button (some controls get resized or relocated then)
17126           - Draw correct text depending on Open or Save.
17127           - Fixed some typos...
17128
17129 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
17130
17131         * ScrollBar.cs:
17132           - Only change Maximum and Minimum when need it (bug fix)
17133
17134 2005-03-15  Peter Bartok  <pbartok@novell.com>
17135
17136         * Form.cs: Use Handle for icon, to trigger creation if
17137           the window does not yet exist
17138         * Control.cs:
17139           - CanSelect: Slight performance improvement
17140           - Focus(): Preventing possible recursion
17141           - Invalidate(): Removed ControlStyle based clear flag setting
17142           - WM_PAINT: fixed logic for calling OnPaintBackground
17143           - WM_ERASEBKGND: Fixed logic, added call to new driver method
17144             EraseWindowBackground if the control doesn't paint background
17145         * XplatUIWin32.cs:
17146           - Moved EraseWindowBackground() method to internal methods
17147           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
17148             is sent via SendMessage on BeginPaint call on Win32
17149         * XplatUIX11.cs:
17150           - Added EraseWindowBackground() method
17151           - No longer sends WM_ERASEBKGND on .Expose, but on call to
17152             PaintEventStart, which more closely matches Win32 behaviour
17153           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
17154           - Fixed SetFocus() to properly deal with client and whole windows
17155         * Hwnd.cs: Added ErasePending property
17156         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
17157         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
17158
17159 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
17160
17161         * XplatUIOSX.cs:
17162           - Fix hard loop when timers exist.
17163           - Fix bugs with middle and right click for 3 button mice.
17164
17165 2005-03-11  Peter Bartok  <pbartok@novell.com>
17166
17167         * XplatUIX11.cs:
17168           - get_WorkingArea: Need to call X directly, GetWindowPos only
17169             returns cached data now
17170           - Added sanity check to GetWindowPos hwnd usage
17171
17172 2005-03-11  Jackson Harper  <jackson@ximian.com>
17173
17174         * BindingManagerBase.cs: This method isn't used anymore as
17175         PullData now updates the data in the control.
17176
17177 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
17178
17179         * Form.cs: fixes menu drawing on X11
17180         * MenuAPI.cs:  fixes menu drawing on X11
17181
17182 2005-03-11  Peter Bartok  <pbartok@novell.com>
17183
17184         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
17185           from Jonathan Gilbert; should fix bug #73606
17186         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
17187           in Screen coordinates. Thanks, Jordi.
17188         * Form.cs: Added missing attribute
17189
17190 2005-03-11  Peter Bartok  <pbartok@novell.com>
17191
17192         * Form.cs:
17193           - Rudimentary Mdi support
17194           - Removed outdated FormParent code
17195           - Implemented lots of missing properties and methods, still missing
17196             transparency support
17197           - Added missing attributes
17198           - Implemented support for MaximumBounds
17199           - Added firing of various events
17200         * XplatUI.cs: Added SetIcon() method
17201         * XplatUIDriver.cs: Added SetIcon() abstract
17202         * XplatUIOSX.cs: Stubbed out SetIcon() method
17203         * XplatUIX11.cs:
17204           - Implemented SetIcon() support
17205           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
17206           - Switched to unix line endings
17207         * XplatUIWin32.cs:
17208           - Made POINT internal so for can access it as part of MINMAX
17209           - Implemented SetIcon() support
17210           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
17211             native Mdi support again, might have to go managed)
17212         * Control.cs: Now fires the StyleChanged event
17213         * MdiClient.cs: Added; still mostly empty
17214
17215 2005-03-10  Peter Bartok  <pbartok@novell.com>
17216
17217         * SaveFileDialog.cs: Added emtpy file
17218
17219 2005-03-08  Peter Bartok  <pbartok@novell.com>
17220
17221         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
17222           in turn triggers OnCreateContro) when creating a handle for the
17223           first time.
17224         * TextControl.cs: Fixed endless loop in certain cases when
17225           replacing the current selection
17226
17227 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
17228
17229         * ScrollBar.cs:
17230           - Honors NewValue changes in Scroll events allowing apps to change it
17231           - Adds First and Last Scroll events
17232           - Fixes Thumb events
17233
17234 2005-03-07  Peter Bartok  <pbartok@novell.com>
17235
17236         * Hwnd.cs: Added DefaultClientRectangle property
17237         * XplatUI.cs: Now using the X11 driver Where() method, which provides
17238           more detailed debug information
17239         * XplatUIX11.cs:
17240           - Fixed size-change feedback loop, where we would pull an old size
17241             off the queue and mistakenly change our window's size to an
17242             earlier value
17243           - Now compressing ConfigureNotify events, to reduce looping and
17244             redraw issues
17245         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
17246           is called
17247
17248 2005-03-07  Jackson Harper  <jackson@ximian.com>
17249
17250         * Binding.cs: Push data pushes from data -> property. Check if the
17251         property is readonly when attempting to set it.
17252
17253 2005-03-07  Jackson Harper  <jackson@ximian.com>
17254
17255         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
17256         instead of IsSubclassOf. Pulling data now sets the value on the
17257         control.
17258         * PropertyManager.cs:
17259         * CurrencyManager.cs: Just need to pull data when updating now,
17260         because PullData will set the value on the control.
17261
17262 2005-03-04  Jackson Harper  <jackson@ximian.com>
17263
17264         * Binding.cs: Implement data type parsing and converting on pulled
17265         data. TODO: Are there more ways the data can be converted?
17266
17267 2005-03-04  Jackson Harper  <jackson@ximian.com>
17268
17269         * Binding.cs: Support <Property>IsNull checks. Also bind to the
17270         controls Validating method so we can repull the data when the
17271         control loses focus.
17272
17273 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
17274
17275         * ColumnHeader.cs:
17276           - Fixes null string format
17277           
17278         * ListView.cs:
17279           - Adds enum type checks
17280           - Fixes redrawing and recalc need after changing some properties
17281           - Fixes on focus_item set after the event
17282           - Fixes adding columns after the control has been created
17283           
17284         * ThemeWin32Classic.cs:
17285           - Fixes CheckBox focus rectangle
17286           - Fixes ColumnHeader drawing
17287
17288
17289 2005-03-03  Jackson Harper  <jackson@ximian.com>
17290
17291         * Binding.cs: Bind to <Property>Changed events so we can detect
17292         when properties are changed and update the data.
17293
17294 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
17295
17296         * ImageList.cs:
17297           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
17298           - Fixes ImageList constructor with ImageList container
17299           - Fixes image scaling (wrong parameters at DrawImage)
17300
17301 2005-02-02  Jackson Harper  <jackson@ximian.com>
17302
17303         * Binding.cs: Make property searches case-insensitive. Eliminate
17304         some duplicated code.
17305
17306 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
17307
17308         * ComboBox.cs:
17309                 - Handle focus event
17310                 - Fix scrollbar events
17311                 - Discard highlighted item if remove it
17312                 - Fixes SelectedItem with strings
17313
17314 2005-03-01  Peter Bartok  <pbartok@novell.com>
17315
17316         * Control.cs:
17317           - Fixed Visible property, now follows (once again) parent chain
17318             to return false if any control in the chain is visible=false
17319           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
17320           - Fixed several places where is_visible instead of Visible was used
17321           - Implemented FIXME related to focus selection when setting focused
17322             control to be invisible
17323
17324         * XplatUIWin32.cs: Now using proper method to find out if window is
17325           visible. Thanks to Jordi for pointing it out
17326
17327 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
17328
17329         * ComboBox.cs: show/hide scrollbar instead of creating it
17330
17331 2005-02-27  Jackson Harper  <jackson@ximian.com>
17332
17333         * CurrencyManager.cs: Add PositionChanged stuff.
17334
17335 2005-02-27  Peter Bartok  <pbartok@novell.com>
17336
17337         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
17338         * XplatUIOSX.cs: Added GetMenuOrigin() stub
17339         * XplatUIWin32.cs: Implemented GetMenuOrigin()
17340         * XplatUIX11.cs:
17341           - Implemented GetMenuDC()
17342           - Implemented GetMenuOrigin()
17343           - Implemented ReleaseMenuDC()
17344           - Implemented generation of WM_NCPAINT message
17345           - Implemented generation and handling of WM_NCCALCSIZE message
17346         * Form.cs: Added debug helper message for Jordi's menu work
17347         * Hwnd.cs:
17348           - Modified ClientRect property; added setter, fixed getter to handle
17349             setting of ClientRect
17350           - Added MenuOrigin property
17351
17352 2005-02-26  Peter Bartok  <pbartok@novell.com>
17353
17354         * XplatUIX11.cs:
17355           - Destroys the caret if a window that's being destroyed contains it
17356           - Ignores expose events coming from the X11 queue for windows that
17357             already are destroyed
17358           - Now uses the proper variable for handling DestroyNotify, before we
17359             marked the wrong window as destroyed
17360           - Improved/added some debug output
17361
17362 2005-02-26  Peter Bartok  <pbartok@novell.com>
17363
17364         * X11Keyboard.cs: Fixes to work on 64bit systems
17365
17366 2005-02-26  Peter Bartok  <pbartok@novell.com>
17367
17368         * Control.cs:
17369           - Now calling OnHandleDestroyed from DestroyHandle()
17370             instead of Dispose()
17371           - Removed bogus call to controls.Remove() from DestroyHandle()
17372
17373 2005-02-26  Peter Bartok  <pbartok@novell.com>
17374
17375         * Control.cs: Properly destroy child windows when our handle is
17376           destroyed
17377
17378 2005-02-25  Peter Bartok  <pbartok@novell.com>
17379
17380         * XplatUI.cs:
17381           - Added 'DriverDebug' define to allow tracing XplatUI API calls
17382           - Alphabetized Static Methods and Subclasses
17383
17384         * XplatUIX11.cs:
17385           - Added XException class to allow custom handling of X11 exceptions
17386           - Created custom X11 error handler, tied into XException class
17387           - Added support for MONO_XEXCEPTIONS env var to allow the user
17388             to either throw an exception on X errors or continue running
17389             after displaying the error
17390           - Added handling of DestroyNotify message
17391           - Added handler for CreateNotify message (still disabled)
17392           - Improved (tried to at least) Where method to provide file and lineno
17393         * X11Structs.cs:
17394           - Added XErrorHandler delegate
17395           - Added XRequest enumeration (to suppor translation of errors)
17396
17397 2005-02-25  Jackson Harper  <jackson@ximian.com>
17398
17399         * PropertyManager.cs: Implement editing features
17400         * CurrencyManager.cs:
17401         * Binding.cs: First attempt at UpdateIsBinding
17402         * BindingManagerBase.cs: Call UpdateIsBinding before
17403         pushing/pulling data.
17404
17405 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
17406
17407         * MenuAPI.cs: Respect disabled items
17408         * ThemeWin32Classic.cs
17409                 - Caches ImageAttributes creation for DrawImageDisabled
17410                 - Fixes vertical menu line drawing
17411                 - Draws disabled arrows in disable menu items
17412
17413 2005-02-24  Peter Bartok  <pbartok@novell.com>
17414
17415         * Hwnd.cs:
17416           - Added UserData property to allow associating arbitrary objects
17417             with the handle
17418           - Fixed leak; now removing Hwnd references from static windows array
17419         * XplatUIWin32.cs:
17420           - Fixed Graphics leak in PaintEventEnd
17421           - Removed usage of HandleData, switched over to Hwnd class
17422         * HandleData.cs: Removed, obsoleted by Hwnd.cs
17423
17424 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17425
17426         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
17427         * ScrollBar.cs: Fixes bug
17428         * TrackBar.cs: removes death code, clipping, mimize refreshes,
17429          keyboard navigation enhancements
17430
17431 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
17432
17433         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
17434         * GroupBox.cs: Add control styles
17435         * Label.cs: Add control styles
17436         * UpDownBase.cs: Add control styles
17437         * ListBox.cs: Add control styles
17438         * XplatUIWin32.cs: Fixes wrong parameter order
17439
17440
17441 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
17442
17443         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
17444
17445 2005-02-23  Jackson Harper  <jackson@ximian.com>
17446
17447         * PropertyManager.cs: Implement property binding. This doesn't
17448         seem to work yet though as (I think) there are some bugs in
17449         System.ComponentModel.PropertyDescriptor.
17450         * BindingContext.cs: Use new PropertyManager constructor.
17451
17452 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
17453
17454         * ProgressBar.cs: use clip region in ProgressBar
17455         * ThemeWin32Classic.cs: use clip region in ProgressBar
17456
17457 2004-02-22  Jackson Harper  <jackson@ximian.com>
17458
17459         * BindingsCollection.cs: Remove some debug code.
17460
17461 2005-02-22  Jackson Harper  <jackson@ximian.com>
17462
17463         * BindingContext.cs:
17464         * ControlBindingsCollection.cs:
17465         * CurrencyManager.cs:
17466         * Binding.cs:
17467         * BindingManagerBase.cs: Initial implementation
17468         * BindingsCollection.cs: Add an internal contains method that the
17469         BindingManagerBase uses to ensure bindings aren't added twice to
17470         the collection.
17471         * PropertyManager.cs: Stubbed out.
17472         * Control.cs:
17473         * ContainerControl.cs: Hook up databinding
17474         
17475 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
17476
17477         * XplatUIOSX.cs:
17478           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
17479           Fixed Invalidate/Update chain.
17480           Fixed tons of other minor bugs (this is almost a complete rewrite).
17481
17482 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
17483
17484         * ComboBox.cs: do subcontrol creation when the control is created
17485
17486 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17487
17488         * Label.cs: fixes image drawing (image and imagelist)
17489         * ThemeWin32Classic.cs: cache brushes
17490         
17491 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17492
17493         * Form.cs: Move menu drawing code to Theme class
17494         * ComboBox.cs: Move ComboBox drawing code to Theme class
17495         * MenuItem.cs: Move menu drawing code to Theme class
17496         * MenuAPI.cs: Move menu drawing code to Theme class
17497         * ThemeWin32Classic.cs: New methods
17498         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
17499         * ListBox.cs: Move Listbox drawing code to Theme class
17500         * Theme.cs: New methods
17501
17502 2005-02-20  Peter Bartok  <pbartok@novell.com>
17503
17504         * Control.cs:
17505           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
17506             only process mnemonics on those)
17507           - Fixed event sequence for key handling; first calling
17508             ProcessKeyEventArgs now
17509         * TextBoxBase.cs:
17510           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
17511             for processing non-character keys
17512           - Fixed WM_CHAR to generate proper event sequence before processing
17513         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
17514           generation
17515
17516 2005-02-19  Peter Bartok  <pbartok@novell.com>
17517
17518         * UserControl.cs: Added TextChanged event; added attributes
17519         * SizeGrip.cs: Implemented resizing and optional display of grip
17520         * Form.cs: Fixed attribute
17521         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17522           Changed meaning of ScrollWindow bool argument; instead of the
17523           clear attribute (which will be true usually anyway), it gives the
17524           option of moving child controls as well.
17525         * XplatUIX11.cs:
17526           - Changed to match new ScrollWindow argument
17527           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
17528             now handles the implicit parent window a WM puts around us
17529         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
17530           to work)
17531         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
17532         * TreeView.cs: Adjusted to new ScrollWindow arguments
17533
17534 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17535
17536         * Form.cs: Menu integration with non-client area
17537         * MenuItem.cs: Menu integration with non-client area
17538         * MenuAPI.cs: Menu integration with non-client area
17539
17540 2005-02-18  Peter Bartok  <pbartok@novell.com>
17541
17542         * MethodInvoker.cs: Added
17543         * MdiLayout.cs: Added
17544         * SendKeys.cs: Started implementation
17545         * ErrorIconAlignment.cs: Added
17546
17547 2005-02-18  Peter Bartok  <pbartok@novell.com>
17548
17549         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
17550         * Form.cs: Added handling for Menu-related Non-client messages
17551
17552 2005-02-17  Peter Bartok  <pbartok@novell.com>
17553
17554         * UpDownBase.cs: Fixed typo, compilation errors
17555         * DomainUpDown.cs: Fixed attribute value
17556
17557 2005-02-16  Miguel de Icaza  <miguel@novell.com>
17558
17559         * UpDownBase.cs: Attach entry events.
17560         Propagate events.
17561         Add ForeColor property, Focused, InterceptArrowKeys (interception
17562         does not work yet).
17563
17564 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
17565
17566         * Form.cs:
17567                 - Redraw non client are on Setmenu
17568                 - Calc proper menu starting point
17569
17570 2005-02-17  Peter Bartok  <pbartok@novell.com>
17571
17572         * Application.cs: Fixed message_filter check
17573
17574 2005-02-17  Peter Bartok  <pbartok@novell.com>
17575
17576         * Application.cs: Now calls registered message filters
17577         * DockStyle.cs: Fixed attribute
17578         * Form.cs: Fixed attribute
17579         * Menu.cs: Fixed attribute
17580         * ToolTip.cs: Fixed attribute
17581         * TreeNode.cs: Added missing attributes and arranged in regions
17582         * PropertyGrid.cs: Fixed signatures
17583         * TreeNodeCollection.cs: Added attributes
17584         * Splitter.cs: Added missing attributes; arranged into regions
17585         * TabPage.cs: Added missing attributes; arranged into regions
17586         * TextBoxBase.cs: Added missing attributes
17587         * TextBox.cs: Added missing attributes
17588         * ArrangeDirection.cs: Added missing attributes
17589         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
17590         * ToolBarButton.cs: Fixed attributes
17591         * AnchorStyles.cs: Fixed attribute
17592         * TrackBar.cs: Fixed attributes
17593         * TabControl.cs: Added missing attributes and arranged into regions
17594         * ToolBar.cs: Fixed attribute
17595         * StatusBar.cs: Fixed signature, organized into regions and added
17596           attributes
17597         * StatusBarPanel.cs: Fixed attributes
17598         * ContentsResizedEventArgs.cs: Implemented
17599         * ContentsResizedEventHandler.cs: Implemented
17600         * DateBoldEventArgs.cs: Implemented
17601         * DateBoldEventHandler.cs: Implemented
17602         * UpDownEventArgs.cs: Implemented
17603         * UpDownEventHandler.cs: Implemented
17604         
17605 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
17606
17607         * Form.cs: first Menu NC refactoring
17608         * MenuAPI.cs: first Menu NC refactoring
17609         
17610 2005-02-16  Peter Bartok  <pbartok@novell.com>
17611
17612         * ImeMode.cs: Added missing attributes
17613         * Menu.cs: Fixed attribute
17614         * GroupBox.cs: Fixed attribute
17615         * Label.cs: Fixed attribute
17616         * ColorDialog.cs (RunDialog): Removed TODO attribute
17617         * ComboBox.cs: Fixed attributes
17618         * ListControl.cs: Added missing attributes
17619         * PropertyGrid.cs: Fixed attributes
17620         * Control.cs: Fixed attributes
17621         * ListViewItem.cs: Added TypeConverter attribute
17622         * NotifyIcon.cs: Fixed attributes
17623         * ListView.cs: Fixed attributes
17624         * ButtonBase.cs: Fixed attribute
17625         * ImageList.cs: Added missing attributes
17626         * ContainerControl.cs: Fixed signature
17627         * CheckedListBox.cs: Fixed attribute; added missing attributes
17628         * Panel.cs: Fixed attributes
17629         * PropertyTabChangedEventArgs.cs: Added missing attribute
17630         * PropertyValueChangedEventArgs.cs: Added missing attribute
17631         * Binding.cs: Fixed attribute
17632         * ListViewItemConverter: Implemented ListViewSubItemConverter class
17633         * ListBox.cs: Fixed attribute; added missing attributes;
17634         * ScrollableControl.cs: Added missing attributes
17635         * PictureBox.cs: Added missing attributes; implemented missing property
17636         * DateTimePicker.cs: Added missing attributes
17637         * Theme.cs (ToolWindowCaptionHeight): Fixed type
17638         * MonthCalendar.cs: Fixed attributes
17639         * StatusBarPanel.cs: Added missing attributes
17640         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
17641
17642 2005-02-16  Peter Bartok  <pbartok@novell.com>
17643
17644         * TextBoxBase.cs: The previous method to enforce height yet remember
17645           the requested high was less than ideal, this is an attempt to do
17646           it better.
17647         * Control.cs: Added comment about possible problem
17648         * Copyright: Updated format
17649         * GridItemType.cs: Fixed swapped values
17650
17651 2005-02-15  Jackson Harper  <jackson@ximian.com>
17652
17653         * BaseCollection.cs: Use property so we never access an
17654         uninitialized list. Also initialize the list in the property.
17655
17656 2005-02-15  Peter Bartok  <pbartok@novell.com>
17657
17658         * GroupBox.cs (ProcessMnemonic): Implemented
17659         * Label.cs (ProcessMnemonic): Implemented
17660         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
17661           hotkeys
17662
17663 2005-02-15  Peter Bartok  <pbartok@novell.com>
17664
17665         * RadioButton.cs (ProcessMnemonic): Implemented
17666         * CheckBox.cs (ProcessMnemonic): Implemented
17667         * Control.cs:
17668           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
17669             handling
17670           - Added internal method to allow calling ProcessMnemonic from other
17671             controls
17672         * ContainerControl.cs:
17673           - Started support for handling validation chain handling
17674           - Implemented ProcessMnemonic support
17675           - Added Select() call to Active, to make sure the active control
17676             receives focus
17677         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17678           FormParent rewrite)
17679         * ThemeWin32Classic.cs:
17680           - DrawCheckBox(): Fixed stringformat to show hotkeys
17681           - DrawRadioButton(): Fixed stringformat to show hotkeys
17682         * CommonDialog.cs: Removed WndProc override, not needed
17683
17684 2005-02-14  Peter Bartok  <pbartok@novell.com>
17685
17686         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17687           missed those in the rewrite
17688
17689 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17690
17691         * NumericUpDown.cs (Increment, ToString): Add.
17692         (DecimalPlaces): implement.
17693         
17694         Add attributes.
17695         
17696         * UpDownBase.cs: Add the designer attributes.
17697
17698 2005-02-13  Peter Bartok  <pbartok@novell.com>
17699
17700         * Panel.cs: Removed border_style, now in Control
17701         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17702           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17703
17704 2005-02-13  Peter Bartok  <pbartok@novell.com>
17705
17706         * MouseButtons.cs: Added missing attributes
17707         * XplatUIStructs.cs: Added enumeration for title styles
17708         * LeftRightAlignment.cs: Added missing attributes
17709         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17710           it compatible with Graphics.FromHwnd()
17711         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17712         * Keys.cs: Added missing attributes
17713         * SelectionRange.cs: Added missing attributes
17714         * SelectionRangeConverter.cs: Added
17715         * XplatUI.cs:
17716           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17717             ReleaseMenuDC methods
17718           - Renamed ReleaseWindow to UngrabWindow
17719           - Added proper startup notice to allow version identification
17720         * Form.cs:
17721           - Added missing attributes
17722           - Removed FormParent concept
17723         * Label.cs: Removed border_style field, now in Control
17724         * RadioButton.cs: Now properly selects RadioButton when focus is
17725           received
17726         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17727         * Control.cs:
17728           - Added missing attributes
17729           - Added borderstyle handling
17730           - Removed FormParent concept support
17731           - Fixed calls to XplatUI to match changed APIs
17732           - Fixed bug that would case us to use disposed Graphics objects
17733           - Removed unneeded internal methods
17734           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17735           - SelectNextControl(): Fixed to properly check common parents
17736         * TextBoxBase.cs: Removed border_style field (now in Control)
17737         * MessageBox.cs:
17738           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17739             fixed calculations for form size
17740           - Added support for localized strings and icons
17741           - Improved form size calculations, added border
17742         * ListView.cs: Removed border_style field (now in Control)
17743         * X11Structs.cs: Moved several structs from X11 driver here
17744         * X11Keyboard.cs: Changed debug message
17745         * Application.cs: Removed FormParent concept support
17746         * CommonDialog.cs:
17747           - Resetting end_modal flag
17748           - Removed FormParent concept support
17749         * NativeWindow.cs: Removed FormParent concept support
17750         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17751           Client area and Non-Client whole window to allow support for WM_NC
17752           messages
17753         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17754           prevent using it until it supports Hwnd as per Geoff Norton's request
17755         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17756         * PictureBox.cs: Removed border_style field, now in Control
17757         * XplatUIWin32.cs: Added new driver methods
17758
17759 2005-02-12  Peter Bartok  <pbartok@novell.com>
17760
17761         * OpacityConverter.cs: Implemented
17762         * Hwnd.cs: Internal class to support drivers that need to emulate
17763           client area/non-client area window behaviour
17764
17765 2005-02-11  Peter Bartok  <pbartok@novell.com>
17766
17767         * KeysConverter.cs: Implemented
17768
17769 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17770
17771         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17772         * LinkLabel: Added missing attributes
17773         * MainMenu.cs: fixes ToString
17774         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17775         * ListBox.cs: fixes event position
17776         * TrackBar.cs: adds missing attributes and events
17777         
17778 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17779
17780         * MenuItem.cs: Use SystemInformation and bug fixes
17781         * MenuAPI.cs: Use SystemInformation and bug fixes
17782
17783 2005-02-09  Jackson Harper  <jackson@ximian.com>
17784
17785         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17786         their keystate otherwise things like VK_MENU get stuck "on".
17787
17788 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17789
17790         * ListBox.cs: Fixes AddRange bug
17791         
17792 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17793
17794         * ProgressBar.cs
17795                 - Add missing attributes
17796                 - Add missing method
17797                 
17798         * CheckedListBox.cs: Added missing attributes
17799                 - Add missing attributes
17800                 - Remove extra method
17801         
17802         * ComboBox.cs: Added missing attributes
17803         * VScrollBar.cs: Added missing attributes
17804         * ScrollBar.cs:  Added missing attributes
17805         * ListBox.cs: Fixes signature, add missing consts
17806         * LinkArea.cs:   Added missing attributes
17807         
17808
17809 2005-02-08  Peter Bartok  <pbartok@novell.com>
17810
17811         * Menu.cs: Added missing attributes
17812         * MainMenu.cs: Added missing attributes
17813         * GroupBox.cs: Added missing attributes
17814         * Label.cs: Added missing attributes
17815         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17816         * ColorDialog.cs:
17817           - Added Instance and Options properties
17818           - Added missing attributes
17819         * Cursor.cs: Made Serializable
17820         * NotifyIcon: Added missing attributes
17821         * MenuItem.cs: Added missing attributes
17822         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17823         * Panel.cs: Added Missing attributes
17824         * MonthCalendar.cs: Fixed CreateParams
17825
17826 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17827         
17828         * LinkLabel.cs:
17829                 - Fixes signature
17830                 - Fixes issues with links
17831                 - Adds the class attributes
17832
17833 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17834         
17835         * ComboBox.cs:
17836                 - Fixes button when no items available in dropdown
17837                 - Fixes repainting problems
17838                 - Adds the class attributes
17839                 
17840 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17841
17842         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17843         the current theme.  Cache these on startup.
17844
17845 2005-02-07  Jackson Harper  <jackson@ximian.com>
17846
17847         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17848         the scrollbar buttons when they are depressed.
17849
17850 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17851
17852         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17853         Get the display size from the main displayid.  We currently dont
17854         support multiple display configurations.
17855
17856 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17857
17858         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17859
17860 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17861
17862         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17863
17864 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17865
17866         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17867
17868 2005-02-04  Jackson Harper  <jackson@ximian.com>
17869
17870         * ThemeWin32Classic.cs: Respect the clipping rect when
17871         drawing. Only fill the intersection of clips and rects so there
17872         isn't a lot of large fills.
17873         * ScrollBar.cs: Pass the correct clipping rect to the theme
17874         engine. Remove some debug code.
17875
17876 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17877         
17878         * DateTimePicker.cs:
17879                 - Fixed crash on DateTime.Parse, use Constructor instead
17880
17881 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17882         
17883         * MenuItem.cs:
17884         * MenuAPI.cs:
17885                 - Owner draw support (MeasureItem and DrawItem)
17886
17887 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17888         
17889         *  Menu.cs:
17890                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17891                 - Fixes MenuItems.Add range
17892         * MenuItem.cs:
17893                 - MergeMenu and Clone and CloneMenu functions
17894
17895 2005-02-03  Jackson Harper  <jackson@ximian.com>
17896
17897         * ScrollBar.cs: Make abstract
17898         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17899         is abstract.
17900
17901 2005-02-03  Jackson Harper  <jackson@ximian.com>
17902
17903         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17904         all the unneeded refreshes and uses invalidates with properly
17905         computed rects.
17906
17907 2005-02-03  Peter Bartok  <pbartok@novell.com>
17908
17909         * ComponentModel.cs: Added
17910         * IDataGridEditingService.cs: Added
17911         * Timer.cs: Added missing attributes
17912         * ToolTip.cs: Added missing attributes
17913
17914 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17915
17916         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17917
17918 2005-02-03  Peter Bartok  <pbartok@novell.com>
17919
17920         * ListBox.cs: Added missing attributes
17921
17922 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17923         
17924         * ListBox.cs:
17925                 - Fixes font height after font change
17926                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17927                 
17928 2005-02-02  Peter Bartok  <pbartok@novell.com>
17929
17930         * HandleData.cs: Introduced static methods to allow class
17931           to be more self-contained and track it's own HandleData objects
17932         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17933           HandleData to use new static methods
17934
17935 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17936
17937         * Combobox.cs:
17938                 - Fixes default size and PreferredHeight
17939                 - Missing events
17940                 - ObjectCollection.Insert implementation
17941                 
17942         * ListControl.cs
17943                 - Fixes signature
17944         * ListBox.cs:
17945                 - Several fixes
17946                 - ObjectCollection.Insert implementation
17947                 - No selection after clean
17948                 - Small fixes
17949
17950 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17951
17952         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17953
17954 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17955
17956         * Combobox.cs:
17957                 - Caches ItemHeight calculation for OwnerDrawVariable
17958                 - Handles dropdown properly
17959                 - Fixes several minor bugs
17960
17961 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17962
17963         * ListBox.cs:
17964                 - Fixes 71946 and 71950
17965                 - Fixes changing Multicolumn on the fly
17966                 - Fixes keyboard navigation on Multicolumn listboxes
17967
17968 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17969         
17970         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17971         crash reporter log.
17972
17973 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17974
17975         * XplatUIOSX.cs: Allow applications to actually exit.
17976
17977 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17978
17979         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17980         their parent at creation time rather than lazily later.  Fixes a major
17981         regression we were experiencing.
17982
17983 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17984
17985         * ThemeWin32Classic.cs: more date time picker painting fixes
17986         * DateTimePicker.cs: more monthcalendar drop down fixes
17987         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17988
17989 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17990
17991         * ScrollBar.cs:
17992                 - When moving the thumb going outside the control should stop the moving
17993                 - Adds the firing of missing events
17994                 - Fixes no button show if Size is not specified
17995                 - End / Home keys for keyboard navigation
17996
17997 2005-01-30  Peter Bartok  <pbartok@novell.com>
17998
17999         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
18000           sanity check to prevent theoretical loop
18001         * XplatUIWin32.cs (SetVisible): Removed debug output
18002         * XplatUIX11.cs (SystrayChange): Added sanity check
18003         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
18004         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
18005           behaviour, valid until the X11 client window rewrite is done
18006         * TextBox.cs (ctor): Setting proper default foreground and background
18007           colors
18008
18009 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
18010
18011         * Theme: Added DrawDateTimePicker to interface
18012         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
18013         * DateTimePicker.cs: Created (still needs keys and painting code)
18014         * DateTimePickerFormat.cs: added
18015         * MonthCalendar.cs: fixed CreateParams for popup window mode
18016           
18017 2005-01-29  Peter Bartok  <pbartok@novell.com>
18018
18019         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
18020           this should also the calculations for ligher/darker
18021         * Theme.cs: Fixed defaults for ScrollBar widths/heights
18022
18023 2005-01-29  Peter Bartok  <pbartok@novell.com>
18024
18025         * ArrangeDirection.cs: Added
18026         * ArrangeStartingPositon.cs: Added
18027         * SystemInformation.cs: Implemented
18028         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18029           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
18030           used by SystemInformation class
18031         * X11Strucs.cs: Added XSizeHints structure
18032         * MenuAPI.cs:
18033           - Fixed CreateParams to make sure the menu window is always visible
18034           - TrackPopupMenu: Added check to make sure we don't draw the
18035             menu offscreen
18036
18037 2005-01-29  Peter Bartok  <pbartok@novell.com>
18038
18039         * HandleData.cs: Added method for altering invalid area
18040         * TextBoxBase.cs: Implemented TextLength
18041
18042 2005-01-28  Peter Bartok  <pbartok@novell.com>
18043
18044         * XplatUIX11.cs: Improvement over last patch, not sending
18045           the WM_PAINT directly anymore, instead we scroll any pending
18046           exposed areas and let the system pick out the WM_PAINT later
18047
18048 2005-01-28  Peter Bartok  <pbartok@novell.com>
18049
18050         * SWF.csproj: Deleted, no longer used. Instead,
18051           Managed.Windows.Forms/SWF.csproj should be used
18052         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
18053           directly, to avoid a potential race condition with the next
18054           scroll
18055
18056 2005-01-28  Peter Bartok  <pbartok@novell.com>
18057
18058         * XplatUI.cs: Made class internal
18059
18060 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
18061
18062         * CheckedListBox.cs:
18063                 - Draw focus
18064                 - Fixed Drawing
18065                 - Missing methods and events
18066
18067 2005-01-27  Peter Bartok  <pbartok@novell.com>
18068
18069         * Application.cs (Run): Don't use form if we don't have one
18070
18071 2005-01-27  Peter Bartok  <pbartok@novell.com>
18072
18073         * TextBoxBase.cs (get_Lines): Fixed index off by one error
18074
18075 2005-01-27  Peter Bartok  <pbartok@novell.com>
18076
18077         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
18078         * GridItem.cs: Added; Patch by Jonathan S. Chambers
18079         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
18080         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
18081         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
18082         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
18083         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18084         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18085         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18086         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18087         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
18088         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
18089
18090 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18091
18092         * Combobox.cs:
18093                 - Draw focus on Simple Combobox
18094                 - Fixes drawing issues
18095                 - fixes 71834
18096
18097 2005-01-27  Peter Bartok  <pbartok@novell.com>
18098
18099         * Form.cs:
18100           - Place window in default location, instead of hardcoded 0/0
18101           - Send initial LocationChanged event
18102         * Control.cs:
18103           - UpdateBounds after creation to find out where the WM placed us
18104           - Make sure that if the ParentForm changes location the Form
18105             is notified
18106         * XplatUIX11.cs: XGetGeometry will not return the coords relative
18107             to the root, but to whatever the WM placed around us.
18108             Translate to root coordinates before returning toplevel
18109             coordinates
18110         * XplatUIWin32.cs: Removed debug output
18111         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
18112           flag to GetWindowPos, to allow translation of coordinates on X11
18113
18114 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
18115
18116         * ListBox.cs: connect LostFocus Event
18117
18118 2005-01-27  Peter Bartok  <pbartok@novell.com>
18119
18120         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18121           XplatUIX11.cs: Extended the Systray API
18122         * Form.cs: Removed debug output
18123         * Application.cs: Fixed focus assignment, always need to call
18124           XplatUI.Activate() since Form.Activate() has rules that may
18125           prevent activation
18126         * NotifyIcon.cs: Should be complete now
18127         * ToolTip.cs: Worked around possible timer bug
18128
18129 2005-01-27  Jackson Harper  <jackson@ximian.com>
18130
18131         * TabControl.cs:
18132         - Only invalidate the effected tabs when the
18133         selected index changes. This reduces drawing and gets rid of some
18134         flicker.
18135         - Only refresh if the tabs need to be shifted, otherwise only
18136         invalidate the slider button.
18137         - On windows the tabs are not filled to right if the slider is
18138         visible.
18139         
18140 2005-01-27  Jackson Harper  <jackson@ximian.com>
18141
18142         * TabControl.cs: Only refresh on mouseup if we are showing the
18143         slider. Also only invalidate the button whose state has changed.
18144
18145 2005-01-26  Peter Bartok  <pbartok@novell.com>
18146
18147         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
18148         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
18149           and SystrayRemove() methods
18150         * XplatUIOSX.cs: Stubbed Systray methods
18151         * XplatUIX11.cs:
18152           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
18153             methods
18154           - Fixed broken XChangeProperty calls (marshalling messed up things)
18155         * X11Structs.cs: Added enums and structs required for Size hinting
18156         * NotifyIcon.cs: Added & implemented
18157
18158 2005-01-26  Jackson Harper  <jackson@ximian.com>
18159
18160         * TabControl.cs: Space vertically layed out tabs properly.
18161
18162 2005-01-26  Peter Bartok  <pbartok@novell.com>
18163
18164         * Form.cs (CreateClientParams): Always set the location to 0,0
18165           since we're a child window.
18166
18167         * Control.cs (SetVisibleCore): Always explicitly setting the location
18168           of a toplevel window, apparently X11 doesn't like to move windows
18169           while they're not mapped.
18170
18171 2005-01-26  Jackson Harper  <jackson@ximian.com>
18172
18173         * TabControl.cs: Implement FillToRight size mode with vertically
18174         rendered tabs.
18175
18176 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18177
18178         * ControlPaint.cs, ThemeWin32Classic.cs
18179                 - Fixes DrawFocusRectangle
18180
18181 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
18182
18183         * MenuAPI.cs:
18184                 - MenuBar tracking only starts when item is first clicked
18185                 - Fixes menu hidding for multiple subitems
18186                 - Unselect item in MenuBar when item Executed
18187                 - Fixes bug 71495
18188
18189 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
18190
18191         * ListControl.cs:
18192                 - IsInputKey for ListBox
18193         * ListBox.cs:
18194                 - Focus item
18195                 - Shift and Control item selection
18196                 - Implement SelectionMode.MultiExtended
18197                 - Fixes RightToLeft
18198         * ComboBox.cs:
18199                 - IsInputKey implemented
18200                 - Do not generate OnTextChangedEdit on internal txt changes
18201                 
18202 2005-01-23  Peter Bartok  <pbartok@novell.com>
18203
18204         * AccessibleObject.cs: Partially implemented Select()
18205         * MonthCalendar.cs: Added missing attributes and events
18206         * Form.cs: Fixed CreateParams behaviour, now controls derived from
18207           form can properly override CreateParams.
18208         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
18209           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
18210           Control performs Invalidate & Update
18211         * NativeWindow (CreateHandle): Added special handling for Form
18212           and Form.FormParent classes to allow overriding of From.CreateParams
18213         * Control.cs:
18214           - ControlNativeWindow: Renamed 'control' variable to more intuitive
18215             name 'owner'
18216           - ControlNativeWindow: Added Owner property
18217           - Removed usage of Refresh() on property changes, changed into
18218             Invalidate(), we need to wait until the queue is processed for
18219             updates, direct calls might cause problems if not all vars for
18220             Paint are initialized
18221           - Added call to UpdateStyles() when creating the window, to set any
18222             styles that CreateWindow might have ignored.
18223           - Added support for Form CreateParent overrides to UpdateStyles()
18224         * MessageBox.cs: Removed no longer needed FormParent override stuff,
18225           CreateParams are now properly overridable
18226         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
18227           CreateParams are now properly overridable
18228
18229 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
18230
18231         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
18232         OnTextBoxChanged.
18233
18234         Capture LostFocus and OnTextBoxChanged.  The later introduces a
18235         recursive invocation that I have not figured out yet.
18236
18237         Reset the timer when not using (it was accumulating).
18238
18239
18240         (OnTextBoxChanged): Set UserEdit to true here to track whether the
18241         user has made changes that require validation.
18242
18243         Reset changing to avoid loops.
18244
18245 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
18246
18247         * NumericUpDown.cs: Display value at startup.
18248
18249         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
18250         ValidateEditText.
18251
18252         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
18253         filled in.  Added some basic parsing of text.
18254
18255         Still missing the OnXXX method overrides, and figuring out the
18256         events that must be emitted.
18257
18258         * UpDownBase.cs: Handle UserEdit on the Text property.
18259         
18260 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
18261
18262         * ComboBox.cs:
18263           - Fixes IntegralHeight
18264           - ToString method
18265
18266 2005-01-21  Jackson Harper  <jackson@ximian.com>
18267
18268         * TabControl.cs: Set the SelectedIndex property when SelectedTab
18269         is set so that the page visibility is updated and the tabs are
18270         sized correctly.
18271
18272 2005-01-21  Jackson Harper  <jackson@ximian.com>
18273
18274         * TabControl.cs: Use cliping rectangle for blitting. Give the
18275         theme the clipping rect so we can do clipping while
18276         drawing. Remove some debug code.
18277
18278 2005-01-21  Jackson Harper  <jackson@ximian.com>
18279
18280         * TabPage.cs: Add a new method so tab pages can force the tab
18281         control to recalculate the tab page sizes.
18282         * TabControl.cs: UpdateOwner needs to make the tab control recalc
18283         sizes.
18284
18285 2005-01-20  Jackson Harper  <jackson@ximian.com>
18286
18287         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
18288
18289 2005-01-20  Jackson Harper  <jackson@ximian.com>
18290
18291         * TreeView.cs: Set the bounds for nodes properly. They were
18292         getting screwed up when checkboxes were not enabled, but images
18293         were.
18294
18295 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
18296
18297         * ListBox.cs:
18298                 - Owner draw support
18299                 - Fixes
18300                 
18301 2005-01-20  Jackson Harper  <jackson@ximian.com>
18302
18303         * XplatUIStructs.cs: More misc keys
18304         * X11Keyboard.cs: Ignore some control keys.
18305
18306 2005-01-20  Jackson Harper  <jackson@ximian.com>
18307
18308         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
18309         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
18310
18311 2005-01-19  Peter Bartok  <pbartok@novell.com>
18312
18313         * Control.cs: Un-selecting the control when it is loosing focus
18314
18315 2005-01-19  Jackson Harper  <jackson@ximian.com>
18316
18317         * TreeView.cs: Hook up to the text controls leave event so we can
18318         end editing when the users clicks outside the text box.
18319         
18320 2005-01-19  Jackson Harper  <jackson@ximian.com>
18321
18322         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
18323         get set in the conversion array.
18324
18325 2005-01-19  Peter Bartok  <pbartok@novell.com>
18326
18327         * Application.cs (ModalRun): Added a call to CreateControl to ensure
18328           focus is properly set
18329         * Button.cs:
18330           - Added missing attributes
18331           - removed styles, those are already set in the base class
18332         * ButtonBase.cs:
18333           - Added missing attributes
18334           - Added clip window styles
18335         * CheckBox.cs: Added missing attributes
18336         * CommonDialog.cs:
18337           - FormParentWindow.CreateParams: Added required clip styles
18338         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
18339           also filters modifier keys
18340         * MessageBox.cs:
18341           - Added assignment of Accept and Cancel button to enable Enter
18342             and Esc keys in MessageBox dialogs
18343           - FormParentWindow.CreateParams: Added required clip styles
18344         * RadioButton.cs: Added missing attributes
18345         * TextControl.cs: No longer draws selection if control does not
18346           have focus
18347         * TextBoxBase.cs:
18348           - Now draws simple rectangle around test area to make it obvious
18349             there's a control. This is a hack until we properly support borders
18350           - A few simple fixes to support selections better, now erases selected
18351             text when typing, and resets selection when using movement keys
18352
18353 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
18354
18355         * UpDownBase.cs: Added some new properties.
18356
18357         * DomainUpDown.cs: Implement a lot to get my test working.
18358
18359 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18360
18361         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
18362
18363 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18364
18365         * OSXStructs (WindowAttributes): Fixed csc complaints
18366
18367 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18368
18369         * XplayUIOSX.cs:
18370           OSXStructs.cs: Initial refactor to move enums and consts into
18371           OSXStructs and use them in the driver for greater readability.
18372
18373 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
18374
18375         * XplatUIOSX.cs: Initial support for Standard Cursors.
18376         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
18377
18378 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
18379
18380         * ComboBox.cs: ability to change style when the ctrl is already
18381         created, missing methods and events, bug fixes, signature fixes
18382
18383 2005-01-19  Peter Bartok  <pbartok@novell.com>
18384
18385         * Cursors.cs (ctor): Added ctor to fix signature
18386
18387 2005-01-18  Peter Bartok  <pbartok@novell.com>
18388
18389         * Button.cs: Implemented DoubleClick event
18390         * ButtonBase.cs:
18391           - Fixed keyboard handling to behave like MS, where the press of
18392             Spacebar is equivalent to a mousedown, and the key release is
18393             equivalent to mouseup. Now a spacebar push will give the same
18394             visual feedback like a mouse click.
18395           - Added missing attributes
18396           - Added ImeModeChanged event
18397           - Added support for generating DoubleClick event for derived classes
18398         * CheckBox.cs:
18399           - Implemented DoubleClick event
18400           - Added missing attributes
18401         * CommonDialog.cs: Added missing attribute
18402         * ContextMenu.cs: Added missing attributes
18403         * RadioButton.cs:
18404           - AutoChecked buttons do not allow to be unselected when clicked
18405             (otherwise we might end up with no selected buttons in a group)
18406           - Added missing attributes
18407           - Implemented DoubleClickEvent
18408         * ThreadExceptionDialog.cs: Enabled TextBox code
18409
18410 2005-01-18  Peter Bartok  <pbartok@novell.com>
18411
18412         * Form.cs: Removed debug output
18413         * Button.cs: Added support for DoubleClick method
18414
18415 2005-01-18  Peter Bartok  <pbartok@novell.com>
18416
18417         * Form.cs:
18418           - Added method to parent window that allows triggering size
18419             calculations when a menu is added/removed
18420           - set_Menu: Cleaned up mess from early days of Form and Control,
18421             now properly triggers a recalc when a menu is added/removed
18422           - Added case to select form itself as focused form if no child
18423             controls exist
18424           - Added PerformLayout call when showing dialog, to ensure properly
18425             placed controls
18426         * Control.cs:
18427           - Select(): Made internal so Form can access it
18428           - Focus(): Only call Xplat layer if required (avoids loop), and sets
18429             status
18430         * Application.cs (Run): Removed hack and calls PerformLayout instead
18431           to trigger calculation when Form becomes visible
18432
18433 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
18434
18435         * ComboBox.cs: fixes for ownerdraw
18436
18437 2005-01-18  Peter Bartok  <pbartok@novell.com>
18438
18439         * TextControl.cs:
18440           - Sentinel is no longer static, each Document gets it's own, this
18441             avoids locking or alternatively overwrite problems when more
18442             than one text control is used simultaneously.
18443           - Switched to use Hilight and HilightText brushes for text selection
18444
18445         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
18446
18447 2005-01-18  Peter Bartok  <pbartok@novell.com>
18448
18449         * Control.cs:
18450           - Hooked up the following events:
18451                 o ControlAdded
18452                 o ControlRemoved
18453                 o HandleDestroyed
18454                 o ImeModeChanged
18455                 o ParentChanged
18456                 o TabStopChanged
18457                 o Invalidated
18458                 o SystemColorsChanged
18459                 o ParentFontChanged
18460                 o Move
18461           - Removed debug output
18462           - Added a call to the current theme's ResetDefaults when a color change
18463             is detected
18464         * Form.cs: Now setting the proper ImeMode
18465         * Theme.cs: Defined a method to force recreation of cached resources
18466           and rereading of system defaults (ResetDefaults())
18467         * ThemeWin32Classic.cs: Added ResetDefaults() stub
18468
18469 2005-01-17  Peter Bartok  <pbartok@novell.com>
18470
18471         * Control.cs: Added missing attributes
18472
18473 2005-01-17  Jackson Harper  <jackson@ximian.com>
18474
18475         * TreeNode.cs: Implement editing. Add missing properties selected
18476         and visible.
18477         * TreeView.cs: Implement node editing. Also some fixes to use
18478         Invalidate (invalid area) instead of Refresh when selecting.
18479
18480 2005-01-17  Peter Bartok  <pbartok@novell.com>
18481
18482         * Control.cs:
18483           - Implemented InvokeGotFocus() method
18484           - Implemented InvokeLostFocus() method
18485           - Implemented InvokePaint() method
18486           - Implemented InvokePaintBackground() method
18487           - Implemented InvokeClick() method
18488           - Implemented FindForm() method
18489           - Implemented RectangleToClient() method
18490           - Implemented ClientToRectangle() method
18491           - Implemented ResetBackColor() method
18492           - Implemented ResetCursor() method
18493           - Implemented ResetFont() method
18494           - Implemented ResteForeColor() method
18495           - Implemented ResetImeMode() method
18496           - Implemented ResetLeftToRight() method
18497           - Implemented ResetText() method
18498           - Implemented Scale() methods
18499           - Implemented ScaleCore() method
18500           - Implemented Update() method
18501           - Removed unused variables
18502           - Stubbed AccessibilityNotifyClients and
18503             ControlAccessibleObject.NotifyClients() methods (dunno what to do
18504             with those yet)
18505           - Now setting proper default for RightToLeft property
18506           - Fixed bug in SetClientSizeCore that would cause windows to get
18507             really big
18508           - Now sending Click/DoubleClick events
18509           - Now selecting controls when left mouse button is clicked on
18510             selectable control
18511         * AccessibleEvents.cs: Added
18512         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
18513         * XplatUIOSX.cs: Stubbed UpdateWindow() method
18514         * XplatUIWin32.cs: Implemented UpdateWindow() method
18515         * XplatUIX11.cs: Implemented UpdateWindow() method
18516         * Form.cs: Removed stray semicolon causing CS0162 warning
18517         * ThemeWin32Classic.cs: Fixed unused variable warnings
18518         * ScrollableControl.cs: Now calls base method for ScaleCore
18519         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
18520           style to avoid interference with internal click handler (which is
18521           different than standard Control click handling)
18522         * RadioButton.cs:
18523           - Now unchecks all sibling radio buttons when control is
18524             selected (Fixes #68756)
18525           - Removed internal tabstop variable, using the one inherited from
18526             Control
18527
18528 2005-01-17  Jackson Harper  <jackson@ximian.com>
18529
18530         * NavigateEventArgs.cs: Fix base type.
18531         * LinkLabel.cs: Sig fix
18532         
18533 2005-01-17  Jackson Harper  <jackson@ximian.com>
18534
18535         * TreeView.cs: Only invalidate the effected nodes bounds when
18536         selecting nodes.
18537
18538 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18539
18540         * XplatUIWin32.cs: fixes Win32 marshaling
18541         * XplatUIX11.cs: fixes method signature
18542
18543 2005-01-17  Peter Bartok  <pbartok@novell.com>
18544
18545         * XplatUIX11.cs: Clean up resources when we no longer need them
18546
18547 2005-01-17  Peter Bartok  <pbartok@novell.com>
18548
18549         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
18550           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
18551           and DestroyCursor() methods.
18552         * Cursor.cs: Partially implemented, now supports standard cursors;
18553           still contains some debug code
18554         * Cursors.cs: Implemented class
18555         * Control.cs:
18556           - WndProc(): Added handling of WM_SETCURSOR message, setting the
18557             appropriate cursor
18558           - Implemented Cursor property
18559           - Replaced break; with return; more straightforwar and possibly
18560             faster
18561           - Now properly setting the result for WM_HELP
18562         * X11Structs.cs: Added CursorFontShape enum
18563         * XplatUIStructs.cs:
18564           - Added StdCursor enum (to support DefineStdCursor() method)
18565           - Added HitTest enum (to support sending WM_SETCURSOR message)
18566         * XplatUIX11.cs:
18567           - Now sends the WM_SETCURSOR message
18568           - Implemented new cursor methods
18569         * XplatUIOSX.cs: Stubbed new cursor methods
18570         * XplatUIWin32.cs:
18571           - Implemented new cursor methods
18572           - Added GetSystemMetrics function and associated enumeration
18573
18574 2005-01-15  Peter Bartok  <pbartok@novell.com>
18575
18576         * Control.cs:
18577           - WndProc(): Now handles EnableNotifyMessage
18578           - SelectNextControl(): Fixed bug where if no child or sibling
18579             controls exist we looped endlessly
18580
18581 2005-01-14  Jackson Harper  <jackson@ximian.com>
18582
18583         * TreeView.cs: Recalculate the tab pages when a new one is added
18584         so that the proper bounding rects are created.
18585
18586 2005-01-14  Jackson Harper  <jackson@ximian.com>
18587
18588         * TreeView.cs: Draw a gray box instead of a grip in the lower
18589         right hand corner when there are both horizontal and vertical
18590         scroll bars.
18591
18592 2005-01-14  Jackson Harper  <jackson@ximian.com>
18593
18594         * Control.cs: When erasing backgrounds use FromHwnd instead of
18595         FromHdc when there is a NULL wparam. This occurs on the X driver.
18596         * XplatUIX11.cs: Set the wparam to NULL.
18597
18598 2005-01-13  Jackson Harper  <jackson@ximian.com>
18599
18600         * PictureBox.cs: Implement missing methods (except ToString, need
18601         to test that on windows) and events. When visibility is changed we
18602         need to redraw the image because the buffers are killed. When size
18603         is changed refresh if the sizemode needs it.
18604
18605 2005-01-13  Peter Bartok  <pbartok@novell.com>
18606
18607         * Control.cs (SelectNextControl): Was using wrong method to select
18608           a control
18609
18610 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18611
18612         * ComboBox.cs: fixes dropstyle
18613
18614 2005-01-13  Peter Bartok  <pbartok@novell.com>
18615
18616         * Form.cs:
18617           - Implemented Select() override
18618           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
18619           - Now sets keyboard focus on startup
18620         * Control.cs (SelectNextControl): Now properly handles directed=true
18621         * TextBoxBase.cs:
18622           - WndProc: Now passes tab key on to base if AcceptTabChar=false
18623           - Added (really bad) focus rectangle (mostly for testing)
18624         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
18625           to enforce redraw on focus changes
18626         * ContainerControl.cs:
18627           - Fixed detection of Shift-Tab key presses
18628           - Fixed traversal with arrow keys
18629         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
18630           gonna keep this or if it's complete yet
18631         
18632 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18633
18634         * ComboBox.cs: missing properties, fixes
18635
18636 2005-01-13  Peter Bartok  <pbartok@novell.com>
18637
18638         * Panel.cs (ctor): Setting Selectable window style to off
18639         * Splitter.cs (ctor): Setting Selectable window style to off
18640         * GroupBox.cs (ctor): Setting Selectable window style to off
18641         * Label.cs (ctor): Setting Selectable window style to off
18642
18643 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
18644
18645         * UpDownBase.cs (InitTimer): If the timer has been already
18646         created, enable it.
18647
18648         Use a TextBox instead of a Label.
18649
18650 2005-01-12  Jackson Harper  <jackson@ximian.com>
18651
18652         * TreeView.cs: Refresh the tree after sorting the nodes. Always
18653         draw the connecting node lines (when ShowLines is true).
18654         * TreeNode.cs: The nodes index can now be updated. This is used
18655         when a node collection is sorted.
18656         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
18657         insert or an existing unsorted node collection can be sorted.
18658         
18659 2005-01-12  Peter Bartok  <pbartok@novell.com>
18660
18661         * ContainerControl.cs: Implemented ProcessDialogKeys()
18662
18663 2005-01-12  Peter Bartok  <pbartok@novell.com>
18664
18665         * Control.cs:
18666           - Implemented SelectNextControl() method
18667           - Several focus related bug fixes
18668           - Fixed Docking calculations to match MS documentation and
18669             behaviour
18670
18671 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
18672
18673         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18674         bug fixes
18675
18676 2005-01-12  Peter Bartok  <pbartok@novell.com>
18677
18678         * Control.cs:
18679           - Fixed broken Contains() method
18680           - Implemented GetNextControl() method. Finally. This is the pre-
18681             requisite for focus handling.
18682
18683 2005-01-12  Peter Bartok  <pbartok@novell.com>
18684
18685         * OSXStrucs.cs: Added
18686
18687 2005-01-12  Peter Bartok  <pbartok@novell.com>
18688
18689         * XplatUIWin32.cs:
18690           - Removed PeekMessageFlags
18691           - Implemented SetWindowStyle() method
18692         * XplatUIStructs.cs: Added PeekMessageFlags
18693         * X11Structs: Added missing border_width field to XWindowChanges struct
18694         * XplatUIX11.cs:
18695           - PeekMessage: Now throws exception if flags which are not yet
18696             supported are passed
18697           - Implemented SetWindowStyle() method
18698           - Fixed SetZOrder to handle AfterHwnd properly
18699         * XplatUI.cs: Added SetWindowStyle() method
18700         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18701         * Control.cs:
18702           - Implemented UpdateStyles() method
18703           - Implemented UpdateZOrder() method
18704         * XplatUIOSX.cs: Added SetWindowStyle() stub
18705
18706 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18707
18708         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18709         button mouse).
18710
18711
18712 2005-01-11  Jackson Harper  <jackson@ximian.com>
18713
18714         * TreeView.cs: Still need to draw lines to siblings even if out of
18715         the current node is out of the clip.
18716
18717 2005-01-11  Jackson Harper  <jackson@ximian.com>
18718
18719         * TreeView.cs: When setting the hbar/vbar/grip position use
18720         SetBounds so that perform layout is only called once. Also suspend
18721         and resume layout so layout is only done once for all controls.
18722         - Removed some debug fluff
18723         * SizeGrip.cs: Call base implmentation in overriding methods.
18724         - When visibility is changed the drawing buffers are killed so we
18725         need to redraw.
18726
18727 2005-01-11  Jackson Harper  <jackson@ximian.com>
18728
18729         * TreeView.cs: Calculate the open node count while drawing. This
18730         saves us an entire tree traversal for every paint operation. Use
18731         a member var for the open node count so less vars are passed around.
18732
18733 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18734
18735         * MonthCalendar.cs:
18736         - fixed selection to use mousemove, not mouse polling on timer
18737         * ThemeWin32Classic.cs
18738         - removed redundant unused variable "no_more_content"
18739         
18740 2005-01-11  Peter Bartok  <pbartok@novell.com>
18741
18742         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18743           are pending, so it now calls PeekMessage instead of GetMessage;
18744           implemented a incomplete version of PeekMessage
18745         
18746 2005-01-11  Peter Bartok  <pbartok@novell.com>
18747
18748         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18749           I18n issues
18750         * TextBoxBase.cs: Added sending of TextChanged event
18751
18752 2005-01-10  Jackson Harper  <jackson@ximian.com>
18753
18754         * TreeView.cs: Try not to draw outside the clipping rectangle on
18755         each node element.
18756
18757 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18758
18759         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18760
18761 2005-01-10  Jackson Harper  <jackson@ximian.com>
18762
18763         * TreeView.cs:
18764         - Implement fast scrolling. Now only the newly
18765         exposed nodes are drawn and the old image is moved using the
18766         XplatUI::ScrollWindow method.
18767         - Factor in height of nodes when calculating whether or not the
18768         node is in the clipping rect.
18769
18770 2005-01-10  Jackson Harper  <jackson@ximian.com>
18771
18772         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18773
18774 2005-01-10  Peter Bartok  <pbartok@novell.com>
18775
18776         * Application.cs: Added temporary hack to resolve all our resize
18777           required issues on startup. This will get fixed properly at
18778           some point in the future
18779
18780 2005-01-10  Jackson Harper  <jackson@ximian.com>
18781
18782         * SizeGrip.cs: New internal class that is used as a sizing
18783         grip control...hence the name.
18784
18785 2005-01-10  Peter Bartok  <pbartok@novell.com>
18786
18787         * Control.cs: Implemented proper TabIndex handling, now assigning
18788           a tabindex when a control is added to a container
18789         * GroupBox.cs (ctor): Now sets the Container style bit, required
18790           for Control.GetNextControl()
18791
18792 2005-01-09  Jackson Harper  <jackson@ximian.com>
18793
18794         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18795
18796 2005-01-09  Peter Bartok <pbartok@novell.com>
18797
18798         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18799           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18800           an overload for ScrollWindow to allow only scrolling a rectangle
18801
18802 2005-01-09  Peter Bartok <pbartok@novell.com>
18803
18804         * Form.cs:
18805           - Implemented SetDesktopBounds method
18806           - Implemented SetDesktopLocation method
18807
18808 2005-01-08  Jackson Harper  <jackson@ximian.com>
18809
18810         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18811         the node count has changed, this removes to VScroll::Refresh calls
18812         when drawing.
18813
18814 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18815
18816         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18817
18818 2005-01-07  Jackson Harper  <jackson@ximian.com>
18819
18820         * TreeNode.cs: Just update the single node when it is
18821         checked. Don't refresh after toggling, the Expand/Collapse already
18822         handles this.
18823         * TreeView.cs: Respect clipping a little more when drawing. Try
18824         not to redraw things that don't need to be redrawn. Just hide the
18825         scrollbars when they are no longer needed instead of removing
18826         them, so they don't have to be created again and again.
18827         
18828 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18829
18830         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18831         coordinates to window space to place the caret properly, FIXED.
18832         Implement GetWindowState & SetWindowState
18833
18834 2005-01-06  Peter Bartok <pbartok@novell.com>
18835
18836         * Form.cs:
18837           - Implemented ClientSize property
18838           - Implemented DesktopBounds property
18839           - Implemented DesktopLocation property
18840           - Implemented IsRestrictedWindow property
18841           - Implemented Size property
18842           - Implemented TopLevel property
18843           - Implemented FormWindowState property
18844         * Control.cs:
18845           - Implemented GetTopLevel() method
18846           - Implemented SetTopLevel() method
18847         * X11Structs.cs (Atom):
18848           - Added AnyPropertyType definition
18849           - Added MapState definiton and updated XWindowAttribute struct
18850         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18851         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18852         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18853         * XplatUIWin32.cs:
18854           - Implemented GetWindowState() and SetWindowState() methods
18855           - Fixed Win32GetWindowLong return type
18856         * XplatUIX11.cs:
18857           - Introduced central function for sending NET_WM messages
18858           - Implemented GetWindowState() and SetWindowState() methods
18859         * TextBoxBase.cs (set_Lines):
18860           - Now uses Foreground color for text added via Text property (Duh!)
18861           - Added code to remember programmatically requested size (fixes
18862             behaviour when Multiline is set after Size)
18863           - Added AutoSize logic
18864
18865 2005-01-06  Jackson Harper  <jackson@ximian.com>
18866
18867         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18868
18869 2005-01-06  Jackson Harper  <jackson@ximian.com>
18870
18871         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18872         set to less then 0.
18873
18874 2005-01-06  Jackson Harper  <jackson@ximian.com>
18875
18876         * ScrollableControl.cs: Lazy init the scrollbars.
18877         
18878 2005-01-06  Jackson Harper  <jackson@ximian.com>
18879
18880         * Theme.cs: Speed up getting pens and solid brushes, by using
18881         their ARGB as a hash instead of tostring and not calling Contains.
18882
18883 2005-01-06  Peter Bartok <pbartok@novell.com>
18884
18885         * Form.cs:
18886           - Implemented OnActivated and OnDeactivate event trigger
18887           - Implemented Activate() method
18888           - Fixed ShowDialog() to activate the form that was active before
18889             the dialog was shown
18890         * XplatUIX11.cs:
18891           - Added global active_window var that tracks the currently active
18892             X11 window
18893           - Now always grabs Property changes from the root window to always
18894             catch changes on the active window property
18895           - Added code to PropertyNotify handler to send Active/Inactive
18896             messages when state changes. This puts X11 and Win32 en par on
18897             WM_ACTIVATE notifications (except for double notifications when
18898             the user clicks away from our modal window to another one of our
18899             windows)
18900
18901 2005-01-05  Jackson Harper  <jackson@ximian.com>
18902
18903         * ImageList.cs: Implment ctor
18904
18905 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18906
18907         * XplatUIOSX.cs: Implement Activate/SetTopmost
18908
18909 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18910
18911         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18912
18913 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18914
18915         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18916
18917 2005-01-05  Peter Bartok <pbartok@novell.com>
18918
18919         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18920           XplatUIOSX.cs: Added GetActive method to return the currently
18921           active window for the application (or null, if none is active)
18922         * Form.cs:
18923           - Implemented ActiveForm
18924           - Commented out owner assignment for modal dialogs (causes problems
18925             on Win32, since the owner will be disabled)
18926           - Reworked some Active/Focus handling (still incomplete)
18927         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18928           (causes problems on Win32, since the owner will be disabled)
18929         * IWin32Window: Added ComVisible attribute
18930
18931 2005-01-05  Peter Bartok <pbartok@novell.com>
18932
18933         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18934           required XplatUI functions.
18935
18936 2005-01-05  Peter Bartok <pbartok@novell.com>
18937
18938         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18939           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18940           to implement focus and activation handling; still incomplete and
18941           with debug output
18942
18943 2005-01-04  Peter Bartok <pbartok@novell.com>
18944
18945         * TextBoxBase.cs: Changed access level for Document property to
18946           match switch to internal for TextControl
18947
18948 2005-01-04  Peter Bartok <pbartok@novell.com>
18949
18950         * AccessibleObject: Added ComVisible attribute
18951
18952 2005-01-04  Jackson Harper  <jackson@ximian.com>
18953
18954         * X11Keyboard.cs: Remove unneeded var.
18955
18956 2005-01-04  Jackson Harper  <jackson@ximian.com>
18957
18958         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18959         but PAINT.
18960         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18961         ClientMessage. This makes apps exit cleanly (more often).
18962         
18963 2005-01-04  Jackson Harper  <jackson@ximian.com>
18964
18965         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18966         handling focus, return correct colors and fonts,
18967         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18968         handle selection, horizontal scrolling, and mouse interaction.
18969
18970 2005-01-04  Peter Bartok <pbartok@novell.com>
18971
18972         * ICommandExecutor.cs: Added
18973         * IDataGridColumnStyleEditingNotificationService.cs: Added
18974         * IFeatureSupport.cs: Added
18975         * IFileReaderService.cs: Added
18976         * IDataObject.cs: Added ComVisible attribute
18977         * AmbientProperties.cs: Added
18978         * BaseCollection.cs: Added missing attributes
18979         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18980         * BaseCollection.cs: Added missing attributes
18981         * Binding.cs: Added TypeConverter attribute
18982         * BindingContext.cs: Added DefaultEvent attribute
18983         * BindingsCollection.cs: Added DefaultEvent attribute
18984         * Button.cs: Added DefaultValue attribute
18985         * DragEventArgs.cs: Added ComVisible attribute
18986         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18987         * KeyEventArgs.cs: Added ComVisible attribute
18988         * KeyPressEventArgs.cs: Added ComVisible attribute
18989         * MouseEventArgs.cs: Added ComVisible attribute
18990         * NavigateEventArgs.cs: Added
18991         * NavigateEventHandler.cs: Added
18992         * FeatureSupport.cs: Added
18993         * OSFeature.cs: Added
18994         * Theme.cs: Added abstract Version property to support OSFeature
18995         * ThemeWin32Classic.cs: Added Version property to
18996           support OSFeature.Themes
18997         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18998           the proper styles to avoid background drawing are set, also doesn't
18999           match MS signature
19000         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
19001         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
19002         * ScrollEventArgs.cs: Added ComVisible attribute
19003         * SplitterEventArgs.cs: Added ComVisible attribute
19004         * AccessibleSelection.cs: Added Flags attribute
19005         * Appearance.cs: Added ComVisible attribute
19006         * Border3DSide.cs: Added ComVisible attribute
19007         * Border3DStyle.cs: Added ComVisible attribute
19008         * BorderStyle.cs: Added ComVisible attribute
19009         * DragAction.cs: Added ComVisible attribute
19010         * ErrorBlinkStyle.cs: Added
19011         * ScrollEventType.cs: Added ComVisible attribute
19012         * AnchorStyles.cs: Added Editor attribute
19013         * DockStyle.cs: Added Editor attribute
19014         * HorizontalAlignment.cs: Added ComVisible attribute
19015         * HelpEventArgs.cs: Added ComVisible attribute
19016         * PaintEventArgs.cs: Added IDisposable
19017
19018 2005-01-04  Peter Bartok <pbartok@novell.com>
19019
19020         * TextControl.cs: Switched Line, LineTag and Document classes to
19021           internal
19022
19023 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19024
19025         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
19026         Simple mode, fixes, IntegralHeight, etc.
19027
19028 2005-01-04  Peter Bartok <pbartok@novell.com>
19029
19030         * TextBoxBase.cs: Using proper font variable now
19031
19032 2005-01-04  Peter Bartok <pbartok@novell.com>
19033
19034         * Form.cs (ShowDialog): Set parent to owner, if provided
19035         * GroupBox.cs: Removed unused vars
19036         * TextControl.cs:
19037           - Added GetHashCode() for Document and LineTag classes
19038           - Removed unused variables
19039           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
19040             to allow translation between continuous char position and line/pos
19041         * CheckBox.cs: Removed vars that are provided by base class
19042         * RadioButton.cs: Removed vars that are provided by base class, added
19043           new keyword where required
19044         * LinkLabel.cs: Added new keyword where required
19045         * Control.cs (WndProc): Removed unused variable
19046         * TextBoxBase.cs:
19047           - Finished SelectionLength property
19048           - Implemented SelectionStart property
19049           - Implemented Text property
19050           - Removed unused vars
19051         * MessageBox.cs: Added new keyword where required
19052         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
19053           WndProc signature
19054         * MenuAPI.cs: Added new keyword where required
19055         * ButtonBase.cs: Removed vars that are provided by base class, added
19056           new keyword where required
19057         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
19058           argument to double, to allow compiling with csc 2.0 (Atsushi ran
19059           into this)
19060         * Application.cs (Run): Now triggers the ThreadExit event
19061         * CommonDialog.cs: Added new keyword where required; now properly sets
19062           parent (owner) for dialog
19063         * XplatUIX11.cs: Commented out unused vars
19064         * StatusBar.cs: Fixed signature for Text property
19065         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
19066
19067 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
19068
19069         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
19070         TrackBar.cs, MonthCalendar.cs: remove unused vars
19071
19072 2005-01-03  Jackson Harper  <jackson@ximian.com>
19073
19074         * ThemeWin32Classic.cs:
19075         * X11Keyboard.cs: Remove unused vars.
19076
19077 2005-01-03  Peter Bartok  <pbartok@novell.com>
19078
19079         * TextBox.cs:
19080           - set_Text: Tied into TextControl
19081           - set_TextAlignment: Tied into TextControl
19082         * TextControl.cs:
19083           - Added alignment properties and implemented alignment handling
19084             and drawing (still has a bug, not generating proper expose events)
19085           - Added new Line() constructor to allow passing the line alignment
19086           - Fixed selection setting, properly handling end<start now
19087           - Added aligment considerations to RecalculateDocument()
19088         * TextBoxBase.cs:
19089           - Now properly enforces control height for single line controls
19090           - Added support for CharacterCasing
19091           - Added IsInputKey override
19092           - Fixed Keys.Enter logic
19093           - Added SetBoundsCore override
19094           - Fixed mouse selection handling
19095
19096 2005-01-03  Jackson Harper  <jackson@ximian.com>
19097
19098         * TreeView.cs:
19099           - Collapse and uncheck all nodes when CheckBoxes is disabled.
19100           - Checkboxes are always aligned to the bottom of the node,
19101           regardless of item height.
19102           - Use the node bounds to draw the text so we can center it when
19103           the item height is greater then the font height.
19104           - Node::Bounds are only the text part of the node.
19105         * TreeNode.cs: New method to combine collapsing and unchecking all
19106           nodes recursively.
19107
19108 2005-01-02  Jackson Harper  <jackson@ximian.com>
19109
19110         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
19111         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
19112         tree when a check is changed. TODO: Only refresh the checked node.
19113
19114 2004-12-30  Jackson Harper  <jackson@ximian.com>
19115
19116         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
19117         * TreeNode.cs: When collapsing make sure to never collapse the
19118         root node.
19119
19120 2004-12-29  Jackson Harper  <jackson@ximian.com>
19121
19122         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
19123         
19124 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
19125
19126         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
19127
19128 2004-12-28  Peter Bartok  <pbartok@novell.com>
19129
19130         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
19131           not yet assigned
19132
19133 2004-12-28  Peter Bartok  <pbartok@novell.com>
19134
19135         * Control.cs (WndProc): Added WM_HELP handler, now generates
19136           HelpRequested event
19137         * Form.cs: Added HelpButton property and required support code
19138         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
19139
19140 2004-12-28  Peter Bartok  <pbartok@novell.com>
19141
19142         * CommonDialog.cs:
19143           - Made DialogForm.owner variable internal
19144           - Added check to ensure owner form is set before setting
19145             owner properties in CreateParams
19146
19147 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
19148
19149         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
19150           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
19151           GetCursorPos.  Fix major visibility issues.  Rework the windowing
19152           system to support borderless/titleless windows (implements menus).
19153           Fix GetWindowPos.  Implement initial background color support for
19154           views.
19155
19156 2004-12-28  Peter Bartok  <pbartok@novell.com>
19157
19158         * Form.cs (get_CreateParams): Make sure we have an owner before using
19159           the owner variable. Implement proper default if no owner exists
19160
19161 2004-12-28  Peter Bartok  <pbartok@novell.com>
19162
19163         * In preparation for making Managed.Windows.Forms the default build target
19164           for System.Windows.Forms, the following stubbed files were added.
19165           Dialogs are currently being implemented by contributors and are only
19166           short-term place holders.
19167         * ColorDialog.cs: Initial check-in (minmal stub)
19168         * DataGrid.cs: Initial check-in (minimal stub)
19169         * DataGridLineStyle.cs: Initial check-in (minimal stub)
19170         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
19171         * DataGridTableStyle.cs: Initial check-in (minimal stub)
19172         * FontDialog.cs: Initial check-in (minimal stub)
19173         * FileDialog.cs: Initial check-in (minimal stub)
19174         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
19175         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
19176         * OpenFileDialog: Initial check-in (minimal stub)
19177         * IComponentEditorPageSite.cs: Initial check-in
19178         * Splitter.cs: Initial check-in (for Jackson)
19179         * SplitterEventArgs.cs: Initial check-in (for Jackson)
19180         * SplitterEventHandler.cs: Initial check-in (for Jackson)
19181         * TextBox.cs: Initial check-in; still needs some wiring to
19182           TextControl backend
19183         * Form.cs: Implemented ControlBox property
19184         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
19185         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
19186         * TextControl.cs: Added selection functionality; added todo header
19187         * TextBoxBase.cs:
19188           - Implemented Lines property
19189           - Implemented TextHeight property
19190           - Implemented SelectedText property
19191           - Implemented SelectionLength property
19192           - Implemented SelectAll method
19193           - Implemented ToString method
19194           - Removed and cleaned up some debug code
19195           - Implemented (still buggy) mouse text selection
19196
19197 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
19198
19199         * ComboBox.cs: Complete DropDownList implementation, fixes.
19200
19201 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
19202
19203         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
19204         * ComboBoxStyle.cs: ComboBoxStyle enum
19205         * ComboBox.cs: Initial work on ComboBox control
19206
19207 2004-12-21  Peter Bartok  <pbartok@novell.com>
19208
19209         * Control.cs (ctor, CreateParams): Moved setting of is_visible
19210           forward so that anything that creates a window gets the default,
19211           also no longer uses Visible property in CreateParams to avoid
19212           walking up the parent chain and possibly get the wrong visible
19213           status. Fixed IsVisible to no longer walk up to the parent.
19214
19215 2004-12-21  Peter Bartok  <pbartok@novell.com>
19216
19217         * Form.cs (ShowDialog): Unset modality for the proper window
19218  
19219 2004-12-20  Peter Bartok  <pbartok@novell.com>
19220
19221         * CommonDialog.cs: Initial check-in
19222
19223 2004-12-20  Peter Bartok  <pbartok@novell.com>
19224
19225         * Control.cs (Visible): Now uses the parent window instead of the
19226           client area window for the property
19227
19228         * Form.cs
19229           - ShowDialog(): Now uses the proper window for modality
19230           - The default visibility state for the form parent is now false. This
19231             will prevent the user from seeing all the changes to the form and
19232             its controls before the application hits Application.Run()
19233           - Removed some stale commented out code
19234
19235         * NativeWindow.cs:
19236           - Added FindWindow() method to have a method to check for existence
19237             of a window handle
19238           - Added ability to override default exception handling (for example
19239             when debugging with VS.Net; to do this the ExternalExceptionHandler
19240             define must be set
19241           - Removed some useless debug output
19242
19243         * XplatUIX11.cs:
19244           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
19245             not working as expected
19246           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
19247             property to allow switching back to the modal window if focus is
19248             given to another one of our windows (Application Modal)
19249           - Now only sets override_redirect if we create a window
19250             without WS_CAPTION
19251           - Moved EventMask selection before mapping of newly created window
19252             so we can catch the map event as well
19253           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
19254           - Added various Atom related DllImports
19255           - Implemented Exit() method
19256           - .ctor() : No longer shows window if WS_VISIBLE is not defined
19257             in the CreateParams
19258
19259         * MessageBox.cs: Now properly deals with the FormParent window by
19260           providing an override the FormParent CreateParams property to
19261           set as POPUP instead of OVERLAPPED window.
19262
19263 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19264
19265         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
19266         Minor code cleanup.
19267
19268 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
19269         
19270         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
19271
19272 2004-12-18  Peter Bartok  <pbartok@novell.com>
19273
19274         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
19275           implementing SetModal() method
19276
19277 2004-12-18  Peter Bartok  <pbartok@novell.com>
19278
19279         * X11Structs.cs (XGCValues): Fixed type of function element
19280         * XplatUI.cs: Added ScrollWindow() method
19281         * XplatUIDriver.cs: Added ScrollWindow() abstract
19282         * XplatUIWin32.cs: Implemented ScrollWindow() method
19283         * XplatUIX11.cs: Implemented ScrollWindow() method
19284         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
19285
19286 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19287
19288         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
19289         Some more keyboard support (INCOMPLETE)
19290
19291 2004-12-17  Peter Bartok  <pbartok@novell.com>
19292
19293         * TextControl.cs:
19294         - Added color attribute to line tags.
19295         - Added color argument to all functions dealing with tags
19296         - Added color argument support to various functions
19297         - Fixed miss-calculation of baseline/shift in certain circumstances
19298
19299         * TextBoxBase.cs: Added new color option to test code
19300
19301 2004-12-17  Jackson Harper  <jackson@ximian.com>
19302
19303         * TreeNode.cs:
19304         * MonthCalendar.cs: Signature fixes
19305
19306 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19307
19308         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
19309         keyboard event moved it.  Create a new graphics context for each paint resolves this
19310
19311 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
19312
19313         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
19314         Make caret exist and go blink blink.  Initial keyboard support.
19315         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
19316         works.
19317
19318 2004-12-17  Jackson Harper  <jackson@ximian.com>
19319
19320         * XplatUIStructs.cs: Updated set of virtual keycodes.
19321         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
19322
19323 2004-12-17  Jackson Harper  <jackson@ximian.com>
19324
19325         * XplatUIX11.cs: Prune old keyboard code.
19326
19327 2004-12-17  Jackson Harper  <jackson@ximian.com>
19328
19329         * XplatUIX11.cs: When generating mouse wparams get the modifier
19330         keys from the ModifierKeys property.
19331
19332 2004-12-17  Jackson Harper  <jackson@ximian.com>
19333
19334         * X11Keyboard.cs: Send up/down input when generating
19335         messages. Remove some unused vars.
19336
19337 2004-12-17  Jackson Harper  <jackson@ximian.com>
19338
19339         * TabControl.cs:
19340         * TreeView.cs: get rid of warnings.
19341
19342 2004-12-17  Jackson Harper  <jackson@ximian.com>
19343
19344         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
19345
19346 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
19347
19348         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
19349           CheckedListBox.cs: Implementation
19350
19351 2004-12-17  Peter Bartok  <pbartok@novell.com>
19352
19353         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
19354
19355 2004-12-16  Peter Bartok  <pbartok@novell.com>
19356
19357         * TextControl.cs:
19358           - InsertCharAtCaret(): Fixed start pos fixup
19359           - CaretLine_get: No longer derives the line from the tag, the tag
19360             could be stale if lines in the document have been added or deleted
19361           - RebalanceAfterDelete(): Fixed bug in balancing code
19362           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
19363           - Line.Streamline(): Now can also elminate leading empty tags
19364           - DumpTree(): Added a few more tests and prevented exception on
19365             uninitialized data
19366           - Added Debug section for Combining lines
19367           - Delete(): Now copies all remaining properties of a line
19368           
19369         * TextBoxBase.cs:
19370           - Left mousebutton now sets the caret (and middle button still acts
19371             as formatting tester, which must go away soon)
19372           - Added Debug section for Deleting/Combining lines
19373           - Fixed calculations for UpdateView after Combining lines
19374
19375 2004-12-16  Peter Bartok  <pbartok@novell.com>
19376
19377         * TextControl.cs: Now properly aligns text on a baseline, using the
19378           new XplatUI.GetFontMetrics() method. Simplified several calculations
19379         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
19380           defined
19381
19382 2004-12-16  Peter Bartok  <pbartok@novell.com>
19383
19384         * XplatUI.cs: Added GetFontMetrics() method
19385         * XplatUIDriver.cs: Added GetFontMetrics() abstract
19386         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
19387           into libgdiplus, our private GetFontMetrics function
19388         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
19389         * XplatUIWin32.cs: Implemented GetFontMetrics() method
19390
19391 2004-12-16  Jackson Harper  <jackson@ximain.com>
19392
19393         * XplatUIStruct.cs: Add enum for dead keys
19394         * X11Keyboard.cs: Map and unmap dead keys.
19395
19396 2004-12-16  Jackson Harper  <jackson@ximian.com>
19397
19398         * X11Keyboard.cs: Detect and use the num lock mask.
19399
19400 2004-12-16  Peter Bartok  <pbartok@novell.com>
19401
19402         * Control.cs (CreateGraphics): Added check to make sure the
19403           handle of the window exists before calling Graphics.FromHwnd()
19404
19405 2004-12-16  Peter Bartok  <pbartok@novell.com>
19406
19407         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
19408           contains a lot of code that's not supposed to be there for the
19409           real thing, but required for developing/testing the textbox
19410           backend.
19411
19412 2004-12-16  Peter Bartok  <pbartok@novell.com>
19413
19414         * TextControl.cs:
19415         - Fixed Streamline method
19416         - Added FindTag method to Line
19417         - Added DumpTree method for debugging
19418         - Added DecrementLines() method for deleting lines
19419         - Fixed UpdateView to update the cursor to end-of-line on single-line
19420           updates
19421         - Added PositionCaret() method
19422         - Fixed MoveCaret(LineDown) to move into the last line, too
19423         - Added InsertChar overload
19424         - Fixed InsertChar tag offset calculations
19425         - Added DeleteChar() method
19426         - Added Combine() method for folding lines
19427         - Fixed Delete() method, no longer allocates wasted Line object and
19428           now copies all properties when swapping nodes
19429         - Delete() method now updates document line counter
19430
19431 2004-12-15  Jackson Harper  <jackson@ximian.com>
19432
19433         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
19434         * X11Keyboard.cs: Expose the currently selected modifier keys
19435         through a property.
19436
19437 2004-12-15  Peter Bartok  <pbartok@novell.com>
19438
19439         * TextControl.cs: Initial check-in. Still incomplete
19440
19441 2004-12-15  Jackson Harper  <jackson@ximian.com>
19442
19443         * TreeNode.cs:
19444         * TreeView.cs: Fix build on csc (second time today ;-))
19445
19446 2004-12-15  Jackson Harper  <jackson@ximian.com>
19447
19448         * TreeView.cs: Store the treenodes plus/minus box bounds when it
19449         is calculated and use this for click testing.
19450         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
19451
19452 2004-12-15  Jackson Harper  <jackson@ximian.com>
19453
19454         * TreeView.cs: Pass the nodes image index to the image list when
19455         drawing that image.
19456
19457 2004-12-15  Jackson Harper  <jackson@ximian.com>
19458
19459         * X11Keyboard.cs: Set messages hwnd.
19460         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
19461         post_message calls.
19462
19463 2004-12-15  Jackson Harper  <jackson@ximian.com>
19464
19465         * X11Keyboard.cs: Fix to compile with csc.
19466         
19467 2004-12-15  Jackson Harper  <jackson@ximian.com>
19468
19469         * X11Structs.cs: Add key mask values
19470         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
19471         * X11Keyboard.cs: New file - Extrapolates and interpolates key
19472         down/up foo into WM_CHAR foo
19473         * KeyboardLayouts.cs: Common keyboard layouts
19474         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
19475         post messages into the main queue.
19476
19477 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
19478
19479         * Button.cs: implement ProcessMnemonic
19480         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
19481           brushes everytime
19482         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
19483         * ButtonBase.cs: Show HotkeyPrefix (not the &)
19484
19485 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
19486         
19487         * MonthCalendar.cs: Implemented click-hold for next/previous month
19488           and date selection
19489           
19490 2004-12-11  Peter Bartok  <pbartok@novell.com>
19491
19492         * X11Structs.cs:
19493           - Added XKeyboardState (moved from XplatUIX11.cs)
19494           - Added XCreateGC related enums and structures
19495           - Added GXFunction for XSetFunction
19496
19497         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
19498
19499         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
19500           CaretVisible() calls
19501
19502         * ToolTip.cs: Added code to prevent stealing focus from app windows
19503
19504         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
19505           DestroyCaret, SetCaretPos and CaretVisible)
19506
19507         * XplatUIX11.cs:
19508           - Added implementation for caret functions
19509           - Moved hover variables into a struct, to make it a bit easier
19510             on the eyes and to debug
19511           - Removed XKeyboardState (moved to XplatUIX11.cs)
19512           - Moved Keyboard properties into the properties region
19513
19514         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
19515           call to get a graphics context for our control
19516
19517         * XplatUIOSX.cs: Added empty overrides for the new caret functions
19518
19519         * TreeView.cs: Fixed bug. No matter what color was set it would always
19520           return SystemColors.Window
19521
19522         * XplatUIWin32.cs: Implemented caret overrides
19523
19524 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
19525
19526         * ListBox.cs: fire events, implement missing methods and properties,
19527         sorting.
19528
19529 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
19530
19531         * MonthCalendar.cs: invalidation bug fixing
19532         * ThemeWin32Classic.cs: paint fixing
19533
19534 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
19535
19536         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
19537         prepare the CGContextRef there now.
19538
19539 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
19540
19541         * MonthCalendar.cs:
19542           - optimisationL only invalidate areas that have changed
19543         * ThemeWin32Classic.cs:
19544           - only paint parts that intersect with clip_area
19545
19546 2004-12-09  Peter Bartok  <pbartok@novell.com>
19547
19548         * Application.cs: Undid changes from r37004 which cause problems
19549         on X11
19550
19551 2004-12-09  Ravindra  <rkumar@novell.com>
19552
19553         * ToolBar.cs: Added support for displaying ContextMenu
19554         attached to a button on ToolBar.
19555         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
19556         property.
19557
19558 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19559
19560         * Label.cs: autosize works in text change and removes unnecessary
19561         invalidate
19562
19563 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19564
19565         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19566         remove warnings
19567
19568 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
19569
19570         * XplatUIOSX.cs: Added mouse move/click/grab support
19571         Remove some debugging WriteLines not needed anymore.
19572         Add window resizing/positioning.
19573         Fix visibility on reparenting.
19574
19575 2004-12-08  Peter Bartok  <pbartok@novell.com>
19576
19577         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
19578
19579 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
19580
19581         * XplatUIOSX.cs: Initial checkin
19582         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
19583
19584 2004-12-03  Ravindra <rkumar@novell.com>
19585
19586         * ListView.cs: Added some keybindings and fixed scrolling.
19587         ScrollBars listen to ValueChanged event instead of Scroll
19588         Event. This would let us take care of all changes being
19589         done in the scrollbars' values programmatically or manually.
19590         * ListView.cs (CanMultiselect): Added a check for shift key.
19591         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
19592         * ListViewItem.cs (Clone): Fixed. We need to make a copy
19593         of ListViewSubItemCollection as well.
19594
19595 2004-12-06  Peter Bartok <pbartok@novell.com>
19596
19597         * Control.cs (Parent): Added check and exception to prevent
19598         circular parenting
19599
19600 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
19601
19602         * ListBox.cs: implemented clipping, selection single and multiple,
19603         bug fixing
19604
19605 2004-12-03  Ravindra <rkumar@novell.com>
19606
19607         * ListView.cs (ListView_KeyDown):
19608         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
19609         when CTRL key is pressed.
19610         * ListViewItem.cs (Selected): Fixed setting the property.
19611
19612 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19613
19614         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
19615
19616         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
19617         MinimizeBox, ShowInTaskbar, TopMost properties.
19618
19619         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
19620         will be implemented).
19621
19622 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19623
19624         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
19625
19626         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
19627         tests.
19628         
19629         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
19630         
19631         * TreeView.cs: BackColor is Colors.Window.
19632
19633 2004-12-01  Jackson Harper  <jackson@ximian.com>
19634
19635         * TreeView.cs: When resizing the tree if the user is making it
19636         smaller we don't get expose events, so we need to handle adding
19637         the horizontal scrollbar in the size changed handler as well as
19638         the expose handler.
19639
19640 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
19641
19642         * DrawItemState.cs: fixes wrong enum values
19643
19644 2004-12-01  Jackson Harper  <jackson@ximian.com>
19645
19646         * TreeView.cs: Resize the hbar as well as the vbar on resize.
19647
19648 2004-12-01  Jackson Harper  <jackson@ximian.com>
19649
19650         * NodeLabelEditEventArgs.cs:
19651         * NodeLabelEditEventHandler.cs:
19652         * OpenTreeNodeEnumerator.cs:
19653         * TreeNode.cs:
19654         * TreeNodeCollection.cs:
19655         * TreeView.cs:
19656         * TreeViewAction.cs:
19657         * TreeViewCancelEventArgs.cs:
19658         * TreeViewCancelEventHandler.cs:
19659         * TreeViewEventArgs.cs:
19660         * TreeViewEventHandler.cs: Initial implementation.
19661
19662 2004-12-01  Ravindra <rkumar@novell.com>
19663
19664         * ListView.cs (CalculateListView): Fixed scrolling related
19665         calculations. Also, removed some debug statements from other
19666         places.
19667         * ListViewItem.cs: Changed access to 'selected' instance variable
19668         from private to internal.
19669         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
19670
19671 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
19672
19673         * ThemeWin32Classic.cs: remove cache of brush and pens for
19674         specific controls and use the global system, fixes scrollbutton
19675         bugs (for small sizes, disabled, etc)
19676         
19677         * ScrollBar.cs: does not show the thumb for very small controls
19678         (as MS) and allow smaller buttons that the regular size
19679
19680 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19681
19682         * UpDownBase.cs: Add abstract methods for the interface.
19683         Add new virtual methods (need to be hooked up to TextEntry when it
19684         exists).
19685         Add override methods for most features.
19686         Computes the size, forces the height of the text entry.
19687
19688         * NumericUpDown.cs: Put here the current testing code.
19689
19690         * Set eol-style property on all files that do not have mixed line
19691         endings, to minimize the future problems.  There are still a few
19692         files with mixed endings, and someone should choose whether they
19693         want to move it or not.
19694
19695 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19696
19697         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19698         System.Colors
19699         
19700 2004-11-30  Ravindra <rkumar@novell.com>
19701
19702         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19703         drawing and replaced use of SystemColors by theme colors.
19704         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19705         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19706         same ListViewItem is being added more than once.
19707
19708 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19709
19710         * MonthCalendar.cs:
19711           - ControlStyles love to make the control not flicker
19712           
19713 2004-11-30  Peter Bartok  <pbartok@novell.com>
19714
19715         * CharacterCasing.cs: Added
19716
19717 2004-11-29  Peter Bartok  <pbartok@novell.com>
19718
19719         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19720           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19721           I am removing these files as they conflict with already completed
19722           work. While it is fantastic to get contributions to MWF, I
19723           respectfully ask that everyone please coordinate their contributions
19724           through mono-winforms-list or #mono-winforms at this time. We're
19725           explicitly avoiding stubbing and don't want controls that don't have
19726           their basic functionality implemented in svn. Please also see
19727           http://www.mono-project.com/contributing/winforms.html
19728
19729
19730 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19731
19732         * Application.cs (ModalRun): Don't hang after exit.
19733
19734         * Theme.cs: New TreeViewDefaultSize property.
19735
19736         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19737         with less hardcoded SystemColors constant.
19738         Implemented TreeViewDefaultSize.
19739
19740         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19741         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19742
19743
19744 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19745
19746         * MonthCalendar.cs:
19747           - Fix NextMonthDate and PrevMonthDate click moving calendar
19748
19749 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19750
19751         * MonthCalendar.cs:
19752           - Fix usage of ScrollChange Property when scrolling months
19753
19754 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19755
19756         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19757          - Fixes menu destroying
19758          - Support adding and removing items on already created menus
19759
19760 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19761
19762         * MonthCalendar.cs:
19763           - Re-worked all bolded dates handling to match win32
19764         * ThemeWin32Classic.cs:
19765           - Fixed rendering with bolded dates
19766
19767 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19768
19769         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19770         - Horizontal scroolbar
19771         - Multicolumn
19772         - Fixes
19773
19774
19775 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19776
19777         * MonthCalendar.cs:
19778           - Fix Usage of MaxSelectionCount from SelectionRange
19779           - Fixed Shift + Cursor Selection
19780           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19781           - Fixed normal cursor selection to be compat with win32
19782           - Fixed Shift + Mouse Click selection
19783
19784 2004-11-24  Peter Bartok <pbartok@novell.com>
19785
19786         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19787         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19788         * XplatUIX11.cs:
19789           - CreatedKeyBoardMsg now updates keystate with Alt key
19790           - Added workaround for timer crash to CheckTimers, Jackson will
19791             develop a proper fix and check in later
19792           - Implemented DispatchMessage
19793           - Removed calling the native window proc from GetMessage (call
19794             now moved to DispatchMessage)
19795
19796         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19797           the keydata (Fixes bug #69831)
19798
19799         * XplatUIWin32.cs:
19800           - (DispatchMessage): Switched to return IntPtr
19801           - Added DllImport for SetFocus
19802
19803 2004-11-24  Ravindra <rkumar@novell.com>
19804
19805         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19806         background drawing.
19807         * ListViewItem.cs: Fixed various properties, calculations
19808         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19809         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19810         and some internal properties. Fixed MouseDown handler and Paint
19811         method.
19812
19813 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19814
19815         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19816
19817 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19818
19819         * ContainerControl.cs: correct accidental check in of local changes
19820
19821 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19822
19823         * ThemeWin32Classic.cs:
19824                 - Fixed Drawing Last month in grid (sometimes not showing)
19825         * MonthCalendar.cs:
19826                 - Fixed title width calculation bug (makeing title small)
19827
19828 2004-11-23  Peter Bartok <pbartok@novell.com>
19829
19830         * XplatUIX11.cs:
19831           - Added generation of WM_MOUSEHOVER event
19832           - Added missing assignment of async_method atom
19833           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19834
19835 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19836
19837         * ThemeWin32Classic.cs:
19838                 - Fixed Drawing of today circle when showtodaycircle not set
19839                 - fixed drawing of first and last month in the grid (gay dates)
19840         * MonthCalendar.cs:
19841                 - Fixed Drawing of today circle
19842                 - Fixed drawing of grady dates
19843                 - Fixed HitTest for today link when ShowToday set to false
19844                 - Fixed DefaultSize to obey ShowToday
19845
19846 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19847
19848         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19849         * System.Windows.Forms/Theme.cs
19850         * MonthCalendar.cs: added for MonthCalendar
19851         * SelectionRange.cs: added for MonthCalendar
19852         * Day.cs: added for MonthCalendar: added for MonthCalendar
19853         * DateRangeEventArgs.cs: added for MonthCalendar
19854         * DateRangeEventHandler.cs: added for MonthCalendar
19855
19856 2004-11-22  Ravindra <rkumar@novell.com>
19857
19858         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19859         property.
19860
19861 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19862
19863         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19864         event handler.
19865         
19866         * NumericUpDown.cs: Added new implementation.
19867         * UpDownBase.cs: Added new implementation.
19868
19869         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19870         implementations.
19871         
19872         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19873         implementations.
19874
19875         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19876         methods.
19877
19878 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19879
19880         * Timer.cs  (Dispose): Should call the base dispose when
19881         overriding.
19882
19883 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19884
19885         * ScrollBar.cs: updates thumb position when max, min or increment
19886         is changed
19887
19888 2004-11-21  Ravindra <rkumar@novell.com>
19889
19890         * ListView.cs: Implemented item selection, activation and
19891         column header style. Fixed properties to do a redraw, if
19892         required. Added support for MouseHover, DoubleClick, KeyDown
19893         and KeyUp event handling and some minor fixes.
19894         * ListViewItem.cs: Fixed constructor.
19895         * ThemeWin32Classic.cs: Improved drawing for ListView.
19896
19897 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19898
19899         * ThemeWin32Classic.cs: initial listbox drawing code
19900         * DrawMode.cs: new enumerator
19901         * ListControl.cs: stubbed class
19902         * ListBox.cs: initial implementation
19903         * Theme.cs: new methods definitions
19904         * SelectionMode.cs: new enumerator
19905
19906 2004-11-17  Peter Bartok  <pbartok@novell.com>
19907
19908         * XplatUIWin32.cs: Added double-click events to the class style
19909         * Control.cs (WndProc):
19910           - Added handling of click-count to MouseDown/ MouseUp events.
19911           - Added handling of middle and right mouse buttons
19912           - Removed old debug code
19913
19914 2004-11-17  Jackson Harper  <jackson@ximian.com>
19915
19916         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19917
19918 2004-11-17  Ravindra <rkumar@novell.com>
19919
19920         * ListView.cs: Added event handling for MouseMove/Up/Down.
19921         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19922         * ThemeWin32Classic.cs: We need to clear the graphics context and
19923         draw column header in a proper state.
19924
19925
19926 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19927
19928         *  Menu.cs: fixes signature
19929
19930 2004-11-16  Peter Bartok  <pbartok@novell.com>
19931
19932         * XplatUIX11.cs (GetMessage): Implemented generation of
19933           double click mouse messages
19934
19935 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19936
19937         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19938         not by menu
19939
19940 2004-11-11  Peter Bartok  <pbartok@novell.com>
19941
19942         * HandleData.cs: Added Visible property
19943         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19944           HandleData
19945         * XplatUIX11.cs: Removed old debug leftovers
19946         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19947         * Control.cs (WndProc): Removed old debug leftovers,
19948           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19949           needed WM_SIZE handling
19950
19951 2004-11-11  Jackson Harper  <jackson@ximian.com>
19952
19953         * OwnerDrawPropertyBag.cs:
19954         * TreeViewImageIndexConverter.cs: Initial implementation
19955
19956 2004-11-10  Jackson Harper  <jackson@ximian.com>
19957
19958         * ThemeWin32Classic.cs:
19959         * TabControl.cs: instead of moving tabs by the slider pos just
19960         start drawing at the tab that is offset by the slider. This way
19961         scrolling always moves by exactly one tab.
19962
19963 2004-11-10  Jackson Harper  <jackson@ximian.com>
19964
19965         * TabControl.cs: You can only scroll left when the slider has
19966         already ben moved right.
19967         
19968 2004-11-10  Jackson Harper  <jackson@ximian.com>
19969
19970         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19971         the clip area.
19972         
19973 2004-11-10  Jackson Harper  <jackson@ximian.com>
19974
19975         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19976         clip area.
19977         
19978 2004-11-09  Jackson Harper  <jackson@ximian.com>
19979
19980         * TabControl.cs (CalcXPos): New helper method so we can determine
19981         the proper place to start drawing vertical tabs.
19982         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19983         
19984 2004-11-09  Jackson Harper  <jackson@ximian.com>
19985
19986         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19987         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19988         and Bottom, left and right are illegal values for this and
19989         multiline is enabled when the alignment is set to left or right.
19990         (DrawTab): Each alignment block should draw the text itself now
19991         because Left requires special love. Also add rendering for Left
19992         aligned tabs.
19993         
19994 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19995
19996         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19997         does not destroy the windows, removes debugging messages
19998
19999 2004-11-09  jba  <jba-mono@optusnet.com.au>
20000
20001         * ThemeWin32Classic.cs
20002         (DrawButtonBase): Fix verticle text rect clipping in windows
20003         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20004         rendering and incorrect text rect clipping
20005         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
20006         rendering and incorrect text rect clipping
20007         
20008 2004-11-08  Jackson Harper  <jackson@ximian.com>
20009
20010         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
20011         bottom when they are bottom aligned so the bottoms of the tabs get
20012         displayed.
20013         * TabControl.cs (DropRow): Move rows up instead of down when the
20014         tab control is bottom aligned.
20015
20016 2004-11-08 13:59  pbartok
20017
20018         * XplatUIX11.cs:
20019           - Added handling for various window styles
20020           - Added handling for popup windows
20021           - Added SetTopmost handling
20022
20023 2004-11-08 13:55  pbartok
20024
20025         * XplatUIWin32.cs:
20026           - Added argument to SetTopmost method
20027           - Fixed broken ClientToScreen function
20028
20029 2004-11-08 13:53  pbartok
20030
20031         * XplatUIStructs.cs:
20032           - Added missing WS_EX styles
20033
20034 2004-11-08 13:53  pbartok
20035
20036         * XplatUI.cs, XplatUIDriver.cs:
20037           - Added argument to SetTopmost
20038
20039 2004-11-08 13:52  pbartok
20040
20041         * X11Structs.cs:
20042           - Added XSetWindowAttributes structure
20043           - Improved XWindowAttributes structure
20044           - Added SetWindowValuemask enum
20045           - Added window creation arguments enum
20046           - Added gravity enum
20047           - Added Motif hints structure
20048           - Added various Motif flags and enums
20049           - Added PropertyMode enum for property functions
20050
20051 2004-11-08 13:50  pbartok
20052
20053         * Form.cs:
20054           - Fixed arguments for updated SetTopmost method
20055
20056 2004-11-08 13:49  pbartok
20057
20058         * ToolTip.cs:
20059           - Fixed arguments for updated SetTopmost function
20060           - Fixed usage of PointToClient
20061
20062 2004-11-08 13:44  pbartok
20063
20064         * MenuAPI.cs:
20065           - Added Clipping of children and siblings
20066
20067 2004-11-08 13:41  pbartok
20068
20069         * MainMenu.cs:
20070           - Removed SetMenuBarWindow call. We do this in Form.cs
20071
20072 2004-11-08 13:40  jackson
20073
20074         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
20075           scrolling jimmi in the correct location with bottom aligned tabs
20076
20077 2004-11-08 13:36  pbartok
20078
20079         * ContainerControl.cs:
20080           - Implemented BindingContext
20081           - Implemented ParentForm
20082
20083 2004-11-08 12:46  jackson
20084
20085         * TabControl.cs: Put bottom rendered tabs in the right location
20086
20087 2004-11-08 07:15  jordi
20088
20089         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
20090           removes dead code
20091
20092 2004-11-05 17:30  jackson
20093
20094         * TabControl.cs: When selected tabs are expanded make sure they
20095           don't go beyond the edges of the tab control
20096
20097 2004-11-05 14:57  jackson
20098
20099         * TabControl.cs: Reset show_slider so if the control is resized to
20100           a size where it is no longer needed it's not displayed anymore
20101
20102 2004-11-05 13:16  jackson
20103
20104         * TabControl.cs: Make tab pages non visible when added to the
20105           control
20106
20107 2004-11-05 12:42  jackson
20108
20109         * TabControl.cs: Implement SizeMode.FillToRight
20110
20111 2004-11-05 12:16  jackson
20112
20113         * Control.cs: Do not call CreateHandle if the handle is already
20114           created
20115
20116 2004-11-05 11:46  jackson
20117
20118         * TabControl.cs: Remove superflous call to CalcTabRows
20119
20120 2004-11-05 09:07  jackson
20121
20122         * XplatUIX11.cs: Update for Mono.Posix changes
20123
20124 2004-11-05 07:00  ravindra
20125
20126         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
20127           scrolling.
20128
20129 2004-11-04 22:47  jba
20130
20131         * ThemeWin32Classic.cs:
20132           - Fix Button rendering for FlatStyle = Flat or Popup
20133           - Fix RadioButton and CheckBox rendering when Appearance = Button
20134             (normal and flatstyle).
20135           - Correct outer rectangle color when drawing focus rectangle
20136           - Adjust button bounds to be 1 px smaller when focused
20137           - Make button not draw sunken 3d border when pushed (windows compat)
20138           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
20139           - Offset the text in RadioButton and Checkbox when being rendered as
20140           a button.
20141           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
20142           radiobuttons
20143           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
20144           - Fixed disabled text rendering for normally rendered radiobuttons
20145
20146 2004-11-04 10:26  jackson
20147
20148         * TabControl.cs: Recalculate tab rows when resizing
20149
20150 2004-11-04 07:47  jordi
20151
20152         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
20153           collection completion, drawing issues, missing features
20154
20155 2004-11-04 05:03  ravindra
20156
20157         * ScrollBar.cs:
20158                 - We need to recalculate the Thumb area when
20159                 LargeChange/maximum/minimum values are changed.
20160           - We set the 'pos' in UpdatePos() method to minimum, if it's less
20161                 than minimum. This is required to handle the case if large_change is
20162                 more than max, and use LargeChange property instead of large_change
20163                 variable.
20164           - We return max+1 when large_change is more than max, like MS does.
20165
20166 2004-11-04 04:29  ravindra
20167
20168         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
20169                 - Changed default value signatures (prefixed all with ListView).
20170                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
20171                 ListView.
20172           - Fixed calculations for ListViewItem and implemented Clone()
20173           method.
20174
20175 2004-11-04 04:26  ravindra
20176
20177         * Theme.cs, ThemeWin32Classic.cs:
20178                 - Changed default ListView values signatures (prefixed all with
20179                 ListView).
20180           - Fixed default size values for VScrollBar and HScrollBar.
20181                 - Fixed DrawListViewItem method.
20182
20183 2004-11-04 04:05  ravindra
20184
20185         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
20186
20187 2004-11-04 04:04  ravindra
20188
20189         * ImageList.cs: Implemented the missing overload for Draw method.
20190
20191 2004-11-03 19:29  jackson
20192
20193         * TabControl.cs: Handle dropping rows on selection properly
20194
20195 2004-11-03 11:59  jackson
20196
20197         * TabControl.cs: remove debug code
20198
20199 2004-11-03 11:52  jackson
20200
20201         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
20202           the scrolly widgerywoo
20203
20204 2004-11-02 13:52  jackson
20205
20206         * TabControl.cs: Resize the tab pages and tabs when the tab control
20207           is resized
20208
20209 2004-11-02 13:40  jackson
20210
20211         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
20212           selected tab to the bottom
20213
20214 2004-11-02 13:39  jackson
20215
20216         * TabPage.cs: Store the tab pages row
20217
20218 2004-11-02 12:33  jordi
20219
20220         * MenuItem.cs: fixes handle creation
20221
20222 2004-11-02 11:42  jackson
20223
20224         * TabControl.cs: signature fix
20225
20226 2004-11-02 08:56  jackson
20227
20228         * TabControl.cs: Calculate whether the tab is on an edge properly.
20229           Remove top secret debugging code
20230
20231 2004-11-01 19:57  jackson
20232
20233         * TabControl.cs: Add click handling, and proper sizing
20234
20235 2004-11-01 19:47  jackson
20236
20237         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
20238           tab controls
20239
20240 2004-11-01 19:39  jackson
20241
20242         * TabPage.cs: add internal property to store the bounds of a tab
20243           page
20244
20245 2004-10-30 04:23  ravindra
20246
20247         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
20248           values.
20249
20250 2004-10-30 04:21  ravindra
20251
20252         * ListView.cs, ListViewItem.cs: Added support for scrolling and
20253           fixed calculations.
20254
20255 2004-10-30 03:06  pbartok
20256
20257         * XplatUIX11.cs:
20258           - Removed extension of DllImported libs
20259
20260 2004-10-29 09:55  jordi
20261
20262         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
20263           navigation, itemcollection completion, menu fixes
20264
20265 2004-10-27 22:58  pbartok
20266
20267         * XplatUIX11.cs:
20268           - Now throws a nice error message when no X display could be opened
20269
20270 2004-10-26 13:51  jordi
20271
20272         * ListView.cs: removes warning
20273
20274 2004-10-26 03:55  ravindra
20275
20276         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
20277           ThemeWin32Classic.cs: Some formatting for my last checkins.
20278
20279 2004-10-26 03:36  ravindra
20280
20281         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
20282           control and default values.
20283
20284 2004-10-26 03:35  ravindra
20285
20286         * Theme.cs: Added some default values for ListView control.
20287
20288 2004-10-26 03:33  ravindra
20289
20290         * ToolBar.cs: ToolBar should use the user specified button size, if
20291           there is any. Added a size_specified flag for the same.
20292
20293 2004-10-26 03:33  ravindra
20294
20295         * ColumnHeader.cs: Added some internal members and calculations for
20296           ColumnHeader.
20297
20298 2004-10-26 03:32  ravindra
20299
20300         * ListViewItem.cs: Calculations for ListViewItem.
20301
20302 2004-10-26 03:31  ravindra
20303
20304         * ListView.cs: Added some internal members and calculations for
20305           ListView.
20306
20307 2004-10-22 13:31  jordi
20308
20309         * MenuAPI.cs: speedup menus drawing
20310
20311 2004-10-22 13:16  jackson
20312
20313         * XplatUIX11.cs: Make sure to update exposed regions when adding an
20314           expose event
20315
20316 2004-10-22 11:49  jackson
20317
20318         * Control.cs: oops
20319
20320 2004-10-22 11:41  jackson
20321
20322         * Control.cs: Check to see if the window should have its background
20323           repainted by X when drawing.
20324
20325 2004-10-22 11:31  jackson
20326
20327         * XplatUIX11.cs: When invalidating areas only use XClearArea if
20328           clear is true, this way we do not get flicker from X repainting the
20329           background
20330
20331 2004-10-22 11:28  jackson
20332
20333         * XEventQueue.cs: Queue properly
20334
20335 2004-10-21 09:38  jackson
20336
20337         * XEventQueue.cs: Fix access modifier
20338
20339 2004-10-21 09:36  jackson
20340
20341         * XEventQueue.cs: Don't loose messages
20342
20343 2004-10-21 09:22  jackson
20344
20345         * XEventQueue.cs: Don't loose messages
20346
20347 2004-10-20 04:15  jordi
20348
20349         * BootMode.cs: enum need it by SystemInfo
20350
20351 2004-10-19 21:58  pbartok
20352
20353         * XplatUIWin32.cs:
20354           - Small sanity check
20355
20356 2004-10-19 21:56  pbartok
20357
20358         * Form.cs:
20359           - Added private FormParentWindow class which acts as the container
20360             for our form and as the non-client area where menus are drawn
20361           - Added/Moved required tie-ins to Jordi's menus
20362           - Fixed/Implemented the FormStartPosition functionality
20363
20364 2004-10-19 21:52  pbartok
20365
20366         * Control.cs:
20367           - Removed unneeded locals
20368           - Added code to all size and location properties to understand and
20369             deal with the parent container of Form
20370
20371 2004-10-19 21:33  pbartok
20372
20373         * Application.cs:
20374           - Fixed to deal with new Form subclasses for menus
20375
20376 2004-10-19 17:48  jackson
20377
20378         * XEventQueue.cs: commit correct version of file
20379
20380 2004-10-19 16:50  jackson
20381
20382         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
20383
20384 2004-10-19 16:15  jordi
20385
20386         * MenuAPI.cs: MenuBarCalcSize returns the height
20387
20388 2004-10-19 08:31  pbartok
20389
20390         * Control.cs:
20391           - Added missing call to PreProcessMessage before calling OnXXXKey
20392           methods
20393
20394 2004-10-19 00:04  ravindra
20395
20396         * ToolTip.cs: Fixed constructor.
20397
20398 2004-10-18 09:31  jordi
20399
20400         * MenuAPI.cs: menuitems in menubars do not have shortcuts
20401
20402 2004-10-18 09:26  jordi
20403
20404         * MenuItem.cs: fixes MenuItem class signature
20405
20406 2004-10-18 08:56  jordi
20407
20408         * MenuAPI.cs: prevents windows from showing in the taskbar
20409
20410 2004-10-18 00:28  ravindra
20411
20412         * ToolTip.cs: Suppressed a warning message.
20413
20414 2004-10-18 00:27  ravindra
20415
20416         * Control.cs: Default value of visible property must be true.
20417
20418 2004-10-17 23:19  pbartok
20419
20420         * ToolTip.cs:
20421           - Complete implementation
20422
20423 2004-10-17 23:19  pbartok
20424
20425         * XplatUIX11.cs:
20426           - Added EnableWindow method
20427           - Added SetModal stub
20428           - Added generation of WM_ACTIVATE message (still needs testing)
20429           - Added SetTopMost stub
20430           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
20431
20432 2004-10-17 23:17  pbartok
20433
20434         * XplatUIWin32.cs:
20435           - Removed VirtualKeys to XplatUIStructs
20436           - Implemented SetTopMost method
20437           - Implemented EnableWindow method
20438           - Bugfix in ScreenToClient()
20439           - Bugfixes in ClientToScreen()
20440
20441 2004-10-17 22:51  pbartok
20442
20443         * XplatUIStructs.cs:
20444           - Added WS_EX styles to WindowStyles enumeration
20445
20446 2004-10-17 22:50  pbartok
20447
20448         * XplatUI.cs, XplatUIDriver.cs:
20449           - Added method for enabling/disabling windows
20450           - Added method for setting window modality
20451           - Added method for setting topmost window
20452
20453 2004-10-17 22:49  pbartok
20454
20455         * ThemeWin32Classic.cs:
20456           - Added ToolTip drawing code
20457
20458 2004-10-17 22:49  pbartok
20459
20460         * Theme.cs:
20461           - Added ToolTip abstracts
20462
20463 2004-10-17 22:47  pbartok
20464
20465         * Form.cs:
20466           - Fixed Form.ControlCollection to handle owner relations
20467           - Added Owner/OwnedForms handling
20468           - Implemented Z-Ordering for owned forms
20469           - Removed unneeded private overload of ShowDialog
20470           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
20471             so I hope)
20472           - Fixed Close(), had wrong default
20473           - Added firing of OnLoad event
20474           - Added some commented out debug code for Ownership handling
20475
20476 2004-10-17 22:16  pbartok
20477
20478         * Control.cs:
20479           - Fixed/implemented flat list of controls
20480
20481 2004-10-17 22:14  pbartok
20482
20483         * Application.cs:
20484           - Added code to simulate modal dialogs on Win32
20485
20486 2004-10-17 16:11  jordi
20487
20488         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
20489           mouse event
20490
20491 2004-10-17 13:39  jordi
20492
20493         * MenuAPI.cs: menu drawing fixes
20494
20495 2004-10-15 09:10  ravindra
20496
20497         * StructFormat.cs: General Enum.
20498
20499 2004-10-15 09:09  ravindra
20500
20501         * SizeGripStyle.cs: Enum for Form.
20502
20503 2004-10-15 09:08  ravindra
20504
20505         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
20506           in Theme for ListView.
20507
20508 2004-10-15 09:06  ravindra
20509
20510         * ColumnHeader.cs: Flushing some formatting changes.
20511
20512 2004-10-15 09:05  ravindra
20513
20514         * ListViewItem.cs: Implemented GetBounds method and fixed coding
20515           style.
20516
20517 2004-10-15 09:03  ravindra
20518
20519         * ListView.cs: Implemented Paint method and fixed coding style.
20520
20521 2004-10-15 07:34  jordi
20522
20523         * MenuAPI.cs: fix for X11
20524
20525 2004-10-15 07:32  ravindra
20526
20527         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
20528                 - Renamed Paint() method to Draw() for clarity. Also, moved
20529                 DrawImage() to OnPaint().
20530
20531 2004-10-15 07:25  ravindra
20532
20533         * CheckBox.cs, RadioButton.cs:
20534                 - Removed Redraw (), we get it from ButtonBase.
20535                 - Implemented Paint (), to do class specific painting.
20536
20537 2004-10-15 07:16  ravindra
20538
20539         * ButtonBase.cs:
20540                 - Redraw () is not virtual now.
20541                 - Added an internal virtual method Paint (), so that
20542                 derived classes can do their painting on their own.
20543                 - Modified OnPaint () to call Paint ().
20544
20545 2004-10-15 06:43  jordi
20546
20547         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
20548           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
20549
20550 2004-10-15 00:30  ravindra
20551
20552         * MessageBox.cs:
20553                 - MessageBox on windows does not have min/max buttons.
20554                 This change in CreateParams fixes this on Windows. We
20555                 still need to implement this windowstyle behavior in
20556                 our X11 driver.
20557
20558 2004-10-14 05:14  ravindra
20559
20560         * ToolBar.cs:
20561                 - Changed Redraw () to do a Refresh () always.
20562                 - Fixed the MouseMove event handling when mouse is pressed,
20563                 ie drag event handling.
20564                 - Replaced the usage of ToolBarButton.Pressed property to
20565                 ToolBarButton.pressed internal variable.
20566
20567 2004-10-14 05:10  ravindra
20568
20569         * ToolBarButton.cs:
20570                 - Added an internal member 'inside' to handle mouse move
20571                 with mouse pressed ie mouse drag event.
20572                 - Changed 'Pressed' property to return true only when
20573                 'inside' and 'pressed' are both true.
20574                 - Some coding style love.
20575
20576 2004-10-14 00:17  ravindra
20577
20578         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
20579           public method.
20580
20581 2004-10-14 00:15  ravindra
20582
20583         * ButtonBase.cs: Redraw () related improvements.
20584
20585 2004-10-14 00:14  ravindra
20586
20587         * MessageBox.cs: Moved InitFormSize () out of Paint method and
20588           removed unnecessary calls to Button.Show () method.
20589
20590 2004-10-13 17:50  pbartok
20591
20592         * XplatUIX11.cs:
20593           - Formatting fix
20594           - Removed destroying of window until we solve the problem of X
20595             destroying the window before us on shutdown
20596
20597 2004-10-13 16:32  pbartok
20598
20599         * ButtonBase.cs:
20600           - Now Redraws on MouseUp for FlatStyle Flat and Popup
20601
20602 2004-10-13 14:18  pbartok
20603
20604         * XplatUIX11.cs:
20605           - Added code to destroy the X window
20606
20607 2004-10-13 14:18  pbartok
20608
20609         * XplatUIWin32.cs:
20610           - Added code to destroy a window
20611
20612 2004-10-13 14:12  pbartok
20613
20614         * ButtonBase.cs:
20615           - Added the Redraw on Resize that got dropped in the last rev
20616
20617 2004-10-13 09:06  pbartok
20618
20619         * ThemeWin32Classic.cs:
20620           - Path from John BouAntoun:
20621             * Fix check rendering (centre correctly for normal style, offset
20622               correctly for FlatStyle).
20623             * Fix border color usage (use backcolor) for FlatStyle.Popup
20624             * Use checkbox.Capture instead of checkbox.is_pressed when
20625               rendering flatstyle states.
20626
20627 2004-10-12 21:48  pbartok
20628
20629         * ThemeWin32Classic.cs:
20630           - Removed all occurences of SystemColors and replaced them with the
20631             matching theme color
20632
20633 2004-10-12 21:41  pbartok
20634
20635         * ThemeWin32Classic.cs:
20636           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
20637             him using the function for flatstyle drawing
20638           - Changed functions to use the new version of CPDrawBorder3D
20639
20640 2004-10-12 21:15  pbartok
20641
20642         * ControlPaint.cs:
20643           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
20644             match MS documentation. They need to return defined colors if the
20645             passed color matches the configured control color. Thanks to John
20646             BouAntoun for pointing this out.
20647
20648 2004-10-12 20:57  pbartok
20649
20650         * Control.cs:
20651           - Fix from John BouAntoun: Raise ForeColorChanged event when text
20652             color is changed
20653
20654 2004-10-12 20:46  pbartok
20655
20656         * CheckBox.cs:
20657           - Fix from John BouAntoun: Now properly sets the Appearance property
20658
20659 2004-10-12 20:45  pbartok
20660
20661         * ThemeWin32Classic.cs:
20662           - Fixes from John BouAntoun: now handles forecolors and backcolors
20663             for flatstyle rendered controls much better; It also fixes normal
20664             checkbox rendering when pushed or disabled.
20665
20666 2004-10-08 02:50  jordi
20667
20668         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
20669           work
20670
20671 2004-10-07 08:56  jordi
20672
20673         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20674
20675 2004-10-06 03:59  jordi
20676
20677         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20678           XplatUIWin32.cs: removes warnings from compilation
20679
20680 2004-10-05 12:23  jackson
20681
20682         * RadioButton.cs: Fix ctor
20683
20684 2004-10-05 11:10  pbartok
20685
20686         * MessageBox.cs:
20687           - Partial implementation by Benjamin Dasnois
20688
20689 2004-10-05 10:15  jackson
20690
20691         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20692           by John BouAntoun
20693
20694 2004-10-05 03:07  ravindra
20695
20696         * ToolBar.cs:
20697                 - Removed a private method, Draw ().
20698                 - Fixed the ButtonDropDown event handling.
20699                 - Fixed MouseMove event handling.
20700
20701 2004-10-05 03:04  ravindra
20702
20703         * ThemeWin32Classic.cs:
20704                 - Added DrawListView method and ListViewDefaultSize property.
20705                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20706                 - Changed DOS style CRLF to Unix format (dos2unix).
20707
20708 2004-10-05 03:03  ravindra
20709
20710         * Theme.cs:
20711                 - Added DrawListView method and ListViewDefaultSize property.
20712
20713 2004-10-05 02:42  ravindra
20714
20715         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20716           clicks on DropDown arrow.
20717
20718 2004-10-04 22:56  jackson
20719
20720         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20721           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20722           Control handle the buffers, derived classes should not have to
20723           CreateBuffers themselves.
20724
20725 2004-10-04 21:20  jackson
20726
20727         * StatusBar.cs: The control handles resizing the buffers now.
20728
20729 2004-10-04 21:18  jackson
20730
20731         * Control.cs: When resizing the buffers should be invalidated. This
20732           should be handled in Control not in derived classes.
20733
20734 2004-10-04 14:45  jackson
20735
20736         * TabPage.cs: oops
20737
20738 2004-10-04 02:14  pbartok
20739
20740         * LeftRightAlignment.cs:
20741           - Initial check-in
20742
20743 2004-10-04 01:09  jordi
20744
20745         * ThemeWin32Classic.cs: fixes right button position causing right
20746           button not showing on horizontal scrollbars
20747
20748 2004-10-02 13:12  pbartok
20749
20750         * XplatUIX11.cs:
20751           - Simplified the Invalidate method by using an X call instead of
20752             generating the expose ourselves
20753           - Added an expose when the window background is changed
20754           - Implemented ClientToScreen method
20755
20756 2004-10-02 13:08  pbartok
20757
20758         * XplatUIWin32.cs:
20759           - Added Win32EnableWindow method (test for implementing modal
20760           dialogs)
20761           - Added ClientToScreen method and imports
20762
20763 2004-10-02 13:07  pbartok
20764
20765         * XplatUI.cs, XplatUIDriver.cs:
20766           - Added ClientToScreen coordinate translation method
20767
20768 2004-10-02 13:06  pbartok
20769
20770         * KeyPressEventArgs.cs:
20771           - Fixed access level for constructor
20772
20773 2004-10-02 13:06  pbartok
20774
20775         * NativeWindow.cs:
20776           - Changed access level for the window_collection hash table
20777
20778 2004-10-02 13:05  pbartok
20779
20780         * Form.cs:
20781           - Added KeyPreview property
20782           - Added Menu property (still incomplete, pending Jordi's menu work)
20783           - Implemented ProcessCmdKey
20784           - Implemented ProcessDialogKey
20785           - Implemented ProcessKeyPreview
20786
20787 2004-10-02 13:02  pbartok
20788
20789         * Control.cs:
20790           - Added private method to get the Control object from the window
20791           handle
20792           - Implemented ContextMenu property
20793           - Implemented PointToScreen
20794           - Implemented PreProcessMessage
20795           - Implemented IsInputChar
20796           - Implemented IsInputKey
20797           - Implemented ProcessCmdKey
20798           - Completed ProcessKeyEventArgs
20799           - Fixed message loop to call the proper chain of functions on key
20800           events
20801           - Implemented ProcessDialogChar
20802           - Implemented ProcessDialogKey
20803           - Implemented ProcessKeyMessage
20804           - Implemented ProcessKeyPreview
20805           - Added RaiseDragEvent stub (MS internal method)
20806           - Added RaiseKeyEvent stub (MS internal method)
20807           - Added RaiseMouseEvent stub (MS Internal method)
20808           - Added RaisePaintEvent stub (MS Internal method)
20809           - Added ResetMouseEventArgs stub (MS Internal method)
20810           - Implemented RtlTranslateAlignment
20811           - Implemented RtlTranslateContent
20812           - Implemented RtlTranslateHorizontal
20813           - Implemented RtlTranslateLeftRight
20814           - Added generation of KeyPress event
20815
20816 2004-10-02 05:57  ravindra
20817
20818         * ListViewItem.cs: Added attributes.
20819
20820 2004-10-02 05:32  ravindra
20821
20822         * ListView.cs: Added attributes.
20823
20824 2004-10-01 11:53  jackson
20825
20826         * Form.cs: Implement the Close method so work on MessageBox can
20827           continue.
20828
20829 2004-09-30 14:06  pbartok
20830
20831         * XplatUIX11.cs:
20832           - Bug fixes
20833
20834 2004-09-30 11:34  jackson
20835
20836         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20837
20838 2004-09-30 07:26  ravindra
20839
20840         * ListViewItemConverter.cs: Converter for ListViewItem.
20841
20842 2004-09-30 07:26  ravindra
20843
20844         * SortOrder.cs: Enum for ListView control.
20845
20846 2004-09-30 07:25  ravindra
20847
20848         * ColumnHeader.cs: Supporting class for ListView control.
20849
20850 2004-09-30 07:24  ravindra
20851
20852         * ListView.cs, ListViewItem.cs: Initial implementation.
20853
20854 2004-09-30 07:20  ravindra
20855
20856         * ItemActivation.cs: Enum for ListView Control.
20857
20858 2004-09-29 20:29  pbartok
20859
20860         * XplatUIX11.cs:
20861           - Added lookup of pixel value for background color; tries to get a
20862             color 'close' to the requested color, it avoids having to create a
20863             colormap.  Depending on the display this could mean the used color
20864             is slightly off the desired color. Might have to change it to a more
20865             resource intensive colormap approach, but it will work as a
20866           workaround to avoid red screens.
20867
20868 2004-09-29 14:27  jackson
20869
20870         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20871
20872 2004-09-28 12:44  pbartok
20873
20874         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20875           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20876           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20877           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20878           TrackBar.cs, VScrollBar.cs:
20879           - Streamlined Theme interfaces:
20880             * Each DrawXXX method for a control now is passed the object for
20881               the control to be drawn in order to allow accessing any state the
20882               theme might require
20883
20884             * ControlPaint methods for the theme now have a CP prefix to avoid
20885               name clashes with the Draw methods for controls
20886
20887             * Every control now retrieves it's DefaultSize from the current
20888             theme
20889
20890 2004-09-28 12:17  jackson
20891
20892         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20893           drawing
20894
20895 2004-09-24 14:57  jackson
20896
20897         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20898           Gives us a nice little performance boost.
20899
20900 2004-09-24 12:02  jackson
20901
20902         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20903           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20904           Control and supporting classes. Initial checkin
20905
20906 2004-09-23 13:08  jackson
20907
20908         * Form.cs: Temp build fixage
20909
20910 2004-09-23 01:39  ravindra
20911
20912         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20913           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20914           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20915           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20916           EventHandlers needed by ListView Control.
20917
20918 2004-09-22 14:12  pbartok
20919
20920         * ScrollableControl.cs:
20921           - Implemented DockPadding property
20922           - Implemented AutoScroll property
20923           - Implemented AutoScrollMargin property
20924           - Implemented AutoScrollMinSize property
20925           - Implemented AutoScrollPosition property
20926           - Implemented DisplayRectangle property (still incomplete)
20927           - Implemented CreateParams property
20928           - Implemented HScroll property
20929           - Implemented VScroll property
20930           - Implemented OnVisibleChanged property
20931
20932 2004-09-22 14:09  pbartok
20933
20934         * Form.cs:
20935           - Added Form.ControllCollection class
20936           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20937             RemoveOwnedForm (still incomplete, missing on-top and common
20938             minimize/maximize behaviour)
20939           - Added StartPosition property (still incomplete, does not use when
20940             creating the form)
20941           - Added ShowDialog() methods (still incomplete, missing forcing the
20942             dialog modal)
20943
20944 2004-09-22 14:05  pbartok
20945
20946         * Application.cs:
20947           - Added message loop for modal dialogs
20948
20949 2004-09-22 14:02  pbartok
20950
20951         * GroupBox.cs:
20952           - Fixed wrong types for events
20953
20954 2004-09-22 14:00  pbartok
20955
20956         * Shortcut.cs, FormWindowState.cs:
20957           - Fixed wrong values
20958
20959 2004-09-22 12:01  jackson
20960
20961         * Control.cs: Text is never null
20962
20963 2004-09-20 22:14  pbartok
20964
20965         * XplatUIWin32.cs:
20966           - Fixed accessibility level for Idle handler
20967
20968 2004-09-20 18:54  jackson
20969
20970         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20971           XplatUIX11.cs: New message loop that uses poll so we don't get a
20972           busy loop
20973
20974 2004-09-17 10:43  pbartok
20975
20976         * ScrollBar.cs:
20977           - Fixed behaviour of arrow buttons. Now properly behaves like
20978             Buttons (and like Microsoft's scrollbar arrow buttons)
20979
20980 2004-09-17 10:14  pbartok
20981
20982         * ScrollBar.cs:
20983           - Added missing release of keyboard/mouse capture
20984
20985 2004-09-17 06:18  jordi
20986
20987         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20988           Theme.cs: Very early menu support
20989
20990 2004-09-16 17:45  pbartok
20991
20992         * XplatUIWin32.cs:
20993           - Fixed sending a window to the front
20994           - Added overload for SetWindowPos to avoid casting
20995
20996 2004-09-16 17:44  pbartok
20997
20998         * Control.cs:
20999           - Added SendToBack and BringToFront methods
21000
21001 2004-09-16 07:00  ravindra
21002
21003         * Copyright: Added Novell URL.
21004
21005 2004-09-16 07:00  ravindra
21006
21007         * ToolBar.cs: Invalidate should be done before redrawing.
21008
21009 2004-09-15 21:19  ravindra
21010
21011         * ColumnHeaderStyle.cs: Enum for ListView Control.
21012
21013 2004-09-15 21:18  ravindra
21014
21015         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
21016           ListView Control.
21017
21018 2004-09-13 18:26  jackson
21019
21020         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
21021           properly
21022
21023 2004-09-13 18:13  jackson
21024
21025         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
21026           a second thread and post messages into the main threads message
21027           queue. This makes timing much more consistent. Both win2K and XP
21028           have a minimum timer value of 15 milliseconds, so we now do this
21029           too.
21030
21031 2004-09-13 15:18  pbartok
21032
21033         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21034           XplatUIX11.cs:
21035           - Added Z-Ordering methods
21036
21037 2004-09-13 10:56  pbartok
21038
21039         * Form.cs:
21040           - Fixed #region names
21041           - Moved properties and methods into their proper #regions
21042
21043 2004-09-13 10:51  pbartok
21044
21045         * Form.cs:
21046           - Added Accept and CancelButton properties
21047           - Added ProcessDialogKey() method
21048
21049 2004-09-13 08:18  pbartok
21050
21051         * IWindowTarget.cs:
21052           - Initial check-in
21053
21054 2004-09-10 21:50  pbartok
21055
21056         * Control.cs:
21057           - Added DoDragDrop() [incomplete]
21058           - Properly implemented 'Visible' handling
21059           - Added SetVisibleCore()
21060           - Implemented FindChildAtPoint()
21061           - Implemented GetContainerControl()
21062           - Implemented Hide()
21063
21064 2004-09-10 19:28  pbartok
21065
21066         * Control.cs:
21067           - Moved methods into their appropriate #regions
21068           - Reordered methods within regions alphabetically
21069
21070 2004-09-10 18:57  pbartok
21071
21072         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21073           - Added method to retrieve text from window
21074
21075 2004-09-10 18:56  pbartok
21076
21077         * Control.cs:
21078           - Moved some internal functions into the internal region
21079           - Implemented FontHeight
21080           - Implemented RenderRightToLeft
21081           - Implemented ResizeRedraw
21082           - Implemented ShowFocusCues
21083           - Implemented ShowKeyboardCues
21084           - Implemented FromChildHandle
21085           - Implemented FromHandle
21086           - Implemented IsMnemonic
21087           - Implemented ReflectMessage
21088           - All public and protected Static Methods are now complete
21089
21090 2004-09-10 16:54  pbartok
21091
21092         * Control.cs:
21093           - Implemented remaining missing public instance properties
21094           - Alphabetized some out of order properties
21095
21096 2004-09-10 05:51  ravindra
21097
21098         * PictureBox.cs: Added a check for null image.
21099
21100 2004-09-10 00:59  jordi
21101
21102         * GroupBox.cs: remove cvs tag
21103
21104 2004-09-09 05:25  ravindra
21105
21106         * ToolBar.cs: Make redraw accessible from ToolBarButton.
21107
21108 2004-09-09 05:23  ravindra
21109
21110         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
21111           parent redraw.
21112
21113 2004-09-09 02:28  pbartok
21114
21115         * ThemeWin32Classic.cs:
21116           - Improve disabled string look
21117
21118 2004-09-09 01:15  jordi
21119
21120         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
21121           args and handler
21122
21123 2004-09-08 23:56  ravindra
21124
21125         * ItemBoundsPortion.cs: It's enum, not a class!
21126
21127 2004-09-08 23:47  ravindra
21128
21129         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
21130           Enums for Form.
21131
21132 2004-09-08 21:13  ravindra
21133
21134         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
21135           ListView control.
21136
21137 2004-09-08 21:03  ravindra
21138
21139         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
21140           avoid crash.
21141
21142 2004-09-08 21:01  ravindra
21143
21144         * ScrollableControl.cs: Removed unreachable code.
21145
21146 2004-09-08 06:45  jordi
21147
21148         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
21149
21150 2004-09-08 01:00  jackson
21151
21152         * XplatUIX11.cs: Only run the timers when updating the message
21153           queue. This effectively gives X messages a higher priority then
21154           timer messages. Timers still need love though
21155
21156 2004-09-07 14:01  jackson
21157
21158         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
21159           this for us and the handle is no longer valid.
21160
21161 2004-09-07 13:59  jackson
21162
21163         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
21164           loop that manages to not crash. TODO: Add poll and cleanup timers
21165
21166 2004-09-07 11:12  jordi
21167
21168         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
21169
21170 2004-09-07 03:40  jordi
21171
21172         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
21173           fixes, methods, multiple links
21174
21175 2004-09-06 06:55  jordi
21176
21177         * Control.cs: Caches ClientRectangle rectangle value
21178
21179 2004-09-05 02:03  jordi
21180
21181         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
21182           certain situations
21183
21184 2004-09-04 11:10  jordi
21185
21186         * Label.cs: Refresh when font changed
21187
21188 2004-09-02 16:24  pbartok
21189
21190         * Control.cs:
21191           - Added sanity check to creation of double buffer bitmap
21192
21193 2004-09-02 16:24  pbartok
21194
21195         * ButtonBase.cs:
21196           - Fixed selection of text color
21197           - Fixed handling of resize event; now properly recreates double
21198             buffering bitmap
21199           - Added missing assignment of TextAlignment
21200           - Added proper default for TextAlignment
21201
21202 2004-09-02 14:26  pbartok
21203
21204         * RadioButton.cs:
21205           - Added missing RadioButton.RadioButtonAccessibleObject class
21206
21207 2004-09-02 14:26  pbartok
21208
21209         * Control.cs:
21210           - Added missing Control.ControlAccessibleObject class
21211           - Started to implement Select()ion mechanisms, still very incomplete
21212
21213 2004-09-02 14:25  pbartok
21214
21215         * AccessibleObject.cs:
21216           - Added missing methods
21217
21218 2004-09-02 14:23  pbartok
21219
21220         * AccessibleNavigation.cs, AccessibleSelection.cs:
21221           - Initial check-in
21222
21223 2004-09-02 10:32  jordi
21224
21225         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
21226           pool for pens, brushes, and hatchbruses
21227
21228 2004-09-01 15:30  jackson
21229
21230         * StatusBar.cs: Fix typo
21231
21232 2004-09-01 14:44  pbartok
21233
21234         * RadioButton.cs:
21235           - Fixed state
21236
21237 2004-09-01 14:39  pbartok
21238
21239         * Button.cs, RadioButton.cs:
21240           - Functional initial check-in
21241
21242 2004-09-01 14:01  pbartok
21243
21244         * CheckBox.cs:
21245           - Added missing default
21246           - Added missing region mark
21247
21248 2004-09-01 09:10  jordi
21249
21250         * Label.cs: fixes method signatures, new methods, events, fixes
21251           autosize
21252
21253 2004-09-01 07:19  jordi
21254
21255         * Control.cs: Init string variables with an empty object
21256
21257 2004-09-01 04:20  jordi
21258
21259         * Control.cs: fires OnFontChanged event
21260
21261 2004-08-31 20:07  pbartok
21262
21263         * ButtonBase.cs:
21264           - Enabled display of strings
21265
21266 2004-08-31 20:05  pbartok
21267
21268         * Form.cs:
21269           - Added (partial) implementation of DialogResult; rest needs to be
21270             implemented when the modal loop code is done
21271
21272 2004-08-31 19:55  pbartok
21273
21274         * CheckBox.cs:
21275           - Fixed to match the removal of the needs_redraw concept
21276
21277 2004-08-31 19:55  pbartok
21278
21279         * ButtonBase.cs:
21280           - Removed the rather odd split between 'needs redraw' and redrawing
21281           - Now handles the events that require regeneration (ambient
21282             properties and size)
21283
21284 2004-08-31 19:41  pbartok
21285
21286         * Control.cs:
21287           - Added firing of BackColorChanged event
21288           - Added TopLevelControl property
21289           - Fixed handling of WM_ERASEBKGRND message
21290
21291 2004-08-31 12:49  pbartok
21292
21293         * ButtonBase.cs:
21294           - Removed debug
21295           - Minor fixes
21296
21297 2004-08-31 12:48  pbartok
21298
21299         * CheckBox.cs:
21300           - Finished (famous last words)
21301
21302 2004-08-31 04:35  jordi
21303
21304         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
21305           scrolling bugs, adds new methods
21306
21307 2004-08-30 14:42  pbartok
21308
21309         * CheckBox.cs:
21310           - Implemented CheckBox drawing code
21311
21312 2004-08-30 14:42  pbartok
21313
21314         * ButtonBase.cs:
21315           - Made Redraw() and CheckRedraw() virtual
21316           - Improved mouse up/down/move logic to properly track buttons
21317
21318 2004-08-30 09:44  pbartok
21319
21320         * CheckBox.cs:
21321           - Updated to fix broken build. Not complete yet.
21322
21323 2004-08-30 09:28  pbartok
21324
21325         * CheckState.cs:
21326           - Initial checkin
21327
21328 2004-08-30 09:17  pbartok
21329
21330         * Appearance.cs:
21331           - Initial check-in
21332
21333 2004-08-27 16:12  ravindra
21334
21335         * ToolBarButton.cs: Added TypeConverter attribute.
21336
21337 2004-08-27 16:07  ravindra
21338
21339         * ImageIndexConverter.cs: Implemented.
21340
21341 2004-08-27 14:17  pbartok
21342
21343         * Control.cs:
21344           - Removed unneeded stack vars
21345           - First attempt to fix sizing issues when layout is suspended
21346
21347 2004-08-25 15:35  jordi
21348
21349         * ScrollBar.cs: more fixes to scrollbar
21350
21351 2004-08-25 14:04  ravindra
21352
21353         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
21354           Added the missing divider code and grip for ToolBar Control.
21355
21356 2004-08-25 13:20  pbartok
21357
21358         * Control.cs:
21359           - Control now properly passes the ambient background color to child
21360             controls
21361
21362 2004-08-25 13:20  jordi
21363
21364         * ScrollBar.cs: small bug fix regarding bar position
21365
21366 2004-08-25 12:33  pbartok
21367
21368         * Timer.cs:
21369           - Now only calls SetTimer or KillTimer if the enabled state has
21370           changed
21371
21372 2004-08-25 12:33  pbartok
21373
21374         * XplatUIWin32.cs:
21375           - Fixed timer handling, now seems to work
21376           - Improved error message for window creation
21377
21378 2004-08-25 12:32  pbartok
21379
21380         * Control.cs:
21381           - Fixed generation of MouseUp message
21382
21383 2004-08-25 12:29  jordi
21384
21385         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
21386           and fixes for progressbar
21387
21388 2004-08-24 18:43  ravindra
21389
21390         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
21391           in ToolBar control.
21392
21393 2004-08-24 17:15  pbartok
21394
21395         * Panel.cs:
21396           - Added #region
21397           - Added missing events
21398           - Alphabetized
21399
21400 2004-08-24 17:14  pbartok
21401
21402         * StatusBar.cs, PictureBox.cs:
21403           - Now uses Control's CreateParams
21404
21405 2004-08-24 16:36  pbartok
21406
21407         * XplatUIX11.cs:
21408           - Fixed background color handling
21409           - Fixed sending of enter/leave events on a grab
21410
21411 2004-08-24 16:35  pbartok
21412
21413         * X11Structs.cs:
21414           - Refined definitions for CrossingEvent
21415
21416 2004-08-24 12:37  jordi
21417
21418         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
21419           formmating, methods signature, and adds missing events
21420
21421 2004-08-24 12:24  jordi
21422
21423         * Control.cs: fire OnEnabledChanged event
21424
21425 2004-08-24 11:17  pbartok
21426
21427         * XplatUIWin32.cs:
21428           - Implemented SetTimer() and KillTimer()
21429
21430 2004-08-24 11:16  pbartok
21431
21432         * XplatUIX11.cs:
21433           - Now uses Remove instead of Add to kill the timer
21434
21435 2004-08-24 10:16  jackson
21436
21437         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
21438           picture boxes in the theme now. Draw picture box borders and obey
21439           sizing modes
21440
21441 2004-08-24 05:49  jackson
21442
21443         * Timer.cs: Remove top secret debugging code
21444
21445 2004-08-24 05:34  jackson
21446
21447         * PictureBox.cs: Temp hack to make picture boxes draw their full
21448           image
21449
21450 2004-08-24 05:29  jackson
21451
21452         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21453           XplatUIX11.cs: Move timers to the driver level. On X they are
21454           queued by the driver and checked on idle.
21455
21456 2004-08-24 01:07  jackson
21457
21458         * XplatUIX11.cs: Use a queue for async messages instead of passing
21459           them as ClientMessages since that was totally broken. Also simply
21460           check for events and return an idle message if none are found. This
21461           gives us an idle handler, and prevents deadlocking when no messages
21462           are in the queue.
21463
21464 2004-08-23 18:19  ravindra
21465
21466         * XplatUIWin32.cs: Removed the unwanted destructor.
21467
21468 2004-08-23 17:27  pbartok
21469
21470         * ButtonBase.cs:
21471           - Finishing touches. Works now, just needs some optimizations.
21472
21473 2004-08-23 16:53  jordi
21474
21475         * ScrollBar.cs: small fix
21476
21477 2004-08-23 16:45  pbartok
21478
21479         * Application.cs:
21480           - Removed debug output
21481           - Simplifications
21482
21483 2004-08-23 16:43  jordi
21484
21485         * ScrollBar.cs: [no log message]
21486
21487 2004-08-23 16:10  pbartok
21488
21489         * Form.cs:
21490           - Fixed handling of WM_CLOSE message
21491           - Removed debug output
21492
21493 2004-08-23 16:09  pbartok
21494
21495         * Application.cs:
21496           - Added handling of Idle event
21497           - Added handling of form closing
21498           - Fixed reporting of MessageLoop property
21499           - Removed some unneeded code, should provide a bit of a speedup
21500
21501 2004-08-23 15:22  pbartok
21502
21503         * Control.cs:
21504           - Added InitLayout() method
21505           - Added code to properly perform layout when Anchor or Dock property
21506             is changed
21507           - Changed 'interpretation' of ResumeLayout. MS seems to have a
21508             LAMESPEC, tried to do it in a way that makes sense
21509
21510 2004-08-23 14:10  jordi
21511
21512         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
21513           properties and methods
21514
21515 2004-08-23 13:55  pbartok
21516
21517         * Control.cs:
21518           - Properly fixed Jordi's last fix
21519           - Now uses Cursor's Position property instead of calling XplatUI
21520           directly
21521
21522 2004-08-23 13:44  jordi
21523
21524         * PaintEventHandler.cs: Adding missing attribute
21525
21526 2004-08-23 13:39  pbartok
21527
21528         * Cursor.cs:
21529           - Implemented Position property
21530
21531 2004-08-23 13:39  pbartok
21532
21533         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21534           - Added method to move mouse cursor
21535
21536 2004-08-23 13:39  pbartok
21537
21538         * XplatUIX11.cs:
21539           - Fixed setting of background color
21540           - Added method to move mouse cursor
21541
21542 2004-08-23 13:16  jordi
21543
21544         * Control.cs: avoids null exception
21545
21546 2004-08-22 17:46  jackson
21547
21548         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
21549           PictureBox
21550
21551 2004-08-22 17:40  jackson
21552
21553         * XplatUIX11.cs: Add some missing locks
21554
21555 2004-08-22 15:10  pbartok
21556
21557         * Control.cs, Form.cs:
21558           - Removed OverlappedWindow style from Control, instead it's default
21559             now is child
21560           - Made form windows OverlappedWindow by default
21561
21562 2004-08-22 13:34  jackson
21563
21564         * ScrollBar.cs: Update the position through the Value property so
21565           the OnValueChanged event is raised.
21566
21567 2004-08-22 12:04  pbartok
21568
21569         * SWF.csproj:
21570           - Added Cursor.cs and UserControl.cs
21571
21572 2004-08-22 12:03  pbartok
21573
21574         * Cursor.cs:
21575           - Started implementation, not usable yet
21576
21577 2004-08-22 12:00  pbartok
21578
21579         * UserControl.cs:
21580           - Implemented UserControl (complete)
21581
21582 2004-08-21 19:20  ravindra
21583
21584         * ToolBar.cs: Correcting the formatting mess of VS.NET.
21585
21586 2004-08-21 18:49  ravindra
21587
21588         * ToolBar.cs: Probably this completes the missing attributes in
21589           toolbar control.
21590
21591 2004-08-21 18:03  ravindra
21592
21593         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
21594           Fixed toolbar control signatures.
21595
21596 2004-08-21 16:32  pbartok
21597
21598         * LinkLabel.cs:
21599           - Signature Fixes
21600
21601 2004-08-21 16:30  pbartok
21602
21603         * Label.cs:
21604           - Signature fixes
21605
21606 2004-08-21 16:19  pbartok
21607
21608         * Control.cs, Label.cs:
21609           - Signature fixes
21610
21611 2004-08-21 15:57  pbartok
21612
21613         * ButtonBase.cs:
21614           - Added loads of debug output for development
21615           - Fixed typo in method name
21616
21617 2004-08-21 15:52  pbartok
21618
21619         * ToolBarButtonClickEventArgs.cs:
21620           - Added missing base class
21621
21622 2004-08-21 14:53  pbartok
21623
21624         * Control.cs:
21625           - Updated to match new GrabWindow signature
21626
21627 2004-08-21 14:51  pbartok
21628
21629         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21630           - Added method to get default display size
21631
21632 2004-08-21 14:23  pbartok
21633
21634         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21635           - Added method to query current grab state
21636           - Added argument to allow confining a grab to a window
21637
21638 2004-08-21 14:22  pbartok
21639
21640         * Keys.cs:
21641           - Added [Flags] attribute so that modifiers can be used in bitwise
21642           ops
21643
21644 2004-08-21 14:21  pbartok
21645
21646         * TrackBar.cs, ScrollBar.cs:
21647           - Replaced direct XplatUI calls with their Control counterpart
21648
21649 2004-08-21 13:32  pbartok
21650
21651         * Control.cs:
21652           - Implemented Created property
21653
21654 2004-08-21 13:28  pbartok
21655
21656         * Control.cs:
21657           - Implemented ContainsFocus
21658
21659 2004-08-21 13:26  pbartok
21660
21661         * Control.cs:
21662           - Implemented CausesValidation
21663
21664 2004-08-21 13:21  pbartok
21665
21666         * Control.cs:
21667           - Implemented CanFocus
21668           - Implemented CanSelect
21669           - Implemented Capture
21670
21671 2004-08-21 12:35  pbartok
21672
21673         * XplatUIWin32.cs:
21674           - Fixed bug with Async message handling
21675           - Implemented getting the ModifierKeys
21676
21677 2004-08-21 12:32  jackson
21678
21679         * AsyncMethodResult.cs: Make sure we have the mutex before we
21680           release it. Fixes BeginInvoke on windows
21681
21682 2004-08-21 11:31  pbartok
21683
21684         * XplatUIWin32.cs, XplatUIX11.cs:
21685           - Drivers now return proper mouse state
21686
21687 2004-08-21 10:54  jackson
21688
21689         * Control.cs: Implement EndInvoke
21690
21691 2004-08-21 10:48  jackson
21692
21693         * Timer.cs: Remove unneeded finalizer
21694
21695 2004-08-20 19:52  ravindra
21696
21697         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21698           in mouse event handling in the ToolBar control.
21699
21700 2004-08-20 19:50  ravindra
21701
21702         * ImageList.cs: Changed draw method to use the arguments passed in
21703           to draw the image.
21704
21705 2004-08-20 18:58  pbartok
21706
21707         * XplatUIStructs.cs:
21708           - Added private message for async communication
21709
21710 2004-08-20 17:38  ravindra
21711
21712         * Control.cs: Made RightToLeft property virtual and removed a
21713           Console.WriteLine.
21714
21715 2004-08-20 14:39  jordi
21716
21717         * ThemeGtk.cs: use style_attach
21718
21719 2004-08-20 14:39  pbartok
21720
21721         * XplatUIWin32.cs:
21722           - Added jackson's Async code from X11 to Win32
21723
21724 2004-08-20 14:09  pbartok
21725
21726         * SWF.csproj:
21727           - Added all new files
21728
21729 2004-08-20 14:09  pbartok
21730
21731         * Control.cs:
21732           - Added call to set window background color
21733
21734 2004-08-20 14:03  pbartok
21735
21736         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21737           - Added method for setting the window background
21738
21739 2004-08-20 14:02  pbartok
21740
21741         * XplatUIWin32.cs:
21742           - Added method for setting the background color
21743           - Added handling for erasing the window background
21744
21745 2004-08-20 13:45  jordi
21746
21747         * TrackBar.cs: fixes timer, new properties and methods
21748
21749 2004-08-20 13:34  jackson
21750
21751         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21752           correct thread
21753
21754 2004-08-20 13:22  jackson
21755
21756         * Timer.cs: Timer Tick events are now handed through Controls Async
21757           mechanism so the callbacks are executed in the same thread as X
21758
21759 2004-08-20 13:19  jackson
21760
21761         * XplatUIDriver.cs: Expose functionality to send async messages
21762           through the driver
21763
21764 2004-08-20 13:18  jackson
21765
21766         * Control.cs: Implement Begininvoke
21767
21768 2004-08-20 13:14  jackson
21769
21770         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21771           messages through the driver
21772
21773 2004-08-20 13:12  jackson
21774
21775         * XplatUIX11.cs: Lock before all X operations. Also added Async
21776           method functionality through XSendEvent
21777
21778 2004-08-20 13:11  jackson
21779
21780         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21781           This will screw up on 64 bit systems)
21782
21783 2004-08-20 13:10  jackson
21784
21785         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21786           Async messages through X/Win32
21787
21788 2004-08-19 19:39  pbartok
21789
21790         * XplatUIX11.cs:
21791           - Updated code to match new HandleData.DeviceContext type
21792
21793 2004-08-19 19:38  pbartok
21794
21795         * HandleData.cs:
21796           - Made DeviceContext a generic object to allow usage from various
21797           drivers
21798           - Added support for queueing Windows messages
21799
21800 2004-08-19 19:37  pbartok
21801
21802         * XplatUIWin32.cs:
21803           - Added generation of MouseEnter, MouseLeave and MouseHover events
21804           - Added cleanup on EndPaint
21805
21806 2004-08-19 19:17  pbartok
21807
21808         * Control.cs:
21809           - Added handling of WM_MOUSEHOVER
21810           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21811           code
21812
21813 2004-08-19 18:55  jordi
21814
21815         * ThemeGtk.cs: fixes button order
21816
21817 2004-08-19 18:12  jordi
21818
21819         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21820
21821 2004-08-19 17:09  pbartok
21822
21823         * Control.cs:
21824           - Added Right property
21825           - Added RightToLeft property
21826
21827 2004-08-19 16:27  jordi
21828
21829         * ThemeGtk.cs: experimental GTK theme support
21830
21831 2004-08-19 16:26  jordi
21832
21833         * ITheme.cs, Theme.cs: move themes from an interface to a class
21834
21835 2004-08-19 16:25  jordi
21836
21837         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21838           theme enhancaments
21839
21840 2004-08-19 16:04  pbartok
21841
21842         * XplatUIX11.cs:
21843           - Added colormap basics
21844           - Added a way to re-initialize with a different display handle
21845           - Fixed setting of the window background color
21846           - Added various X11 imports related to colors and colormaps
21847
21848 2004-08-19 15:51  pbartok
21849
21850         * X11Structs.cs:
21851           - Removed packing hints (Paolo suggested this a while back)
21852           - fixed colormap type
21853           - Added default Atom types
21854           - Added Screen and color structs and enums
21855
21856 2004-08-19 15:39  pbartok
21857
21858         * ImageList.cs:
21859           - Added missing Draw() method
21860           - Added missing RecreateHandle event
21861
21862 2004-08-19 15:30  pbartok
21863
21864         * Form.cs:
21865           - Added handling of WM_CLOSE
21866
21867 2004-08-18 13:16  jordi
21868
21869         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21870           a table
21871
21872 2004-08-18 09:56  jordi
21873
21874         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21875
21876 2004-08-17 15:31  ravindra
21877
21878         * SWF.csproj: Updated project.
21879
21880 2004-08-17 15:25  pbartok
21881
21882         * Control.cs:
21883           - Drawing improvement; don't call UpdateBounds if we are not visible
21884             (or have been minimized)
21885
21886 2004-08-17 15:24  pbartok
21887
21888         * XplatUIWin32.cs:
21889           - Finished IsVisible
21890           - Added Win32GetWindowPlacement
21891
21892 2004-08-17 15:08  jackson
21893
21894         * Panel.cs: Initial checkin of the Panel
21895
21896 2004-08-17 14:25  pbartok
21897
21898         * Control.cs:
21899           - Fixed broken handling of default window sizes
21900
21901 2004-08-17 13:29  jackson
21902
21903         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21904           has a large startup time.
21905
21906 2004-08-17 10:25  jackson
21907
21908         * HandleData.cs: union areas properly
21909
21910 2004-08-17 10:12  jackson
21911
21912         * HandleData.cs: union areas properly
21913
21914 2004-08-16 20:00  ravindra
21915
21916         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21917
21918 2004-08-16 18:48  ravindra
21919
21920         * ToolBar.cs: Added attributes.
21921
21922 2004-08-16 17:17  ravindra
21923
21924         * SWF.csproj: Updated project.
21925
21926 2004-08-16 17:16  jackson
21927
21928         * XplatUIX11.cs: Check for more expose events before sending a
21929           WM_PAINT so they can all be grouped together. This makes dragging a
21930           window across another window redraw in a sane way.
21931
21932 2004-08-16 15:47  pbartok
21933
21934         * Control.cs:
21935           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21936             support OnMouseEnter/Leave()
21937           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21938             exposure handling
21939
21940 2004-08-16 15:46  pbartok
21941
21942         * XplatUIStructs.cs, XplatUIX11.cs:
21943           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21944           OnMouseEnter/Leave()
21945
21946 2004-08-16 15:34  jackson
21947
21948         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21949           sure messages get the message field set to WM_NULL if they are not
21950           handled.
21951
21952 2004-08-16 15:24  jackson
21953
21954         * HandleData.cs: HandleData is used for storing message information
21955           for window handles
21956
21957 2004-08-15 17:23  ravindra
21958
21959         * ColorDepth.cs: Added attribute.
21960
21961 2004-08-15 17:23  ravindra
21962
21963         * SWF.csproj: Updated project for ToolBar Control.
21964
21965 2004-08-15 17:20  ravindra
21966
21967         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21968           control and also dos2unix format.
21969
21970 2004-08-15 17:13  ravindra
21971
21972         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21973           ToolBarButtonClickEventArgs.cs,
21974           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21975           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21976
21977 2004-08-15 15:31  pbartok
21978
21979         * ButtonBase.cs:
21980           - First (mostly) working version
21981
21982 2004-08-13 16:15  pbartok
21983
21984         * Control.cs:
21985           - Fixed Anchor default
21986
21987 2004-08-13 15:43  pbartok
21988
21989         * Control.cs:
21990           - Changed GetCursorPos signature
21991
21992 2004-08-13 15:42  pbartok
21993
21994         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21995           - Changed signature for GetCursorPos
21996
21997 2004-08-13 15:25  pbartok
21998
21999         * XplatUIX11.cs:
22000           - Cleanup
22001           - Fixed resizing/exposure handling
22002
22003 2004-08-13 15:22  jordi
22004
22005         * ThemeWin32Classic.cs: removes redundant code and fixes issues
22006           with tickposition
22007
22008 2004-08-13 14:55  jordi
22009
22010         * TrackBar.cs: change from wndproc to events
22011
22012 2004-08-13 13:00  jordi
22013
22014         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22015           XplatUIX11.cs: implements PointToClient (ScreenToClient)
22016
22017 2004-08-13 12:53  pbartok
22018
22019         * XplatUIWin32.cs:
22020           - Changed GetWindowPos to also provide client area size
22021           - Fixed broken prototypes for several win32 functions
22022
22023 2004-08-13 12:53  pbartok
22024
22025         * XplatUI.cs, XplatUIDriver.cs:
22026           - Changed GetWindowPos to also provide client area size
22027
22028 2004-08-13 12:52  pbartok
22029
22030         * XplatUIX11.cs:
22031           - Added generation of WM_POSCHANGED
22032           - Changed GetWindowPos to also provide client area size
22033
22034 2004-08-13 12:52  pbartok
22035
22036         * Control.cs:
22037           - Added Dispose() and destructor
22038           - Fixed resizing and bounds calculation
22039           - Fixed Layout
22040           - Added memory savings for invisible windows
22041
22042 2004-08-13 12:46  jordi
22043
22044         * TrackBar.cs: adds timer and grap window
22045
22046 2004-08-13 10:25  jackson
22047
22048         * Timer.cs: SWF Timer
22049
22050 2004-08-12 16:59  pbartok
22051
22052         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22053           - Implemented method to get current mouse position
22054
22055 2004-08-12 14:29  jordi
22056
22057         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
22058           enhancement, fix mouse problems, highli thumb, etc
22059
22060 2004-08-12 13:31  pbartok
22061
22062         * Control.cs:
22063           - Fixed Anchoring bugs
22064
22065 2004-08-12 13:01  jackson
22066
22067         * StatusBar.cs: Don't forget things
22068
22069 2004-08-12 12:54  jackson
22070
22071         * ThemeWin32Classic.cs: Handle owner draw status bars
22072
22073 2004-08-12 12:54  jackson
22074
22075         * StatusBar.cs: Implement missing properties, events, and methods.
22076           Handle mouse clicking
22077
22078 2004-08-12 10:19  jackson
22079
22080         * StatusBarPanelClickEventArgs.cs,
22081           StatusBarPanelClickEventHandler.cs: Classes for handling status
22082           bar panel click events
22083
22084 2004-08-12 10:10  jackson
22085
22086         * Control.cs: Add missing properties
22087
22088 2004-08-12 09:46  pbartok
22089
22090         * BindingsManagerBase.cs:
22091           - Name changed to BindingManagerBase.cs
22092
22093 2004-08-12 09:25  jordi
22094
22095         * ScrollableControl.cs: calls ctrlbase instead of exeception
22096
22097 2004-08-11 16:28  pbartok
22098
22099         * InputLanguageChangingEventArgs.cs:
22100           - Never check in before compiling. Fixes the last check-in
22101
22102 2004-08-11 16:26  pbartok
22103
22104         * InputLanguageChangingEventArgs.cs:
22105           - More signature fixes
22106
22107 2004-08-11 16:20  pbartok
22108
22109         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
22110           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
22111           ImageListStreamer.cs, InputLanguage.cs,
22112           InputLanguageChangedEventArgs.cs,
22113           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
22114           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
22115           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
22116           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22117           - Signature fixes
22118
22119 2004-08-11 16:16  pbartok
22120
22121         * Application.cs:
22122           - Fixed Signature
22123           - Added .Net 1.1 method
22124
22125 2004-08-11 15:25  pbartok
22126
22127         * SWF.csproj:
22128           - Fixed BindingManagerBase.cs filename
22129
22130 2004-08-11 15:22  pbartok
22131
22132         * BindingManagerBase.cs:
22133           - Was checked in with wrong filename
22134
22135 2004-08-11 14:50  pbartok
22136
22137         * SWF.csproj:
22138           - Updated
22139
22140 2004-08-11 13:41  jordi
22141
22142         * XplatUIWin32.cs: Fixes ClientRect
22143
22144 2004-08-11 13:19  pbartok
22145
22146         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22147           XplatUIX11.cs:
22148           - We had SetWindowPos and MoveWindow to set window positions and
22149             size, removed MoveWindow. We have GetWindowPos, so it made sense to
22150             keep SetWindowPos as matching counterpart
22151           - Added some X11 sanity checking
22152
22153 2004-08-11 12:59  pbartok
22154
22155         * Control.cs:
22156           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
22157             (It seems that SetBounds is just a front for SetBoundsCore and
22158              SetBoundsCore updates the underlying window system and
22159              UpdateBounds is responsible for updating the variables associated
22160              with the Control and sending the events)
22161           - Major cleanup of Size handling; we now have two sizes, client_size
22162             and bounds. Bounds defines the window with decorations, client_size
22163             without them.
22164
22165 2004-08-11 12:55  pbartok
22166
22167         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22168           - Added method to calculate difference between decorated window and
22169             raw client area
22170
22171 2004-08-11 12:54  pbartok
22172
22173         * Label.cs:
22174           - Forcing redraw on resize
22175
22176 2004-08-11 11:43  pbartok
22177
22178         * ImageList.cs:
22179           - Removed disposing of the actual images when the list is disposed
22180
22181 2004-08-11 09:13  pbartok
22182
22183         * Control.cs:
22184           - Now properly reparents windows
22185
22186 2004-08-11 08:37  pbartok
22187
22188         * Control.cs:
22189           - Duh!
22190
22191 2004-08-11 07:47  pbartok
22192
22193         * Control.cs:
22194           - Rewrote the collection stuff. Might not be as fast now, not
22195             keeping the number of children around and accessible directly, but
22196             it's more straightforward
22197
22198 2004-08-11 07:44  pbartok
22199
22200         * AccessibleObject.cs:
22201           - Fixed to match ControlCollection rewrite
22202
22203 2004-08-11 07:43  pbartok
22204
22205         * ImageList.cs:
22206           - Added missing creation of the collection list
22207
22208 2004-08-10 20:08  jackson
22209
22210         * StatusBar.cs: Get the paint message from WndProc
22211
22212 2004-08-10 19:31  jackson
22213
22214         * ThemeWin32Classic.cs: Create Brushes as little as possible
22215
22216 2004-08-10 19:20  jackson
22217
22218         * UICues.cs: Add Flags attribute
22219
22220 2004-08-10 19:19  jackson
22221
22222         * StatusBarPanel.cs: Signature cleanup
22223
22224 2004-08-10 19:10  jackson
22225
22226         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
22227           Initial implementation of status bar item drawing
22228
22229 2004-08-10 17:27  jordi
22230
22231         * TrackBar.cs: add missing methods, properties, and restructure to
22232           hide extra ones
22233
22234 2004-08-10 16:24  jackson
22235
22236         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
22237           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
22238           attribute
22239
22240 2004-08-10 13:21  jordi
22241
22242         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
22243           enhancements and standarize on win colors defaults
22244
22245 2004-08-10 12:52  jackson
22246
22247         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
22248           ThemeWin32Classic.cs: Implement DrawItem functionality
22249
22250 2004-08-10 12:47  jordi
22251
22252         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
22253
22254 2004-08-10 12:32  jordi
22255
22256         * Control.cs: throw ontextchange event
22257
22258 2004-08-10 11:43  pbartok
22259
22260         * Control.cs:
22261           - Added more to the still unfinished Dock/Anchor layout code
22262
22263 2004-08-10 11:39  pbartok
22264
22265         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
22266           - Added GetWindowPos method
22267
22268 2004-08-10 11:36  pbartok
22269
22270         * XplatUIWin32.cs:
22271           - Implemented several methods
22272
22273 2004-08-10 09:47  jackson
22274
22275         * TrackBar.cs: Allow control to handle buffering
22276
22277 2004-08-10 09:41  jackson
22278
22279         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
22280
22281 2004-08-10 09:24  jackson
22282
22283         * Label.cs, LinkLabel.cs: Let Control handle buffering.
22284
22285 2004-08-10 09:09  jackson
22286
22287         * StatusBar.cs: Let Control handle all the buffering.
22288
22289 2004-08-10 09:08  jackson
22290
22291         * Control.cs: Control will now handle the buffering code, so each
22292           control does not have to implement this.
22293
22294 2004-08-10 08:34  jackson
22295
22296         * XplatUIDriver.cs: Use default colors from the theme
22297
22298 2004-08-09 17:12  pbartok
22299
22300         * ImageList.cs:
22301           - Fixed several bugs Ravindra pointed out
22302
22303 2004-08-09 16:11  pbartok
22304
22305         * Control.cs:
22306           - Added incomplete dock layout code
22307           - Added support for mouse wheel
22308
22309 2004-08-09 16:09  pbartok
22310
22311         * XplatUIX11.cs:
22312           - Added handling for middle and right mousebutton
22313           - Added handling for mouse wheel
22314           - Added handling for key state and mouse state and position
22315           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
22316           messages
22317
22318 2004-08-09 15:40  jackson
22319
22320         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
22321           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
22322           checkin
22323
22324 2004-08-09 15:37  jackson
22325
22326         * StatusBar.cs: Initial implementation of StatusBar
22327
22328 2004-08-09 15:36  jackson
22329
22330         * ITheme.cs: Add support for drawing status bar and getting status
22331           bar item sizes
22332
22333 2004-08-09 15:35  pbartok
22334
22335         * MouseButtons.cs:
22336           - Fixed values
22337
22338 2004-08-09 15:34  jackson
22339
22340         * ThemeWin32Classic.cs: Add support for drawing status bar and get
22341           status bar item sizes
22342
22343 2004-08-09 15:21  jackson
22344
22345         * ThemeWin32Classic.cs: Use known colors for default control
22346           colours
22347
22348 2004-08-09 15:12  jackson
22349
22350         * ThemeWin32Classic.cs: Make the default font static, it is static
22351           in control so this doesn't change functionality and creating fonts
22352           is sloooooow.
22353
22354 2004-08-09 14:56  pbartok
22355
22356         * X11Structs.cs:
22357           - Added GrabMode enum
22358
22359 2004-08-09 14:55  pbartok
22360
22361         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22362           - Removed Run method, was only required for initial development
22363
22364 2004-08-09 14:51  pbartok
22365
22366         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22367           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
22368           capture
22369
22370 2004-08-09 13:48  pbartok
22371
22372         * XplatUIX11.cs:
22373           - Fixed default sizing for child windows
22374
22375 2004-08-09 12:56  pbartok
22376
22377         * XplatUIX11.cs:
22378           - Added generation of WM_DESTROY message
22379           - Added handling of window manager induced shutdown
22380
22381 2004-08-09 11:31  jackson
22382
22383         * ThemeWin32Classic.cs: New names for control properties
22384
22385 2004-08-09 11:25  jackson
22386
22387         * Control.cs: Use new color names
22388
22389 2004-08-09 11:02  jackson
22390
22391         * XplatUI.cs: Get default window properties from the theme
22392
22393 2004-08-09 11:01  jackson
22394
22395         * ITheme.cs: The theme engine now controls default window
22396           properties
22397
22398 2004-08-09 11:00  jackson
22399
22400         * ThemeWin32Classic.cs: Add default window color properties
22401
22402 2004-08-09 10:17  jackson
22403
22404         * ThemeWin32Classic.cs: Use correct default back color
22405
22406 2004-08-09 10:05  jackson
22407
22408         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
22409           the theme now.
22410
22411 2004-08-09 09:56  jackson
22412
22413         * XplatUI.cs: Remove defaults, these are handled by the theme now.
22414
22415 2004-08-09 09:54  jackson
22416
22417         * Control.cs: Get default properties from the theme.
22418
22419 2004-08-09 09:53  jackson
22420
22421         * ITheme.cs: Themes now handle default control properties
22422
22423 2004-08-09 09:53  jackson
22424
22425         * ThemeWin32Classic.cs: Themes now handle default control
22426           properties so coloring will be consistent
22427
22428 2004-08-08 16:54  jordi
22429
22430         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
22431
22432 2004-08-08 15:08  jordi
22433
22434         * XplatUIX11.cs: fixes keyboard crash
22435
22436 2004-08-08 13:47  jordi
22437
22438         * Label.cs: add cvs header info
22439
22440 2004-08-08 12:09  jackson
22441
22442         * ThemeWin32Classic.cs: Add pen_buttonface
22443
22444 2004-08-08 11:52  jordi
22445
22446         * Label.cs, LinkLabel.cs: [no log message]
22447
22448 2004-08-08 11:34  jordi
22449
22450         * ThemeWin32Classic.cs: Use Windows Standard Colours
22451
22452 2004-08-07 17:32  jordi
22453
22454         * TrackBar.cs: throw exceptions of invalid enums values
22455
22456 2004-08-07 17:31  jordi
22457
22458         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
22459           draw method name
22460
22461 2004-08-07 16:56  jackson
22462
22463         * HorizontalAlignment.cs: Initial checkin
22464
22465 2004-08-07 13:16  jordi
22466
22467         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
22468           methods
22469
22470 2004-08-07 13:05  jordi
22471
22472         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
22473           GetSysColor defines
22474
22475 2004-08-06 18:01  pbartok
22476
22477         * ThemeWin32Classic.cs:
22478           - Fixed some rounding issues with float/int
22479
22480 2004-08-06 18:00  jackson
22481
22482         * DockStyle.cs, AnchorStyles.cs:
22483
22484                   Add flags and serializable attributes.
22485
22486 2004-08-06 17:46  pbartok
22487
22488         * XplatUIX11.cs:
22489           - Implemented GetParent
22490
22491 2004-08-06 17:18  pbartok
22492
22493         * TrackBar.cs:
22494           - Fixed some rounding issues with float/int
22495
22496 2004-08-06 17:17  pbartok
22497
22498         * X11Structs.cs, XplatUIX11.cs:
22499           - Fixed Refresh and Invalidate
22500
22501 2004-08-06 15:30  pbartok
22502
22503         * Control.cs, X11Structs.cs, XplatUIX11.cs:
22504           - Fixed recursive loop when resizing
22505           - Improved/fixed redrawing on expose messages
22506
22507 2004-08-06 09:53  jordi
22508
22509         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
22510           keyboard navigation
22511
22512 2004-08-06 08:02  pbartok
22513
22514         * X11Structs.cs, XplatUIX11.cs:
22515           - Fixed reparenting
22516           - Fixed window border creation
22517
22518 2004-08-05 15:38  pbartok
22519
22520         * XplatUIX11.cs:
22521           - Attempted fix for reparenting problems
22522
22523 2004-08-04 15:14  pbartok
22524
22525         * Control.cs:
22526           - Fixed Invalidation bug (calculated wrong client area)
22527           - Added ClientSize setter
22528
22529 2004-08-04 15:13  pbartok
22530
22531         * Form.cs:
22532           - Added AutoScale properties
22533
22534 2004-08-04 15:13  pbartok
22535
22536         * SWF.csproj:
22537           - Added latest files
22538
22539 2004-08-04 14:11  pbartok
22540
22541         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22542           XplatUIX11.cs:
22543           - Added Invalidate handling
22544
22545 2004-08-03 17:09  jordi
22546
22547         * XplatUIDriver.cs: fixes spelling mistake
22548
22549 2004-07-27 09:53  jordi
22550
22551         * TrackBar.cs: fixes trackbar events, def classname, methods
22552           signature
22553
22554 2004-07-27 09:29  jordi
22555
22556         * ScrollBar.cs: fixes scrollbar events
22557
22558 2004-07-27 04:38  jordi
22559
22560         * Control.cs: changes to be able to run winforms samples
22561
22562 2004-07-26 11:42  jordi
22563
22564         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
22565           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
22566
22567 2004-07-26 05:41  jordi
22568
22569         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
22570           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
22571           implementation
22572
22573 2004-07-22 09:22  jordi
22574
22575         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
22576           check link overlapping, implement events, and fixes
22577
22578 2004-07-21 10:28  jordi
22579
22580         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
22581
22582 2004-07-21 10:19  jordi
22583
22584         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
22585           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
22586           LinkLabelLinkClickedEventArgs.cs,
22587           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
22588           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
22589           implementation
22590
22591 2004-07-19 13:09  jordi
22592
22593         * Control.cs, Label.cs: label control re-written: added missing
22594           functionlity, events, and properties
22595
22596 2004-07-19 10:49  jordi
22597
22598         * Control.cs: fixes SetBounds logic
22599
22600 2004-07-19 01:29  jordi
22601
22602         * Control.cs: Call RefreshWindow only if the window has created
22603
22604 2004-07-15 14:05  pbartok
22605
22606         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
22607           - Implemented ImageList and ImageList.ImageCollection classes
22608           - Added ColorDepth enumeration
22609           - Updated SWF VS.Net project
22610
22611 2004-07-15 11:06  jordi
22612
22613         * XplatUIStructs.cs: added MsgButons enum
22614
22615 2004-07-15 11:03  jordi
22616
22617         * Control.cs: added basic mouse handeling events
22618
22619 2004-07-15 03:38  jordi
22620
22621         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
22622           Vertical TrackBar control implementation
22623
22624 2004-07-13 09:33  jordi
22625
22626         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
22627
22628 2004-07-13 09:31  jordi
22629
22630         * Control.cs, Form.cs: commit: new properties and fixes form size
22631           problems
22632
22633 2004-07-09 14:13  miguel
22634
22635         * ProgressBar.cs: Spelling
22636
22637 2004-07-09 11:25  pbartok
22638
22639         * ProgressBar.cs:
22640           - Removed usage of Rectangle for drawing. Miguel pointed out it's
22641           faster
22642
22643 2004-07-09 11:17  miguel
22644
22645         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22646
22647                 * ProgressBar.cs: Fixed spelling for `block'
22648
22649                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
22650                 style guidelines.
22651
22652                 Avoid using the += on rect.X, that exposed a bug in the compiler.
22653
22654 2004-07-08 23:21  pbartok
22655
22656         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
22657           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
22658           BaseCollection.cs, Binding.cs, BindingContext.cs,
22659           BindingMemberInfo.cs, BindingsCollection.cs,
22660           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
22661           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
22662           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
22663           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
22664           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
22665           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
22666           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
22667           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
22668           FrameStyle.cs, GiveFeedbackEventArgs.cs,
22669           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
22670           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
22671           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
22672           InputLanguageChangedEventArgs.cs,
22673           InputLanguageChangedEventHandler.cs,
22674           InputLanguageChangingEventArgs.cs,
22675           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22676           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22677           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22678           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22679           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22680           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22681           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22682           QueryAccessibilityHelpEventArgs.cs,
22683           QueryAccessibilityHelpEventHandler.cs,
22684           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22685           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22686           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22687           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22688           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22689           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22690           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22691           XplatUIX11.cs, lang.cs:
22692           - Initial check-in
22693