* TextBoxBase.cs: Fix off by one, since these are one-based.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-04  Jackson Harper  <jackson@ximian.com>
2
3         * TextBoxBase.cs: Fix off by one, since these are one-based.
4
5 2006-12-04  Chris Toshok  <toshok@ximian.com>
6
7         * DataGridTextBoxColumn.cs: remove some spew.
8
9         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10         but some part of me is saying "it shouldn't be here.."  At any
11         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
12         setting the value.
13
14 2006-12-04  Chris Toshok  <toshok@ximian.com>
15
16         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
17         to reassign the propertydescriptor.
18
19 2006-12-04  Jackson Harper  <jackson@ximian.com>
20
21         * TextBoxBase.cs:
22         * TextControl.cs: Remove some unused variables.  Maybe this will
23         patch things up between mike and I.
24         - don't split lines less then one char wide, if the viewport is
25         that small text won't be visible anyways.
26         
27 2006-12-04  Jackson Harper  <jackson@ximian.com>
28
29         * TextBoxBase.cs: Default selection length is -1, need to do some
30         more testing on windows to see when this is used for the property.
31         - Redid the Lines [] property to that we properly remove soft line
32         breaks
33         - added support for preserving carriage returns
34         -  CanUndo is not a variable like 'is undo enabled' it just returns
35         true if there is undo operations available.
36         - AppendText doesn't need to grab the last tag itself anymore,
37         this happens automatically when we move the cursor.
38         * TextControl.cs: Add CompoundActions to the undo class. This
39         allows combining the other operations into one big option.  ie a
40         paste will combine { delete old, insert new, move cursor }
41         - Add InsertString undo operation
42         - New method for deleting multiline text
43         - Add carriage returns to lines. So we can preserve carriage
44         returns when text is 'roundtripped'
45
46 2006-12-04  Chris Toshok  <toshok@ximian.com>
47
48         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
49         minimum 0.  Fixes the scrollbar exception in bug #80136.
50
51 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
52
53         * MdiClient.cs: 
54         * MdiWindowManager: Removed unused fields and methods.
55         
56 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
57         
58         * StatusBar.cs: Update all panels when a AutoSize=Contents
59         panel needs updating.
60         
61         * StatusBarPanel.cs: Remove twidth and only use initialize.
62         Fixes #80031.
63                 
64 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
65
66         * Form.cs: When a form's MdiParent is set add it directly
67         on top of the z-order in stead of relying on MdiClient's
68         ActivateChild to do it. Fixes #80135.
69         
70         * MdiClient.cs: 
71         - Remove original_order, mdi_child_list is already doing
72         the same thing.
73         - Create mdi_child_list on construction in
74         stead of first use (avoids a few null checks).
75
76         * MenuItem.cs: Use an already existing list of mdi children
77         to get the correct order of children and remove the other
78         redundant list.
79
80 2006-12-04  Chris Toshok  <toshok@ximian.com>
81
82         * PropertyGridView.cs: cached_splitter_location is only used in
83         !DOUBLEBUFFER code.
84
85         * PropertyGrid.cs: implement the ComComponentNameChanged event
86         using Events, hoping that would fix the warning.  Looks like a
87         compiler bug instead (#80144).
88
89         * PropertyManager.cs: remove unused method.
90
91 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
92
93         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
94         include parentesis to fix expression evaluation. Fixes #79634.
95
96 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
97         
98         * MenuAPI.cs:
99         - Changes to fix behavior in Menu control, some reported in #80097
100         and other detected during behavior refactory like a select event
101         problems.
102         - Remove unneded "if's" conditions.
103         - Created an internal to flag when popup is active in control, we need 
104         it because in .NET you can have menu active but without popup active
105         when you active menu using popup without visible items.
106         - Mimic win32 behavior for Select and Popup events.  
107         - Dont open popup menu when you dont have visible subitems.
108         - Do nothing when click on disabled menu item.
109         - Some small changes to follow the coding style guidelines.
110         - Unselect menu only when another control gives focus. Fixes #80097.
111         - Remove unused code.
112         
113         * MenuItem.cs: internal VisibleItems method to check if menu
114         theres visible subitems, it will be usefull to fix some 
115         behavior in Menu control.
116         
117 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
118         
119         * Timer.cs: Tag property for 2.0 profile.
120         
121 2006-12-01  Chris Toshok  <toshok@ximian.com>
122
123         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
124         
125         * Win32DnD.cs: comment out some unused fields.
126
127         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
128         some unused properties/methods.
129
130         * XplatUIX11.cs: fix MousePosition so we override the base class's
131         property instead of conflicting with it.
132
133         * PictureBox.cs: comment out some unused fields
134
135         * OSXStructs.cs: make some struct fields public.
136
137         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
138         MousePosition so we override the base class's property instead of
139         conflicting with it.
140
141         * X11Dnd.cs: comment out some unused fields
142
143         * X11DesktopColors.cs: fix some struct field visibility to quiet
144         the compiler.
145
146         * X11Dnd.cs: remove some debug code.
147
148         * ThemeClearlooks.cs: comment out unused field.
149
150         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
151
152         * ThemeGtk.cs: comment out some unused pinvokes.
153
154         * Timer.cs: remove some unused fields.
155
156         * ThemeClearlooks.cs: comment out unused field.
157
158         * UpDownBase.cs: comment out unused field.
159
160         * DataObject.cs: comment out unused field.
161
162         * DataGridBoolColumn.cs: reomve unused field.
163
164         * DataGrid.cs: remove unused field.
165
166         * Cursor.cs: remove old ToBitmap code.
167
168         * ControlPaint.cs: remove unused method.
169
170         * ScrollBar.cs: remove unused fields.
171
172         * ComboBox.cs: remove unused field, and chain up to
173         AccessibleObject ctor.
174
175         * ListBox.cs: remove unused field.
176
177         * ButtonBase.cs: wrap a couple fields in NET_2_0.
178
179         * GridEntry.cs: remove unused fields.
180
181         * Binding.cs: remove unused fields.
182
183         * AxHost.cs: remove unused method.
184
185         * ContainerControl.cs: remove unused field.
186
187         * ScrollableControl.cs: remove unused fields.
188
189 2006-12-01  Chris Toshok  <toshok@ximian.com>
190
191         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
192         the Where/WhereString stuff.  it's easy enough to CWL
193         Environment.StackTrace.
194
195         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
196         unused private fields.
197
198 2006-12-01  Jackson Harper  <jackson@ximian.com>
199
200         * TextControl.cs: Do not update the view while inserting multiline
201         text. If we update the view we might wrap lines, before entering
202         the new lines, which causes the new line insertion calculations to
203         be totally fubared.
204         - Remove an old TODO
205         - Make debug output a little nicer
206         
207 2006-12-01  Chris Toshok  <toshok@ximian.com>
208
209         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
210
211 2006-12-01  Chris Toshok  <toshok@ximian.com>
212
213         [ fix the majority of the CS0108 warnings we've been suppressing ]
214         
215         * TreeView.cs: mark BackgroundImageChanged as 'new'.
216
217         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
218         to "LayoutToolBar" to quiet mcs.
219         
220         * TabControl.cs: mark our ControlCollection class as 'new'.
221
222         * TextBoxBase.cs: mark some events as 'new'.
223
224         * Splitter.cs: TabStop is 'new'.
225
226         * ControlBindingsCollection.cs: mark a few methods as new since
227         they change the visibility from protected to public.
228
229         * RadioButton.cs: DoubleClick -> base class, and remove unused
230         HaveDoubleClick.
231
232         * MonthCalendar.cs: ImeMode property -> base class, and mark many
233         events as new.
234
235         * NumericUpDown.cs: TextChanged -> base class.
236
237         * CheckedListBox.cs: mark our ObjectCollection class as new to
238         quiet mcs.
239
240         * FolderBrowserDialog.cs: make HelpRequest event new and have it
241         muck with the base class.
242
243         * StatusBar.cs: fix some mcs warnings about Update being the same
244         name as a base class method.
245
246         * RichTextBox.cs: mark some events as new, and make them do things
247         to the base class impl.
248
249         * UserControl.cs: mark TextChanged as new, and have it manipulate
250         base.TextChanged.
251
252         * UpDownBase.cs: mark some things new.
253
254         * CheckBox.cs: mark DoubleClick "new", and add some text about
255         what we need to look at.
256
257         * Panel.cs: make the events "new", and manipulate the base
258         version.  these are just here for attributes.
259
260         * AccessibleObject.cs: make owner private.
261
262         * Control.cs: deal with AccessibleObject.owner being private.
263         cache our own copy if we need it.
264
265         * Button.cs: add "new" to the DoubleClickEvent.
266
267         * ListBox.cs: no need to track our own has_focus here.  let
268         Control.has_focus do it for us.  Also some other work to clear up
269         warnings about not overriding base class methods of the same name.
270         
271         * ComboBox.cs: clear up some warnings about not override base
272         class methods of the same name.
273
274 2006-12-01  Chris Toshok  <toshok@ximian.com>
275
276         * Form.cs: flag a few things as "new" to quiet some of the mcs
277         warnings.
278
279         * AxHost.cs: same.
280
281         * PrintPreviewDialog.cs: same.
282
283         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
284         now DGV isn't so horrible on the class status page.  also, move
285         all events to using System.ComponentModel.EventHandlerList.  my
286         wrists hurt.
287
288 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
289
290         * MdiWindowManager.cs:
291         - Set form to active mdi child if shown,
292         and update the active mdi child to the next 
293         remaining child in the z-order if the form is hidden.
294
295         * Form.cs: 
296         - Track if the form has been visible and if its 
297         visibility is beeing changed, so that the MdiClient
298         can properly decide the ActiveMdiChild. The MdiClient 
299         cannot track this since the form can change visibility 
300         before MdiClient is created.
301
302         * MdiClient.cs:
303         - Don't activate anything of the parent form is changing
304         its visibility.
305         - Rework ActiveMdiChild to only return visible mdi 
306         children and take into account several other corner 
307         cases.
308
309 2006-12-01  Chris Toshok  <toshok@ximian.com>
310
311         * IBindableComponent.cs: new 2.0 interface.
312
313 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
314
315         * DataGrid.cs: Font for caption area is bold by default.
316
317 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
318
319         * Menu.cs: Tag property for 2.0.
320         
321 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
322
323         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
324         
325 2006-12-01  Chris Toshok  <toshok@ximian.com>
326
327         * TreeView.cs: doh, the Begin* events should be
328         TreeViewCancelEventHandler.
329
330 2006-12-01  Chris Toshok  <toshok@ximian.com>
331
332         * Form.cs: Form.ControlCollection already stores off the
333         form_owner field.  don't access the base class's internal "owner"
334         field.
335
336         * Control.cs: make all the fields in Control.ControlCollection
337         private.  there's no need for any internal fields here.
338
339 2006-12-01  Chris Toshok  <toshok@ximian.com>
340
341         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
342         OnHandleCreated.  Fixes bug #80109.
343
344 2006-12-01  Chris Toshok  <toshok@ximian.com>
345
346         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
347         SplitContainer.cs, Control.cs, StatusStrip.cs,
348         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
349         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
350         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
351         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
352         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
353         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
354         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
355         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
356         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
357         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
358
359         do most of the work to convert our code over to use
360         System.ComponentModel.Component.Events for
361         adding/removing/dispatching events.
362
363
364 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
365
366         * DataGridView.cs: Fix an ArgumentNullException reported 
367         twice today in IRC.
368
369 2006-11-30  Mike Kestner  <mkestner@novell.com>
370
371         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
372         grabbed listbox.  Fixes #80036 and #80101.
373
374 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
375
376         * Message.cs: Changed ToString() to match MS.
377         
378 2006-11-30  Jackson Harper  <jackson@ximian.com>
379
380         * TextBoxBase.cs: You can still change the selected text on a read
381         only textbox.
382         * TextControl.cs: Lower magic number for wrap calculations. This
383         lets text get closer to the right (far) edge.
384
385 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
386
387         * Control.cs: Tweak 2.0 layout properties.
388         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
389         * TextRenderer.cs: Add a new overload.
390         * ToolStrip*: Huge amount of changes and new features.
391
392 2006-11-30  Mike Kestner  <mkestner@novell.com>
393
394         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
395         scroll range correct.  Fixes #79994.
396
397 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
398
399         * MdiWindowManager.cs: Update main form's text when
400         a form is closed. (fixes #80038)
401         
402 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
403
404         * ToolBar.cs:
405         - Fix an regression in ButtonSize.
406         - Get ImeMode default value change to "Disable".
407         - Get ShowTooltips default value change to true, default value is 
408         "false" but after make a test in .NET we get "true" result as default.
409         
410 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
411
412         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
413
414 2006-11-29  Chris Toshok  <toshok@ximian.com>
415
416         * XplatUIWin32.cs (GetWindowTransparency): check return value of
417         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
418         SetWindowTransparency hasn't been called.
419
420 2006-11-29  Chris Toshok  <toshok@ximian.com>
421
422         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
423         if it's supported.
424         (set_AllowTransparency): reorder things a little so that the
425         WS_EX_LAYERED style is removed properly.
426
427 2006-11-29  Chris Toshok  <toshok@ximian.com>
428
429         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
430         
431         * Form.cs: only call the XplatUI transparency method (get/set) if
432         SupportsTransparency says it's supported. Otherwise fallback to
433         doing nothing (in the set case) or returning the instance field we
434         cache (in the get case).
435
436         * XplatUIStructs.cs: add TransparencySupport flag enum.
437         
438         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
439         change to SupportsTransparency.
440
441         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
442         TransparencySupport.None from SupportsTransparency.
443
444         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
445         TransparencySupport.Set from SupportsTransparency.
446
447         * XplatUIWin32.cs: implement GetWindowTransparency calling
448         GetLayeredWindowAttributes, and implement SupportsTransparency by
449         checking whether or not both
450         GetWindowTransparency/SetWindowTransparency are available
451         entrypoints.  We need to do this since SetWindowTransparency is
452         available as of win2k, but GetWindowTransparency requires winxp.
453         yay win32 api.
454
455         * XplatUI.cs: Add GetWindowTransparency, and change
456         SupportsTransparency to allow for either/both Get/Set.
457
458 2006-11-29  Chris Toshok  <toshok@ximian.com>
459
460         * DataGrid.cs: keep from going into an infinite loop redrawing a
461         datagrid that has no datasource.  Fixes bug #80033.
462
463 2006-11-29  Chris Toshok  <toshok@ximian.com>
464
465         * MenuItem.cs: fix the NRE when we assign text (and therefore call
466         Invalidate) before the mainmenu has been assigned to a control.
467
468 2006-11-29  Chris Toshok  <toshok@ximian.com>
469
470         * DataGrid.cs: detect when we should be double the double click
471         row/column autosize stuff, although that codepath has yet to be
472         written.  part of the work for bug #79891.
473
474 2006-11-29  Chris Toshok  <toshok@ximian.com>
475
476         * Binding.cs (SetControl): fix unit test.
477
478 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
479
480         * PageSetupDialog.cs: Validate the margins and set them in
481         PageSettings. 
482         * NumericTextBox.cs: New class to mimic the behavior of the
483         textboxes used in the printing dialogs.
484
485 2006-11-29  Andreia Gaita  <avidigal@novell.com>
486         
487         * Form.cs: Revert previous change (remove call UpdateBounds
488         from form constructor), because it messes with the handle creation
489         order, and that one needs lots and lots of love.
490         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
491         for valid printer and throw InvalidPrinterException if document
492         is set but printer not valid), adding a MonoTODO. Once 
493         handle creation is done properly, we can put this back in.
494
495 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
496
497         * MenuItem.cs: Create a invalidate method for menu item, to be
498         calling from set text, it make text changes to imadiate update
499         on screen. Fixes #80013. 
500         
501 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
502
503         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
504         fixes bug #80070 and some other problem on toolbar buttons
505         layout.
506
507 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
508
509         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
510         with dotted brush.      Fixes #79564
511         
512 2006-11-28  Andreia Gaita  <avidigal@novell.com>
513
514         * Form.cs: Removed call to UpdateBounds on Form
515         constructor, it was causing a call to CreateHandle
516         before it was supposed to.
517         * PrintControllerWithStatusDialog: Applied patch
518         by Chris Toshok to hide controller when there are
519         no printers available.
520         PrintDialog.cs: initialize printer settings to 
521         null - correct DefaultValues test #5
522         * PrintPreviewControl.cs: Move PrintController
523         initialization to GeneratePreview
524         * PrintPreviewDialog.cs: 
525         - Remove Preview generation     from Document_set(). It is 
526         called on OnPaint
527         - Throw InvalidPrinterException on CreateHandle if
528         a Document is set but there are no printers or 
529         printer is not valid.
530         * ThemeWin32Classic: don't paint PrintPreviewControl
531         if there is nothing to paint    
532
533 2006-11-28  Miguel de Icaza  <miguel@novell.com>
534
535         * Form.cs: Add another popular method.
536
537         * TabPage.cs: ditto.
538
539 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
540
541         * MenuItem.cs: Fixed a warning.
542         * InternalWindowManager: Fixed a warning.
543
544 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
545
546         * MenuItem.cs:
547         - When cloning a menu also clone MdiList and clone the 
548           window menu items properly (as the forms and menuitems
549           are kept in an internal hashtable, these need updating 
550           as well)
551         - Rewrote the window menu code, menu items are added in the
552           order the forms were added to their parent, and they are
553           updated every time the window menu is shown (before the
554           list was only generated once, in the current order of the
555           forms, and would never be updated). A checkmark is shown
556           next to the item corresponding to the active mdi child.
557
558 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
559
560         * XplatUIStructs.cs: 
561         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
562         
563         * XplatUIWin32.cs: 
564         - Added TME_NONCLIENT to TMEFlags.
565         - Handles WM_NCMOUSEMOVE in GetMessage to 
566           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
567
568         * MdiWindowManager:
569         - Now merges mdi child menu to parent menu when maximized.
570         - Recalculate NC areas of both mdi child and mdi parent. 
571           Fixes #79757 (4).
572           on window state and size changes.Fixes #79844 (3).
573         - Handle WM_NCCALCSIZE to properly calculate borders.
574
575         * Form.cs:
576         - Add/remove to the mdi containers list of mdi children 
577           in the order they are added.
578         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
579           to the maximized mdi child.
580         
581         * InternalWindowManager.cs:
582         - Only execute a click on the control buttons on the mouse up,
583           not on the mouse down. Show the state of the button 
584           (was only showing Normal state, never Pressed state). The
585           pressed button now follows the mouse (if you click the Close 
586           button and move the mouse over the Maximize button, the 
587           Maximize button will be shown as pressed). Since Win32 does
588           not generate WM_NCLBUTTONUP if you release the button outside
589           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
590           it as a mouse up.
591         
592         * ThemeWin32Classic.cs:
593         - Draw a missing border around mdi child forms. Fixes #79844 (2).
594
595         * MdiClient.cs:
596         - Added a list of forms which contains the order the forms are
597           added to the mdi parent.
598         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
599         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
600         - If the active form changes set the scrollbars to the top
601           of the Z order, otherwise the form could hide them.
602         - Scrollbars are now sized according to ClientSize, not 
603           to Size, and they take into account the other scrollbar
604           to determine maximum.
605         
606 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
607         
608         * XplatUI.cs:
609         * XplatUIDriver.cs:
610         * XplatUIX11.cs:
611         * XplatUIWin32.cs:
612         * XplatUIOSX.cs:
613         - Added RequestAdditionalWM_NCMessages for windows to 
614           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
615           Currently only implemented in XplatUIWin32.
616
617 2006-11-27  Chris Toshok  <toshok@ximian.com>
618
619         * Hwnd.cs: only add the hwnd to the windows hash in
620         set_WholeWindow and set_ClientWindow if whole_window/client_window
621         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
622
623 2006-11-27  Mike Kestner  <mkestner@novell.com>
624
625         * ComboBox.cs: remove redundant OnDropDown call.  It is called
626         from the ComboListBox.ShowWindow code. Fixes #79969.
627
628 2006-11-27  Chris Toshok  <toshok@ximian.com>
629
630         * Hwnd.cs: remove the setters for ExposePending and
631         NCExposePending - noone uses them.
632
633 2006-11-27  Jackson Harper  <jackson@ximian.com>
634
635         * TextControl.cs: new param for ReplaceSelection which determines
636         whether we select the new selection, or set the cursor to the end
637         of the new selection.
638         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
639         pasting, select the new text.
640         * RichTextBox.cs: Use new param for ReplaceSelection.
641
642 2006-11-27  Jackson Harper  <jackson@ximian.com>
643
644         * TextBoxBase.cs: Set the selection to the caret after the caret
645         is moved, otherwise they get out of sync.
646
647 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
648
649         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
650         it fixes #80015
651
652 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
653
654         * ThemeWin32Classic.cs: 
655         - Fix toolbar drop down arrow position.
656         - Fix drop down appearance when ToolBar.Appearance is normal,
657         it fixes #80018.
658         
659 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
660
661         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
662         * Control.cs: Same.
663         * UpDownBase.cs: Same.
664         * ButtonBase.cs: Same.
665         * ScrollBar.cs: Same.
666         * TrackBar.cs: Same.
667         * PictureBox.cs: Same.
668         * UserControl.cs: Same.
669         * Label.cs: Same.
670         * ListControl.cs: Same.
671         * TextBoxBase.cs: Same.
672         * ListView.cs: Same.
673         * RichTextBox.cs: Same.
674         * TreeView.cs: Same.
675
676 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
677
678         * PrintDialog.cs:
679         - Text label for where 
680         - Text label comment was not shown
681
682 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
683
684         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
685
686 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
687
688         * InternalWindowManager.cs: 
689         - Handle WM_PARENTNOTIFY to activate the form
690         if any child control is clicked.
691         - The form is only sizable if not minimized.
692
693         * MdiWindowManager.cs:
694         - Save the IconicBounds if the form is moved.
695         - Rework SetWindowState, now the window bounds 
696         are stored only if the old window state is Normal.
697         
698         * MdiClient.cs:
699         - In SetWindowStates store the old window state if 
700         the window is maximized and restore window state if
701         the window looses focus.
702         - Don't handle any scrollbar value changes if 
703         initializing the scroll bars. Fixes #79771.
704         - Reworked ArrangeIconicWindows. Current algorithm
705         tests bounds agains all other minimized windows, if
706         any intersections create new bounds (going left to 
707         right, bottom to top) and then test again. When 
708         successful the bounds are saved and never computed
709         again. Fixes #79774.
710
711 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
712
713         * InternalWindowManager.cs: Added HandleTitleBarUp.
714
715 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
716
717         * NumericUpDown.cs: In .NET 1.1, user entered text is still
718         hexadecimal in ParseUserEdit.
719
720         
721 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
722
723         * MdiWindowManager.cs: 
724         - Handle a click on the form's icon to show the 
725         system menu (when maximized). Fixes #79775.
726         - Change the existing click handler for the form's
727         icon when not maximized to show on MouseUp.
728         Fixes #79776.
729
730         * Form.cs: In OnResize only layout the mdi child's
731         parent if it actually has a parent. Might not if
732         the window is closing.
733
734
735 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
736
737         * MdiClient.cs: Ignore active MDI client for text of parent, if
738         child has no text set.
739
740 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
741
742         * ToolBar.cs: Fixed ToString to match MS.
743
744 2006-11-22  Andreia Gaita  <avidigal@novell.com>
745
746         * NumericUpDown: 
747         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
748         update inner values on set. Fixes #79966.
749         - Override OnLostFocus to update value on NET 2. Fixes #79950.
750         - Fix hexadecimal parsing.
751         
752         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
753         parent. Fixes #79957
754
755 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
756
757         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
758         the actual size has to be queried, since if height /
759         width is negative Win32 changes it to 0. 
760         Fixes #79999 on Windows.
761         
762         * XplatUIX11.cs: Set height / width to 0 if negative
763         in SetWindowPos. Fixes #79999 on Linux.
764         
765 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
766
767         * ThemeWin32Classic.cs: Fix text redenring when button is
768         pressed.
769
770 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
771
772         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
773         and later navigate by mouse. Fixes #79528.
774
775 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
776
777         * ToolBar.cs: Set default value for TabStop to false in
778         constructor, it fixes remaining behavior of bug #79863.
779
780 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
781
782         * MdiWindowManager.cs:
783         * InternalWindowManager.cs:
784         - Moved a few methods specific to Mdi from 
785         InternalWindowManager to MdiWindowManager.
786         Fixes #79996.
787         
788 2006-11-21  Chris Toshok  <toshok@ximian.com>
789
790         * XplatUIOSX.cs: stub out InvalidateNC.
791
792         * XplatUIWin32.cs: implement InvalidateNC using the call I found
793         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
794
795         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
796
797         * XplatUIDriver.cs: add InvalidateNC abstract method.
798
799         * XplatUI.cs: add InvalidateNC.
800
801 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
802
803         * ToolBar.cs: Invalidate complete button area when pressed status 
804         was changed.
805         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
806         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
807         by 1 when button is pressed.
808
809 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
810
811         * ToolButton.cs: Invalidate middle of DropDown button when
812         ToolBar theres DropDownArrows.
813         * ThemeWin32Classic.cs: Change position of DropDown arrow and
814         fix DropDown drawing operations.
815
816 2006-11-20  Chris Toshok  <toshok@ximian.com>
817
818         * NativeWindow.cs: fix the formatting of functions ('{' on the
819         following line), and enable the thread exception dialog.
820
821         * Application.cs: remove the duplicate exception catching from
822         here.
823
824 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
825
826         * Toolbar.cs: Triggers button click event when click on icon
827         of dropdown ToolBarButton. Fixes #79912.
828         
829 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
830
831         * Theme.cs:
832         * ThemeWin32Classic.cs:
833         - Added a property WindowBorderFont to enable themeing
834           of mdi child windows' Text.
835           
836 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
837
838         * InternalWindowManager.cs:
839         * Form.cs:
840         * MdiClient.cs:
841         * MdiWindowManager.cs: 
842         - If mdi child is maximized, set mdi parent's
843           text to "Parent - [Child]". Fixes #79770.
844         - If there is any maximized mdi child windows, only the active 
845           window (and any new windows) is maximized, the rest are normal.
846         - On a WindowState change only save mdi child's window bounds 
847           if the old window state was normal. Fixes #79774.
848         - The scroll bars are now calculated on hopefully all
849           necessary events. Fixed #79771 / #79844->6 / #79906.
850         - MdiClient.SizeScrollBars() now takes into account docked 
851           controls in the parent when calculating available space.
852         - InternalWindowManager now always repaints the entire title
853           area. Fixes #79844->1/4/5.
854         - Added RequestNCRecalc on mdi child windowstate changes.
855           Fixes #79772.
856
857 2006-11-20  Mike Kestner  <mkestner@novell.com>
858
859         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
860         in the MouseUp handler of the listbox and move the return handling
861         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
862
863 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
864
865         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
866
867 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
868
869         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
870           working in 1.2.x anymore. So, updated.
871
872 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
873
874         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
875         NumberGroupSeparator of current culture instead of assuming en-US.
876         Fixed bug #79967.
877
878 2006-11-17  Mike Kestner  <mkestner@novell.com>
879
880         * Control.cs: Add the concept of implicit bounds setting so that
881         dock/undock round trips preserve explicitly set size/locations.
882         Fixes #79313.
883
884 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
885
886         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
887           can't handle those filters. (Fixes bug #79961)
888
889 2006-11-17  Chris Toshok  <toshok@ximian.com>
890
891         [ fixes the exit/crashes associated with #79835.  it's clearly
892         suboptimal though, we need to figure out a better way to solve
893         this. ]
894         
895         * PrintPreviewControl.cs: deal with the new invalid printer
896         exceptions.
897
898         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
899         and return false (so CommonDialog.ShowDialog doesn't actually show
900         the form.)
901
902         * PrintDialog.cs: enable/disable the Ok button depending on
903         whether or not the printer is valid.
904
905         * CommonDialog.cs (ShowDialog): only actually show the form if
906         RunDialog returns true.
907
908 2006-11-17  Jackson Harper  <jackson@ximian.com>
909
910         * TextControl.cs: When soft splitting a line, mark it as a soft
911         split line. Also carry over the current line break to the next
912         line.
913
914 2006-11-17  Chris Toshok  <toshok@ximian.com>
915
916         * XplatUIX11.cs: when scrolling a window with an invalid area, we
917         only want to shift the part of the invalid area that overlaps the
918         area we're scrolling.  we also don't want to clear the invalid
919         area unless the invalid area was entirely contained within the
920         scrolling area.
921
922 2006-11-16  Chris Toshok  <toshok@ximian.com>
923
924         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
925         also make sure to free the memory returned by XGetWindowProperty
926         in GetText().
927
928         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
929
930 2006-11-16  Chris Toshok  <toshok@ximian.com>
931
932         * XplatUI.cs: add a new super secret way to get at the totally
933         unsupported X11 backend.
934
935 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
936
937         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
938
939 2006-11-16  Jackson Harper  <jackson@ximian.com>
940
941         * TreeView.cs: Allow more explicit setting of top node position
942         for scrollbars. Slower algo, but more accurate.
943         - CollapseAll should maintain the current top node.
944         * TextBoxBase.cs: When positioning the caret, use the line, pos
945         method, since the x, y method does not grab the correct tag, and
946         the caret height never gets set correctly. (Maybe I should just do
947         away with the caret having its own height, and always use the
948         carets current tag for height).
949
950 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
951
952         [Fixes 79778, 79923]
953
954         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
955         Parent to the FosterParent instead.
956
957 2006-11-16  Jackson Harper  <jackson@ximian.com>
958
959         * TreeView.cs: Need to recalc the topnode when we expand or
960         collapse. The scrolling methods can't handle this on their own,
961         since they use differences between the last scroll position, and
962         those difference get completely messed up since we are expanding
963         nodes.  This problem should probably be fixed in the scrolling
964         methods, so they can figure out exactly where they are, but this
965         will slow things down a little.
966         * ThemeWin32Classic.cs: Special case for groupboxes with empty
967         strings, makes nunit-gui look a lot nicer.
968
969 2006-11-16  Chris Toshok  <toshok@ximian.com>
970
971         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
972         the broken multithreaded event handling we have in here.  File
973         this entry under "Why we should move to the new X11 backend".
974
975         Any thread can make it into UpdateMessageQueue, which gets events
976         from the X socket - some of which could belong to hwnds being
977         managed by a different thread.  We can also have multiple threads
978         in UpdateMessageQueue at the same time, with each one reading from
979         the X socket.  This leads to many problems, with the following
980         solutions:
981
982         We can't use hwnd.Queue.Enqueue anywhere in here and must use
983         EnqueueLocked.
984
985         The MotionNotify compression we do can't work across threads
986         (without locking the entire queue, perhaps) since we call
987         hwnd.Queue.Peek, so we just punt and don't compress motion events
988         unless the owning thread is the one which got the X event.
989
990         ConfigureNotify is another fun one, since it modifies the hwnd's
991         bounds and then enqueues the event.  We add a lock to Hwnd which
992         is held when setting configure_pending to true (and enqueuing the
993         event).
994
995         There is a race wrt the wake socket.  we need to make sure that
996         only 1 thread is waiting on that socket, or else a thread could
997         sleep waiting for data that never comes.  It's difficult (but not
998         impossible) to make happen, because it seems to require something
999         like the following:
1000
1001             1. Thread 1 polls on wake_receive
1002         
1003             2. poll returns saying there's data to be read on
1004                wake_receive.
1005         
1006             3. Thread 2 polls on wake_receive and immediately returns
1007                saying there's data to be read.
1008
1009             4. Thread 2 reads the wakeup byte from wake_receive
1010
1011             5. Thread 1 attempts to read the wakeup byte from
1012                wake_receive.
1013
1014             6. Thread 2 exits (due to a form closing, perhaps).
1015
1016             7. Thread 1 blocks forever.
1017         
1018         Fun, eh?
1019
1020         Fixing the Expose handling isn't done yet, and the races inherent
1021         in that piece of code are responsible for the drawing mistakes you
1022         see when generating expose events in a MT app (like NPlot).  This
1023         one is the likely to be the hardest to bandaid, and it doesn't
1024         appear to cause anything but drawing problems.  The other issues
1025         caused apps to exit or hang.
1026
1027         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1028         called from a different thread than the one that should be calling
1029         these functions.
1030
1031         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1032
1033 2006-11-15  Chris Toshok  <toshok@ximian.com>
1034
1035         * Application.cs: null out the context's MainForm when we exit
1036         RunLoop.  Fixes a newly checked in unit test as well as the last
1037         ODE from bug #79933.
1038
1039 2006-11-15  Chris Toshok  <toshok@ximian.com>
1040
1041         * Form.cs (set_Owner): allow a null value so we can clear the
1042         form's owner.
1043         (Dispose): set all our owned_form's Owner properties to null, and
1044         clear the owned_forms collection.
1045         (WM_CLOSE): clean up this a little bit.. still not right though.
1046
1047         * ApplicationContext.cs: OnMainFormClosed should only call
1048         ExitThreadCore if the main form isn't recreating.  Fixes unit
1049         test.
1050
1051 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1052
1053         [Fixes 78346]
1054
1055         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1056
1057 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1058
1059         [Fixes 79433]
1060
1061         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1062         keep popup window types from stealing focus from the main form
1063         on Windows.
1064
1065         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1066
1067         * MenuAPI.cs: Set above flag to true.
1068
1069 2006-11-15  Chris Toshok  <toshok@ximian.com>
1070
1071         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1072         the button being released is not in wParam.
1073
1074 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1075
1076         * Form.cs: Add the released button to MouseEventArgs.Button
1077         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1078         on Win32.
1079
1080 2006-11-15  Chris Toshok  <toshok@ximian.com>
1081
1082         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1083         GetText().  untested because it's unused in our implementation.
1084         Control.Text always caches the text, even if
1085         ControlStyles.CacheText is not set.
1086
1087         fixes bug #79939.
1088
1089 2006-11-15  Chris Toshok  <toshok@ximian.com>
1090
1091         [ fixes #79933 ]
1092         
1093         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1094         message.  no hiding, no disposing.
1095
1096         in the WM_CLOSE handler, hide the form if it's modal.
1097
1098 2006-11-15  Chris Toshok  <toshok@ximian.com>
1099
1100         * XplatUIX11.cs: use AddExpose instead of sending a message.
1101         fixes textbox border drawing.
1102
1103 2006-11-15  Chris Toshok  <toshok@ximian.com>
1104
1105         * PropertyGridView.cs: keep from crashing on mouse move/down when
1106         the property grid is empty.
1107
1108 2006-11-14  Jackson Harper  <jackson@ximian.com>
1109
1110         * TextControl.cs: Make PageUp and PageDown more like the MS
1111         versions.
1112         * TextBoxBase.cs: When we set the text property position the
1113         cursor at the beginning of the document.
1114
1115 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1116
1117         * Form.cs: if a mdi child's WindowState has changed
1118         before it's creation, it would display wrong control
1119         buttons.
1120         
1121 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1122
1123         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1124           (Fixes bug #79927)
1125
1126 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1127
1128         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1129         the window gets to paint its borders even if the window is
1130         getting smaller.
1131         
1132         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1133         otherwise the old control buttons would still be painted 
1134         if the window gets bigger.
1135         
1136         * PaintEventArgs.cs: add an internal method so that the clip 
1137         rectangle can be changed.
1138         
1139 2006-11-13  Chris Toshok  <toshok@ximian.com>
1140
1141         [ fixes bug #79745 ]
1142         
1143         * NotifyIcon.cs: lots of cleanup.
1144
1145         * X11Structs.cs: add an enum for XEMBED messages.
1146
1147         * XplatUIX11.cs: reindent one of the giant switch statements, it
1148         was taking up an additional tab stop, and this file is already way
1149         too wide for my laptop's screen.
1150
1151         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1152         we get it, resize the hwnd to the WMNormalHints max_width/height.
1153
1154 2006-11-13  Jackson Harper  <jackson@ximian.com>
1155
1156         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1157         teh simple way.
1158
1159 2006-11-13  Chris Toshok  <toshok@ximian.com>
1160
1161         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1162         #79898.  force a reference to the Region to stick around so the
1163         unmanaged object isn't collected (rendering our handle in the MSG
1164         stale).
1165
1166 2006-11-13  Chris Toshok  <toshok@ximian.com>
1167
1168         * XplatUIX11.cs: fix #79917 for window managers which support
1169
1170         using XStoreName on the raw utf8, and we need to convert to
1171         COMPOUND_TEXT if it's non-latin1.
1172
1173 2006-11-13  Chris Toshok  <toshok@ximian.com>
1174
1175         * Form.cs (set_DialogResult): we need to set closing to false if
1176         we're setting our result to None.  fixes bug #79908.
1177
1178 2006-11-13  Jackson Harper  <jackson@ximian.com>
1179
1180         * TextControl.cs: When formatting text, compute the adjusted tag
1181         lengths correctly, using FindTag for the end tag instead of trying
1182         to figure it out outselves.
1183         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1184         the item, ItemHeight doesn't work, because trees with large
1185         imagelists use those for their height
1186         * TreeView.cs: ActualItemHeight factors in the image height
1187         - compute left edge of checkboxes correctly
1188         - when expanding/collapsing move the bottom down one pixel, so we
1189         aren't moving part of the node
1190
1191 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1192
1193         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1194         stack in PaintEventStart so that it won't get disposed by the gc
1195         before reaching PaintEventEnd.
1196
1197 2006-11-13  Jackson Harper  <jackson@ximian.com>
1198
1199         * TextBoxBase.cs: Don't select the word if we are on a line with
1200         no text.
1201         - We don't need to position the caret on mouse up, since the mouse
1202         move handler should be doing this
1203         - When double clicking a blank line, the caret is advanced to the
1204         next line.
1205
1206 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1207
1208         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1209
1210 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1211
1212         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1213         Fixes part of bug #79910.
1214
1215 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1216
1217         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1218           (bug #79903). Some minor string updates to match ms.
1219
1220 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1221
1222         * FileDialog.cs: Don't add an extension if the filename
1223           already ends with that extension.
1224
1225 2006-11-10  Jackson Harper  <jackson@ximian.com>
1226
1227         * TreeView.cs: Use the currently highlighted node for the
1228         BeforeSelect event.
1229         * TextBoxBase.cs: There is no need to expand selection on
1230         MouseMove.
1231         - CanUndo means 'is there any undo operations', not 'is undo
1232         allowed on this textcontrol. Fixed ClearUndo unit test.
1233
1234 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1235
1236         * Button.cs: only perform click when button is Selectable (so as 
1237         not to activate default buttons when they're disabled)
1238         
1239         * Control.cs: Rewrite of the SelectNextControl and related 
1240         methods. HandleClick now selects next control if the current one
1241         is being disabled.
1242         
1243         * Form.cs: OnActivated selects next active control only if Load 
1244         has already occurred. If Load hasn't run, there's no point in 
1245         selecting here, Load might change the state of controls.
1246         
1247         * FocusTest.cs: Tests marked as working again for these fixes
1248
1249 2006-11-10  Chris Toshok  <toshok@ximian.com>
1250
1251         * XplatUIX11.cs: a couple of fixes.
1252
1253         - use XInternAtoms with almost all the atoms we need to register,
1254         instead of many, many calls to XInternAtom.  should help a bit on
1255         startup time, at the expense of making the code look a little
1256         worse.
1257
1258         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1259         isn't reparented (which seems to be a clue that we're running fon
1260         compiz) and they have an Owner form.  This fixes the tool windows
1261         in paint.net when running under compiz.
1262
1263         - when setting the opacity of a window, support both the case
1264         where the window has been reparented and also when it hasn't been.
1265         Since compiz/beryl doesn't seem to reparent windows, and these are
1266         the only window managers which support translucency, I'm not sure
1267         why we need the hwnd.reparented case at all.. but leave it in.
1268         now we get translucent windows in paint.net under compiz/beryl.
1269
1270 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1271
1272         * FileDialog.cs: Always return the value for FilterIndex that
1273           was set. Internally convert it to values that make sense.
1274
1275 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1276         
1277         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1278
1279 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1280
1281         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1282         signature still using false to make it compatible with MS but the 
1283         initial value is true. Fixes #79855.
1284
1285 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1286
1287         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1288           only available on Linux.
1289
1290 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1291
1292         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1293         reduce number of calls to redraw method during toolbar creation.
1294
1295 2006-11-09  Mike Kestner  <mkestner@novell.com>
1296
1297         * ListView.cs : raise SelectedIndexChanged when an item is selected
1298         programmatically via the Item.Selected property.  Gert's nice 
1299         ListViewSelectedIndexChanged test fixture now runs clean.
1300
1301 2006-11-09  Mike Kestner  <mkestner@novell.com>
1302
1303         * ListView.cs : raise SelectedIndexChanged when a selected item is
1304         removed from the item collection using Remove or RemoveAt.
1305
1306 2006-11-09  Mike Kestner  <mkestner@novell.com>
1307
1308         * ListView.cs : raise SelectedIndexChanged once per selected item
1309         for compat with MS.  Fixes #79849+.
1310
1311 2006-11-09  Chris Toshok  <toshok@ximian.com>
1312
1313         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1314         we need to (if we have any tab pages).  Fixes unit test.
1315
1316 2006-11-09  Chris Toshok  <toshok@ximian.com>
1317
1318         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1319         width is 0, not 3.  Fixes a unit test.
1320
1321 2006-11-09  Mike Kestner  <mkestner@novell.com>
1322
1323         * ListView.cs : use Implicit scrollbars so that focus isn't 
1324         stolen from the listview when they are clicked. Fixes #79850.
1325
1326 2006-11-09  Chris Toshok  <toshok@ximian.com>
1327
1328         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1329         have a root item.  Fixes #79879.
1330
1331 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1332
1333         * FileDialog.cs:
1334           - Fix ToString ()
1335           - An ArgumentException is now thrown if a wrong filter
1336             is applied (matches ms). The previous filter doesn't change
1337             anymore if an exception is thrown.
1338           - Changing the FileName property also affects FileNames
1339         * ColorDialog.cs: The length of the CustomColors array is always
1340           16. It doesn't matter if we use a smaller array or null to update
1341           or change the custom colors property.
1342         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1343           for RootFolder if we get a undefined value.
1344
1345 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1346
1347         * StatusBarPanel.cs: 
1348         - Width is set to MinWidth if Width is smaller than
1349         MinWidth. Fixes #79842.
1350         - MinWidth now always overrides Width (MSDN says MinWidth
1351         is set to Width when AutoSize = None, but they do not 
1352         behave like that).
1353         - Style has now the the correct default value.
1354         
1355 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1356  
1357         * TrackBar.cs: 
1358         - The control is completely invalidated on 
1359         Got/LostFocus to draw the focus rectangle correctly.
1360         - When AutoSize then height is always 45 (width for 
1361         vertical controls).
1362         
1363         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1364         on the mouse when moved and it doesn't move when grabbed
1365         until the mouse moves as well. Also fixed some wrong 
1366         calculations when clicking on the thumb (control thought
1367         click was outside of thumb and didn't grab it).
1368         Fixes some of the issues in #79718.
1369
1370 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1371
1372         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1373
1374 2006-11-08  Chris Toshok  <toshok@ximian.com>
1375
1376         * PropertyGridView.cs: only call ToggleValue if the item is not
1377         readonly.
1378
1379 2006-11-08  Jackson Harper  <jackson@ximian.com>
1380
1381         * TextBoxBase.cs: The RichTextBox and textbox have very different
1382         word selection methods.  Implement the textbox's simple word
1383         selection here, and let the RichTextBox override and provide it's
1384         own.
1385         - Don't do extra selection on mouseup
1386         * RichTextBox.cs: Use the documents word selection algorithm, I
1387         think ideally, this function will be pulled into the
1388         RichTextBox.cs code someday.
1389
1390 2006-11-08  Chris Toshok  <toshok@ximian.com>
1391
1392         * RootGridEntry.cs: new class to represent GridItemType.Root.
1393
1394         * CategoryGridEntry.cs: reformat, and add boilerplate.
1395         
1396         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1397         returns the UI parent anyway, and we need special handling to
1398         implement the GetTarget method in the face of it.  Also, implement
1399         Select().
1400
1401         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1402         a root grid item, and use that instead of PropertyGrid.grid_items.
1403         Also, make use of TypeConverters (and add limitted support for
1404         ICustomTypeDescriptors) when initially populating the grid.
1405         Arrays now show up more or less properly.
1406
1407 2006-11-08  Chris Toshok  <toshok@ximian.com>
1408
1409         * Application.cs: set the modal dialog to non modal after we close
1410         it.  Fixes bug #79866.
1411
1412 2006-11-08  Jackson Harper  <jackson@ximian.com>
1413
1414         * TextControl.cs: When combining lines carry over the line end
1415         style from the end line.
1416         - Invalidate the selected area when setting it, if it is visible.
1417         * TextBoxBase.cs: Only rich text box can do full line selects.
1418         - Make sure to set the cursor position when there is a click,
1419         otherwise two clicks in separate areas could cause a large chunk
1420         to be selected.
1421
1422 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1423
1424         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1425         Fixes #79863.
1426
1427 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1428
1429         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1430         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1431
1432 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1433
1434         * MenuAPI.cs: Ignore right click for menu actions and fixes
1435         menu border when clicked.  Fixes #79846.
1436
1437 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1438
1439         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1440         MouseState after create wParam for message, this fixes mouse button 
1441         equal none in mouse up events.
1442         
1443 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1444
1445         * Control.cs : Focus() now calls Select to set the Container's
1446         Active Control and to give it focus. To avoid infinite recursion
1447         (because ActiveControl also calls Focus at one point), a check 
1448         is made in Focus with the help of a new internal variable
1449         is_focusing.
1450
1451 2006-11-07  Mike Kestner  <mkestner@novell.com>
1452
1453         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1454         if there's a selection.  Fixes #79849.
1455
1456 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1457
1458         * PropertyGrid.cs: Avoid fixed height of help description label.
1459         Fixes part of bug #79829.
1460
1461 2006-11-07  Chris Toshok  <toshok@ximian.com>
1462
1463         * XplatUIX11.cs: fix #79790 again, by using the
1464         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1465
1466 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1467
1468         * ToolBar.cs: Fix left click checking.
1469
1470 2006-11-07  Chris Toshok  <toshok@ximian.com>
1471
1472         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1473
1474 2006-11-07  Chris Toshok  <toshok@ximian.com>
1475
1476         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
1477         PropertyManager unit tests.
1478
1479         * PropertyManager.cs: make property_name internal.
1480
1481 2006-11-07  Chris Toshok  <toshok@ximian.com>
1482
1483         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
1484         pass a unit test.  Also, don't set image_index to anything in
1485         response to setting the ImageList property.
1486
1487 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1488
1489         * ToolBar.cs: Ignore click events when mouse button is not a
1490         left button, only accepts other button for dropdown menus.  
1491         Fixes #79854.
1492
1493 2006-11-07  Chris Toshok  <toshok@ximian.com>
1494
1495         * DataGrid.cs: make the back and parent row buttons a little less
1496         ugly.
1497
1498 2006-11-07  Jackson Harper  <jackson@ximian.com>
1499
1500         * TextBoxBase.cs: When converting to Text don't put line breaks in
1501         for soft line breaks.
1502         * TextControl.cs: There is an initial "fake" line in the document,
1503         this is now a soft break line, so that an extra line feed doesn't
1504         get added to the end of documents.
1505
1506 2006-11-07  Chris Toshok  <toshok@ximian.com>
1507
1508         [ fix bug #79778 ]
1509         
1510         * CurrencyManager.cs: if the list is readonly, don't bother
1511         checking if IBindingList.AllowNew is true.
1512
1513         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
1514         for non-DataRowView datasources..  or rather, make it not crash.
1515         (DataGridPaintRelationRow): make sure we limit the row painting to
1516         the area not covered by the row header, and make our cell width at
1517         least large enough to cover the relation area.  This allows grids
1518         that have relations but no rows to render correctly.
1519         (DataGridPaintRowContents): same type of changes here.
1520         (SetDataSource): move back to always calling
1521         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
1522         navigating back through relations.
1523         (HitTest): handle the case where we have no cells but have
1524         relations.  Right now we generate a hit in cell 0 of whatever the
1525         row is, not sure if this is strictly correct, but it works for our
1526         purposes.
1527         
1528         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
1529         bother doing anything.
1530
1531 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
1532
1533         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
1534         early version of StatusStrip.  Not responsible for eaten
1535         application or firstborn children.
1536
1537 2006-11-06  Chris Toshok  <toshok@ximian.com>
1538
1539         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
1540         call GetTabRect with a -1 index.  Fixes #79847.
1541
1542 2006-11-06  Jackson Harper  <jackson@ximian.com>
1543
1544         * TreeNodeCollection.cs: Update scrollbars after clearing.
1545
1546 2006-11-06  Chris Toshok  <toshok@ximian.com>
1547
1548         * NumericUpDown.cs: fix the ToString method for some unit test
1549         love.
1550
1551 2006-11-06  Chris Toshok  <toshok@ximian.com>
1552
1553         * PropertyGrid.cs:
1554         - set the initial SelectedGridItem if we can.
1555
1556         - Exclude non-mergable properties only if we're merging > 1
1557         object.  Merging 1 object isn't really merging, obviously.
1558
1559         - Handle PropertySort.NoSort just like Alphabetical, which is
1560         wrong of course, but at least gets things on the screen.
1561         
1562         * PropertyGridView.cs:
1563         - Add method "FindFirstItem" which finds the first property grid
1564         item, so we can select it by default.
1565
1566         - make use of GridEntry.CanResetValue.
1567
1568         - Don't call RedrawBelowItemOnExpansion here anymore, the
1569         individual GridEntry's will do that.
1570
1571         - Remove the ITypeDescriptorContextImpl internal class.
1572         
1573         * GridEntry.cs:
1574         - this class needs to implement ITypeDescriptorContext, as it's
1575         what MS's PropertyDescriptorGridEntry does, which means we can
1576         remove the ITypeDescriptorContextImpl internal class from
1577         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
1578
1579         - keep a reference to our PropertyGridView, and move the call to
1580         RedrawBelowItemOnExpansion here from PGV.  This means
1581         programmaticly setting Expanded actually does something visible.
1582
1583         - add a CanResetValue() function which takes into account our
1584         possibly multiple "selected_objects" in the merged case.  Shifting
1585         PropertyGridView to use this method fixes another unreported
1586         crasher found running the test for #79829.
1587
1588         - when Top or Bounds is updated, make sure the PropertyGridTextBox
1589         is updated to reflect this.
1590
1591         * CategoryGridEntry.cs: the ctor takes the PGV now.
1592         
1593 2006-11-06  Jackson Harper  <jackson@ximian.com>
1594
1595         * TextControl.cs: These are 1 based.
1596         * TextBoxBase.cs: When setting the selected text, don't change the
1597         selected text tags, this is done by ReplaceText, just position the
1598         cursor at the end of the new text.
1599
1600 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1601
1602         * ListView.cs: Allow label edit only when, when LabelEdit is
1603           set to true.
1604
1605 2006-11-06  Jackson Harper  <jackson@ximian.com>
1606
1607         * TextControl.cs: If a suitable wrapping position isn't found,
1608         just wrap right in the middle of a word.
1609
1610 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1611
1612         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
1613           bug #79820.
1614
1615 2006-11-06  Jackson Harper  <jackson@ximian.com>
1616
1617         * TreeView.cs: Can't use the VisibleCount property when setting
1618         scrollbar heights, because this doesn't take into account whether
1619         or not the horz scrollbar just came visible.
1620
1621 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
1622
1623         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
1624         activated.  Fixes #79369, #79832.
1625
1626 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
1627
1628         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
1629           had to remove support for links that point to a directory. FileInfo
1630           returns no usefull information (means, the directory they point to)
1631           for such links. Replaced some empty string ("") with String.Empty.
1632
1633 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1634
1635         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
1636         NullReferenceException when attempting to remove node that is not in
1637         collection. Throw NullReferenceException when null is passed to 
1638         Remove. Allow first element of the collection to be removed. Fixes
1639         bug #79831.  In GetEnumerator ().Current return null if positioned 
1640         before the first element of the collection. In GetEnumerator ().Reset,
1641         position before first element of the collection.
1642
1643 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1644
1645         * PropertyGrid.cs: To match MS, remove default title and description
1646         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
1647         buttons.
1648
1649 2006-11-04  Chris Toshok  <toshok@ximian.com>
1650
1651         * Theme.cs: add a Clamp method, just for kicks.
1652
1653         * ThemeWin32Classic.cs: clamp all color components to [0..255].
1654
1655 2006-11-04  Chris Toshok  <toshok@ximian.com>
1656
1657         * Form.cs: if the form isn't visible, Close() does nothing.
1658
1659 2006-11-03  Chris Toshok  <toshok@ximian.com>
1660
1661         * Form.cs (Close): if the form is modal, don't Dispose of it, only
1662         Hide it.
1663         (WndProc): don't Dispose after handling the WM_CLOSE message.
1664
1665         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
1666         them as such, instead of using casts from Control to Form.  Also,
1667         don't Dispose of the modal dialog when we fall out of the loop -
1668         Close() it instead.
1669
1670         fixes bug #79813.
1671
1672 2006-11-03  Chris Toshok  <toshok@ximian.com>
1673
1674         * Control.cs (Dispose): only go through the dispose thing if we're
1675         @disposing, and we haven't already been disposed.  Fixes bug
1676         #79814.
1677
1678         * Form.cs: no reason to call "base.Dispose()" here instead of
1679         "Dispose()".
1680
1681 2006-11-03  Mike Kestner  <mkestner@novell.com>
1682
1683         * ComboBox.cs : use ToString instead of casts in AddItem for
1684         sorting functionality.  Fixes #79812.
1685
1686 2006-11-03  Chris Toshok  <toshok@ximian.com>
1687
1688         * Application.cs: pave the way for actually using the thread
1689         exception dialog.  it's ifdefed out at the moment.
1690
1691 2006-11-03  Chris Toshok  <toshok@ximian.com>
1692
1693         * ThreadExceptionDialog.cs: until we get a better layout, actually
1694         hide the details textbox and label when we shouldn't see them.
1695
1696 2006-11-03  Jackson Harper  <jackson@ximian.com>
1697
1698         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
1699         multiline textboxes anymore.  This method also determines the
1700         width/height of a textboxes canvas area.
1701         - Sorta a revert of the last patch.  For multiline just position
1702         the controls, then bail.  This way the scrollbar width won't be
1703         altered.
1704
1705 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
1706
1707         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
1708         it dont need.  Fixes #79537.
1709
1710 2006-11-02  Jackson Harper  <jackson@ximian.com>
1711
1712         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
1713         send the status after firing the DndOver event.
1714
1715 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1716
1717         * TrackBar.cs: Now orientation only switches height / width if
1718         the control's handle is created (Win32 does it like this). Also 
1719         fixed a typo in ToString() for a test to pass, changed the 
1720         exception thrown in set_LargeChange and set_SmallChange to 
1721         match Win32 behaviour, and added TrackBar tests to the unit 
1722         tests.
1723
1724 2006-11-02  Chris Toshok  <toshok@ximian.com>
1725
1726         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
1727         not _NET_WM_STATE_NO_TASKBAR.
1728
1729 2006-11-02  Jackson Harper  <jackson@ximian.com>
1730
1731         * TextControl.cs: Increment count by one, since in the update view
1732         count - 1 is used.
1733
1734 2006-11-02  Jackson Harper  <jackson@ximian.com>
1735
1736         * TextBoxBase.cs: Use client rectangle not bounds for checking if
1737         the mouse is in the client rectangle (duh).
1738
1739 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1740         
1741         * TrackBar.cs: Fixed trackbar jumping around when clicking
1742         on it - the trackbar was not detecting correctly at which
1743         side of the thumb the click was done. (fixes #79718)
1744
1745 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1746
1747         * ListBox.cs: scroll visible area when change SelectedIndex to
1748         a non visible area.  Fixes #79481.
1749
1750 2006-11-01  Jackson Harper  <jackson@ximian.com>
1751
1752         * TextControl.cs: When replacing the selection move the selection
1753         start/end/anchor to the end of the new text.
1754
1755 2006-11-01  Jackson Harper  <jackson@ximian.com>
1756
1757         * XplatUIWin32.cs: When setting the parent change the controls
1758         visibility to it's visibility flag, not to it's old parents
1759         visibility (.Visible walks the parent chain).
1760
1761 2006-11-01  Chris Toshok  <toshok@ximian.com>
1762
1763         * XplatUIX11.cs: revert the #79790 fix, as the simple.
1764         XSetTransientForHint fix breaks paint .net's tool windows.  more
1765         work needed for that one.
1766
1767 2006-11-01  Chris Toshok  <toshok@ximian.com>
1768
1769         * ScrollBar.cs: throw ArgumentException instead of Exception in
1770         LargeChange/SmallChange setters.  fixes unit tests.
1771
1772 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1773
1774         * ContainerControl.cs: reverted rev.67183 (which was itself
1775         a reversion of rev.66853... eh).
1776         
1777         * Control.cs: Fixes Reflector hang by changing Focus() call
1778         to what it was before rev.66643 (calling Select() here sets 
1779         ActiveControl, which in some situations calls back Focus and 
1780         eventually does a stack overflow). Temp fix.    
1781         Changes to GetNextControl() to not look for children to select when
1782         parent cannot be selectable (so it looks for siblings instead)  
1783         
1784 2006-10-31  Mike Kestner  <mkestner@novell.com>
1785
1786         * CheckedListBox.cs : off by one error in returned index from
1787         ObjectCollection.Add.  Fixes #79758.
1788
1789 2006-10-31  Chris Toshok  <toshok@ximian.com>
1790
1791         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
1792         calls for the textbox/spinner, to keep from recursing to the point
1793         where we crash.  Fixes #79760.
1794
1795 2006-10-31  Chris Toshok  <toshok@ximian.com>
1796
1797         * ListControl.cs (set_SelectedValue): don't throw exceptions on
1798         null/"" value, just return.  matches ms's behavior and fixes some
1799         failing tests.
1800
1801 2006-10-31  Chris Toshok  <toshok@ximian.com>
1802
1803         * Control.cs (set_Capture): make a logic a little easier to
1804         follow.
1805
1806         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
1807         if it's being destroyed.  A necessary fix surely, but a bandaid
1808         also, to fix the stuck capture problem in bug #78413.
1809
1810 2006-10-31  Chris Toshok  <toshok@ximian.com>
1811
1812         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
1813         convention of clearing hwnd.ClientRect when we set the
1814         width/height (so it'll be recalculated by Hwnd).
1815
1816 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1817
1818         * ContainerControl.cs: reversed Contains check from
1819         ActiveControl due to hanging problems. This fix
1820         partly regresses #79667 (button does not have
1821         initial focus), so this might be a symptom for 
1822         a larger parenting problem (set_ActiveControl
1823         is being called but the child control does
1824         not have the parent set yet?)   
1825         
1826 2006-10-31  Mike Kestner  <mkestner@novell.com>
1827
1828         * MenuAPI.cs : fix keynav when menu is click activated.
1829
1830 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
1831
1832         * ToolStrip*: Version 0.2.
1833
1834         * MenuStrip.cs: Version 0.1.
1835
1836         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
1837
1838 2006-10-30  Chris Toshok  <toshok@ximian.com>
1839
1840         [ fixes the oversized notify icon issue in bug #79745 ]
1841         
1842         * NotifyIcon.cs: scale the icon down to the size we're given by
1843         the XplatUI layer (this would be faster if we did it once instead
1844         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
1845         since it's never invoked.
1846
1847         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
1848         pixels high by default, so let's hardcode our systray icon to that
1849         size.  The SYSTEM_TRAY protocol should really have a way for
1850         client apps to query for the correct icon size.. but oh well.  A
1851         couple of patches to deal with the screwy client_window ==
1852         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
1853         instance, and also make sure we don't XSelectInput twice).
1854
1855 2006-10-30  Chris Toshok  <toshok@ximian.com>
1856
1857         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
1858         recreating forms.  Control recreation is the bane of my existence.
1859         Fix it in a way that keeps everyone happy.
1860
1861 2006-10-30  Chris Toshok  <toshok@ximian.com>
1862
1863         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
1864         just non-CHILD ones.  otherwise sometimes scrollbars end up with
1865         client_windows not being resized to the proper size (ReportBuilder
1866         shows this extremely well).
1867
1868 2006-10-30  Chris Toshok  <toshok@ximian.com>
1869
1870         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
1871         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
1872         showing up in the gnome taskbar.  Fixes bug #79790.
1873
1874 2006-10-30  Chris Toshok  <toshok@ximian.com>
1875
1876         * ApplicationContext.cs: guard against a NRE.
1877
1878         * Application.cs: null out the old MainForm for the context, so we
1879         don't try to use it again once it's disposed.  Fixes bug #79783.
1880
1881 2006-10-30  Chris Toshok  <toshok@ximian.com>
1882
1883         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
1884         BindingContext, set the data source directly, otherwise do the
1885         lazy approach - the actual ListManager will be created when we get
1886         a BindingContext. Fixes bug #79700.
1887
1888 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1889
1890         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
1891           XplatUIX11.cs: Remove old 2 parameter SetVisible.
1892
1893         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
1894
1895 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1896
1897         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
1898         of SetVisible that allows a window to be shown, but not activated.
1899         This is needed on Windows for MenuStrip, and can probably be used
1900         with MainMenu and ComboBox to fix the focus stealing issues on
1901         Windows.
1902
1903         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
1904
1905 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
1906
1907         * PictureBox.cs: Fix the output of the ToString method.
1908
1909 2006-10-29  Chris Toshok  <toshok@ximian.com>
1910
1911         * Control.cs (get_TopLevelControl): fix bug #79781.
1912
1913 2006-10-29  Chris Toshok  <toshok@ximian.com>
1914
1915         * ListControl.cs (set_DataSource): throw Exception here, not
1916         ArgumentException, to match MS behavior.
1917
1918 2006-10-29  Chris Toshok  <toshok@ximian.com>
1919
1920         * Form.cs: remove the try-catch's around calls to GetWindowState.
1921         We can just check the return value.
1922
1923         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
1924         Instead return -1.
1925
1926         * XplatUI.cs: Add note about additional return value for
1927         GetWindowState.
1928
1929 2006-10-29  Chris Toshok  <toshok@ximian.com>
1930
1931         * Control.cs (CreateHandle): when we create our handle, we also
1932         create the handles of our child controls.  Fixes one of the
1933         Control unit tests (CH11).
1934
1935 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1936
1937         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
1938
1939 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1940
1941         * ThemeClearlooks.cs: A little speedup.
1942
1943 2006-10-27  Chris Toshok  <toshok@ximian.com>
1944
1945         * Control.cs: implement Control.FromChildHandle in a way that
1946         matches the docs (and fixes the failed test.)
1947
1948 2006-10-27  Chris Toshok  <toshok@ximian.com>
1949
1950         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
1951         comments).
1952
1953         * DataGrid.cs: implement ResetForeColor such that the tests
1954         succeed.
1955         
1956 2006-10-27  Chris Toshok  <toshok@ximian.com>
1957
1958         * ToolBarButton.cs: setting text/tooltiptext to null results in it
1959         being set to "".  Fixes bug #79759.
1960
1961 2006-10-27  Jackson Harper  <jackson@ximian.com>
1962
1963         * TextControl.cs: We need to clear the entire selection area when
1964         setting the start, otherwise multiline selections are still
1965         visible.
1966
1967 2006-10-26  Chris Toshok  <toshok@ximian.com>
1968
1969         * PropertyGridView.cs: 
1970
1971         - ifdef all the code specific to the double
1972         buffer case, and provide some alternatives in the non-doublebuffer
1973         code, which makes heavy use of XplatUI.ScrollWindow to move things
1974         around without having to invalidate (and cause flicker).  There
1975         are still some drawing problems in the non-doublebuffered case, so
1976         DOUBLEBUFFER is defined by default.
1977
1978         - Fix the way dropdowns are handled.  now we explicitly watch for
1979         the events which might cause the dropdown to close, and break out
1980         of the nested event loop there.  This gets rid of all Capture
1981         code, at the expense of the Msg special casing.  Seems to work,
1982         though, and fixes bug #79743.
1983
1984 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
1985         * Control.cs: SetIsRecreating now recreates implicitly added
1986         child controls as well. Finally fixes #79629. The flag passed to 
1987         SetIsRecreating has also been removed since it wasn't used.
1988         
1989 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1990
1991         * PageSetupDialog.cs: Clean some code, fix some bits, 
1992         add some checks, and add a printer sub-dialog.
1993
1994 2006-10-26  Chris Toshok  <toshok@ximian.com>
1995
1996         * PropertyGrid.cs: make set_SelectedObject call
1997         set_SelectedObjects, and move the duplicate logic to the
1998         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
1999
2000         * PropertyGridView.cs: hide the textbox when we get a
2001         SelectedObjectsChanged event.
2002
2003         Fixes bug #79748.
2004
2005 2006-10-26  Chris Toshok  <toshok@ximian.com>
2006
2007         * PropertyGridView.cs: deal with the type converter not supporting
2008         GetStandardValues() or GetStandardValues() returning null, which
2009         is does in the default case.  Fixes #79742.
2010
2011 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2012
2013         * CheckedListBox.cs: nunit no longer crashes when selecting 
2014         Project/Edit menu option
2015         
2016 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2017
2018         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2019         is no menu selected. fixes #79739
2020
2021 2006-10-25  Chris Toshok  <toshok@ximian.com>
2022
2023         * PropertyGridView.cs: factor out the splitter invalidation code
2024         into the SplitterPercent setter, and for kicks implement the
2025         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2026         amount in either direction.
2027
2028 2006-10-25  Chris Toshok  <toshok@ximian.com>
2029
2030         * PropertyGridView.cs: do some cleanup of the brush used to draw
2031         text - read only fields should be grayed out.  not sure how to do
2032         this with the textbox, though.  but the textbox's should also be
2033         readonly now at least.  Also, hide/show the textbox when resizing
2034         the control.
2035         
2036         * CursorConverter.cs: use System.Reflection when getting the
2037         properties of Cursors, as TypeDescriptor.GetProperties isn't
2038         returning static properties.
2039
2040 2006-10-25  Chris Toshok  <toshok@ximian.com>
2041
2042         * PropertyGridView.cs: factor out the up/down handling, and reuse
2043         it for page up/down.  also add End/Home support.
2044
2045 2006-10-25  Chris Toshok  <toshok@ximian.com>
2046
2047         * PropertyGridView.cs:
2048
2049         - ensure the selected grid item is visible in the scrolled area,
2050         fixes bug #79572.
2051
2052         - fix Keys.Down handling when you're on the last item in the
2053         propertygrid.
2054
2055 2006-10-25  Mike Kestner  <mkestner@novell.com>
2056
2057         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2058         clicks too.  Fixes #79725.
2059
2060 2006-10-24  Chris Toshok  <toshok@ximian.com>
2061
2062         * PropertyGrid.cs: use property.Converter instead of
2063         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2064         TypeConverters declared on the property as well as on the
2065         PropertyType.  Fixes bug #79678.
2066
2067 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2068
2069         * MimeIcon.cs, Mime.cs:
2070           Fallback to the default platform handler if no shared mime info
2071           stuff exists (fixes #79693).
2072
2073 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2074         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2075         from previous fix (duh).
2076
2077 2006-10-20  Chris Toshok  <toshok@ximian.com>
2078
2079         * PropertyGridView.cs: the dropdown should be MIN(number of items
2080         in list, 15).  Fixes #79551.
2081
2082 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2083         Fixes #79384, #79394, #79652, #79667
2084         * Application.cs: 
2085         
2086         - Modal windows are now destroyed in the proper order for windows
2087         
2088         * ContainerControl.cs:
2089         
2090         - ActiveControl setter has more conditions on when to return:
2091                 - if we're reselecting the active control, but it actually
2092                 didn't have focus (window hidden or some such), it runs
2093                 - if the active control being selected doesn't actually 
2094                 exist in the container, it returns
2095         
2096         * Form.cs
2097         
2098         - The ShowDialog now gets the current form as the owner when
2099         invoking without parameters, and correctly activates the owner 
2100         when returning
2101         
2102         * MessageBox.cs
2103         
2104         - MessageBox now catches the Escape key to exit
2105
2106 2006-10-20  Chris Toshok  <toshok@ximian.com>
2107
2108         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2109         most of bug #79676):
2110
2111         - you can navigate around the property grid with the arrow keys.
2112
2113         - the dropdown is sized properly when the pg has a vertical
2114         scrollbar.
2115
2116         - fix the indentation for subentries, and properly select the
2117         entire label rect.
2118
2119         - fix the gray bar's drawing (only draw it to the last element,
2120         not for the height of the control.  Also make sure we draw that
2121         last horizontal grid line.
2122
2123         - use the same mechanism the datagrid uses wrt the editing textbox
2124         when scrolling/resizing/etc.  Namely, we hide it first, do the
2125         operation, then show it again (if it's still visible).
2126         
2127         - aggressively remove a lot of unnecessary refreshes (and also
2128         calls to Invalidate(). call more limited variants, and only redraw
2129         what we need.)
2130         
2131         * PropertyGrid.cs:
2132
2133         - when we're populating the merged collection, fill in the UI
2134         parent with either the passed in item, or the category item we
2135         create.
2136
2137         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2138
2139         * GridItem.cs: drop some fully qualified names.
2140         
2141         * GridEntry.cs: add a "UIParent", which is basically the parent
2142         treenode.
2143
2144         * GridItemCollection.cs: add an IndexOf method.
2145
2146 2006-10-20  Mike Kestner  <mkestner@novell.com>
2147
2148         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2149         a working win32 NC invalidation mechanism, we can't invalidate
2150         menus.  [Fixes #79705]
2151
2152 2006-10-20  Mike Kestner  <mkestner@novell.com>
2153
2154         * ListBox.cs : don't update the VScrollbar if the list is empty,
2155         just hide it.  [Fixes #79692]
2156
2157 2006-10-20  Jackson Harper  <jackson@ximian.com>
2158
2159         * RichTextBox.cs: Handle some special chars better, and don't skip
2160         the entire group when we encounter a special char that we don't
2161         handle correctly.
2162
2163 2006-10-18  Chris Toshok  <toshok@ximian.com>
2164
2165         * PropertyGridView.cs: address a number of issues from bug #79676,
2166         mostly of the cosmetic variety.
2167
2168         - The highlight rectangle for indented items not extends all the
2169         way to the left.
2170
2171         - Indented items aren't indented so much.
2172
2173         - the dropdown is properly sized width-wise if the pg has a
2174         vertical scrollbar.
2175
2176 2006-10-18  Chris Toshok  <toshok@ximian.com>
2177
2178         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2179         systray stuff is rather convoluted to begin with.
2180
2181         systray icons are a single window for some reason (that I haven't
2182         figured out yet), and for them, client_window == whole_window.
2183         Given the way the tests are structured elsewhere to determine
2184         which paints are pending (client vs. nc), that situation will
2185         always yield PAINT, not NCPAINT.  So, if we have a pending
2186         nc_expose and no pending expose, remove the hwnd from the paint
2187         queue, and also set nc_expose_pending to false, to keep us from
2188         blocking further expose's adding the hwnd to the paint queue.
2189
2190         phew.  like i said, a rather convoluted change.  Fixes the
2191         notifyicon repaint issues in bug #79645.
2192
2193 2006-10-18  Chris Toshok  <toshok@ximian.com>
2194
2195         * Form.cs: when getting the backcolor of the form, don't get
2196         base.BackColor, as this allows parents to influence the background
2197         color.  This breaks mdi forms.  Instead, if the background_color
2198         is empty, return the default.
2199
2200 2006-10-18  Chris Toshok  <toshok@ximian.com>
2201
2202         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2203         to being private instead of internal static.
2204
2205         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2206         crap, it wasn't working for more deeply nested controls anyway,
2207         and we already have the is_recreating flag - use that instead.
2208         Before calling DestroyHandle in RecreateHandle, recurse through
2209         the control tree setting it to true.  this returns the recreate
2210         code to much of its original simplicity, while now guaranteeing we
2211         actually recreate everything we're supposed to.  This change gets
2212         fyireporting actually showing mdi children.
2213
2214 2006-10-17  Chris Toshok  <toshok@ximian.com>
2215
2216         * Form.cs: remove some debug spew, and collapse some duplicate
2217         code at the end of SetClientSizeCore.
2218
2219         * XplatUIX11.cs: 
2220         - add some more debug spew here too wrt Destroy handling.
2221         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2222         in Control's handling of WM_DESTROY.
2223         - Remove the handling of zombie window DestroyNotifies from the
2224         event loop - we don't need it.  Now the only DestroyNotifies we
2225         actually handle are ones generated by X.
2226         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2227         match gtk's (functioning) handling of this. This keep metacity
2228         from leaving droppings in the form of wm borders with no window
2229         contents all over the place.
2230
2231         * Control.cs:
2232         - add a bunch of debug spew wrt control recreation.
2233         - fix a bug where we weren't tracking Visible properly on
2234         recreated hwnds.
2235         - fixed the WM_PAINT double buffer handling to support re-entrant
2236         calls (yes, i know it's gross, but it's happening to us).
2237
2238 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2239         * ThemeWin32Classic.cs: changed drawing of selected days
2240         to make them look better.
2241
2242 2006-10-16  Chris Toshok  <toshok@ximian.com>
2243
2244         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2245         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2246
2247         * XplatUIX11.cs: move away from using hwnd.client_dc and
2248         hwnd.non_client_dc and on to a stack of dc's (and in window's
2249         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2250         without puking or not disposing of Graphics objects.
2251
2252         * XplatUIOSX.cs: same.
2253
2254         * XplatUIWin32.cs: same.
2255
2256 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2257
2258         * FileDialog.cs: Don't call on_directory_changed inside
2259           OnSelectedIndexChanged (it changes the SelectedIndex too).
2260           Instead move it to OnSelectionChangeCommitted.
2261
2262 2006-10-13  Chris Toshok  <toshok@ximian.com>
2263
2264         * XplatUIX11.cs: more Destroy work.  the current code does the
2265         following things, in order:
2266
2267         1. Enumerates all handles of all controls at or below the one
2268         being destroyed, in pre-order.  As it is doing this, it marks the
2269         handles as zombie and clears all references to them.
2270         
2271         2. calls XDestroyWindow on the window passed in.
2272
2273         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2274         list.
2275
2276 2006-10-13  Chris Toshok  <toshok@ximian.com>
2277
2278         * XplatUIX11.cs: set hwnd.zombie to true before calling
2279         SendMessage (WM_DESTROY).  this keeps us from marking the new
2280         window a zombie, and also keeps us from calling sendmessage at
2281         all.
2282
2283 2006-10-13  Jackson Harper  <jackson@ximian.com>
2284
2285         * TextControl.cs: Do not show the caret and selection at the same
2286         time.  Reduces ugliness by 35%.
2287
2288 2006-10-13  Chris Toshok  <toshok@ximian.com>
2289
2290         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2291         zombie after we do the recursive call, so we actually do call
2292         SendMessage on the children controls.
2293         (GetMessage): if we find a pending paint event for a zombie hwnd,
2294         remove the hwnd from the paint queue, or else it will always be
2295         there (and we'll effectively loop infinitely)
2296
2297 2006-10-13  Mike Kestner  <mkestner@novell.com>
2298
2299         * MenuItem.cs : add Selected format under keynav too.
2300         Fixes #79528.
2301
2302 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2303
2304         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2305         implementation and that of MS.
2306
2307 2006-10-13  Chris Toshok  <toshok@ximian.com>
2308
2309         * Control.cs (OnInvalidated) only futz with the invalid_region if
2310         the control is double buffered.  this fixes the apparent hang in
2311         the ListView unit tests.  Someone needs to make the
2312         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2313
2314 2006-10-13  Chris Toshok  <toshok@ximian.com>
2315
2316         * PropertyGridView.cs:
2317
2318         - do a little refactoring so that only one place calls
2319         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2320         else call that.  Also make it Refresh, since there are redraw bugs
2321         otherwise (we should take a look at that...)
2322
2323         - do a little more refactoring work to share the body of code
2324         involved with the drop down.  it was duplicated in the code
2325         dealing with the listbox handling and in the code dealing with the
2326         UITypeEditors.
2327
2328         - add a Capture to the dropdown form's control once it's
2329         displayed, and add a MouseDown handler that checks to make sure
2330         the position is inside the control.  If it's not, close the
2331         dropdown.  This fixes #78190.
2332
2333         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2334         if the value is different than the initial value.
2335         
2336 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2337
2338         * Control.cs: see #78650
2339         - Fixed GetNextControl for several cases:
2340                 - Changed FindFlatForward to return 
2341                 correct sibling control when more than one
2342                 control has same TabIndex as the currently 
2343                 focused one.
2344                 - Changed FindFlatBackward to loop children
2345                 from last to first and apply same logic as in
2346                 FindFlatForward
2347                 - Changed FindControlForward to search for
2348                 children when control is not a container
2349                 but has children, or search for siblings if
2350                 control is a container...
2351                 - Changed FindControlBackward   to continue
2352                 searching for child controls when hitting 
2353                 Panel-like parents
2354                 
2355         - Fixed Focus method to update ActiveControl
2356         (FocusTest.FocusSetsActive failure)
2357         
2358         * TabControl.cs:
2359         - Focus rectangle now refreshes when gaining
2360         or losing focus
2361         - Removed grab for Tab key on IsInputKey that 
2362         was keeping tab navigation from working (#78650)
2363
2364 2006-10-13  Chris Toshok  <toshok@ximian.com>
2365
2366         * PropertyGridView.cs:
2367         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2368         SelectedObjects.
2369
2370         - Deal with GridItem.Value == null a few places.
2371
2372         * PropertyGrid.cs: 
2373         - replace the PopulateGridItemCollection with a pair of methods
2374         which compute the intersection of all the properties in the
2375         SelectedObjects array.  Fixes #79615.
2376
2377         - Throw ArgumentException from set_SelectedObjects if there's a
2378         null in the array.
2379
2380         - Add GetTarget method which can be used to traverse up the
2381         GridItem.Parent chain.  It depends on the assumption that
2382         selected_objects for different GridEntries are always in the same
2383         order (a safe assumption).  Use this method and loop over all the
2384         selected objects in the entry when calling RemoveValueChanged and
2385         AddValueChanged.
2386         
2387         * GridEntry.cs: Make this handle multiple selected objects.
2388         .Value returns null if not all the selected objects share the same
2389         value.
2390
2391 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2392         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2393           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2394           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2395           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2396           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2397         add additional functionality.
2398
2399 2006-10-12  Mike Kestner  <mkestner@novell.com>
2400
2401         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2402         * HelpProvider.cs : new ToolTipWindow ctor sig.
2403         * ToolTip.cs : remove ToolTip param from Window sig since it is
2404         not used.
2405         * ToolBar.cs : add tooltip support.  Fixes #79565.
2406
2407 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2408
2409         * ComboBox.cs: move the events in set_SelectedIndex to 
2410         after the call to HighlightIndex in order to avoid 
2411         possible recursion and subsequent problems with the call
2412         to HighlightIndex and include a range check in 
2413         set_HighlightIndex. Fixes #79588
2414         
2415 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2416
2417         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2418         to ui thread's settings instead of sunday. 
2419         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2420
2421 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2422
2423         * DateTimePicker.cs
2424         * MonthCalendar.cs
2425         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2426         and implement missing functionality (selecting different parts 
2427         of the date and edit them individually with the keyboard).
2428         
2429 2006-10-11  Chris Toshok  <toshok@ximian.com>
2430
2431         * Control.cs (OnInvalidated): fix NRE relating to last change.
2432
2433 2006-10-11  Chris Toshok  <toshok@ximian.com>
2434
2435         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2436         atoms in _NET_WM_STATE here if the window is maximized.  We need
2437         to do this because we're *replacing* the existing _NET_WM_STATE
2438         property, so those atoms will be lost otherwise, and any further
2439         call to GetWindowState will return Normal for a window which is
2440         actually maximized.  Fixes #79338.
2441
2442 2006-10-11  Jackson Harper  <jackson@ximian.com>
2443
2444         * TextControl.cs: Special case for setting selection end to
2445         selection start, we basically kill the anchor.
2446         - some todo comments.
2447
2448 2006-10-11  Chris Toshok  <toshok@ximian.com>
2449
2450         * Control.cs: switch to using an "invalid_region" to track which
2451         parts of the image buffer need updating.  This is more code than
2452         the simple fix from r66532.  That version just attempted to always
2453         fill the entire buffer on redraw, which turns out to be
2454         inefficient when invalidating small rectangles.  This version
2455         simply adds the invalid rectangle to the invalid region.  When we
2456         get any WM_PAINT message we see if it can be filled using the
2457         image buffer, and if it can't (if the paint event's clip rectangle
2458         is visible in the invalid region) we first fill the image buffer.
2459         So, the image buffer is still a cache, we just fill it lazily.
2460
2461         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2462         need it any longer.
2463
2464 2006-10-11  Chris Toshok  <toshok@ximian.com>
2465
2466         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2467         well as size after calling XMoveResizeWindow.  This keeps us from
2468         ignoring future SetWindowPos calls.  Fixes the disappearing
2469         DateTimePicker in the ToolBarDockExample from bug #72499.
2470
2471 2006-10-11  Chris Toshok  <toshok@ximian.com>
2472
2473         * TextBoxBase.cs: reorder things a bit when it comes to
2474         resizing-causing-recalculation.  we were recalculating the
2475         document when our position was changed, which shouldn't happen.
2476         We only care about size changes.  Clear up some more redundant
2477         recalculation calls while I'm at it.  This makes the toolbar dock
2478         example snappy when you're just dragging toolbars around (since it
2479         causes a relayout whenever you move one.)
2480
2481 2006-10-11  Chris Toshok  <toshok@ximian.com>
2482
2483         * ToolBarButton.cs (get_Rectangle): this only returns
2484         Rectangle.Empty if Visible == false, or Parent == null.
2485         Parent.Visible doesn't matter.
2486
2487 2006-10-10  Chris Toshok  <toshok@ximian.com>
2488
2489         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2490         by .net 1.1, so switch to an internal method instead.
2491
2492 2006-10-10  Chris Toshok  <toshok@ximian.com>
2493
2494         * Control.cs (WM_PAINT): when a control is double buffered we draw
2495         initially to the ImageBuffer and then copy from there.  But when a
2496         parent control which has child controls is double buffered, the
2497         initial drawing doesn't encompass the entire ClientRectangle of
2498         the parent control, so we end up with uninitialized bits (this is
2499         easily seen by dragging the top toolbar in
2500         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2501         manually set the ClipRectangle of the paint_event (only the one we
2502         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2503         of the nastiness in bug #72499.
2504
2505         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2506         which we use in Control.cs's WM_PAINT handling.
2507
2508 2006-10-10  Jackson Harper  <jackson@ximian.com>
2509
2510         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2511
2512 2006-10-10  Chris Toshok  <toshok@ximian.com>
2513
2514         * Cursor.cs: Apply a slightly different patch to the one suggested
2515         in #79609.
2516
2517 2006-10-10  Jackson Harper  <jackson@ximian.com>
2518
2519         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
2520         not the parent form.
2521         * TextControl.cs: use difference in old line count vs new count to
2522         calculate how many lines were added, this takes into account soft
2523         line breaks properly.
2524
2525 2006-10-10  Chris Toshok  <toshok@ximian.com>
2526
2527         * LinkLabel.cs: don't call MeasureCharacterRanges against a
2528         rectangle located at 0,0 and the size of the text.  Use
2529         ClientRectangle instead.  This fixes rendering of non-left aligned
2530         link labels.
2531
2532 2006-10-10  Jackson Harper  <jackson@ximian.com>
2533
2534         * TextBoxBase.cs: When we set the selection start position the
2535         caret.
2536         * TextControl.cs: Need to update the caret when we decrement it to
2537         zero.
2538         - Make sure that the selection_visible flag gets reset to false if
2539         the selection isn't visible.  Before this you could get it set to
2540         visible by changing the selection start, then changing the end to
2541         equal the start.
2542
2543 2006-10-09  Jackson Harper  <jackson@ximian.com>
2544
2545         * TreeView.cs: Don't update scrollbars when we aren't visible.
2546         * TreeNodeCollection.cs: Only need to update scrollbars if being
2547         added to an expanded visible node or the root node.
2548
2549 2006-10-09  Chris Toshok  <toshok@ximian.com>
2550
2551         * XplatUIX11.cs (SendMessage): fix NRE.
2552
2553 2006-10-09  Jackson Harper  <jackson@ximian.com>
2554
2555         * TextBoxBase.cs: Implement horizontal autoscrolling.
2556         * TextControl.cs: Add a movement types that allows moving forward
2557         and backwards without wrapping.
2558
2559 2006-10-09  Mike Kestner  <mkestner@novell.com>
2560
2561         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
2562         with focus "expansion" of labels.  Fixes #79532 and then some.
2563         * ThemeWin32Classic.cs : add LineLimit to ListView label format
2564         when wrapping.
2565
2566 2006-10-09  Jackson Harper  <jackson@ximian.com>
2567
2568         * TextBoxBase.cs: Set the default max values to MaxValue since
2569         we use the scrollbar for autoscrolling and the default value is
2570         100.  If we don't do this the caret won't keep up with typing
2571         after about 18 characters.
2572         * TextControl.cs: Make sure the selection is offset by the
2573         viewport x.  This fixes selection when using auto scrolling.
2574
2575 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
2576         
2577         * Form.cs: The active control should be selected after the 
2578         OnLoad so that any child control initialization that affects
2579         the selection is done. Fixes #79406
2580
2581 2006-10-06  Chris Toshok  <toshok@ximian.com>
2582
2583         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
2584         to have no evil effects.
2585
2586         - Stop selecting StructureNotifyMask on non-toplevel windows.
2587
2588           The only way children should be resized is by using the SWF api,
2589           and we already send WM_WINDOWPOSCHANGED messages in those cases.
2590           Toplevel windows can be interacted with via the window manager,
2591           and so we keep the input mask there.
2592
2593           The other event StructureNotifyMask gives us (that we care
2594           about) is DestroyNotify.  The code is already structured such
2595           that it assumes we won't be getting a DestroyNotify event for
2596           the window we pass to XDestroyWindow (which is what
2597           StructureNotifyMask is supposed to guarantee.)  So, that code
2598           shouldn't be affected by this either.
2599
2600         - Stop selecting VisibilityChangeMask altogether.
2601
2602           We weren't doing anything with the resulting events anyway.
2603         
2604         This vastly reduces the number of X requests and events we see
2605         when resizing/laying out a large ui.
2606
2607 2006-10-06  Chris Toshok  <toshok@ximian.com>
2608
2609         * ScrollableControl.cs (DisplayRectangle): we need to take into
2610         account the DockPadding regardless of whether or not auto_scroll
2611         == true.  rework this slightly to this effect, and fix bug #79606,
2612         and part of #72499 (you can now see the drag handles and drag
2613         toolbars around).
2614
2615 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
2616
2617         * ListViewItem.cs: Collections of selected and checked items are now
2618         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
2619         we mark the collection "dirty".
2620         * ListView.cs: Marked collections readonly. Modified UpdateSelection
2621         to only clear SelectedItems when a new item is selected and MultiSelect
2622         is enabled. CheckedItems and SelectedItems now subscribe to Changed
2623         event of ListViewItemCollection, and mark its list dirty whenever
2624         that event is fire. This allows us to return selected/checked items 
2625         in the same order as they are in the Items collection. This matches
2626         the MS behavior.
2627
2628 2006-10-06  Chris Toshok  <toshok@ximian.com>
2629
2630         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
2631         right mouse clicks.  Fixes bug #79593.
2632
2633 2006-10-06  Chris Toshok  <toshok@ximian.com>
2634
2635         * Splitter.cs: doh, fix splitters that don't want to cancel the
2636         movement when you drag them.  Also, impose the limits on the
2637         values we send to the SplitterMovingEvent.  Fixes #79598.
2638
2639 2006-10-06  Jackson Harper  <jackson@ximian.com>
2640
2641         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
2642         since we use this for auto scrolling also.
2643
2644 2006-10-05  Chris Toshok  <toshok@ximian.com>
2645
2646         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
2647         beginning to think that most datagrid column types don't need this
2648         method.  Fixes bug #79392.
2649
2650 2006-10-05  Chris Toshok  <toshok@ximian.com>
2651
2652         * DataGrid.cs: move back to a more lazy scheme for creating the
2653         CurrencyManager, so we aren't updating it every time you set
2654         either DataSource or DataMember.  Also, don't call
2655         RecreateDataGridRows if the currency manager hasn't changed.
2656
2657 2006-10-05  Chris Toshok  <toshok@ximian.com>
2658
2659         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
2660         emitted, SelectedIndex should already be updated.  Fixes bug
2661         #78929.
2662
2663 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
2664
2665         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
2666           ToolStripTextBox.cs: Initial commit.
2667         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
2668
2669 2006-10-05  Jackson Harper  <jackson@ximian.com>
2670
2671         * TabControl.cs: We need to invalidate the tab control area when
2672         new ones are added (duh).
2673
2674 2006-10-03  Chris Toshok  <toshok@ximian.com>
2675
2676         * Form.cs (ProcessDialogKey): if the focused control is in this
2677         form and is a button, call its PerformClick method here.  Fixes
2678         #79534.
2679
2680 2006-10-04  Jackson Harper  <jackson@ximian.com>
2681
2682         * TabPage.cs: Ignore setting of Visible, and add an internal
2683         method for setting the controls visibility.  TabPage's Visible
2684         property is a little strange on MS, this seems to make us
2685         compatible, and fixes cases where people set all the tab pages to
2686         visible.
2687         * TabControl.cs: Use the new internal setting on tab pages
2688         visibility.
2689
2690 2006-10-03  Mike Kestner  <mkestner@novell.com>
2691
2692         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
2693
2694 2006-10-03  Mike Kestner  <mkestner@novell.com>
2695
2696         * ListView.cs : use is_visible instead of Visible to check if 
2697         scrollbars should be placed/sized.  Also some max_wrap_width
2698         love for LargeIcon view.  [Fixes #79533]
2699
2700 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
2701
2702         * TextControl.cs :
2703           Make set_TextAlign() do actually update the align. Fixed #78403.
2704
2705 2006-10-03  Chris Toshok  <toshok@ximian.com>
2706
2707         * DataGrid.cs: fix a crash when switching datasources if the
2708         vertical scrollbar is at someplace other than Value = 0.  Also,
2709         reduce the number of recalculation passes we do in SetDataSource
2710         from 2 to 1.
2711
2712 2006-10-03  Jackson Harper  <jackson@ximian.com>
2713
2714         * TextBoxBase.cs: Move the if value the same bail check up, we
2715         don't want to empty the document if it is already empty, this
2716         seems to severly mess up the caret.  TODO: I should probably fix
2717         the empty statement to update teh caret somehow.
2718
2719 2006-10-03  Chris Toshok  <toshok@ximian.com>
2720
2721         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
2722         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
2723         reflection, an internal row type, properties on said type, etc.)
2724         will work with our datagrid.  Fixes #79531.
2725
2726 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2727
2728         * FileDialog.cs: Don't crash if a path is not accessible
2729           (System.UnauthorizedAccessException). Fixes #79569.
2730         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
2731           a ':' too. Return unknown icon for those paths/files.
2732
2733 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
2734
2735         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
2736         GetContainerControl returns null.
2737
2738 2006-10-02  Chris Toshok  <toshok@ximian.com>
2739
2740         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
2741         call to XGetWindowAttributes instead of "handle".  fixes an X
2742         error using notifyicon after the NotifyIconWindow to Form base
2743         class switch.
2744
2745 2006-10-02  Chris Toshok  <toshok@ximian.com>
2746
2747         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
2748         server grab and looping we need to do to get down to the most
2749         deeply nested child window.
2750         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
2751         QueryPointer again after the WarpPointer so we can generate a
2752         proper (fake) MotionNotify event to be enqueued in the destination
2753         window's queue.
2754         (GetCursorPos): call QueryPointer.
2755
2756         Fixes #79556.
2757
2758 2006-10-02  Jackson Harper  <jackson@ximian.com>
2759
2760         * NotifyIcon.cs: Derive the notify icon from a form, so things
2761         like FindForm work on it.
2762         - Swallow the WM_CONTEXTMENU message, since that is generated on
2763         mouse down, and context menu is a mouse up kinda guy.  I believe
2764         the correct fix here is probably to make the notify icon entirely
2765         NC area, but this seems to work fine for anyone not manipulating
2766         WndProc.
2767
2768 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
2769
2770         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
2771           ToolStripItemCollection.cs, ToolStripLabel.cs,
2772           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
2773           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
2774           Initial implementation.
2775         * TextRenderer.cs: Provide padding to MeasureText.
2776
2777 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
2778
2779         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
2780         of ButtonBaseAccessibleObject. Fix bug #79552.
2781
2782 2006-10-02  Jackson Harper  <jackson@ximian.com>
2783
2784         * MdiWindowManager.cs: When maximizing use the containers client
2785         rect, not it's bounds, so nc area is accounted correctly.
2786         - Use the parent form's size for the menu position, since the
2787         client isn't always the full form size.
2788
2789 2006-10-01  Chris Toshok  <toshok@ximian.com>
2790
2791         * ScrollableControl.cs: make sure neither right_edge or
2792         bottom_edge are < 0, since they're used as LargeChange for the
2793         horiz/vert scrollbars respectively.  Fixes #79539.
2794
2795 2006-10-01  Chris Toshok  <toshok@ximian.com>
2796
2797         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
2798         the xplatuix11 code can cause us to destroy/recreate our handle.
2799
2800         * XplatUIX11.cs
2801         (SystrayAdd):
2802         - this code can be invoked many times for the same Hwnd.  Make
2803           sure we only destroy the client window once (the first time this
2804           method is called).  This fixes bug #79544.
2805         - Remove the call to the improperly bound XSync.  why we had two
2806           bindings to this, I will never know, but this call resulted in
2807           events being discarded from the queue(!).
2808         - correct a misunderstanding of _XEMBED_INFO - the second atom is
2809           not our current state but the state we wish to be in.  So, 0 if
2810           we don't want to be mapped.  Change it to 1.
2811         (SystrayRemove): The XEMBED spec makes mention of the fact that
2812         gtk doesn't support the reparent of client windows away from the
2813         embedder.  Looking at gtksocket-x11.c seems to agree with this.
2814         The only avenue we have for removing systray icons is to destroy
2815         them.  We don't want the handle to go away for good, though, so
2816         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
2817         #79545.
2818         
2819 2006-10-01  Chris Toshok  <toshok@ximian.com>
2820
2821         * Form.cs (WndProc): inline the native_enabled variable usage into
2822         the cases in which it's used.  Fixes #79536.
2823
2824 2006-09-29  Mike Kestner  <mkestner@novell.com>
2825
2826         * ListView.cs : toggle the selection state for ctrl clicks in 
2827         multiselect mode. [Fixes #79417]
2828
2829 2006-09-29  Mike Kestner  <mkestner@novell.com>
2830
2831         * ListView.cs : kill CanMultiSelect and refactor the selection
2832         code to support multiselection in the absence of mod keys. Steal
2833         arrow/home/end keys by overriding InternalPreProcessMessage to
2834         restore regressed keynav behavior.
2835         [Fixes #79416]
2836
2837 2006-09-29  Jackson Harper  <jackson@ximian.com>
2838
2839         * MdiClient.cs: Repaint the titlebars when the active window is
2840         changed.
2841
2842 2006-09-29  Chris Toshok  <toshok@ximian.com>
2843
2844         * Application.cs: when entering a runloop with a modal, make sure
2845         the hwnd is enabled.  Fixes #79480.
2846
2847 2006-09-29  Chris Toshok  <toshok@ximian.com>
2848
2849         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
2850         when ListManager.CanAddRows == false, bump us back one.
2851
2852         * DataGridColumnStyle.cs (ParentReadOnly): remove the
2853         listmanager.CanAddRows check.  This makes ArrayLists uneditable
2854         using a datagrid, which is not right.
2855         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
2856         is an IEditable, but call property_descriptor.SetValue regardless.
2857         fixes #79435.
2858
2859 2006-09-29  Chris Toshok  <toshok@ximian.com>
2860
2861         * DataGridBoolColumn.cs: we need to test equality in the face of
2862         possible null values (as is the case with the default NullValue).
2863         This patch keeps us from crashing in that case.
2864
2865 2006-09-29  Jackson Harper  <jackson@ximian.com>
2866
2867         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
2868         here, since it will get called for every node collection in the
2869         tree. This is now done in the treeview once the sorting is
2870         finished.
2871         * TreeView.cs: Recalculate the visible order, and update the
2872         scrollbars after sorting, set the top nope to the root so that the
2873         recalc actually works.
2874
2875 2006-09-29  Chris Toshok  <toshok@ximian.com>
2876
2877         * LinkLabel.cs: more handling of the default link collection in
2878         the face of LinkArea manipulation.  The default link collection
2879         contains 1 element (start=0,length=-1).  If the user sets LinkArea
2880         to anything and the links collection is the default, clear it.
2881         Then only add the link if its nonempty.  Fixes #79518.
2882
2883 2006-09-29  Chris Toshok  <toshok@ximian.com>
2884
2885         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
2886         piece correctly when we hit a '\n'.  Fixes #79517.
2887
2888 2006-09-29  Chris Toshok  <toshok@ximian.com>
2889
2890         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
2891         change the binding of gdk_init_check to take two IntPtr's, and
2892         pass IntPtr.Zero for both of them.  Fixes #79520.
2893
2894 2006-09-29  Mike Kestner  <mkestner@novell.com>
2895
2896         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
2897         [Fixes #78779]
2898
2899 2006-09-28  Jackson Harper  <jackson@ximian.com>
2900
2901         * XplatUIX11.cs: When translating NC messages make sure we go from
2902         whole window to screen, not client window to screen.
2903         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
2904         method doesn't exist
2905         - Skip over controls that aren't forms when arranging.
2906
2907 2006-09-28  Jackson Harper  <jackson@ximian.com>
2908
2909         * XplatUIWin32.cs: Clip the rect to the parent window.
2910         * XplatUIStructs.cs: Add clipping modes struct.
2911         * InternalWindowManager.cs: New private method that factors title
2912         bar heights in when calculating the pos of an NC mouse message.
2913         - Use SendMessage to force a paint when the form's size is changed
2914         instead of painting the decorations immediately.
2915         - Don't let the NC button click messages get to DefWndProc,
2916         because they will attempt to handle windowing themself, and this
2917         messes up z-order (it will put them in front of the scrollbars).
2918         * XplatUIX11.cs: Make sure that we don't reset window managers if
2919         we already have one (ie the window is an MDI window).
2920
2921 2006-09-28  Chris Toshok  <toshok@ximian.com>
2922
2923         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
2924         menu code really needs going over.
2925
2926 2006-09-27  Chris Toshok  <toshok@ximian.com>
2927
2928         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
2929         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
2930         window is maximizable.  So, we need to make sure that even if we
2931         clear the border/wm frame of those functions, they're still
2932         available (basically, we remove the decoration without removing
2933         the function).  Half the fix for #79338.
2934
2935 2006-09-27  Chris Toshok  <toshok@ximian.com>
2936
2937         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
2938         Fixes bug #79515.
2939
2940 2006-09-27  Chris Toshok  <toshok@ximian.com>
2941
2942         * Splitter.cs: reorder things a bit so that we don't actually
2943         draw/move the splitter until after calling OnSplitterMoving.  This
2944         lets users cancel/disallow the movement by explicitly setting
2945         event.SplitX/SplitY.  Fixes #79372.
2946
2947 2006-09-27  Jackson Harper  <jackson@ximian.com>
2948
2949         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
2950         because it is most likely on a window being destroyed, and that
2951         will give us an X11 error.
2952
2953 2006-09-27  Chris Toshok  <toshok@ximian.com>
2954
2955         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
2956         the dropdown button now toggles between showing and hiding the
2957         dropdown.  Also, get rid of dropdown_form_showing and just use
2958         dropdown_form.Visible.  We still don't do a grab, but I'll leave
2959         that part to someone who has handled Capture-fu before.
2960
2961 2006-09-27  Chris Toshok  <toshok@ximian.com>
2962
2963         * DataGrid.cs: return false if alt isn't pressed when '0' is
2964         pressed.  this keeps the '0' key from being swallowed, and fixes
2965         bug #79350.
2966
2967 2006-09-27  Chris Toshok  <toshok@ximian.com>
2968
2969         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
2970         Calling Refresh (in response to a scrollbar event) screws up the
2971         scrollbar painting.  Fixes bug #78923.
2972
2973 2006-09-27  Chris Toshok  <toshok@ximian.com>
2974
2975         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
2976         then insert into hashtable" blocks threadsafe.
2977
2978 2006-09-27  Chris Toshok  <toshok@ximian.com>
2979
2980         * MessageBox.cs (CreateParams): the styles should be |'ed with our
2981         baseclass's, since otherwise the
2982         ControlBox/MinimizeBox/MaximizeBox assignments above have no
2983         effect.  This gets the close button back in messageboxes.
2984
2985 2006-09-27  Chris Toshok  <toshok@ximian.com>
2986
2987         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
2988         flag, not just != 0.  this makes flags that are actually multiple
2989         bits (like WS_CAPTION) work.  fixes bug #79508.
2990
2991 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
2992
2993         * PageSetupDialog.cs: add support for getting and settings the 
2994         paper size, source and orientation.
2995
2996 2006-09-26  Chris Toshok  <toshok@ximian.com>
2997
2998         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
2999         and caption == "", we need to remove the resize handles as well as
3000         the title bar.
3001
3002         * Control.cs (set_Text): turns out that setting Text on a form
3003         should change the WM styles on the window, since if ControlBox ==
3004         false, the only way to get a window border is to have a non-""
3005         Text property.  check winforms/forms/text.cs for an example.  so,
3006         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3007         update both window styles and title.  This fixes a lot of dialogs
3008         (including the preferences dialog in MonoCalendar.)
3009
3010 2006-09-26  Chris Toshok  <toshok@ximian.com>
3011
3012         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3013         control isn't a Form), call Win32ShowWindow to hide the window,
3014         but don't update the control Visible property.  When we reparent
3015         back to a parent control, call SetVisible in order for the
3016         window's visibility to be reinstated.
3017
3018         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3019         the FosterParent.
3020
3021         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3022         call for good, since it breaks MonoCalendar (and other things I'm
3023         sure.) Also, set all_controls to null *after* the owner calls,
3024         which end up regenerating it.
3025         (ChangeParent): allow new_parent to be == null, passing
3026         IntPtr.Zero down to XplatUI.
3027
3028         this fixes #79294 the right way.
3029
3030 2006-09-26  Mike Kestner  <mkestner@novell.com>
3031
3032         * GridEntry.cs : internal SetParent method.
3033         * PropertyGrid.cs : attach to property changed on the proper
3034         target if we have a hierarchical grid with subobjects. Setup
3035         GridItem.Parent for hierarchical items.
3036         * PropertyGridView.cs : Set value on the correct target for
3037         hierarchical grids. [Fixes #78903]
3038
3039 2006-09-26  Chris Toshok  <toshok@ximian.com>
3040
3041         * Control.cs (ChildNeedsRecreating): this should return true if
3042         either we're being recreated and the child is in our list, or our
3043         parent is waiting for our recreation.
3044
3045 2006-09-26  Chris Toshok  <toshok@ximian.com>
3046
3047         * Control.cs (ControlCollection.Remove): reinstate the
3048         value.Hide() call as suggested in bug #79294.
3049
3050 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3051
3052         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3053         coordinates (versus a relative move).
3054
3055 2006-09-26  Chris Toshok  <toshok@ximian.com>
3056
3057         * Control.cs: rework child recreation a little bit.  It turns out
3058         that we race between the DestroyNotify the WM_DESTROY message.  If
3059         the parent gets its DestroyNotify before the child gets the
3060         WM_DESTROY message, the child ends up not recreating (since the
3061         parent finishes its recreation on DestroyNotify, and the child
3062         checks ParentIsRecreating.)
3063
3064         So, instead we store off a list of all the child controls which
3065         need to be recreated when the parent control starts to recreate
3066         itself.  Then, when child controls get their WM_DESTROY message we
3067         check to see if they're in the parent's pending recreation list,
3068         and if so, we recreate.  This removes all dependency on ordering
3069         from the code and fixes the initial MonoCalendar upgrade dialog.
3070         
3071 2006-09-26  Jackson Harper  <jackson@ximian.com>
3072
3073         * TextControl.cs: Use the Line to get the length of the line,
3074         since soft line breaks can change the end line.
3075
3076 2006-09-26  Chris Toshok  <toshok@ximian.com>
3077
3078         * Control.cs (ControlCollection.AddImplicit): don't add the
3079         control again if it's already in one of our lists.  This keeps us
3080         from adding controls over and over again for comboboxes when their
3081         handle gets recreated (as the combobox adds implicit controls in
3082         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3083
3084 2006-09-26  Jackson Harper  <jackson@ximian.com>
3085
3086         * TextControl.cs: When deleting characters make sure that any
3087         orphaned zero lengthed tags get deleted.
3088         - Fix ToString for zero lengthed tags.
3089
3090 2006-09-25  Jackson Harper  <jackson@ximian.com>
3091
3092         * TextControl.cs: When getting a tag at the location there can be
3093         multiple tags at the same spot, these are 0-lengthed tags that
3094         appear when extra formatting has been stuck in a location.  We
3095         need to pull out the last of these 0 lengthed tags.
3096
3097 2006-09-25  Jackson Harper  <jackson@ximian.com>
3098
3099         * TextControl.cs: Fix print out in debug method.
3100         * TextBoxBase.cs: When text is set bail if we are setting to the
3101         previous value.
3102         
3103 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3104
3105         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3106           It is now possible to change the selected index in a FontXXXListBox
3107           with the up and down arrow keys from the FontXXXTextBoxes.
3108           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3109           FontXXXListBoxes to match ms.
3110
3111 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3112
3113         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3114         anyone can dispose it, anytime. All other properties returns enums, 
3115         structs or basic types so they don't need such tricks.
3116
3117 2006-09-22  Jackson Harper  <jackson@ximian.com>
3118
3119         * XplatUI.cs:
3120         * XplatUIWin32.cs:
3121         * Clipboard.cs:
3122         * DataFormats.cs:
3123         * XplatUIOSX.cs:
3124         * XplatUIDriver.cs: Update interface to add a primary selection
3125         flag, so the driver can use the primary selection buffer if
3126         needed.
3127         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3128
3129         * RichTextBox.cs: We need to supply the data object to paste now
3130         (so we can choose to supply CLIPBOARD or PRIMARY).
3131         * TextBoxBase.cs: Supply data object to paste (see above).
3132         - Middle click uses the primary selection data object.
3133         
3134 2006-09-21  Chris Toshok  <toshok@ximian.com>
3135
3136         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3137         of SetWMStyles.  It's still a rat's nest and is largely
3138         order-dependent which I dislike immensely.  This also fixes the X
3139         button disappearing from toplevel forms.
3140
3141 2006-09-21  Mike Kestner <mkestner@novell.com>
3142
3143         * ListBox.cs: move Jordi's click/dblclick raising code to the
3144         mouse up handler.
3145
3146 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3147
3148         * ListBox.cs: Fixes 79450
3149
3150 2006-09-21  Mike Kestner <mkestner@novell.com>
3151
3152         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3153         to deal with people updating the TreeNodeCollection after the tree
3154         is disposed.  "Fixes" 79330.
3155
3156 2006-09-20  Jackson Harper <jackson@ximian.com>
3157
3158         * TextControl.cs: Push the cursor record onto the undo stack
3159         before the delete action. This fixes 78651.
3160
3161 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3162
3163         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3164         CreateParams. Fixes 79329.
3165
3166 2006-09-19  Chris Toshok  <toshok@ximian.com>
3167
3168         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3169         things up a bit.  First, get rid of the NetAtoms array (and the NA
3170         enum), and just embed the atoms as static fields.  Also, add a
3171         couple of functions (StyleSet and ExStyleSet) to clean up all the
3172         bitmask testing of styles.
3173
3174         * X11Structs.cs: remove the NA enum, not needed anymore.
3175         
3176 2006-09-19  Chris Toshok  <toshok@ximian.com>
3177
3178         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3179         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3180         added cleanup to get MessageBox titles appearing again, which were
3181         broken by my earlier fix for caption-less/ControlBox-less windows.
3182
3183 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3184
3185         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3186           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3187           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3188           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3189           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3190           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3191           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3192           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3193           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3194           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3195           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3196             Inital import.
3197         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3198           ToolStripButton.cs: Stubs needed for above.
3199         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3200
3201 2006-09-15  Chris Toshok  <toshok@ximian.com>
3202
3203         * XplatUIX11.cs:
3204         - make the MessageQueues hashtable Synchronized.
3205         
3206         - SendMessage: if the Hwnd is owned by a different thread, use the
3207         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3208         thread.  Fixes bug #79201.
3209
3210 2006-09-15  Chris Toshok  <toshok@ximian.com>
3211
3212         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3213         ControlBox == false, we disallow maximize/minimize/close.  If the
3214         form Caption is "" we also disallow move (and get rid of the Title
3215         decoration).  Unfortunately, regardless of how things are set,
3216         we're stuck with the Title and WM menu.
3217
3218 2006-09-15  Chris Toshok  <toshok@ximian.com>
3219
3220         * Application.cs: add locking around the static message_filters
3221         ArrayList, part of #79196.
3222
3223 2006-09-15  Chris Toshok  <toshok@ximian.com>
3224
3225         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3226         Form.ControlBox == false, the window has no titlebar nor resize
3227         handles.  fixes bug #79368.
3228
3229 2006-09-15  Chris Toshok  <toshok@ximian.com>
3230
3231         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3232         >= 0.  Fixes bug #79370.
3233
3234 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3235         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3236         * Control.cs:
3237             Add properties: LayoutEngine, Margin, DefaultMargin.
3238             Add method: GetPreferredSize.
3239             Move layout logic from PerformLayout to layout engines. 
3240
3241 2006-09-13  Chris Toshok  <toshok@ximian.com>
3242
3243         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3244         fix for #79326 broke #78718, so this change addresses that.
3245
3246         - in SendWMDestroyMessages remove the call to
3247         CleanupCachedWindows, since we might be recreating the control and
3248         need to maintain the references to right Hwnd handles.  Also, set
3249         the zombie flag to true for each of the children in the hierarchy
3250         instead of calling hwnd.Dispose.  This will cause GetMessage to
3251         ignore all events for the window except for DestroyNotify.
3252
3253         - In GetMessage, ignore messages except for DestroyNotify for
3254         zombie hwnds.
3255         
3256         * Control.cs: revert the is_recreating fix from the last
3257         ChangeLog.  It's definitely "right", but it breaks switching from
3258         an MDI form to a non-MDI form.  Will need to revisit that.
3259
3260         * Hwnd.cs: add a zombie flag, which means "the
3261         client_window/whole_window handles are invalid, but we're waiting
3262         for the DestroyNotify event to come in for them".  Set the flag to
3263         false explicitly if setting WholeWindow/ClientWindow, and also
3264         when Disposing.
3265         
3266 2006-09-13  Chris Toshok  <toshok@ximian.com>
3267
3268         * XplatUIX11.cs: rework window destruction slightly.
3269
3270         - when destroying the windows associated with a control, we don't
3271         need 2 separate XDestroyWindow calls.  Just the one for the
3272         whole_window (or for client_window if whole_window is somehow
3273         IntPtr.Zero -- can this happen?) is enough.
3274
3275         - reworked SendWMDestroyMessages slightly, so we always dispose
3276         the child control hwnd's after sending the messages.
3277         
3278         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3279         the two places it was used (one was even using hwnd.Handle and the
3280         other hwnd.client_window.  ugh), adding another call in
3281         SendWMDestroyMessages.  We need this new call because now the
3282         DestroyNotify events in the queue will be ignored for the child
3283         controls (as their hwnd's were disposed, and the window id's
3284         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3285
3286         - this fixes bug #79326.
3287
3288 2006-09-13  Chris Toshok  <toshok@ximian.com>
3289
3290         * Control.cs: don't always set is_recreating to false at the end
3291         of RecreateHandle, since sometimes we're not done (and won't be
3292         until WndProc handles the WM_DESTROY message).  Also, set
3293         is_recreating to false in the WM_DESTROY handling code.  Part of
3294         the fix for bug #79326.
3295
3296 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3297
3298         * X11DesktopColors.cs: Start the droppage of debugging messages.
3299
3300         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3301
3302 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3303
3304         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3305
3306 2006-09-12  Chris Toshok  <toshok@ximian.com>
3307
3308         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3309         to create it using SetDataSource.  Fixes bug #79151.
3310
3311 2006-09-11  Chris Toshok  <toshok@ximian.com>
3312
3313         * XEventQueue.cs: add a DispatchIdle property.
3314
3315         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3316         either the queue is null, or the queue has DispatchIdle set to
3317         true.
3318         (DoEvents): set queue.DispatchIdle to false around the
3319         peek/translate/dispatch message loop in this method.  This keeps
3320         Application.Doevents from emitting idle events.  Part of the fix
3321         for #78823.
3322
3323 2006-09-11  Chris Toshok  <toshok@ximian.com>
3324
3325         * DataGrid.cs (set_DataSource): make this work for both the
3326         winforms/datagrid test and ReportBuilder.  It seems as though when
3327         we've created a ListManager (or maybe it's if we have a
3328         BindingContext?), when we set the DataSource it clears the
3329         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3330         #79333.
3331
3332 2006-09-11  Chris Toshok  <toshok@ximian.com>
3333
3334         * XplatUIX11.cs: deal with queue being null, which happens in all
3335         the Clipboard functions.  Fixes one of the two problems mentioned
3336         in #78612.
3337
3338 2006-09-11  Chris Toshok  <toshok@ximian.com>
3339
3340         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3341         button on various spots (including outside the menu) works closer
3342         to MS, and doesn't crash.  Fixes #79343.
3343
3344 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3345
3346         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3347         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3348         and the internal comparer is set. When a new ListViewItemSorter is set,
3349         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3350         was specified. No further processing is necessary if SortOrder is set
3351         to it's current value. If Sorting is modified to None, and View is
3352         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3353         (either custom or our internal ItemComparer) to null, on 1.0 profile
3354         only set item_sorter to null if its our internal IComparer. If Sorting
3355         is modified to Ascending or Descending, then use our internal IComparer
3356         if none is set, and if the current IComparer is our internal one then:
3357         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3358         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3359         Enum.IsDefined to verify whether a valid View value is specified in
3360         its setter. Automatically sort listview items when listview is
3361         created. In Sort, do nothing if ListView is not yet created, or if
3362         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3363         to None or ListViewItemSorter was set to null). Added Sort overload
3364         taking a bool to indicate whether the ListView should be redrawn when
3365         items are sorted (we use this in ListViewItemCollection to avoid double
3366         redraws). Modified our internal IComparer to take the sort order into
3367         account. In Add and AddRange methods of ListViewItemCollection, also
3368         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3369         view), but use overload with noredraw option to avoid double redraw.
3370         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3371         true when View is Tile, and do the same when attempting to set View to
3372         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3373         for selected/checked indices, as it involves overhead when sorting is
3374         done while these collections are not used all that often. Instead
3375         we'll build the indices on demand. Modified IList implementation of
3376         CheckedIndexCollection to use public methods if object is int.
3377         Modified CheckedListViewItemCollection to hide checked items if
3378         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3379         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3380         IList implementation in SelectedIndexCollection to use public methods
3381         if object is int. Modified SelectedListViewItemCollection to hide
3382         selected items if listview is not yet created.
3383         * ListViewItem.cs: CheckedIndices list no longer needs to be
3384         maintained separately (see ListView changes). Also clone font, fixes
3385         test failure.
3386
3387 2006-09-11  Mike Kestner  <mkestner@novell.com>
3388
3389         * ComboBox.cs: if we are updating the contents of the currently
3390         selected index, refresh the control or the textbox selection.
3391         [Fixes #79066]
3392
3393 2006-09-11  Mike Kestner  <mkestner@novell.com>
3394
3395         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3396         the 'specified' logic has been moved there.  This seems like a bug 
3397         in Control.cs, since our current SetBoundsCore completely ignores 
3398         the specified parameter.  Peter's commit seems to indicate that is 
3399         the way the MS control implementation works.  [Fixes #79325]
3400
3401 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3402
3403         * XplatUI.cs: Set default_class_name to be composed
3404         of current domain id. This allows MWF to be loaded in multiple
3405         domains on Win32.
3406
3407 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3408
3409         * X11Keyboard.cs: If we are unable to obtain the input method, do
3410         not call CreateXic to create the input context.   Should fix
3411         #78944/79276.
3412
3413 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3414
3415         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3416           Simplified gnome support by adding more pinvokes to get the
3417           icon for a file or mime type.
3418
3419 2006-09-08  Jackson Harper  <jackson@ximian.com>
3420
3421         * MenuAPI.cs: Deslect popup context menu items before closing the
3422         window, so that you don't see the previously selected item
3423         selected when you reopen the menu.
3424         * TextControl.cs: Update the cursor position even if we don't have
3425         focus.  This fixes typing in things like the ComboBox.  I'm not
3426         totally sure we should always set the visibility if we don't have
3427         focus, but couldn't find any corner cases where the cursor showed
3428         up when it shouldn't.
3429
3430 2006-09-08  Chris Toshok  <toshok@ximian.com>
3431
3432         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3433         our arrays are length 256.  & 0xff before indexing.  Fixes the
3434         crash in bug #78077.
3435         
3436 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3437
3438         * ThemeWin32Classic.cs: 
3439         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3440         is true. Handle that check box too.
3441
3442 2006-09-07  Chris Toshok  <toshok@ximian.com>
3443
3444         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3445         79244.
3446
3447 2006-09-07  Chris Toshok  <toshok@ximian.com>
3448
3449         * Control.cs: in set_BackColor only do the work if
3450         background_color != value.
3451
3452         * XplatUIX11.cs: move the clearing of invalid areas (both client
3453         and nc) to the same block of code where we set (nc_)expose_pending
3454         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3455         so things that cause invalidates from within OnPaint will trigger
3456         another call to OnPaint.  Fixes bug #79262.
3457
3458 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3459
3460         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3461         * FileDialog.cs: Fix typo
3462
3463 2006-09-07  Jackson Harper  <jackson@ximian.com>
3464
3465         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3466         for tab pages if they have any.
3467
3468 2006-09-06  Mike Kestner  <mkestner@novell.com>
3469
3470         * Splitter.cs: use the "current" rect when finishing drag handle
3471         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3472
3473 2006-09-06  Mike Kestner  <mkestner@novell.com>
3474
3475         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
3476         support offset splitters. [Fixes #79298]
3477
3478 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
3479
3480         * Mime.cs: Fixed a bug that could override the global mime type
3481           result.
3482
3483 2006-09-05  Jackson Harper  <jackson@ximian.com>
3484
3485         * TabControl.cs: Better calculation method for setting the slider
3486         pos. Prevents crashes on really wide tabs.
3487         - Draw Image on tab pages if an image list is used.
3488
3489 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3490
3491         * MonthCalendar.cs: When Font changes, the Size should be
3492         updated to fit the new font's space requirements.
3493
3494 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3495
3496         * ListBox.cs: If the items are cleared with Items.Clear set
3497           top_index to 0.
3498
3499 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3500
3501         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3502         fire DateChanged event instead of DateSelected event when
3503         the date was changed by keyboard interaction.
3504
3505 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3506
3507         * DateTimePicker.cs: Handle DateChanged for the associated
3508         month_calendar control, and set month_calendar.Font from 
3509         OnFontChanged method, as well as resize the height of the
3510         control when needed. Make PreferredHeight proportional.
3511
3512 2006-09-01  Chris Toshok  <toshok@ximian.com>
3513
3514         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
3515         properties.
3516
3517         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
3518
3519 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
3520
3521         * FileDialog.cs: Set ClientSize instead of window size, to allow space
3522           for decorations (Fixes #79219)
3523
3524 2006-09-01  Mike Kestner  <mkestner@novell.com>
3525
3526         * ComboBox.cs: first stab at sorting plus some selection handling
3527         fixes to bring us more in line with MS behavior.  Also switches back
3528         to index based selection.  Alternative patches for index-based 
3529         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
3530         and latency@gmx.de on bug 78848.  I assume they were similar to this
3531         code I've had simmering in my tree forever.
3532         [Fixes #78848]
3533
3534 2006-09-01  Chris Toshok  <toshok@ximian.com>
3535
3536         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
3537         when setting list position guard against ending up with a -1 index
3538         (the other part of the fix for #78812).  Should probably make sure
3539         we don't need the analogous fix in the ItemDeleted case.
3540
3541         * DataGrid.cs:
3542         - in SetDataSource, work around the fact that the way
3543         OnBindingContextChanged is invoked will cause us to re-enter this
3544         method.  I'll remove the hack once I investigate
3545         OnBindingContextChanged.
3546
3547         - fix the logic in set_DataSource and set_DataMember (basically
3548         what to do if the other of the two is null.)
3549         
3550         - in OnListManagerItemChanged, we need to take into account the
3551         edit row when deciding whether or not to call RecreateDataGridRows
3552         (part of the fix for #78812).
3553
3554 2006-09-01  Jackson Harper  <jackson@ximian.com>
3555
3556         * Splitter.cs: Don't do anything if there is no control to affect
3557         (prevents us from crashing in weird tet cases).
3558         * TreeView.cs: Bounding box for the mouse movement reverting
3559         focus/selection back to previously selected node.  This matches
3560         MS, and makes the tree a lot more useable.
3561         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
3562         use clipping so they are not drawn.  This fixes when the control
3563         is set to have a transparent background, or if it was over an
3564         image.
3565
3566 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
3567
3568         * MimeIcon.cs: Improved handling for reading default icons when
3569           using gnome (2.16 made it necessary). Check and read svg icons
3570           first, then 48x48 and then 32x32 icons.
3571
3572 2006-08-31  Chris Toshok  <toshok@ximian.com>
3573
3574         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
3575         visible.
3576
3577         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
3578         ProcessKeyPreview.  Fixes part of #77806.
3579
3580         * DataGrid.cs: big patch.
3581
3582         - revert the queueing up of DataSource/DataMember if inside
3583         BeginInit/EndInit calls.  That's not the way the datagrid achieves
3584         its delayed databinding.  Instead, call SetDataSource in
3585         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
3586         #78811.
3587
3588         - Also, it wasn't mentioned in #78811, but the test case exhibits
3589         behavior that was lacking in our datagrid implementation - Columns
3590         that have mapping names that don't exist in the datasource's
3591         properties aren't shown.  Yuck.  To fix this I added the bound
3592         field to the column style, and basically any calculation to figure
3593         out anything about columns uses a loop to find the bound columns.
3594         still need to investigate if I can cache an array of the bound
3595         columns or if the indices must be the same.
3596
3597         - When setting CurrentCell, we no longer abort if the cell being
3598         edited was in the add row.  This fixes the other part of #77806.
3599
3600         - The new code also fixes #78807.
3601         
3602         * ThemeWin32Classic.cs: perpetrate the same disgusting
3603         column.bound field hack, and only render bound fields.
3604
3605 2006-08-31  Chris Toshok  <toshok@ximian.com>
3606
3607         * DataGridColumnStyle.cs: add bound field.  this field is true if
3608         the datasource has a property corresponding to the mapping name.
3609
3610         * DataGridTableStyle.cs: set the bound field on the column styles
3611         depending on whether or not we have a column for that property.
3612
3613 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
3614
3615         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
3616           splitter control (fixes #79228)
3617
3618 2006-08-31  Chris Toshok  <toshok@ximian.com>
3619
3620         * DataGridColumnStyle.cs: we need to delay the assignment of
3621         property descriptor until the last possible moment due to the lazy
3622         databinding stuff in the datagrid.  Also, fix the exceptions
3623         thrown by CheckValidDataSource to match MS.
3624
3625 2006-08-31  Jackson Harper  <jackson@ximian.com>
3626
3627         * Form.cs: When activated select the active control, if there is
3628         no active control, we select the first control.
3629         * XplatUIX11.cs: If there is no focus control when we get a
3630         FocusIn event, find the toplevel form and activate it.  This
3631         occurs when you popup a window, it becomes the focus window, then
3632         you close that window, giving focus back to the main window.
3633
3634 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3635
3636         * MonthCalendar.cs: 
3637         * ThemeWin32Classic.cs: Cache Font in bold style, as well
3638         as StringFormat with Center alignments in MonthCalendar,
3639         instead of creating new ones when drawing the control. 
3640         Also, draw the month name in bold style.
3641
3642 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
3643
3644         * Control.cs:
3645           - PerformLayout(): It would seem MS performs the fill even if the 
3646             control is not visible (part of #79218 fix)
3647           - ResetBackColor(): Use the setter to reset the color, to allow
3648             overriders to catch the change.
3649         * Form.cs:
3650           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
3651           - CreateHandle(): dito (part of $79218 fix)
3652           - Don't set an icon if we have a dialog
3653         * ScrollableControl.cs:
3654           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
3655           - ScrollIntoView(): No need to scroll if control is already visible
3656             (resolves fixme and fixes #79218)
3657
3658 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3659
3660         * MonthCalendar.cs: Change proportions in SingleMonthSize
3661         to match the aspect of the original control.
3662
3663 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
3664
3665         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
3666           get updated when they get maximized.
3667
3668 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
3669
3670         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
3671
3672 2006-08-29  Chris Toshok  <toshok@ximian.com>
3673
3674         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
3675
3676 2006-08-29  Jackson Harper  <jackson@ximian.com>
3677
3678         * TreeView.cs: Need to track selected node and highlighted node,
3679         they aren't always the same thing, when the mouse is down on a
3680         node it is hilighted, but not selected yet.
3681         - Do the HideSelection stuff right
3682         - Need to focus on rbutton mouse down. And redraw selection when
3683         right click is mouse upped.
3684
3685 2006-08-29  Mike Kestner  <mkestner@novell.com>
3686
3687         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
3688         when SubItems.Count < Columns.Count.  [Fixes #79167]
3689
3690 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
3691
3692         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
3693
3694 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
3695
3696         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
3697           from X. Only send based on ConfigureNotify if we don't have the
3698           correct location in hwnd (if the window manager moved us)
3699
3700 2006-08-28  Mike Kestner  <mkestner@novell.com>
3701
3702         * ListView.cs: remove a TODO. 
3703         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
3704         [Fixes ListView part of #79166]
3705
3706 2006-08-28  Mike Kestner  <mkestner@novell.com>
3707
3708         * ListView.cs: move wheel handler to parent since it is focused
3709         instead of the item_control now.  [Fixes #79177]
3710
3711 2006-08-28  Mike Kestner  <mkestner@novell.com>
3712
3713         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
3714         when the control is focused. [Fixes #79171]
3715
3716 2006-08-28  Mike Kestner  <mkestner@novell.com>
3717
3718         * ListView.cs: size the item and header controls for empty and
3719         unscrollable views.
3720         * ThemeWin32Classic.cs: draw disabled backgrounds.
3721         [Fixes #79187]
3722
3723 2006-08-28  Chris Toshok  <toshok@ximian.com>
3724
3725         * Form.cs: remove unused "active_form" static field.
3726
3727         * Hwnd.cs: lock around accesses to static windows collection.
3728
3729         * Application.cs: lock threads in Exit ().
3730
3731 2006-08-28  Chris Toshok  <toshok@ximian.com>
3732
3733         * NativeWindow.cs: lock around accesses to window_collection.
3734         
3735 2006-08-28  Chris Toshok  <toshok@ximian.com>
3736
3737         * Control.cs: err, fix this the right way, by locking on controls
3738         when using it.  not by making it synchronized.
3739
3740 2006-08-28  Chris Toshok  <toshok@ximian.com>
3741
3742         * Control.cs: make the static "controls" field synchronized, as it
3743         gets updated from multiple threads.
3744
3745 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3746
3747         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
3748           Prevent other threads from exiting when calling thread sets quit state.
3749         * XEventQueue.cs: Added PostQuitState property
3750
3751 2006-08-27  Chris Toshok  <toshok@ximian.com>
3752
3753         * AsyncMethodData.cs: add a slot for the window handle.
3754
3755         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
3756         window (the destination control's window, not the foster window).
3757
3758         * Control.cs (BeginInvokeInternal): store the window's handle in
3759         the AsyncMethodData.
3760         
3761
3762 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3763
3764         * XplatUIX11.cs:
3765           - PostQuitMessage: Removed resetting S.D display handle, we might have
3766             another loop started after calling PostQuitMessage (Fixes #79119)
3767           - Created destructor to reset S.D handle
3768
3769 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
3770
3771         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
3772
3773 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3774
3775         * TextControl.cs (Insert): Update the caret position even if we don't
3776           have a handle yet, just don't call the driver in that case.
3777         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
3778           to the end of the new selection text (Fixes #79184)
3779
3780 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3781
3782         * Form.cs (Activate): Only activate if the handle is created)
3783         * Control.c:
3784           - Mark window as invisible when it's disposed
3785           - Check if window handle is created when setting window visible, 
3786             instead of relying just on the is_created variable
3787           - Check if object is disposed when creating the control (Fixes #79155)
3788
3789 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3790
3791         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
3792           when allowing layout again. Otherwise we re-generate the anchoring 
3793           distance to the border again and actually alter what the user wanted
3794           This is ugly, it'd be better if we used DisplayRectangle instead of
3795           ClientRectangle for Control.UpdateDistances, but that causes us to
3796           have other problems (initial anchoring positons would be wrong)
3797           (Fixes #78835)
3798
3799 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3800
3801         * Control.cs:
3802           - The size and location setters shouldn't go directly to 
3803             SetBoundsCore, but to SetBounds, which triggers layout on the
3804             parent, then calls SetBoundsCore. (Related to fix for #78835)
3805           - SetBounds: Moved actual location update code into this function
3806             from SetBoundsCore, to match MS. Added call to PerformLayout if
3807             we have a parent (to trigger resizing of anchored parents if the 
3808             child size has changed (see testcase for #78835) 
3809         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
3810           new control code
3811         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
3812
3813 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3814
3815         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
3816           System.Drawing when a toplevel window gets closed; there might
3817           be other toplevel windows belonging to the same app (Fixes #78052)
3818
3819 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
3820
3821         * FileDialog.cs: After reading FileDialog settings from mwf_config
3822           use Desktop prefix only if a real folder doesn't exist anymore.
3823         * FontDialog.cs: Added char sets.
3824           It is now possible to select the font, size or style with the
3825           textboxes.
3826
3827 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
3828
3829         * PrintPreviewDialog.cs: Use assembly name constants.
3830
3831 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3832
3833         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
3834           scrollbar from whacking it's buttons)
3835
3836 2006-08-24  Chris Toshok  <toshok@ximian.com>
3837
3838         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
3839         in this patch (aggregating setting Left/Top/Width/Height to
3840         setting Bounds on the scrollbars), but the crux of the fix is in
3841         Recalculate, where we scroll by the remaining scroll_position if
3842         we're hiding a scrollbar.  The 2*$5 reward in the comment is
3843         serious.
3844
3845 2006-08-24  Jackson Harper  <jackson@ximian.com>
3846
3847         * MdiClient.cs:
3848         * MdiWindowManager.cs: If the form is made a non-mdi window we
3849         need to remove the form closed event so that closing forms works
3850         correctly.
3851
3852 2006-08-24  Jackson Harper  <jackson@ximian.com>
3853
3854         * Control.cs: Make IsRecreating internal so that the driver can
3855         check it
3856         - Temporarily remove the Hide when controls are removed, its
3857         making a whole bunch of things not work because visibility isn't
3858         getting reset elsewhere correctly
3859         * Form.cs: Need to do a full handle recreation when the mdi parent
3860         is set.
3861         * XplatUIX11.cs: If we are recreating handles don't dispose the
3862         HWNDs.  What was happening is the handles were being recreated in
3863         SendWMDestroyMessages, but then flow continued on in that method
3864         and destroyed the new handles.
3865
3866 2006-08-23  Jackson Harper  <jackson@ximian.com>
3867
3868         * Form.cs: MdiClient is always at the back of the bus
3869         * Control.cs: When the order of items in the collection is changed
3870         we need to reset the all_controls array
3871         - do the same sorta setup thats done when adding a control when a
3872         control is set on the collection.
3873
3874 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3875
3876         * TextBoxBase.cs (get_Text): Return an empty array if our document
3877           is empty (fixes #79052)
3878
3879 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3880
3881         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
3882           on WM_SYSCHAR messages (fixes #79053)
3883
3884 2006-08-23  Chris Toshok  <toshok@ximian.com>
3885
3886         * DataGrid.cs: fix flickering when scrolling vertically.
3887
3888 2006-08-23  Chris Toshok  <toshok@ximian.com>
3889
3890         * DataGrid.cs (EndEdit): only invalidate the row header when we
3891         need to.
3892
3893 2006-08-23  Chris Toshok  <toshok@ximian.com>
3894
3895         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
3896         methods.  fixes the flicker when scrolling around.
3897
3898 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3899
3900         * FileDialog.cs: Making sure the control is created before we get a 
3901           chance to use it with BeginInvoke (Fixes #79096)
3902
3903 2006-08-23  Chris Toshok  <toshok@ximian.com>
3904
3905         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
3906         width to use when painting the rows.
3907
3908 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3909
3910         * TextBoxBase.cs:
3911           - Throw ArgumentException if a negative value is passed to SelectionLength
3912           - Update the selection end if start is moved. end needs to be always
3913             after start. (Fixes #79095)
3914           - Track selection length; MS keeps the selection length even if start
3915             is changed; reset on all other operations affection selection
3916
3917 2006-08-22  Jackson Harper  <jackson@ximian.com>
3918
3919         * TreeView.cs: Make sure both scrollbars get displayed and sized
3920         correctly when the other bar is visible.
3921         - Use the original clip rectangle for checking if the area between
3922         the two scrollbars is visible, not the viewport adjusted clipping
3923         rectangle.
3924
3925 2006-08-22  Jackson Harper  <jackson@ximian.com>
3926
3927         * Binding.cs: We don't use IsBinding because it requires the
3928         control to be created, which really shouldn't be necessary just to
3929         set a property on the control.
3930
3931 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3932
3933         * ComboBox.cs: Some CB.ObjectCollection methods must throw
3934         ArgumentNullReferenceException when the argument is null.
3935
3936 2006-08-21  Jackson Harper  <jackson@ximian.com>
3937
3938         * Timer.cs: Track the thread that the timer is started in (NOT
3939         CREATED), this way messages for it will only be triggered on its
3940         queue.
3941         * XEventQueue.cs: Track the timers here, this makes timers per
3942         thread, like MS.
3943         * XplatUIX11.cs: The timers are moved to the XEventQueue.
3944
3945 2006-08-19  Chris Toshok  <toshok@ximian.com>
3946
3947         * XplatUIX11.cs: after further communication with pdb, we get the
3948         best of both worlds.  SetZOrder working for un-Mapped windows, and
3949         no X errors for un-mapped windows.
3950
3951 2006-08-19  Chris Toshok  <toshok@ximian.com>
3952
3953         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
3954         as it was causing pdn toolbars to not have the correct stacking.
3955
3956 2006-08-18  Mike Kestner  <mkestner@novell.com> 
3957
3958         * ListView.cs : guard against negative ClientArea.Width in scrollbar
3959         calculation.  Not sure why control should ever be setting a negative
3960         width though.  Fixes #78931.
3961
3962 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3963
3964         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
3965         null items in ObjectCollection class.
3966         * ListBox.cs.: Likewise.
3967
3968 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
3969
3970         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
3971           as the base method in ThemeWin32Classic should work fine.
3972           Fixed bug #78607.
3973
3974 2006-08-18  Jackson Harper  <jackson@ximian.com>
3975
3976         * Binding.cs: When validating if the value entered doesn't convert
3977         properly reset to the old value.
3978         * RadioButton.cs: Don't fire click when we get focus.
3979
3980 2006-08-18  Jackson Harper  <jackson@ximian.com>
3981
3982         * FileDialog.cs: Paint the selection on the directory combobox the
3983         same way as on MS. 
3984
3985 2006-08-17  Jackson Harper  <jackson@ximian.com>
3986
3987         * ErrorProvider.cs: Don't allow the error control to be selected.
3988         * Control.cs: Don't send the SetFocus messages, the control
3989         activation will do this, and if we do it blindly here validation
3990         does not work.
3991
3992 2006-08-17  Jackson Harper  <jackson@ximian.com>
3993
3994         * Control.cs:
3995         * ContainerControl.cs: Make validation events fire in the correct
3996         order.  TODO: For some reason the first validation event is not
3997         getting fired.
3998
3999 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4000
4001         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4002
4003 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4004
4005         * ComboBox.cs : implement scroll wheel support for popped-down
4006         state. Fixes #78945. 
4007
4008 2006-08-17  Jackson Harper  <jackson@ximian.com>
4009
4010         * TreeView.cs: Specify treeview actions (old patch that didn't get
4011         committed for some reason).
4012         - Don't let the mouse wheel scroll us too far.  Just want to make
4013         the bottom node visible, not scroll it all the ways to the top.
4014
4015 2006-08-17  Jackson Harper  <jackson@ximian.com>
4016
4017         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4018
4019 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4020
4021         * ComboBox.cs : don't do mouseover selection in simple mode.
4022
4023 2006-08-16  Jackson Harper  <jackson@ximian.com>
4024
4025         * Form.cs: Fire the closing events for all the mdi child windows
4026         when a window is closed.  If the cancel args are set to true, the
4027         main window still gets the event fired, but it doesn't not close.
4028         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4029         handler, instead of when the button is clicked, so cancelling the
4030         close works correctly.
4031         * ComboBox.cs: Send the mouse down to the scrollbar.
4032
4033 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4034
4035         * ListBox.cs: When passing 'null' to SelectedItem,
4036         set SelectedIndex to -1, to unselect items. This is the
4037         observed behaviour in .Net.
4038
4039 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4040
4041         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4042           MS flags saying there won't be any. (fixes #78800)
4043         * Control.cs (HandleClick): Made virtual
4044
4045 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4046
4047         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4048           cultures. Fixed bug #78399.
4049
4050 2006-08-16  Jackson Harper  <jackson@ximian.com>
4051
4052         * Form.cs: Use the MdiClients MdiChildren property to access
4053         MdiChildren instead of creating the array from the child controls.
4054         * MdiClient.cs: Maintain a separate array of the mdi children, so
4055         that insertion order is maintained when the Z-order is changed.
4056
4057 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4058
4059         * ListView.cs : add an ItemComparer and default to it for sorting.
4060         Fixes #79076, but sorting needs a complete overhaul to be compat with
4061         MS.
4062
4063 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4064
4065         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4066
4067 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4068
4069         * Hwnd.cs (Mapped): Properly traverse the tree
4070
4071 2006-08-15  Chris Toshok  <toshok@ximian.com>
4072
4073         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4074         pass manager.Current.GetType() to ParseData.  It has to be the
4075         property type.  So, hold off doing the ParseData until we're in
4076         SetPropertyValue where we know the type.  This fixes the crash in
4077         #78821 but the textbox is still empty.
4078
4079 2006-08-15  Chris Toshok  <toshok@ximian.com>
4080
4081         * DataGrid.cs:
4082         - when we're scrolling, only call Edit() again if the
4083         current cell is still unobscured. Fixes bug #78927.
4084         - when handling mousedown on a cell, ensure the cell is visible
4085         before calling Edit.
4086         - remove the properties from DataGridRow, and remove the
4087         DataGridParentRow class altogether.
4088         
4089
4090 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4091
4092         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4093           fire OnTextChanged by ourselves. There's no point calling base,
4094           we don't set the base value anywhere else. Fixes #78773.
4095
4096 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4097
4098         * ListBox.cs: Call CollectionChanged when modifying
4099         an item from Items indexer, to update the actual items
4100         in the list box.
4101
4102 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4103
4104         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4105         to match .Net behaviour.
4106
4107 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4108
4109         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4110
4111 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4112
4113         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4114
4115 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4116
4117         * MessageBox.cs: Prevent potential NRE exception.
4118         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4119
4120 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4121
4122         * MessageBox.cs: Calculate the owner of a messagebox, also make
4123           it topmost. Fixes #78753
4124
4125 2006-08-14  Chris Toshok  <toshok@ximian.com>
4126
4127         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4128         programmatically move windows.  first, set the PPosition hint as
4129         well as the USPosition hint.  Second include some code from pdb
4130         that sets the window type to NORMAL when we set the transient for
4131         hint.  This is because, in the absence of a window type, metacity
4132         thinks any window with TransientFor set is a dialog, and refuses
4133         to let us move it programmatically.  fascists.
4134
4135 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4136
4137         * XplatUIX11.cs: When setting normal hints, take into consideration
4138           an different hints previously set so we don't delete them (fixes #78866)
4139
4140 2006-08-12  Chris Toshok  <toshok@ximian.com>
4141
4142         * ToolBarButton.cs: make Layout return a boolean, if something to
4143         do with the button's layout changed.
4144
4145         * ToolBar.cs:
4146         - add another parameter to Redraw, @force, which all existing
4147           calls set to true.
4148         - make the Layout function return a boolean which is true if the
4149           layout has actually changed.  Redraw now uses this (and @force)
4150           to determine when to invalidate.  At present the only place
4151           where @force can be false is the call from OnResize, when
4152           background_image == null.  So, resizing a toolbar when the
4153           layout doesn't change results in no drawing.
4154
4155 2006-08-12  Chris Toshok  <toshok@ximian.com>
4156
4157         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4158         the VScrollBar and HScrollbar reversed.  oops.
4159
4160         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4161         scrollbars.  we were assigning them twice (once in
4162         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4163         therefore causing two scrollbar resizes (and redraws?) to happen
4164         per grid resize.
4165
4166 2006-08-12  Chris Toshok  <toshok@ximian.com>
4167
4168         * ToolBarButton.cs: redraw the entire button if the theme tells us
4169         to.
4170
4171         * Theme.cs: add ToolBarInvalidateEntireButton.
4172
4173         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4174         buttons, just the border.
4175
4176         * ThemeNice.cs: redraw the entire toolbar button since we need to
4177         draw the highlight image.
4178
4179         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4180         we need to redraw the entire button (not just the border).
4181
4182 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4183
4184         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4185           for vertical bars. Fixes the mismatches shown by #78513
4186
4187 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4188
4189         * FileDialog.cs: If a saved/remembered path doesn't exist
4190           anymore, fall back to "Desktop".
4191
4192 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4193
4194         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4195           parent. It's apparently legal to not have one
4196         * XplatUIX11.cs:
4197           - SetZOrder: Don't try to set Z-Order on an unmapped window
4198           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4199             it unless the coordinates are negative
4200
4201 2006-08-10  Mike Kestner  <mkestner@novell.com>
4202
4203         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4204         when setting to null per msdn docs.  Fixes #78854.
4205
4206 2006-08-10  Chris Toshok  <toshok@ximian.com>
4207
4208         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4209         flickering by setting a clip rectangle on the Graphics when we
4210         need to redraw just a particular menuitem.  Also, rename "OnClick"
4211         to "OnMouseDown" to reflect what it actually is.
4212         
4213         * Form.cs: track the OnMouseDown change.
4214
4215 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4216
4217         * CommonDialog.cs: Properly inherit the CreateParams from the form
4218           and only change what we need. Fixes #78865
4219
4220 2006-08-10  Chris Toshok  <toshok@ximian.com>
4221
4222         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4223         flickering in flat mode (and most of the flickering in general) by
4224         only invalidating the button border (and not the entire rectangle)
4225         when the state changes.  A couple of cases still flicker:
4226         ToggleButtons, and the dropdown arrow case when the user mouse
4227         ups.
4228
4229 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4230
4231         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4232           for german keyboards. Numlock state shouldn't affect the behaviour
4233           of the Del key. Fixes bug #78291.
4234
4235 2006-08-10  Chris Toshok  <toshok@ximian.com>
4236
4237         * ListControl.cs: remove the items.Clear line from BindDataItems,
4238         as this is the first thing done by both subclasses in their
4239         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4240         passed -1, refresh the list.  This gets databinding working when
4241         the datasource is set on the list before the datasource is
4242         populated (as in wf-apps/ReportBuilder.)
4243
4244         * ComboBox.cs: remove the argument to BindDataItems.  This call
4245         should really go away, and be initiated by the ListControl code.
4246
4247         * ListBox.cs: same.
4248
4249 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4250
4251         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4252           if no data is in the document when the control is displayed
4253
4254 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4255
4256         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4257           yes (fixes #78806)
4258         * TextControl.cs: 
4259           - PositionCaret: Allow positioning of caret but don't call methods 
4260             requiring a handle if the window isn't created yet
4261           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4262           - owner_HandleCreated: Don't position the caret, just update it's 
4263             location. User might have already set a different position
4264
4265 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4266
4267         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4268           windows. Screws up the returned coordinates for child windows. 
4269           Fixes #78825. I'm hoping this doesn't break something, since the
4270           code was explicitly put in 8 months ago, but no bug was attached.
4271           Menus still seem to work properly.
4272
4273 2006-08-08  Chris Toshok  <toshok@ximian.com>
4274
4275         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4276         supposed to do - delay data binding until the EndInit call.  Also,
4277         make the table style collection's CollectionChangeAction.Refresh
4278         work properly.
4279
4280         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4281         (with action = Refresh) when a consituent table's MappingName is
4282         changed.
4283
4284 2006-08-08  Chris Toshok  <toshok@ximian.com>
4285
4286         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4287         Invalidate, since changing the text can change the size of the all
4288         toolbar buttons.
4289
4290 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4291
4292         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4293           we don't have it yet
4294
4295 2006-08-08  Chris Toshok  <toshok@ximian.com>
4296
4297         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4298         dialog, as this causes X errors later on, since we actually
4299         destroy the window.  Instead, .Hide() it.
4300
4301 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4302
4303         * ComboBox.cs: Added focus reflection for popup window
4304         * XplatUIX11.cs: 
4305           - Removed transient setting for non-app windows for now, not sure it
4306             was needed
4307           - Fixed logic checking if we have captions when deciding 
4308             override_redirect, WS_CAPTION is two bits and a 0 check was not
4309             sufficient
4310           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4311             complicated
4312         * Form.cs: 
4313           - AddOwnedForm: Don't just add the form to the list, call the property
4314             to ensure the driver is informed about the ownership as well
4315           - CreateHandle: Set the TopMost status in the driver if we have an owner
4316         * XplatUI.cs: Fixed debug statement
4317
4318 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4319         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4320           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4321           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4322           TrackBarRenderer.cs: Make constructor private.
4323         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4324         * ProfessionalColorTable.cs: Make properties virtual.
4325
4326 2006-08-06  Duncan Mak  <duncan@novell.com>
4327
4328         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4329         is not changing.
4330
4331 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4332         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4333           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4334           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4335           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4336           Initial import of new 2.0 classes.
4337
4338 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4339         * Application.cs: Add 2.0 VisualStyles properties.
4340
4341 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4342         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4343           XplatUIX11.cs: Create property to allow access to existing private
4344           variable "themes_enabled"
4345
4346 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4347
4348         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4349         file size, as otherwise our class libraries fail using windows. Fixes
4350         bug #78759.
4351
4352 2006-08-04  Jackson Harper  <jackson@ximian.com>
4353
4354         * Form.cs:
4355         * XplatUIX11.cs: Move the toolwindow window manager creation into
4356         the X11 driver, this way on win32 we can let windows create/handle
4357         the toolwindows.
4358
4359 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4360
4361         * PrintDialog.cs: Remove some redundant checks, add some others,
4362         clean some code, and move the focus to the text boxes when the
4363         values are incorrect.
4364
4365 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4366
4367         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4368
4369 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4370
4371         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4372           handled correctly. Fixes bug #79001.
4373
4374 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4375
4376         * PrintDialog.cs: The "Copies" numeric up down must have
4377         set the Minimum property to 1; only if the value is bigger
4378         than 1, activate "Collate" check box. This is the behaviour of .Net.
4379         Also modify the Document elements only if it is not null.
4380
4381 2006-08-03  Jackson Harper  <jackson@ximian.com>
4382
4383         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4384         length. (We have a larger array then actual node count).
4385                 
4386 2006-08-03  Jackson Harper  <jackson@ximian.com>
4387
4388         * ComboBox.cs: Don't show selection by default.
4389         - The SelectAll isn't needed here, since the focus code should do
4390         that
4391         - DDL style lists to manual selection drawing, so when they
4392         get/lose focus they have to invalidate.
4393
4394 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4395
4396         * TextBoxBase.cs: Don't always show all selections by default.
4397
4398 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4399         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4400           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4401           Fixed various typos.
4402
4403 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4404
4405         * Control.cs: Removing the controls in a ControlCollection with
4406           Clear now hides the controls as expected. Fixes bug #78804. 
4407
4408 2006-08-03  Jackson Harper  <jackson@ximian.com>
4409
4410         * Control.cs: Revert previous focus patch, it breaks reflector.
4411
4412 2006-08-03  Jackson Harper  <jackson@ximian.com>
4413
4414         * ComboBox.cs: Cleanup selection and focus with the combobox.
4415         This also eliminates some duplicated keyboard code, since now
4416         everything is handled by the main class.
4417         - Make list selection work on mouse up instead of down, to match
4418         MS.
4419
4420 2006-08-02  Jackson Harper  <jackson@ximian.com>
4421
4422         * Control.cs: Setting focus needs to go through the whole
4423         selection mechanism.
4424
4425 2006-08-02  Chris Toshok  <toshok@ximian.com>
4426
4427         * PrintPreviewDialog.cs: change MinimumSize to use
4428         base.MinimumSize so it works.
4429
4430 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4431
4432         * TextControl.cs:
4433           - UpdateCaret: Added sanity check in case caret isn't defined yet
4434           - Line.Delete: Now updating selection and caret markers if we're
4435             transfering a node (Properly fixes #78323)
4436           - SetSelectionEnd: Added sanity check
4437         * TextBoxBase.cs: Removed broken attempt to fix #78323
4438
4439 2006-08-01  Chris Toshok  <toshok@ximian.com>
4440
4441         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4442         Close() call is handled in Form, not here.
4443
4444 2006-08-01  Chris Toshok  <toshok@ximian.com>
4445
4446         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4447         layout/rendering.
4448
4449         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4450         for sizes < 100% zoom.  The code now aggressively attempts to keep
4451         from calling document.Print (), and tries not to use the scaling
4452         g.DrawImage whenever possible (it still does if you scale to >
4453         100%, since usually that involves huge images).
4454
4455         * PrintPreviewControl.cs: hook up the close button.
4456
4457 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4458         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4459           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4460           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4461           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4462           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4463           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4464           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4465           Removed [Serializable] for 2.0 Event Handlers.
4466
4467 2006-07-31  Jackson Harper  <jackson@ximian.com>
4468
4469         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4470         * TextControl.cs: Uncomment out the body of this method.
4471
4472 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4473
4474         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
4475           standard cursors.
4476
4477 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4478
4479         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
4480           that embed TextBox and need selections visible even if textbox is not
4481           focused to enforce that behaviour.
4482         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
4483           selection drawing
4484
4485 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4486
4487         * TextControl.cs:
4488           - Added new SetSelectionStart/SetSelectionEnd overloads
4489           - Fixed viewport width assignment to be accurate
4490           - Adjusted alignment line shift calculations to allow cursor on right
4491             aligned lines to be always visible at the right border (like MS)
4492         * TextBoxBase.cs:
4493           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4494           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4495           - CalculateScrollBars: Use ViewPort size instead of window size, to
4496             properly consider space occupied by the border and scrollbars 
4497             (Fixes #78661)
4498           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4499             calculations; no longer leaves artifacts
4500           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4501             calculation bugs (Still missing right/center align calculations)
4502
4503 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4504
4505         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4506           use of both scroll rect and clip rect, as they do the same.
4507
4508 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4509
4510         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4511           in the event handler (fixes #78912)
4512
4513 2006-07-31  Chris Toshok  <toshok@ximian.com>
4514
4515         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
4516         grid.ListManager.Count, since grid.ListManager might be null.
4517         This of course begs the question "why are we drawing rows for a
4518         grid with no list manager (and therefor no rows)?"  Fixes the
4519         crash in bug #78929.
4520
4521 2006-07-31  Chris Toshok  <toshok@ximian.com>
4522
4523         * RelatedPropertyManager.cs: Don't always chain up to the parent
4524         ctor.  instead, call SetDataSource if the parent's position is !=
4525         -1.  Fixes the crash in #78822.
4526
4527 2006-07-31  Chris Toshok  <toshok@ximian.com>
4528
4529         * DataGrid.cs (get_ListManager): use field instead of property
4530         accessors for datasource and datamember.
4531         (RowsCount): make internal again.
4532         (OnMouseDown): end edits before resizing columns/rows.
4533         (OnMouseUp): restart edits after resizing columns/rows.
4534
4535 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
4536
4537         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
4538           This fixes the situation where the last set cursor is displayed
4539           whenever the mouse is over scrollbars.
4540
4541 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4542
4543         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
4544         Document properties, as well as initial values.
4545
4546 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
4547
4548         * XplatUIWin32.cs (SetBorderStyle): Setting both border
4549           and ClientEdge results in a 3-pixel border, which is
4550           wrong.
4551
4552 2006-07-28  Jackson Harper  <jackson@ximian.com>
4553
4554         * TreeNodeCollection.cs: Fix the clear method.
4555         - Fix the Shrink also
4556
4557 2006-07-27  Jackson Harper  <jackson@ximian.com>
4558
4559         * TreeView.cs: Make sure the visible order is computed when we
4560         attempt to size the scrollbars (for trees that mess with the
4561         scrolling when they shouldn't.
4562         - Make sure to give the scrollbars valid values.
4563
4564 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4565
4566         * XplatUIX11.cs: Move motion compression code to where it
4567           has less performance impact
4568
4569 2006-07-26  Jackson Harper  <jackson@ximian.com>
4570
4571         * UpDownBase.cs: When the control is selected make the child
4572         controls non selectable, so that a click on them won't do a
4573         focus/unfocus cycle.
4574         - Don't give focus to the text box when the spinner is selected.
4575         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
4576
4577 2006-07-26  Chris Toshok  <toshok@ximian.com>
4578
4579         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
4580         satisfied with this solution.  If the bitmaps are small, we should
4581         just cache them in the PrintPreviewDialog and draw them here.
4582         Also, the layout is broken for the 2-up and 3-up cases.
4583
4584         * Theme.cs: add PrintPReviewControlPaint.
4585
4586         * PrintPreviewDialog.cs: first pass implementation.
4587
4588         * PrintPreviewControl.cs: first pass implementation.  No
4589         scrollbars yet.
4590
4591         * PrintDialog.cs: only validate fields if that particular portion
4592         of the UI is enabled.  Also, set the document's controller to a
4593         PrintControllerWithStatusDialog wrapping the document's print
4594         controller.
4595
4596         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
4597         bring up a SaveFileDialog (i hope we don't want to match the
4598         behavior of the crappy windows file entry) and set the
4599         PrinterSettings.PrintFileName accordingly.
4600
4601 2006-07-26  Jackson Harper  <jackson@ximian.com>
4602
4603         * ContainerControl.cs: Add a field that disables auto selecting
4604         the next control in a container when the container is activated.
4605         * UpDownBase.cs: Don't select the text box when the up down is
4606         selected.
4607
4608 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4609
4610         * XEventQueue.cs: Added methods for peeking (used for compression
4611           of successive events)
4612         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
4613           mouse move events (fixes #78732)
4614
4615 2006-07-25  Jackson Harper  <jackson@ximian.com>
4616
4617         * UpDownBase.cs: Use an internal class for the textbox so that we
4618         can control focus.  the updown control should always have focus,
4619         if either the text area or the buttons are clicked.
4620         - Send the key messages to the textbox, since it never actually
4621         has focus
4622         - Activate and decativate the textbox caret.
4623
4624 2006-07-24  Jackson Harper  <jackson@ximian.com>
4625
4626         * Control.cs: Use the directed select when selecting a control,
4627         this way the container controls override will get called and the
4628         whole ActiveControl chain will get triggered.  TODO: probably need
4629         to make sure this gets done everywhere instead of the old
4630         Select(Control).
4631         * ContainerControl.cs: Implement the directed Select method to
4632         find and activate the correct child control.    
4633         
4634 2006-07-22  Mike Kestner  <mkestner@novell.com>
4635
4636         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
4637         menu handling code so that clicks without a grab work too.
4638         [Fixes #78914]
4639
4640 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
4641
4642         * FileDialog.cs: Enable the BackButton when dirstack has one element.
4643           Added some small optimizations.
4644
4645 2006-07-21  Matt Hargett  <matt@use.net>
4646
4647         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
4648
4649 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
4650
4651         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
4652           tests pass and match MS in some strange border cases.
4653
4654 2006-07-21  Chris Toshok  <toshok@ximian.com>
4655
4656         * ThemeWin32Classic.cs: handle drawing of the relation links and
4657         parent row buttons.
4658
4659         * Theme.cs: change args to DataGridPaintParentRow.
4660
4661         * DataGrid.cs: Don't use controls for the relation links and
4662         parent buttons, so we have to handle all their interactions in
4663         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
4664         when we're navigating through child tables, so we can reinstate
4665         selection, expanded state, current cell, etc.
4666
4667 2006-07-20  Chris Toshok  <toshok@ximian.com>
4668
4669         * ToolBar.cs: When we redraw a button, for whatever reason,
4670         there's no reason to redraw the entire toolbar.  Also, don't call
4671         Control.Refresh from within Redraw, as it's much heavier than
4672         Invalidate (which is really what we want).
4673
4674 2006-07-20  Chris Toshok  <toshok@ximian.com>
4675
4676         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
4677         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
4678         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
4679         traces from within a debug IBindingList datasource
4680         (in mono/winforms/datagrid) for *days*, I've finally gotten things
4681         to work in a similar fashion.
4682
4683 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4684
4685         * ListBox.cs: Don't call Sort () when setting 
4686         the Sorted property to false (avoid an unnecessary sort).
4687
4688 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4689
4690         * ListControl.cs: DataSource should throw an ArgumentException
4691         instead of a normal exception when the argument is not of the 
4692         correct type.
4693
4694 2006-07-20  Mike Kestner  <mkestner@novell.com>
4695
4696         * Control.cs: add InternalPreProcessMessage to allow us to steal
4697         key events before MWF gets its paws on them.  Adapted from a
4698         suggestion by eno.
4699         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
4700         up/down/left/right navigation. Override the new internal control
4701         method to steal the events since they never make it to WndProc.
4702         * ToolBarButton.cs: don't worry about pushed when setting hilight
4703         since the drawing code prefers pushed to hilight. Invalidate on 
4704         Hilight changes. Fixes #78547 and #78525.
4705
4706 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4707
4708         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
4709           the canvas size. Fixes #78868
4710
4711 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
4712
4713         * Splitter.cs: Track requested split position until first layout
4714           is performed. Fixes #78871
4715
4716 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4717
4718         * Application.cs: Removed code that forces 1.x for the version
4719           number if the version started with 0. Not sure why that code was
4720           there and I couldn't find any bugs that indicated we needed it.
4721           Fixes #78869
4722
4723 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
4724
4725         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
4726           ResetDefaults(), just write some output to the console until it's
4727           implemented. Fixes bug #78907 for now. Eliminated two warnings.
4728
4729 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
4730
4731         * PropertyGridView.cs: set StartPosition of drop down forms
4732         so they appear in correct initial spot.  Fixes #78190.
4733
4734 2006-07-19  Mike Kestner  <mkestner@novell.com>
4735
4736         * ThemeWin32Classic.cs: use parent background color when drawing
4737         flat toolbars.  Restructure the conditionals to make sure non-flat
4738         non-Divider toolbars are filled too.  Fixes #78837.
4739
4740 2006-07-19  Mike Kestner  <mkestner@novell.com>
4741
4742         * ListBox.cs: Sort on collection changes even if the handle
4743         isn't created yet.  Fixes #78813.
4744
4745 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4746
4747         * ListControl.cs: DisplayMember should never be null,
4748         and now we assign String.Empty when null is passed to it (this
4749         is the .Net way).
4750
4751 2006-07-17  Mike Kestner  <mkestner@novell.com>
4752
4753         * ListViewItem.cs: restructure Font and subitem Font handling 
4754         to hold a specific font and refer back to owner on null.
4755         Fixes #78761.
4756
4757 2006-07-17  Mike Kestner  <mkestner@novell.com>
4758
4759         * ToolBar.cs: bandaid for side-effect of previous patch which was
4760         discarding explicit heights for non-AutoSize toolbars.  Need to
4761         extend my format tester to deal with AutoSize=false. Fixes #78864.
4762
4763 2006-07-15  Jackson Harper  <jackson@ximian.com>
4764
4765         * LabelEditTextBox.cs:
4766         * TreeView.cs: Use a new LabelEdit class for node editing, this
4767         class automatically 'closes' itself when it gets the enter key or
4768         loses focus.
4769         - Use the client rectangle when setting the trees scrollbars, so
4770         border style is taken into account.
4771         
4772 2006-07-14  Jackson Harper  <jackson@ximian.com>
4773
4774         * TreeNode.cs:
4775         * TreeView.cs: Make the editing work similar to MSs, firing the
4776         events correctly and ending edits correctly.
4777
4778 2006-07-14  Mike Kestner  <mkestner@novell.com>
4779
4780         * ToolBarButton.cs:
4781         * ToolBar.cs: layout restructuring and redraw enhancements to support
4782         formatting changes gracefully, like setting TextAlign, ImageList, 
4783         ButtonSize, and Appearance.  Handles explicit button sizing quirks
4784         of the MS controls.  Things like flat toolbars ignoring button size
4785         but becoming constant sized at the largest button's size.  Normal
4786         toolbars with an image set cannot be shrunk smaller than the image,
4787         but text can be clipped/ignored.
4788         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
4789         is zero.  Seems like DrawString should be smart enough to not put
4790         anything on screen though. Also trim labels and ellipsize at the char
4791         boundary, not word.
4792         Fixes #78711 and #78483.
4793
4794 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4795
4796         * FolderBrowserDialog.cs: Disable "New Folder" button and
4797           "New Folder" contextmenu menuitem if a folder like "My Computer"
4798           is selected.
4799
4800 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4801
4802         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
4803         * FolderBrowserDialog.cs:
4804           - Use MWFConfig to store and read size and position settings
4805           - Added code to create a new folder (button or context menu).
4806             Use TreeView labeledit to change the name of the new folder.
4807
4808 2006-07-14  Jackson Harper  <jackson@ximian.com>
4809
4810         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
4811         when the tree is scrolled we end editing.
4812
4813 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4814
4815         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
4816           Down arrows
4817
4818 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
4819
4820         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
4821         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
4822         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
4823         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
4824         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
4825         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
4826         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
4827         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
4828         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
4829         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
4830         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
4831         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
4832         ListViewItemSelectionChangedEventHandler.cs,
4833         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
4834         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
4835         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
4836         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
4837         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
4838         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
4839         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
4840         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
4841         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
4842         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
4843         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
4844         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
4845         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
4846         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
4847         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
4848         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
4849         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
4850         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
4851         WebBrowserNavigatingEventHandler.cs, 
4852         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
4853
4854 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
4855
4856         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
4857         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
4858         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
4859         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
4860         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
4861         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
4862         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
4863         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
4864         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
4865         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
4866         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
4867         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
4868         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
4869         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
4870         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
4871         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
4872         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
4873         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
4874         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
4875         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
4876         ListViewItemStates.cs, MaskFormat.cs: Added
4877
4878 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
4879
4880         * PropertyGridView.cs: Fix keyboard navigation of drop down.
4881         Patch from eno for bug 78558.
4882         
4883 2006-07-13  Jackson Harper  <jackson@ximian.com>
4884
4885         * TreeView.cs: When an edit is finished make sure that the
4886         selected node is visible.
4887         - When setting the top/bottom use the scrollbars is_visible, so
4888         everything will be set correctly even if the tree isn't visible
4889         yet.
4890
4891 2006-07-13  Jackson Harper  <jackson@ximian.com>
4892
4893         * ComboBox.cs: Revert the item->index part of my previous patch.
4894         * TreeView.cs: Use LostFocus instead of Leave for detecting when
4895         the edit box has lost focus (duh).
4896         - Just make the edit box not visible when we get return, that will
4897         take the focus, which will call EndEdit
4898         * TreeNode.cs When we start editing, notify the treeview.
4899
4900 2006-07-12  Jackson Harper  <jackson@ximian.com>
4901
4902         * ComboBox.cs: Clear out old items before setting the item list.
4903         This prevents databound controls from having their items added
4904         twice.
4905         - Switch the combobox to use indices whereever possible instead of
4906         using Item's.  This allows usto navigate through lists that have
4907         more then one item with the same string value (ie a, b, b, a).
4908         - Scroll the listboxes scrollbar when a non visible item is
4909         highlighted
4910         - Allow keypress to cycle through all the possible values. For
4911         example if you have b1, b2, b3 and hold down the B key all the
4912         values will be cycled through.
4913         
4914 2006-07-12  Jackson Harper  <jackson@ximian.com>
4915
4916         * TextBoxBase.cs:
4917         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
4918         this using the internal methods.
4919         * Control.cs: Add OnGotFocusInternal.  A new method that allows
4920         controls to "override" OnGotFocus and change focus behavior if
4921         needed.
4922         - Same thing for LostFocus
4923         * ComboBox.cs: Pass off focus to the text control properly.
4924
4925 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
4926
4927         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
4928         * FolderBrowserDialog.cs: Almost a complete rewrite.
4929           - Better support for Environment.Specialfolders
4930           - Added support for MWFVFS
4931           - Made setting SelectedPath work
4932
4933 2006-07-12  Jackson Harper  <jackson@ximian.com>
4934
4935         * Control.cs: Optimze getting all the controls.
4936
4937 2006-07-11  Jackson Harper  <jackson@ximian.com>
4938
4939         * ContainerControl.cs: Override SETFOCUS in the container control,
4940         so that it is not selected on mouse click.
4941
4942 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
4943
4944         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
4945           Hopefully we will have a better way once all of focus is complete.
4946
4947 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
4948
4949         * ThemeWin32Classic.cs: Commented out some debug code and fixed
4950           a compile error with csc.
4951
4952 2006-07-11  Jackson Harper  <jackson@ximian.com>
4953
4954         * Control.cs: When hiding a control only select the next control
4955         if the current control was focused.
4956         - Don't handle enter/leave when setting/killing focus, this is
4957         done by the container control.
4958         - Remove is_selected, it's not needed anymore.
4959         - Add utility methods for selecting a child control, and for
4960         firing the Enter/Leave events.
4961         * ContainerControl.cs: When a control is activated fire the
4962         enter/leave events.
4963         - Don't wrap when processing the tab key, so that focus can be
4964         moved outside of the container.
4965         - Use the correct active control
4966
4967 2006-07-11  Jackson Harper  <jackson@ximian.com>
4968
4969         * ComboBox.cs: Remove some debug code that was blinding me.
4970         * UpDownBase.cs: These controls actually aren't implicit, they are
4971         visible to the user.
4972
4973 2006-07-10  Chris Toshok  <toshok@ximian.com>
4974
4975         * DataGrid.cs: move back to the is_adding boolean field.  god i
4976         hate this is_editing/is_adding/is_changing stuff.
4977
4978 2006-07-10  Chris Toshok  <toshok@ximian.com>
4979
4980         * DataGridTableStyle.cs: just check if the property type is bool.
4981         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
4982         Don't use CanRenderType.
4983
4984         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
4985         if our text == NullText.  Remove CanRenderType.
4986
4987         * DataGridBoolColumn.cs: nuke CanRenderType.
4988
4989         * DataGrid.cs: reenable some code to end the current edit inside
4990         of set_CurrentCell.  This fixes the other 1.1.16 regression.
4991         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
4992         Also, remove the visible_row_count arg from CalcRowHeaders, since
4993         we don't need to worry about the actual height of the area.
4994
4995 2006-07-10  Chris Toshok  <toshok@ximian.com>
4996
4997         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
4998         mode, just return.
4999
5000         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5001         the real sense of the IsInEditOrNavigateMode property (true =
5002         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5003
5004         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5005         column style exists, we still need to set its property descriptor
5006         to match up with our list manager.
5007
5008 2006-07-10  Chris Toshok  <toshok@ximian.com>
5009
5010         * ThemeWin32Classic.cs: implement the new row/header painting
5011         approach.  The parent row painting will likely go away and
5012         replaced with label controls, but the rest seems to work ok (and
5013         efficiently).
5014
5015         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5016         the row headers as a block now.  Instead we draw them in the
5017         normal draw-row loop.  Add some calls for drawing parent rows and
5018         relation rows.
5019
5020         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5021         a default table style.  Set the defaults from ThemeEngine.Current,
5022         not SystemColors.  Fix lots of misc issues with property setters.
5023
5024         * DataGrid.cs: move loads of style information out of this class
5025         as it's being duplicated with DataGridTableStyle.  keep track of a
5026         special DataGridTableStyle for the properties we used to mirror
5027         here.  Switch all the style properties to access this table style
5028         instead of instance fields of this class.  Also add a internal
5029         class to represent parent rows (more needs to be stored here, like
5030         the selection state from the parent table, as well as the
5031         expansion state.)  Also, for datasources with relations, do the
5032         right thing for collapse/expand, and add support for the
5033         navigation/parent row buttons.
5034
5035         Lastly, fix the crash in the 1.1.16 build.
5036
5037         * GridTableStylesCollection.cs: make the explicit interface
5038         implementations call the class's methods as opposed to duplicating
5039         them.
5040
5041         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5042         0 so the text doesn't jump around when we move the cursor.
5043
5044 2006-07-10  Jackson Harper  <jackson@ximian.com>
5045
5046         * TextBoxBase.cs:
5047         * ListBox.cs: Match MS's ToString (this makes debugging focus
5048         stuff infinitely easier).
5049
5050 2006-07-10  Jackson Harper  <jackson@ximian.com>
5051
5052         * Control.cs (SelectNextControl): When checking the control's
5053         parent use this instead of ctrl.parent so that null can be passed
5054         to SelectNextControl. (I have unit tests for this).
5055         - Remove unused var.
5056
5057 2006-07-10  Chris Toshok  <toshok@ximian.com>
5058
5059         * CurrencyManager.cs: correct one regression, the removal of the
5060         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5061         Refresh() correctly, and fix some event emission in
5062         ListChangedHandler.
5063
5064 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5065
5066         * FileDialog.cs: Don't use brackets for new folders if they exist
5067           under *nix. Instead use -(number of existing folders +1).
5068
5069 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5070
5071         * FileDialog.cs:
5072           - Fixed really nasty bug #78771
5073           - Don't block the whole GUI when reading directories with a lot of
5074             entries. Use an other thread instead and call BeginInvoke to
5075             update the ListView in MWFFileView
5076
5077 2006-07-07  Chris Toshok  <toshok@ximian.com>
5078
5079         * Control.cs (Dispose): release any Capture when disposing.
5080
5081 2006-07-07  Chris Toshok  <toshok@ximian.com>
5082
5083         * LinkLabel.cs (Select): if we chain up to the parent, set
5084         focused_index to -1 so we'll search for the first available link
5085         the next time the user tabs into us.  Also, if the direction is
5086         backward and focused_index == -1, start the search from the last
5087         element.
5088
5089 2006-07-07  Chris Toshok  <toshok@ximian.com>
5090
5091         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5092         is beyond the end of the text, don't do anything.
5093         (CreateLinkPieces): set our ControlStyles.Selectable based on
5094         whether or not we have any links.
5095         (Link.Invalidate): use a loop instead of foreach.
5096         (Link.set_Start): null out owner.sorted_links so it'll be
5097         recreated by CreateLinkPieces.
5098
5099 2006-07-06  Chris Toshok  <toshok@ximian.com>
5100
5101         * LinkLabel.cs: revert the SetStyle change.
5102
5103 2006-07-06  Chris Toshok  <toshok@ximian.com>
5104
5105         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5106         (OnEnableChanged): s/Refresh/Invalidate
5107         (OnGotFocus): if we have a focused index already, refocus it (so
5108         if we mouse out/in to the window it'll focus the right link).
5109         (OnKeyDown): move the tab handling out of here.
5110         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5111         when we lose focus.
5112         (OnMouseDown): don't Capture here - Control handles it.  Also,
5113         focus the active link.
5114         (OnMouseUp): don't deal with Capture.
5115         (OnPaintBackgroundInternal): remove.
5116         (OnTextAlignChanged): CreateLinkPieces before calling the
5117         superclass's method.
5118         (OnTextChanged): call CreateLinkPieces before calling superclass's
5119         method.
5120         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5121         move around.
5122         (Select): implement this, moving the selection between different
5123         links, and call parent.SelectNextControl if we don't have another
5124         link to focus in the given direction.
5125         (CreateLinkPieces): call Invalidate instead of Refresh.
5126         
5127 2006-07-06  Chris Toshok  <toshok@ximian.com>
5128
5129         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5130         new LinkLabel internals.
5131
5132         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5133         over pieces looking for active/focused/etc links.  also, deal with
5134         runs of text (and links) with embedded \n's in them, and use
5135         MeasureCharacterRanges instead of MeasureString to figure out the
5136         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5137         two-step.
5138
5139 2006-07-04  Jackson Harper  <jackson@ximian.com>
5140
5141         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5142         XKB or key auto repeat, do it manually.  Without key auto repeat,
5143         when a key is held down we get key press, key release, key press,
5144         key release, ... with auto repeat we get key press, key press, key
5145         press ..., and then a release when the key is actually released.
5146
5147 2006-07-03  Jackson Harper  <jackson@ximian.com>
5148
5149         * TabControl.cs:
5150         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5151         rules, they are always control color regardless of the background
5152         color.
5153
5154 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5155
5156         * FileDialog.cs: Added internal class MWFConfig.
5157           Removed Registry support and replaced it with support for the new
5158           MWFConfig class. See MWFConfig comments for more information.
5159
5160 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5161
5162         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5163           rectangle. Added some patches from eno from bug #78490 and fixed
5164           the arrow position for small up and down CPDrawScrollButtons.
5165
5166 2006-06-30  Jackson Harper  <jackson@ximian.com>
5167
5168         * InternalWindowManager.cs: Remove some debug code.
5169         * Form.cs: When an MdiParent is set to null, the window is
5170         "detatched" and becomes a normal window.
5171         * MdiClient.cs: Don't bring the new child form to the front until
5172         it is activated (setting it as active does this), this makes the
5173         previously active forms titlebar get redrawn as inactive.
5174
5175 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5176
5177         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5178           with later controls
5179
5180 2006-06-29  Mike Kestner  <mkestner@novell.com>
5181
5182         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5183         arrow in keynav state.  Fixes #78682.
5184
5185 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5186
5187         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5188           order (fixes #78393)
5189
5190 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5191
5192         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5193           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5194           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5195           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5196           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5197           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5198           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5199           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5200           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5201           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5202           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5203           values)
5204
5205 2006-06-28  Mike Kestner  <mkestner@novell.com>
5206
5207         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5208
5209 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5210
5211         * PropertyGrid.cs,
5212           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5213           item lines from other area (It also makes BackColor consistent and
5214           compatible with .NET). Fixed bug #78564.
5215
5216 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5217
5218         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5219         Patch from Eno for #78555.
5220
5221 2006-06-27  Chris Toshok  <toshok@ximian.com>
5222
5223         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5224
5225         * DataGridColumnStyle.cs: same.
5226
5227         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5228         
5229         * DataGridDrawingLogic.cs: nuke.
5230
5231 2006-06-27  Chris Toshok  <toshok@ximian.com>
5232
5233         * DataGridTableStyle.cs: clean up the constructors, and build the
5234         list of child relations for this table.  I have no idea if this is
5235         where we should be doing it (it probably isn't), but since we're
5236         already iterating over the properties..
5237
5238         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5239         struct and array for keeping track of row information, similar to
5240         what's shown in a hack on
5241         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5242
5243         * Theme.cs: be consistent about the naming of DataGrid methods,
5244         prefering ColumnWidths and RowHeights over columnsWidths and
5245         RowsHeights.
5246
5247         * ThemeWin32Classic.cs: same, and also add support for variable
5248         sized rows (and the +/- expansion icons for related rows).
5249
5250 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5251
5252         * TextBoxBase.cs: Applied Eno's patch from #78660
5253
5254 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5255
5256         * Form.cs (ScaleCore): We don't want to scale our form if it's
5257           state is minimized or maximized, but we still need to scale our
5258           child windows. Also, added try/finally block to ensure layout
5259           gets reset (Fixes #78697)
5260
5261 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5262
5263         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5264
5265 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5266
5267         * Form.cs: Fixed c+p error and added check to resize form if minimum
5268           size is bigger than current size (Fixes #78709)
5269
5270 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5271
5272         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5273
5274 2006-06-26  Mike Kestner  <mkestner@novell.com>
5275
5276         * ComboBox.cs: only do Keypress handling in the combo when there  
5277         are items in the collection. Fixes #78710.
5278
5279 2006-06-26  Chris Toshok  <toshok@ximian.com>
5280
5281         * Binding.cs: make this work bi-directionally.  also, clear up
5282         other mixups between Push/Pull Data (e.g. we're supposed to pull
5283         data when validating).
5284
5285         * BindingManagerBase.cs: trim some fully qualified collection
5286         types.
5287
5288         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5289
5290 2006-06-23  Chris Toshok  <toshok@ximian.com>
5291
5292         * PropertyManager.cs: It appears (according to the unit tests)
5293         that PropertyManager doesn't use
5294         PropertyDescriptor.AddValueChanged to track propery value changes
5295         in its datasource, but uses the same scheme as Binding, where it
5296         looks for a <Property>Changed event and binds to it.
5297
5298         Also, according to the docs, IsSuspended always returns false for
5299         a property manager with a non-null datasource.
5300
5301 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5302
5303         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5304           need to update the actual DialogResult. (Fixes #78613)
5305
5306 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5307
5308         * Form.cs (ShowDialog): Release any captures before running the
5309           new message pump (fixes #78680)
5310
5311 2006-06-22  Mike Kestner  <mkestner@novell.com>
5312
5313         * ListView.cs: Layout column widths properly in details mode even 
5314         if HeaderStyle.None is set.  Fixes #78691.
5315
5316 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5317
5318         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5319
5320 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5321
5322         * Control.cs (ContainsFocus): Using new driver method to get focused
5323           window, instead of trying to use internal tracking var, which can
5324           recursion issues (Fixes #78685)
5325         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5326           XplatUIWin32.cs: Added GetFocus method to return focused window
5327
5328 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5329
5330         * ColorDialog.cs: when the mouse button is pressed inside the color
5331         matrix, don't let the cursor move out of it until the button is
5332         released, which is the behavior on windows. Changed 'colours' by
5333         'colors' to use the same word consistently.
5334
5335 2006-06-21  Chris Toshok  <toshok@ximian.com>
5336
5337         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5338         child relation and back, using a stack).  Also, remove
5339         GetDataSource and the code that calls it - it's not needed.  Also,
5340         track CurrencyManager.ListName's removal.
5341
5342 2006-06-21  Chris Toshok  <toshok@ximian.com>
5343
5344         * CurrencyManager.cs: push some of the original type checking from
5345         BindingContext.CreateBindingManager to here, and remove some of
5346         the finalType stuff.  Need more tests to make sure I've got the
5347         ListName part right, and we might need more in SetDataSource.
5348
5349         * PropertyManager.cs: add a ctor that takes just the datasource,
5350         and no property name.  Make SetDataSource work with a null
5351         property_name, and make Current return the data_source if the
5352         property descriptor is null.  this makes 'string foo = "hi";
5353         BindingContext[foo].Current' return "hi" as it should.
5354
5355         * RelatedCurrencyManager.cs: make this code more generic - there's
5356         no reason the parent manager has to be CurrencyManager, and
5357         there's no reason to pass the DataRelation.  It suffices to use a
5358         BindingManagerBase and PropetyDescriptor.
5359
5360         * RelatedPropertyManager.cs: make a similar change here.
5361         
5362         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5363         flower I knew it could be.
5364
5365 2006-06-20  Chris Toshok  <toshok@ximian.com>
5366
5367         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5368         data in the source has changed and we need to update the control,
5369         so s/PullData/PushData.
5370
5371         * CurrencyManager.cs: Refresh is meant to update the control from
5372         data in the datasource.  So, s/PullData/PushData.
5373
5374         * BindingContext.cs: add more ugliness (we weren't handling the
5375         case where data_source = DataTable and data_member = column_name).
5376
5377         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5378         from the perspective of the datasource.  PullData pulls from the
5379         control, PushData pushes to the control.
5380
5381 2006-06-20  Chris Toshok  <toshok@ximian.com>
5382
5383         * BindingContext.cs: rewrite the CreateBindingManager code to
5384         handle navigation paths more or less properly.  This could
5385         definitely stand some more work, in particular to push the
5386         recursion up to the toplevel.  But that relies on fixes in other
5387         places (System.Data comes to mind).
5388
5389         Also, move to a flat hashtable (and encode the twolevel nature of
5390         the dictionary into the hash key).  This lets us implement the
5391         IEnumerable.GetEnumerator method.
5392
5393         * RelatedCurrencyManager.cs: new class.  Update our view based on
5394         our relation and our parent CurrencyManager's position.
5395
5396         * CurrencyManager.cs: split out some logic from the ctor into
5397         SetView, so it can be called from the new RelatedCurrencyManager
5398         subclass.
5399
5400         * RelatedPropertyManager.cs: new class.  Update our datasource
5401         based on the position of our parent CurrencyManager.
5402
5403         * PropertyManager.cs: split out some logic from the ctor into
5404         SetDataSource, so it can be called from the new RelatedDataSource
5405         subclass.  Also, make the Current getter return the value
5406         of the PropertyDescriptor, not the data_source.
5407
5408         * Binding.cs: no need to duplicate the string splitting code here.
5409
5410 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5411
5412         * Control.cs:
5413           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5414             of the control is not altered, even though  we might be changing the
5415             internal state of the control (#78458)
5416           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5417             OnEnabledChanged, to allow easy altering of any child window state
5418           - OnEnabledChanged: Added code to enable/disable driver window state
5419           - OnParentEnabledChanged: Instead of firing the event, call 
5420             OnEnabledChanged, which will fire the event and also a) set driver
5421             window state and pass the enabled state to any grandchildren (#78458)
5422
5423 2006-06-19  Jackson Harper  <jackson@ximian.com>
5424
5425         * InternalWindowManager.cs: We don't set the cursor explicitly
5426         thats done via the response to NCHITTESTs.
5427         - Don't need to adjust for titlebar heights anymore, the
5428         coordinates are coming in the correct coordinates now (see peters
5429         last patch).
5430
5431
5432 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5433
5434         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5435           being translated relative to whole window, instead of client window.
5436           That caused broken offsets on mouseclick (and caused gas for our
5437           InternalWindowManager)
5438
5439 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5440
5441         * TextControl.cs:
5442           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5443           - Undo(): Added replay of cursor move on DeleteChars action; added
5444             calling Undo() again if a recorded cursor move is invalid (to
5445             ensure that some action is performed on Undo)
5446         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5447
5448 2006-06-16  Jackson Harper  <jackson@ximian.com>
5449
5450         * MdiClient.cs: Instead of just sizing maximized windows when
5451         there is a resize we also have to adjust the Y of minimized
5452         windows, so they stay pinned to the bottom of the mdi container.
5453         - Eliminate separate tracking of the active control, we can just
5454         get this from the controls collection.
5455         - Paint the decorations for the newly activated titlebar so we get
5456         a pretty blue bar.
5457         * InternalWindowManager.cs:
5458         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5459         even if they are a tool window.
5460         
5461 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5462
5463         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5464           undo buffer, these can happen when text was deleted and the cursor
5465           was recorded first. Since we will also have a recorded cursor
5466           after the delete this is not an issue. (Fixes #78651)
5467
5468 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5469
5470         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5471           instead properly track control states internally (allows us to
5472           remove is_selected from Control)
5473
5474 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5475
5476         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
5477         whose width is not a multiple of 8.
5478
5479 2006-06-13  Jackson Harper  <jackson@ximian.com>
5480
5481         * MdiClient.cs:  Only maximize the next child if the current one
5482         is maximized.
5483
5484 2006-06-13  Chris Toshok  <toshok@ximian.com>
5485
5486         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5487         modified.  Also, guard against grid or grid_drawing being null in
5488         Invalidate.
5489
5490         * DataGrid.cs: Reformat tons of getters/setters.  In the
5491         DataMember setter, just call SetNewDataSource instead of
5492         duplicating some of its functionality.  In SetNewDataSource, don't
5493         check ListManager for null, since the property getter creates the
5494         object if needed.
5495
5496         * DataGridTableStyle.cs: don't set TableStyle or call
5497         SetDataGridInternal on the column here, it's done in
5498         GridColumnStylesCollection.Add.
5499
5500         * GridColumnStylesCollection.cs: fix all the explicit interface
5501         implementations to just call our methods.  Nuke AddInternal() and
5502         move the body of it to Add().  Also, add a call to
5503         column.SetDataGridInternal to Add().
5504
5505         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5506         base()+duplicate code.  Also, use the Format property instead of
5507         format to generate an Invalidate ala MS.  Lastly, create the
5508         textbox here, unconditionally.
5509         (set_Format): call Invalidate.
5510         (get_TextBox): no need to call EnsureTextBox.
5511         (Commit): remove the message box.
5512         (Edit) remove the call to EnsureTextBox.
5513         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
5514         (EnterNullValue): no need to check textbox for null.
5515         (HideEditBox): no need to check textbox for null.
5516         (SetDataGridInColumn): add the textbox to the grid's controls.
5517         (EnsureTextBox): nuke.
5518         
5519 2006-06-13  Jackson Harper  <jackson@ximian.com>
5520
5521         * MdiWindowManager.cs: Hook up to the maximized menus paint event
5522         and redraw the buttons when needed. Unhook when the window is
5523         unmaximized.
5524         * MainMenu.cs: Add an internal Paint event, the mdi window manager
5525         needs this so that it can redraw its buttons when the menu is
5526         repainted.
5527         * InternalWindowManager.cs:
5528         * Form.cs: The method order has changed for DrawMaximizedButtons,
5529         so that it can be a PaintEventHandler.
5530         
5531 2006-06-13  Jackson Harper  <jackson@ximian.com>
5532
5533         * MdiClient.cs: When we close a maximized mdi window, the next mdi
5534         window is activated and maximized, even if it wasn't before.
5535         - When  a new window is activated repaint the decorations of the
5536         old one, so that it no longer has the Active "look" (the blue
5537         titlebar).
5538         * InternalWindowManager.cs: Open up CreateButtons to base classes
5539         so they can recreate the buttons on state changes.
5540         - If a window is maximized give it all three buttons
5541         * MdiWindowManager.cs: Create the titlebar buttons when the state
5542         is changed, this is needed because a toolwindow will not have all
5543         three buttons until it is maximized.
5544
5545 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
5546
5547         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
5548           Fixed bug #78609.
5549
5550 2006-06-12  Jackson Harper  <jackson@ximian.com>
5551
5552         * KeysConverter.cs: Make sure we handle the Ctrl special case
5553         if its the only key.
5554         
5555 2006-06-12  Jackson Harper  <jackson@ximian.com>
5556
5557         * Theme.cs: Add a method to get the size of a managed window
5558         toolbar button.
5559         * InternalWindowManager.cs: Remove the ButtonSize property, this
5560         should be retrieved from the theme.
5561         * MdiWindowManager.cs: Get the button size from the theme
5562         * ThemeWin32Classic.cs: Make the method to get the managed window
5563         titlebar button size public.
5564         - Handle the different button sizes of maximized toolwindows
5565         (should match any maximized window).
5566         - Get the titlebar height from the theme, not the WM (which gets
5567         it from the theme).
5568
5569 2006-06-12  Jackson Harper  <jackson@ximian.com>
5570
5571         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
5572         event down to the mdi window manager.
5573         - Expose some extra stuff to base classes
5574         - Make sure to end the Capture on an NC Mouse up, so that we can
5575         get double clicks properly, and the sizing doens't stick.
5576         - When doing PointToClient contain it in the workable desktop
5577         area, this prevents windows from changing size when the cursor is
5578         pulled outside of the working area while sizing.
5579         * MdiWindowManager.cs: When we get a double click maximize the
5580         window.
5581         - Reset the cursor after handling mode changes.
5582
5583 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
5584
5585         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
5586           current desktop, instead of just assuming a 0, 0 origin. This
5587           is needed for our internal window manager, to know the top
5588           margin of the desktop
5589
5590 2006-06-12  Chris Toshok  <toshok@ximian.com>
5591
5592         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
5593         we need this to get rid of the selected background in the bool
5594         column.
5595         (CancelEditing): move the ConcedeFocus call to above the Abort
5596         call.  Also, set is_changing to false and invalidate the row
5597         header if we were changing before.
5598         (ProcessKeyPreviewInternal): remove, since noone outside this
5599         class calls it anymore.  Roll the code into ProcessKeyPreview.
5600         (EndEdit): remove the internal version.
5601         (InvalidateCurrentRowHeader): make private.
5602
5603         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
5604         Keys.Escape handling (and with it the last call to
5605         DataGrid.EndEdit from outside the class.)
5606
5607
5608 2006-06-12  Chris Toshok  <toshok@ximian.com>
5609
5610         * DataGridTextBox.cs (.ctor): isedit defaults to false.
5611         (OnKeyPress): set isedit to true.
5612         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
5613         already handled by the grid.
5614
5615         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
5616         right.  ugh.
5617         (set_DataSource): SetDataSource always returns true, so stop
5618         putting it in an if statement.
5619         (EndEdit): get rid of some {}'s
5620         (ProcessGridKey): return true in case Keys.Escape.
5621         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
5622         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
5623         PositionChanged, stopped connecting to CurrentChanged.
5624         (GetDataSource): simplify this a bunch.
5625         (SetDataSource): change return type from bool to void.
5626         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
5627         to this, and make sure we don't set ListManager.Position inside
5628         set_CurrentCell.
5629         (OnListManagerItemChanged): if we're passed an actual index,
5630         redraw that row.
5631
5632         * CurrencyManager.cs (set_Position): don't call PullData here.
5633
5634 2006-06-09  Jackson Harper  <jackson@ximian.com>
5635
5636         * TreeNode.cs:  Recalculate the visible order before doing the
5637         Expand/Collapse Below calls, because those calls generate an
5638         expose.
5639         - Reduce calls to the TreeView property, which is mildly expensive
5640         by using a local var.
5641         * Form.cs: Layout the MDI child windows when creating the parent
5642         form.
5643         - Don't use the internal constructor anymore
5644         * MdiClient.cs: use the parent form width/height (if available)
5645         when laying out the child windows, we do this because the
5646         mdiclient isn't docked yet when the initial layout is done.
5647         - Don't need an internal constructor anymore.
5648
5649 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5650
5651         * FileDialog.cs: handle access errors when trying to create a folder
5652         or changing to a directory. No need to initialize out parameters.
5653
5654 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5655
5656         * FileDialog.cs: Append a number when creating a new folder if the
5657           folder already exists (use parenthesis instead of square brackets)
5658
5659 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5660
5661         * FileDialog.cs:
5662           - Disabled registry support for windows and added better registry
5663             error checking for other systems (need to investigate why it
5664             works perfectly on my system)
5665           - If a folder already exist show an error MessageBox instead of
5666             trying to create an indexed name.
5667           - Fixed a non intentional typo.
5668
5669 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5670
5671         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
5672
5673 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5674
5675         * FileDialog.cs: When creating a new folder don't crash if the
5676           folder already exists.
5677
5678 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5679
5680         * FileDialog.cs: Allmost a complete rewrite.
5681           - added a "virtual" file system that handles the differences
5682             between unix and windows file systems (especially the directory
5683             structure). Moved most of the directory and file handling code
5684             into the vfs.
5685             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
5686             UnixFileSystem and FSEntry.
5687           - Recently used folder/directory, size, location and used file names
5688             (file name ComboBox) are now stored in the registry and get read
5689             before the dialog shows up (fixes part 6 of bug #78446).
5690           - Creation of new folders/directories is now possible (context menu
5691             or ToolBar). Added TextEntryDialog for this that fills in the gap
5692             until ListView.LabelEdit works.
5693           - Fixed cursor handling (bug #78527) and focus handling for
5694             PopupButtonPanel
5695           - Various "Search in" ComboBox enhancements. The content of the
5696             dropdown listbox now almost matches ms.
5697           - Changed the behaviour when the user switches to SpecialFolder
5698             Recent to show the ListView in View.Details.
5699           - Beside using the ToolBar to change the View property of the
5700             file ListView it is now possible to use the context menu too.
5701
5702 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5703
5704         * ComboBox.cs: Don't create a new ObjectCollection when an item
5705           gets inserted. Just insert the item in the existing object_items
5706           ArrayList.
5707
5708 2006-06-08  Jackson Harper  <jackson@ximian.com>
5709
5710         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
5711         that the treeview and root node checks are done also, this fixes a
5712         regression i caused in the unit tests.
5713
5714 2006-06-07  Wade Berrier <wberrier@novell.com> 
5715
5716         * RichTextBox.cs: More ISO8859-1 -> unicode
5717
5718 2006-06-07  Mike Kestner  <mkestner@novell.com>
5719
5720         * ComboBox.cs : use items to hold highlight/selection so that
5721         collection insertions don't require synchronization.
5722
5723 2006-06-07  Jackson Harper  <jackson@ximian.com>
5724
5725         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
5726         routine.  We now always keep the sized edge at the cursor instead
5727         of computing movement and adjusting rects.  There is one buglet
5728         with this method though when the cursor is moved over area that
5729         the window can not expand too (such as the toolbars on the desktop).
5730
5731 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5732
5733         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
5734         here. Fixes crash on startup in AlbumSurfer.
5735
5736 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
5737
5738         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
5739           values
5740
5741 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5742
5743         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
5744         statement to avoid calling XNextEvent which will block if another thread
5745         took the event that we were expecting. Fixes bug #78605.
5746
5747 2006-06-07  Mike Kestner  <mkestner@novell.com>
5748
5749         * ListView.cs : isolated checkbox clicking from the selection logic.
5750         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
5751
5752 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5753
5754         * Form.cs: Check that the value passed to Form.DialogResult
5755         is a valid enum value.
5756
5757 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5758
5759         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
5760         Computer'. Clicking it in the network view goes to 'My Computer'.
5761         Added CIFS filesystem type. Display the mount point of filesystems.
5762         Avoid duplicate mount points (happens for me with CIFS);
5763
5764 2006-06-06  Jackson Harper  <jackson@ximian.com>
5765
5766         * InternalWindowManager.cs: Draw the maximized windows buttons
5767         when resizing.
5768
5769 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5770
5771         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
5772         all other dialogs. Fixes bug #78585.
5773
5774 2006-06-06  Mike Kestner  <mkestner@novell.com>
5775
5776         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
5777         Only invalidate checkbox on checkstate changes to avoid flicker.
5778         * ListBox.cs : avoid unselect/select when clicking selected item.
5779         avoid reselection flicker for already multiselected items.
5780         Fixes #78382.
5781
5782 2006-06-06  Jackson Harper  <jackson@ximian.com>
5783
5784         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
5785         the parent form so that the menu is removed if needed.
5786
5787 2006-06-06  Mike Kestner  <mkestner@novell.com>
5788
5789         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
5790         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
5791
5792 2006-06-06  Mike Kestner  <mkestner@novell.com>
5793
5794         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
5795
5796
5797 2006-06-06  Jackson Harper  <jackson@ximian.com>
5798
5799         * Control.cs: Use the property (instead of the field) to get the
5800         default cursor so it is instantiated correctly.
5801         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
5802         resizes so we need to manually repaint the window decorations here.
5803         - Set the titlebar button locations as soon as they are created,
5804         otherwise they are not set correctly on win32.
5805         
5806 2006-06-06  Chris Toshok  <toshok@ximian.com>
5807
5808         * CurrencyManager.cs (set_Position): call PullData before
5809         OnCurrentChanged.
5810         (AddNew): after calling IBindingList.AddNew, update our
5811         listposition, and call OnCurrentChanged/OnPositionChanged (without
5812         calling PullData).
5813         (OnCurrentChanged): remove the call to PullData from here.
5814         (OnItemChanged): remove the call to PushData from here.
5815         (OnPositionChanged): change the test from == null to != null to
5816         match the other methods.
5817         (ListChangedHandler): the grossest part of the patch.  Implement
5818         this such that it passes the unit tests in CurrencyManagerTest and
5819         the output more or less matches that of MS's implementation.
5820  
5821 2006-06-06  Mike Kestner  <mkestner@novell.com>
5822
5823         * ListView.cs : only update check state on single click.
5824         * ThemeWin32Classic.cs : fix focus drawing for details view without
5825         fullrowselect.  Fixes #78454.
5826         * XplatUIX11.cs : fix for double click emission.
5827
5828 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
5829
5830         * PropertyGridView.cs : Applied Atsushi's patch to fix
5831         font dialog bug  (#78197).
5832
5833 2006-06-05  Jackson Harper  <jackson@ximian.com>
5834
5835         * TreeNode.cs: Compute the next node for expanding/collapsing
5836         correctly. We now factor in nodes without a NextNode
5837         correctly. (Fixes somes cases in nunit-gui).
5838         * InternalWindowManager.cs: Set the bounds when updating the
5839         virtual position of a tool window.
5840         
5841 2006-06-05  Chris Toshok  <toshok@ximian.com>
5842
5843         * DataGrid.cs: rename cached_currencymgr to list_manager.
5844         (set_CurrentCell): move SetCurrentCell code here, and clean it up
5845         some.
5846         (CurrentRow, CurrentColumn): single accessors so we can make the
5847         cursor movement code a lot easier to understand.
5848         (CurrentRowIndex): implement this in terms of CurrentRow.
5849         (BeginEdit): clean this up a bit.
5850         (CancelEditing): sort out the is_editing/is_changing/is_adding
5851         stuff a little.
5852         (EndEdit): minor changes.
5853         (OnKeyDown): add a comment about a (most likely) unnecessary
5854         check.
5855         (OnMouseDown): cancel editing when we click on a row header.  And
5856         use the CurrentRow setter, not CurrentCell.
5857         (ProcessDialogKey): directly call ProcessGridKey.
5858         (UpdateSelectionAfterCursorMove): factor out this common block of
5859         code (it's used everywhere that we move the cursor by updating row
5860         or column).
5861         (ProcessGridKey): pretty substantial overhaul.  Use the
5862         CurrentRow/CurrentColumn properties to make the code a lot more
5863         readable.  Only use the CurrentCell property when we have to
5864         modify both row and column at once.  Tab behavior is still broken,
5865         and Delete is untested.
5866         (Select): if we have no selected rows, set selection_start to
5867         @row.
5868         (EditCurrentCell): rename EditCell this.  It was only ever invoked
5869         with CurrentCell as the arg, so drop the arg and rename it.
5870
5871         * DataGridColumnStyle.cs: clean up the constructors a little, and
5872         drop CommonConstructor().
5873
5874         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
5875         actually get notified when the user hits it.
5876         (ProcessKeyMessage): *substantially* simplify this method.
5877         There's no reason (that I can see) for the textbox to be making
5878         calls into the datagrid at all.  Remove all of them but the ones
5879         for Enter handling.  those will take some more work.
5880
5881         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
5882         calling HideEditBox.
5883         (HideEditBox): if we have an active textbox, render it invisible
5884         without causing a re-layout of the datagrid.
5885
5886 2006-06-05  Mike Kestner  <mkestner@novell.com>
5887
5888         * ListView.cs : fix NRE crasher when focuseditem is cleared by
5889         collection changes by resetting it to Items[0].  Fixes #78587.
5890
5891 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5892
5893         * MessageBox.cs: if the height of the text is larger than the icon_size,
5894         use that. Fixes bug #78575.
5895
5896 2006-06-05  Jackson Harper  <jackson@ximian.com>
5897
5898         * TreeView.cs: Fix line drawing when scrolling.  To do this each
5899         node is basically responsible for drawing its entire horizontal
5900         area.  When drawing a node it draws its parent node lines if
5901         needed.
5902         - Adjust the clip area to the viewport rectangle
5903         - Fix Left/Right key handling to match MS. (It expand/collapses
5904         and moves to parents/first child but does not move selection to
5905         sibling nodes).
5906         - Fix SetTop to work with new bound calculation code
5907         - When scrollbars are no longer needed we need to reset scrolling
5908         vars and recalculate the visible order so the redraw is correct
5909         * TreeNode.cs: We can't expand/collapse nodes with no children.
5910
5911 2006-06-03  John Luke  <john.luke@gmail.com> 
5912
5913         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
5914         so the colors work without dev packages
5915         
5916 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
5917
5918         * Control.cs 
5919           - Select: Implemented to just use activate. Seems to match MS 
5920             behaviour closest. Documented to only do actual control walking 
5921             based on it's parameters if in a container control so I moved 
5922             the code there.
5923           - Removed selection check logic from our internal Select() method
5924         * ContainerControl.cs:
5925           - Select: Moved selection logic from Control here, since MS documents
5926             that containers obey the bool arguments. No longer calling base
5927
5928 2006-06-02  Jackson Harper  <jackson@ximian.com>
5929
5930         * TreeView.cs: If the selected node isn't changed when we get
5931         focus update the previously selected node so that we see the
5932         selection box.
5933
5934 2006-06-02  Mike Kestner  <mkestner@novell.com>
5935
5936         * ComboBox.cs: restructure grab and general mouse event handling.
5937         Make the composite control raise mouse events like it was a single
5938         control for leaves/enters/motion/up/down events.  fix dropdown list
5939         coordinate mangling and refactor it into the scrollbar subclass to
5940         reduce code duplication.  Fixes #78282 #78361 and #78457.
5941
5942 2006-06-02  Mike Kestner  <mkestner@novell.com>
5943
5944         * ScrollBar.cs: remove Capture setting/clearing, as it happens
5945         automatically in the Control.WndProc.
5946
5947 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5948
5949         * FileDialog.cs: fix crash when running SharpChess, which sets the
5950         FilterIndex to 2 with only one Filter.
5951
5952 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5953
5954         * ToolBar.cs: add SizeSpecified property.
5955         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
5956         try to figure out our real size, otherwise fallback to what the
5957         container says.
5958
5959 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5960
5961         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
5962         * Control.cs (WndProc): MS always calls the DefWndProc to pass
5963           up the event
5964
5965 2006-06-01  Mike Kestner  <mkestner@novell.com>
5966
5967         * ListView.cs: revamp the focus management in ListView.  It still
5968         causes churn of LostFocus/GotFocus emissions on clicks, but it's
5969         better than not handling focus at all.  Will revisit when pdb feels
5970         the general focus handling is solid.  Fixes #78526.
5971
5972 2006-06-01  Jackson Harper  <jackson@ximian.com>
5973
5974         * TreeView.cs: Set the default border style in the constructor.
5975         - Move painting to use OnPaintInternal instead of capturing
5976         WM_PAINT, this is the correct way of doing things
5977         - UpdateBelow shouldn't invalidate the scrollbar area
5978         - Cap the top on update below in case the node was above the top
5979         of the viewport rectangle.
5980         - ExpandBelow and Collapse below need to obey Begin/End Update.
5981         * TreeNode.cs: Make is_expanded internal so the treenode
5982         collection can change it without firing the whole event chain.
5983         * TreeNodeCollection.cs: When clearing all the child nodes make
5984         sure to recalc the visible order.
5985         - Improve algo for remove the top node
5986
5987 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5988
5989         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
5990           SendMessage directly calling window procedures, which in turn might
5991           call SetFocus()
5992
5993 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
5994
5995         * Control.cs: Don't handle WM_SETFOCUS if the same window already
5996           has focus (works around X11 sending a FocusIn after our SetFocus)
5997         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
5998
5999 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6000
6001         * Mime.cs: Fix for the NET_2_0 build.
6002           NameValueCollection needs StringComparer now.
6003
6004 2006-05-31  Chris Toshok  <toshok@ximian.com>
6005
6006         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6007         return (via an out parameter) the starting X of the column.
6008         (UpdateVisibleColumn): track change to FromPixelToColumn.
6009         (HitTest): add a ColumnResize case here.
6010         (DrawResizeLine): new function, probably poorly named.
6011
6012         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6013         only need to keep one reference.
6014         (set_ListManager): same.
6015         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6016         Also, add support for HitTestType.ColumnResize.
6017         (OnMouseMove): add column resize behavior here, and change the
6018         cursor to the correct one as we move around the datagrid.
6019         (OnMouseUp): terminate the column resize if we're resizing.
6020         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6021         for the current cell.
6022         (ConnectListManagerEvents): use cached_currencymgr.
6023         (DisconnectListManagerEvents): fill this in, using
6024         cached_currencymgr.
6025         (SetCurrentCell): remove cached_currencymgr_events handling.
6026         (SetDataMember): only call DisconnectListManagerEvents if
6027         cached_currencymgr is != null.
6028         (SetDataSource): same.
6029         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6030         cached_currencymgr.
6031
6032 2006-05-31  Jackson Harper  <jackson@ximian.com>
6033
6034         * BindingManagerBase.cs: Remove somedebug code that creeped into
6035         SVN.
6036         * TreeNode.cs: We get the indent level dynamically right now, so
6037         don't track it as a member.
6038         * TreeNodeCollection.cs: Make sure all nodes added to the list
6039         have parents, treeviews/topnodes setup properly.
6040         - Don't attempt to track indent level.
6041
6042 2006-05-30  Jackson Harper  <jackson@ximian.com>
6043
6044         * BindingContext.cs: Create the currency manager tables here.
6045         This allows us to more easily create null tables (when bad data
6046         members are used), and more easily create related currency
6047         managers.
6048         * CurrencyManager.cs: All the table creation stuff is done by the
6049         binding context now.
6050         - Current should throw an exception if listposition is -1.
6051         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6052         been bound yet.
6053
6054 2006-05-30  Mike Kestner  <mkestner@novell.com>
6055
6056         * ListView.cs: allow reexpansion of zero-width column headers.
6057         Fixes #78528.
6058
6059 2006-05-28  Chris Toshok  <toshok@ximian.com>
6060
6061         * CurrencyManager.cs (get_Current): after the late binding
6062         listposition = -1 fix, we need to guard against it here and return
6063         null, otherwise we raise an exception (which is swallowed
6064         elsewhere, and breaks datagrid databinding.)
6065
6066 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6067
6068         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6069           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6070
6071 2006-05-26  Jackson Harper  <jackson@ximian.com>
6072
6073         * ControlPaint.cs:
6074         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6075         values, it's faster and it's all we care about (we don't care if
6076         the names aren't equal).
6077         * KeyboardLayouts.cs: Eliminate some dead code.
6078         - Lazy init things
6079         * X11Keyboard.cs: Lazy init keyboard detection.
6080         - Cleanup access modifiers a little.
6081
6082 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6083
6084         * XplatUIX11.cs: Once again, attempting to get layout just right.
6085
6086 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6087
6088         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6089           the sizes of each link section, that will result in sizes that
6090           match DrawString's layout (Fixes #78391)
6091
6092 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6093
6094         * FileDialog.cs: If AddExtension property is true autocomplete the
6095           extensions in SaveFileDialog correctly. Fixes bug #78453.
6096           Set MyNetwork and MyComputer to "C:\" for windows. This should
6097           fix part 8 of bug #78446 for now.
6098
6099 2006-05-26  Chris Toshok  <toshok@ximian.com>
6100
6101         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6102         invalidate the current row header if we need to, but presumably
6103         we'll invalidate the row corrsponding to the bounds or
6104         editingControl.
6105         (GridHScrolled): switch back to this method, as it's part of the
6106         public api.  *sigh*.
6107         (GridVScrolled): same.
6108         (OnMouseWheel): hack up something that more or less works.  Call
6109         GridHScrolled/GridVScrolled directly, instead of duplicating much
6110         of their code here.
6111         (EnsureCellVisibility): reinstate a bunch of this code, since we
6112         can't just set the scrollbar Value and expect to do all the work
6113         in the ValueChanged handler.  Also, Call Update() after scrolling
6114         in one direction so the other XplatX11.ScrollWindow call has the
6115         proper stuff in the proper places.
6116         (EditCell): set is_editing to true before calling .Edit.
6117
6118         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6119         don't bother comparing first.
6120         (OnKeyPress): call grid.ColumnStartedEditing before calling
6121         base.OnKeyPress.  this will set is_changing and invalidate the row
6122         header if necessary.
6123         (ProcessKeyMessage): for WM_CHAR messages, call
6124         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6125         and WM_KEYDOWN.
6126         
6127         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6128         it's done in the DataGrid.
6129         (NextState): call grid.ColumnStartedEditing, which takes care of
6130         invalidating the row header (and setting is_changing).
6131
6132         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6133         here.  it's done in the DataGrid.
6134
6135 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6136
6137         * Control.cs: allow changing the cursor when the mouse position is
6138         out of bounds but Capture is set.
6139         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6140         linklabel but released somewhere else.
6141
6142 2006-05-25  Jackson Harper  <jackson@ximian.com>
6143
6144         * TreeView.cs: When we get focus if there is no selected node make
6145         it the top node
6146         - Remove some uneeded setup code from Draw.
6147         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6148         a new node is inserted make the new node the top.
6149         * XplatUIX11.cs:
6150         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6151         be used (should be faster).
6152         
6153 2006-05-25  Chris Toshok  <toshok@ximian.com>
6154
6155         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6156         problem with the last commit.
6157
6158 2006-05-25  Chris Toshok  <toshok@ximian.com>
6159
6160         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6161         need the invalidate call here, while scrolling right-to-left via
6162         the left arrow key (i.e. moving the editing cell while scrolling).
6163
6164         * DataGrid.cs (.ctor): remove the initialization of
6165         ctrl_pressed/shift_pressed.  We no longer track them using key
6166         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6167         to using ValueChanged handlers on the scrollbars instead of
6168         Scrolled event handlers.  This simplifies a bunch of the scrolling
6169         code.
6170         (GridHValueChanged): rename from GridHScrolled, and change it to
6171         work with the new event args.
6172         (GridVValueChanged): same.
6173         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6174         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6175         selected cell.
6176         (ProcessGridKey): correct all the keyboard navigation stuff I
6177         could find.  Ctrl up/down/left/right/home/end work now.
6178         (EnsureCellVisibility): correct method name spelling.  Also,
6179         simplify this a touch by not explicitly calling the
6180         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6181         scrollbar value.
6182         (OnKeyUpDG): no need for this method now.
6183         
6184 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6185
6186         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6187         Fixes bug #78392.
6188
6189 2006-05-25  Chris Toshok  <toshok@ximian.com>
6190
6191         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6192         r61019.
6193
6194 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6195
6196         * Application.cs: Moved setting of is_modal and closing to before
6197           we create the control, to allow the event handlers called as a
6198           result of creation affect closing. Also removed Gonzalo's previous
6199           change to setting DialogResult, the behaviour has been moved to 
6200           Form.ShowDialog()
6201         * Form.cs: 
6202           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6203             handle it instead
6204           - ShowDialog(): If no dialog result is set, we need to return Cancel
6205           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6206             the close is cancelled
6207
6208 2006-05-25  Jackson Harper  <jackson@ximian.com>
6209
6210         * StatusBar.cs: We only need to update the sizes of the other
6211         panels when we have auto size contents.  Also we are only updating
6212         the contents of the panel, not the borders, so compensate for the
6213         border width (TODO: get this width from the theme somehow).
6214         * TreeView.cs: Scrollable is true by default
6215         - Use invalidate instead of refresh where needed
6216         - Factor the scrollable value into scrollbar updating
6217         - Update the scrollbars if the Scrollable property is altered
6218         - Update the selected node if its ImageIndex is changed
6219         - Handle null nodes in UpdateNode (mainly so we don't have to
6220         check if selected is null when updating it
6221         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6222         are factored into the visible count
6223         - Use VisibleCount for clarity in the code
6224         - When the font is changed we need to recurse through all the
6225         nodes and invalidate their sizes
6226         
6227 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6228
6229         * Application.cs: set the DialogResult to fixed when the main form is
6230         hidden or destroyed while being modal.
6231
6232 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6233
6234         * Theme.cs: Use Tangoified messagebox icons. 
6235
6236         (GetSizedResourceImage): Also cope with width = 0 and do not
6237         trigger a warning in that case (0 means "give me your icon from
6238         the resouce, no special size needed).
6239
6240 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6241
6242         * Application.cs: Leave runloop if the the main modal form is 
6243           hidden (fixes #78484)
6244
6245 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6246
6247         * BindingContext.cs : reject null datasource in Contains() and
6248           Item[].
6249         * CurrencyManager.cs : check data_member validity when data_source
6250           is dataset. When it is late binding, the initial position is -1.
6251
6252 2006-05-24  Jackson Harper  <jackson@ximian.com>
6253
6254         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6255         inserted nodes that aren't visible.  This changes the
6256         max_visible_order which confuses scrollbar settings.
6257         - Use the enumerator to get the prev node instead of duplicating
6258         code.
6259         * TreeView.cs: Use new method for setting scrollbar values
6260         - Don't set the bounds every time the scrollbar is updated
6261         - When updating below the root node use an invalidate instead of a
6262         refresh to prevent the child controls (scrollbars) from being
6263         refreshed. (UpdateBelow still needs to be reworked anyways).
6264         - Reenable SetBottom now that visible orders are set correctly,
6265         added some debug code incase we ever get bad values there again.
6266         - Set the scrollbar max to 2 less then the max value, this
6267         compensates for the max value being one above the node count, and
6268         for scrollbars adding one extra "notch".
6269         - When drawing image nodes if there is an imagelist we draw the
6270         first image in the list if the supplied image index is out of the
6271         image list's bounds.
6272         
6273 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6274
6275         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6276           we receive a size change from the WM (Fixes #78503)
6277
6278 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6279
6280         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6281           rectangle (Fixes #78501)
6282
6283 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6284
6285         * ButtonBase.cs: 
6286           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6287             as a bitfield.
6288           - Fixed MouseMove to no longer switch pressed state unless the left
6289             mouse button is pressed. Atsushi provided the original patch (#78485)
6290           
6291 2006-05-24  Jackson Harper  <jackson@ximian.com>
6292
6293         * ScrollBar.cs: New internal methods that allow us to change a
6294         couple values on the scrollbar (the most common case is maximum
6295         and large change) without getting multiple invalidates.
6296
6297 2006-05-24  Chris Toshok  <toshok@ximian.com>
6298
6299         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6300         (Edit): save off the original state in oldState, and set
6301         grid.is_editing to true.
6302         (OnKeyDown): abort editing if escape is pressed.  also, call
6303         NextState if space is pressed.
6304         (OnMouseDown): call NextState.
6305         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6306         here.  Also, only invalidate the row header once (on the initial
6307         is_changing switch) to save on redraws.
6308
6309 2006-05-24  Chris Toshok  <toshok@ximian.com>
6310
6311         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6312         if the value in the cell is different than it was before.  This
6313         keeps us from triggering a layout when we move around a datarid
6314         with a highlighted cell.
6315         (Edit): suspend layout when creating/positining the text box, and
6316         resume passing false so we don't ever actually re-layout.
6317         (ReleaseHostedControl): same.
6318         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6319
6320         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6321         control-key sequences should go to the datagrid - remove that
6322         lock.  Also, modify the conditions under which we move between
6323         cells when moving the cursor within a cell, and remove the "this"
6324         and "base" from field accesses.  We weren't even consistent, given
6325         they all were in the base class.
6326
6327 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6328
6329         * Binding.cs : (.ctor)
6330           An obvious NRE fix for BindingTest.CtorNullTest().
6331
6332 2006-05-23  Chris Toshok  <toshok@ximian.com>
6333
6334         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6335         them between lines.  This fixes some quirks editing cells in the
6336         datagrid.
6337
6338 2006-05-23  Jackson Harper  <jackson@ximian.com>
6339
6340         * TreeView.cs: Use begin/end update when doing expand/collapse all
6341         so that we don't get flicker on the scrollbar.
6342
6343 2006-05-23  Jackson Harper  <jackson@ximian.com>
6344
6345         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6346         treenode calculations to be independant of the painting code. To
6347         do this nodes track a visible order which is calculated by the
6348         treeview.
6349         - Call new methods for expanding/collapsing nodes.  These methods
6350         use scrollwindow so we don't have to update everything below the
6351         node.
6352         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6353         need to update nodes when drawing anymore or calculate scrollbar
6354         stuff.
6355         - Added new methods for expanding/collapsing nodes. These methods
6356         use ScrollWindow so as to not have to redraw all the nodes below.
6357         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6358         we add/remove nodes or sort.
6359         - Handle removing the selected and the top node properly.
6360
6361 2006-05-23  Chris Toshok  <toshok@ximian.com>
6362
6363         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6364         maybe this should actually happen in the datagrid code?
6365         (EndEdit): no need to invalidate anything, given that
6366         ReleaseHostedControl causes the datagrid to relayout, which
6367         invalidates everything anyway.
6368
6369         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6370         in SetCurrentCell).
6371         (set_SelectionBackColor): call InvalidateSelection instead of
6372         Refresh.
6373         (set_SelectionForeColor): same.
6374         (BeginEdit): Flesh this out a bit.
6375         (CancelEditing): only do any of this if we're editing/adding.
6376         (EndEdit): same.
6377         (OnMouseDown): there's no need to cancel editing here, it's done
6378         in SetCurrentCell.
6379         (SetCurrentCell): only invalidate the current row header if it's a
6380         different row than the new one.
6381         (ShiftSelection): fix this to work like MS does.
6382         (ResetSelection): factor out the invalidation of selected_rows to
6383         InvalidateSelection.
6384         (SetDataSource): cancel any editing that's going on.
6385
6386         * DataGridColumnStyle.cs
6387         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6388         call the non-interface version.
6389
6390         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6391         header rectangle with the clip rectangle so we don't redraw the
6392         entire header for just a small area.  Gets rid of the last flicker
6393         when horizontally scrolling.
6394         (DataGridPaintRow): same.
6395
6396 2006-05-23  Mike Kestner  <mkestner@novell.com>
6397
6398         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6399         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6400         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6401         Critical bug report.
6402
6403 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6404
6405         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6406           and this fixes #78493
6407
6408 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6409
6410         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6411         size is not found.  
6412         
6413         * FileDialog.cs: Do not change the background for the side bar as
6414         it wont work nicely with the theme, and also reduces the artifacts
6415         in rendering the icons (which I want to fix too).
6416
6417         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6418         resources, not resgen resources. 
6419
6420         (PlatformDefaultHandler): Pull images using the new API.
6421
6422 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6423
6424         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6425           a reference to the hwnd and will not remove it unless there are
6426           no pending exposures (fixes #78341)
6427         * XplatUI.cs: Improved debug
6428
6429 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6430
6431         * MenuAPI.cs : don't handle OnClick event when it was not the left
6432           button. Fixed bug #78487.
6433
6434 2006-05-23  Mike Kestner  <mkestner@novell.com>
6435
6436         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6437         prefer submenus to the top menu for item lookup, to avoid popping down
6438         top-row items.
6439
6440 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6441
6442         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6443           Graphics.FillRectangle as the visual results are really bad (even
6444           on win). We now draw perfect arrows (and perfect shadows when the
6445           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6446           Pen.DashPattern to draw the dots of each line.
6447
6448 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6449
6450         * FileDialog.cs: Update the filename combobox when navigating through
6451           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6452
6453 2006-05-22  Mike Kestner  <mkestner@novell.com>
6454
6455         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6456         Fixes #78463.
6457
6458 2006-05-22  Mike Kestner  <mkestner@novell.com>
6459
6460         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6461         requests. Fix a misspelled parameter and a copy paste exception error
6462         in Select.
6463
6464 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6465
6466         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6467           to get the same width/height (5/13) on X11 as the default font has on
6468           win32. This means that our DefaultFont emSize is smaller than the 
6469           the MS SWF equivalent (even thought the width/height stays the same)
6470
6471 2006-05-20  Jackson Harper  <jackson@ximian.com>
6472
6473         * MdiClient.cs:
6474         * MdiWindowManager.cs:
6475         * InternalWindowManager.cs: Make sure to use the border width from
6476         the theme.
6477
6478 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
6479
6480         * PrintDialog.cs: Implements printer details
6481
6482 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
6483
6484         * FileDialog.cs: Added focus handling for PopupButtonPanel.
6485           Fixes part 1 and 2 of bug #78446
6486
6487 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6488
6489         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6490           instead of sticking to the first ever calculated value
6491
6492 2006-05-19  Mike Kestner  <mkestner@novell.com>
6493
6494         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6495         PointToClient, since Capture is set. Fixes #78344.
6496
6497 2006-05-19  Mike Kestner  <mkestner@novell.com>
6498
6499         * ListView.cs: match MS behavior in Details view where items are not
6500         drawn if Columns.Count == 0. 
6501         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6502         Use a separate pen to draw the check, since changing the width affects
6503         the box as well.  Fixes #78454.
6504
6505 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6506
6507         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6508         exception should throw the name of the invalid argument.
6509
6510         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6511         there are no files listed. 
6512
6513 2006-05-18  Jackson Harper  <jackson@ximian.com>
6514
6515         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
6516         up.
6517
6518 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6519
6520         * Control.cs: Brought back our old UpdateZOrder method as a private
6521           function and switched our calls from UpdateZOrder to the new one.
6522           This fixes the Paint.Net canvas disappearing bug.
6523
6524 2006-05-18  Jackson Harper  <jackson@ximian.com>
6525
6526         * Theme.cs:
6527         * ThemeWin32Classic.cs:
6528         * InternalWindowManager.cs: Move the drawing into the theme,
6529         expose everything the theme should need from the window manager.
6530
6531 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6532
6533         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
6534           from the call to NativeWindow to avoid walking up the parent chain
6535           further than needed (speeds up setting cursors and avoids setting
6536           the wrong cursor if a parent has another cursor defined)
6537         * Cursor.cs: When loading an icon as cursor, MS uses the center of
6538           the icon as hotspot, not what's contained as hotspot in the icon
6539           file. This fixes the perceived drawing offset seen with Paint.Net
6540         
6541 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6542
6543         * XplatUIX11.cs: 
6544           - Store the calculated rectangle in Hwnd object and use it when 
6545             setting the client size
6546           - Force Toolwindows to always be type Dock, to ensure they're on top
6547
6548 2006-05-18  Mike Kestner  <mkestner@novell.com>
6549
6550         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
6551         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
6552         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
6553         Substantial refactoring to remove confusing nested classes. Coding
6554         standard and Get+Set->property refactorings.  Shift to index based
6555         highlighting in ComboListBox instead of constantly using IndexOf and
6556         Items[]. Add invalidations on resize for DropDownList to fix ugliness
6557         in FileDialog growth.  Draw borders manually since Simple mode needs
6558         to look like two independent controls.  Make listbox border
6559         conditional to DropDownStyle.  Improved OwnerDraw support.
6560
6561 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
6562
6563         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
6564         Don't set the disposed graphics to null, so we can throw the "right"
6565         exception if the graphics is reused later (added a flag to avoid 
6566         double disposing). Some behaviours are different under 2.0 and are
6567         filled under bug #78448.
6568
6569 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6570
6571         * Control.cs: When double-buffering is enabled, we need to reset
6572           our graphics context between paint calls. Otherwise, any 
6573           transformations and other alterations on the context will 
6574           become cumulative (#77734)
6575
6576 2006-05-18  Mike Kestner  <mkestner@novell.com>
6577
6578         * ListView.cs: do focused item selection like MS on clicks. 
6579         Rework focus handling for ItemControl so LostFocus invalidates as
6580         well.
6581         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
6582         the ListView ItemControl has focus.
6583
6584 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
6585
6586         * XplatUIX11.cs: If client_window ends up being width or height zero
6587           due to border settings, move it off window inside whole_window (#78433)
6588
6589 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6590
6591         * Mime.cs: Shrink the mime file cache correctly.
6592
6593 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6594
6595         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
6596
6597 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6598
6599         * XplatUIX11.cs (AddExpose): More sanity checks
6600
6601 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6602
6603         * XplatUIX11.cs:
6604           - AddExpose: Don't add expose ranges outside the size of our
6605             window
6606           - Cast opacity values to Int32 to avoid crashes with certain
6607             values
6608           - Added disabled code paths that protect against illegal cross-
6609             thread painting (Developers.exe)
6610
6611 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6612
6613         * ProgressBar.cs: Invalidate the control when it's resized
6614           since block size is based on control size. (#78388)
6615
6616 2006-05-16  Miguel de Icaza  <miguel@novell.com>
6617
6618         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
6619         of setting the incoming argument to the "reset" value, we set the
6620         this.datamember to string.empty (before we were invalidating the
6621         incoming data).   
6622
6623         Fixes 78420
6624
6625 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6626
6627         * Form.cs: Only apply transparency settings after the form
6628           is created. (Fixes #77800)
6629
6630 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6631
6632         * ApplicationContext.cs: Grab the HandleDestroyed event so
6633           we know when to fire OnMainFormClosed 
6634
6635 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6636
6637         * Application.cs: Introduced sub-class to allow tracking of
6638           threads and centralized triggering of the event mess for
6639           ThreadExit, AppExit, etc..  (#76156)
6640
6641 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
6642
6643         * MimeIcon.cs:
6644           - Do not return a null icon index value for a mime subclass.
6645             Instead try the main mime type class too.
6646           - Seems that some newer distributions don't have a link to some
6647             gnome default icons anymore. So check the default gnome dir too.
6648           
6649
6650 2006-05-16  Jackson Harper  <jackson@ximian.com>
6651
6652         * MdiClient.cs: Don't paint the parent background image if we have
6653         our own background image.
6654
6655 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6656
6657         * Control.cs:
6658           - PerformLayout: Do not shrink space filled by DockStyle.Fill
6659             controls, all filled controls are supposed to overlap (#78080)
6660           - UpdateZOrder is supposed to update the control's z-order in the
6661             parent's z-order chain. Fixed to behave like that
6662           - BringToFront: Removed obsolete code
6663           - SendToBack: Simplyfied
6664           - SetChildIndex: Trigger layout calculations when Z-order changes
6665             since layout is done by z-order
6666
6667 2006-05-16  Chris Toshok  <toshok@ximian.com>
6668
6669         [ fixes bug #78410 ]
6670         * DataGrid.cs (set_AlternatingBackColor): use
6671         grid_drawing.InvalidateCells instead of Refresh().
6672         (set_BackColor): call grid_drawing.InvalidateCells.
6673         (set_BackgroundColor): use Invalidate instead of Refresh.
6674
6675         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
6676         invalidate the cell area.
6677
6678 2006-05-15  Chris Toshok  <toshok@ximian.com>
6679
6680         [ fixes bug #78011 ]
6681         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
6682         on to DataGridPaintRow.
6683         (DataGridPaintRow): take a clip argument, and only draw the cells
6684         which intersect it.  same with the not_usedarea.
6685
6686         * Theme.cs (DataGridPaintRow) add @clip parameter.
6687
6688         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
6689         XplatUI.ScrollWindow.
6690         (ScrollToRow): same.
6691
6692         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
6693         with last column which was causing a gray swath to appear with the
6694         XplatUI.ScrollWindow code.
6695
6696 2006-05-15  Chris Toshok  <toshok@ximian.com>
6697
6698         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
6699         use XplatUI.ScrollWindow.
6700         (VerticalScrollEvent): use XplatUI.ScrollWindow.
6701
6702 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
6703
6704         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
6705
6706 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6707
6708         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
6709           file since there are no equivalent X11 cursors
6710
6711 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6712
6713         * MonthCalendar.cs : DateTimePicker should reflect selected date
6714           on mouse*up*, not mouse*down*. Fixed originally reported part of
6715           bug #76474.
6716
6717 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6718
6719         * TabControl.cs : When argument index is equal or more than tab
6720           count, just ignore. Fixed bug #78395.
6721
6722 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6723
6724         * Control.cs: Dispose all child controls when control is diposed (#78394)
6725
6726 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6727
6728         * ColorDialog.cs: Finally it is possible to select the color with
6729           the text boxes
6730
6731 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6732
6733         * PrintDialog.cs: Fix typo
6734
6735 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6736
6737         * PrintDialog.cs: PrintDialog is not resizable
6738         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
6739           color. Made some ToolBar drawing methods protected virtual.
6740
6741 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
6742
6743         * PrintDialog.cs: Implementation of the PrintDialog
6744
6745 2006-05-12  Chris Toshok  <toshok@ximian.com>
6746
6747         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
6748         thumb, instead use MoveThumb.  This has the side effect of making
6749         most of the other thumb moving machinery use MoveThumb as well.
6750         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
6751         need to actually invalidate the rectangle where the new thumb will
6752         go.
6753         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
6754         We force an Update() after, so it's not as fast as it could be,
6755         but at least there's zero flicker and no droppings.
6756         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
6757         (UpdateThumbPos): add another argument (dirty), which says whether
6758         or not to calculate/add dirty regions which we later invalidate.
6759         For cases where we know we're going to use MoveThumb, we pass
6760         false for this.  Otherwise, pass true.
6761
6762 2006-05-12  Jackson Harper  <jackson@ximian.com>
6763
6764         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
6765         the status bar.
6766         
6767 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
6768
6769         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
6770           and GetClipRegion methods and UserClipWontExposeParent property.
6771         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
6772           overriding UserClipWontExposeParent property, setting to false, since
6773           Win32 handles the required expose messages to draw our clipped parent
6774           areas internally
6775         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
6776           PaintEventStart to set the user clip region if set.
6777         * Control.cs: 
6778           - Now internally tracking the Region for the control since we need to
6779             store it if the handle is not yet created and only set it when it
6780             becomes created. Before setting the region forced handle creation
6781           - Added code to draw the parents underneath a user-clipped region
6782         * Hwnd.cs: Added UserClip property
6783
6784 2006-05-12  Chris Toshok  <toshok@ximian.com>
6785
6786         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
6787         (set_Maximum): same.
6788         (set_Minimum): same.
6789         (set_SmallChange): same.
6790         (OnMouseUpSB): remove the call to refresh when releasing the
6791         thumb.  We shouldn't need it.
6792         
6793 2006-05-12  Miguel de Icaza  <miguel@novell.com>
6794
6795         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
6796         AutoSize set to None, we do not need to relayout everything, we
6797         just need to invalidate the current region.
6798
6799         (Draw): Do not draw the entire ClientArea, just redraw the
6800         clip area being passed.
6801
6802         * MdiClient.cs: Make MdiClient constructor with the Form argument
6803         internal. 
6804
6805 2006-05-12  Jackson Harper  <jackson@ximian.com>
6806
6807         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
6808         parents background image,  but strangely not their own.
6809         - (DrawStatusBarPanel): Take into account horizontal alignment
6810         when drawing the strings and icons.
6811
6812 2006-05-12  Mike Kestner  <mkestner@novell.com>
6813
6814         * ListBox.cs: avoid invalidations for focus when the collection is
6815         empty. 
6816
6817 2006-05-12  Chris Toshok  <toshok@ximian.com>
6818
6819         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
6820         invalidate the entire thumb area.  Call InvalidateDirty which
6821         limits the redraw to the thumb itself and surrounding pixels.
6822
6823         * XplatUIX11.cs (ScrollWindow): optimize copying.
6824         
6825 2006-05-12  Chris Toshok  <toshok@ximian.com>
6826
6827         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
6828         Figure out the positioning/layout in a single pass instead of
6829         multiple recursive invocations.  Speeds up the initial display of
6830         the data grid.  Also, make many things private that were
6831         originally public but unused outside this class.
6832
6833 2006-05-11  Jackson Harper  <jackson@ximian.com>
6834
6835         * MdiClient.cs: Improved layout code.
6836
6837 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
6838
6839         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
6840           not SelectedObject.
6841
6842 2006-05-11  Chris Toshok  <toshok@ximian.com>
6843
6844         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
6845         union of that will always be {0,0,width,height}.
6846
6847 2006-05-11  Jackson Harper  <jackson@ximian.com>
6848
6849         * Form.cs: Match MS's DefaultSize for forms (they must have
6850         changed the size in sp2).
6851
6852 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6853
6854         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
6855
6856 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6857
6858         * TextControl.cs : Fixed bug #78109. This incorrect position
6859           comparison caused crash on automatic line split.
6860         * TextBoxBase.cs : reduce duplicate code.
6861
6862 2006-05-10  Jackson Harper  <jackson@ximian.com>
6863
6864         * MdiClient.cs: Active form is only sent to the back when using
6865         the Next form functionality, when a form is clicked the current
6866         active shouldn't be sent to the back.
6867         - Layout the mdi windows when the container is first made visible.
6868         * Form.cs: Give the MdiClient a ref to the containing form when we
6869         create it.
6870         
6871 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6872
6873         * LinkLabel.cs : link_font could be uninitialized, so populate one
6874           before actual use. Fixed bug #78340.
6875
6876 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6877
6878         * XplatUIX11.cs : clipboard format native value is IntPtr.
6879           Fixed bug #78283.
6880
6881 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6882
6883         * Control.cs: 
6884           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
6885             which is passed up the parent chain by DefWndProc
6886           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
6887             to DefWndProc (#77956)
6888         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
6889
6890 2006-05-10  Jackson Harper  <jackson@ximian.com>
6891
6892         * MdiClient.cs: We need to remove the controls from the mdi
6893         collection, when we close the window.
6894         * MdiWindowManager.cs: Special handling of closing mdi windows.
6895         * InternalWindowManager.cs: Make the close method virtual so the
6896         mdi window manager can handle it specially.
6897
6898 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
6899
6900         * DataGrid.cs:
6901           - Recalculate grid when the data source has changed
6902           - Matches styles provided by user from all data sources types
6903         * DataGridTableStyle.cs: For columns that provided by the user set the
6904         with the preferred value is there was unassigned.
6905         * CurrencyManager.cs: throw OnItemChanged event
6906
6907 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
6908
6909         * PictureBox.cs: Don't animate until handle is created. Start animation
6910           when handle is created.
6911
6912 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6913
6914         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
6915           current codebase.
6916         * XEventQueue.cs: We don't need to provide the extra info
6917
6918 2006-05-10  Jackson Harper  <jackson@ximian.com>
6919
6920         * MdiClient.cs: If the mdi clients parent form has a background
6921         image set, we draw that background image for the mdi area's
6922         background.
6923
6924 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6925
6926         * TextBoxBase.cs: Set IBeam cursor (#78347)
6927
6928 2006-05-10  Mike Kestner  <mkestner@novell.com>
6929
6930         * ToolBar.cs: fix some text padding issues with ButtonSize
6931         calculation. Update the default size to match MS documentation.
6932         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
6933         button size. Fixes #78296.
6934
6935 2006-05-10  Mike Kestner  <mkestner@novell.com>
6936
6937         * ListBox.cs: use is_visible for scrollbar positioning in case the
6938         control isn't on screen yet.  Fix off by one with Right vs Width
6939         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
6940         
6941 2006-05-10  Jackson Harper  <jackson@ximian.com>
6942
6943         * X11Dnd.cs: Drop to a control with another control on top of it.
6944         * ToolBar.cs: Work on a copy of the buttons list, so that it can
6945         be modified in click handlers. TODO: Look for similar problems in
6946         other controls.
6947
6948 2006-05-09  Jackson Harper  <jackson@ximian.com>
6949
6950         * Form.cs: Window managers need the old window state when setting
6951         window state now.
6952         * InternalWindowManager.cs: Allow the base mdi window manager to
6953         handle more of the MDI only stuff (like maximize buttons).
6954         * MdiWindowManager.cs: Fix some snafus in changing the window
6955         state.  Add all the menu functionality, for both popup and
6956         maximized menus.
6957         * MdiClient.cs: When a new form is selected the currently
6958         activated form is sent to the back, this matches MS.
6959         - Implement a new method to activate the next mdi child window.
6960
6961 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
6962
6963         * Control.cs: 
6964           - Added new InternalCapture method to allow controls to prevent
6965             the capture behaviour on the click handlers
6966           - Switched to use InternalCapture
6967         * ComboBox.cs:
6968           - Using InternalCapture to prevent mouse captures from being released
6969             on mouse button release (Fixes #78100)
6970         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
6971           returns Form borders if a caption is present. (Fixes #78310)
6972
6973 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
6974
6975         * TreeNode.cs: Changed serialization .ctor to not require every field
6976           to be present. (#78265)
6977         * OwnerDrawPropertyBag.cs: Added serialization .ctor
6978
6979 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
6980
6981         * MimeIcon.cs: for is faster than foreach for strings.
6982
6983 2006-05-05  Mike Kestner  <mkestner@novell.com>
6984
6985         * CheckedListBox.cs: update check handling code to not use selected.
6986         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
6987         behavior for visual feedback, motion response, shift/ctrl handling,
6988         and properly deal with all 4 selection modes. Updates to bounds
6989         handling logic.  Add scroll wheel support. [Fixes #77842]
6990
6991 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
6992
6993         * ListView.cs:
6994           - Moved adding of Implicit controls into .ctor. That way, subsequent
6995             creation of the controls will not cause them to think they are 
6996             toplevel windows (fixes #78200 header problem)
6997           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
6998           - Switched visibility setting of header control to use internal field
6999             to avoid triggering handle creation
7000           - Now checking if handle is created before causing a refresh when items
7001             are added (This makes us now match handle creation time with MS)
7002         * Splitter.cs: Removed loading of private splitter cursor, switched to
7003           Cursors version now that that is loading the right ones
7004         * Cursors.cs: Load proper splitter cursors from resources
7005         * Cursor.cs: Added second method of loading resource cursors for the 
7006           VS.Net users amongst us
7007
7008 2006-05-05  Mike Kestner  <mkestner@novell.com>
7009
7010         * ListView.cs: give header_control a minimum size based on the
7011         ListView size.
7012
7013 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7014
7015         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7016           window seems to do that with metacity, so set that type. (#78120)
7017
7018 2006-05-05  Mike Kestner  <mkestner@novell.com>
7019
7020         * ListViewItem.cs: fix Details mode checkbox layout bug.
7021         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7022         at the end of the header, if it exists. [Fixes for #78200]
7023
7024 2006-05-04  Jackson Harper  <jackson@ximian.com>
7025
7026         * MdiClient.cs: Add a helper property to get the container form.
7027         * MdiWindowManager.cs: We have to make sure to use the menu origin
7028         when drawing the icons and buttons, this fixes maximized window
7029         icons/buttons on win32.
7030         * InternalWindowManager.cs: Reset the restore captions when a
7031         window goes from Maximized to Minimized and vice versa. Move the
7032         DrawMaximizedButtons into the MdiWindowManager source, tool
7033         windows can't be maximized. NOTE: This could use a little
7034         refactoring if time ever permits.
7035         
7036 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7037
7038         * TextBox.cs: Add MWFCategoryAttributes
7039         * TextBoxBase.cs: Add MWFCategoryAttributes
7040         * Form.cs: Add MWFCategoryAttributes
7041
7042 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7043
7044         * Control.cs: Add MWFCategoryAttributes
7045         * ScrollableControl.cs: Add MWFCategoryAttributes
7046
7047 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7048
7049         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7050           Divider is true. Fix a little glitch in PropertyToolBar
7051           drawing code
7052
7053 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7054
7055         * Control.cs:
7056           - Dispose: Call base.Dispose, this causes the disposed event
7057             to be fired (and probably other, more important stuff)
7058           - SetVisibleCore: Set is_visible to true after creating the
7059             window so that the window still gets created invisible (if
7060             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7061             to generate a WM_ACTIVE message
7062         * Form.cs: Call Dispose when we want to destroy the window, instead of
7063           just destroying the handle (Dispose will do that for us)
7064         * XplatUIX11.cs:
7065           - RootWindow also needs a queue, so we can properly process the
7066             property change events from RootWindow (like Activate)
7067           - Generatic synthetic WM_ACTIVE message when the active window is
7068             being destroyed
7069
7070 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7071
7072         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7073           bounds are changed
7074
7075 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7076
7077         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7078           for determining width and height (image might not be assigned if
7079           we're drawing an imagelist)
7080
7081 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7082
7083         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7084         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7085           height from system
7086         * Theme.cs: No longer returns hardcoded menu height, instead calls
7087           new driver method
7088         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7089           on MS (# 78257)
7090
7091 2006-05-01  Mike Kestner  <mkestner@novell.com>
7092
7093         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7094
7095 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7096
7097         * TextBoxBase.cs: Removed Fixme
7098         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7099
7100 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7101
7102         * XplatUIX11.cs:
7103           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7104             the rectangle relative to the parent, considering borders. We
7105             don't really want that.
7106           - ScrollWindow: Fixed warning to be more understandable
7107         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7108           scrollbars and scroll only the visible area
7109         * RichTextBox.cs: Removed debug output
7110
7111 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7112
7113         * NumericUpDown.cs (Text): Just use base
7114         * UpDownBase.cs: Ensure txtView is created before using it
7115
7116 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7117
7118         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7119           casting to IntPtr to avoid 64bit overflow errors
7120
7121 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7122
7123         * Control.cs:
7124           - AllowDrop: Don't force handle creation.
7125           - CreateHandle: Added call to tell driver if we're allowed to drop
7126
7127 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7128
7129         * FileDialog.cs: Remember the last directory not only for the
7130           current instance but also for new FileDialog instances.
7131
7132 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7133         
7134         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7135           broke sending async messages
7136
7137 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7138
7139         * XplatUIX11.cs:
7140           - ScrollWindow: Fixed method. We finally generate expose events again
7141             for scrolled areas. This was causing 'garbage' when scrolling
7142             textbox and other controls that used ScrollWindow
7143           - Switched from using the regular queue for paint events to the MS 
7144             model of 'generating' paint events when the queue is empty.
7145             We use the new XQueueEvent.Paint subclass to store which windows
7146             need painting.
7147           - AddExpose now takes the x/y/width/height of the exposed area
7148             and inserts the window into the paint queue if not already there
7149           - InvalidateWholeWindow: Switched to use new AddExpose method
7150           - UpdateMessageQueue: Added which queue to monitor for paint events
7151           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7152             the unlikely case nothing above handles it. We reset the expose
7153             pending states to get them off the queue.
7154           - GetMessage: Now pulls a paint event if no other events are in the
7155             queue
7156           - Invalidate: Switched to new AddExpose method
7157           - PeekMessage: Updated to understand pending paint events
7158           - UpdateWindow: Fixed logic bug. We were only updating if the window
7159             didn't need updating. Also switched to sending WM_PAINT directly,
7160             like MS does.
7161         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7162           and random access Remove(). The random access is needed to handle
7163           UpdateWindow() where a WM_PAINT is sent directly without accessing
7164           the queue.
7165         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7166           allow for better feedback when scrolling. Scrollbars are small and
7167           the immediate update should make it 'feel' more responsive without
7168           slowing things down. ScrollBar still needs it's invaliate logic
7169           updated to not always invalidate the whole bar on certain changes.
7170
7171 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7172
7173         * Control.cs:
7174         (BackColor): if the control does not support a transparent background,
7175         return the default backcolor when the parent backcolor is transparent.
7176
7177 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7178
7179         * Application.cs: Updated to new StartLoop/GetMessage API
7180         * RichTextBox.cs: Provide some output on RTF parsing errors
7181         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7182           new queue_id argument to GetMessage and PeekMessage to allow faster
7183           handling of per-thread queues in drivers.
7184         * Hwnd.cs: Added Queue tracking and property
7185         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7186         * XEventQueue.cs: Added thread trackingA
7187         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7188         * XplatUIX11.cs:
7189           - Implemented new per-thread queue
7190           - GetMessage: Fixed return/break behaviour on several cases. We were
7191             returning stale messages in some cases, instead of just processing
7192             the next message
7193
7194 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7195
7196         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7197
7198 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7199
7200         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7201           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7202
7203 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7204
7205         * PropertyGridView.cs: Fix drop down width.
7206
7207 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7208
7209         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7210           a mess in DrawToolBar, so I removed one of them.
7211
7212 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7213
7214         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7215           needed (clip). Otherwise we get artifacts.
7216
7217 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7218
7219         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7220           dimension is fixed
7221         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7222           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7223         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7224           if it matches the scale base font (avoids unneeded scaling)
7225
7226 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7227
7228         * X11DesktopColors.cs: One gtk_init_check should be enough
7229
7230 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7231
7232         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7233           match MS behaviour
7234
7235 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7236
7237         * TextBoxBase.cs: 
7238           - Generate OnTextChanged for Backspace even if we're only deleting
7239             the current selection
7240           - When setting the Text property, only select all text if the
7241             control does not have focus when it is being set. Otherwise
7242             just place the cursor at the beginning of the control
7243
7244 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7245
7246         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7247           Added a little helper to draw PropertyGrid ToolBar with a different
7248           border and a different BackColor.
7249         * PropertyGrid.cs: Some background parts didn't get painted with the
7250           correct background color. Added a class that helps us to draw the
7251           correct border for PropertyGridView and a class that helps us to
7252           draw ToolBars with a different backcolor
7253         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7254
7255 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7256
7257         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7258         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7259
7260 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7261
7262         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7263           into the palette entries. Also, since we're working on a copy
7264           we needed to copy the palette back onto the bitmap.
7265         * Cursor.cs: Same fix as XplatUIWin32.cs.
7266
7267 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7268
7269         * ImageListStreamer.cs: Need to read the var (or we're off)
7270
7271 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7272
7273         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7274           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7275           TextBoxBase.cs: Unused var fixes
7276         * AxHost.cs: Small 2.0 fix
7277         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7278           as it seems that is what at least Metacity expects. This will make
7279           icons show up on 64bit platforms. We still have some 64bit size
7280           issues, though, since the startup app window size still won't match.
7281
7282 2006-04-25  Mike Kestner  <mkestner@novell.com>
7283
7284         * *.cs: cleanup newly reported exception var unused warnings.
7285
7286 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7287
7288         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7289           ms
7290
7291 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7292
7293         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7294           image. The image position is always the same, no matter if the
7295           button is pressed or not.
7296
7297 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7298
7299         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7300           selection and set the correct filename for SaveFileDialog.
7301           Patch by Emery Conrad.
7302
7303 2006-04-24  Mike Kestner  <mkestner@novell.com>
7304
7305         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7306         check for item.X outside the ClientRect instead of item.Y. Fixes
7307         #78151.
7308
7309 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7310
7311         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7312         trust that value blindly and do some sanity check. Fixes bug #77814.
7313
7314 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7315
7316         * ImageListStreamer.cs: save the mask as a 1bpp image.
7317
7318 2006-04-21  Mike Kestner  <mkestner@novell.com>
7319
7320         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7321         pass Checked and Indeterminate to the Theme Engine. Improve
7322         encapsulation with ListBox.
7323         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7324         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7325         nested types.  Move all CheckState functionality to CheckedListBox.
7326         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7327         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7328         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7329         single base list. Fix scrollbar sizing and placement to mirror MS.
7330         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7331         used.
7332         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7333         for CheckedListBox by using new DrawItemState info.  Center the
7334         checkboxes on the items. Use new StringFormat property.
7335
7336 2006-04-18  Jackson Harper  <jackson@ximian.com>
7337
7338         * Form.cs: MdiChildren don't do default locations the same way as
7339         regular forms.  This prevents a crash when trying to position the
7340         mdi windows.
7341
7342 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7343
7344         * PropertyGridTextBox.cs: Formatting, copyright
7345         * PropertiesTab.cs: Formatting
7346         * PropertyGrid.cs: Formatting
7347         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7348           click toggling of values
7349           
7350 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7351
7352         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7353         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7354           every time a control is created
7355         * Application.cs: Removed obsolete EnableRTLMirroring method
7356
7357 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7358
7359         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7360         SelectedIndex to -1. Fixes bug #78121.
7361
7362 2006-04-17  Jackson Harper  <jackson@ximian.com>
7363
7364         * Binding.cs: Handle null values for Current and BindingContext.
7365         This occurs when binding is a little delayed.
7366         * CurrencyManager.cs: return null for Current when there are no
7367         items in the list.
7368         - Hookup to the listchanged event on the DataView and update
7369         bindings when the list is changed.  This fixes late binding of
7370         controls.
7371
7372 2006-04-17  Jackson Harper  <jackson@ximian.com>
7373
7374         * X11Dnd.cs:
7375         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7376         Ringenbach.
7377
7378 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7379
7380         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7381           place
7382         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7383           with the correct ButtonState
7384
7385 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7386
7387         * XplatUIX11.cs: Improved distinguishing between window types to
7388           tell the WM a type closer to what the app wants (Fixes #78107)
7389
7390 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7391
7392         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7393           GrabHandle
7394
7395 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7396
7397         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7398           drawing code to reflect the size grip changes
7399
7400 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7401
7402         * ImageListStreamer.cs: fix handling of the mask that follows the main
7403         bitmap when deserializing and serialize it properly. The generated mask
7404         should better be a 1bpp image, but I'll do that later.
7405
7406 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7407
7408         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7409           path doesn't fit into some of our Current.Places
7410
7411 2006-04-13  Jackson Harper  <jackson@ximian.com>
7412
7413         * ComboBox.cs: Use borders instead of drawing our own decorations,
7414         try to obey correct rules for heights.
7415         * Theme.cs:
7416         * ThemeNice.cs:
7417         * ThemeClearLooks.cs:
7418         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7419         this is now handled by borders.
7420         - Remove unused DrawListBoxDecorationSize method.
7421         
7422 2006-04-13  Mike Kestner  <mkestner@novell.com>
7423
7424         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7425         reported by Alex.
7426
7427 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7428
7429         * ThemeWin32Classic.cs: 
7430           - Fixed CPDrawStringDisabled
7431           - Corrected drawing of disabled menu items
7432           - Fixed drawing of disabled radio buttons (bug #78095)
7433           - Draw check in a disabled CheckBox with color ControlDark 
7434
7435 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7436
7437         * Form.cs: Use the provided width when calculating the menu size;
7438           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7439           and ClientSize.Width won't be updated yet
7440         * Application.cs: Use Visible instead of Show() to make form visible,
7441           this way we create the handle later and menusize is considered
7442
7443 2006-04-12  Mike Kestner  <mkestner@novell.com>
7444
7445         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7446         reporting.
7447
7448 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7449
7450         * TextBox.cs: Implemented context menu
7451
7452 2006-04-12  Mike Kestner  <mkestner@novell.com>
7453
7454         * ListView.cs: implement box selection. fixes #77838.
7455         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7456
7457 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7458
7459         * XplatUIX11.cs: Added setting of window type when transient window
7460           is created (metacity would move it otherwise)
7461         * X11Structs.cs: Added WINDOW_TYPE atoms
7462         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7463           background (the control is Opaque but still wants transparent
7464           backgrounds)
7465
7466 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7467
7468         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7469           that set Opaque but don't mean it (like all ButtonBase-derived
7470           controls) to still draw their background
7471         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7472           the background
7473
7474 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7475
7476         * Control.cs (PaintControlBackground): Set the graphics object
7477           on our PaintEvent to null to prevent it from being disposed
7478           when the PaintEvent gets disposed
7479
7480 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
7481
7482         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
7483         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
7484
7485 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7486
7487         * Control.cs: 
7488           - Added transparency check to BackColor property. Transparent
7489             backgrounds are only allowed if the control styles permit it
7490           - Added recursive painting of parent control background and
7491             foreground if a control with a transparent backcolor is drawn
7492             (Thanks to Tim Ringenback for providing his 'hack' as a base
7493              for this patch) Fixes #77985 and #78026.
7494           - Added Opaque style check before calling OnPaintBackground, no
7495             need to draw the background if the control is opaque
7496           - Removed ControlAccessibleObject owner variable (inherited from
7497             base, no need to define again)
7498           - Added some documentation links explaining the drawing events
7499             and styles
7500
7501 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7502
7503         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7504           that the affected control is the located at the left border of our
7505           parent (Fixes #77936)
7506
7507 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7508
7509         * TextBoxBase.cs: When rendering disabled or readonly controls,
7510           draw the background with 'Control' instead of 'Window' color as
7511           long as the user hasn't specifically set a color
7512
7513 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7514
7515         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
7516           since that won't be updated if the user types text (only if it's
7517           programatically set)
7518
7519 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7520
7521         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
7522           layout changes do to app-triggered resizes will have the proper
7523           display rectangle for layout
7524
7525 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
7526
7527         * ThemeWin32Classic.cs:
7528           - Make use of the SystemBrushes and SystemPens wherever possible
7529           - Corrected some highlight colors
7530           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
7531             drawing
7532         * Theme.cs: Added Empty field to CPColor struct
7533
7534 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7535
7536         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
7537           is displayed when calculating the display rectangle. Thanks to Mike
7538           for teaching me the err of my ways.
7539
7540 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
7541
7542         * ScrollableControl.cs:
7543           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
7544             (instead of 0,0) and we now return the real width/height instead of
7545             just the clientrectangle, adjusted for padding. The rectangle is
7546             now cached and created by the new CalculateDisplayRectangle method.
7547           - Created new CalculateDisplayRectange method, which basically does
7548             what get_DisplayRectangle() did originally, but now using the 
7549             right edge instead of DisplayRectangle to determine the size of
7550             our scrollbars
7551           - get_Canvas(): Fixed it to properly calculate canvas for 
7552             right/bottom controls which seem to be placed to the right/bottom
7553             of any controls that have a fixed location
7554           - Removed TODO that's taken care of
7555           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
7556             and SetDisplayRectLocation according to new MSDN2 docs
7557           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
7558             event when that is called, this is added for compatibility
7559           - ScrollControlIntoView(): Implemented.
7560           - Switched scrollbars to be implicit, they shouldn't be selectable
7561         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
7562           call it when the active control is set/changed
7563         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
7564         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
7565           implicit_control variable (used for native Win32 message generation)
7566         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
7567           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
7568         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
7569         * XplatUIStructs.cs: Added ScrollBarCommands enum
7570
7571 2006-04-10  Jackson Harper  <jackson@ximian.com>
7572
7573         * ButtonBase.cs:
7574         * CheckedListBox.cs:
7575         * ComboBox.cs:
7576         * DataGrid.cs:
7577         * DataGridView.cs:
7578         * Form.cs:
7579         * GroupBox.cs:
7580         * ListBox.cs:
7581         * PrintPreviewControl.cs:
7582         * ProgressBar.cs:
7583         * PropertyGrid.cs:
7584         * Splitter.cs:
7585         * StatusBar.cs:
7586         * TrackBar.cs:
7587         * UpDownBase.cs: Fixup base event overrides.
7588         
7589 2006-04-06  Mike Kestner  <mkestner@novell.com>
7590
7591         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
7592         all user-initiated value changes to min <= value <= max-thumbsz+1.
7593         (set_Value): check for vert/horiz when calculating new thumb position.
7594         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
7595         like MS does.
7596         (OnMouseMoveSB): refactor the thumb dragging code and refine
7597         invalidation logic to reduce flicker.
7598         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
7599         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
7600         (UpdateThumbPosition): small code readability cleanup
7601
7602 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
7603
7604         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
7605           different
7606
7607 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7608
7609         * ThemeNice.cs: Use a better graphics effect when a button is pressed
7610
7611 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7612
7613         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
7614         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
7615           This dramatically reduces the number of Pen.Dispose calls. 
7616           Where possible call ResPool methods only once instead of calling it
7617           over and over again (for example for the same color).
7618
7619 2006-04-06  Mike Kestner  <mkestner@novell.com>
7620
7621         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
7622         Also remove an unused private field on the collection. Fixes #77972.
7623
7624 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7625
7626         * ThemeNice.cs: Added ToolBar drawing code
7627
7628 2006-04-06  Mike Kestner  <mkestner@novell.com>
7629
7630         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
7631         I'm assuming that means we need to look up the toplevel for the
7632         provided control. Fixes the crash trace in #77911 but exposes another
7633         crash in some strange reflection usage in NDocGui.
7634
7635 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7636
7637         * ThemeNice.cs: Gave it a little silver touch and added Images
7638           method
7639         * FontDialog.cs: FontDialog is not resizable
7640         * FileDialg.cs: Added SizeGripStyle.Show
7641
7642 2006-04-05  Jackson Harper  <jackson@ximian.com>
7643
7644         * KeyboardLayouts.cs: Remove warning.
7645
7646 2006-04-05  Jackson Harper  <jackson@ximian.com>
7647
7648         * Control.cs: Enable OnPaintInternal so we can use it for drawing
7649         all of our controls instead of Paint +=.
7650         * ListBox.cs:
7651         * ListView.cs:
7652         * MenuAPI.cs:
7653         * MessageBox.cs:
7654         * NotifyIcon.cs:
7655         * ProgressBar.cs:
7656         * ScrollBar.cs:
7657         * Splitter.cs:
7658         * StatusBar.cs:
7659         * TabControl.cs:
7660         * TextBoxBase.cs:
7661         * ToolBar.cs:
7662         * TrackBar.cs:
7663         * UpDownBase.cs:
7664         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
7665         use OnPaintInternal. Remove Width/Height and Visible checks in
7666         paint handler, this is done at a higher level now.
7667         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
7668         * PaintEventArgs.cs: Add a handled flag so controls that don't
7669         want anymore painting after OnPaintInternal can make sure OnPaint
7670         isn't called.
7671
7672 2006-04-05  Mike Kestner  <mkestner@novell.com>
7673
7674         * Form.cs: fix the menu WndProc hacks to respect the native enabled
7675         state of the form, so that we don't process events when Modal dialogs
7676         are up. Fixes #77922.
7677
7678 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
7679
7680         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
7681           checking is done.
7682
7683 2006-04-05  Mike Kestner  <mkestner@novell.com>
7684
7685         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
7686
7687 2006-04-05  Mike Kestner  <mkestner@novell.com>
7688
7689         * ListView.cs (HeaderMouseMove): null guarding for the over column
7690         when setting up the drag_to_index.  Fixes #78015.
7691
7692 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
7693
7694         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
7695           in the taskbar. Transient windows seem to accomplish that.
7696
7697 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
7698
7699         * Form.cs:
7700           - Re-enabled CreateParams.X/Y code for FormStartPosition
7701           - Added code for manual placement when creating the Control
7702           - Incomplete patch to treat MDI forms differently when
7703             setting the ClientSizeCore. (Still need to figure out handling
7704             x/y coords there)
7705         * XplatUIX11.cs:
7706           - When we're explicitly setting the X/Y position of a non-Child
7707             window, let the WM know. Metacity really wants this.
7708
7709 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7710
7711         * ThemeNice.cs: Added CPDrawButton
7712
7713 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7714
7715         * ThemeNice.cs: Changed the color for focused buttons and activated
7716           the arrows for small scroll buttons.
7717
7718 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7719
7720         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
7721           anymore. Changed some method modifiers to protected (virtual)
7722         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
7723           changes
7724         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
7725           Updated drawing of menus, buttons and progressbars; added
7726           CPDrawBorder3D 
7727
7728 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7729
7730         * ImageListStreamer.cs: implemented serialization/deserialization
7731         of the images.
7732
7733 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
7734
7735         * ThemeWin32Classic.cs:
7736           - Removed all the DrawFrameControl stuff; CPDrawButton,
7737             CPDrawCheckBox and CPDrawRadioButton are now handled directly
7738             inside the methods
7739           - Updated and corrected the drawing code of CPDrawButton,
7740             CPDrawCheckBox and CPDrawRadioButton to better match ms
7741           - Updated theme checkbox and radiobutton code to use the CP*
7742             methods
7743
7744 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7745
7746         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
7747           bug is fixed
7748
7749 2006-03-31  Jackson Harper  <jackson@ximian.com>
7750
7751         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
7752         sometimes.
7753         * UpDownBase.cs: Don't CreateGraphics manually, use a
7754         Refresh. Ideally we would invalidate the correct areas here.
7755
7756 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7757
7758         * XplatUIX11.cs: 
7759           - We now track the mapping state of windows. If a window (or 
7760             one of it's parents) is not mapped we no longer permit
7761             WM_PAINT messages to be generated since we'd otherwise get 
7762             lots of BadMatch X errors. Jackson did all the work figuring
7763             out the problem.
7764           - Destroying the caret if the window it's contained in is 
7765             destroyed. Can't use regular DestroyCaret method since it
7766             might fall into a drawing function (trying to remove the
7767             caret) and with that generate new BadMatch errors. Again,
7768             Jackson tracked this down.
7769           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
7770             make sure we send the messages to all windows. (The old code
7771             would send the WM_DESTROY to the window, and then all child
7772             windows would be 'gone' because the WM_DESTROY handle lookup
7773             would no longer find the destroyed window)
7774         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
7775         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
7776
7777 2006-03-31  Jackson Harper  <jackson@ximian.com>
7778
7779         * ScrollableControl.cs: Dont recalc if we are not visible.
7780
7781 2006-03-31  Mike Kestner  <mkestner@novell.com>
7782
7783         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
7784         the visibility branch.
7785
7786 2006-03-31  Jackson Harper  <jackson@ximian.com>
7787
7788         * ScrollBar.cs: Cap values when incrementing/decrementing.
7789
7790 2006-03-31  Mike Kestner  <mkestner@novell.com>
7791
7792         * MenuAPI.cs: setup menu.tracker for popup/context menus.
7793         * ToolTip.cs: guard against timer expirations with no active control.
7794         Not sure why it happened.
7795
7796 2006-03-31  Mike Kestner  <mkestner@novell.com>
7797
7798         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
7799         text.
7800         * ToolTip.cs: Position the tooltip based on where the cursor is at
7801         popup time, not at MouseEnter time.  Add a Down state so that we don't
7802         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
7803         positioning offset. Lookup DisplaySize at positioning time, since it
7804         can theoretically change during invocation.
7805         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
7806         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
7807
7808 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7809
7810         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
7811           Fixes behaviour when the Text property of the box is String.Empty
7812
7813 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
7814
7815         * XplatUIX11.cs: Only send mouseleave for our client windows, not
7816           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
7817           a window)
7818
7819 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7820
7821         * FileDialog.cs: Visual enhancement for the popup buttons in 
7822           PopupButtonPanel
7823
7824 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7825
7826         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
7827           code
7828
7829 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
7830
7831         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
7832           highlighted menu items to match ms
7833
7834 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
7835
7836         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
7837
7838 2006-03-30  Mike Kestner  <mkestner@novell.com>
7839
7840         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
7841         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
7842         go active to account for HotLight to Selected transition.
7843         * MenuItem.cs: add internal Selected prop. Fill out the Status
7844         property by calculating it from item info. Add HotLight,
7845         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
7846
7847 2006-03-30  Mike Kestner  <mkestner@novell.com>
7848
7849         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
7850
7851 2006-03-29  Jackson Harper  <jackson@ximian.com>
7852
7853         * Form.cs: Implement TODO.
7854
7855 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
7856
7857         * PrintPreviewDialog.cs: Implemented missing methods and events; still
7858           missing proper dialog setup in the constructor
7859
7860 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
7861
7862         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
7863         * Control.cs:
7864           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
7865           - Fixed ResetBindings and removed TODO
7866           - Added check for cross-thread calls to get_Handle()
7867           - Added Marshaller attribute for set_Font to satisfy class status
7868         * FontDialog.cs: Removed TODOs that seemed implemented
7869         * UpDownBase.cs: Removed unneeded TODO and Fixme
7870         * MessageBox.cs: Implemented support for Default button and removed TODO
7871         * FileDialog.cs: Removed obsolete TODO
7872         * DomainUpDown.cs: Removed obsolete TODO
7873         * ButtonBase.cs: Removed obsolete TODO
7874         * XplatUIWin32.cs: Removed obsolete TODO
7875         * Form.cs:
7876           - Removed obsolete TODO
7877           - Calling CheckAcceptButton when the acceptbutton is changed to allow
7878             internal status updates
7879           - Making sure the active control is selected when the control is created
7880         * CurrencyManager.cs: Removed obsolete TODO
7881
7882 2006-03-29  Mike Kestner  <mkestner@novell.com>
7883
7884         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
7885         of PrintPreviewDialog and RichTextBox.
7886
7887 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7888
7889         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
7890           DarkDark, Light and LightLight colors for a specific color
7891         * ThemeWin32Classic.cs:
7892           - Use Button drawing code to draw RadioButtons and CheckBoxes with
7893             Appearance = Button 
7894           - Make use of the new ResPool helper CPColor
7895           - Draw ProgressBar and StatusBar with correct 3D borders
7896
7897 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7898
7899         * ColorDialog.cs: Return selected color. Fixes bug #77940.
7900
7901 2006-03-28  Mike Kestner  <mkestner@novell.com>
7902
7903         * ListView.cs: fix Icon layout to plan for scrollbar widths when
7904         calculating col/row counts.
7905
7906 2006-03-28  Mike Kestner  <mkestner@novell.com>
7907
7908         * ColumnHeader.cs:
7909         * ListView.cs:
7910         * ListViewItem.cs:
7911         * Menu.cs: 
7912         switch to explicit interface method implementation for some methods
7913         corcompare identifies as inconsistent with MS.
7914
7915 2006-03-28  Mike Kestner  <mkestner@novell.com>
7916
7917         * MainMenu.cs: 
7918         * Menu.cs:
7919         add a few missing methods from the class status output.
7920
7921 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
7922
7923         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
7924           correct.
7925
7926 2006-03-28  Mike Kestner  <mkestner@novell.com>
7927
7928         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
7929
7930 2006-03-27  Mike Kestner  <mkestner@novell.com>
7931
7932         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
7933         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
7934
7935 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
7936
7937         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
7938
7939 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7940
7941         * ThemeWin32Classic.cs:
7942           - GroupBox: Inserted a little gap between the text and the lines
7943             on the right side
7944           - Made the code in CPDrawBorder3D more readable
7945           - Corrected the drawing location of the up and down arrows in 
7946             CPDrawScrollButton
7947
7948 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7949
7950         * ControlPaint.cs: Corrected line widths in DrawBorder for
7951           ButtonBorderStyle Inset and Outset
7952
7953 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7954
7955         * ThemeWin32Classic.cs:
7956           - Rewrote the totally broken CPDrawBorder3D method. That was
7957             one of the main problems for the terrific ThemeWin32Classic
7958             look
7959           - Updated and corrected Button drawing
7960           - Correct the dimensions of the SizeGrip to match ms ones
7961           - Removed a small drawing glitch in DrawComboBoxEditDecorations
7962         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
7963           Border3DStyle.Sunken to match ms.
7964
7965 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7966
7967         * ThemeWin32Classic.cs: First small part of the "de-uglify
7968           ThemeWin32Classic" effort, SizeGrip
7969
7970 2006-03-24  Jackson Harper  <jackson@ximian.com>
7971
7972         * XplatUIX11.cs: Give a max idle time of one second, this matches
7973         MS and forces an Idle event every second when there are no other
7974         events in the queue.
7975
7976 2006-03-24  Mike Kestner  <mkestner@novell.com>
7977
7978         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
7979         * ListView.Item.cs: fix layout issues with null image lists and images
7980         smaller than checkbox size.
7981         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
7982         mode like MS does.  It's weird, but consistent.  ;-)
7983         Fixes #77890.
7984
7985 2006-03-24  Mike Kestner  <mkestner@novell.com>
7986
7987         * ListView.cs: Scroll wheel support for the item control.  Fixes
7988         #77839.
7989
7990 2006-03-23  Jackson Harper  <jackson@ximian.com>
7991
7992         * ScrollableControl.cs: Special case negative sized areas, not
7993         zero.
7994         * MonthCalendar.cs: Save the rect of the clicked date so we can
7995         use it for invalidation.
7996         - Try to cut down on the number of invalidates
7997         - Invalidate the rect the mouse is over and was over when moving
7998         the mouse, so we get the focus box following the cursor.
7999
8000 2006-03-23  Mike Kestner  <mkestner@novell.com>
8001
8002         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8003         focus rectangle drawing. Fixes #77835.
8004
8005 2006-03-23  Mike Kestner  <mkestner@novell.com>
8006
8007         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8008         the if and else if and reverting back to the original == check on the
8009         None conditional.
8010
8011 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8012
8013         * FontDialog.cs: Update the example panel if the selected index of
8014           the fontListBox changes.
8015
8016 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8017
8018         * FileDialog.cs: Make FileDialog remember which directory it was in
8019           last in the same execution.
8020
8021 2006-03-22  Mike Kestner  <mkestner@novell.com>
8022
8023         * FileDialog.cs: make the DropDownMenu on the toolbar display
8024         RadioChecks since they are mutually exclusive and that's what MS does.
8025
8026 2006-03-22  Mike Kestner  <mkestner@novell.com>
8027
8028         * Theme.cs: add Color param to CPDrawMenuGlyph.
8029         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8030         checks and radio marks and arrows are visible on highlighted items.
8031         * ControlPaint.cs: update to use new Theme signature.
8032
8033 2006-03-22  Mike Kestner  <mkestner@novell.com>
8034
8035         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8036         is active. Fixes #77870.
8037
8038 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8039
8040         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8041           to be focused/selected after startup
8042
8043 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8044
8045         * ColorDialog.cs: 
8046           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8047             CustomColors and ShowHelp properties
8048           - Some internal rewrites to get better results when using the
8049             ColorMatrix
8050
8051 2006-03-22  Mike Kestner  <mkestner@novell.com>
8052
8053         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8054         HoverSelection.  Fixes #77836.
8055
8056 2006-03-22  Mike Kestner  <mkestner@novell.com>
8057
8058         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8059         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8060         1, not 0.  Update ButtonSize based on a pixel count of the win32
8061         control.  Adjust the toolbar size/location for new button size.
8062
8063 2006-03-22  Jackson Harper  <jackson@ximian.com>
8064
8065         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8066         true.
8067         * ScrollBar.cs: When doing increments and decrements we need to
8068         set the Value property so that ValueChanged gets raised. A
8069         possible optimization here would be to make an internal SetValue
8070         that doesn't invalidate immediately.
8071         * ToolTip.cs: Tooltips get added to their container (when
8072         supplied) so they get disposed when the container is disposed.
8073         - Don't create tooltips for String.Empty. This prevents all these
8074         little 2-3 pixel windows from showing up when running nunit-gui
8075         and driving me mad.
8076         * Form.cs: Don't set topmost when setting the owner if the handles
8077         haven't been created yet.  The topmost set will happen when the
8078         handles are created.
8079
8080 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8081
8082         * XplatUIX11.cs:
8083           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8084           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8085             visible (to allow them to recalculate their sizes)
8086
8087 2006-03-21  Mike Kestner  <mkestner@novell.com>
8088
8089         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8090         methods. Removed a ton of redundant code.  Still not really happy with
8091         the border rendering, but I think that's mainly because of the
8092         ControlDarkDark being black instead of a dark grey. Depending on how 
8093         close we want to be, we might want to revisit those color choices.
8094         Among the new features added during the refactor were DropDownArrow
8095         pressed rendering, Disabled image rendering.  Proper flat appearance
8096         boundary rendering.  Removed the Divider and Wrapping dividers since I
8097         can't figure out any combination of themes and conditions to make the
8098         MS control draw a horizontal line on a toolbar despite what the
8099         Divider property docs indicate.
8100         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8101         conditions and incorrect layout.  Updated to coding standard.
8102         * ToolBarButton.cs: refactored layout and positioning code from
8103         ToolBar to here.  Invalidate wherever possible instead of forcing
8104         redraws of the whole toolbar. 
8105         (Known remaining issues: explicit ButtonSize smaller than provided
8106         images.)
8107
8108 2006-03-21  Mike Kestner  <mkestner@novell.com>
8109
8110         * ContextMenu.cs (Show): use the position parameter instead of just
8111         showing at the MousePosition.
8112
8113 2006-03-21  Jackson Harper  <jackson@ximian.com>
8114
8115         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8116         control handle this.
8117         * TreeNodeCollection.cs: If we are clearing the root node we need
8118         to reset top_node so calcs can still happen.
8119         * ThemeWin32Classic.cs: This is a Flags so we need to check
8120         properly.
8121         
8122 2006-03-21  Jackson Harper  <jackson@ximian.com>
8123
8124         * DataGrid.cs: Create columns when the binding context has been
8125         changed.
8126         * X11Structs.cs: Keysyms are uints.
8127         - Add size to fix build.
8128
8129 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8130
8131         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8132           XplatUIOSX.cs: 
8133           - Added ResetMouseHover method to allow controls to retrigger
8134             hovering if they need it more than once
8135           - Implemented MouseHoverTime and MouseHoverSize properties
8136         * Timer.cs: Start() must reset the interval
8137         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8138           properties
8139
8140 2006-03-21  Jackson Harper  <jackson@ximian.com>
8141
8142         * X11Keyboard.cs: improved layout detection. Move the nonchar
8143         tables into this file.
8144         * KeyboardLayouts.cs: Move the tables into resource files.
8145
8146 2006-03-21  Mike Kestner  <mkestner@novell.com>
8147
8148         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8149
8150 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8151
8152         * Mime.cs: Various speed optimizations. Looking up mime types
8153           is now 2 times faster than before
8154
8155 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8156
8157         * CreateParams.cs: Added internal menu field
8158         * Control.cs: 
8159           - Switched call order for UpdateBounds; now we always call
8160             the one that also takes ClientSize, and we're calculating the 
8161             client size via driver method in the others. The previous
8162             method of tracking client size by difference wasn't working
8163             for forms where even the starting client size wouldn't match
8164             the overall form size (due to borders) (Part of fix for #77729)
8165           - CreateParams(): Do not use parent.Handle unless the handle is
8166             already created. Causes havoc with Nexxia and throws off our
8167             creation of controls
8168         * XplatUIX11.cs:
8169           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8170           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8171             method (consolidates code)
8172           - Changed RequestNCRecalc to use new PerformNCCalc method
8173           - Added calls to RequestNCRecalc when menus and borders are changed
8174             to allow app to set NC size. (Part of fix for #77729) This matches
8175             when MS send a WM_NCRECALC on Win32 windows.
8176           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8177             (Part of fix for #77729). This matches what MS does, they also
8178             send that message when the form is made visible.
8179           - XException.GetMessage: Improved usability of X errors by including
8180             a translation of the window into Hwnd and Control class
8181           - Improved debug info for window creation, reparenting and destruction
8182           - Created helper method WindowIsMapped() [Currently not used]
8183         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8184         * Form.cs:
8185           - CreateParams: Now setting our menu on the new internal menu field
8186           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8187             avoid calculating the same property twice
8188         * Hwnd.cs:
8189           - Improved usability of ToString() for debugging purposes
8190           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8191             determine the height of the menu, instead of just the font. This
8192             required to also create a graphics context and to keep a bmp 
8193             around (for performance reasons)
8194
8195 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8196
8197         * MenuAPI.cs: Added OnMouseUp method
8198         * Form.cs:
8199           - Now remembering the requested client size, avoids size errors
8200           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8201             instead of base if the menu is active. This is required due to
8202             control now capturing and releasing on down/up and it would
8203             prematurely release our menu capture
8204
8205 2006-03-17  Jackson Harper  <jackson@ximian.com>
8206
8207         * KeyboardLayouts.cs: Add the czech layouts.
8208
8209 2006-03-16  Jackson Harper  <jackson@ximian.com>
8210
8211         * Control.cs: Use the viewport space when sizing not the controls
8212         client size, so things like ScrollableControl that effect the
8213         viewport size (when scrollbars are added) are computed correctly.
8214         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8215         of ManagerEntrys.
8216         - Handle creating BindingManagers for null data sources.
8217         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8218         source, otherwise when rows are added they are added to the 'fake'
8219         datasource and we will crash when trying to set the position in
8220         those rows.
8221         - Use Implicit scrollbars on the datagrid so they arent
8222         selectable.
8223         
8224 2006-03-16  Jackson Harper  <jackson@ximian.com>
8225
8226         * Binding.cs:
8227         * InternalWindowManager.cs:
8228         * MdiWindowManager.cs:
8229         * X11Keyboard.cs: I really want Mike to love me again (fix
8230         compiler warnings).
8231
8232 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8233
8234         * DataGrid.cs:
8235           - OnMouseDown: Switch to editing mode when clicking on the cell
8236                          even if we're clicking on the cell that's currently 
8237                          selected
8238           - ProcessGridKey: Left/Right now wrap like MS.Net does
8239           - ProcessGridKey: Tab now knows to add a new row when tab is
8240                             pressed in the cell of the last column of the 
8241                             last row
8242           - ProcessGridKey: Enter now adds another row  if pressed in the last
8243                             row and selectes the new row, same column cell
8244           - ProcessGridKey: Home/End navigate columns, not rows, like 
8245                             originally implemented
8246           - Broke ProcessKeyPreview code out into an extra Internal method
8247             so it can be called from the edit code
8248         * DataGridTextBox.cs (ProcessKeyMessage):
8249           - Switched to accept Tab keypresses
8250           - Added F2 handling to allow jumping to the end of the edited cell
8251           - Added logic to allow moving caret left/right inside edited cell
8252             and making the edited cell jump when the caret hits cell borders
8253           - Tab and Enter are now passed to the datagrid after being handled
8254         * TextBoxBase.cs:
8255           - Removed capture code now that Control handles it
8256           - set_SelectionStart now ensures caret is visible
8257
8258 2006-03-16  Jackson Harper  <jackson@ximian.com>
8259
8260         * TrackBar.cs: Debackwards the increment/decrement for handling
8261         mouse clicks on the bar with vertical trackbars.
8262         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8263         bottom to match MS.
8264
8265 2006-03-16  Mike Kestner  <mkestner@novell.com>
8266
8267         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8268         consistent with the MS control. Fix a bug in
8269         SelectedListViewItemCollection.Clear that was pissing me off for the
8270         better part of a day because the collection was being altered
8271         underneath us as we walked the list.
8272
8273 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8274
8275         * Control.cs: Not sure how we could miss this so long, but it seems
8276           that MS.Net has Capture set all the way from before calling 
8277           OnMouseDown through sending the mouse events until after
8278           OnMouseUp. This will fix DataGrid's selection being set to end
8279           at the location of the MouseUp.
8280
8281 2006-03-15  Jackson Harper  <jackson@ximian.com>
8282
8283         * BindingContext.cs: Check the binding after its added so that it
8284           can initialize the binding managers and hookup to events.
8285         * Binding.cs: Data members seem to sometimes include rows/cols in
8286           the format Row.Column we now take this into account.
8287           - Hookup to the position changed event so we can update the
8288           control when the position has changed in the data set.
8289         * CurrencyManager.cs: Take into account the row/col naming
8290           convention when creating dataset tables.
8291         * BindingContext.cs: Using a newer better way of storing
8292           datasource/datamember pairs.  Hopefully this better matches MS for
8293           looking up binding managers.
8294
8295
8296 2006-03-15  Jackson Harper  <jackson@ximian.com>
8297
8298         * BindingContext.cs: The currency manager needs the data member
8299         name, if the member is a data set we use the name to find the
8300         correct table.
8301         * CurrencyManager.cs: When creating the list prefer an IList over
8302         an IListSource.
8303         - Attempt to create a DataTable from a DataSet (TODO: might need
8304         some better error checking here, although MS doesn't seem to have much)
8305         - If we have a DataTable create a view and use it as our list.
8306
8307 2006-03-15  Mike Kestner  <mkestner@novell.com>
8308
8309         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8310         keyboard navigation. Support Up/Down/Left/Right selection correctly
8311         for all 4 View modes.
8312         * ListViewItem.cs: add internal row/col fields for icon layouts.
8313
8314 2006-03-15  Jackson Harper  <jackson@ximian.com>
8315
8316         * TabControl.cs: Redraw the tabs when we resize so their newly
8317         calculated sizes are drawn on screen.
8318         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8319         composite characters.
8320         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8321         - filter events so that composite characters can be created
8322         patches by peter
8323         * X11Structs.cs: Add XIMProperties enum.
8324
8325 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8326
8327         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8328           unless it's created
8329
8330 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8331
8332         * Control.cs (PerformLayout): We don't need to consider visiblity
8333           for anchoring, only for docking. This fixes 'whacky' alignment
8334           in listbox and other controls that use implicit scrollbars after
8335           the previous PerformLayout patch
8336         * ListBox.cs: Switched to use implicit scrollbars
8337           
8338 2006-03-14  Mike Kestner  <mkestner@novell.com>
8339
8340         * ToolBar.cs: 
8341         * VScrollBar.cs:
8342         - chain up the "new event" overrides to base and use
8343         OnEvent to raise them.  Part of fix for bug #76509.
8344
8345 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8346
8347         * FileDialog.cs: Do not select an item in the parent directory
8348           on backspace
8349
8350 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8351
8352         * Control.cs (PerformLayout): It would seem that we considered
8353           invisible windows for our layout. Not quite the right thing
8354           to do. Now we don't any longer, thereby fixing bug #76889.
8355
8356 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8357
8358         * Control.cs (CanFocus): I goofed. A control can have focus 
8359           even though it's not selectable. Made it match MS docs.
8360
8361 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8362
8363         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8364           center by default (fixes #76895)
8365         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8366           all uses of Border3DSides.All with the explicit ORd together
8367           Left|Right|Top|Bottom because I assume that nobody was aware 
8368           that All also implies a center fill. Most places I checked had
8369           a fill right above.
8370         * ProgressBarStyle.cs: Added
8371
8372 2006-03-13  Mike Kestner  <mkestner@novell.com>
8373
8374         * ListView.cs: fix breakage in drag shadow header positioning 
8375         from Peter's csc compilation fix.
8376
8377 2006-03-13  Mike Kestner  <mkestner@novell.com>
8378
8379         * ListView.cs: fix NRE produced by backspacing twice in a focused
8380         FileDialog.
8381
8382 2006-03-13  Mike Kestner  <mkestner@novell.com>
8383
8384         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8385
8386 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8387
8388         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8389           be changed
8390         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8391           the allowed size before making programmatic size changes
8392
8393 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8394
8395         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8396           set, metacity is broken and will still use the emty sizes in 
8397           the struct. (Fix for #77089)
8398
8399 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8400
8401         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8402           WindowExStyles and marked both enums as Flags
8403         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8404           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8405           to match WindowStyles split
8406         * XplatUIX11.cs:
8407           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8408           - Updated to match WindowStyles split
8409         * XplatUIWin32.cs:
8410           - Fixed FosterParent creation, was using ExStyle on the Style field
8411             (This should help with Popup focus issues)
8412           - Updated to match WindowStyles split
8413
8414 2006-03-13  Jackson Harper  <jackson@ximian.com>
8415
8416         * MdiWindowManager.cs: Use the system menu height. Fixes some
8417         strange sizing issues.
8418
8419 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8420
8421         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8422         * TextBoxBase.cs:
8423           - Scroll to caret after inserting text (#77672)
8424           - Make scroll range one pixel higher, fixes off-by-one error (and
8425             makes underlines visible on the last line)
8426
8427 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8428
8429         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8430           the keyboard state from being stuck with keys in 'pressed' state when
8431           focus is switched away via keyboard
8432         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8433           reset the keyboard if no X11 KeyUp events are expected to come
8434         * X11Structs.cs: Switched type of Visible to bool to match driver
8435
8436 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8437
8438         * TextControl.cs:
8439           - Switched caret to be just 1 pixel wide, matches MS and looks less
8440             clunky
8441           - Moved caret display 1 pixel down from the top of the control
8442             to improve view
8443           - InsertCharAtCharet: Update the selection start if moving the caret
8444             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8445           - No longer always creating the caret when the caret methods are
8446             called. Only the actual ShowCaret/HideCaret will do that now
8447           - Only setting caret visible if the owner control has focus
8448           - UpdateView: Added invalidation-shortcut logic for center and right 
8449             aligned text. Previously we'd update all according to the left
8450             logic which caused drawing errors. Also fixed height of invalidated
8451             areas, now properly invalidating the whole area (was off-by-one)
8452           - owner_HandleCreated: Always generate the document when the
8453             handle is created; this ensures that 
8454         * TextBoxBase.cs:
8455           - Fixed situation where caret would disappear under the right
8456             window border, also improved scrolling behaviour on left-
8457             aligned textboxes
8458           - Fixed right-aligned textboxes to have a border to the
8459             right instead of the caret being under the right border
8460         * XplatUIX11.cs:
8461           - Switched from 'nested' to simple visible/not visible tracking 
8462             for caret (part of fix for #77671)
8463           - No longer passing through translated FocusIn/FocusOut messages
8464             since we were notifying too often and the wrong windows. Instead
8465             we just notify our focussed window of receiving or loosing focus
8466         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8467           counting for caret to simple visible yes/no behaviour (part of 
8468           fix for #77671)
8469
8470 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8471
8472         * Mime.cs: Remove debug code...
8473
8474 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8475
8476         * MimeGenerated.cs: Removed
8477         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
8478           and subclasses) from /usr/(local/)share/mime and
8479           $HOME/.local/share/mime.
8480
8481 2006-03-10  Jackson Harper  <jackson@ximian.com>
8482
8483         * MdiWindowManager.cs: Recalc the NC area when a window is
8484         maximized/restored so that the menu area is drawn on forms that
8485         don't have a menu.
8486
8487 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8488
8489         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8490           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8491           us to force a WM_NCCALCRESIZE message being sent. This is needed
8492           for MDI maximizing.
8493
8494 2006-03-10  Jackson Harper  <jackson@ximian.com>
8495
8496         * Form.cs: We need to use the ActiveMenu when calculating menu
8497         height.
8498         - Fix nullref when the window manager hasn't been created yet.
8499         * Control.cs: Fix nullref when we try to bring a control to the
8500         front that has no parent.
8501         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8502         height.
8503         - Add a dummy item to the maximized menu so it always has the
8504         correct height. Otherwise when there are no menus we don't get our
8505         icon and buttons.
8506         
8507
8508 2006-03-10  Jackson Harper  <jackson@ximian.com>
8509
8510         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8511         stuff.
8512         * Form.cs: Make the window_state internal so the window managers
8513         can track it.
8514         - When an MDI child is maximized let its window manager create the
8515         main menu (so it can add its icon).
8516         - Notify the window managers of state changes
8517         - Let the window manager paint its buttons and handle button
8518         clicks on the menu when it is maximized.
8519         * InternalWindowManager.cs: Move the prev_bounds into the mdi
8520         window manager, since tool windows don't use it, only mdi windows.
8521         - Tell the main form that we don't want it to handle NCPAINT
8522         itself to avoid extra painting.
8523         - Handle clicks on a maximized windows menu.
8524         - Handle window state changes
8525         - Handle minimize/maximize clicks correctly by setting the window state.
8526         * MdiWindowManager.cs: Add an icon menu that (the menu you get
8527         when clicking on the forms icon).
8528         - New method to create a forms maximized menu. This is its normal
8529         menu + an icon.
8530         - Handle window state changes.
8531         - Handle sizing of maximized windows.  Maximized windows are just
8532         drawn bigger then the parent visible area. All controls are still
8533         there, they are just outside the visible area (this matches windows).
8534         * MdiClient.cs: No scrollbars when a child window is maximized.
8535         - Let the children windows figure out how big they should be when
8536         sizing maximized windows.
8537         - Implement a version of ArrangeIconicWindows somewhat similar to
8538         Windows version.  There are some little differences, but I don't
8539         think any app will rely on the layout of minimized mdi windows.
8540
8541 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8542
8543         * Padding.cs: Several fixes to allow compiling with csc 2.0
8544
8545 2006-03-09  Jackson Harper  <jackson@ximian.com>
8546
8547         * Menu.cs:
8548         * MenuItem.cs: Cheap hack so we can add items to the list without
8549         the events being raised.  This allows adding mdi items during
8550         drawing. TODO: Should probably find a better time to add the items.
8551
8552 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8553
8554         * ThemeWin32Classic.cs:
8555           - CheckBox_DrawText: Added logic to not wrap if not enough space
8556             is available (Fix for bug #77727)
8557           - RadioButton_DrawText: Added logic not to wrap if not enough
8558             space is available (Fix for bug #77727). Also removed some
8559             duplicate code, DrawString always drawing the regular text
8560             before hitting the if statement.
8561
8562 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
8563
8564         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
8565
8566 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8567
8568         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
8569         * ContainerControl.cs: Partial implementation of some 2.0 scaling
8570           methods. Moved the new 2.0 properties into alphabetical order with
8571           other properties and added MonoTODO tags
8572
8573 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8574
8575         * AutoScaleMode.cs: Added. Fix build.
8576
8577 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8578
8579         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8580           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
8581           and was requiring premature handle creation for calls from above
8582         * Form.cs, Control.cs: Removed handle arguments from calls to
8583           CalculateClientRect()
8584
8585 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8586
8587         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
8588           drag_column.column_rect is MarshalByRef and can't be used that way
8589
8590 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8591
8592         * AxHost.cs: Added deserialization constructor for 
8593           AxHost+State (fixes 77743)
8594
8595 2006-03-09  Mike Kestner  <mkestner@novell.com>
8596
8597         * ListView.cs: 
8598         - Added column drag reordering for details view.
8599         - fixed behavior when mouse is dragged off column and
8600         AllowColumnReorder is false.
8601         * ColumnHeader.cs: clone the format too in Clone.
8602         * Theme.cs: add DrawListViewHeaderDragDetails method.
8603         * ThemeWin32Classic.cs:
8604         - impl new method for drawing drag column shadows and targets.
8605         - support column offset for details mode in DrawListViewItem.
8606
8607 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8608
8609         * TextControl.cs: Reset the char_count when the document is cleared
8610           (Fixes bug reported on mono-winforms mailing list)
8611
8612 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8613
8614         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
8615           of calling base we simply process the key ourselves, since both
8616           DefWindowProc and the handled method would set m.Result. 
8617           (Fixes #77732)
8618
8619 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8620
8621         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
8622           method also moves the window; instead implemented a copy of
8623           Control.ScaleCore (Part of fix for #77456)
8624         * TextBoxBase.cs: 
8625           - Created new CreateGraphicsInternal method to allow providing
8626             a graphics context when no handle is created without triggering
8627             handle creation. (Part of fix for #77456)
8628           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8629         * TextControl.cs: 
8630           - Switched Constructor to require TextBoxBase instead of Control (to
8631             allow uncast access to CreateGraphicsInternal)
8632           - Safeguarded use of owner.Handle property. No longer accessing it
8633             unless the handle is already created.
8634           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8635           - Now triggering a recalc when owning control becomes visible
8636         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
8637           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
8638           premature handle creation (Part of fix for #77456)
8639         * Control.cs:
8640           - We now only destroy our double-buffering buffers when the
8641             control is resized or disposed, but not when visibility
8642             changes. (The code even re-created them twice every time)
8643           - Now requiring a redraw of the buffer on visibility changes
8644             (fixes bug 77654 part 2)
8645           - Not passing OnParentVisibleChanged up unless the control
8646             is visible
8647           - CanFocus: Fixed to match MS documentation
8648           - Focus: Fixed to return actual focus state and to check if
8649             setting focus is legal before setting it
8650
8651 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
8652
8653         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
8654           when to draw focus rectangle by looking at parent focus and
8655           selected state instead. This fixes TabPages on Linux sometimes
8656           having none or multiple focus rectangles.
8657         * XplatUIX11.cs (SetFocus): 
8658           - Don't set the focus if the same window already has focus
8659           - Use SendMessage instead of PostMessage (like it's Win32
8660             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
8661             to match MS behaviour
8662         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
8663           are not selectable.
8664
8665 2006-03-07  Jackson Harper  <jackson@ximian.com>
8666
8667         * PictureBox.cs: Revert line I accidently committed last week.
8668
8669 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
8670
8671         * Control.cs: 
8672           - Added new IsRecreating and ParentIsRecreating properties to
8673             allow testing if RecreateHandle has been called on ourselves
8674             or one of our parents
8675           - WndProc(WM_DESTROY): If our control handle is being recreated
8676             we immediately need to create the handle when receiving the
8677             destroy, that way our child windows find a valid parent handle
8678             when they themselves are being recreated upon WM_DESTROY receipt
8679             (fix for bug #77654 part 1)
8680         * XplatUIX11.cs:
8681           - DestroyWindow: WM_DESTROY must be sent to our own window before
8682             notifying any child windows. MS documents that child windows
8683             are still valid when WM_DESTROY is received. (Control now relies on
8684             this behaviour)
8685           - Added some fine-grain debug options
8686
8687 2006-03-06  Jackson Harper  <jackson@ximian.com>
8688
8689         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
8690         box and base calculations off this.
8691         * MdiChildContext.cs:
8692         * MdiWindowManager.cs: Don't need to ensure scrollbars here
8693         anymore.
8694         
8695 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
8696
8697         * Splitter.cs: In situations where the affected control is added
8698           to the parent's control list after the splitter, we would not
8699           populate affected. Now we try populating it on mousedown, if
8700           it's not already set, and force it to be re-set whenever our
8701           parent changes.
8702
8703 2006-03-03  Matt Hargett  <matt@use.net>
8704
8705         * Control.cs: implement Control.Padding
8706         * Padding.cs: -Padding.All returns -1 when constructing with the
8707         implicit default ctor
8708         -Padding.ToString() matches MS.NET
8709         * ContainerControl.cs: implement
8710         ContainerControl.AutoScaleDimensions
8711         * ListControl.cs: implement ListControl.FormattingEnabled
8712         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
8713         * ButtonBase.cs:
8714         * TabPage.cs: Implement UseVisualStyleBackColor.
8715         * PictureBox.cs: Implement PictureBox.InitialImage.
8716
8717 2006-03-03  Mike Kestner  <mkestner@novell.com>
8718
8719         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
8720         event declarations to proxy to base event.
8721         * ListViewItem.cs: update to use ItemControl.
8722         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
8723         * ThemeWin32Classic.cs: update to new ListView theme API and fix
8724         column header label rendering for 0 width columns.
8725
8726 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
8727
8728         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
8729           that causes the control to be created. Fixes #77476.
8730
8731 2006-03-02  Jackson Harper  <jackson@ximian.com>
8732
8733         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
8734         expose_pending.
8735
8736 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
8737
8738         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
8739           passed in for the EventArgs (fixes #77690)
8740
8741 2006-03-01  Jackson Harper  <jackson@ximian.com>
8742
8743         * ScrollBar.cs: Refresh afterbeing resized.
8744
8745 2006-02-28  Mike Kestner  <mkestner@novell.com>
8746
8747         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
8748         Clean up a tracker compile warning.
8749         * MenuItem.cs: add internal PerformPopup method.
8750         [Fixes #77457]
8751
8752 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8753
8754         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
8755           implicit expose) when the text is set to null
8756
8757 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
8758
8759         * RichTextBox.cs (FlushText): When newline is true, we always
8760           need to split the line, even if no text is on it and we may
8761           never eat newlines. (Fixes #77669)
8762
8763 2006-02-28  Mike Kestner  <mkestner@novell.com>
8764
8765         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
8766         and set Selected instead.
8767         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
8768         collections.
8769
8770 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8771
8772         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
8773
8774 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
8775
8776         * FontDialog.cs:
8777           - Got rid of the panel. All controls are now directly added to
8778             the dialog form
8779           - It is now possible to set a font with the Font property
8780           - MinSize and MaxSize property do now what they should
8781           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
8782           - Searching and selecting a font with the font textbox works now,
8783             the same applies to the style and size textbox
8784           - Draw the correct 3D border in the example panel
8785           - Fixed a little mem leak (unused fonts didn't get disposed)
8786           - Many other internal updates/rewrites...
8787           - Fix typo
8788
8789 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8790
8791         * TextControl.cs: 
8792           - InsertRTFFromStream: Added 'number of characters inserted' argument
8793           - set_SelectedRTF: Now using the number of characters to calculate
8794             the new location for the selection and cursor (x/y cannot be used
8795             due to potentially already wrapped text)
8796
8797 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
8798
8799         * TextControl.cs: Added property and implemented means to allow 
8800           disabling recalculation of a document (can be used to speed up
8801           multiple inserts and is needed to make RTF inserts predictable, see
8802           bug #77659)
8803         * RichTextBox.cs: Using the new NoRecalc property of Document to
8804           keep x/y insert locations predictable. Also makes it faster inserting
8805           large chunks of RTF
8806
8807 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8808
8809         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
8810           it's easier for a child control to handle the other messages without
8811           having to duplicate the special functionality
8812         * TextBoxBase.cs
8813           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
8814             code to handle processing the key ourselves, in order to get 
8815             access to the result of KeyEventArgs.Handled. We now only call 
8816             ProcessKey if they key hasn't been handled already. Fixes #77526.
8817           - set_Text: If null or empty string is given, just clear the 
8818             document. Fixes part of #77526
8819
8820 2006-02-27  Jackson Harper  <jackson@ximian.com>
8821
8822         * SizeGrip.cs: Paint the background color before painting the grip
8823         so things look right.
8824         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
8825
8826 2006-02-27  Mike Kestner  <mkestner@novell.com>
8827
8828         * ListView.cs:
8829           - Restructure layout and invalidation model to remove a ton of
8830           flicker from the control and speed up performance in general.
8831           - Add manual column resize, flickers like crazy, but I already have
8832           some ideas on how I'll fix that. (#76822)
8833           - Merge the three Icon-based views into a single layout method.
8834           - Move item selection interaction logic from the item since 
8835           interaction with the collections is more appropriate to the view.
8836           - Deselection on non-item clicks.
8837         * ListViewItem.cs:
8838           - Encapsulate most of the layout. Add some internal props to trigger
8839           layout.  Move to a model where Items invalidate themselves instead
8840           of just invalidating the whole control every time something changes.
8841           - Invalidate on Text/Caption changes.
8842           - switch to an offset based layout model to avoid having to absolute
8843           position every element on item moves.
8844           - correct checkbox layout to conform to MS layout.
8845         * ThemeWin32Classic.cs:
8846           - refactor some column header drawing code.
8847           - fix string justification for column headers (#76821)
8848           - make SmallIcon labels top justified for compat with MS impl.
8849         * ThemeClearlooks.cs:
8850           - adjust to new ListViewItem internal checkbox bounds api.
8851
8852 2006-02-27  Jackson Harper  <jackson@ximian.com>
8853
8854         * Control.cs:  Change where implicit controls fall in the zorder.
8855         They are now on top of all children.
8856         - Synced AddImplicit code with Add
8857         - Removed unused enumerator.
8858         * SizeGrip.cs: Remove the TODO as its been TODONE.
8859
8860 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
8861
8862         * TextControl.cs(Insert): Combine the last lines unless the insertion
8863           string ends with \n\n, otherwise we leave one line too many (Fixes
8864           something I noticed with the testapp for #77526; the bug itself was
8865           already fixed in the previous checkin)
8866
8867 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
8868
8869         * RichTextBox.cs:
8870           - SelectionColor and SelectionFont methods no longer set absolute
8871             styles. Instead, the keep font or color respectively (This 
8872             resolves a long-standing FIXME in the code)
8873           - When flushing RTF text, the insert code now considers text trailing
8874             behind the insertion point (Fixes the bug where when replacing
8875             the selected text via SelectedRTF the remainder of the line behind 
8876             the selection would stay on the first insertion line)
8877         * TextBoxBase.cs:
8878           - AppendText now updates the selection points after inserting text
8879           - AppendText now ensures that the last tag (sometimes 0-length) of
8880             the document is used for the style information (Fixes part of 
8881             bug #77220)
8882         * TextControl.cs:
8883           - Created new FontDefiniton class to allow describing partial style
8884             changes
8885           - StreamLine() now takes a lines argument, to allow it to decide
8886             whether an encountered zero-length tag is the last in the document
8887             (which must be kept to not loose the font/color contained in it,
8888             for later appends)
8889           - Created Combine() and Split() methods for Marker structs, to 
8890             support marker updates due to reformatted documents (soft line
8891             wraps)
8892           - Implemented Document.CaretTag setter
8893           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
8894             of the last line (Not the cause, but also exposed by bug #77220)
8895           - Added LineTag argument to InsertString method, to allow callers
8896             to force a certain tag to be used (required to force use of the
8897             trailing zero-length tag of a document)
8898           - Now updating markers in Combine(), to avoid stale tag markers
8899           - Added some method descriptions to aid maintenance
8900           - Implemented new FormatText concept, allowing additive/subtractive
8901             formatting by only specifying the components that are to be 
8902             changed. This was needed for resolving the RTB.SelectedColor/
8903             RTB.SelectedFont fixmes
8904           - Added Break() support method to allow breaking up linetags (used
8905             for partial formatting)
8906           - Added GenerateTextFormat() method. It is used for partial 
8907             formatting and allows to generate a full font/color from given
8908             attributes and an existing tag.
8909
8910 2006-02-26  Jackson Harper  <jackson@ximian.com>
8911
8912         * XplatUIX11.cs:  Use the correct caption height.
8913         - Translate hittest coordinates to screen coords to match MS.
8914         * XplatUIWin32.cs: When we create MDI windows we need to reset
8915         some of the style flags, so we get a nice blank window, and can
8916         draw all the decorations ourselves.
8917         - Set a clipping rectangle on the non client paint event, the
8918         window manager drawing code needs one.
8919         * Form.cs: The window manager needs to know when the window state
8920         has been updated.
8921         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
8922         don't need to factor in border and title sizes in these
8923         methods. TODO: Remove the args and fix the call points.
8924         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
8925         properly.
8926         - Let the driver set the cursors.
8927         - Improve active window handling
8928         - Correct sizes for title bars and buttons.
8929         - Match MS drawing better
8930         * MdiWindowManager.cs: We don't need to handle border style
8931         updates specially anymore.
8932         - Check for scrollbars when windows are done moving
8933         - Handle Active properly.
8934         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
8935         correctly. I am spewing the exception though, so we don't hide the
8936         bugs.
8937         
8938 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
8939
8940         * DataGridViewRowPostPaintEventArgs.cs,
8941           DataGridViewCellPaintingEventArgs.cs,
8942           DataGridViewRowCollection.cs,
8943           DataGridViewRowPrePaintEventArgs.cs,
8944           DataGridViewCell.cs: Clear a few warnings and implement a few
8945           exceptions that should be thrown.
8946
8947 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8948
8949         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
8950           'inheriting' our parent's (non-default) cursor. (Part of
8951            the fix for #77479)
8952
8953 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
8954
8955         * XplatUIX11.cs: Fixed cast to make csc happy
8956
8957 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8958
8959         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
8960           it's for the client area (part of fix for #77479 and needed
8961           for MDI window cursor handling)
8962         * XplatUIX11.cs
8963           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
8964             the appropriate default cursors and also passing the message
8965             up the parent chain 
8966           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
8967             for non-client areas
8968
8969 2006-02-15  Jackson Harper  <jackson@ximian.com>
8970
8971         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
8972         is a real MDI window
8973
8974 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
8975
8976         * X11DesktopColors.cs: Instead of checking the desktop session
8977           string for "KDE" check if it starts with "KDE"
8978
8979 2006-02-10  Jackson Harper  <jackson@ximian.com>
8980
8981         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
8982         systems).
8983
8984 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
8985
8986         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
8987           errors
8988         * ColorDialog.cs:
8989           - Got rid of the panel. All controls are now directly added to
8990             the dialog form
8991           - Changed to mono coding style
8992
8993 2006-02-10  Jackson Harper  <jackson@ximian.com>
8994
8995         * InternalWindowManager.cs: We don't need the set visibility to
8996         false hack anymore now that peter has written beautiful shutdown
8997         code.
8998
8999 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9000
9001         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9002           where already explicitly destroyed
9003
9004 2006-02-10  Jackson Harper  <jackson@ximian.com>
9005
9006         * MdiClient.cs: Handle the case where windows are too high or to
9007         the left and we need scrollbars.
9008
9009 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9010
9011         * MimeIcon.cs: Added some icons
9012         * FileDialog.cs:
9013           - Fixed bug #77477
9014           - Got rid of the panel. All controls are now directly added to
9015             the dialog form
9016           - Changed to mono coding style
9017           - On Linux "My Computer" and "My Network" will now show some
9018             more usefull information. A new class, MasterMount, gathers
9019             this information from /proc/mount. Updated MWFFileView to make
9020             use of this information
9021           - Fixed a bug that caused FileDialog to crash when
9022             ".recently_used" file had a zero size
9023           - FilterIndex does now what it should
9024           - Some Refactoring
9025         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9026             FileDialog changes
9027
9028 2006-02-09  Jackson Harper  <jackson@ximian.com>
9029
9030         * ComboBox.cs: Don't touch if null.
9031
9032 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9033
9034         * Cursor.cs: 64bit safeness fix
9035         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9036
9037 2006-02-09  Jackson Harper  <jackson@ximian.com>
9038
9039         * Form.cs: If a form is made into an MDI form update the styles so
9040         all the props can get set correctly.
9041         - Kill the mdi_container when we dont need it anymore.
9042         * InternalWindowManager.cs: Add missing NOT
9043
9044 2006-02-08  Jackson Harper  <jackson@ximian.com>
9045
9046         * InternalWindowManager.cs: Respek clipping when drawing MDi
9047         decorations.
9048
9049 2006-02-08  Jackson Harper  <jackson@ximian.com>
9050
9051         * Hwnd.cs: Add bits to track non client expose events.
9052         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9053         gives us a proper invalid rect and will allow for some nice
9054         optimizations with NC client drawing
9055         - MDI windows are children windows, so move their style handling
9056         into the child window block.
9057         * InternalWindowManager.cs: Remove a state reset that was
9058         getting invoked at the wrong time. Fixes managed windows getting
9059         into a 'stuck' captured state.
9060
9061 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9062
9063         * TextControl.cs (Document.ctor): Now initializing 
9064           selection_anchor. Fixes #77493
9065
9066 2006-02-07  Jackson Harper  <jackson@ximian.com>
9067
9068         * TrackBar.cs: The increment/decrements were backwards.
9069
9070 2006-02-07  Mike Kestner  <mkestner@novell.com>
9071
9072         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9073         to the instance itself.
9074
9075 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9076
9077         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9078           on ulongs and pointers, the size differs between 32bit and 64bit
9079           systems. 
9080
9081 2006-02-07  Mike Kestner  <mkestner@novell.com>
9082
9083         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9084         for 64 bit platforms to work around a metacity bug. 
9085
9086 2006-02-07  Jackson Harper  <jackson@ximian.com>
9087
9088         * TrackBar.cs: Process the input keys we need, and hookup to
9089         KeyDown instead of using WndProc, so we get key messages.
9090
9091 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9092
9093         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9094           machine we're on. 
9095         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9096           we need to translate the XdndVersion atoms array before sending it
9097
9098 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9099
9100         * XplatUIX11.cs: 
9101           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9102             number of bits for the property, not the number of bytes. The
9103             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9104             but would not crash since it specified 8 bits instead of 4 bits)
9105           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9106             defined as XID -> long in the C headers)
9107           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9108             references since those are now IntPtr to begin with
9109           - Switched all Atom.XXX 'int' casts to IntPtr casts
9110           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9111           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9112           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9113         * X11Structs.cs:
9114           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9115           - Changed atom in HoverStruct to be IntPtr
9116         * X11DnD.cs:
9117           - Removed local DllImports, switched code to use those from XplatUIX11
9118           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9119
9120 2006-02-06  Mike Kestner  <mkestner@novell.com>
9121
9122         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9123         method signatures in the import region.  There may still be some
9124         lingering struct marshaling issues, as I didn't drill down into those.
9125         Yet.
9126
9127 2006-02-06  Jackson Harper  <jackson@ximian.com>
9128
9129         * ComboBox.cs: Dont manually set the top_item, this is computed
9130         when the scrollbar position is set.
9131
9132 2006-02-06  Mike Kestner  <mkestner@novell.com>
9133
9134         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9135         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9136         usage of Atom needs to be mapped to IntPtr for example.  And there are
9137         likely other int/long issues to be addressed.
9138
9139 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9140
9141         * FileDialog.cs: One more...
9142
9143 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9144
9145         * FileDialog.cs: Next try
9146
9147 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9148
9149         * FileDialog.cs: First part of fix for #77464
9150
9151 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9152
9153         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9154           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9155           AcceptButton border drawing.
9156
9157 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9158
9159         * Form.cs: Moved positioning of form after auto scaling is applied,
9160           otherwise it would possibly use wrong form size.
9161
9162 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9163
9164         * Control.cs (RecreateHandle): No need to re-create any child
9165           controls, the child windows will get destroyed automatically by
9166           the windowing system or driver, and re-created when the handle
9167           is being accessed the first time. Fixes #77456
9168         * Form.cs: No longer setting the form to closing if the handle is 
9169           being recreated. This seems like the right thing to do, don't
9170           have a bug or testcase for this, though.
9171
9172 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9173
9174         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9175           controls to avoid unwanted side effects
9176
9177 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9178
9179         * Control.cs: 
9180           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9181             control. Fixes #77416.
9182           - DefaultSize is 0,0 for control
9183         * TextBoxBase.cs: 
9184           - DefaultSize is 100, 20
9185           - SetBoundsCore: Now enforcing the height, no matter if the provided
9186             height is more or less than the preferred one, as long as AutoSize
9187             is on
9188         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9189
9190 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9191
9192         * Control.cs:
9193           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9194             call unless both performLayout is true *and* we have a pending
9195             layout change
9196           - ResumeLayout: MS does not completely nest Suspend and Resume,
9197             they bottom out at 0, fixed our code to match that.
9198           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9199             SetBoundsCore, we were updating even when we shouldn't. This fixes
9200             swf-anchors mis-anchoring when resizing the app fast and lots.
9201           - UpdateDistances: Now only setting the left and top distance if 
9202             we have a parent and are not suspended, this is based on
9203             a suggestion by Don Edvaldson in bug #77355.
9204           - OnVisibleChanged: Fixed logic when to create the control. We may
9205             not create the control if we have no parent or if it's not visible;
9206             switched to using Visible property instead of is_visible field 
9207             since the property also considers parent states. This fixes a bug
9208             when starting Paint.Net
9209
9210 2006-02-02  Jackson Harper  <jackson@ximian.com>
9211
9212         * Form.cs: If the forms handle hasn't been created yet don't call
9213         into xplatui to make it top most, just set the topmost flag on the
9214         form in CreateParams
9215         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9216
9217 2006-02-01  Jackson Harper  <jackson@ximian.com>
9218
9219         * ScrollableControl.cs: Refactored the Recalculate method a
9220         little, this wasn't handling all the variants of bottom and right
9221         bars needed to be added and added/removed based on their
9222         counterparts being added/removed (which changes the drawable
9223         size). Also we special case client widths and heights of 0 and
9224         don't add the scrollbar for those.
9225
9226 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9227
9228         * XplatUIX11.cs: 
9229           - Added method to get AbsoluteGeometry(); currently unused, but might
9230             be used in the future, if we try again to figure out toplevel
9231             coordinates with some more crappy window managers
9232           - Added FrameExtents() method to retrieve the WM set decoration size
9233           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9234             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9235         * Hwnd.cs: 
9236           - Added whacky_wm tracking var for metacity
9237           - Added logic to have default menu height if the actual menu height
9238             has not yet been calculated (part of fix for #77426)
9239         * Form.cs: Keep track whether client size has been set and re-set 
9240           it if a menu is added/removed afterwards (Fixes #77426)
9241
9242 2006-01-31  Jackson Harper  <jackson@ximian.com>
9243
9244         * Control.cs: When a new Site is set on the component attempt to
9245         pull the AmbientProperties from it.
9246
9247 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9248
9249         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9250           in the background of the owning form. Fixes #77332
9251
9252 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9253
9254         * MimeIcon.cs: Fix for #77409
9255
9256 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9257
9258         * XplatUIX11GTK.cs: Initial import
9259
9260 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9261
9262         * FixedSizeTextBox: fixes class signature
9263
9264 2006-01-30  Jackson Harper  <jackson@ximian.com>
9265
9266         * FixedSizeTextBox.cs: New internal class that represents a
9267         textBox that will not be scaled.
9268         * TreeView.cs:
9269         * ComboBox.cs:
9270         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9271         standard TextBox.
9272                 
9273 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9274
9275         * XplatUIX11.cs: Retrieve default screen number instead of
9276           assuming 0. Attempted fix for #77318
9277
9278 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9279
9280         * XplatUIWin32.cs: 
9281           - GetWindowPos: When a window is parented by FosterParent, use 
9282             the desktop instead of FosterParent as the base to get coordinates
9283           - CreateWindow: Don't make FosterParent the parent window for Popups
9284             if we don't want a taskbar entry, Popups automatically don't get one
9285         * Hwnd.cs: Need to call remove to actually remove the key from the
9286           hash table
9287
9288 2006-01-30  Mike Kestner  <mkestner@novell.com>
9289
9290         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9291
9292 2006-01-30  Jackson Harper  <jackson@ximian.com>
9293
9294         * TreeView.cs:
9295         * TreeNode.cs: Raise events no matter how the treenode is
9296         checked. Patch by Don Edvalson.
9297
9298 2006-01-30  Jackson Harper  <jackson@ximian.com>
9299
9300         * TreeNode.cs: Signature fix.
9301
9302 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9303
9304         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9305
9306 2006-01-20  Mike Kestner  <mkestner@novell.com>
9307
9308         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9309         event forwarding when menus are active.
9310         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9311         Most of the patch is pdb's with a little rework.
9312
9313 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9314
9315         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9316           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9317           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9318         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9319         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9320           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9321           the PaintWindowDecorations method
9322         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9323         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9324         * MenuAPI.cs: Made tracker window invisible
9325         * XplatUIWin32.cs:
9326           - Removed GetMenuDC and ReleaseMenuDC methods
9327           - Implemented the client=false path for PaintEventStart and
9328             PaintEventEnd
9329
9330 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9331
9332         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9333         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9334           styles
9335         * Form.cs: 
9336           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9337             the style
9338           - CreateParams: Reworked the styles to match MS look'n'feel,
9339             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9340             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9341
9342 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9343
9344         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9345           window is not mapped, since otherwise every form that's being 
9346           created is considered minimized, which is wrong.
9347         * Form.cs: Catching the exception and returning our internal value
9348           instead
9349
9350 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9351
9352         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9353           SetWindowMinMax() to have means to tell the driver about the minimum,
9354           maximum and maximized state window sizes. (Part of the fix for #76485)
9355         * Form.cs:
9356           - Implemented tracking of minimum and maximum window size, now calling
9357             new SetWindowMinMax() driver method to tell the driver (Part of the
9358             fix for #76485)
9359           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9360             (Completes fix for #76485)
9361           - Calling new SetWindowMinMax driver method when the handle for a 
9362             form is created, to make sure the driver knows about it even if
9363             the values have been set before the window was created
9364           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9365             to avoid messing up our anchoring calculations (partial fix
9366             for #77355)
9367         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9368         * XplatUIX11.cs:
9369           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9370           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9371             (and presumably other freedesktop.org compliant WMs). Left the
9372             assumption unmapped=minimized, needed for SetVisible to work.
9373           - Now setting the window state when creating windows
9374           - Fixed SetVisible to consider/set the window state when mapping
9375             a Form. We cannot set the state before it's mapped, and we cannot
9376             use Form.WindowState once it's mapped (since it would ask the
9377             driver and get 'normal'. Therefore, we grab the state before
9378             mapping, map, and then set state.
9379           - Implmemented SetWindowMinMax method; Metacity does not seem to
9380             honor the ZoomHints, though.
9381         * XplatUIWin32.cs:
9382           - Removed MINMAXINFO (moved to XplatUIStructs)
9383           - Added SetWindowMinMax stub (on Win32 the only way to set that
9384             information is in response to the WM_GETMINMAXINFO message, which
9385             is handled in Form.cs)
9386           - Added logic to SetVisible to set the proper window state when a 
9387             form is made visible (fixes #75720)
9388
9389 2006-01-26  Jackson Harper  <jackson@ximian.com>
9390
9391         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9392         same way we handle them with Invoke.
9393
9394 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9395
9396         * Form.cs:
9397           - Added tracking of window state so CreateParams can return
9398             the appropriate style
9399           - Moved setting of WS_CAPTION style in CreateParams to allow
9400             styles without caption
9401         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9402           control if the TextBox property is accessed. Fixes #77345
9403         * Control.cs:
9404           - get_Created: now uses is_disposed and is_created to determine
9405             return value (suggested by Jackson)
9406           - CreateHandle: No longer exits if the handle is being recreated
9407           - RecreateHandle: If the handle is not yet created call the 
9408             appropriate method to create either control or handle. If the
9409             control is already created CreateHandle will simply exit instead
9410             of just creating the handle
9411         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9412           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9413           is called.
9414         * XplatUIX11.cs: 
9415           - When DestroyWindow is called, instead of waiting for the 
9416             DestroyNotification from X11, we directly post it to the WndProc
9417             and immediately dispose the hwnd object.
9418             Same applies to DestroyChildWindows, and this obsoletes the
9419             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9420             child windows before our own, to avoid X11 errors.
9421           - Removed the direct sending of WM_PAINT on UpdateWindow
9422         * XplatUIWin32.cs:
9423           - Reworked DoEvents and GetMessage to allow access to internal queue
9424             even when trying non-blocking access to the queue.  Fixes #77335. 
9425             Based on a patch suggestion by Don Edvalson. The new private
9426             GetMessage can now also be used as a backend for a PeekMessage
9427             frontend version.
9428         * XplatUI.cs: Improved debug output for CreateWindow
9429
9430 2006-01-25  Jackson Harper  <jackson@ximian.com>
9431
9432         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9433
9434 2006-01-24  Jackson Harper  <jackson@ximian.com>
9435
9436         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9437         when we have a MaxDropItems lower then the selected index.
9438
9439 2006-01-24  Jackson Harper  <jackson@ximian.com>
9440
9441         * Control.cs: Don't allow selection of non visible controls, allow
9442         selection of controls without parents.
9443
9444 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9445
9446         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9447         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9448
9449 2006-01-23  Jackson Harper  <jackson@ximian.com>
9450
9451         * UpDownBase.cs: Make the textbox handle all the selection and
9452         tabbing. This fixes tabing to updown controls.
9453
9454 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9455
9456         * TextBoxBase.cs: fixes exception thown the object was null
9457
9458 2006-01-23  Jackson Harper  <jackson@ximian.com>
9459
9460         * ButtonBase.cs: Just use the base CreateParams. They set
9461         visibility and enabled correctly.
9462         * ComboBox.cs:
9463         * TrackBar.cs:
9464         * MonthCalendar.cs: Lets let the base set as much of the
9465         createparams as possible so we don't have duplicate code all over
9466         the place.
9467
9468 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9469
9470         * ThemeGtk.cs: Added TrackBar and some experimental code to
9471           get double buffering back
9472
9473 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9474
9475         * DataGrid.cs: Allows row number set internally higher than the last
9476         when creating a new row. Restores the editing functionality.
9477
9478 2006-01-20  Mike Kestner  <mkestner@novell.com>
9479
9480         * MimeIcon.cs: delay Image creation until the icons are accessed
9481         instead of creating 190 scaled images on GnomeHandler startup.
9482
9483 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
9484
9485         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9486           first call base before processing the event. Fixes #77279
9487
9488 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9489
9490         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9491           that the stride for the GDI bitmap would match the stride of
9492           a DIB or a Cursor.
9493
9494 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9495
9496         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9497
9498 2006-01-19  Jackson Harper  <jackson@ximian.com>
9499
9500         * ComboBox.cs: Hookup the text controls keydown event so we get
9501         those when the text control has the focus.
9502
9503 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9504
9505         * Label.cs: Now using the base events instead of defining new ones;
9506           this allows us to just call the base properties without having to
9507           duplicate all base property logic 
9508
9509 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9510
9511         * Label.cs: A label by default is not a tabstop (Fixes one of our
9512           failing nunit tests)
9513
9514 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9515
9516         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
9517         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
9518
9519 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9520
9521         * Cursor.cs: Reimplemented creating cursor bitmaps without using
9522           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
9523           This fixes #77218
9524         * XplatUIWin32.cs: 
9525           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
9526             constructor creates images that can't be saved. Part of the fix
9527             for #76103
9528           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
9529           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
9530             bug fix for handling window state in forms properly)
9531
9532 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9533
9534         * ThemeGtk.cs: Simplify ScrollBar drawing
9535
9536 2006-01-18  Jackson Harper  <jackson@ximian.com>
9537
9538         * Splitter.cs: Set the default dock style for the splitter control
9539         in the constructor.
9540
9541 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9542
9543         * ThemeGtk.cs: Corrected StateType and ShadowType for
9544           gtk_paint_box
9545
9546 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9547
9548         * Control.cs: Make use of Theme.DoubleBufferingSupported
9549         * ThemeGtk.cs:
9550           - Added drawing for flat style buttons
9551           - Added ScrollBar drawing
9552
9553 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9554
9555         * ThemeClearlooks.cs: Removed some unneeded code.
9556         * ThemeGtk.cs: First part of ThemeGtk enhancements.
9557
9558 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9559
9560         * LinkLabel.cs: We need to update the hover drawing when
9561           leaving the control as well.
9562
9563 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
9564
9565         * DataGrid.cs: Clicking on non empty areas in the columns
9566            area was giving an exception
9567
9568 2006-01-17  Jackson Harper  <jackson@ximian.com>
9569
9570         * ThemeWin32Classic.cs:
9571         * ListView.cs: Do not draw/clip the headers when the header style
9572         is None.
9573
9574 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9575
9576         * DataGrid.cs: Fixes 77260
9577         
9578 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9579
9580         * DataGrid.cs: Clicking on a column on a empty grid was giving
9581           an exception
9582
9583 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9584
9585         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
9586           or any keypress will crash the grid.
9587
9588 2006-01-17  Mike Kestner  <mkestner@novell.com>
9589
9590         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
9591         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
9592         invisible/previously-visible items.
9593         [Fixes #76909]
9594
9595 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
9596
9597         * ThemeClearlooks.cs:
9598         - Added CL_Draw_Button method; now other theme controls that are 
9599           not derived from button or do not have a button can draw buttons
9600           too
9601         - Updated ComboBox drawing
9602         - Beautified RadioButton drawing
9603         - Corrected drawing of bottom and left tabs
9604         - Beautified DateTimePicker and MonthCalendar
9605         - Added CPDrawButton and CPDrawRadioButton
9606
9607 2006-01-16  Jackson Harper  <jackson@ximian.com>
9608
9609         * ComboBox.cs: Set the initial value of the scrollbar to the
9610         current index. Reduce the numbers of refreshs and IndexOfs called.
9611
9612 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
9613
9614         * FileDialog.cs: When the file listview is focused hitting the
9615           backspace key moves the fileview to the parent directory
9616
9617 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9618
9619         * Form.cs: 
9620           - Added RecreateHandle call when changing taskbar visibility to 
9621             trigger reparenting in Win32 driver (Fixes #75719)
9622           - If a window has minimize or maximize buttons, it cannot have
9623             a help button
9624         * XplatUIWin32.cs:
9625           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
9626             the toplevel form with FosterParent (A toolwindow not on the
9627             taskbar) (Fixes #75719)
9628           - Made FosterParent a toolwindow
9629
9630 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9631
9632         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
9633
9634 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9635
9636         * ToolTip.cs: If SetToolTip is called from a control and the mouse
9637           is currently over that control, make sure that tooltip_window.Text
9638           gets updated
9639
9640 2006-01-13  Mike Kestner  <mkestner@novell.com>
9641
9642         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
9643
9644 2006-01-13  Jackson Harper  <jackson@ximian.com>
9645
9646         * TreeView.cs: On MS GetNodeAt never actually factors in the X
9647         value passed.  Also redraw the selected node when we recieve
9648         focus, so tabbing between trees works correctly.
9649
9650 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9651
9652         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
9653           ~/.gconf/%gconf-tree.xml, so use
9654           .gconf/desktop/gnome/interface/%gconf.xml
9655
9656 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9657
9658         * TextControl.cs: Draw text in gray if control is disabled
9659
9660 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9661
9662         * TreeView.cs: Draw the focus rectangle outside the highlight, to
9663           make sure it's always visible. Fixes #76680.
9664
9665 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9666
9667         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
9668
9669 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
9670
9671         * PageSetupDialog.cs: Added.
9672         * PrintDialog.cs: Attributes.
9673         * PrintPreviewControl.cs: Updates.
9674         * PrintPreviewDialog.cs: Updates.
9675         
9676 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9677
9678         * Control.cs: Undid my selection check fix, since it's not needed
9679         * TextBoxBase.cs:
9680           - Now considering the presence of hscroll/vscroll when sizing
9681             vscroll/hscroll respectively. Fixed bug #77077
9682           - Added Left/Up/Down/Right to IsInputKey list to prevent
9683             ContainerControl from stealing them. This fixes what I broke
9684             with my last checkin.
9685
9686 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
9687
9688         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
9689           I finally understand how the property can be set without a setter :-)
9690
9691 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9692
9693         * Application.cs:
9694           - Switched RunLoop to use static Message.Create to create a 
9695             Message object
9696           - Added PreProcessMessage call in runloop for keyboard events; this
9697             is part of the fix for #77219, I overlooked this originally in the
9698             MSDN doc for PreProcessMessage
9699         * Control.cs:
9700           - Removed call to PreProcessMessage from handling of keyboard 
9701             messages; it's supposed to be done in the message pump
9702           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
9703             per MSDN documentation.
9704           - IsInputChar: All chars are input chars by default; removed the 
9705             parent calling chain, MS does not document that
9706           - PreProcessMessage: If IsInputChar is true, we want to return false
9707             to allow dispatching of the message
9708           - When selecting the next control, now also check that we're not
9709             selecting ourselves again and therefore return a false positive.
9710         * TextBoxBase.cs:
9711           - Tried to match return values for IsInputKey and ProcessDialogKey
9712             to what MS returns; moved processing of our special keys outside
9713             ProcessDialogKey since MS does not seem to return true on those.
9714           - Moved code that previously was in ProcessDialogKey into new private
9715             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
9716           - Reworked handling of WM_CHAR to not have to duplicate code from
9717             Control.cs anymore, instead we simply call down to base.
9718            
9719 2006-01-12  Jackson Harper  <jackson@ximian.com>
9720
9721         * ComboBox.cs: We always need to refresh the text area when
9722         EndUpdate is called. Fixes the combobox in the file dialog.
9723         * Control.cs: Don't create the creator_thread until the controls
9724         handle is created.  Also in InvokeRequired we check if the
9725         creator_thread is null. This gives the effect of InvokeRequired
9726         returning true if the controls handle is not created yet, and
9727         matches MS.
9728
9729 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9730
9731         * XplatUI.cs:
9732           - Added StartLoop() driver method. This is used to allow drivers to
9733             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
9734             loop for a particular thread
9735           - Added EndLoop() driver method. This is called once the message
9736             pump for the thread is shut down
9737           - Added SupportsTransparency method to allow the driver to indicate
9738             opacity support for windows
9739         * Form.cs:
9740           - Removed TODO attribute, completed AllowTransparency property
9741           - Added documented logic to Opacity
9742         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
9743           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
9744           versions of CompatibleTextRendering
9745         * X11Structs.cs: Added opacity atom to our atom enumeration
9746         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
9747           of a form might be set before it's reparented by the WM, and we need
9748           the opacity value without calling up to Form)
9749         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
9750           SupportsTransparency() driver methods
9751         * Application.cs: Now calling StartLoop and EndLoop driver methods
9752         * XplatUIX11.cs:
9753           - Added opacity atom registration
9754           - Added StartLoop()/EndLoop() methods. They're empty right now but
9755             will need to get implemented when we switch to a per-thread queue
9756           - Implemented SupportsTransparency() method
9757           - Implemented SetWindowTransparency() method
9758           - Added support for setting the opacity value when a window is
9759             reparented (since the opacity needs to be set on the WM frame)
9760         * XplatUIOSX.cs, XplatUIWin32.cs:
9761           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
9762
9763 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9764
9765         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
9766
9767 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9768
9769         * FileDialog.cs: Added ToolTip for MWFFileView
9770         * MimeIcon.cs: Rewrote GnomeHandler.
9771           - Get currently used gnome icon theme from
9772             ($HOME)/.gconf/%gconf-tree.xml
9773           - Make use of inherited icon themes
9774           - Support SVG icon themes like Tango via librsvg
9775
9776 2006-01-12  Miguel de Icaza  <miguel@novell.com>
9777
9778         Revert's Jackson's revert which broke 2.0 builds.   Fix both
9779         builds. 
9780         
9781         * Application.cs: Move the use_compatible_text_rendering outside
9782         the NET_2_0 define.  If we ever need to use the
9783         use_compatible_text_rendering on the individual controls they will
9784         access the variable from the common shared code paths.
9785
9786 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9787
9788         * XplatUI.cs:
9789           - Added more granular debug options
9790           - Added method to print both window text and id
9791           - Switched debug output to use new Window() debug method
9792           - Added IsEnabled() driver method
9793           - Added EnableWindow() driver method
9794         * Form.cs:
9795           - Removed end_modal; no longer needed, new loop handles termination
9796             via 'closing' variable
9797           - If form is modal, setting DialogResult will now initiate loop
9798             termination via 'closing' variable
9799           - Added support for is_enabled/WS_DISABLED to CreateParams
9800           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
9801             does all the work
9802           - Removed code that's now in RunLoop from ShowDialog()
9803           - Added various documented sanity checks to ShowDialog()
9804           - Added handling of WM_DESTROY message; we set 'closing' on getting
9805             the message to indicate the message pump to terminate
9806           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
9807             send by the Application.ExitThread method. (We send the message
9808             to destroy the window after all other events have been
9809             processed through the queue, instead of destroying the handle 
9810             directly)
9811           - Moved code from Close() method to WM_CLOSE handler; added logic
9812             to only send close-related events if the form is not displayed
9813             modal
9814         * Splitter.cs (..ctor): Fixed typo in resource name
9815         * Control.cs:
9816           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
9817             brush now
9818           - set_Cursor: Now only setting calling into XplatUI if the handle for
9819             the control is already created; this avoids implict handle creation
9820             or crashes if it's not created
9821           - set_Enabled: Now setting the enabled state via the new driver method
9822             instead of just tracking it
9823           - CreateParams: Added logic to set WS_DISABLED based on enabled state
9824           - CreateControl: Reordered event firing and method calls to more
9825             closely fire events in the order MS does. Now setting the
9826             enabled state in the driver when creating the control.
9827           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
9828             match MS order
9829         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
9830           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
9831         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
9832         * Hwnd.cs:
9833           - Added tracking of window enabled state (get_Enabled/set_Enabled)
9834           - Added EnabledHwnd property to easily allow a driver to find the
9835             handle of the first enabled window in the parent chain (this is
9836             used by drivers to pass up input events of disabled windows)
9837         * XplatUIDriver.cs: Added IsEnabled() method
9838         * Application.cs:
9839           - Removed crude and obsolete exiting tracking variable
9840           - Removed internal ModalRun(); replaced by RunLoop()
9841           - Implemented private CloseForms() method to allow closing all 
9842             windows owned by a particular (or all) threads
9843           - Exit() now properly closes all windows without forcing the message
9844             pump to quit
9845           - Removed obsolete InternalExit() method
9846           - Changed Run() methods to use new RunLoop() message pump
9847           - Implemented new RunLoop() method for both modal and non-modal forms
9848         * CommonDialog.cs:
9849           - get_CreateParams: Added setting of WS_DISABLED
9850           - Simplified ShowDialog(); now all the work is done in RunLoop(),
9851             invoked via Form.ShowDialog()
9852         * NativeWindow.cs: We don't remove the window from the collection when
9853           the handle is destroyed; there might still be messages for it in the
9854           queue (mainly the resulting WM_DESTROY); instead it will be removed
9855           when Control calls InvalidateHandle in the WM_DESTROY handler
9856         * XplatUIX11.cs:
9857           - CreateWindow: Added logic to handle the WS_DISABLED window style
9858           - EnableWindow: Implemented based on Hwnd.Enabled
9859           - GetMessage: Reset PostQuitState so the method can be called again
9860           - Implemented support for disabled windows (passing messages to the
9861             first enabled parent) in handling all input messages
9862           - Added optimizations for handling Expose events
9863           - Implemeted new driver method IsEnabled()
9864           - Now always resetting paint pending tracking vars when we start paint
9865           - Re-implemented UpdateWindow via just sending a WM_PAINT message
9866         * XplatUIOSX.cs: Added IsEnabled method stub
9867         * XplatUIWin32.cs: Implemented new IsEnabled() method
9868
9869 2006-01-11  Jackson Harper  <jackson@ximian.com>
9870
9871         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9872         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
9873         variables a little.
9874         * ColorDialog.cs: Clear out the old form before adding the new
9875         panel.  
9876
9877 2006-01-11  Jackson Harper  <jackson@ximian.com>
9878
9879         * X11Dnd.cs: Make sure to add all the text formats when adding
9880         strings to the data object.
9881         * TreeNodeCollection.cs: When adding to a sorted tree we need to
9882         do some redrawing too.  Also change the UpdateNode to an
9883         UpdateBelow so the newly added node gets painted.
9884         
9885 2006-01-11  Miguel de Icaza  <miguel@novell.com>
9886
9887         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9888         LinkLabel.cs, PropertyGrid.cs: Implement the
9889         UseCompatibleTextRendering property for 2.x
9890
9891         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
9892
9893 2006-01-11  Jackson Harper  <jackson@ximian.com>
9894
9895         * TreeView.cs: Use the property for setting the selected node so
9896         the correct events get raised.
9897         * TreeNode.cs: Update the tree when the fore/back colours of a
9898         node are set.
9899
9900 2006-01-10  Jackson Harper  <jackson@ximian.com>
9901
9902         * TreeView.cs: Allow setting SelectedNode to null.
9903
9904 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9905
9906         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
9907
9908 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9909
9910         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
9911
9912 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9913
9914         * PrintDialog.cs: Added attributes and set default property values.
9915
9916 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9917
9918         * PrintControllerWithStatusDialog.cs: 
9919         Added PrintControllerWithStatusDialog.
9920
9921 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9922
9923         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
9924         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
9925
9926 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9927
9928         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
9929
9930 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9931
9932         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
9933         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
9934
9935 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9936
9937         * MimeIcon.cs: Added internal class SVGUtil.
9938
9939 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9940
9941         * FileDialog.cs: Don't crash if there are two files with the
9942           same name but different locations.
9943
9944 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
9945
9946         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
9947         dates across multiple month grids. Used to not highlight entire 
9948         month, but does now.
9949         
9950 2006-01-06  Jackson Harper  <jackson@ximian.com>
9951
9952         * MonthCalendar.cs: Removed DoEvents call to prevent a running
9953         message loop. Change timer intervals to numbers that seem more
9954         natural.
9955
9956 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
9957
9958         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
9959           object for location info since screen object is now implemented.
9960
9961 2006-01-05  Jackson Harper  <jackson@ximian.com>
9962
9963         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
9964         * AsyncMethodResult.cs: We no longer use a WeakReference for the
9965         AsyncMethodResult, this is because we ALWAYS want the
9966         ManualResetEvent to get set.
9967         * Control.cs: When disposing use an async invoke to call shutdown
9968         code, so that thigns don't block on the finalizer thread.  Also
9969         check if we even have a message loop before trying to send
9970         messages, if we don't then don't bother sending messages.
9971         - No more weak references for async methods
9972         * XplatUIDriver.cs: No more weak references for async methods.
9973
9974 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9975
9976         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
9977           returns two FontFamily with the same name
9978
9979 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9980
9981         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
9982           drawing disabled text. Instead using the ColorGrayText color
9983
9984 2006-01-04  Jackson Harper  <jackson@ximian.com>
9985
9986         * TreeNode.cs: redraw the node when its image index is changed.
9987
9988 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9989
9990         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
9991           time I checked there are no others like it.
9992
9993 2006-01-04  Jackson Harper  <jackson@ximian.com>
9994
9995         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
9996         this gives the behavoir I was looking for.
9997         * Control.cs: Special case Invoking EventHandlers, this matches MS
9998         and fixes part of bug #76326.
9999
10000 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10001
10002         * ThemeClearlooks.cs, FileDialog.cs:
10003           - Reflect the latest Theme class changes
10004           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10005             with DateTime
10006             
10007 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10008
10009         * Theme.cs: Cache UI resource images and resize them if needed
10010
10011 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10012
10013         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10014           is called. This fixes the crash in Nexxia when setting the font
10015           attributes in the chat. [However, RTF needs a look-over to make sure
10016           that all SelectionXXX methods handle the special case that selection
10017           is empty and therefore the change must be applied to all text starting
10018           at the cursor/selection start]
10019
10020 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10021
10022         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10023           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10024         * X11Keyboard.cs: Switched to new way of calling PostMessage
10025
10026 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10027
10028         * Theme.cs: Added theme interface for images to allow the theme to
10029           control what images are used for things like FileDialog, MessageBox
10030           icons, etc.
10031         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10032
10033 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10034
10035         * FileDialog.cs:
10036           - Removed some dead code
10037           - Opening a recently used file does work now
10038           - Small UI enhancements
10039           - Refactoring
10040
10041 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10042
10043         * FileDialog.cs: Forgot too add __MonoCS__
10044
10045 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10046
10047         * FileDialog.cs: We are able to read recently used files now let's
10048           go on and write them.
10049
10050 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10051
10052         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10053           button
10054         * MimeIcon.cs: Do a check for the top level media type also
10055
10056 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10057
10058         * ThemeClearlooks.cs:
10059           - Added CPDrawStringDisabled
10060           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10061             some chars if the text doesn't fit into text_rect
10062           - DrawListViewItem: If View = View.LargeIcon center the image;
10063             rewrote the drawing of ListViewItem.Text if View = 
10064             View.LargeIcon
10065
10066 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10067
10068         * MimeIcon.cs: Use default KDE icon theme if there is no
10069           "48x48" directory for the current icon theme, fixes #77114
10070         * Mime.cs: Disable not working and actually not used code. 
10071         * ThemeWin32Classic.cs:
10072           - Replace "new SolidBrush" in GetControlBackBrush and
10073             GetControlForeBrush with ResPool.GetSolidBrush
10074           - Changed DrawListViewItem from private to protected virtual
10075         * FileDialog.cs:
10076           - Added form.MaximizeBox = true
10077           - Don't throw an exception if there is a broken symbolic link
10078
10079 2005-12-23  Jackson Harper  <jackson@ximian.com>
10080
10081         * TabControl.cs: Give the panels focus, keyboard navigation is
10082         fixed so this works correctly now.
10083         - We need these key events also.
10084         * ToolBar.cs: Remove some of the poor mans double buffering.
10085         
10086 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10087
10088         * ComboBox.cs: The internal TextBox now returns the focus.
10089
10090 2005-12-23  Jackson Harper  <jackson@ximian.com>
10091
10092         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10093
10094 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10095
10096         * Control.cs: Removed debug code
10097         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10098           implicit children
10099
10100 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10101
10102         * Control.cs: When creating the control, update the Z-order after
10103           all it's children are created, too. (Fixes nexxia not showing
10104           picturebox bug)
10105
10106 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10107
10108         * Control.cs: Do not update the anchoring distances if layout is
10109           suspended, instead do it once layout is resumed
10110
10111 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10112
10113         * Control.cs: 
10114           - After many hours of debugging, for both Jackson and
10115             myself, it turns out that it helps to set the parent of a control
10116             if you want to actually see it onscreen. In the spirit of that
10117             discovery, we're now setting the parent of the control and
10118             it's children when the control's handle is created. This fix
10119             will make Lutz Roeder's Reflector run happily. 
10120           - now just creating the handle instead of the whole control when
10121             getting a graphics context for the control.
10122
10123 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10124
10125         * ScrollableControl.cs: When calculating the canvas, don't consider
10126           the scrollbar widths. Instead, predict if horizontal scrollbar
10127           will affect canvas when deciding on vertical display and vice versa.
10128
10129 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10130
10131         * RichTextBox.cs: Set default RTF font for documents that don't
10132           have a font table (Fixes #77076)
10133
10134 2005-12-22  Jackson Harper  <jackson@ximian.com>
10135
10136         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10137         clipboard. This prevents a NullRef in that case.
10138         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10139         clipboard. PRIMARY is for the currently selected text only. (We
10140         should implement PRIMARY at some point.
10141
10142 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10143
10144         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10145           a Unicode function with a structure that was defined in Ansi way.
10146           This fixes #76942.
10147
10148 2005-12-21  Jackson Harper  <jackson@ximian.com>
10149
10150         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10151         on. Because thats how it rolls. (and this avoids it using ambient
10152         colours).
10153         * ThemeWin32Classic.cs: Use the proper back color for filling.
10154         * Menu.cs: Use the system menu bar color for drawing menu
10155         bars. Using the window back color will bring ambient colours into
10156         the picture.
10157
10158 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10159
10160         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10161           Bitmaps were created and not disposed.
10162
10163 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10164
10165         * Control.cs (CreateControl): Don't do anything if the control is
10166           already created, otherwise we'd fire the OnCreated event more than
10167           once
10168
10169 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10170
10171         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10172           will always match. Instead return -1. Fixes #76464.
10173
10174 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10175
10176         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10177           neither the beginning nor the end of the line (Fixes bug #76479)
10178
10179 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10180
10181         * Control.cs:
10182           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10183             where handle is invalid
10184           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10185             instead of slower linear search
10186         * NativeWindow.cs: Don't remove the window from the hashtable until
10187           after the driver has destroyed it (since the driver might use
10188           Control.FromHandle to lookup the control object
10189         * Hwnd.cs: Added DestroyPending property to track if a window is 
10190           already destroyed as far as the driver is concerned and only hasn't
10191           yet notified the control
10192         * XplatUIX11.cs:
10193           - Activate(): Check if the window is still valid before using the 
10194             handle
10195           - Implemented DestroyChildWindow() method to mark child windows as
10196             destroyed when a window is destroyed. This prevents situations 
10197             where we might call an X method based on queued events for a
10198             window that already has been destroyed but we haven't yet pulled
10199             the destroy method from the queue.
10200           - Added a call to the new DestroyChildWindow() method to the drivers
10201             DestroyWindow code. Also now marking the destroyed window itself
10202             as pending
10203
10204 2005-12-20  Jackson Harper  <jackson@ximian.com>
10205
10206         * StatusBar.cs:
10207         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10208         anymore. Just do them when needed, also track the rects of panels
10209         so that we can optimize refreshing more in the future.
10210
10211 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10212
10213         * ColorDialog.cs: Fixed focus drawing in small color controls
10214
10215 2005-12-19  Jackson Harper  <jackson@ximian.com>
10216
10217         * InternalWindowManager.cs:
10218         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10219         moving windows works properly.
10220
10221 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10222
10223         * Control.cs: 
10224           - Removed call to InitLayout() from SetBoundsCore(); doc says
10225             it's only called when a control is added to a container
10226           - Split InitLayout logic, moved to separate UpdateDistances() method
10227             since we need to perform those calculations more often than just
10228             when adding the control to a container. (Needed to fix #77022)
10229           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10230           - Reduced the OnBindingContextChanged events count, don't send them
10231             unless the control is created, we still aren't totally matching
10232             MS, but I can't quite figure out some of their rules
10233
10234 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10235
10236         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10237           stripes
10238
10239 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10240
10241         * ThemeClearlooks.cs:
10242           - Updated ProgressBar drawing
10243           - Corrected drawing of ScrollBars and scroll buttons
10244           - Some temporary fixes for minor pixel artefacts
10245
10246 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10247
10248         * Control.cs:
10249           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10250             cause events to be sent in the same order as MS does.
10251           - Added ChangeParent() method to trigger various OnXXXChanged events
10252             that need to be fired when a parent changes (This is a reworking
10253             of the patch from r54254, with the X11 errors fixed)
10254           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10255             since on MS we get OnLayoutChanged events when calling Clear()
10256           - Changed Enabled property to consider parent state as well, if a
10257             parent is not enabled, the control will not be either
10258           - Changed Parent property to simply call Controls.Add() since that
10259             now does all the work required, this way we avoid code duplication
10260           - Threw in a few OnBindingsContextChanged calls to try and match
10261             when MS sends them. We seem to send a few too many, though.
10262           - Added call to CreateControl when adding the control to a parent.
10263             We were never calling CreateControl. Still needs some work, in
10264             some places we treat HandleCreated and ControlCreated as equal, 
10265             which is wrong
10266           - Removed obsolete commented out code from UpdateZOrder()
10267
10268 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10269
10270         * ThemeClearlooks.cs: Updated TrackBar drawing.
10271
10272 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10273
10274         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10275
10276 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10277
10278         * FileDialog.cs: Add the Help button and the open readonly
10279           checkbox only if needed
10280
10281 2005-12-16  Jackson Harper  <jackson@ximian.com>
10282
10283         * Control.cs: Make sure we have an active menu before trying to
10284         process commands on it. Prevents menu-less forms from crashing
10285         when Alt is pressed.
10286         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10287         Dieter Bremes.
10288         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10289         2.0 build.
10290
10291 2005-12-16  Jackson Harper  <jackson@ximian.com>
10292
10293         * InternalWindowManager.cs: Don't translate tool windows screen
10294         coordinates. This fixes windows 'bouncing' around when being moved.
10295
10296 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10297
10298         * TextBoxBase.cs:
10299           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10300             not quite MS compatible, MS uses that number only for single line
10301             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10302             the limit at 2GB)
10303           - Now enforcing the MaxLength limit when entering characters
10304           - Added argument to internal Paste() method to track if it's called
10305             from programatically or via keyboard, since keyboard driven pastes
10306             need to enforce max-length
10307           - Added logic to Paste to only paste as many chars as MaxLength 
10308             allows
10309         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10310         * TextControl.cs:
10311           - Added Length property to return number of characters in document
10312           - Added private CharCount property which only tracks actual chars
10313             in the document (no linefeeds) and fires event when CharCount
10314             changes
10315           - Added tracking of character count to all methods that alter it
10316           - Added LengthChanged event to allow applications to subscribe
10317             to any changes to the document
10318
10319 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10320
10321         * TextBox.cs: 
10322           - Removed local password_char field (moved to TextBoxBase)
10323           - Now setting the document's password var when password is
10324             set
10325         * TextBoxBase.cs:
10326           - Added password_char field (needed here so MultiLine can
10327             access it)
10328           - Added logic to MultiLine property setter to set the document's
10329             variable when password display is allowed
10330           - Removed debug code and made some debug code conditional
10331         * TextControl.cs:
10332           - Added RecalculatePasswordLine() method to handle special password
10333             char only lines
10334           - Added PasswordChar property, also added related tracking vars
10335           - Draw() method now uses local text var for grabbing text to draw,
10336             this var is set to line.text unless we're doing password display,
10337             then it is set to the pre-generated all-password-chars line
10338           - Added calling RecalculatePasswordLine() method for password lines
10339
10340 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10341
10342         * Hwnd.cs: 
10343           - Added Reparented property to allow tracking of Window Manager
10344             reparenting actions (which affect X/Y calculations of toplevel 
10345             windows)
10346           - Made ToString() print window handles in hex
10347         * XplatUIX11.cs:
10348           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10349             determine if X/Y needs offsetting
10350           - AddConfigureNotify(): Fixed offset calculations
10351           - Now adds ReparentNotify messages into the queue
10352           - Now processes ReparentNotify messages and causes a 
10353             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10354             is reparented (as most likely it's X/Y coordinates are changed
10355             due to that)
10356
10357 2005-12-14  Jackson Harper  <jackson@ximian.com>
10358
10359         * XplatUIX11.cs: Tool windows still need to respek focus.
10360
10361 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10362
10363         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10364           have a working release
10365
10366 2005-12-13  Jackson Harper  <jackson@ximian.com>
10367
10368         * Form.cs: Update styles after setting the border style regardless
10369         of whether or not the window is using a window manager.
10370
10371 2005-12-13  Jackson Harper  <jackson@ximian.com>
10372
10373         * Form.cs: We now hook into an internal window manager instead of just an
10374         MDI subsystem, this is so we can have properly behaving tool windows.
10375         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10376         * InternalWindowManager.cs: New internal class that acts as a
10377         window manager for tool windows and as a base for mdi windows.
10378         * MdiWindowManager.cs: New class that acts as a window manager for
10379         mdi windows.
10380
10381 2005-12-12  Jackson Harper  <jackson@ximian.com>
10382
10383         * Control.cs: Updates so we match behavoir for for implicit
10384         controls. Fixes explosions in MDI.
10385
10386 2005-12-12  Jackson Harper  <jackson@ximian.com>
10387
10388         * Control.cs: Implement Invalidate (Region).
10389
10390 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10391
10392         * Control.cs: 
10393           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10394             the same events as MS does. MS fires events for each property 
10395             except, for unknown reasons, Cursor, when the control is reparented. 
10396             I can't seem to totally match add/remove since MS also fires some 
10397             VisibleChanged events, which makes no sense. Consolidated the
10398             parenting code into a separate method so it can be called from
10399             both Add and Remove. set_Parent no longer needs any special logic
10400             as it calls the parent's add method which implicitly fires
10401             all events
10402           - Removed some obsolete code and debug output
10403           - Enabled state is inherited from parents, if this is enabled
10404
10405 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10406
10407         * Form.cs: Removed commented out code
10408
10409 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10410
10411         * Control.cs:
10412           - Added internal version of Invoke, with additional argument 
10413             indicating if we're calling it from a Dispose() handler. That
10414             way we can avoid BeginInvoke throwing an exception if we're
10415             calling for an already destroyed window.
10416           - Added a dispose argument to BeginInvokeInternal, and made the
10417             check if a valid window handle chain exists conditional on
10418             it not being a dispose call
10419           - Removed code in DestroyHandle to destroy our children. Since we
10420             now handle the WM_DESTROY message we will catch all our children
10421             being destroyed.
10422           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10423         * Form.cs:
10424           - Added a field to track the application context of the form.
10425           - No need to set closing variable as response to WM_CLOSE, instead
10426             we destroy the window. We also call PostQuitMessage if the form
10427             has an application context (which makes it the main app form,
10428             which, when closed terminates the app)
10429         * XplatUI.cs:
10430           - Dropped Exit() method, it's naming was confusing
10431           - Added PostQuitMessage() which causes GetMessage to return false
10432             once the message queue is empty
10433         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10434           PostQuitMessage()
10435         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10436           no longer a valid XplatUI method, but left it in since it's used
10437           internally. Added empty PostQuitMessage() method.
10438         * MenuAPI.cs: Replaced call to Exit() with call to
10439           PostQuitMessage, even though this is probably no longer needed.
10440         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10441         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10442         * Application.cs:
10443           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10444           - Removed old debug code that would call XplatUI for exception
10445             display, enabled standard exception handling (Still not enabled
10446             though, until NativeWindow's ExternalExceptionHandler define
10447             is removed
10448         * NativeWindow.cs:
10449           - Added internal method to allow control to update NativeWindow
10450             after a window has been destroyed
10451           - Added handling of already destroyed windows when calling i
10452             DestroyWindow
10453           - Added removal of handle from list on ReleaseHandle
10454         * XplatUIX11.cs:
10455           - Dropped GetMessageResult var and related code
10456           - Added PostQuitState to field to track if PostQuitMessage has been
10457             called
10458           - Dropped Exit() method
10459           - Added PostQuitMessage() method
10460           - GetMessage now will return false if PostQuitState is set and no
10461             more messages are in the queue.
10462           - Expose handler will no longer generate WM_PAINT messages if we are
10463             in PostQuitState since it's very likely any windows have already
10464             been destroyed, and since Hwnd won't get updated until we have
10465             processed the DestroyNotify we'd be causing X errors.
10466         
10467 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10468
10469         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10470           Thanks to Mike for pointing out the err of my ways.
10471
10472 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10473
10474         * Control.cs(PreProcessMessage): Moved menu handling back, but
10475           after all other key handling, to match MS (who handles Menu in
10476           DefWndProc)
10477         * Menu.cs (WndProc): Removed my brainfart
10478
10479 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10480
10481         * Control.cs(PreProcessMessage): Removed special menu handling 
10482         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
10483
10484 2005-12-07  Mike Kestner  <mkestner@novell.com>
10485
10486         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10487         state according in tracker.
10488         * Menu.cs : promote tracker field to base class and provide a tracker
10489         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10490         has a tracker. Unparent items that are removed from the collection.
10491         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10492         * Theme*.cs: add always_show_hotkeys field to support configurability
10493         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10494         pressed.
10495
10496 2005-12-07  Jackson Harper  <jackson@ximian.com>
10497
10498         * MdiChildContext.cs: Use Control.ResetCursor.
10499         * Control.cs: ResetCursor needs to set the property so that the
10500         correct XplatUI call gets made.
10501
10502 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10503
10504         * Control.cs: More fixes to make our key events match MS. We
10505           were not setting the modifier state on KeyData, and we were
10506           not generating any events when Alt was pressed with a key
10507           since handling of WM_SYSxxx was missing for the OnKey methods.
10508
10509 2005-12-07  Jackson Harper  <jackson@ximian.com>
10510
10511         * MdiChildContext.cs: reenable the sizing code.
10512         - When the mouse leaves a window reset its cursor.
10513
10514 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10515
10516         * ThemeClearlooks.cs: Reflect latest Hwnd changes
10517
10518 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10519
10520         * Hwnd.cs: Now using the theme 3d bordersize to calculate
10521           widths of Fixed3D borders
10522
10523 2005-12-07  Jackson Harper  <jackson@ximian.com>
10524
10525         * MdiClient.cs: Fix warnings. Earn Mike's love.
10526
10527 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10528
10529         * ThemeClearlooks.cs:
10530           - Adjusted mouse over button color
10531           - Added first parts of CheckBox drawing
10532           - Added correct color for selected text background
10533           - Fixed ComboBox drawing
10534           - Added CPDrawBorder3D and CPDrawBorder
10535
10536 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10537
10538         * XplatUIX11.cs: Added call to XBell for AudibleAlert
10539
10540 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
10541
10542         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10543           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
10544           alert users via sound. We could add an enum arg with different
10545           types of alerts in the future
10546
10547 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10548
10549         * Control.cs: Fix behaviour problems pointed out by Mike
10550
10551 2005-12-05  Mike Kestner  <mkestner@novell.com>
10552
10553         * StatusBarPanel.cs: add Invalidate method and hook it into all the
10554         prop setters.  Calls parent.Refresh for now, but could be maybe be
10555         optimized with an internal method on StatusBar at some point.
10556         [Fixes #76513]
10557
10558 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
10559
10560         * RichTextBox.cs: Implemented get_SelectionColor
10561
10562 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
10563
10564         * ThemeClearlooks.cs:
10565           - Removed dead code
10566           - Draw black button border only if button is Form.AcceptButton
10567           - Draw correct button color for pressed RadioButton if the mouse 
10568             has entered the button
10569           - Updated ProgressBar drawing!
10570           - Updated CPDrawSizeGrip drawing
10571           - Updated StatusBarPanel drawing
10572
10573 2005-12-05  Mike Kestner  <mkestner@novell.com>
10574
10575         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
10576         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
10577
10578 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
10579
10580         * ThemeClearlooks.cs: Initial check-in, activate with
10581           export MONO_THEME=clearlooks
10582         * ThemeEngine.cs: Added ThemeClearlooks
10583
10584 2005-12-03  Mike Kestner  <mkestner@novell.com>
10585
10586         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
10587         [Fixes #76897]
10588
10589 2005-12-02  Jackson Harper  <jackson@ximian.com>
10590
10591         * Form.cs: If the child form has no menu the default main menu is
10592         used as the active menu.
10593
10594 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
10595
10596         * ListBox.cs: Check if any items exist before trying to resolve 
10597           coordinates into items
10598
10599 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10600
10601         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
10602           as the second color for the background hatch
10603
10604 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10605
10606         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
10607         * RichTextBox.cs: FormatText position arguments are 1-based, now making
10608           sure that what we pass to FormatText is always 1-based. Fixes #76885
10609
10610 2005-11-29  Miguel de Icaza  <miguel@novell.com>
10611
10612         * NumericUpDown.cs (EndInit): When we are done initializing,
10613         reflect any updates on the UI.
10614
10615 2005-12-02  Jackson Harper  <jackson@ximian.com>
10616
10617         * ImplicitHScrollBar.cs:
10618         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
10619         their container controls.
10620         * TreeView.cs: Use the new implicit scrollbars.
10621
10622 2005-12-02  Jackson Harper  <jackson@ximian.com>
10623
10624         * TreeView.cs: Make top_node internal so the TreeNodeCollections
10625         can play with it.
10626         * TreeNodeCollection.cs: If we remove the topnode we need to
10627         update topnode to the next node in line.
10628         - When clearing nodes go through the same process as removing
10629         them, so they get depareneted and checked if they are top node.
10630
10631 2005-12-01  Jackson Harper  <jackson@ximian.com>
10632
10633         * TreeView.cs: When imagelists are used the image area is
10634         selectable as well as the text.
10635         - If there are no selected nodes select the first one.
10636         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
10637         so don't do it more then we need to.
10638
10639 2005-12-01  Jackson Harper  <jackson@ximian.com>
10640
10641         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
10642         that arrows can be scaled.
10643
10644 2005-12-01  Jackson Harper  <jackson@ximian.com>
10645
10646         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
10647         fail. Patch by Dieter Bremes
10648
10649 2005-11-30  Jackson Harper  <jackson@ximian.com>
10650
10651         * Form.cs: Property is 2.0 only
10652         * PrintDialog.cs: Signature fix.
10653
10654 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10655
10656         * TextControl.cs: 
10657           - No longer artificially moves text 2 pixels down (now that we have
10658             borders this is no longer needed)
10659           - Added calcs for left, hanging and right indent
10660
10661 2005-11-23  Mike Kestner  <mkestner@novell.com>
10662
10663         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
10664
10665 2005-11-30  Jackson Harper  <jackson@ximian.com>
10666
10667         * MdiChildContext.cs: Set the cloned menus forms, as these don't
10668         get cloned as part of CloneMenu ().
10669         * Menu.cs: Make sure the parent of the items get set correctly
10670         when they are added.  And the owners are notified of the changes.
10671         * Form.cs: Create an ActiveMenu property, so that when MDI is used
10672         we can change the menu being displayed/handled by the form without
10673         changing the menu assosciated with the form.
10674         - Don't let Mdi children draw/handle menus.
10675         
10676 2005-11-30  Jackson Harper  <jackson@ximian.com>
10677
10678         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
10679         a MenuChanged event. Just to make the API a little more
10680         consistent.
10681         * MainMenu.cs:
10682         * MenuItem.cs: Use the new OnMenuChanged
10683         * MdiChildContext.cs: Handle menu merging.
10684         * Form.cs: Implement MergedMenu.
10685         
10686 2005-11-30  Jackson Harper  <jackson@ximian.com>
10687
10688         * Menu.cs: We were misusing Add. Add goes behind the specified
10689         index according to the docs, and does not replace the specified
10690         index. So I added an Insert method.
10691
10692 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10693
10694         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
10695           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
10696           is for Jackson
10697         * RichTextBox.cs: Added calls to base for DnD events
10698
10699 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
10700
10701         * TextControl.cs:
10702           - Fixed drag-selection related crash; style fixes
10703           - Implemented undo class
10704             o Implemented method to capture document state for specified
10705               range in document tree
10706             o Implemented method to restore captured document state
10707             o Implemented cursor tracking
10708             o Implemented basic undo stack
10709           - Added undo cursor tracking to methods altering cursor location
10710           - Added undo tracking to selection deletion (still missing
10711             other text-altering hookups)
10712         * RichTextBox.cs:
10713           - Added SelectionLength property
10714           - Implemented CanPaste()
10715           - Implemented Paste()
10716           - Added missing protected methods
10717           - Fixed RTF->Document conversion; now uses font index 0 and color 
10718             index 0 as the default font for the parsed text
10719           - Fixed RTF<->Document font size translation
10720           - Fixed RTF generation, now properly handles cross-tag boundaries
10721             for single line selection
10722           - No longer always appends blank line to generated RTF
10723           - Removed TODOs
10724           - Added missing attributes
10725           - Hooked up undo-related methods
10726         * TextBoxBase.cs:
10727           - Implemented Copy()
10728           - Implemented Paste()
10729           - Implemented Cut()
10730           - Fixed caret mis-behaviour on backspace across line-boundaries
10731
10732 2005-11-29  Jackson Harper  <jackson@ximian.com>
10733
10734         * MdiClient.cs: Add a method for activating mdi children. Very
10735         basic right now. I imagine someday it might need more girth.
10736         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
10737         children windows names are added to the menu item.
10738         * ThemeWin32Classic.cs: Draw the arrow if the item is an
10739         mdilist. This happens regardless of whether or not there are any
10740         mdi windows to see in the list, and according to my tests happens
10741         before the items are even added. Also happens if there isn't even
10742         an mdi client to get windows from.
10743
10744 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
10745
10746         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
10747         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
10748
10749 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
10750
10751         * DataGridTableStyle.cs:
10752           - Create always the styles for the missing columns even if they are
10753             provided by the user (not default table style)
10754         * DataGrid.cs:
10755           - Fixes bug 76770
10756           - Fixes SetDataBinding (always re-attach source)
10757           - Fixes SetNewDataSource (only clear styles if they are not for 
10758             this source)
10759          -  Expands OnTableStylesCollectionChanged to handle style refresh 
10760             and remove properly
10761
10762 2005-11-29  Jackson Harper  <jackson@ximian.com>
10763
10764         * FileDialog.cs: Implement missing bits, remove some dead
10765         code.
10766         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
10767         creation of the panel so that the options set on the dialog are
10768         seen when the panel is created.
10769         * TreeView.cs: raise a click when items are clicked.
10770         
10771 2005-11-29  Jackson Harper  <jackson@ximian.com>
10772
10773         * MdiClient.cs: Pass some signature methods through to base.
10774
10775 2005-11-28  Jackson Harper  <jackson@ximian.com>
10776
10777         * ListView.cs: Raise the click event when items are clicked.
10778
10779 2005-11-28  Jackson Harper  <jackson@ximian.com>
10780
10781         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
10782         a nullref.
10783
10784 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
10785
10786         * ThemeNice.cs: - Removed 1 pixel bitmaps
10787           - Use SmoothingMode.AntiAlias where it makes sense
10788             (ScrollButton arrow for example)
10789           - Enhanced Button focus drawing
10790           - Fixed ComboBox drawing (no artefacts anymore, focus
10791             rectangle is back again, reduced size of ComboButton, etc.)
10792           - Fixed RadioButton focus drawing for Appearence.Button
10793           - Slight ScrollButton redesign
10794           - Some LinearGradientBrush size fixes
10795           - GroupBoxes have now rounded edges
10796           - Fixed StatusBar drawing
10797
10798 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
10799
10800         * ThemeNice.cs: - Remove dead code
10801           - use correct background colors for menus, etc.
10802           - Fake pixel drawing with 1 pixel bitmaps
10803
10804 2005-11-24  Jackson Harper  <jackson@ximian.com>
10805
10806         * MdiClient.cs: Size the scrollbars when resizing the window.
10807         - Resize the maximized windows when the client is resized
10808         * Form.cs: Make the child context available
10809         
10810 2005-11-23  Jackson Harper  <jackson@ximian.com>
10811
10812         * MdiChildContext.cs: Don't size windows if they are maximized.
10813
10814 2005-11-23  Mike Kestner  <mkestner@novell.com>
10815
10816         * ContextMenu.cs: use MenuTracker.
10817         * Control.cs: remove menu handle usage.
10818         * Form.cs: remove menu handle usage.
10819         * Hwnd.cs: remove menu handle usage.
10820         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
10821         motion and clicks to the new Tracker handlers.
10822         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
10823         and handle usage.
10824         * MenuAPI.cs: refactored to combine popup and menubar event handling.
10825         Killed the MENU and MENUITEM data types and associated collections
10826         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
10827         MenuTracker class that exposes the leftovers from the old MenuAPI
10828         static methods. Restructured Capture handling so that only one grab is
10829         done for the entire menu hierarchy instead of handing off grabs to
10830         submenus. Tracker now has an invisible control to Capture when active.
10831         * MenuItem.cs: add sizing accessors, kill Create
10832         and handle usage.
10833         * Theme.cs: remove menu handle and MENU(ITEM) usage.
10834         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
10835         MENU(ITEM). remove menu handle usage, use Menu directly.
10836         * XplatUIDriver.cs: remove menu handle usage.
10837         * XplatUIOSX.cs: remove menu handle usage.
10838         * XplatUIWin32.cs: remove menu handle usage.
10839         * XplatUIX11.cs: remove menu handle usage.
10840
10841 2005-11-22  Jackson Harper  <jackson@ximian.com>
10842
10843         * Hwnd.cs: Don't compute the menu size for
10844         DefaultClientRectangle.
10845         - Reenable menu sizes being computed for GetClienRectangle.
10846         * Form.cs: Remove comment of trechery
10847         
10848 2005-11-22  Jackson Harper  <jackson@ximian.com>
10849
10850         * Hwnd.cs: The adjustments for the menu bar are made when it is
10851         attached to the form.
10852
10853 2005-11-19  Jackson Harper  <jackson@ximian.com>
10854
10855         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
10856         (just like on windows).
10857
10858 2005-11-19  Jackson Harper  <jackson@ximian.com>
10859
10860         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
10861         use real buttons anymore because they are in non client area. The
10862         one TODO here is that I need to somehow invalidate a section of
10863         the non client area.
10864
10865 2005-11-18  Jackson Harper  <jackson@ximian.com>
10866
10867         * Control.cs: Put the enum check back in now that MDI doesnt have
10868         to use this to set border styles.
10869         * Form.cs: Only set mdi child windows borders if the handle has
10870         been created.
10871         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
10872         this directly on to the driver.
10873         - Get the move start position before adjusting for the titlebar
10874         height, this fixes the windows "skipping" when they are first
10875         moved.
10876
10877 2005-11-18  Jackson Harper  <jackson@ximian.com>
10878
10879         * XplatUIX11.cs: Just compute the mdi borders separately as they
10880         don't totally match up with normal form borders.
10881
10882 2005-11-18  Jackson Harper  <jackson@ximian.com>
10883
10884         * Control.cs: Set WS_ styles for borders, so that the driver does
10885         not have to retrieve the control instance to figure out what kind
10886         of borders it should have.
10887         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
10888         driver can know its an mdi child easily.
10889         * XplatUIX11.cs: Get the border styles and whether the window is
10890         MDI from the Styles and ExStyles params instead of having to get a
10891         control. This prevents a chicken and egg problem.       
10892
10893 2005-11-18  Jackson Harper  <jackson@ximian.com>
10894
10895         * MdiClient.cs: Fix typo so scrollbars show up correctly.
10896
10897 2005-11-18  Jackson Harper  <jackson@ximian.com>
10898
10899         * MdiClient.cs: Calculate when to add and remove scrollbars
10900         correctly.
10901         * MdiChildContext.cs: Adjust the y position to take the titlebar
10902         into account.
10903         - No height for FormBorderStyle.None
10904
10905 2005-11-18  Jackson Harper  <jackson@ximian.com>
10906
10907         * Control.cs: Allow non enum values to be used for
10908         InternalBorderStyle.  MDI does this to set a special border style.
10909         - New utility methods for converting points to/from client coords
10910         - Add the newly created control to the Controls collection before
10911         updating its style. This way UpdateStyle can walk the control
10912         heirarchy to find the control if needed.
10913         so I don't need to create a new Point object all the time.
10914         * Form.cs: Let MDI windows handle their border styles.
10915         - Set styles on MDI windows so the correct title style is derived.
10916         * MdiChildContext.cs: Move all the painting and window handling
10917         into the non client area.
10918         - Use correct sizing and put correct buttons on frames based on
10919         the FormBorderStyle.
10920         - Notify the mdi client about scrolling
10921         - Need to handle the buttons ourselves now, because they are all
10922         in non client areas and we can't add controls there.
10923         * MdiClient.cs: Halfway to scrolling, this implementation is
10924         somewhat broken though, we need to check to make sure other
10925         windows aren't causing scrolling before removing the bars. Also
10926         the bars need to be drawn on top, maybe I can switch implicit
10927         controls to be on top.
10928         * Hwnd.cs: caption_height and tool_caption_height are now
10929         properties of an hwnd, this way they can be set by the driver
10930         based on the type of window they are.  In X11 the window manager
10931         handles the decorations so caption_height is zero unless its an
10932         MDI window.
10933         - Add 3 pixel borders for MDI windows (0xFFFF).
10934         - Get rid of some code duplication, have DefaultClientRectanle
10935         just call GetClientRectangle.
10936         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
10937         Hwnd now.
10938         - Set border styles differently for mdi windows.
10939         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
10940         Hwnd now.
10941         
10942 2005-11-15  Mike Kestner  <mkestner@novell.com>
10943
10944         * Menu.cs: when adding an item to the collection, if item is already 
10945         parented, remove it from the parent.
10946
10947 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
10948
10949         * X11DesktopColors.cs: Added KDE support
10950
10951 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
10952
10953         * XplatUIWin32.cs: 
10954           - Clipboard methods now can translate Rtf format
10955           - No longer removes clipboard contents whenever a new format is added
10956             to allow placing multiple formats on the clipboard
10957         * Clipboard.cs: Clipboard now supports getting a IDataObject and
10958           will place all formats contained in it onto the clipboard. Also
10959           now cleans the clipboard before placing a new object onto it
10960         * RichTextBox.cs:
10961           - Implemented set_Rtf
10962           - Implemented set_SelectedRtf
10963           - Created InsertRTFFromStream() method to allow single code base
10964             for all properties and methods that insert RTF into document
10965           - Removed debug output
10966         * TextControl.cs:
10967           - Fixed Delete(int) to fix up line numbers
10968           - Fixed ReplaceSelection to combine start and end line
10969           - Fixed serious DeleteChars bug that would leave the document tree
10970             broken
10971           - Improved DumpTree with several logic checks to detect broken
10972             document trees
10973           - Removed debug lines
10974           - Fixed Caret.WordForward/WordBack moving code, now always also 
10975             updates caret.tag (fixes crash when word-selecting across tag
10976             boundaries via keyboard)
10977           - Added Insert() method for inserting multiline text into documents
10978           - Fixed DeleteChars() calculation errors that would cause a broken
10979             tag chain with multiple tag lines
10980           - DeleteChars() no longer crashes on multi-tag lines if not all tags
10981           - Split() no longer moves caret if split is at caret location
10982           - ReplaceSelection() now updates the cursor and re-displays it
10983           - ReplaceSelection() now uses new Insert() method to avoid code
10984             duplication
10985           - FormatText() can now handle formatting partial lines
10986         * TextBoxBase.cs:
10987           - Append now uses new TextControl.Insert() method (this avoids 
10988             duplicate code)
10989           - Implemented Ctrl-X (Cut) (
10990           - Implemented Ctrl-C (Copy)
10991           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
10992             regeneration when pasting text; roundtripping Copy&Paste within
10993             edit control still fails due to some calculation bugs in GenerateRTF)
10994           - The Delete key will now remove the current selection if it is visible
10995         * TextBox.cs: Removed debug lines
10996         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
10997           driver to be initialized and can't therefore be done via a static ctor)
10998
10999 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11000
11001         * TextControl.cs: Added backend code for finding char arrays and strings
11002         * TextBoxBase.cs:
11003           - Added mouse wheel scroll support
11004           - Added support for VScroll and HScroll events
11005         * RichTextBox.cs:
11006           - Implemented all seven Find() variants
11007           - Implemented GetCharFromPosition()
11008           - Implemented GetCharIndexFromPosition()
11009           - Implemented GetLineFromIndex()
11010           - Implemented GetPositionFromCharIndex();
11011           - Implemented SaveFile for PlainText and UnicodeText
11012           - Fixed set_Font, now setting a new font applies that font to
11013             the whole document
11014           - Implemented generic Document to RTF converter
11015           - Implemented SaveFile for RichText format (still missing unicode
11016             conversion for non-ansi chars)
11017           - Implemented get_Rtf
11018           - Implemented get_SelectedRtf
11019
11020 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11021
11022         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11023           to allow any captures to be released before triggering OnClick. This
11024           way a click handler may capture the mouse without interference.
11025         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11026           This way we send them even though X may not allow a grab (if the window
11027           isn't visible, for example)
11028
11029 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11030
11031         * DataGridViewRowEventArgs.cs: DataGridView implementation
11032         * DataGridViewElement.cs: DataGridView implementation
11033         * DataGridViewComboBoxCell.cs: DataGridView implementation
11034         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11035         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11036         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11037         * ImageLayout.cs: DataGridView implementation
11038         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11039         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11040         * DataGridViewSelectionMode.cs: DataGridView implementation
11041         * IDataGridViewEditingControl.cs: DataGridView implementation
11042         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11043         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11044         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11045         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11046         * DataGridViewColumnSortMode.cs: DataGridView implementation
11047         * DataGridView.cs: DataGridView implementation
11048         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11049         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11050         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11051         * Padding.cs: DataGridView implementation
11052         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11053         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11054         * DataGridViewRowEventHandler.cs: DataGridView implementation
11055         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11056         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11057         * DataGridViewButtonCell.cs: DataGridView implementation
11058         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11059         * DataGridViewEditMode.cs: DataGridView implementation
11060         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11061         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11062         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11063         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11064         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11065         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11066         * DataGridViewCellEventHandler.cs: DataGridView implementation
11067         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11068         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11069         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11070         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11071         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11072         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11073         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11074         * QuestionEventArgs.cs: DataGridView implementation
11075         * IDataGridViewEditingCell.cs: DataGridView implementation
11076         * DataGridViewTriState.cs: DataGridView implementation
11077         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11078         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11079         * DataGridViewColumnCollection.cs: DataGridView implementation
11080         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11081         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11082         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11083         * DataGridViewColumn.cs: DataGridView implementation
11084         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11085         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11086         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11087         * DataGridViewRow.cs: DataGridView implementation
11088         * DataGridViewImageCellLayout.cs: DataGridView implementation
11089         * DataGridViewImageCell.cs: DataGridView implementation
11090         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11091         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11092         * DataGridViewHeaderCell.cs: DataGridView implementation
11093         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11094         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11095         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11096         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11097         * QuestionEventHandler.cs: DataGridView implementation
11098         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11099         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11100         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11101         * DataGridViewCell.cs: DataGridView implementation
11102         * DataGridViewCellEventArgs.cs: DataGridView implementation
11103         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11104         * DataGridViewCellStyle.cs: DataGridView implementation
11105         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11106         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11107         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11108         * TextFormatFlags.cs: DataGridView implementation
11109         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11110         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11111         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11112         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11113         * DataGridViewButtonColumn.cs: DataGridView implementation
11114         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11115         * HandledMouseEventArgs.cs: DataGridView implementation
11116         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11117         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11118         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11119         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11120         * DataGridViewRowCollection.cs: DataGridView implementation
11121         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11122         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11123         * DataGridViewHitTestType.cs: DataGridView implementation
11124         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11125         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11126         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11127         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11128         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11129         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11130         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11131         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11132         * DataGridViewContentAlignment.cs: DataGridView implementation
11133         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11134         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11135         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11136         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11137         * DataGridViewPaintParts.cs: DataGridView implementation
11138         * DataGridViewCellCollection.cs: DataGridView implementation
11139         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11140         * DataGridViewImageColumn.cs: DataGridView implementation
11141         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11142         * DataGridViewElementStates.cs: DataGridView implementation
11143         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11144         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11145         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11146         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11147         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11148         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11149         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11150         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11151         * DataGridViewTextBoxCell.cs: DataGridView implementation
11152         * DataGridViewBand.cs: DataGridView implementation
11153         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11154         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11155         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11156         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11157         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11158         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11159         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11160         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11161         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11162         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11163         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11164
11165 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11166
11167         * ThemeWin32Classic.cs: 
11168           - Draw the outside focus rectangle around buttons
11169           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11170             doesn't use end caps for every dash of a line anymore. This
11171             workaround ignores the forecolor.
11172
11173 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11174
11175         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11176           endian safe.
11177
11178 2005-11-07  Jackson Harper  <jackson@ximian.com>
11179
11180         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11181
11182 2005-11-07  Jackson Harper  <jackson@ximian.com>
11183
11184         * ScrollableControl.cs: Calculate the maximum and change vars
11185         (more) correctly so that scrollbars appear as a sensible size.
11186
11187 2005-11-04  Jackson Harper  <jackson@ximian.com>
11188
11189         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11190         collection.
11191         * TreeView.cs: When the tree is sorted null out the top_node so
11192         that it is recalculated.
11193         - Use dotted lines instead of dashed lines to match MS better.
11194
11195 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11196
11197         * ListView.cs: 
11198           - Implements key search for items. Useful when browsing files with FileDialog
11199           - When changing view mode or when clear the items reset scrollbar positions
11200
11201 2005-11-04  Jackson Harper  <jackson@ximian.com>
11202
11203         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11204         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11205         as to what the method may do as there is no real way of creating a
11206         derived CurrencyManager and calling the method. 
11207
11208 2005-11-03  Jackson Harper  <jackson@ximian.com>
11209
11210         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11211         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11212         method which seems to just be used internally to refresh the tabs.
11213
11214 2005-11-03  Jackson Harper  <jackson@ximian.com>
11215
11216         * TabControl.cs: Implement the remove method. Fix some broken
11217         comments.
11218
11219 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11220
11221         * DateTimePicker.cs:
11222           - Added missing DateTimePickerAccessibleObject class
11223           - Added missing events
11224           - Added OnFontChanged method
11225         * Form.cs: Added missing attributes
11226         * TreeView.cs: Added missing attributes
11227
11228 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11229
11230         * GridItemCollection.cs: Fix signatures
11231
11232 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11233
11234         * XplatUI.cs: Updated build rev/date
11235         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11236           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11237         * Application.cs: Trigger context-specific ExitThread events
11238
11239 2005-11-03  Jackson Harper  <jackson@ximian.com>
11240
11241         * Menu.cs:
11242         * MainMenu.cs:
11243         * GridTableStylesCollection.cs:
11244         * Timer.cs:
11245         * TabPage.cs:
11246         * HelpProvider.cs:
11247         * StatusBar.cs:
11248         * MonthCalendar.cs: Signature fixes
11249
11250 2005-11-03  Jackson Harper  <jackson@ximian.com>
11251
11252         * TreeNodeCollection.cs: Remove should not be virtual.
11253         * TreeView.cs: Implement the last of the missing methods.
11254
11255 2005-11-03  Jackson Harper  <jackson@ximian.com>
11256
11257         * TreeNodeConverter.cs: Implement to get off my class-status back.
11258
11259 2005-11-03  Jackson Harper  <jackson@ximian.com>
11260
11261         * TreeView.cs: Hookup the bits for drag and drop.
11262         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11263         that nodes can be moved from tree to tree easily this just causes
11264         all sorts of problems.
11265         * TreeNodeCollection: Don't need to give treenodes an index and
11266         treeview anymore when they are added, these are computed on the
11267         fly. Also make sure to remove a node before its added.
11268
11269 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11270
11271         * TextControl.cs:
11272           - Added CaretSelection enum
11273           - Added comparison methods to Marker struct, makes selection code
11274             more readable
11275           - Added SelectionStart and SelectionEnd as 'moveable' location for
11276             the CaretDirection enum and handler
11277           - Added selection_prev variable to track optimized invalidation for
11278             word and line selection
11279           - Added SelectionVisible property (returns true if there is a valid 
11280             selection)
11281           - Switched CaretHasFocus to only display the caret if there is no
11282             visible selection
11283           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11284             using the direct character index; should be much faster
11285           - Added various conditional debug statements
11286           - Fixed invalidation calculation for selection ranges
11287           - Added ExpandSelection() method to support word and line selection
11288           - Switched SetSelectionToCaret to use new Marker compare overloads
11289           - Added central IsWordSeparator() method to determine word 
11290             separators/whitespace and FindWordSeparator() to streamline common
11291             usage of IsWordSeparator()
11292         * TextBoxBase.cs:
11293           - Removed unneeded grabbed variable, it was just mirroring
11294             Control.Capture
11295           - No longer firing OnTextChanged event when Text setter is called,
11296             since the base will fire the event for us
11297           - Added handling of Ctrl-Up/Down selection
11298           - Added handling of Shift-Cursorkey selection
11299           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11300             words
11301           - Added handling of Shift and Ctrl-Shift-Home/End selection
11302           - Removed some debug output
11303           - Added handling for single/double/tripple-click to place caret/
11304             select word/select line respectively (Fixes bug #76031)
11305           - Added support for drag expansion of word/line selection
11306         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11307           current selection
11308
11309 2005-11-02  Jackson Harper  <jackson@ximian.com>
11310
11311         * X11Dnd.cs: If the drag is going to and from a MWF window just
11312         copy the data instead of sending it out through the X Selection
11313         mechanism.
11314
11315 2005-11-02  Jackson Harper  <jackson@ximian.com>
11316
11317         * X11Dnd.cs:
11318         * XplatUIX11.cs: When in a drag we don't want motion notify
11319         messages to get passed on to the other controls. This prevents
11320         mouse move messages from showing up in the drag source.
11321
11322 2005-11-02  Jackson Harper  <jackson@ximian.com>
11323
11324         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11325         the correct button is release to end a drag.
11326         * XplatUIX11.cs: Make the button state internal so the drag system
11327         can access it.  Dragging needs to know about all button releases,
11328         not just left button.
11329
11330 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11331
11332         * Form.cs (Icon): If the icon is null, reset the icon to the
11333         default value. 
11334
11335         * Cursor.cs: When writing the AND-mask bitmap do not include the
11336         number of colors, but hardcode those to two (black and white),
11337         fixes the loading of color cursors (Paint Dot Net).
11338
11339         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11340         turn off autoscaling.
11341
11342         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11343
11344 2005-11-02  Jackson Harper  <jackson@ximian.com>
11345
11346         * X11Dnd.cs: Make sure to send a status message if the pointer
11347         enters a control that can not accept a drop, otherwise the cursor
11348         isn't updated correctly. Also tried to compress the lines of code
11349         a bit.
11350
11351 2005-11-02  Jackson Harper  <jackson@ximian.com>
11352
11353         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11354         set actions correctly.  This isn't perfect as XDND and win32 have
11355         some differences on how you allow actions. I'll clear this up by
11356         adding a path for drag from MWF to MWF windows.
11357         * XplatUIX11.cs: Hook into the dnd system.
11358
11359 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11360
11361         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11362         previously shown but they are no longer need it. Very obvious when 
11363         browsing files with FileDialog.
11364
11365 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11366
11367         * Control.cs: We always need to call OnPaintBackground. We pretty much
11368           ignore AllPaintingInWmPaint and always do the painting there, whether 
11369           it's set or not, since we always ignore the WM_ERASEBKGND message 
11370           (which we don't generate on X11). This fixes #76616.
11371         * Panel.cs: Removed unneeded background painting. This happens properly
11372           in Control.cs already
11373
11374 2005-10-31  Mike Kestner  <mkestner@novell.com>
11375
11376         * Menu.cs: Add items to collection before setting their index.
11377         * MenuItem.cs : add range checking with ArgumentException like MS.
11378         [Fixes #76510]
11379
11380 2005-10-31  Jackson Harper  <jackson@ximian.com>
11381
11382         * ListBox.cs: Invalidate if the area is visible at all not just
11383         contained in the visible rect. Fixes unselection of semi visible
11384         items.
11385
11386 2005-10-31  Jackson Harper  <jackson@ximian.com>
11387
11388         * Control.cs: Consistently name the dnd methods. Make them
11389         internal so we can override them to match some MS behavoir
11390         internally.
11391         * Win32DnD.cs: Use the new consistent names.
11392
11393 2005-10-31  Jackson Harper  <jackson@ximian.com>
11394
11395         * TreeView.cs: Don't draw the selected node when we lose focus.
11396
11397 2005-10-31  Jackson Harper  <jackson@ximian.com>
11398
11399         * X11Dnd.cs: We still need to reset the state even though a full
11400         reset isn't being done, otherwise status's still get sent all over
11401         the place.
11402
11403 2005-10-31  Jackson Harper  <jackson@ximian.com>
11404
11405         * Control.cs: Make the dnd_aware flag internal so the dnd
11406         subsystem can check it. Catch exceptions thrown in dnd handlers to
11407         match MS behavoir.
11408         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11409         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11410         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11411         flags to reduce the number of dnd enters/status's sent.
11412
11413 2005-10-31  Jackson Harper  <jackson@ximian.com>
11414
11415         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11416
11417 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11418
11419         * PictureBox.cs: Fixes 76512
11420
11421 2005-10-28  Jackson Harper  <jackson@ximian.com>
11422
11423         * X11Dnd.cs: Early implementation to support winforms being a drag
11424         source for data on X11. Also restructured the converters so they
11425         can go both ways now.
11426         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11427         
11428 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11429
11430         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11431           clipboard requests
11432
11433 2005-10-27  Jackson Harper  <jackson@ximian.com>
11434
11435         * TreeNode.cs: Implement serialization so my DnD examples will work.
11436
11437 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11438
11439         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11440           TreeView.cs: Don't dispose objects that are not owned.
11441           
11442 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11443
11444         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11445           should retrieve the current cursor and report that, but XplatUI
11446           doesn't (yet) have an interface for that (and I'm not sure I even
11447           can, on X11)
11448         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11449           until any message loop processing is done (and the WM_SETCURSOR
11450           replaces the cursor to the proper one)
11451         * XplatUIX11.cs: 
11452           - Fixed override behaviour, we can't set the cursor globally on X11, 
11453             just for our windows.
11454           - Invalidating the System.Drawing X11 display handle when we are
11455             shutting down
11456         * Control.cs: Fix to make csc happy
11457
11458 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11459
11460         * TextBoxBase.cs: 
11461           - get_Text: Add last line (without trailing newline) to returned
11462             value (Fixes 76212)
11463           - get_TextLength: Count last line in returned length
11464           - ToString: Call Text property instead of duplicating code
11465
11466 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11467
11468         * ImageList.cs: Dispose ImageAttributes objects.
11469
11470 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11471
11472         * ImageList.cs: Use attribute constructors with less arguments where
11473           possible.
11474
11475 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11476
11477         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
11478           Use typeof instead of strings when assembly is referenced. Added
11479           some more comments.
11480
11481 2005-10-21  Jackson Harper  <jackson@ximian.com>
11482
11483         * ListView.cs: Raise a double click event. Also tried to somewhat
11484         fix when the selectedindexchanged event is raised. Its still
11485         broken though.
11486
11487 2005-10-21  Jackson Harper  <jackson@ximian.com>
11488
11489         * TreeView.cs: New method to invalidate the plus minus area of a
11490         node without invalidating the whole node (maybe this can be used
11491         in some more places).
11492         * TreeNodeCollection.cs: When adding to an empty node we need to
11493         invalidate its plus minus area so the little block shows up.
11494         
11495 2005-10-21  Jackson Harper  <jackson@ximian.com>
11496
11497         * TreeView.cs: Make sure that when we invalidate a node the bounds
11498         are big enough to cover the selected box and the focus
11499         rectangle. Use a different colour for the lines connecting nodes
11500         so they show up with all themes.
11501
11502 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11503
11504         * NativeWindow.cs: Don't call anything that could call into the driver,
11505           we might be on a different thread.
11506
11507 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11508
11509         * Control.cs(Dispose): Since Dispose might run on a different thread,
11510           make sure that we call methods that could call into the driver via
11511           invoke, to avoid thread issues
11512
11513 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11514
11515         * XplatUI.cs: Removed finalizer
11516         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
11517           not allowing to be called on the finalizer thread.
11518
11519 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
11520
11521         * ImageList.cs:
11522           - Reverted r51889 and r51891.
11523           - Added ImageListItem class that stores unmodified image items and image
11524             properties required to create list images until handle is created.
11525           - Added AddItem and moved image creation logic to AddItemInternal.
11526           - Added CreateHandle method that creates images based on unmodified items.
11527           - Added DestroyHandle that changes state to store unmodified items.
11528           - Add and AddStrip methods no more create handle.
11529           - ReduceColorDepth has no return value.
11530           - Dispose destroys handle.
11531           - Modified other methods to reflect the above changes.
11532           - Implemented key support.
11533           - Added profile 2.0 members and attributes.
11534           - Added private Reset and ShouldSerialize methods that provide the same
11535             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
11536             them as they are private.
11537           - Added some more comments about implementation details.
11538
11539 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11540
11541         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
11542
11543 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11544
11545         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
11546
11547 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11548
11549         * DataGridDrawingLogic.cs: Fixes column hit calcultation
11550         * DataGridColumnStyle.cs: Remove debug message
11551
11552 2005-10-20  Jackson Harper  <jackson@ximian.com>
11553
11554         * TreeView.cs: We can always get input keys regardless of whether
11555         or not editing is enabled. They are used for navigation.
11556
11557 2005-10-20  Jackson Harper  <jackson@ximian.com>
11558
11559         * TreeNode.cs: Use the viewport rect for determining if a node
11560         needs to be moved for visibility. Don't use Begin/End edit. This
11561         calls a full refresh when its done.
11562         * TreeView.cs: New SetBottom works correctly.  Make the viewport
11563         rect property internal so the treenodes can see it. When clicking
11564         on a node we need to ensure that its visible because it might just
11565         be partly visible when clicked.
11566
11567 2005-10-20  Jackson Harper  <jackson@ximian.com>
11568
11569         * TreeNodeCollection.cs: Remove debug code.
11570
11571 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11572
11573         * Datagrid.cs: Implements column sorting in Datagrid
11574         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
11575
11576 2005-10-20  Jackson Harper  <jackson@ximian.com>
11577
11578         * TreeNodeCollection.cs: Remove items properly. Update the correct
11579         area after removing them.
11580
11581 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11582
11583         * Datagrid.cs: Should not call base.OnPaintBackground
11584
11585 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11586
11587         * XplatUIX11.cs (GetMessage):
11588           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
11589             window instead of client window
11590           - Now properly calculates NC_xBUTTONUP message coordinates
11591           - ScreenToMenu now properly calculates it's coordinates of whole 
11592             window, since menus are in the whole window, not in the client
11593             window
11594           - Added WholeToScreen coordinate translation method
11595
11596 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
11597
11598         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
11599           want to return a message, loop back to the beginning of the function
11600           and grab the next real message to process instead.
11601
11602 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11603
11604         * Splitter.cs: Properly set limits if no filler control is used
11605
11606 2005-10-19  Jackson Harper  <jackson@ximian.com>
11607
11608         * ColorDialog.cs: Don't show the help button if it is not enabled
11609         instead of disabling it (this is what MS does). Don't create the
11610         panel until the dialog is run, otherwise the vars (such as
11611         ShowHelp) are not set yet.
11612
11613 2005-10-19  Jackson Harper  <jackson@ximian.com>
11614
11615         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
11616         are reduced when adding nodes.
11617         * TreeNode.cs:
11618         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
11619         tree.
11620         
11621 2005-10-19  Jackson Harper  <jackson@ximian.com>
11622
11623         * FolderBrowserDialog.cs: End editing our treeview so the window
11624         actually gets refreshed.
11625
11626 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11627
11628         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
11629           Obsoleted handling of WM_ERASEBKGND, now always draws our background
11630           inside of WM_PAINT
11631
11632 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11633
11634         * MenuAPI.cs: Returns after Hidding window
11635         * XplatUIX11.cs: Added TODO found while debugging menu issues
11636
11637 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11638
11639         * XplatUIX11.cs: Do not re-map the whole window when it's size
11640           becomes non-zero unless it's supposed to be actually visible
11641
11642 2005-10-18  Jackson Harper  <jackson@ximian.com>
11643
11644         * TreeView.cs: We don't need to keep a count anymore.
11645         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
11646         use the Grow method.
11647
11648 2005-10-18  Jackson Harper  <jackson@ximian.com>
11649
11650         * TreeNodeCollection.cs: Insert is not supported on arrays, so
11651         implement it manually here.
11652
11653 2005-10-18  Jackson Harper  <jackson@ximian.com>
11654
11655         * ImageList.cs: Dont kill the list when the colour depth is
11656         changed, just change the colour depth of all the images.
11657         - Same goes for setting the image size. Just resize them all
11658         instead of killing the list softly.
11659
11660 2005-10-18  Jackson Harper  <jackson@ximian.com>
11661
11662         * Control.cs: Don't invalidate empty rectangles.
11663
11664 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11665
11666         * ListViewItem.cs:
11667           - Adds checked item to the Checked/Item lists (where empty before)
11668           - Do not add items to the Selected lists if they are already present
11669         * ListView.cs:
11670           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
11671           - When deleting items make sure that we delete them for the Selected
11672           and Checked list also.
11673
11674 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11675
11676         * Label.cs: Dispose objects no longer used
11677         * ThemeWin32Classic.cs: Dispose objects no longer used
11678
11679 2005-10-18  Jackson Harper  <jackson@ximian.com>
11680
11681         * TabControl.cs: Don't refresh the whole control when the tabs are
11682         scrolled, we just need to refresh the tab area.
11683
11684 2005-10-17  Jackson Harper  <jackson@ximian.com>
11685
11686         * XplatUIX11.cs: Compress code a little bit. Only calculate the
11687         after handle when we need it.
11688
11689 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11690
11691         * Control.cs: When the parent size changes, recalculate anchor 
11692           positions. Partial fix for #76462
11693
11694 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11695
11696         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
11697           drawn. Fixes #76462
11698
11699 2005-10-17  Jackson Harper  <jackson@ximian.com>
11700
11701         * MonthCalendar.cs: Don't create the numeric up down until our
11702         handle is created. Otherwise our handle is created in the
11703         constructor and we don't know if we are a WS_CHILD or WS_POPUP
11704         yet.
11705
11706 2005-10-17  Jackson Harper  <jackson@ximian.com>
11707
11708         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
11709         correctly.
11710
11711 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11712         * TreeNode.cs : small logical fix (was using local var instead of field)
11713         
11714 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11715
11716         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
11717
11718 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11719
11720         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
11721
11722 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
11723
11724         * Control.cs: 
11725           - Re-implemented anchoring code. My first version was really broken.
11726             This fixes bug #76033. Unlike the previous implementation we will
11727             no longer have round errors since all numbers are calculated from
11728             scratch every time. Removed various anchor-related obsolete vars.
11729           - InitLayout no longer causes layout event firing and layout to be 
11730             performed
11731
11732 2005-10-16  Jackson Harper  <jackson@ximian.com>
11733
11734         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
11735         which was broken).
11736
11737 2005-10-16  Jackson Harper  <jackson@ximian.com>
11738
11739         * TabControl.cs: Remove debug code.
11740
11741 2005-10-16  Jackson Harper  <jackson@ximian.com>
11742
11743         * XEventQueue.cs: Increase the default queue size (very simple
11744         apps needed to grow the queue).
11745         * Hwnd.cs: No finalizer so we don't need to suppress
11746         finalization. Compute the invalid area manually so a new rectangle
11747         does not newto be created.
11748         * ScrollableControl.cs: Don't set any params (otherwise visibility
11749         isn't set correctly).
11750         * MdiChildContext.cs: New constructor takes the mdi parent so it
11751         doesn't have to be computed and avoids a crash on windows. Draw
11752         the window icon properly, and allow the text to be seen.
11753         * Form.cs: Use new MdiChildContext constructor. Make sure the
11754         child context isn't null in wndproc.
11755         * TabControl.cs: Don't set focus, this is muddling keyboard
11756         behavoir. Expand the tab rows when a window size increase will
11757         allow extra tabs to be seen. Don't allow tabs smaller than the
11758         width of a window to be scrolled out of view.
11759         * TreeNode.cs:
11760         * TreeView.cs: Use measure string to calculate a nodes width, the
11761         width is cached and only updated when the text or the font is
11762         changed. Don't check for expand/collapse clicks on the first level
11763         nodes if root lines are disabled.
11764         
11765 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
11766
11767         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
11768
11769 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11770
11771         * DataGridBoolColumn.cs: fixes warning
11772
11773 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11774
11775         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
11776         to match more to match more precisely the MS Net behavior
11777
11778 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11779
11780         * Hwnd.cs: Added field to track if window is mapped
11781         * XplatUIX11.cs: 
11782           - Unmap windows if they become 0-size, re-map when 
11783             they are >0 again; fixes #76035
11784           - Re-set our error handler after initializing X11Desktop
11785             to override any error handlers Gtk or whatever was called
11786             may have set.
11787
11788 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11789
11790         * CheckedListBox.cs: Removed unused vars
11791         * ListView.cs: Fixed signatures
11792         * RichTextBox.cs: Removed unused vars
11793         * TextBoxBase.cs: Removed unused vars
11794         * XplatUIWin32.cs: Removed unused vars
11795         * XplatUIX11.cs: Removed unused vars
11796         * XplatUI.cs: Updated version and date to latest published
11797
11798 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11799
11800         * Cursor.cs: Added private .ctor to work around a bug in
11801           resourceset (Thanks to Geoff Norton for the help on this)
11802         * SplitterEventArgs.cs: Made fields accessible so we don't
11803           waste boatloads of objects and can reuse the same one
11804           in Splitter
11805         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
11806           any captions and borders when generating screen coordinates
11807         * Splitter.cs: Reimplemented control, now fully complete, uses
11808           rubberband drawing, supports and obeys all properties, has
11809           proper cursors
11810
11811 2005-10-13  Miguel de Icaza  <miguel@novell.com>
11812
11813         * Form.cs (Form): Setup default values for autoscale and
11814         autoscale_base_size;  Make these instance variables, not static
11815         variables. 
11816
11817         (OnLoad): on the first load, adjust the size of the form.
11818
11819 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11820
11821         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
11822           width argument to DrawReversibleRectangle()
11823         * XplatUIWin32.cs, XplatUIX11.cs: 
11824           - Implemented width for DrawReversibleRectangle()
11825           - Added logic to DrawReversibleRectangle that recognizes a zero
11826             width or height and only draws a line in that situation
11827         
11828 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
11829
11830         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
11831         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
11832         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
11833           method (it uses our FosterParent window to get a graphics context)
11834
11835 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
11836
11837         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
11838           and SetWindowBackground methods
11839         * Control.cs:
11840           - Setting proper ControlStyles
11841           - We no longer call XplatUI.SetWindowBackground and XplatUI.
11842             EraseWindowBackground, instead we draw the window background
11843             ourselves in PaintControlBackground. This behaviour is
11844             required to match MS, where, when OnPaintBackground is not
11845             called, the background is not drawn.
11846           - Removed unneeded Refresh() in set_Text
11847         * Hwnd.cs: Dropped the ErasePending support. No longer needed
11848         * XplatUIX11.cs:
11849           - Created DeriveStyles method to translate from CreateParams to
11850             FormBorderStyle and TitleStyle, also handles BorderStyle (which
11851             matches FormBorderStyle enum values)
11852           - Consolidated SetHwndStyles and CalculateWindowRect border/title
11853             style calculations into single DeriveStyles method
11854           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
11855             from redrawing the whole window on any resize or expose.
11856           - Fixed CreateWindow usage of SetWindowValuemask. Before not
11857             all styles were applied to our whole/client window appropriately
11858           - Removed EraseWindowBackground() and SetWindowBackground() methods
11859           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
11860             no longer clear/redraw the background through X
11861           - Removed handling of erase_pending bit, we have no use for it (or
11862             so it seems)
11863         * XplatUIOSX.cs:
11864           - Removed generation and handling of WM_ERASEBKGND message
11865           - Removed EraseWindowBackground() and SetWindowBackground() methods
11866           - Removed handling of hwnd.ErasePending flag
11867         * XplatUIWin32.cs:
11868           - Removed EraseWindowBackground() and SetWindowBackground() methods
11869           - We no longer call EraseWindowBackground on PaintEventStart, we 
11870             ignore the fErase flag, erasing is handled in Control in the
11871             background handler
11872         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
11873           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
11874           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
11875           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
11876           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
11877           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
11878           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
11879
11880 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
11881
11882         * PropertyGrids.cs: Get sub properties
11883         * PropertyGridView.cs: Fix drawing code
11884
11885 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11886
11887         * ListBox.cs: Fixes 76383
11888
11889 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11890
11891         * DataGridTextBoxColumn.cs: Sets location and size before attachment
11892         * ThemeWin32Classic.cs: Fixes border drawing and calculations
11893         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
11894
11895
11896 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11897
11898         * ComboBox.cs: Fixes border drawing
11899
11900 2005-10-10  Miguel de Icaza  <miguel@novell.com>
11901
11902         * MimeIcon.cs: Ignore errors if the file can not be read.
11903
11904 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11905
11906         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
11907          - Fixed border calculations
11908          - Fixed horizontal scrolling in single column listboxes
11909          - Fixed drawing issues
11910
11911 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
11912
11913         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
11914           FormBorderStyle enum
11915         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
11916           code to determine FormBorderStyles from CreateParams
11917         * Form.cs:
11918           - Fixed bug where we'd set the wrong window styles if we were
11919             not creating an MDI window
11920           - Added call to XplatUI.SetBorderStyle when form borders are set
11921         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
11922         * Hwnd.cs:
11923           - Removed obsolete edge style
11924           - Switched from BorderStyle to FormBorderStyle
11925         
11926 2005-10-10  Jackson Harper  <jackson@ximian.com>
11927
11928         * Form.cs: Use the property to get the window handle instead of
11929         accessing it directly. Prevents a null reference exception.
11930
11931 2005-10-10  Jackson Harper  <jackson@ximian.com>
11932
11933         * TreeView.cs: Don't adjust the rect given to DrawString now that
11934         our libgdiplus draws correctly.
11935
11936 2005-10-08  Jackson Harper  <jackson@ximian.com>
11937
11938         * TreeView.cs: Don't try to find the clicked on node if there are
11939         no nodes in the tree.
11940
11941 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11942
11943         * RichTextBox.cs:
11944
11945           restore
11946
11947 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11948
11949         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
11950           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
11951           ErrorProvider.cs:
11952           Use ResPool for brushes and dispose System.Drawing objects that
11953           are not used anymore.
11954
11955 2005-10-07  Jackson Harper  <jackson@ximian.com>
11956
11957         * MdiChildContext.cs: Use the new borders instead of drawing them
11958         ourselves.
11959
11960 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11961
11962         * Calling UpdateBounds after changing the window's BorderStyle 
11963         since the style can change the ClientSize
11964
11965 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11966
11967         * Control.cs: Made PaintControlBackground virtual
11968         * Panel.cs: Overriding PaintControlBackground instead of using paint
11969           event; paint event method was interfering with 'real' users of the
11970           event.
11971
11972 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11973
11974         * ThemeWin32Classic.cs: remove border drawing since it is handled
11975         by the base control class now and was causing double border drawing.
11976
11977 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11978
11979         * Panel.cs: Redraw our background on paint. Not a pretty solution,
11980           but it does seem to match MS behaviour. This fixes bug #75324
11981
11982 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11983
11984         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
11985           somewhat hackish looking
11986
11987 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
11988
11989         * TextBoxBase.cs:
11990           - We now accept Enter even if AcceptEnter is false, if the containing
11991             form does not have an AcceptButton configured (fixes bug #76355)
11992           - Calculations are now fixed to no longer use Width/Height, but
11993             ClientSize.Width/Height, since we now support borders (this was
11994             a result of fixing borders and therefore bug #76166)
11995           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
11996             true (fixes bug #76354)
11997         
11998 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11999
12000         * Control.cs: 
12001           - Defaulting BorderStyle and setting it in XplatUI when our window 
12002             is created
12003           - Added enum check to InternalBorderStyle setter
12004         * XplatUIX11.cs: 
12005           - Added drawing of window borders
12006           - Now properly calculates WM decorations offset for toplevel 
12007             windows (fixes bug #74763)
12008         * XplatUIWin32.cs: 
12009           - Implemented BorderStyles for windows (we're letting win32 draw 
12010             the border for us)
12011           - Fixed the signature for SetWindowLong
12012         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12013           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12014           setting borders
12015         * UpDownBase.cs: Remove drawing of borders, this is handled by
12016           the driver, outside the client area
12017         * ListView.cs: Removed bogus border calculations. The control should
12018           be oblivious to borders, since those are not part of the client
12019           area. 
12020         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12021         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12022           drawing code
12023
12024 2005-10-06  Jackson Harper  <jackson@ximian.com>
12025
12026         * MdiChildContext.cs: Clear out the old virtual position remove
12027         all the unneeded calls to CreateGraphics.
12028
12029 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12030
12031         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12032
12033 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12034
12035         * Form.cs: 
12036           - Added loading and setting of our new default icon
12037           - Only set icon if window is already created
12038
12039 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12040
12041         * Label.cs:
12042           - Do not explicitly set the foreground and background colors, to
12043             allow inheriting from parents (fixes #76302)
12044           - Use Control's InternalBorderStyle property to deal with borders
12045
12046 2005-10-06  Jackson Harper  <jackson@ximian.com>
12047
12048         * MdiChildContext.cs: Use the new xplatui function to draw a
12049         reversible rect.
12050
12051 2005-10-06  Jackson Harper  <jackson@ximian.com>
12052
12053         * Form.cs: Add the parent before creating the child context cause
12054         we need the parent when setting up the child.
12055
12056 2005-10-06  Jackson Harper  <jackson@ximian.com>
12057
12058         * FolderBrowserDialog.cs: redo the tree population code so a
12059         second thread isn't used. Should be a lot faster and more stable
12060         now.
12061
12062 2005-10-05  Jackson Harper  <jackson@ximian.com>
12063
12064         * TreeView.cs: There are no expand/collapse boxes if the node has
12065         no children.
12066
12067 2005-10-05  Jackson Harper  <jackson@ximian.com>
12068
12069         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12070
12071 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12072
12073         * FileDialog.cs: Fix InitialDirectory
12074
12075 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12076
12077         * ComboBox.cs:
12078                 - Fixes changing between styles
12079                 - Fixes simple mode
12080                 - Fixes last item crashing when navigating with keyboard
12081
12082 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12083
12084         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12085
12086 2005-10-05  Jackson Harper  <jackson@ximian.com>
12087
12088         * TreeView.cs: If updating the root node do a full refresh.
12089         * TreeNode.cs: The root node should be expanded by default. Also
12090         added a utility prop to tell if we are the root node.
12091         * TreeNodeCollection.cs: Only refresh if the node we are being
12092         added to is expanded. Also added a comment on a potential
12093         optimization.
12094         
12095 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12096
12097         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12098           in dispose method. Fixes #76330
12099
12100 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12101
12102         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12103
12104                 - Implements vertical and horizontal scrolling using XplatUI
12105                 - Fixes keyboard navagation
12106                 - Fixes EnsureVisible
12107                 - Drawing fixes
12108                 - Handles and draws focus properly
12109
12110
12111 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12112
12113         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12114           Create handle. NET_2_0: Destroy handle when value is null.
12115
12116 2005-10-03  Jackson Harper  <jackson@ximian.com>
12117
12118         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12119         revert and a new patch to prevent the thumb from refreshing so
12120         much.
12121
12122 2005-10-02  Jackson Harper  <jackson@ximian.com>
12123
12124         * ScrollBar.cs: Don't update position if it hasn't actually
12125         changed. This occurs when you hold down the increment/decrement
12126         buttons and the thumb gets to the max/min.
12127
12128 2005-10-01  Jackson Harper  <jackson@ximian.com>
12129
12130         * Form.cs:
12131         * MdiChildContext.cs:
12132         * MdiClient.cs: Implement ActiveMdiChild in Form.
12133
12134 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12135
12136         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12137
12138 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12139
12140         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12141           be found
12142
12143 2005-09-30  Jackson Harper  <jackson@ximian.com>
12144
12145         * ListBox.cs: Don't do a full refresh unless some data has
12146         actually changed.
12147
12148 2005-09-30  Jackson Harper  <jackson@ximian.com>
12149
12150         * TreeView.cs: Make sure that the checkboxes size is factored in
12151         even when not visible.
12152
12153 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12154
12155         * FileDialog.cs: Fix Jordi's build break
12156
12157 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12158
12159         * FileDialog.cs: 
12160                 - Use standard the Windows colours for the combobox as espected
12161                 - Dispose objects that use resouces when no longer need them
12162
12163 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12164
12165         * X11DesktopColors.cs: Initial incomplete implementation
12166         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12167
12168 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12169
12170         * Theme.cs: 
12171           - Switched Theme color names to match the names defined in 
12172             System.Drawing.KnownColors. Life's hard enough, no need to make 
12173             it harder.
12174           - Added setters to all theme color properties so themes can set
12175             their color schemes. The setters also propagate the color changes
12176             to System.Drawing.KnownColors via reflection
12177         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12178           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12179           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12180           use the new, more logical theme color names
12181         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12182           post-NT colors
12183         * ThemeWin32Classic.cs:
12184           - Removed code to set the old classic Windows colors. Instead it
12185             now relies on the colors returned by System.Drawing.KnownColors
12186             which will be either modern static colors (Unix) or colors
12187             read from the user's configuration (Win32)
12188           - Updated to use the new, more logical theme color names
12189           - Switched DataGrid drawing code to use only Theme colors instead of
12190             a mix of System.Drawing.KnownColors and Theme colors
12191           - DrawFrameControl(): Removed code that fills the button area, the
12192             fill would overwrite any previous fill done by a control. This
12193             fixes bug #75338 
12194           - Added DrawReversibleRectangle() stub
12195         * ScrollableControl.cs: Set visible state to false when scrollbars
12196           are removed (pdn fix)
12197         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12198           DrawReversibleRectangle() method to allow drawing primitive 
12199           'rubber bands'
12200         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12201
12202 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12203
12204         * ImageList.cs: Add(Icon): Create handle.
12205
12206 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12207
12208         * ListView.cs:
12209         * ThemeWin32Classic.cs:
12210                 - Fixes detail mode
12211                 - Sets clippings
12212                 - Issues with drawing
12213
12214 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12215
12216         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12217           source has to be the ImageList.
12218
12219 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12220
12221         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12222
12223 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12224
12225         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12226
12227 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12228
12229         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12230
12231 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12232         * GridItem.cs: Fixed TODOs
12233         * GridItemCollection.cs: Added ICollection interface
12234
12235 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12236
12237         * ImageList.cs: Resize icons when needed.
12238
12239 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12240
12241         * ListViewItem.cs
12242                 - Fixes GetBounds and returns on screen rects
12243         * ListView.cs:
12244                 - Fixes vertical and horzintal scrolling of items
12245         * ThemeWin32Classic.cs:
12246                 - Fixes drawing
12247                 
12248 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12249
12250         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12251
12252 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12253
12254         * ImageList.cs: Added comments about handle creation. Moved Handle,
12255           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12256           Handle is created in Add methods.
12257
12258 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12259          
12260         * DataGridDrawingLogic.cs: 
12261                 - Takes rows into account on Colum calculations
12262                 - Returns the column when clickig
12263         * DataGrid.cs:
12264                 - Fixes default HitTestInfo values
12265                 - Fixes HitTestInfo.ToString
12266                 - Fixes ResetBackColor          
12267         
12268 2005-09-28  Jackson Harper  <jackson@ximian.com>
12269
12270         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12271         sizing or cursor changes). Also added some temp code to draw the
12272         titlebars text (Makes dev a little easier).
12273
12274 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12275
12276         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12277
12278 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12279          
12280         * ListBox.cs: Fixes bug 76253
12281
12282 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12283
12284         * ImageList.cs: Added comments about the current implementation. Added
12285           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12286           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12287           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12288           with Bitmap.LockBits for better performance. Revised the whole file to
12289           match MS.NET behaviour and provide better performance. Non-public
12290           interface members are calling public members even when they throw
12291           NotSupportedException for better maintainability. Moved ColorDepth,
12292           ImageSize, ImageStream and TransparentColor implementations to
12293           ImageCollection for better performance as these properties are not used
12294           by ImageList.
12295         * ImageListStreamer.cs: Added a new internal constructor that takes an
12296           ImageList.ImageCollection and serializes Images based on
12297           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12298           match ImageList property name.
12299
12300 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12301
12302         * ListBox.cs: Fixes IndexFromPoint for last item
12303
12304 2005-09-27  Jackson Harper  <jackson@ximian.com>
12305
12306         * Form.cs: Set the position of new mdi children correctly.
12307
12308 2005-09-27  Jackson Harper  <jackson@ximian.com>
12309
12310         * MdiClient.cs: New mdi children need to be added to the back of
12311         the controls collection so the zorder is set correctly. Also add a
12312         count of all the child windows that have been created.
12313
12314 2005-09-27  Jackson Harper  <jackson@ximian.com>
12315
12316         * Form.cs (CreateParams): Setup MDI forms correctly.
12317
12318 2005-09-27  Jackson Harper  <jackson@ximian.com>
12319
12320         * MdiChildContext.cs:
12321         * MonthCalendar.cs:
12322         * UpDownBase.cs:
12323         * ListBox.cs:
12324         * ListView.cs:
12325         * TextBoxBase.cs:
12326         * TreeView.cs:
12327         * ScrollableControl.cs:
12328         * ComboBox.cs: Add implicit controls using the new implict control
12329         functionality in ControlCollection. Also try to block multiple
12330         control add in a suspend/resume layout to save some cycles.
12331         
12332 2005-09-27  Jackson Harper  <jackson@ximian.com>
12333
12334         * Control.cs: Add functionality to the controls collection to add
12335         'implicit controls' these are controls that are created by the
12336         containing control but should not be exposed to the user. Such as
12337         scrollbars in the treeview.
12338         * Form.cs: The list var of the ControlsCollection is no longer
12339         available because of the potential of implicit controls getting
12340         ignored by someone accessing the list directly.
12341
12342 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12343
12344         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12345           loose it's parent. (Fixed bug introduced in r49103 when we added
12346           setting the child parent to null on Remove)
12347
12348 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12349
12350         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12351         * Splitter.cs: Added missing attributes for BorderStyle property.
12352         * TextBoxBase.cs: Marked Calculate* methods internal.
12353         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12354         MS.NET.
12355
12356 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12357          
12358         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12359
12360 2005-09-25  Jackson Harper  <jackson@ximian.com>
12361
12362         * TreeView.cs: Update the node bounds correctly regardless of
12363         whether the node is visible.
12364
12365 2005-09-25  Jackson Harper  <jackson@ximian.com>
12366
12367         * ImageList.cs: Don't dispose the image after it is added to the
12368         image list. Only reformat images that need to be resized.
12369
12370 2005-09-25  Jackson Harper  <jackson@ximian.com>
12371
12372         * ImageList.cs: Don't set the format when changing the image.
12373
12374 2005-09-25  Jackson Harper  <jackson@ximian.com>
12375
12376         * TreeView.cs: We can't just assume the node has a font. Use the
12377         treeviews font if no node font is available.
12378
12379 2005-09-25  Jackson Harper  <jackson@ximian.com>
12380
12381         * TreeView.cs: Allow the scrollbars to be reset with negative
12382         values.
12383         - Don't add scrollbars to negative sized windows.
12384
12385 2005-09-23  Jackson Harper  <jackson@ximian.com>
12386
12387         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12388         old Mono.Posix. Also remove some stray code that shouldn't have
12389         been committed.
12390
12391 2005-09-23  Jackson Harper  <jackson@ximian.com>
12392
12393         * TreeView.cs: Attempt at proper sizing of the horizontal
12394         scrollbar. Also don't resize the scrollbars unless they are
12395         visible.
12396
12397 2005-09-23  Jackson Harper  <jackson@ximian.com>
12398
12399         * TreeView.cs: We don't need to expand the invalid area when the
12400         selection changes, as this is all drawn in the node's bounding
12401         box. The area needs to be expanded (previous typo was contracting
12402         it) when the focus rect moves.
12403
12404 2005-09-23  Jackson Harper  <jackson@ximian.com>
12405
12406         * TreeView.cs: Display the selection box under the correct
12407         circumstances. We were rendering white text with no selection box
12408         before.
12409
12410 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12411
12412         * TextControl.cs(Split): Now updates selection start/end if it points 
12413           into a line that's being split. Fixes a FIXME and bug #75258
12414
12415 2005-09-23  Jackson Harper  <jackson@ximian.com>
12416
12417         * Binding.cs:
12418         * ListControl.cs: Don't use the path when retrieving binding
12419         managers from the binding context. My bat sense tells me that the
12420         path is only used on insertion.
12421
12422 2005-09-22  Jackson Harper  <jackson@ximian.com>
12423
12424         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12425
12426 2005-09-22  Jackson Harper  <jackson@ximian.com>
12427
12428         * Splitter.cs: There are special cursors used for splitting.
12429         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12430
12431 2005-09-22  Jackson Harper  <jackson@ximian.com>
12432
12433         * Splitter.cs: Change the cursor appropriately when the splitter
12434         is moused over, so the user actually knows there is a splitter
12435         there.
12436
12437 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12438
12439        * Label.cs : Fix ToString method to give same output as MS.NET
12440
12441 2005-09-22  Jackson Harper  <jackson@ximian.com>
12442
12443         * TreeView.cs: Create the scrollbars when the handle is created
12444         and add them right away, just make them invisble. Also account for
12445         the window being shrunk vertically to the point that the vert
12446         scrollbar needs to be added.
12447         - Remove some 0.5 adjustments to get around anti aliasing issues.
12448         
12449 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12450          
12451         * MainMenu.cs: Fixes default value
12452         * MenuItem.cs: Fixes default value
12453
12454 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12455
12456         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12457
12458 2005-09-21  Jackson Harper  <jackson@ximian.com>
12459
12460         * Control.cs: Don't try to set the border style on the window if
12461         it hasn't been created. When the window is created the border
12462         style will be used.
12463
12464 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12465
12466         * Control.cs (Update): Don't call XplatUI if we don't have a
12467           window handle yet
12468
12469 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12470
12471         * ContainerControl.cs: Instead of throwing an exception, print
12472           a one-time warning about Validate not being implemented
12473         * XplatUIWin32.cs: Removed debug output
12474
12475 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12476
12477         * Control.cs: Only set XplatUI background if we expect the windowing
12478           system to handle the background. This stops controls that draw their
12479           own background from flickering
12480
12481         * XplatUIX11.cs: Support custom visuals and colormaps for window 
12482           creation. This allows, amongst other things, using MWF X11 windows 
12483           with OpenGL.
12484
12485 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12486
12487         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12488           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12489           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12490           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12491           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12492           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12493           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12494           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12495           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12496           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12497           GridColumnStylesCollection.cs, 
12498           IDataGridColumnStyleEditingNotificationService.cs,
12499           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12500           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12501           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12502           TreeNodeCollection.cs, AmbientProperties.cs, 
12503           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12504           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12505           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12506           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12507           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12508           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12509           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12510           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12511           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12512           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
12513           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
12514           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
12515           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
12516           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
12517           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
12518           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
12519           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
12520           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
12521           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
12522           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
12523           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
12524           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
12525           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
12526           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
12527           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
12528           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
12529           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
12530           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
12531           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
12532           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
12533           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
12534           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
12535           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
12536           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
12537           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
12538           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
12539           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
12540
12541 2005-09-21  Jackson Harper  <jackson@ximian.com>
12542
12543         * TreeNode.cs: Call Before/After Expand not Collapse when
12544         expanding.
12545
12546 2005-09-20  Jackson Harper  <jackson@ximian.com>
12547         
12548         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
12549
12550 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12551          
12552         * ListViewItem.cs:
12553                 - Fixes bug 76120
12554                 - Fixes proper storing of subitems
12555                 - Fixes not updated items
12556
12557 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
12558
12559         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
12560           things if our window handle isn't created yet. Also disabled 
12561           debug for TextBoxBase
12562
12563 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
12564
12565         * MenuAPI.cs: Remove filtering of events to allow menu usage
12566
12567 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12568
12569         * Cursor.cs: Allow null to be passed to Cursor.Current.
12570
12571 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
12572
12573         * ThemeWin32Classic.cs:
12574           - Change some private methods/fields to protected virtual so that 
12575             they can be accessed and overriden in derived classes
12576           - First refactoring of some methods. Derived themes now don't 
12577             need to duplicate the complete code from ThemeWin32Classic
12578         * ThemeNice.cs:
12579           - Added nice StatusBar
12580           - Derive from ThemeWin32Classic and not Theme
12581           - Removed duplicate ThemeWin32Classic code
12582
12583 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12584
12585         * Control.cs (ControlCollection.Add): If the value null is passed
12586         the control is ignored. 
12587
12588         Optimize this loop.
12589
12590 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
12591
12592         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
12593           PostQuitMessage state.
12594         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
12595
12596 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
12597
12598         * Application.cs: Our constructor will never get called, move 
12599           initialization to fields; fixes bug #75933
12600
12601 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12602
12603         * FileDialog.cs :
12604                 - Allow files to be selected properly using file name
12605                 combo box.
12606                 - Add ability to change diretory (absolute / relative)
12607                 using file name combo box.
12608
12609 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12610          
12611         * ListBox.cs: 
12612                 - Fixes Multicolumn listboxes item wrong calculations
12613                 - Allows to click when only one item is in the listbox
12614                 - Fixes crash when no items using keyboard navigation
12615
12616 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
12617
12618         * ComboBox.cs: Reverted almost everything from the latest patch which
12619           broke ComboBox
12620
12621 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
12622         
12623         * ToolTip.cs:
12624                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
12625         * ComboBox.cs:
12626                 - When DropDownStyle is Simple, it does not show scrollbar 
12627                 to the last item of the list.
12628                 - When DropDownStyle is Simple, it crashed when the list was 
12629                 scrolled down with the down cursor key.
12630                 - Fixed a bug that when DropDownStyle is DropDownList, the 
12631                 selected item was not shown.
12632                 - The position of the selected item was not preserved when 
12633                 the next dropdown happened.
12634         * ThemeWin32Classic.cs:
12635                 - Items were wrapped at the right end.
12636         * CheckedListBox.cs:
12637                 - Fixed Add method
12638         * ListBox.cs:
12639                 - Items should be fully shown.
12640                 - When resizing and vertical scrollbar disappeared, the item 
12641                 of index 0 should be on the top of the list.
12642                 - GetItemRectangle should consider the size of ver. scrollbar
12643         * StatusBar.cs:
12644                 - SizingGrip area should not be allocated when it is not 
12645                 displayed.
12646                 - Now it reflects MinWidth of the containing panel and 
12647                 fixed a crash that happens when its width becomes so small.
12648
12649 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12650
12651         * CheckedListBox.cs: Fixes bug 76028
12652         * ListBox.cs: Fixes bug 76028
12653
12654 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12655
12656         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
12657         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
12658
12659 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
12660
12661         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
12662
12663 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12664
12665         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
12666
12667 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12668
12669         * IRootGridEntry.cs: Added
12670         * PropertyGridCommands.cs: Added
12671         * PropertiesTab.cs: Added missing methods and property
12672         * PropertyGridView.cs: Made class internal
12673         * PropertyGridTextBox.cs: Made class internal
12674
12675 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12676
12677         * MimeIcon.cs: Try to check some other environment variables
12678           if "DESKTOP_SESSION" returns "default"
12679
12680 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12681
12682         * ThemeNice.cs: Corrected background colors (e.g. menus)
12683         * ColorDialog.cs: Use correct background colors for controls
12684
12685 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12686
12687         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
12688
12689 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
12690
12691         * RichTextBox.cs: Added initial implementation
12692         * lang.cs: Removed. Was accidentally checked in long time ago
12693         * TODO: Removed. Contents were obsolete
12694
12695 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12696                                                                                 
12697         * PropertiesTab.cs : Added
12698
12699 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12700                                                                                 
12701         * PropertyGrid.cs : Update
12702         * PropertyGridView.cs : Update
12703         * System.Windows.Forms.resx : Added images and strings
12704
12705 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
12706
12707         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
12708  
12709 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
12710
12711         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
12712           a busy loop right after the Ungrab the X11 display is otherwise 
12713           blocked
12714
12715 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
12716
12717         * ThemeWin32Classic.cs: Optimise the use of clipping
12718
12719 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
12720
12721         * DataGrid.cs: fixes recursion bug
12722
12723 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
12724
12725         * ThemeNice.cs: 
12726           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
12727           - Cleanup
12728
12729 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
12730
12731         * ThemeNice.cs: Draw nice ProgressBars
12732
12733 2005-09-01  Miguel de Icaza  <miguel@novell.com>
12734
12735         * VScrollBar.cs: Another buglet found by Aaron's tool. 
12736
12737         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
12738         bug finder.
12739
12740 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
12741
12742         * ThemeNice.cs:
12743           - Added nicer menu drawing
12744           - Updated DrawTab
12745           - some refactoring
12746
12747 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12748
12749         * CreateParams.cs (ToString): Made output match MS
12750         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
12751             handle is already created (to avoid forcing window creation)
12752         * XplatUIX11.cs: Set window text to caption after creating window,
12753           in case Text was set before window was created
12754         * Form.cs: Use this.Text instead of a static string as caption
12755
12756 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12757
12758         * NotifyIcon.cs: Don't set the window to visible; this screws
12759           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
12760           OnPaint without a bitmap)
12761         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
12762           happen very often anyway; we could add the check to the WM_PAINT 
12763           event generation code
12764
12765 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12766
12767         * NotifyIcon.cs: Fill the icon area with a background color, to 
12768           avoid 'residue' when transparent icons are drawn
12769         * XplatUIX11.cs:
12770           - Handle whole_window == client_window when destroying windows
12771           - SystrayAdd(): Set client_window to whole_window value to
12772             get mouse and other events passed to NotifyIcon
12773
12774 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12775
12776         * Form.cs: Set proper default for Opacity property
12777         * NotifyIcon.cs:
12778           - ShowSystray(): Don't bother creating telling the OS
12779             about the systray item if no icon is provided
12780           - Now handles WM_NCPAINT message to deal with whole/client window
12781             split
12782           - Create window as visible to not get caught by Expose optimization
12783         * Hwnd.cs: Removed debug message
12784         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
12785           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
12786             PaintEventStart/End to use new client argument
12787         * TextBoxBase.cs:
12788           - Commented out debug messages
12789           - Switched PaintEventStart/End to use new client argument
12790         * XplatUI.cs: Added client window bool to PaintEventStart()/
12791           PaintEventEnd() calls, to support drawing in non-client areas
12792         * XplatUIDriver.cs: 
12793           - Added client window bool to PaintEventStart()/PaintEventEnd() 
12794             calls, to support drawing in non-client areas
12795           - Added conditional compile to allow using MWF BeginInvoke 
12796             on MS runtime
12797         * XplatUIX11.cs:
12798           - Added some conditional debug output
12799           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
12800             whole/client window split
12801           - Implemented handling of client argument to PaintEventStart()/End()
12802         * Control.cs:
12803           - Throw exception if BeginInvoke() is called and the window handle
12804             or one of the window's parent handles is not created
12805           - Added conditional compile to allow using MWF BeginInvoke on
12806             MS runtime
12807           - get_Parent(): Only sets parent if handle is created. This avoids
12808             forcing window handle creation when parent is set.
12809           - Now fires Layout and Parent changed events in proper order
12810           - Switched to use Handle instead of window.Handle for Z-Order setting,
12811             the get_Parent() patch above causes us to possibly get null for 'window'
12812           - Implemented handling of client argument to PaintEventStart()/End()
12813           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
12814             default handling)
12815           - Now sends a Refresh() to all child windows when Refresh() is called
12816
12817 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12818
12819         * Form.cs: Added (non-functional) Opacity property
12820         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
12821
12822 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
12823         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
12824           use export MONO_THEME=nice to activate it.
12825           Currently supported controls:
12826           - Button
12827           - ComboBox
12828           - ScrollBar
12829           - TabControl (TabAlignment.Top only, other will follow)
12830         * ThemeEngine.cs: Add theme nice
12831         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
12832           if enabled
12833
12834 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
12835
12836         * Splitter.cs: Resize docked control and its neighbor.
12837
12838 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12839         -- Making Windows with Menus layout correctly --
12840         * Form.cs : The first leg of the fix
12841                 Menu setter - adjust Client Size as needed to make space for the menu
12842                 SetClientSizeCore - doesn't call base version to be able to pass the 
12843                         menu handle to XplatUI.CalculateWindowRect
12844         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
12845         * XplatUIX11.cs: The critical second leg of the fix
12846                 GetWindowPos needs to use a recalculated client_rect
12847                 so that resizing the window doesn't break layout of child controls. 
12848                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
12849                 Lots of \t\n killed
12850
12851 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12852
12853         * Label.cs: Now properly recalculates width and height on Font and Text
12854           changes if AutoSize is set
12855
12856 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12857         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
12858
12859 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
12860
12861         * ImageList.cs: Makes ToString method compatible with MS
12862
12863 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
12864
12865         * MenuAPI.cs: fixes bug 75716
12866
12867 2005-08-11 Umadevi S <sumadevi@novell.com>
12868         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
12869
12870 2005-08-11 Umadevi S <sumadevi@novell.com>
12871         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
12872
12873 2005-08-10  Umadevi S <sumadevi@novell.com>
12874         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
12875
12876 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
12877
12878         * Menu.cs: fixes bug 75700
12879         * MenuAPI.cs: fixes navigation issues
12880
12881 2005-08-09  Umadevi S <sumadevi@novell.com>
12882         * CheckedListBox.cs - simple fix for GetItemChecked.
12883
12884 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
12885
12886         * ComboBox.cs: Serveral fixes
12887         * ListBox.cs: Serveral fixes
12888
12889 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12890
12891         * ComboBox.cs: Fixes FindString methods and GetItemHeight
12892         * ListBox.cs: Fixes FindString methods
12893
12894 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12895
12896         * DataGrid.cs: fixes bugs exposed by new tests
12897
12898 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
12899
12900         * Mime.cs: Compile Mono assembly references only if compiling
12901           with Mono (Allows to build with VS.Net again)
12902
12903 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
12904
12905         * Control.cs (PaintControlBackground): Draw background image
12906         corrrectly.
12907         (CheckForIllegalCrossThreadCalls): Stubbed.
12908         
12909         * Form.cs (OnCreateControl): Center when should be centered.
12910         
12911         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
12912
12913 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
12914
12915         * Binding.cs: Binding to properties should be case unsensitive
12916
12917 2005-07-18 vlindos@nucleusys.com
12918
12919         * DataGrid.cs: fixes setmember order
12920
12921 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
12922
12923         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
12924         * FileDialog.cs: FileDialog is now resizable and uses the new
12925           MimeIconEngine
12926
12927 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
12928
12929         * DataGridTextBoxColumn.cs: default value
12930         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
12931         * GridTableStylesCollection.cs: fixes checking MappingName
12932         * DataGridDrawingLogic.cs: fixes drawing logic issues
12933         * DataSourceHelper.cs: rewritten to make compatible with more data sources
12934         * DataGrid.cs: fixes    
12935
12936 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
12937
12938         * MimeGenerated.cs: Use case sensitive comparer for
12939           NameValueCollections
12940
12941 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
12942
12943         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
12944         * ThemeWin32Classic.cs: bug fixes, code refactoring
12945         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
12946         * DataGrid.cs: bug fixes, code refactoring
12947         * DataGridTextBox.cs: bug fixes, code refactoring
12948         * DataGridColumnStyle.cs:  bug fixes, code refactoring
12949         * Theme.cs:  bug fixes, code refactoring
12950
12951 2005-07-01  Peter Bartok  <pbartok@novell.com> 
12952
12953         * TextControl.cs: Quick fix for the reported crash on ColorDialog
12954           and other text box usage
12955
12956 2005-07-01  Jackson Harper  <jackson@ximian.com>
12957
12958         * TabControl.cs: Make sure the bottom of the tab covers the pages
12959         border.
12960
12961 2005-06-30  Peter Bartok  <pbartok@novell.com> 
12962
12963         * Form.cs (ShowDialog): Assign owner of the dialog
12964         * TextBoxBase.cs: Always refresh caret size when deleting, caret
12965           might have been moved to a tag with different height
12966
12967 2005-06-30  Jackson Harper  <jackson@ximian.com>
12968
12969         * Form.cs: Don't create an infinite loop when setting focus
12970         * MenuItem.cs: Don't dirty the parents if we don't have any
12971
12972 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
12973
12974         * LibSupport.cs: Rename
12975
12976 2005-06-29  Peter Bartok  <pbartok@novell.com>
12977
12978         * TextBoxBase.cs: Re-align caret after deleting a character
12979         * TextControl.cs:
12980           - DeleteChars(): Ensure that tag covers the provided position
12981           - StreamLine(): Drop reference for dropped tag
12982
12983 2005-06-29  Peter Bartok  <pbartok@novell.com> 
12984
12985         * TextControl.cs: 
12986           - Selections now work properly, anchoring at the initial location
12987             and properly extending in either direction (SetSelectionToCaret(),
12988             SetSelectionStart() and SetSelectionEnd())
12989           - No longer redraws the whole control on selection change, now
12990             calculates delta between previous and new selection and only
12991             invalidates/redraws that area
12992           - Fixed FindPos() math off-by-one errors
12993           - Changed DeleteChars() to verify the provided tag covers the
12994             provided position, selections may have a tag that doesn't cover
12995             the position if the selection is at a tag border
12996           - Fixed off-by-one errors in DeleteChars()
12997           - Added missing streamlining check in DeleteChars() to remove
12998             zero-length tags
12999           - Implemented Invalidate() method, now properly calculates exposures
13000             between two given lines/positions
13001           - Implemented SetSelection()
13002           - Obsoleted and removed FixupSelection()
13003           - Improved RecalculateDocument() logic, removing code duplication
13004
13005 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13006
13007         * LibSupport.cs: changes to match different input/output arguments.
13008
13009 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13010
13011         * LibSupport.cs: added libsupport.so init routine.
13012
13013 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13014         
13015         * ControlBindingsCollection.cs
13016                 - Throws an exception on null datasource when adding
13017                 - Checks for duplicated bindings when adding
13018
13019 2005-06-28  Jackson Harper  <jackson@ximian.com>
13020
13021         * TreeView.cs (OnKeyDown): Support left and right properly
13022         (navigates as well as expanding and collapsing.
13023         - Add support for Multiply, this expands all the selected nodes
13024         children.
13025         - Fix some tabbing.
13026
13027 2005-06-28  Jackson Harper  <jackson@ximian.com>
13028
13029         * TreeView.cs: Implement keyboard navigation, currently supports,
13030         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13031         support for toggling checkboxes with the space bar.
13032
13033 2005-06-28  Jackson Harper  <jackson@ximian.com>
13034
13035         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13036         tree.
13037
13038 2005-06-28  Jackson Harper  <jackson@ximian.com>
13039
13040         * TreeView.cs: Add missing event.
13041
13042 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13043
13044         * TextControl.cs:
13045           - Made line ending size configurable (now allows for counting 
13046             lineendings as \n or \r\n)
13047           - Added margin to viewport to keep caret visible on right side
13048           - Fixed translation routines for line/pos to documentpos to consider
13049             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13050           - Fixed some line-endings to be unix style
13051           - Fixed Document.FormatText to perform it's calculations 1-based
13052           - Added descriptions for a few methods that might otherwise get 
13053             used wrong
13054           - Added NOTE section with some basic conventions to remember at 
13055             the top of the file
13056           - Major fixup for RichTextBox selection drawing:
13057             * Fixed crashes when multiple tags on a single line were selected
13058             * fixed selection box drawing not overlaying text
13059             * fixed bogus offset calculation for tags not starting at index 1
13060             * Switched behaviour from using multiple Substrings of a 
13061               StringBuilder.ToString() to using multiple 
13062               StringBuilder.ToString(start, length) statements, hoping this is
13063               faster (kept original version commented out in the code, in case
13064               original version was faster)
13065         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13066           alignment != Left
13067         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13068           call it as well
13069
13070 2005-06-27  Jackson Harper  <jackson@ximian.com>
13071
13072         * TabControl.cs: Move to the left and right with the arrow
13073         keys. These keys don't cycle beyond first and last like
13074         tab. Refresh all the tabs when scrolling them to the left or
13075         right.
13076
13077 2005-06-27  Jackson Harper  <jackson@ximian.com>
13078
13079         * TabControl.cs:
13080           - ToString: Added method
13081           - CreateParams: Remove TODO and comment
13082           - OnKeyDown: Cycle through bounds properly.
13083           - SelectedIndex: Scroll to the right or left if we need to
13084           display the newly selected tab.
13085
13086 2005-06-23  Jackson Harper  <jackson@ximian.com>
13087
13088         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13089         set.
13090
13091 2005-06-23  Jackson Harper  <jackson@ximian.com>
13092
13093         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13094         CTRL-SHIFT-TAB, and HOME, END are there any others?
13095
13096 2005-06-23  Jackson Harper  <jackson@ximian.com>
13097
13098         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13099
13100 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13101         
13102         * DataGridTextBoxColumn.cs: fixes and enhancements
13103         * ThemeWin32Classic.cs: fixes and enhancements
13104         * DataGridBoolColumn.cs:  fixes and enhancements
13105         * DataGridDrawingLogic.cs:  fixes and enhancements
13106         * CurrencyManager.cs: fixes and enhancements
13107         * DataGrid.cs: fixes and enhancements
13108         * DataGridColumnStyle.cs:  fixes and enhancements
13109
13110 2005-06-22  Jackson Harper  <jackson@ximian.com>
13111
13112         * TabControl.cs: Add some missing methods that just call into the
13113         base. Make the TabPageCollection's IList interface behave in the
13114         same manner as the MS implementation.
13115
13116 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13117
13118         * TextControl.cs: Added sanity check
13119         * TextBoxBase.cs: 
13120           - Fixed wrapping behaviour, don't set wrap on single line controls
13121             (this fixes the breakage of colordialog introduced in an earlier
13122              checkin)
13123           - Added rudimentary support for autoscrolling right-aligned controls
13124             (still needs fixing, also, center alignment scroll is missing)
13125
13126 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13127         
13128         * ScrollBar.cs: Fixes thumbpos on Maximum values
13129
13130 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13131         
13132         * PropertyGridView.cs: Pass context information to UITypeEditors 
13133
13134 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13135
13136         * TextBoxBase.cs:
13137           - Now calling PositionCaret with absolute space coordinates
13138           - Enabled vertical scrolling
13139           - Better tracking of scrollbar changes, tied into WidthChange
13140             event
13141           - Improved cursor tracking
13142           - Removed debug output
13143         * TextControl.cs:
13144           - PositionCaret coordinates are now works in absolute space, not 
13145             the canvas
13146           - Improved tracking of document size
13147           - Added events for width and height changes
13148
13149 2005-06-21  Peter Bartok  <pbartok@novell.com>
13150
13151         * Form.cs: Set focus to active control when form is activated
13152         * TextControl.cs: 
13153           - Added word-wrap functionality to RecalculateLine() 
13154           - Added some short function descriptions for VS.Net to aid in
13155             writing dependent controls
13156           - Added Caret property, returning the current coords of the caret
13157           - Added ViewPortWidth and ViewPortHeight properties
13158           - Added Wrap property
13159           - Added CaretMoved event
13160           - Removed some old debug code
13161           - Split() can now create soft splits
13162           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13163           - Added method to format existing text
13164           - Fixed size/alignment calculations to use viewport
13165           - RecalculateDocument now can handle changing line-numbers while
13166             calculating lines
13167
13168         * TextBox.cs:
13169           - Added some wrap logic, we don't wrap if alignment is not left
13170           - Added casts for scrollbar var, base class switched types to
13171             also support RichTextBoxA
13172           - Implemented handling of scrollbar visibility flags
13173
13174         * TextBoxBase.cs:
13175           - Switched scrollbars type to RichTextBoxScrollBars to support
13176             RichTextBox
13177           - Added tracking of canvas width/height
13178           - Switched scrollbars to be not selectable (to keep focus on text)
13179           - Added central CalculateDocument() method to handle all redraw
13180             requirements
13181           - Added ReadOnly support
13182           - Added WordWrap support
13183           - Fixed handling of Enter key (we now treat it as a DialogKey)
13184           - Fixed caret positioning when h or v scroll is not zero
13185           - Fixed placing/generation of vertical scrollbar
13186           - Added CalculateScrollBars() method to allow updating scrollbar
13187             limits and visibility
13188           - Fixed handling of horizontal scroll
13189           - Added handling of vertical scroll
13190           - Implemented auto-'jump' when caret moves to close to a left or
13191             right border and there is text to be scrolled into view (currently
13192             there's the potential for a stack overflow, until a bug in
13193             scrollbar is fixed)
13194
13195 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13196         
13197         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13198
13199 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13200
13201         * Mime.cs:
13202         - added inodes.
13203         - return application/x-zerosize for files with size zero
13204           (if no extension pattern matches).
13205         - check matches collection for strings too.
13206         - return only the first mime type if the name value
13207           collection has more than one mime type.
13208
13209 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13210         
13211         * PropertyGrid.cs: Cleaned up some TODOs
13212         * PropertyGridView.cs: Added support for UITypeEditors
13213
13214 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13215         
13216         * DataGrid.cs: clears cached value
13217
13218 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13219
13220         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13221         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13222         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13223         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13224         
13225 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13226
13227         * ThemeWin32Classic.cs: fixes colour
13228
13229 2005-06-15  Peter Bartok  <pbartok@novell.com>
13230
13231         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13232         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13233         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13234         * Control.cs: Added some MWFCategory and MWFDescription attributes
13235         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13236
13237 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13238
13239         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13240         usage
13241
13242 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13243
13244         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13245         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13246         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13247         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13248         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13249         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13250
13251 2005-06-13  Jackson Harper  <jackson@ximian.com>
13252
13253         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13254         isn't printed when the user enables dropping. (X11 does accept
13255         drops).
13256         
13257 2005-06-13  Jackson Harper  <jackson@ximian.com>
13258
13259         * TreeView.cs: Remove some TODOS.
13260
13261 2005-06-13  Jackson Harper  <jackson@ximian.com>
13262
13263         * Form.cs: Hook into the mdi framework.
13264         * MdiClient.cs: Use the base control collections add method so
13265         parents get setup correctly. Set the default back colour and dock
13266         style.
13267         * MdiChildContext.cs: New class, this bad actor handles an
13268         instance of an MDI window. Right now there is only basic
13269         support. You can drag, close, and resize windows. Minimize and
13270         Maximize are partially implemented.
13271
13272 2005-06-13  Jackson Harper  <jackson@ximian.com>
13273
13274         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13275         freaky when both vals are negative. NOTE: There are probably other
13276         places in XplatUIX11 that this needs to be done.
13277
13278 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13279
13280         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13281         * DataGridColumnStyle.cs: fixes signature
13282
13283 2005-06-12  Jackson Harper  <jackson@ximian.com>
13284
13285         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13286         windows.
13287
13288 2005-06-11  Jackson Harper  <jackson@ximian.com>
13289
13290         * StatusBarPanel.cs: Signature cleanups. Implement
13291         BeginInit/EndInit.
13292
13293 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13294
13295         * DataGridTextBoxColumn.cs: Honors aligment
13296         * GridColumnStylesCollection.cs: Contains is case unsensitive
13297         * GridTableStylesCollection.cs: several fixes
13298         * DataGridTableStyle.cs: default column creation
13299         * DataGridDrawingLogic.cs: fixes
13300         * CurrencyManager.cs: ListName property
13301         * DataGrid.cs: multiple styles support
13302         * DataGridColumnStyle.cs: fixes
13303         
13304
13305 2005-06-10  Peter Bartok  <pbartok@novell.com>
13306
13307         * Control.cs(Select): Moved SetFocus call to avoid potential
13308           loops if controls change the active control when getting focus
13309         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13310           the up/down buttons
13311
13312 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13313
13314         * ImageListConverter.cs: Implemented
13315
13316 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13317
13318         * MonthCalendar.cs: Wired in NumericUpDown control for year
13319
13320 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13321
13322         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13323           DoubleClick events, since they are not meant to be fired.
13324
13325 2005-06-09  Peter Bartok  <pbartok@novell.com>
13326
13327         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13328           Jonathan's standalone controls into MWF, implemented missing
13329           events, attributes and methods; added xxxAccessible classes
13330         * AccessibleObject.cs: Made fields internal so other classes
13331           can change them if needed
13332
13333 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13334
13335         * UpDownBase.cs: Complete implementation
13336         * NumericUpDown.cs: Complete implementation
13337         * DomainUpDown.cs: Complete implementation
13338
13339 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13340
13341         * DataGridTextBoxColumn.cs: drawing fixes
13342         * DataGridCell.cs: fixes ToString method to match MSNet
13343         * DataGridTableStyle.cs: fixes
13344         * DataGridBoolColumn.cs: fixes, drawing
13345         * DataGridDrawingLogic.cs: fixes, new methods
13346         * DataGridTextBox.cs: Keyboard and fixes
13347         * DataGrid.cs:
13348                 - Keyboard navigation
13349                 - Scrolling fixes
13350                 - Row selection (single, multiple, deletion, etc)
13351                 - Lots of fixes
13352         
13353 2005-06-07  Jackson Harper  <jackson@ximian.com>
13354
13355         * ThemeWin32Classic.cs: Clear the background area when drawing
13356         buttons.
13357
13358 2005-06-06  Peter Bartok  <pbartok@novell.com>
13359
13360         * ImageListStreamer.cs: Fixed signature for GetData
13361         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13362         * ComboBox.cs:
13363           - Added missing ChildAccessibleObject class
13364           - Added missing OnXXXFocus overrides, switched to using those
13365             instead of the event handler
13366         * Control.cs:
13367           - Added Parent property for ControlAccessibleObject
13368           - Fixed signatures
13369           - Fixed attributes
13370           - Added ResetBindings()
13371         * ListBindingConverter.cs: Implemented some methods
13372         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13373         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13374         * ContainerControl.cs: Fixed signature, now subscribing to the
13375           ControlRemoved event instead of overriding the handler, LAMESPEC
13376         * CurrencyManager.cs: Added missing attribute
13377         * MonthCalendar.cs: Added missing properties
13378
13379 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13380
13381         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13382         
13383 2005-06-06  Gaurav Vaish and Ankit Jain
13384
13385         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13386         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13387         
13388 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13389
13390         * Control.cs: fixes CreateParams Width / Height.
13391
13392 2005-06-05  Peter Bartok  <pbartok@novell.com>
13393
13394         * Win32DnD.cs: Removed compilation warnings
13395
13396 2005-06-05  Peter Bartok  <pbartok@novell.com>
13397
13398         * Control.cs (CreateParams): Since we don't know if one of the
13399           properties we use is overridden, lets make sure if we fail accessing
13400           we continue with a backup plan
13401
13402 2005-06-05  Peter Bartok  <pbartok@novell.com>
13403
13404         * Win32DnD.cs:
13405           - Removed debug output
13406           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13407             struct
13408           - Plugged resource leak
13409         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13410           MS size
13411
13412 2005-06-05  Peter Bartok  <pbartok@novell.com>
13413
13414         * XplatUIWin32.cs: Removed DnD code
13415         * Win32DnD.cs: Implemented drop source and drop target functionality
13416
13417 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13418
13419         * UpDownBase.cs: remove duplicate addition of event, enable some code
13420         that was commented out.
13421         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13422         Validate input when a key is pressed. It works fine now for every
13423         combination of Hexadecimal. Only missing some drawing love when sharing
13424         space with other controls.
13425
13426 2005-06-04  Peter Bartok  <pbartok@novell.com>
13427
13428         * Control.cs:
13429           - We need to pass a window for DragDrop, so enable callback events
13430           - Added DnD callback events when being a DragSource
13431         * XplatUI.cs (StartDrag): Added window handle argument
13432         * XplatUIDriver.cs (StartDrag): Added window handle argument
13433         * QueryContinueDragEventArgs: Made fields internally accessible so
13434           drivers can set them
13435         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13436           can set them
13437
13438 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13439
13440         * DataGridTextBoxColumn.cs: column text editing
13441         * DataGridTableStyle.cs: Respect columns styles created by the user
13442         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13443         * DataGridBoolColumn.cs: bool column editing
13444         * DataGrid.cs: fixes to scrolling, properties, etc
13445         * DataGridTextBox.cs: handle keyboard
13446         * DataGridColumnStyle.cs: fixes
13447
13448 2005-06-02  Jackson Harper  <jackson@ximian.com>
13449
13450         * ImageListStreamer.cs: Somewhat broken implementation of
13451         GetObjectData. The RLE needs some work to match MS properly.
13452
13453 2005-06-02  Jackson Harper  <jackson@ximian.com>
13454
13455         * X11Dnd.cs: Attempting to keep at least one file in MWF
13456         monostyled.
13457
13458 2005-06-02  Peter Bartok  <pbartok@novell.com>
13459
13460         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13461           that way
13462
13463 2005-06-02  Peter Bartok  <pbartok@novell.com>
13464
13465         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13466         * XplatUI.cs: Added DoDragDrop() method
13467         * XplatUIDriver.cs: Added DoDragDrop() method
13468
13469 2005-06-02  Jackson Harper  <jackson@ximian.com>
13470
13471         * Splitter.cs: Implement BorderStyle.
13472
13473 2005-06-02  Jackson Harper  <jackson@ximian.com>
13474
13475         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
13476         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
13477         X11 using XDND.
13478
13479 2005-06-02  Peter Bartok  <pbartok@novell.com>
13480
13481         * DataObject.cs:
13482           - Added Data setter
13483           - Fixed broken insertion code for SetData, now also
13484             overwrites any existing entry of the same format name
13485         * Hwnd.cs: Added list of pointers that automatically gets
13486           freed when the window is disposed
13487         * XplatUI.cs: Call driver initialization method when loading
13488           a driver
13489         * Control.cs:
13490           - OnDragLeave takes EventArgs, not DragEventArgs
13491           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13492             supported
13493           - Forces style update when drop state changes
13494         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13495           not perfect since we cannot (yet) call the IDataObject.GetData()
13496           method, we keep getting 0x80004005 error, dunno why)
13497
13498 2005-06-02  Peter Bartok  <pbartok@novell.com>
13499
13500         * DragEventArgs.cs: Make fields internal so we can cache the
13501           object and re-set the fields from XplatUI
13502
13503 2005-06-02  Jackson Harper  <jackson@ximian.com>
13504
13505         * Control.cs: Add some internal methods so the DnD subsystem can
13506         raise DnD events. Also call into the driver when AllowDrop is set.
13507         * XplatUI.cs:
13508         * XplatUIDriver.cs: New method for setting whether or not a window
13509         is allowed to accept drag and drop messages.
13510                 
13511 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13512         
13513         * ScrollBar.cs: Make sure that values sent in Scroll events
13514         are always between Maximum and Minimum.
13515
13516 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
13517
13518         * Menu.cs: Call MenuChanged when menuitem visibility has been
13519         changed.
13520         * MenuItem.cs: Rebuild menu when item is (not) visible.
13521         * MainMenu.cs: MainMenu has special MenuChanged.
13522         * Theme.cs: Caption and FrameBorderSize are not fixed.
13523         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
13524         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
13525         * XplatUIX11.cs,
13526         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
13527         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
13528
13529 2005-05-30  Jackson Harper  <jackson@ximian.com>
13530
13531         * DataFormat.cs: We can't statically initialize this stuff because
13532         it calls into the xplatui and could create a loop. So we lazy init
13533         it.
13534
13535 2005-05-28  Jackson Harper  <jackson@ximian.com>
13536
13537         * Control.cs: Proper implementation of Product(Name/Version).
13538
13539 2005-05-27  Jackson Harper  <jackson@ximian.com>
13540
13541         * DataObject.cs: Dont crash if no data is found.
13542
13543 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
13544         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
13545                 as per status page, guessing it should be set to true
13546
13547 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
13548
13549         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
13550         * DataGridTableStyle.cs: set proper formatting text, def header text
13551         * ThemeWin32Classic.cs: new themable paramaters
13552         * DataGridBoolColumn.cs: paint check box, get data, fixes
13553         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
13554         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
13555         * DataGridColumnStyle.cs: fixes
13556         * Theme.cs: new themable paramaters
13557                 
13558 2005-05-26  Peter Bartok  <pbartok@novell.com>
13559
13560         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
13561
13562 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13563         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
13564
13565 2005-05-24  Peter Bartok  <pbartok@novell.com>
13566
13567         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
13568           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
13569           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
13570           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
13571           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
13572           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
13573           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
13574           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
13575           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
13576           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
13577           missing attributes, etc
13578         * DataGridPreferredColumnWidthTypeConverter.cs: Added
13579
13580 2005-05-24  Peter Bartok  <pbartok@novell.com>
13581
13582         * Help.cs: Added, implemented trivial functions, throws up MessageBox
13583           when user tries to get help
13584         * DataObject.cs, DataFormats.cs, LinkArea.cs,
13585           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
13586           to suppress warnings
13587         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
13588           avoid unreachable code warning
13589
13590 2005-05-20  Peter Bartok  <pbartok@novell.com>
13591
13592         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
13593
13594 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13595
13596         * DataGridTextBoxColumn.cs: Basic painting methods
13597         * DataGridTableStyle.cs: Set table style in the column
13598         * ThemeWin32Classic.cs: Use Theme for colors
13599         * DataGridDrawingLogic.cs: Implement more drawing
13600         * DataGrid.cs: drawing, theming, enhacements, fixes
13601         * DataGridColumnStyle.cs: fixes, drawing
13602         * Theme.cs: theming for Datagrid
13603
13604 2005-05-20  Peter Bartok  <pbartok@novell.com>
13605
13606         * Cursor.cs: Implemented GetObjectData() method
13607
13608 2005-05-20  Peter Bartok  <pbartok@novell.com>
13609
13610         * Cursors.cs: Added setting of cursor name
13611         * Cursor.cs:
13612           - Implemented constructors
13613           - Implemented Draw and DrawStretched
13614           - Implemented Current property
13615           - Implemented == and != operators
13616           - Implemented Dispose()
13617           - Implemented ToString
13618           - Added missing attributes
13619         * XplatUIX11.cs:
13620           - Added missing reset for OverrideCursor when DoEvents is called
13621           - Fixed creation of cursor, logic was wrong
13622         * XplatUIWin32.cs:
13623           - Added missing reset for OverrideCursor when DoEvents is called
13624           - Fixed creation of cursor, bit arrays were swapped
13625         * Clipboard.cs: Removed obsolete MonoTODO attribute
13626
13627 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13628
13629         * ComboBox.cs: fixes OnSelectedItemChanged
13630         * ControlBindingsCollection.cs: fixes item range check
13631
13632 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13633
13634         * UpDownBase.cs:
13635                 - Calc preferred height properly
13636                 - Implement missing properties
13637                 
13638         * NumericUpDown.cs: Implement missing events
13639
13640 2005-05-19  Jackson Harper  <jackson@ximian.com>
13641
13642         * TabControl.cs: New method that resizes the tab pages before
13643         redrawing them. This as needed as the control is double buffered
13644         and sizing will not be recalculated unless ResizeTabPages is
13645         called.
13646         * TabPage.cs: Set base.Text instead of Text in the constructor so
13647         that UpdateOwner does not get called. Use the new Redraw method of
13648         TabControl instead of Refresh so the sizing is recalculated.
13649         * ThemeWin32Classic.cs: Draw the text for button tabs.
13650
13651 2005-05-19  Jackson Harper  <jackson@ximian.com>
13652
13653         * Control.cs: Paint control background images. Fix typo where
13654         PaintControlBackground was not getting called correctly.
13655
13656 2005-05-19  Peter Bartok  <pbartok@novell.com>
13657
13658         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
13659           I can investigate, apparently I broke FileDialog
13660
13661 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
13662
13663         * AxHost.cs: Some simple properties.
13664         * Control.cs: window must be accessible after ctor.
13665         * Form.cs: Added TransparencyKey property.
13666         * TextBoxBase.cs: Implemented Clear. Text property can be null.
13667         * XplatUIWin32.cs: SetBorderStyle implemented.
13668
13669 2005-05-18  Peter Bartok  <pbartok@novell.com>
13670
13671         * DataObject.cs: Entries are not global but particular to the
13672           DataObject, now it behaves that way
13673         * XplatUIWin32.cs: Implemented Clipboard methods
13674         * Clipboard.cs: Implemented
13675         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
13676         * XplatUIOSX.cs: Updated to final clipboard prototypes
13677         * XplatUIX11.cs: Implemented Clipboard methods
13678         * XplatUIDriver.cs: Updated to final clipboard prototypes
13679         * XplatUIStructs.cs:
13680           - Added BITMAPINFOHEADER struct
13681           - Added ClipboardFormats enum
13682         * X11Structs.cs:
13683           - Added ClipboardStruct
13684           - Added Atom enum items for clipboard types
13685           - Fixed atom types for Selection event structures
13686         * DataFormats.cs:
13687           - Added internal properties and methods for drivers to enumerate
13688             all known formats
13689           - Switched initialization method to allow drivers to assign their
13690             own IDs even for the MS predefined clipboard IDs
13691         * XplatUI.cs: Updated to final clipboard interface
13692
13693 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13694         * PropertyGridView.cs: Fixed compiler warnings.
13695
13696 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13697         * PropertyGrid.cs: Added some event calls
13698         * PropertyGridView.cs: Change drawing code to use double buffering
13699         * PropertyGridTextBox.cs: Changed Text property name
13700         * GridItem.cs: Added Bounds property.
13701         * GridEntry.cs: Added Bounds property.
13702
13703 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
13704
13705         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
13706         since GetType() may not return the correct type if the object is
13707         a remoting proxy.
13708
13709 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
13710
13711         * TreeNodeCollection.cs: fixes get/set item ranges
13712         
13713 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13714
13715         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
13716                 
13717 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13718
13719         * ComboBox.cs: Fix item range comparation
13720         * ListView.cs: Fix item range comparation
13721
13722 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13723
13724         * FontDialog.cs:
13725           - Clear example panel when OnPaint is called
13726           - Better solution for displaying the example panel text
13727           - Select default indexes in the ListBoxes
13728
13729 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13730
13731         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
13732
13733 2005-05-11  Peter Bartok  <pbartok@novell.com>
13734
13735         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
13736         * SelectionRangeConverter.cs: Implemented
13737         * PropertyGrid.cs: Fixed attribute value
13738         * Control.cs:
13739           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
13740           - Added Sebastien Pouliot's CAS Stack Propagation fixes
13741         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
13742           that's common to all drivers. First methods to go there are
13743           Sebastien Pouliot's CAS Stack Propagation helper methods
13744         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
13745           Sebastien Pouliot for CAS Stack Propagation
13746
13747 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13748
13749         * OSXStructs.cs:
13750           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
13751
13752 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
13753
13754         * DataGridTextBoxColumn.cs: fixed some members
13755         * GridColumnStylesCollection.cs: indexed column is case insensitive
13756         * DataGridTableStyle.cs: fixes
13757         * ThemeWin32Classic.cs: add new theme parameter
13758         * Theme.cs: add new theme parameter
13759         * DataGridDrawingLogic.cs: Datagrid's drawing logic
13760         * DataGrid.cs: fixes, new internal properties, etc.
13761         * DataGridColumnStyle.cs: allows to set grid value
13762         *
13763
13764 2005-05-10  Peter Bartok  <pbartok@novell.com>
13765
13766         * AccessibleObject.cs:
13767           - Removed MonoTODO attribute on help, method is correct
13768           - Fixed Bounds property
13769         * AxHost.cs: Moved MonoTODO
13770         * ButtonBase.cs: Now setting AccessibleObject properties
13771         * RadioButton.cs: Setting proper AccessibleObject role
13772         * CheckBox.cs: Setting proper AccessibleObject role
13773         * ControlBindingsCollection.cs: Added properties, methods and attributes
13774         * DataFormats.cs: Fixed awkward internal API, and changed to enable
13775           userdefined DataFormats.Format items as well
13776         * ListControl.cs: Removed data_member from the public eye
13777         * OpenFileDialog.cs:
13778           - Made class sealed
13779           - Added missing attributes
13780         * SaveFileDialog.cs: Added missing attributes
13781         * ImageListStreamer.cs: Fixed code that caused warnings
13782         * LinkLabel.cs: Removed unreachable code
13783         * TreeView.cs: Fixed code that caused warnings
13784         * PropertyGridView.cs: Fixed code that caused warnings
13785         * GridColumnStylesCollection.cs: Added missing attributes
13786         * GridTableStylesCollection: Added missing attribute
13787         * PropertyManager: Added .ctor
13788         * SecurityIDType: Added
13789         * DataObject.cs: Implemented class
13790         * LinkArea.cs: Added missing attribute
13791
13792 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
13793
13794         * RadioButton.cs: call base method to allow to fire OnClick event
13795         * UpDownBase.cs: OnMouseUp call base method
13796         * CheckedListBox.cs: call base method before returning
13797         * TrackBar.cs: call base method before returning
13798         
13799
13800 2005-05-10  Peter Bartok  <pbartok@novell.com>
13801
13802         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
13803           for messages
13804
13805 2005-05-10  Peter Bartok  <pbartok@novell.com>
13806
13807         * DataFormats.cs: Implemented
13808         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
13809           XplatUIX11.cs: Added Clipboard APIs
13810         * XplatUIWin32.cs: Implemented Clipboard APIs
13811         * FolderBrowserDialog.cs: Added missing event, attributes
13812
13813 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
13814
13815         * CheckBox.cs: call base method to allow to fire OnClick event
13816
13817 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
13818
13819         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
13820
13821 2005-05-06  Peter Bartok  <pbartok@novell.com>
13822
13823         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
13824         * Screen.cs: Implemented
13825         * HelpNavigator.cs: Added
13826         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
13827           property
13828         * HelpProvider.cs: Implemented all we can do until we have a CHM
13829           help library (which means that "What's This" does work now)
13830
13831 2005-05-06  Jackson Harper  <jackson@ximian.com>
13832
13833         * XplatUIX11.cs: Fix waking up the main loop.
13834                 
13835 2005-05-05  Peter Bartok  <pbartok@novell.com>
13836
13837         * XplatUI.cs: Updated revision
13838         * Form.cs: Removed enless loop
13839         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
13840         * Label.cs (OnPaint): Added call to base.OnPaint()
13841         * ToolTip.cs: Made ToolTipWindow reusable for other controls
13842         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
13843         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
13844         * AxHost.cs: Added
13845         * ButtonBase.cs: Moved base.OnPaint() call to end of method
13846         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
13847           to ToolTip.ToolTipWindow for drawing and size methods; this allows
13848           reuse of ToolTipWindow by other controls
13849         * SizeGrip.cs: Moved base.OnPaint() call to end of method
13850         * XplatUIX11.cs: Now clipping drawing area (experimental)
13851         * PictureBox.cs: Moved base.OnPaint() call to end of method
13852         * Theme.cs: Fixed ToolTip abstracts to match new format
13853         * ErrorProvider.cs: Implemented
13854
13855 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
13856
13857         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
13858         * LinkLabel.cs:
13859                 - Adds cursors
13860                 - Handles focus
13861                 - Implements LinkBehavior
13862                 - Fixes many issues
13863
13864 2005-05-03  Jackson Harper  <jackson@ximian.com>
13865
13866         * ListView.cs: Calculate the scrollbar positioning on resize and
13867         paint, so they get put in the correct place.
13868
13869 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13870
13871         * ColorDialogs.cs: The small color panels are now handled by
13872           SmallColorControl. This fixes drawing of the focus rectangle
13873           and adds a 3D border.
13874
13875 2005-05-03  Peter Bartok  <pbartok@novell.com>
13876
13877         * Control.cs: Modified version of Jonathan Chamber's fix for
13878           double-buffering
13879
13880 2005-05-03  Jackson Harper  <jackson@ximian.com>
13881
13882         * ListView.cs: Remove redraw variable. Control now handles whether
13883         or not a redraw needs to be done, and will only raise the paint
13884         event if redrawing is needed.
13885
13886 2005-05-03  Jackson Harper  <jackson@ximian.com>
13887
13888         * Splitter.cs: No decorations for the splitter form. Cache the
13889         hatch brush.
13890
13891 2005-05-03  Jackson Harper  <jackson@ximian.com>
13892
13893         * TreeView.cs: Use dashed lines to connect nodes. Use the
13894         ControlPaint method for drawing the focus rect instead of doing
13895         that in treeview.
13896
13897 2005-05-02  Peter Bartok  <pbartok@novell.com>
13898
13899         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
13900
13901 2005-04-29  Jackson Harper  <jackson@ximian.com>
13902
13903         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
13904         entire image buffer. Just clear the clipping rectangle.
13905
13906 2005-04-29  Jackson Harper  <jackson@ximian.com>
13907
13908         * ThemeWin32Classic.cs: Don't draw list view items that are
13909         outside the clipping rectangle.
13910
13911 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
13912
13913         * ListBox.cs: added horizontal item scroll
13914
13915 2005-04-29  Jackson Harper  <jackson@ximian.com>
13916
13917         * ThemeWin32Classic.cs: Remove some old debug code that was
13918         causing flicker with the new double buffering code.
13919
13920 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
13921
13922         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
13923         behave like combobox and comboboxlist (still not sure if this is
13924         correct though).
13925
13926 2005-04-28  Jackson Harper  <jackson@ximian.com>
13927
13928         * ThemeWin32Classic.cs: Don't fill the middle of progress
13929         bars. This fills areas outside of the clip bounds that don't need
13930         to be filled.
13931
13932 2005-04-28  Jackson Harper  <jackson@ximian.com>
13933
13934         * Control.cs: Don't expose functionality to touch the image buffers.
13935         * ProgressBar.cs:
13936         * ListView.cs: We do not need to (and no longer can) manipulate
13937         the image buffers directly. All of this is handled by Control.
13938
13939 2005-04-28  Peter Bartok  <pbartok@novell.com>
13940
13941         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13942           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
13943           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
13944
13945 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13946
13947         * Combobox:
13948                 - Adjust control's height for non-simple comboboxes (bug fix)
13949                 - Remove dead code
13950         * MenuAPI.cs: remove unused var
13951         * ScrollBar.cs: remove unsed var
13952                  
13953         * ListBox.cs: unselect items when clearing
13954
13955 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13956
13957         * ListControl.cs: honors OnPositionChanged and default Selected Item
13958         * ListBox.cs: unselect items when clearing
13959
13960 2005-04-27  Jackson Harper  <jackson@ximian.com>
13961
13962         * X11Keyboard.cs: Initialize a default keyboard and give a warning
13963         if a "correct" keyboard is not found. This will make us not crash,
13964         but might give some users bad keyboard layouts...seems to be the
13965         same thing rewind does.
13966
13967 2005-04-27  Jackson Harper  <jackson@ximian.com>
13968
13969         * BindingManagerBase.cs: Attach the current/position changed
13970         handlers to their respective events.
13971
13972 2005-04-27  Jackson Harper  <jackson@ximian.com>
13973
13974         * Control.cs: Make sure that the first WM_PAINT does a full draw,
13975         not just a blit.
13976         * ThemeWin32Classic.cs: Don't fill the background for picture
13977         boxes. This could overright user drawing.
13978         * ComboBox.cs: Just fill the clipping rect not the entire client
13979         rect when drawing the background. This prevents pieces of the
13980         image buffer from getting overwritten and is theoretically faster.
13981
13982 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
13983
13984         * ComboBox.cs: Databinding support fixes, fire missing events
13985         * ListControl.cs: implement missing methods and properties, fixes
13986         * ThemeWin32Classic.cs: Databiding support on Drawing
13987         * CheckedListBox.cs: Databinding support fixes, fire missing events
13988         * ListBox.cs: Databinding support fixes, fire missing events
13989         
13990 2005-04-25  Peter Bartok  <pbartok@novell.com>
13991
13992         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
13993
13994 2005-04-25  Jackson Harper  <jackson@ximian.com>
13995
13996         * TreeView.cs: Use the horizontal scrollbars height not width when
13997         determining how much of the client area is available.
13998
13999 2005-04-25  Jackson Harper  <jackson@ximian.com>
14000
14001         * Control.cs: Double buffering is handled differently now. As per
14002         the spec, the extra buffer is created in the WM_PAINT message and
14003         passed down to the control's drawing code.
14004         * GroupBox.cs:
14005         * Label.cs:
14006         * CheckBox.cs:
14007         * ProgressBar.cs:
14008         * RadioButton.cs:
14009         * ColorDialog.cs:
14010         * ComboBox.cs:
14011         * PropertyGridView.cs:
14012         * UpDownBase.cs:
14013         * MessageBox.cs:
14014         * MenuAPI.cs:
14015         * ListView.cs:
14016         * ButtonBase.cs:
14017         * SizeGrip.cs:
14018         * ScrollBar.cs:
14019         * ListBox.cs:
14020         * TrackBar.cs:
14021         * ToolBar.cs:
14022         * PictureBox.cs:
14023         * DateTimePicker.cs:
14024         * StatusBar.cs:
14025         * TreeView.cs: Update to new double buffering system.
14026         * MonthCalendar.cs: Uncomment block, as Capture is now
14027         working. Update to new double buffering
14028         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14029         * PaintEventArgs.cs: New internal method allows us to set the
14030         graphics object. This is used for double buffering.
14031         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14032         rectangle. The internal paint_area var has been removed from
14033         StatusBar. The clipping rect should be used instead.
14034         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14035         * TabPage.cs: The RefreshTabs method was removed, so just call the
14036         tab controls Refresh method now.
14037         * TabControl.cs: Update to new double buffering. Make sure the
14038         handle is created before sizing the tab pages, otherwise we will
14039         get stuck in a loop.
14040
14041 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14042
14043         * LinkLabel.cs: Fix typo, bug #74719; patch
14044           from Borja Sanchez Zamorano
14045
14046 2005-04-22  Jackson Harper  <jackson@ximian.com>
14047
14048         * TreeNode.cs: Implement Handle stuff.
14049         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14050
14051 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14052
14053         * DataGridTextBoxColumn.cs: call base constructors, fixes
14054         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14055         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14056         * DataGridTableStyle.cs: implements create default column styles
14057         * DataGridBoolColumn.cs: which types can handle
14058         * DataGrid.cs: missing methods, fixes, new functionality
14059         * DataGridColumnStyle.cs: fixes
14060
14061 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14062         * FolderBrowserDialog.cs:
14063         - Use a thread to fill the TreeView
14064         - Adjusted some sizes
14065
14066 2005-04-19  Peter Bartok  <pbartok@novell.com>
14067
14068         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14069           property. Fixes #74360.
14070
14071 2005-04-19  Jackson Harper  <jackson@ximian.com>
14072
14073         * XEventQueue.cs: Lock when getting the lockqueue size.
14074         * PictureBox.cs: Call base OnPaint
14075         
14076 2005-04-19  Peter Bartok  <pbartok@novell.com>
14077
14078         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14079           messages were no longer being processed (this broke BeginInvoke)
14080
14081           
14082 2005-04-18  Jackson Harper  <jackson@ximian.com>
14083
14084         * TreeView.cs: buglet that caused node images to get drawn
14085         regardless of whether or not they were in the clipping rectangle.
14086
14087 2005-04-18  Jackson Harper  <jackson@ximian.com>
14088
14089         * CurrencyManager.cs: There are four rules for GetItemProperties:
14090         - If the type is an array use the element type of the array
14091         - If the type is a typed list, use the type
14092         - If the list contains an Item property that is not an object, use
14093         that property
14094         - use the first element of the list if there are any elements in
14095         the list.
14096         
14097 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14098
14099         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14100         click. This handles offsets for scrolling properly and reduces
14101         memory. Also fixed GetNode to not offset now that TopNode works
14102         properly.
14103         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14104         
14105 2005-04-17  Jackson Harper  <jackson@ximian.com>
14106
14107         * CursorConverter.cs: Initial implementation.
14108
14109 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14110
14111         * ListControl.cs: work towards complex data binding support on ListControl
14112         * CurrencyManager.cs: work towards complex data binding support on ListControl
14113         * ListBox.cs: work towards complex data binding support on ListControl
14114
14115
14116 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14117
14118         * GridTableStylesCollection.cs: fixes name and constructor
14119         * DataGridTableStyle.cs: fixes
14120         * DataGridBoolColumn.cs: fixes names and constructors
14121         * DataGrid.cs: define methods and properties. Some init implementations
14122         * DataGridCell.cs: define methods and properties. Some init implementations
14123         * GridTablesFactory.cs: Define methods and properties
14124
14125 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14126
14127         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14128         graphics port changes.  We still want the coordinates in global screen
14129         coordinates.
14130
14131 2005-04-14  Jackson Harper  <jackson@ximian.com>
14132
14133         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14134         check plus minus or checkbox clicks unless those features are enabled.
14135
14136 2005-04-14  Jackson Harper  <jackson@ximian.com>
14137
14138         * TreeView.cs: Add methods for setting the top and bottom visible
14139         nodes. TreeNode::EnsureVisible uses these methods.
14140         * TreeNode.cs: Implement EnsureVisible
14141
14142 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14143
14144         * Form.cs: Pospone menu assignation if the window has not been created yet
14145         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14146         size and position
14147
14148 2005-04-12  Jackson Harper  <jackson@ximian.com>
14149
14150         * TreeView.cs: Set the TopNode properly when scrolling
14151         occurs. This has the added benifit of reducing the amount of
14152         walking that needs to be done when drawing. Also removed an old
14153         misleading TODO.
14154         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14155         
14156 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14157
14158         * Timer.cs: fixes interval setting when the timer is already enabled
14159         
14160 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14161
14162         * FolderBrowserDialog.cs: First approach
14163
14164 2005-04-09  Peter Bartok  <pbartok@novell.com>
14165
14166         * FolderBrowserDialog: Added
14167
14168 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14169
14170         * LinkLabel.cs: move drawing code into the theme
14171         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14172         * Theme.cs: define DrawLinkLabel method
14173
14174 2005-04-05  Jackson Harper  <jackson@ximian.com>
14175
14176         * BindingContext.cs: Use weak references so these bad actors don't
14177         stay alive longer then they need to.
14178
14179 2005-04-05  Jackson Harper  <jackson@ximian.com>
14180
14181         * ListControl.cs: Basic implementation of complex databinding.
14182         * ComboBox.cs:
14183         * ListBox.cs: Add calls to ListControl databinding methods.
14184
14185 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14186
14187         * FileDialog.cs:
14188           - Don't change PopupButtonState to Normal when the
14189             PopupButton gets pressed several times.
14190           - Renamed ButtonPanel to PopupButtonPanel
14191
14192 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14193
14194         * ColorDialog.cs: Use cached objects instead of creating them
14195         * LinkLabel.cs: Use cached objects instead of creating them
14196         * Splitter.cs: Use cached objects instead of creating them
14197         * FontDialog.cs: Use cached objects instead of creating them
14198         * PropertyGridView.cs: Use cached objects instead of creating them
14199         * MessageBox.cs: Use cached objects instead of creating them
14200         * FileDialog.cs: Use cached objects instead of creating them
14201         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14202         * TreeView.cs: Use cached objects instead of creating them
14203         
14204 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14205
14206         * Control.cs: use Equals to compare the font since no == op
14207         * ScrollBar.cs: use Equals to compare the font since no == op
14208
14209 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14210
14211         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14212
14213 2005-04-01  Jackson Harper  <jackson@ximian.com>
14214
14215         * Binding.cs: Implement IsBinding.
14216         * BindingManagerBase.cs:
14217         * PropertyManager.cs:
14218         * CurrencyManager.cs: Add IsSuspended property.
14219
14220 2005-04-01  Jackson Harper  <jackson@ximian.com>
14221
14222         * Binding.cs: Had some IsAssignableFrom calls backwards.
14223
14224 2005-04-01  Jackson Harper  <jackson@ximian.com>
14225
14226         * Binding.cs: Handle null data members when pulling data.
14227         * PropertyManager.cs: Handle the data member being a property that
14228         does not exist.
14229
14230 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14231
14232         * DataGridTextBoxColumn.cs: fixes signature
14233         * DataGrid.cs: calls right constructor
14234
14235 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14236
14237         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14238         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14239         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14240         * DataGridTableStyle.cs: implements DataGridTableStyle
14241         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14242         * DataGridTextBox.cs: implements DataGridTextBox
14243         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14244
14245 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14246
14247         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14248
14249 2005-03-29  Peter Bartok  <pbartok@novell.com>
14250
14251         * Application.cs:
14252           - Properly implemented CompanyName property
14253           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14254             returns a path that includes CompanyName, ProductName and
14255             Version (fixes bug #70330)
14256
14257 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14258
14259         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14260           fixes bug #72588.
14261
14262 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14263
14264         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14265         
14266           - Added ReadOnly CheckBox
14267           - Further refactoring: moved some code from Open-/SaveFileDialog
14268             to FileDialog
14269
14270 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14271
14272         * OpenFileDialog.cs: Fixed CheckFileExists
14273         * FileDialog.cs:
14274           Moved FileView and DirComboBox outside FileDialog class.
14275           They can now be used outside FileDialog
14276
14277 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14278
14279         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14280         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14281
14282 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14283
14284         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14285           - Added missing CreatePrompt property in SaveDialog
14286           - Overall SaveDialog handling should be better now
14287           - Added non standard ShowHiddenFiles property
14288           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14289           - Added InitialDirectory and RestoreDirectory support
14290
14291 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14292
14293         * FileDialog.cs: Made dirComboBox usable
14294
14295 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14296
14297         * FileDialog.cs: Added Filter support (case sensitiv)
14298
14299 2005-03-24  Jackson Harper  <jackson@ximian.com>
14300
14301         * TabControl.cs: Need a couple more pixels for the lines.
14302
14303 2005-03-23  Jackson Harper  <jackson@ximian.com>
14304
14305         * TabControl.cs: Give the tab page focus when it is selected.
14306
14307 2005-03-23  Jackson Harper  <jackson@ximian.com>
14308
14309         * TabControl.cs: Account for the drawing of tabs borders when
14310         invalidating. If the slider was clicked dont do click detection on
14311         the tabs.
14312
14313 2005-03-23  Jackson Harper  <jackson@ximian.com>
14314
14315         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14316
14317 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14318
14319         * CategoryGridEntry.cs: Added
14320         * GridItem.cs: Added helper properties
14321         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14322         * GridEntry.cs: Updated code for collection
14323         * PropertyGrid.cs: Cleaned up some formatting
14324         * PropertyGridView.cs: Added drop down functionality for enums.
14325         * GridItemCollection.cs: Added enumerator logic
14326         * PropertyGridEntry.cs: Added
14327
14328 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14329
14330         * FileDialog.cs:
14331           - Removed unnecessary commented code
14332           - Fixed handling for entering the filename manually in the combobox
14333
14334 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14335
14336         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14337
14338 2005-03-18  Peter Bartok  <pbartok@novell.com>
14339
14340         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14341           them being touching the border
14342
14343 2005-03-18  Peter Bartok  <pbartok@novell.com>
14344
14345         * TextControl.cs: Quick hack to center text better
14346
14347 2005-03-18  Peter Bartok  <pbartok@novell.com>
14348
14349         * ControlPaint.cs:
14350           - Don't throw NotImplemented exceptions, just print a notice once
14351             instead (requested by Miguel). This makes running existing SWF
14352             apps a bit easier
14353         * Control.cs:
14354           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14355           - Added context menu trigger on right click
14356         * Panel.cs: Trigger invalidate on resize
14357         * StatusBar.cs:
14358           - Removed old double-buffer drawing
14359           - Added ResizeRedraw style to force proper update of statusbar
14360         * ListView.cs:
14361           - Removed debug output
14362         * ThemeWin32Classic.cs:
14363           - Fixed drawing of status bar, now draws Text property if there
14364             are no defined panels
14365
14366 2005-03-18  Jackson Harper  <jackson@ximian.com>
14367
14368         * ImageList.cs: When the image stream is set pull all the images
14369         from it.
14370         * ImageListStreamer.cs: Implement reading image list streams.
14371
14372 2005-03-18  Peter Bartok  <pbartok@novell.com>
14373
14374         * ThemeWin32Classic.cs (DrawPictureBox):
14375           - Fixed calculations for centered drawing
14376           - Fixed drawing for normal mode, not scaling the image on normal
14377
14378 2005-03-18  Peter Bartok  <pbartok@novell.com>
14379
14380         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14381           textbox
14382         * FileDialog.cs:
14383           - Made Open/Save button the accept button for FileDialog
14384           - Tied the cancel button to the IButtonControl cancel button
14385           - Save/Open now properly builds the pathname
14386           - Now handles user-entered text
14387           - Preventing crash on right-click if no item is selected
14388           - Fixed Text property, now uses contents of textbox
14389           - Fixed SelectedText property, now just returns the text part that
14390             is selected in the text box
14391
14392 2005-03-18  Jackson Harper  <jackson@ximian.com>
14393
14394         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14395         rect, make sure to de-adjust the interior rect after drawing the
14396         tab text.
14397
14398 2005-03-18  Peter Bartok  <pbartok@novell.com>
14399
14400         * MenuAPI.cs: Remove menu *before* executing selected action to
14401           prevent the menu from 'hanging around'
14402           
14403 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14404
14405         * XplatUIOSX.cs: Implemented WorkingArea property
14406
14407 2005-03-17  Peter Bartok  <pbartok@novell.com>
14408
14409         * XplatUIX11.cs: Fixed menu coord calculations
14410         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14411           for calculating offsets
14412
14413 2005-03-17  Peter Bartok  <pbartok@novell.com>
14414
14415         * Hwnd.cs: Do not consider menu presence for default client
14416           rectangle location/size
14417         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14418           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14419           translation functions
14420         * FileDialog.cs: Fixed (what I presume is a) typo
14421
14422 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14423
14424         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14425           X access (avoids X-Async errors)
14426
14427 2005-03-16  Jackson Harper  <jackson@ximian.com>
14428
14429         * TabControl.cs: Raise the SelectedIndexChanged event.
14430
14431 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14432
14433         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14434           - Removed vertical ToolBar and replaced it with a custom panel
14435             (desktop and home button already work)
14436           - Added Help button (some controls get resized or relocated then)
14437           - Draw correct text depending on Open or Save.
14438           - Fixed some typos...
14439
14440 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14441
14442         * ScrollBar.cs:
14443           - Only change Maximum and Minimum when need it (bug fix)
14444
14445 2005-03-15  Peter Bartok  <pbartok@novell.com>
14446
14447         * Form.cs: Use Handle for icon, to trigger creation if
14448           the window does not yet exist
14449         * Control.cs:
14450           - CanSelect: Slight performance improvement
14451           - Focus(): Preventing possible recursion
14452           - Invalidate(): Removed ControlStyle based clear flag setting
14453           - WM_PAINT: fixed logic for calling OnPaintBackground
14454           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14455             EraseWindowBackground if the control doesn't paint background
14456         * XplatUIWin32.cs:
14457           - Moved EraseWindowBackground() method to internal methods
14458           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14459             is sent via SendMessage on BeginPaint call on Win32
14460         * XplatUIX11.cs:
14461           - Added EraseWindowBackground() method
14462           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14463             PaintEventStart, which more closely matches Win32 behaviour
14464           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14465           - Fixed SetFocus() to properly deal with client and whole windows
14466         * Hwnd.cs: Added ErasePending property
14467         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14468         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14469
14470 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14471
14472         * XplatUIOSX.cs:
14473           - Fix hard loop when timers exist.
14474           - Fix bugs with middle and right click for 3 button mice.
14475
14476 2005-03-11  Peter Bartok  <pbartok@novell.com>
14477
14478         * XplatUIX11.cs:
14479           - get_WorkingArea: Need to call X directly, GetWindowPos only
14480             returns cached data now
14481           - Added sanity check to GetWindowPos hwnd usage
14482
14483 2005-03-11  Jackson Harper  <jackson@ximian.com>
14484
14485         * BindingManagerBase.cs: This method isn't used anymore as
14486         PullData now updates the data in the control.
14487
14488 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14489
14490         * Form.cs: fixes menu drawing on X11
14491         * MenuAPI.cs:  fixes menu drawing on X11
14492
14493 2005-03-11  Peter Bartok  <pbartok@novell.com>
14494
14495         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14496           from Jonathan Gilbert; should fix bug #73606
14497         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14498           in Screen coordinates. Thanks, Jordi.
14499         * Form.cs: Added missing attribute
14500
14501 2005-03-11  Peter Bartok  <pbartok@novell.com>
14502
14503         * Form.cs:
14504           - Rudimentary Mdi support
14505           - Removed outdated FormParent code
14506           - Implemented lots of missing properties and methods, still missing
14507             transparency support
14508           - Added missing attributes
14509           - Implemented support for MaximumBounds
14510           - Added firing of various events
14511         * XplatUI.cs: Added SetIcon() method
14512         * XplatUIDriver.cs: Added SetIcon() abstract
14513         * XplatUIOSX.cs: Stubbed out SetIcon() method
14514         * XplatUIX11.cs:
14515           - Implemented SetIcon() support
14516           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
14517           - Switched to unix line endings
14518         * XplatUIWin32.cs:
14519           - Made POINT internal so for can access it as part of MINMAX
14520           - Implemented SetIcon() support
14521           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
14522             native Mdi support again, might have to go managed)
14523         * Control.cs: Now fires the StyleChanged event
14524         * MdiClient.cs: Added; still mostly empty
14525
14526 2005-03-10  Peter Bartok  <pbartok@novell.com>
14527
14528         * SaveFileDialog.cs: Added emtpy file
14529
14530 2005-03-08  Peter Bartok  <pbartok@novell.com>
14531
14532         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
14533           in turn triggers OnCreateContro) when creating a handle for the
14534           first time.
14535         * TextControl.cs: Fixed endless loop in certain cases when
14536           replacing the current selection
14537
14538 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
14539
14540         * ScrollBar.cs:
14541           - Honors NewValue changes in Scroll events allowing apps to change it
14542           - Adds First and Last Scroll events
14543           - Fixes Thumb events
14544
14545 2005-03-07  Peter Bartok  <pbartok@novell.com>
14546
14547         * Hwnd.cs: Added DefaultClientRectangle property
14548         * XplatUI.cs: Now using the X11 driver Where() method, which provides
14549           more detailed debug information
14550         * XplatUIX11.cs:
14551           - Fixed size-change feedback loop, where we would pull an old size
14552             off the queue and mistakenly change our window's size to an
14553             earlier value
14554           - Now compressing ConfigureNotify events, to reduce looping and
14555             redraw issues
14556         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
14557           is called
14558
14559 2005-03-07  Jackson Harper  <jackson@ximian.com>
14560
14561         * Binding.cs: Push data pushes from data -> property. Check if the
14562         property is readonly when attempting to set it.
14563
14564 2005-03-07  Jackson Harper  <jackson@ximian.com>
14565
14566         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
14567         instead of IsSubclassOf. Pulling data now sets the value on the
14568         control.
14569         * PropertyManager.cs:
14570         * CurrencyManager.cs: Just need to pull data when updating now,
14571         because PullData will set the value on the control.
14572
14573 2005-03-04  Jackson Harper  <jackson@ximian.com>
14574
14575         * Binding.cs: Implement data type parsing and converting on pulled
14576         data. TODO: Are there more ways the data can be converted?
14577
14578 2005-03-04  Jackson Harper  <jackson@ximian.com>
14579
14580         * Binding.cs: Support <Property>IsNull checks. Also bind to the
14581         controls Validating method so we can repull the data when the
14582         control loses focus.
14583
14584 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
14585
14586         * ColumnHeader.cs:
14587           - Fixes null string format
14588           
14589         * ListView.cs:
14590           - Adds enum type checks
14591           - Fixes redrawing and recalc need after changing some properties
14592           - Fixes on focus_item set after the event
14593           - Fixes adding columns after the control has been created
14594           
14595         * ThemeWin32Classic.cs:
14596           - Fixes CheckBox focus rectangle
14597           - Fixes ColumnHeader drawing
14598
14599
14600 2005-03-03  Jackson Harper  <jackson@ximian.com>
14601
14602         * Binding.cs: Bind to <Property>Changed events so we can detect
14603         when properties are changed and update the data.
14604
14605 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
14606
14607         * ImageList.cs:
14608           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
14609           - Fixes ImageList constructor with ImageList container
14610           - Fixes image scaling (wrong parameters at DrawImage)
14611
14612 2005-02-02  Jackson Harper  <jackson@ximian.com>
14613
14614         * Binding.cs: Make property searches case-insensitive. Eliminate
14615         some duplicated code.
14616
14617 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
14618
14619         * ComboBox.cs:
14620                 - Handle focus event
14621                 - Fix scrollbar events
14622                 - Discard highlighted item if remove it
14623                 - Fixes SelectedItem with strings
14624
14625 2005-03-01  Peter Bartok  <pbartok@novell.com>
14626
14627         * Control.cs:
14628           - Fixed Visible property, now follows (once again) parent chain
14629             to return false if any control in the chain is visible=false
14630           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
14631           - Fixed several places where is_visible instead of Visible was used
14632           - Implemented FIXME related to focus selection when setting focused
14633             control to be invisible
14634
14635         * XplatUIWin32.cs: Now using proper method to find out if window is
14636           visible. Thanks to Jordi for pointing it out
14637
14638 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
14639
14640         * ComboBox.cs: show/hide scrollbar instead of creating it
14641
14642 2005-02-27  Jackson Harper  <jackson@ximian.com>
14643
14644         * CurrencyManager.cs: Add PositionChanged stuff.
14645
14646 2005-02-27  Peter Bartok  <pbartok@novell.com>
14647
14648         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
14649         * XplatUIOSX.cs: Added GetMenuOrigin() stub
14650         * XplatUIWin32.cs: Implemented GetMenuOrigin()
14651         * XplatUIX11.cs:
14652           - Implemented GetMenuDC()
14653           - Implemented GetMenuOrigin()
14654           - Implemented ReleaseMenuDC()
14655           - Implemented generation of WM_NCPAINT message
14656           - Implemented generation and handling of WM_NCCALCSIZE message
14657         * Form.cs: Added debug helper message for Jordi's menu work
14658         * Hwnd.cs:
14659           - Modified ClientRect property; added setter, fixed getter to handle
14660             setting of ClientRect
14661           - Added MenuOrigin property
14662
14663 2005-02-26  Peter Bartok  <pbartok@novell.com>
14664
14665         * XplatUIX11.cs:
14666           - Destroys the caret if a window that's being destroyed contains it
14667           - Ignores expose events coming from the X11 queue for windows that
14668             already are destroyed
14669           - Now uses the proper variable for handling DestroyNotify, before we
14670             marked the wrong window as destroyed
14671           - Improved/added some debug output
14672
14673 2005-02-26  Peter Bartok  <pbartok@novell.com>
14674
14675         * X11Keyboard.cs: Fixes to work on 64bit systems
14676
14677 2005-02-26  Peter Bartok  <pbartok@novell.com>
14678
14679         * Control.cs:
14680           - Now calling OnHandleDestroyed from DestroyHandle()
14681             instead of Dispose()
14682           - Removed bogus call to controls.Remove() from DestroyHandle()
14683
14684 2005-02-26  Peter Bartok  <pbartok@novell.com>
14685
14686         * Control.cs: Properly destroy child windows when our handle is
14687           destroyed
14688
14689 2005-02-25  Peter Bartok  <pbartok@novell.com>
14690
14691         * XplatUI.cs:
14692           - Added 'DriverDebug' define to allow tracing XplatUI API calls
14693           - Alphabetized Static Methods and Subclasses
14694
14695         * XplatUIX11.cs:
14696           - Added XException class to allow custom handling of X11 exceptions
14697           - Created custom X11 error handler, tied into XException class
14698           - Added support for MONO_XEXCEPTIONS env var to allow the user
14699             to either throw an exception on X errors or continue running
14700             after displaying the error
14701           - Added handling of DestroyNotify message
14702           - Added handler for CreateNotify message (still disabled)
14703           - Improved (tried to at least) Where method to provide file and lineno
14704         * X11Structs.cs:
14705           - Added XErrorHandler delegate
14706           - Added XRequest enumeration (to suppor translation of errors)
14707
14708 2005-02-25  Jackson Harper  <jackson@ximian.com>
14709
14710         * PropertyManager.cs: Implement editing features
14711         * CurrencyManager.cs:
14712         * Binding.cs: First attempt at UpdateIsBinding
14713         * BindingManagerBase.cs: Call UpdateIsBinding before
14714         pushing/pulling data.
14715
14716 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
14717
14718         * MenuAPI.cs: Respect disabled items
14719         * ThemeWin32Classic.cs
14720                 - Caches ImageAttributes creation for DrawImageDisabled
14721                 - Fixes vertical menu line drawing
14722                 - Draws disabled arrows in disable menu items
14723
14724 2005-02-24  Peter Bartok  <pbartok@novell.com>
14725
14726         * Hwnd.cs:
14727           - Added UserData property to allow associating arbitrary objects
14728             with the handle
14729           - Fixed leak; now removing Hwnd references from static windows array
14730         * XplatUIWin32.cs:
14731           - Fixed Graphics leak in PaintEventEnd
14732           - Removed usage of HandleData, switched over to Hwnd class
14733         * HandleData.cs: Removed, obsoleted by Hwnd.cs
14734
14735 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14736
14737         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
14738         * ScrollBar.cs: Fixes bug
14739         * TrackBar.cs: removes death code, clipping, mimize refreshes,
14740          keyboard navigation enhancements
14741
14742 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14743
14744         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
14745         * GroupBox.cs: Add control styles
14746         * Label.cs: Add control styles
14747         * UpDownBase.cs: Add control styles
14748         * ListBox.cs: Add control styles
14749         * XplatUIWin32.cs: Fixes wrong parameter order
14750
14751
14752 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
14753
14754         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
14755
14756 2005-02-23  Jackson Harper  <jackson@ximian.com>
14757
14758         * PropertyManager.cs: Implement property binding. This doesn't
14759         seem to work yet though as (I think) there are some bugs in
14760         System.ComponentModel.PropertyDescriptor.
14761         * BindingContext.cs: Use new PropertyManager constructor.
14762
14763 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
14764
14765         * ProgressBar.cs: use clip region in ProgressBar
14766         * ThemeWin32Classic.cs: use clip region in ProgressBar
14767
14768 2004-02-22  Jackson Harper  <jackson@ximian.com>
14769
14770         * BindingsCollection.cs: Remove some debug code.
14771
14772 2005-02-22  Jackson Harper  <jackson@ximian.com>
14773
14774         * BindingContext.cs:
14775         * ControlBindingsCollection.cs:
14776         * CurrencyManager.cs:
14777         * Binding.cs:
14778         * BindingManagerBase.cs: Initial implementation
14779         * BindingsCollection.cs: Add an internal contains method that the
14780         BindingManagerBase uses to ensure bindings aren't added twice to
14781         the collection.
14782         * PropertyManager.cs: Stubbed out.
14783         * Control.cs:
14784         * ContainerControl.cs: Hook up databinding
14785         
14786 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
14787
14788         * XplatUIOSX.cs:
14789           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
14790           Fixed Invalidate/Update chain.
14791           Fixed tons of other minor bugs (this is almost a complete rewrite).
14792
14793 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
14794
14795         * ComboBox.cs: do subcontrol creation when the control is created
14796
14797 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14798
14799         * Label.cs: fixes image drawing (image and imagelist)
14800         * ThemeWin32Classic.cs: cache brushes
14801         
14802 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14803
14804         * Form.cs: Move menu drawing code to Theme class
14805         * ComboBox.cs: Move ComboBox drawing code to Theme class
14806         * MenuItem.cs: Move menu drawing code to Theme class
14807         * MenuAPI.cs: Move menu drawing code to Theme class
14808         * ThemeWin32Classic.cs: New methods
14809         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
14810         * ListBox.cs: Move Listbox drawing code to Theme class
14811         * Theme.cs: New methods
14812
14813 2005-02-20  Peter Bartok  <pbartok@novell.com>
14814
14815         * Control.cs:
14816           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
14817             only process mnemonics on those)
14818           - Fixed event sequence for key handling; first calling
14819             ProcessKeyEventArgs now
14820         * TextBoxBase.cs:
14821           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
14822             for processing non-character keys
14823           - Fixed WM_CHAR to generate proper event sequence before processing
14824         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
14825           generation
14826
14827 2005-02-19  Peter Bartok  <pbartok@novell.com>
14828
14829         * UserControl.cs: Added TextChanged event; added attributes
14830         * SizeGrip.cs: Implemented resizing and optional display of grip
14831         * Form.cs: Fixed attribute
14832         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
14833           Changed meaning of ScrollWindow bool argument; instead of the
14834           clear attribute (which will be true usually anyway), it gives the
14835           option of moving child controls as well.
14836         * XplatUIX11.cs:
14837           - Changed to match new ScrollWindow argument
14838           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
14839             now handles the implicit parent window a WM puts around us
14840         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
14841           to work)
14842         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
14843         * TreeView.cs: Adjusted to new ScrollWindow arguments
14844
14845 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14846
14847         * Form.cs: Menu integration with non-client area
14848         * MenuItem.cs: Menu integration with non-client area
14849         * MenuAPI.cs: Menu integration with non-client area
14850
14851 2005-02-18  Peter Bartok  <pbartok@novell.com>
14852
14853         * MethodInvoker.cs: Added
14854         * MdiLayout.cs: Added
14855         * SendKeys.cs: Started implementation
14856         * ErrorIconAlignment.cs: Added
14857
14858 2005-02-18  Peter Bartok  <pbartok@novell.com>
14859
14860         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
14861         * Form.cs: Added handling for Menu-related Non-client messages
14862
14863 2005-02-17  Peter Bartok  <pbartok@novell.com>
14864
14865         * UpDownBase.cs: Fixed typo, compilation errors
14866         * DomainUpDown.cs: Fixed attribute value
14867
14868 2005-02-16  Miguel de Icaza  <miguel@novell.com>
14869
14870         * UpDownBase.cs: Attach entry events.
14871         Propagate events.
14872         Add ForeColor property, Focused, InterceptArrowKeys (interception
14873         does not work yet).
14874
14875 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
14876
14877         * Form.cs:
14878                 - Redraw non client are on Setmenu
14879                 - Calc proper menu starting point
14880
14881 2005-02-17  Peter Bartok  <pbartok@novell.com>
14882
14883         * Application.cs: Fixed message_filter check
14884
14885 2005-02-17  Peter Bartok  <pbartok@novell.com>
14886
14887         * Application.cs: Now calls registered message filters
14888         * DockStyle.cs: Fixed attribute
14889         * Form.cs: Fixed attribute
14890         * Menu.cs: Fixed attribute
14891         * ToolTip.cs: Fixed attribute
14892         * TreeNode.cs: Added missing attributes and arranged in regions
14893         * PropertyGrid.cs: Fixed signatures
14894         * TreeNodeCollection.cs: Added attributes
14895         * Splitter.cs: Added missing attributes; arranged into regions
14896         * TabPage.cs: Added missing attributes; arranged into regions
14897         * TextBoxBase.cs: Added missing attributes
14898         * TextBox.cs: Added missing attributes
14899         * ArrangeDirection.cs: Added missing attributes
14900         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
14901         * ToolBarButton.cs: Fixed attributes
14902         * AnchorStyles.cs: Fixed attribute
14903         * TrackBar.cs: Fixed attributes
14904         * TabControl.cs: Added missing attributes and arranged into regions
14905         * ToolBar.cs: Fixed attribute
14906         * StatusBar.cs: Fixed signature, organized into regions and added
14907           attributes
14908         * StatusBarPanel.cs: Fixed attributes
14909         * ContentsResizedEventArgs.cs: Implemented
14910         * ContentsResizedEventHandler.cs: Implemented
14911         * DateBoldEventArgs.cs: Implemented
14912         * DateBoldEventHandler.cs: Implemented
14913         * UpDownEventArgs.cs: Implemented
14914         * UpDownEventHandler.cs: Implemented
14915         
14916 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
14917
14918         * Form.cs: first Menu NC refactoring
14919         * MenuAPI.cs: first Menu NC refactoring
14920         
14921 2005-02-16  Peter Bartok  <pbartok@novell.com>
14922
14923         * ImeMode.cs: Added missing attributes
14924         * Menu.cs: Fixed attribute
14925         * GroupBox.cs: Fixed attribute
14926         * Label.cs: Fixed attribute
14927         * ColorDialog.cs (RunDialog): Removed TODO attribute
14928         * ComboBox.cs: Fixed attributes
14929         * ListControl.cs: Added missing attributes
14930         * PropertyGrid.cs: Fixed attributes
14931         * Control.cs: Fixed attributes
14932         * ListViewItem.cs: Added TypeConverter attribute
14933         * NotifyIcon.cs: Fixed attributes
14934         * ListView.cs: Fixed attributes
14935         * ButtonBase.cs: Fixed attribute
14936         * ImageList.cs: Added missing attributes
14937         * ContainerControl.cs: Fixed signature
14938         * CheckedListBox.cs: Fixed attribute; added missing attributes
14939         * Panel.cs: Fixed attributes
14940         * PropertyTabChangedEventArgs.cs: Added missing attribute
14941         * PropertyValueChangedEventArgs.cs: Added missing attribute
14942         * Binding.cs: Fixed attribute
14943         * ListViewItemConverter: Implemented ListViewSubItemConverter class
14944         * ListBox.cs: Fixed attribute; added missing attributes;
14945         * ScrollableControl.cs: Added missing attributes
14946         * PictureBox.cs: Added missing attributes; implemented missing property
14947         * DateTimePicker.cs: Added missing attributes
14948         * Theme.cs (ToolWindowCaptionHeight): Fixed type
14949         * MonthCalendar.cs: Fixed attributes
14950         * StatusBarPanel.cs: Added missing attributes
14951         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
14952
14953 2005-02-16  Peter Bartok  <pbartok@novell.com>
14954
14955         * TextBoxBase.cs: The previous method to enforce height yet remember
14956           the requested high was less than ideal, this is an attempt to do
14957           it better.
14958         * Control.cs: Added comment about possible problem
14959         * Copyright: Updated format
14960         * GridItemType.cs: Fixed swapped values
14961
14962 2005-02-15  Jackson Harper  <jackson@ximian.com>
14963
14964         * BaseCollection.cs: Use property so we never access an
14965         uninitialized list. Also initialize the list in the property.
14966
14967 2005-02-15  Peter Bartok  <pbartok@novell.com>
14968
14969         * GroupBox.cs (ProcessMnemonic): Implemented
14970         * Label.cs (ProcessMnemonic): Implemented
14971         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
14972           hotkeys
14973
14974 2005-02-15  Peter Bartok  <pbartok@novell.com>
14975
14976         * RadioButton.cs (ProcessMnemonic): Implemented
14977         * CheckBox.cs (ProcessMnemonic): Implemented
14978         * Control.cs:
14979           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
14980             handling
14981           - Added internal method to allow calling ProcessMnemonic from other
14982             controls
14983         * ContainerControl.cs:
14984           - Started support for handling validation chain handling
14985           - Implemented ProcessMnemonic support
14986           - Added Select() call to Active, to make sure the active control
14987             receives focus
14988         * Form.cs: Setting toplevel flag for Forms (this was lost in the
14989           FormParent rewrite)
14990         * ThemeWin32Classic.cs:
14991           - DrawCheckBox(): Fixed stringformat to show hotkeys
14992           - DrawRadioButton(): Fixed stringformat to show hotkeys
14993         * CommonDialog.cs: Removed WndProc override, not needed
14994
14995 2005-02-14  Peter Bartok  <pbartok@novell.com>
14996
14997         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
14998           missed those in the rewrite
14999
15000 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15001
15002         * NumericUpDown.cs (Increment, ToString): Add.
15003         (DecimalPlaces): implement.
15004         
15005         Add attributes.
15006         
15007         * UpDownBase.cs: Add the designer attributes.
15008
15009 2005-02-13  Peter Bartok  <pbartok@novell.com>
15010
15011         * Panel.cs: Removed border_style, now in Control
15012         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15013           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15014
15015 2005-02-13  Peter Bartok  <pbartok@novell.com>
15016
15017         * MouseButtons.cs: Added missing attributes
15018         * XplatUIStructs.cs: Added enumeration for title styles
15019         * LeftRightAlignment.cs: Added missing attributes
15020         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15021           it compatible with Graphics.FromHwnd()
15022         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15023         * Keys.cs: Added missing attributes
15024         * SelectionRange.cs: Added missing attributes
15025         * SelectionRangeConverter.cs: Added
15026         * XplatUI.cs:
15027           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15028             ReleaseMenuDC methods
15029           - Renamed ReleaseWindow to UngrabWindow
15030           - Added proper startup notice to allow version identification
15031         * Form.cs:
15032           - Added missing attributes
15033           - Removed FormParent concept
15034         * Label.cs: Removed border_style field, now in Control
15035         * RadioButton.cs: Now properly selects RadioButton when focus is
15036           received
15037         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15038         * Control.cs:
15039           - Added missing attributes
15040           - Added borderstyle handling
15041           - Removed FormParent concept support
15042           - Fixed calls to XplatUI to match changed APIs
15043           - Fixed bug that would case us to use disposed Graphics objects
15044           - Removed unneeded internal methods
15045           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15046           - SelectNextControl(): Fixed to properly check common parents
15047         * TextBoxBase.cs: Removed border_style field (now in Control)
15048         * MessageBox.cs:
15049           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15050             fixed calculations for form size
15051           - Added support for localized strings and icons
15052           - Improved form size calculations, added border
15053         * ListView.cs: Removed border_style field (now in Control)
15054         * X11Structs.cs: Moved several structs from X11 driver here
15055         * X11Keyboard.cs: Changed debug message
15056         * Application.cs: Removed FormParent concept support
15057         * CommonDialog.cs:
15058           - Resetting end_modal flag
15059           - Removed FormParent concept support
15060         * NativeWindow.cs: Removed FormParent concept support
15061         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15062           Client area and Non-Client whole window to allow support for WM_NC
15063           messages
15064         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15065           prevent using it until it supports Hwnd as per Geoff Norton's request
15066         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15067         * PictureBox.cs: Removed border_style field, now in Control
15068         * XplatUIWin32.cs: Added new driver methods
15069
15070 2005-02-12  Peter Bartok  <pbartok@novell.com>
15071
15072         * OpacityConverter.cs: Implemented
15073         * Hwnd.cs: Internal class to support drivers that need to emulate
15074           client area/non-client area window behaviour
15075
15076 2005-02-11  Peter Bartok  <pbartok@novell.com>
15077
15078         * KeysConverter.cs: Implemented
15079
15080 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15081
15082         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15083         * LinkLabel: Added missing attributes
15084         * MainMenu.cs: fixes ToString
15085         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15086         * ListBox.cs: fixes event position
15087         * TrackBar.cs: adds missing attributes and events
15088         
15089 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15090
15091         * MenuItem.cs: Use SystemInformation and bug fixes
15092         * MenuAPI.cs: Use SystemInformation and bug fixes
15093
15094 2005-02-09  Jackson Harper  <jackson@ximian.com>
15095
15096         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15097         their keystate otherwise things like VK_MENU get stuck "on".
15098
15099 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15100
15101         * ListBox.cs: Fixes AddRange bug
15102         
15103 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15104
15105         * ProgressBar.cs
15106                 - Add missing attributes
15107                 - Add missing method
15108                 
15109         * CheckedListBox.cs: Added missing attributes
15110                 - Add missing attributes
15111                 - Remove extra method
15112         
15113         * ComboBox.cs: Added missing attributes
15114         * VScrollBar.cs: Added missing attributes
15115         * ScrollBar.cs:  Added missing attributes
15116         * ListBox.cs: Fixes signature, add missing consts
15117         * LinkArea.cs:   Added missing attributes
15118         
15119
15120 2005-02-08  Peter Bartok  <pbartok@novell.com>
15121
15122         * Menu.cs: Added missing attributes
15123         * MainMenu.cs: Added missing attributes
15124         * GroupBox.cs: Added missing attributes
15125         * Label.cs: Added missing attributes
15126         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15127         * ColorDialog.cs:
15128           - Added Instance and Options properties
15129           - Added missing attributes
15130         * Cursor.cs: Made Serializable
15131         * NotifyIcon: Added missing attributes
15132         * MenuItem.cs: Added missing attributes
15133         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15134         * Panel.cs: Added Missing attributes
15135         * MonthCalendar.cs: Fixed CreateParams
15136
15137 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15138         
15139         * LinkLabel.cs:
15140                 - Fixes signature
15141                 - Fixes issues with links
15142                 - Adds the class attributes
15143
15144 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15145         
15146         * ComboBox.cs:
15147                 - Fixes button when no items available in dropdown
15148                 - Fixes repainting problems
15149                 - Adds the class attributes
15150                 
15151 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15152
15153         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15154         the current theme.  Cache these on startup.
15155
15156 2005-02-07  Jackson Harper  <jackson@ximian.com>
15157
15158         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15159         the scrollbar buttons when they are depressed.
15160
15161 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15162
15163         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15164         Get the display size from the main displayid.  We currently dont
15165         support multiple display configurations.
15166
15167 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15168
15169         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15170
15171 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15172
15173         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15174
15175 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15176
15177         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15178
15179 2005-02-04  Jackson Harper  <jackson@ximian.com>
15180
15181         * ThemeWin32Classic.cs: Respect the clipping rect when
15182         drawing. Only fill the intersection of clips and rects so there
15183         isn't a lot of large fills.
15184         * ScrollBar.cs: Pass the correct clipping rect to the theme
15185         engine. Remove some debug code.
15186
15187 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15188         
15189         * DateTimePicker.cs:
15190                 - Fixed crash on DateTime.Parse, use Constructor instead
15191
15192 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15193         
15194         * MenuItem.cs:
15195         * MenuAPI.cs:
15196                 - Owner draw support (MeasureItem and DrawItem)
15197
15198 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15199         
15200         *  Menu.cs:
15201                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15202                 - Fixes MenuItems.Add range
15203         * MenuItem.cs:
15204                 - MergeMenu and Clone and CloneMenu functions
15205
15206 2005-02-03  Jackson Harper  <jackson@ximian.com>
15207
15208         * ScrollBar.cs: Make abstract
15209         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15210         is abstract.
15211
15212 2005-02-03  Jackson Harper  <jackson@ximian.com>
15213
15214         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15215         all the unneeded refreshes and uses invalidates with properly
15216         computed rects.
15217
15218 2005-02-03  Peter Bartok  <pbartok@novell.com>
15219
15220         * ComponentModel.cs: Added
15221         * IDataGridEditingService.cs: Added
15222         * Timer.cs: Added missing attributes
15223         * ToolTip.cs: Added missing attributes
15224
15225 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15226
15227         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15228
15229 2005-02-03  Peter Bartok  <pbartok@novell.com>
15230
15231         * ListBox.cs: Added missing attributes
15232
15233 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15234         
15235         * ListBox.cs:
15236                 - Fixes font height after font change
15237                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15238                 
15239 2005-02-02  Peter Bartok  <pbartok@novell.com>
15240
15241         * HandleData.cs: Introduced static methods to allow class
15242           to be more self-contained and track it's own HandleData objects
15243         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15244           HandleData to use new static methods
15245
15246 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15247
15248         * Combobox.cs:
15249                 - Fixes default size and PreferredHeight
15250                 - Missing events
15251                 - ObjectCollection.Insert implementation
15252                 
15253         * ListControl.cs
15254                 - Fixes signature
15255         * ListBox.cs:
15256                 - Several fixes
15257                 - ObjectCollection.Insert implementation
15258                 - No selection after clean
15259                 - Small fixes
15260
15261 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15262
15263         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15264
15265 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15266
15267         * Combobox.cs:
15268                 - Caches ItemHeight calculation for OwnerDrawVariable
15269                 - Handles dropdown properly
15270                 - Fixes several minor bugs
15271
15272 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15273
15274         * ListBox.cs:
15275                 - Fixes 71946 and 71950
15276                 - Fixes changing Multicolumn on the fly
15277                 - Fixes keyboard navigation on Multicolumn listboxes
15278
15279 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15280         
15281         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15282         crash reporter log.
15283
15284 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15285
15286         * XplatUIOSX.cs: Allow applications to actually exit.
15287
15288 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15289
15290         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15291         their parent at creation time rather than lazily later.  Fixes a major
15292         regression we were experiencing.
15293
15294 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15295
15296         * ThemeWin32Classic.cs: more date time picker painting fixes
15297         * DateTimePicker.cs: more monthcalendar drop down fixes
15298         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15299
15300 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15301
15302         * ScrollBar.cs:
15303                 - When moving the thumb going outside the control should stop the moving
15304                 - Adds the firing of missing events
15305                 - Fixes no button show if Size is not specified
15306                 - End / Home keys for keyboard navigation
15307
15308 2005-01-30  Peter Bartok  <pbartok@novell.com>
15309
15310         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15311           sanity check to prevent theoretical loop
15312         * XplatUIWin32.cs (SetVisible): Removed debug output
15313         * XplatUIX11.cs (SystrayChange): Added sanity check
15314         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15315         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15316           behaviour, valid until the X11 client window rewrite is done
15317         * TextBox.cs (ctor): Setting proper default foreground and background
15318           colors
15319
15320 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15321
15322         * Theme: Added DrawDateTimePicker to interface
15323         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15324         * DateTimePicker.cs: Created (still needs keys and painting code)
15325         * DateTimePickerFormat.cs: added
15326         * MonthCalendar.cs: fixed CreateParams for popup window mode
15327           
15328 2005-01-29  Peter Bartok  <pbartok@novell.com>
15329
15330         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15331           this should also the calculations for ligher/darker
15332         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15333
15334 2005-01-29  Peter Bartok  <pbartok@novell.com>
15335
15336         * ArrangeDirection.cs: Added
15337         * ArrangeStartingPositon.cs: Added
15338         * SystemInformation.cs: Implemented
15339         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15340           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15341           used by SystemInformation class
15342         * X11Strucs.cs: Added XSizeHints structure
15343         * MenuAPI.cs:
15344           - Fixed CreateParams to make sure the menu window is always visible
15345           - TrackPopupMenu: Added check to make sure we don't draw the
15346             menu offscreen
15347
15348 2005-01-29  Peter Bartok  <pbartok@novell.com>
15349
15350         * HandleData.cs: Added method for altering invalid area
15351         * TextBoxBase.cs: Implemented TextLength
15352
15353 2005-01-28  Peter Bartok  <pbartok@novell.com>
15354
15355         * XplatUIX11.cs: Improvement over last patch, not sending
15356           the WM_PAINT directly anymore, instead we scroll any pending
15357           exposed areas and let the system pick out the WM_PAINT later
15358
15359 2005-01-28  Peter Bartok  <pbartok@novell.com>
15360
15361         * SWF.csproj: Deleted, no longer used. Instead,
15362           Managed.Windows.Forms/SWF.csproj should be used
15363         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15364           directly, to avoid a potential race condition with the next
15365           scroll
15366
15367 2005-01-28  Peter Bartok  <pbartok@novell.com>
15368
15369         * XplatUI.cs: Made class internal
15370
15371 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15372
15373         * CheckedListBox.cs:
15374                 - Draw focus
15375                 - Fixed Drawing
15376                 - Missing methods and events
15377
15378 2005-01-27  Peter Bartok  <pbartok@novell.com>
15379
15380         * Application.cs (Run): Don't use form if we don't have one
15381
15382 2005-01-27  Peter Bartok  <pbartok@novell.com>
15383
15384         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15385
15386 2005-01-27  Peter Bartok  <pbartok@novell.com>
15387
15388         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15389         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15390         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15391         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15392         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15393         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15394         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15395         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15396         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15397         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15398         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15399         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15400
15401 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15402
15403         * Combobox.cs:
15404                 - Draw focus on Simple Combobox
15405                 - Fixes drawing issues
15406                 - fixes 71834
15407
15408 2005-01-27  Peter Bartok  <pbartok@novell.com>
15409
15410         * Form.cs:
15411           - Place window in default location, instead of hardcoded 0/0
15412           - Send initial LocationChanged event
15413         * Control.cs:
15414           - UpdateBounds after creation to find out where the WM placed us
15415           - Make sure that if the ParentForm changes location the Form
15416             is notified
15417         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15418             to the root, but to whatever the WM placed around us.
15419             Translate to root coordinates before returning toplevel
15420             coordinates
15421         * XplatUIWin32.cs: Removed debug output
15422         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15423           flag to GetWindowPos, to allow translation of coordinates on X11
15424
15425 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15426
15427         * ListBox.cs: connect LostFocus Event
15428
15429 2005-01-27  Peter Bartok  <pbartok@novell.com>
15430
15431         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15432           XplatUIX11.cs: Extended the Systray API
15433         * Form.cs: Removed debug output
15434         * Application.cs: Fixed focus assignment, always need to call
15435           XplatUI.Activate() since Form.Activate() has rules that may
15436           prevent activation
15437         * NotifyIcon.cs: Should be complete now
15438         * ToolTip.cs: Worked around possible timer bug
15439
15440 2005-01-27  Jackson Harper  <jackson@ximian.com>
15441
15442         * TabControl.cs:
15443         - Only invalidate the effected tabs when the
15444         selected index changes. This reduces drawing and gets rid of some
15445         flicker.
15446         - Only refresh if the tabs need to be shifted, otherwise only
15447         invalidate the slider button.
15448         - On windows the tabs are not filled to right if the slider is
15449         visible.
15450         
15451 2005-01-27  Jackson Harper  <jackson@ximian.com>
15452
15453         * TabControl.cs: Only refresh on mouseup if we are showing the
15454         slider. Also only invalidate the button whose state has changed.
15455
15456 2005-01-26  Peter Bartok  <pbartok@novell.com>
15457
15458         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15459         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15460           and SystrayRemove() methods
15461         * XplatUIOSX.cs: Stubbed Systray methods
15462         * XplatUIX11.cs:
15463           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15464             methods
15465           - Fixed broken XChangeProperty calls (marshalling messed up things)
15466         * X11Structs.cs: Added enums and structs required for Size hinting
15467         * NotifyIcon.cs: Added & implemented
15468
15469 2005-01-26  Jackson Harper  <jackson@ximian.com>
15470
15471         * TabControl.cs: Space vertically layed out tabs properly.
15472
15473 2005-01-26  Peter Bartok  <pbartok@novell.com>
15474
15475         * Form.cs (CreateClientParams): Always set the location to 0,0
15476           since we're a child window.
15477
15478         * Control.cs (SetVisibleCore): Always explicitly setting the location
15479           of a toplevel window, apparently X11 doesn't like to move windows
15480           while they're not mapped.
15481
15482 2005-01-26  Jackson Harper  <jackson@ximian.com>
15483
15484         * TabControl.cs: Implement FillToRight size mode with vertically
15485         rendered tabs.
15486
15487 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15488
15489         * ControlPaint.cs, ThemeWin32Classic.cs
15490                 - Fixes DrawFocusRectangle
15491
15492 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15493
15494         * MenuAPI.cs:
15495                 - MenuBar tracking only starts when item is first clicked
15496                 - Fixes menu hidding for multiple subitems
15497                 - Unselect item in MenuBar when item Executed
15498                 - Fixes bug 71495
15499
15500 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15501
15502         * ListControl.cs:
15503                 - IsInputKey for ListBox
15504         * ListBox.cs:
15505                 - Focus item
15506                 - Shift and Control item selection
15507                 - Implement SelectionMode.MultiExtended
15508                 - Fixes RightToLeft
15509         * ComboBox.cs:
15510                 - IsInputKey implemented
15511                 - Do not generate OnTextChangedEdit on internal txt changes
15512                 
15513 2005-01-23  Peter Bartok  <pbartok@novell.com>
15514
15515         * AccessibleObject.cs: Partially implemented Select()
15516         * MonthCalendar.cs: Added missing attributes and events
15517         * Form.cs: Fixed CreateParams behaviour, now controls derived from
15518           form can properly override CreateParams.
15519         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15520           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
15521           Control performs Invalidate & Update
15522         * NativeWindow (CreateHandle): Added special handling for Form
15523           and Form.FormParent classes to allow overriding of From.CreateParams
15524         * Control.cs:
15525           - ControlNativeWindow: Renamed 'control' variable to more intuitive
15526             name 'owner'
15527           - ControlNativeWindow: Added Owner property
15528           - Removed usage of Refresh() on property changes, changed into
15529             Invalidate(), we need to wait until the queue is processed for
15530             updates, direct calls might cause problems if not all vars for
15531             Paint are initialized
15532           - Added call to UpdateStyles() when creating the window, to set any
15533             styles that CreateWindow might have ignored.
15534           - Added support for Form CreateParent overrides to UpdateStyles()
15535         * MessageBox.cs: Removed no longer needed FormParent override stuff,
15536           CreateParams are now properly overridable
15537         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
15538           CreateParams are now properly overridable
15539
15540 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
15541
15542         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
15543         OnTextBoxChanged.
15544
15545         Capture LostFocus and OnTextBoxChanged.  The later introduces a
15546         recursive invocation that I have not figured out yet.
15547
15548         Reset the timer when not using (it was accumulating).
15549
15550
15551         (OnTextBoxChanged): Set UserEdit to true here to track whether the
15552         user has made changes that require validation.
15553
15554         Reset changing to avoid loops.
15555
15556 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
15557
15558         * NumericUpDown.cs: Display value at startup.
15559
15560         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
15561         ValidateEditText.
15562
15563         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
15564         filled in.  Added some basic parsing of text.
15565
15566         Still missing the OnXXX method overrides, and figuring out the
15567         events that must be emitted.
15568
15569         * UpDownBase.cs: Handle UserEdit on the Text property.
15570         
15571 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
15572
15573         * ComboBox.cs:
15574           - Fixes IntegralHeight
15575           - ToString method
15576
15577 2005-01-21  Jackson Harper  <jackson@ximian.com>
15578
15579         * TabControl.cs: Set the SelectedIndex property when SelectedTab
15580         is set so that the page visibility is updated and the tabs are
15581         sized correctly.
15582
15583 2005-01-21  Jackson Harper  <jackson@ximian.com>
15584
15585         * TabControl.cs: Use cliping rectangle for blitting. Give the
15586         theme the clipping rect so we can do clipping while
15587         drawing. Remove some debug code.
15588
15589 2005-01-21  Jackson Harper  <jackson@ximian.com>
15590
15591         * TabPage.cs: Add a new method so tab pages can force the tab
15592         control to recalculate the tab page sizes.
15593         * TabControl.cs: UpdateOwner needs to make the tab control recalc
15594         sizes.
15595
15596 2005-01-20  Jackson Harper  <jackson@ximian.com>
15597
15598         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
15599
15600 2005-01-20  Jackson Harper  <jackson@ximian.com>
15601
15602         * TreeView.cs: Set the bounds for nodes properly. They were
15603         getting screwed up when checkboxes were not enabled, but images
15604         were.
15605
15606 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
15607
15608         * ListBox.cs:
15609                 - Owner draw support
15610                 - Fixes
15611                 
15612 2005-01-20  Jackson Harper  <jackson@ximian.com>
15613
15614         * XplatUIStructs.cs: More misc keys
15615         * X11Keyboard.cs: Ignore some control keys.
15616
15617 2005-01-20  Jackson Harper  <jackson@ximian.com>
15618
15619         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
15620         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
15621
15622 2005-01-19  Peter Bartok  <pbartok@novell.com>
15623
15624         * Control.cs: Un-selecting the control when it is loosing focus
15625
15626 2005-01-19  Jackson Harper  <jackson@ximian.com>
15627
15628         * TreeView.cs: Hook up to the text controls leave event so we can
15629         end editing when the users clicks outside the text box.
15630         
15631 2005-01-19  Jackson Harper  <jackson@ximian.com>
15632
15633         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
15634         get set in the conversion array.
15635
15636 2005-01-19  Peter Bartok  <pbartok@novell.com>
15637
15638         * Application.cs (ModalRun): Added a call to CreateControl to ensure
15639           focus is properly set
15640         * Button.cs:
15641           - Added missing attributes
15642           - removed styles, those are already set in the base class
15643         * ButtonBase.cs:
15644           - Added missing attributes
15645           - Added clip window styles
15646         * CheckBox.cs: Added missing attributes
15647         * CommonDialog.cs:
15648           - FormParentWindow.CreateParams: Added required clip styles
15649         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
15650           also filters modifier keys
15651         * MessageBox.cs:
15652           - Added assignment of Accept and Cancel button to enable Enter
15653             and Esc keys in MessageBox dialogs
15654           - FormParentWindow.CreateParams: Added required clip styles
15655         * RadioButton.cs: Added missing attributes
15656         * TextControl.cs: No longer draws selection if control does not
15657           have focus
15658         * TextBoxBase.cs:
15659           - Now draws simple rectangle around test area to make it obvious
15660             there's a control. This is a hack until we properly support borders
15661           - A few simple fixes to support selections better, now erases selected
15662             text when typing, and resets selection when using movement keys
15663
15664 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15665
15666         * UpDownBase.cs: Added some new properties.
15667
15668         * DomainUpDown.cs: Implement a lot to get my test working.
15669
15670 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15671
15672         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
15673
15674 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15675
15676         * OSXStructs (WindowAttributes): Fixed csc complaints
15677
15678 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15679
15680         * XplayUIOSX.cs:
15681           OSXStructs.cs: Initial refactor to move enums and consts into
15682           OSXStructs and use them in the driver for greater readability.
15683
15684 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15685
15686         * XplatUIOSX.cs: Initial support for Standard Cursors.
15687         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
15688
15689 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
15690
15691         * ComboBox.cs: ability to change style when the ctrl is already
15692         created, missing methods and events, bug fixes, signature fixes
15693
15694 2005-01-19  Peter Bartok  <pbartok@novell.com>
15695
15696         * Cursors.cs (ctor): Added ctor to fix signature
15697
15698 2005-01-18  Peter Bartok  <pbartok@novell.com>
15699
15700         * Button.cs: Implemented DoubleClick event
15701         * ButtonBase.cs:
15702           - Fixed keyboard handling to behave like MS, where the press of
15703             Spacebar is equivalent to a mousedown, and the key release is
15704             equivalent to mouseup. Now a spacebar push will give the same
15705             visual feedback like a mouse click.
15706           - Added missing attributes
15707           - Added ImeModeChanged event
15708           - Added support for generating DoubleClick event for derived classes
15709         * CheckBox.cs:
15710           - Implemented DoubleClick event
15711           - Added missing attributes
15712         * CommonDialog.cs: Added missing attribute
15713         * ContextMenu.cs: Added missing attributes
15714         * RadioButton.cs:
15715           - AutoChecked buttons do not allow to be unselected when clicked
15716             (otherwise we might end up with no selected buttons in a group)
15717           - Added missing attributes
15718           - Implemented DoubleClickEvent
15719         * ThreadExceptionDialog.cs: Enabled TextBox code
15720
15721 2005-01-18  Peter Bartok  <pbartok@novell.com>
15722
15723         * Form.cs: Removed debug output
15724         * Button.cs: Added support for DoubleClick method
15725
15726 2005-01-18  Peter Bartok  <pbartok@novell.com>
15727
15728         * Form.cs:
15729           - Added method to parent window that allows triggering size
15730             calculations when a menu is added/removed
15731           - set_Menu: Cleaned up mess from early days of Form and Control,
15732             now properly triggers a recalc when a menu is added/removed
15733           - Added case to select form itself as focused form if no child
15734             controls exist
15735           - Added PerformLayout call when showing dialog, to ensure properly
15736             placed controls
15737         * Control.cs:
15738           - Select(): Made internal so Form can access it
15739           - Focus(): Only call Xplat layer if required (avoids loop), and sets
15740             status
15741         * Application.cs (Run): Removed hack and calls PerformLayout instead
15742           to trigger calculation when Form becomes visible
15743
15744 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
15745
15746         * ComboBox.cs: fixes for ownerdraw
15747
15748 2005-01-18  Peter Bartok  <pbartok@novell.com>
15749
15750         * TextControl.cs:
15751           - Sentinel is no longer static, each Document gets it's own, this
15752             avoids locking or alternatively overwrite problems when more
15753             than one text control is used simultaneously.
15754           - Switched to use Hilight and HilightText brushes for text selection
15755
15756         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
15757
15758 2005-01-18  Peter Bartok  <pbartok@novell.com>
15759
15760         * Control.cs:
15761           - Hooked up the following events:
15762                 o ControlAdded
15763                 o ControlRemoved
15764                 o HandleDestroyed
15765                 o ImeModeChanged
15766                 o ParentChanged
15767                 o TabStopChanged
15768                 o Invalidated
15769                 o SystemColorsChanged
15770                 o ParentFontChanged
15771                 o Move
15772           - Removed debug output
15773           - Added a call to the current theme's ResetDefaults when a color change
15774             is detected
15775         * Form.cs: Now setting the proper ImeMode
15776         * Theme.cs: Defined a method to force recreation of cached resources
15777           and rereading of system defaults (ResetDefaults())
15778         * ThemeWin32Classic.cs: Added ResetDefaults() stub
15779
15780 2005-01-17  Peter Bartok  <pbartok@novell.com>
15781
15782         * Control.cs: Added missing attributes
15783
15784 2005-01-17  Jackson Harper  <jackson@ximian.com>
15785
15786         * TreeNode.cs: Implement editing. Add missing properties selected
15787         and visible.
15788         * TreeView.cs: Implement node editing. Also some fixes to use
15789         Invalidate (invalid area) instead of Refresh when selecting.
15790
15791 2005-01-17  Peter Bartok  <pbartok@novell.com>
15792
15793         * Control.cs:
15794           - Implemented InvokeGotFocus() method
15795           - Implemented InvokeLostFocus() method
15796           - Implemented InvokePaint() method
15797           - Implemented InvokePaintBackground() method
15798           - Implemented InvokeClick() method
15799           - Implemented FindForm() method
15800           - Implemented RectangleToClient() method
15801           - Implemented ClientToRectangle() method
15802           - Implemented ResetBackColor() method
15803           - Implemented ResetCursor() method
15804           - Implemented ResetFont() method
15805           - Implemented ResteForeColor() method
15806           - Implemented ResetImeMode() method
15807           - Implemented ResetLeftToRight() method
15808           - Implemented ResetText() method
15809           - Implemented Scale() methods
15810           - Implemented ScaleCore() method
15811           - Implemented Update() method
15812           - Removed unused variables
15813           - Stubbed AccessibilityNotifyClients and
15814             ControlAccessibleObject.NotifyClients() methods (dunno what to do
15815             with those yet)
15816           - Now setting proper default for RightToLeft property
15817           - Fixed bug in SetClientSizeCore that would cause windows to get
15818             really big
15819           - Now sending Click/DoubleClick events
15820           - Now selecting controls when left mouse button is clicked on
15821             selectable control
15822         * AccessibleEvents.cs: Added
15823         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
15824         * XplatUIOSX.cs: Stubbed UpdateWindow() method
15825         * XplatUIWin32.cs: Implemented UpdateWindow() method
15826         * XplatUIX11.cs: Implemented UpdateWindow() method
15827         * Form.cs: Removed stray semicolon causing CS0162 warning
15828         * ThemeWin32Classic.cs: Fixed unused variable warnings
15829         * ScrollableControl.cs: Now calls base method for ScaleCore
15830         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
15831           style to avoid interference with internal click handler (which is
15832           different than standard Control click handling)
15833         * RadioButton.cs:
15834           - Now unchecks all sibling radio buttons when control is
15835             selected (Fixes #68756)
15836           - Removed internal tabstop variable, using the one inherited from
15837             Control
15838
15839 2005-01-17  Jackson Harper  <jackson@ximian.com>
15840
15841         * NavigateEventArgs.cs: Fix base type.
15842         * LinkLabel.cs: Sig fix
15843         
15844 2005-01-17  Jackson Harper  <jackson@ximian.com>
15845
15846         * TreeView.cs: Only invalidate the effected nodes bounds when
15847         selecting nodes.
15848
15849 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15850
15851         * XplatUIWin32.cs: fixes Win32 marshaling
15852         * XplatUIX11.cs: fixes method signature
15853
15854 2005-01-17  Peter Bartok  <pbartok@novell.com>
15855
15856         * XplatUIX11.cs: Clean up resources when we no longer need them
15857
15858 2005-01-17  Peter Bartok  <pbartok@novell.com>
15859
15860         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
15861           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
15862           and DestroyCursor() methods.
15863         * Cursor.cs: Partially implemented, now supports standard cursors;
15864           still contains some debug code
15865         * Cursors.cs: Implemented class
15866         * Control.cs:
15867           - WndProc(): Added handling of WM_SETCURSOR message, setting the
15868             appropriate cursor
15869           - Implemented Cursor property
15870           - Replaced break; with return; more straightforwar and possibly
15871             faster
15872           - Now properly setting the result for WM_HELP
15873         * X11Structs.cs: Added CursorFontShape enum
15874         * XplatUIStructs.cs:
15875           - Added StdCursor enum (to support DefineStdCursor() method)
15876           - Added HitTest enum (to support sending WM_SETCURSOR message)
15877         * XplatUIX11.cs:
15878           - Now sends the WM_SETCURSOR message
15879           - Implemented new cursor methods
15880         * XplatUIOSX.cs: Stubbed new cursor methods
15881         * XplatUIWin32.cs:
15882           - Implemented new cursor methods
15883           - Added GetSystemMetrics function and associated enumeration
15884
15885 2005-01-15  Peter Bartok  <pbartok@novell.com>
15886
15887         * Control.cs:
15888           - WndProc(): Now handles EnableNotifyMessage
15889           - SelectNextControl(): Fixed bug where if no child or sibling
15890             controls exist we looped endlessly
15891
15892 2005-01-14  Jackson Harper  <jackson@ximian.com>
15893
15894         * TreeView.cs: Recalculate the tab pages when a new one is added
15895         so that the proper bounding rects are created.
15896
15897 2005-01-14  Jackson Harper  <jackson@ximian.com>
15898
15899         * TreeView.cs: Draw a gray box instead of a grip in the lower
15900         right hand corner when there are both horizontal and vertical
15901         scroll bars.
15902
15903 2005-01-14  Jackson Harper  <jackson@ximian.com>
15904
15905         * Control.cs: When erasing backgrounds use FromHwnd instead of
15906         FromHdc when there is a NULL wparam. This occurs on the X driver.
15907         * XplatUIX11.cs: Set the wparam to NULL.
15908
15909 2005-01-13  Jackson Harper  <jackson@ximian.com>
15910
15911         * PictureBox.cs: Implement missing methods (except ToString, need
15912         to test that on windows) and events. When visibility is changed we
15913         need to redraw the image because the buffers are killed. When size
15914         is changed refresh if the sizemode needs it.
15915
15916 2005-01-13  Peter Bartok  <pbartok@novell.com>
15917
15918         * Control.cs (SelectNextControl): Was using wrong method to select
15919           a control
15920
15921 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15922
15923         * ComboBox.cs: fixes dropstyle
15924
15925 2005-01-13  Peter Bartok  <pbartok@novell.com>
15926
15927         * Form.cs:
15928           - Implemented Select() override
15929           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
15930           - Now sets keyboard focus on startup
15931         * Control.cs (SelectNextControl): Now properly handles directed=true
15932         * TextBoxBase.cs:
15933           - WndProc: Now passes tab key on to base if AcceptTabChar=false
15934           - Added (really bad) focus rectangle (mostly for testing)
15935         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
15936           to enforce redraw on focus changes
15937         * ContainerControl.cs:
15938           - Fixed detection of Shift-Tab key presses
15939           - Fixed traversal with arrow keys
15940         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
15941           gonna keep this or if it's complete yet
15942         
15943 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15944
15945         * ComboBox.cs: missing properties, fixes
15946
15947 2005-01-13  Peter Bartok  <pbartok@novell.com>
15948
15949         * Panel.cs (ctor): Setting Selectable window style to off
15950         * Splitter.cs (ctor): Setting Selectable window style to off
15951         * GroupBox.cs (ctor): Setting Selectable window style to off
15952         * Label.cs (ctor): Setting Selectable window style to off
15953
15954 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
15955
15956         * UpDownBase.cs (InitTimer): If the timer has been already
15957         created, enable it.
15958
15959         Use a TextBox instead of a Label.
15960
15961 2005-01-12  Jackson Harper  <jackson@ximian.com>
15962
15963         * TreeView.cs: Refresh the tree after sorting the nodes. Always
15964         draw the connecting node lines (when ShowLines is true).
15965         * TreeNode.cs: The nodes index can now be updated. This is used
15966         when a node collection is sorted.
15967         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
15968         insert or an existing unsorted node collection can be sorted.
15969         
15970 2005-01-12  Peter Bartok  <pbartok@novell.com>
15971
15972         * ContainerControl.cs: Implemented ProcessDialogKeys()
15973
15974 2005-01-12  Peter Bartok  <pbartok@novell.com>
15975
15976         * Control.cs:
15977           - Implemented SelectNextControl() method
15978           - Several focus related bug fixes
15979           - Fixed Docking calculations to match MS documentation and
15980             behaviour
15981
15982 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
15983
15984         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
15985         bug fixes
15986
15987 2005-01-12  Peter Bartok  <pbartok@novell.com>
15988
15989         * Control.cs:
15990           - Fixed broken Contains() method
15991           - Implemented GetNextControl() method. Finally. This is the pre-
15992             requisite for focus handling.
15993
15994 2005-01-12  Peter Bartok  <pbartok@novell.com>
15995
15996         * OSXStrucs.cs: Added
15997
15998 2005-01-12  Peter Bartok  <pbartok@novell.com>
15999
16000         * XplatUIWin32.cs:
16001           - Removed PeekMessageFlags
16002           - Implemented SetWindowStyle() method
16003         * XplatUIStructs.cs: Added PeekMessageFlags
16004         * X11Structs: Added missing border_width field to XWindowChanges struct
16005         * XplatUIX11.cs:
16006           - PeekMessage: Now throws exception if flags which are not yet
16007             supported are passed
16008           - Implemented SetWindowStyle() method
16009           - Fixed SetZOrder to handle AfterHwnd properly
16010         * XplatUI.cs: Added SetWindowStyle() method
16011         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16012         * Control.cs:
16013           - Implemented UpdateStyles() method
16014           - Implemented UpdateZOrder() method
16015         * XplatUIOSX.cs: Added SetWindowStyle() stub
16016
16017 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16018
16019         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16020         button mouse).
16021
16022
16023 2005-01-11  Jackson Harper  <jackson@ximian.com>
16024
16025         * TreeView.cs: Still need to draw lines to siblings even if out of
16026         the current node is out of the clip.
16027
16028 2005-01-11  Jackson Harper  <jackson@ximian.com>
16029
16030         * TreeView.cs: When setting the hbar/vbar/grip position use
16031         SetBounds so that perform layout is only called once. Also suspend
16032         and resume layout so layout is only done once for all controls.
16033         - Removed some debug fluff
16034         * SizeGrip.cs: Call base implmentation in overriding methods.
16035         - When visibility is changed the drawing buffers are killed so we
16036         need to redraw.
16037
16038 2005-01-11  Jackson Harper  <jackson@ximian.com>
16039
16040         * TreeView.cs: Calculate the open node count while drawing. This
16041         saves us an entire tree traversal for every paint operation. Use
16042         a member var for the open node count so less vars are passed around.
16043
16044 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16045
16046         * MonthCalendar.cs:
16047         - fixed selection to use mousemove, not mouse polling on timer
16048         * ThemeWin32Classic.cs
16049         - removed redundant unused variable "no_more_content"
16050         
16051 2005-01-11  Peter Bartok  <pbartok@novell.com>
16052
16053         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16054           are pending, so it now calls PeekMessage instead of GetMessage;
16055           implemented a incomplete version of PeekMessage
16056         
16057 2005-01-11  Peter Bartok  <pbartok@novell.com>
16058
16059         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16060           I18n issues
16061         * TextBoxBase.cs: Added sending of TextChanged event
16062
16063 2005-01-10  Jackson Harper  <jackson@ximian.com>
16064
16065         * TreeView.cs: Try not to draw outside the clipping rectangle on
16066         each node element.
16067
16068 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16069
16070         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16071
16072 2005-01-10  Jackson Harper  <jackson@ximian.com>
16073
16074         * TreeView.cs:
16075         - Implement fast scrolling. Now only the newly
16076         exposed nodes are drawn and the old image is moved using the
16077         XplatUI::ScrollWindow method.
16078         - Factor in height of nodes when calculating whether or not the
16079         node is in the clipping rect.
16080
16081 2005-01-10  Jackson Harper  <jackson@ximian.com>
16082
16083         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16084
16085 2005-01-10  Peter Bartok  <pbartok@novell.com>
16086
16087         * Application.cs: Added temporary hack to resolve all our resize
16088           required issues on startup. This will get fixed properly at
16089           some point in the future
16090
16091 2005-01-10  Jackson Harper  <jackson@ximian.com>
16092
16093         * SizeGrip.cs: New internal class that is used as a sizing
16094         grip control...hence the name.
16095
16096 2005-01-10  Peter Bartok  <pbartok@novell.com>
16097
16098         * Control.cs: Implemented proper TabIndex handling, now assigning
16099           a tabindex when a control is added to a container
16100         * GroupBox.cs (ctor): Now sets the Container style bit, required
16101           for Control.GetNextControl()
16102
16103 2005-01-09  Jackson Harper  <jackson@ximian.com>
16104
16105         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16106
16107 2005-01-09  Peter Bartok <pbartok@novell.com>
16108
16109         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16110           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16111           an overload for ScrollWindow to allow only scrolling a rectangle
16112
16113 2005-01-09  Peter Bartok <pbartok@novell.com>
16114
16115         * Form.cs:
16116           - Implemented SetDesktopBounds method
16117           - Implemented SetDesktopLocation method
16118
16119 2005-01-08  Jackson Harper  <jackson@ximian.com>
16120
16121         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16122         the node count has changed, this removes to VScroll::Refresh calls
16123         when drawing.
16124
16125 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16126
16127         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16128
16129 2005-01-07  Jackson Harper  <jackson@ximian.com>
16130
16131         * TreeNode.cs: Just update the single node when it is
16132         checked. Don't refresh after toggling, the Expand/Collapse already
16133         handles this.
16134         * TreeView.cs: Respect clipping a little more when drawing. Try
16135         not to redraw things that don't need to be redrawn. Just hide the
16136         scrollbars when they are no longer needed instead of removing
16137         them, so they don't have to be created again and again.
16138         
16139 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16140
16141         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16142         coordinates to window space to place the caret properly, FIXED.
16143         Implement GetWindowState & SetWindowState
16144
16145 2005-01-06  Peter Bartok <pbartok@novell.com>
16146
16147         * Form.cs:
16148           - Implemented ClientSize property
16149           - Implemented DesktopBounds property
16150           - Implemented DesktopLocation property
16151           - Implemented IsRestrictedWindow property
16152           - Implemented Size property
16153           - Implemented TopLevel property
16154           - Implemented FormWindowState property
16155         * Control.cs:
16156           - Implemented GetTopLevel() method
16157           - Implemented SetTopLevel() method
16158         * X11Structs.cs (Atom):
16159           - Added AnyPropertyType definition
16160           - Added MapState definiton and updated XWindowAttribute struct
16161         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16162         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16163         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16164         * XplatUIWin32.cs:
16165           - Implemented GetWindowState() and SetWindowState() methods
16166           - Fixed Win32GetWindowLong return type
16167         * XplatUIX11.cs:
16168           - Introduced central function for sending NET_WM messages
16169           - Implemented GetWindowState() and SetWindowState() methods
16170         * TextBoxBase.cs (set_Lines):
16171           - Now uses Foreground color for text added via Text property (Duh!)
16172           - Added code to remember programmatically requested size (fixes
16173             behaviour when Multiline is set after Size)
16174           - Added AutoSize logic
16175
16176 2005-01-06  Jackson Harper  <jackson@ximian.com>
16177
16178         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16179
16180 2005-01-06  Jackson Harper  <jackson@ximian.com>
16181
16182         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16183         set to less then 0.
16184
16185 2005-01-06  Jackson Harper  <jackson@ximian.com>
16186
16187         * ScrollableControl.cs: Lazy init the scrollbars.
16188         
16189 2005-01-06  Jackson Harper  <jackson@ximian.com>
16190
16191         * Theme.cs: Speed up getting pens and solid brushes, by using
16192         their ARGB as a hash instead of tostring and not calling Contains.
16193
16194 2005-01-06  Peter Bartok <pbartok@novell.com>
16195
16196         * Form.cs:
16197           - Implemented OnActivated and OnDeactivate event trigger
16198           - Implemented Activate() method
16199           - Fixed ShowDialog() to activate the form that was active before
16200             the dialog was shown
16201         * XplatUIX11.cs:
16202           - Added global active_window var that tracks the currently active
16203             X11 window
16204           - Now always grabs Property changes from the root window to always
16205             catch changes on the active window property
16206           - Added code to PropertyNotify handler to send Active/Inactive
16207             messages when state changes. This puts X11 and Win32 en par on
16208             WM_ACTIVATE notifications (except for double notifications when
16209             the user clicks away from our modal window to another one of our
16210             windows)
16211
16212 2005-01-05  Jackson Harper  <jackson@ximian.com>
16213
16214         * ImageList.cs: Implment ctor
16215
16216 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16217
16218         * XplatUIOSX.cs: Implement Activate/SetTopmost
16219
16220 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16221
16222         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16223
16224 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16225
16226         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16227
16228 2005-01-05  Peter Bartok <pbartok@novell.com>
16229
16230         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16231           XplatUIOSX.cs: Added GetActive method to return the currently
16232           active window for the application (or null, if none is active)
16233         * Form.cs:
16234           - Implemented ActiveForm
16235           - Commented out owner assignment for modal dialogs (causes problems
16236             on Win32, since the owner will be disabled)
16237           - Reworked some Active/Focus handling (still incomplete)
16238         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16239           (causes problems on Win32, since the owner will be disabled)
16240         * IWin32Window: Added ComVisible attribute
16241
16242 2005-01-05  Peter Bartok <pbartok@novell.com>
16243
16244         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16245           required XplatUI functions.
16246
16247 2005-01-05  Peter Bartok <pbartok@novell.com>
16248
16249         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16250           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16251           to implement focus and activation handling; still incomplete and
16252           with debug output
16253
16254 2005-01-04  Peter Bartok <pbartok@novell.com>
16255
16256         * TextBoxBase.cs: Changed access level for Document property to
16257           match switch to internal for TextControl
16258
16259 2005-01-04  Peter Bartok <pbartok@novell.com>
16260
16261         * AccessibleObject: Added ComVisible attribute
16262
16263 2005-01-04  Jackson Harper  <jackson@ximian.com>
16264
16265         * X11Keyboard.cs: Remove unneeded var.
16266
16267 2005-01-04  Jackson Harper  <jackson@ximian.com>
16268
16269         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16270         but PAINT.
16271         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16272         ClientMessage. This makes apps exit cleanly (more often).
16273         
16274 2005-01-04  Jackson Harper  <jackson@ximian.com>
16275
16276         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16277         handling focus, return correct colors and fonts,
16278         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16279         handle selection, horizontal scrolling, and mouse interaction.
16280
16281 2005-01-04  Peter Bartok <pbartok@novell.com>
16282
16283         * ICommandExecutor.cs: Added
16284         * IDataGridColumnStyleEditingNotificationService.cs: Added
16285         * IFeatureSupport.cs: Added
16286         * IFileReaderService.cs: Added
16287         * IDataObject.cs: Added ComVisible attribute
16288         * AmbientProperties.cs: Added
16289         * BaseCollection.cs: Added missing attributes
16290         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16291         * BaseCollection.cs: Added missing attributes
16292         * Binding.cs: Added TypeConverter attribute
16293         * BindingContext.cs: Added DefaultEvent attribute
16294         * BindingsCollection.cs: Added DefaultEvent attribute
16295         * Button.cs: Added DefaultValue attribute
16296         * DragEventArgs.cs: Added ComVisible attribute
16297         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16298         * KeyEventArgs.cs: Added ComVisible attribute
16299         * KeyPressEventArgs.cs: Added ComVisible attribute
16300         * MouseEventArgs.cs: Added ComVisible attribute
16301         * NavigateEventArgs.cs: Added
16302         * NavigateEventHandler.cs: Added
16303         * FeatureSupport.cs: Added
16304         * OSFeature.cs: Added
16305         * Theme.cs: Added abstract Version property to support OSFeature
16306         * ThemeWin32Classic.cs: Added Version property to
16307           support OSFeature.Themes
16308         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16309           the proper styles to avoid background drawing are set, also doesn't
16310           match MS signature
16311         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16312         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16313         * ScrollEventArgs.cs: Added ComVisible attribute
16314         * SplitterEventArgs.cs: Added ComVisible attribute
16315         * AccessibleSelection.cs: Added Flags attribute
16316         * Appearance.cs: Added ComVisible attribute
16317         * Border3DSide.cs: Added ComVisible attribute
16318         * Border3DStyle.cs: Added ComVisible attribute
16319         * BorderStyle.cs: Added ComVisible attribute
16320         * DragAction.cs: Added ComVisible attribute
16321         * ErrorBlinkStyle.cs: Added
16322         * ScrollEventType.cs: Added ComVisible attribute
16323         * AnchorStyles.cs: Added Editor attribute
16324         * DockStyle.cs: Added Editor attribute
16325         * HorizontalAlignment.cs: Added ComVisible attribute
16326         * HelpEventArgs.cs: Added ComVisible attribute
16327         * PaintEventArgs.cs: Added IDisposable
16328
16329 2005-01-04  Peter Bartok <pbartok@novell.com>
16330
16331         * TextControl.cs: Switched Line, LineTag and Document classes to
16332           internal
16333
16334 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16335
16336         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16337         Simple mode, fixes, IntegralHeight, etc.
16338
16339 2005-01-04  Peter Bartok <pbartok@novell.com>
16340
16341         * TextBoxBase.cs: Using proper font variable now
16342
16343 2005-01-04  Peter Bartok <pbartok@novell.com>
16344
16345         * Form.cs (ShowDialog): Set parent to owner, if provided
16346         * GroupBox.cs: Removed unused vars
16347         * TextControl.cs:
16348           - Added GetHashCode() for Document and LineTag classes
16349           - Removed unused variables
16350           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16351             to allow translation between continuous char position and line/pos
16352         * CheckBox.cs: Removed vars that are provided by base class
16353         * RadioButton.cs: Removed vars that are provided by base class, added
16354           new keyword where required
16355         * LinkLabel.cs: Added new keyword where required
16356         * Control.cs (WndProc): Removed unused variable
16357         * TextBoxBase.cs:
16358           - Finished SelectionLength property
16359           - Implemented SelectionStart property
16360           - Implemented Text property
16361           - Removed unused vars
16362         * MessageBox.cs: Added new keyword where required
16363         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16364           WndProc signature
16365         * MenuAPI.cs: Added new keyword where required
16366         * ButtonBase.cs: Removed vars that are provided by base class, added
16367           new keyword where required
16368         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16369           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16370           into this)
16371         * Application.cs (Run): Now triggers the ThreadExit event
16372         * CommonDialog.cs: Added new keyword where required; now properly sets
16373           parent (owner) for dialog
16374         * XplatUIX11.cs: Commented out unused vars
16375         * StatusBar.cs: Fixed signature for Text property
16376         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16377
16378 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16379
16380         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16381         TrackBar.cs, MonthCalendar.cs: remove unused vars
16382
16383 2005-01-03  Jackson Harper  <jackson@ximian.com>
16384
16385         * ThemeWin32Classic.cs:
16386         * X11Keyboard.cs: Remove unused vars.
16387
16388 2005-01-03  Peter Bartok  <pbartok@novell.com>
16389
16390         * TextBox.cs:
16391           - set_Text: Tied into TextControl
16392           - set_TextAlignment: Tied into TextControl
16393         * TextControl.cs:
16394           - Added alignment properties and implemented alignment handling
16395             and drawing (still has a bug, not generating proper expose events)
16396           - Added new Line() constructor to allow passing the line alignment
16397           - Fixed selection setting, properly handling end<start now
16398           - Added aligment considerations to RecalculateDocument()
16399         * TextBoxBase.cs:
16400           - Now properly enforces control height for single line controls
16401           - Added support for CharacterCasing
16402           - Added IsInputKey override
16403           - Fixed Keys.Enter logic
16404           - Added SetBoundsCore override
16405           - Fixed mouse selection handling
16406
16407 2005-01-03  Jackson Harper  <jackson@ximian.com>
16408
16409         * TreeView.cs:
16410           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16411           - Checkboxes are always aligned to the bottom of the node,
16412           regardless of item height.
16413           - Use the node bounds to draw the text so we can center it when
16414           the item height is greater then the font height.
16415           - Node::Bounds are only the text part of the node.
16416         * TreeNode.cs: New method to combine collapsing and unchecking all
16417           nodes recursively.
16418
16419 2005-01-02  Jackson Harper  <jackson@ximian.com>
16420
16421         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16422         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16423         tree when a check is changed. TODO: Only refresh the checked node.
16424
16425 2004-12-30  Jackson Harper  <jackson@ximian.com>
16426
16427         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16428         * TreeNode.cs: When collapsing make sure to never collapse the
16429         root node.
16430
16431 2004-12-29  Jackson Harper  <jackson@ximian.com>
16432
16433         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16434         
16435 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16436
16437         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16438
16439 2004-12-28  Peter Bartok  <pbartok@novell.com>
16440
16441         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16442           not yet assigned
16443
16444 2004-12-28  Peter Bartok  <pbartok@novell.com>
16445
16446         * Control.cs (WndProc): Added WM_HELP handler, now generates
16447           HelpRequested event
16448         * Form.cs: Added HelpButton property and required support code
16449         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16450
16451 2004-12-28  Peter Bartok  <pbartok@novell.com>
16452
16453         * CommonDialog.cs:
16454           - Made DialogForm.owner variable internal
16455           - Added check to ensure owner form is set before setting
16456             owner properties in CreateParams
16457
16458 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16459
16460         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16461           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16462           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16463           system to support borderless/titleless windows (implements menus).
16464           Fix GetWindowPos.  Implement initial background color support for
16465           views.
16466
16467 2004-12-28  Peter Bartok  <pbartok@novell.com>
16468
16469         * Form.cs (get_CreateParams): Make sure we have an owner before using
16470           the owner variable. Implement proper default if no owner exists
16471
16472 2004-12-28  Peter Bartok  <pbartok@novell.com>
16473
16474         * In preparation for making Managed.Windows.Forms the default build target
16475           for System.Windows.Forms, the following stubbed files were added.
16476           Dialogs are currently being implemented by contributors and are only
16477           short-term place holders.
16478         * ColorDialog.cs: Initial check-in (minmal stub)
16479         * DataGrid.cs: Initial check-in (minimal stub)
16480         * DataGridLineStyle.cs: Initial check-in (minimal stub)
16481         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
16482         * DataGridTableStyle.cs: Initial check-in (minimal stub)
16483         * FontDialog.cs: Initial check-in (minimal stub)
16484         * FileDialog.cs: Initial check-in (minimal stub)
16485         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16486         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16487         * OpenFileDialog: Initial check-in (minimal stub)
16488         * IComponentEditorPageSite.cs: Initial check-in
16489         * Splitter.cs: Initial check-in (for Jackson)
16490         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16491         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16492         * TextBox.cs: Initial check-in; still needs some wiring to
16493           TextControl backend
16494         * Form.cs: Implemented ControlBox property
16495         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16496         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16497         * TextControl.cs: Added selection functionality; added todo header
16498         * TextBoxBase.cs:
16499           - Implemented Lines property
16500           - Implemented TextHeight property
16501           - Implemented SelectedText property
16502           - Implemented SelectionLength property
16503           - Implemented SelectAll method
16504           - Implemented ToString method
16505           - Removed and cleaned up some debug code
16506           - Implemented (still buggy) mouse text selection
16507
16508 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16509
16510         * ComboBox.cs: Complete DropDownList implementation, fixes.
16511
16512 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
16513
16514         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
16515         * ComboBoxStyle.cs: ComboBoxStyle enum
16516         * ComboBox.cs: Initial work on ComboBox control
16517
16518 2004-12-21  Peter Bartok  <pbartok@novell.com>
16519
16520         * Control.cs (ctor, CreateParams): Moved setting of is_visible
16521           forward so that anything that creates a window gets the default,
16522           also no longer uses Visible property in CreateParams to avoid
16523           walking up the parent chain and possibly get the wrong visible
16524           status. Fixed IsVisible to no longer walk up to the parent.
16525
16526 2004-12-21  Peter Bartok  <pbartok@novell.com>
16527
16528         * Form.cs (ShowDialog): Unset modality for the proper window
16529  
16530 2004-12-20  Peter Bartok  <pbartok@novell.com>
16531
16532         * CommonDialog.cs: Initial check-in
16533
16534 2004-12-20  Peter Bartok  <pbartok@novell.com>
16535
16536         * Control.cs (Visible): Now uses the parent window instead of the
16537           client area window for the property
16538
16539         * Form.cs
16540           - ShowDialog(): Now uses the proper window for modality
16541           - The default visibility state for the form parent is now false. This
16542             will prevent the user from seeing all the changes to the form and
16543             its controls before the application hits Application.Run()
16544           - Removed some stale commented out code
16545
16546         * NativeWindow.cs:
16547           - Added FindWindow() method to have a method to check for existence
16548             of a window handle
16549           - Added ability to override default exception handling (for example
16550             when debugging with VS.Net; to do this the ExternalExceptionHandler
16551             define must be set
16552           - Removed some useless debug output
16553
16554         * XplatUIX11.cs:
16555           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
16556             not working as expected
16557           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
16558             property to allow switching back to the modal window if focus is
16559             given to another one of our windows (Application Modal)
16560           - Now only sets override_redirect if we create a window
16561             without WS_CAPTION
16562           - Moved EventMask selection before mapping of newly created window
16563             so we can catch the map event as well
16564           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
16565           - Added various Atom related DllImports
16566           - Implemented Exit() method
16567           - .ctor() : No longer shows window if WS_VISIBLE is not defined
16568             in the CreateParams
16569
16570         * MessageBox.cs: Now properly deals with the FormParent window by
16571           providing an override the FormParent CreateParams property to
16572           set as POPUP instead of OVERLAPPED window.
16573
16574 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16575
16576         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
16577         Minor code cleanup.
16578
16579 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16580         
16581         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
16582
16583 2004-12-18  Peter Bartok  <pbartok@novell.com>
16584
16585         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
16586           implementing SetModal() method
16587
16588 2004-12-18  Peter Bartok  <pbartok@novell.com>
16589
16590         * X11Structs.cs (XGCValues): Fixed type of function element
16591         * XplatUI.cs: Added ScrollWindow() method
16592         * XplatUIDriver.cs: Added ScrollWindow() abstract
16593         * XplatUIWin32.cs: Implemented ScrollWindow() method
16594         * XplatUIX11.cs: Implemented ScrollWindow() method
16595         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
16596
16597 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16598
16599         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
16600         Some more keyboard support (INCOMPLETE)
16601
16602 2004-12-17  Peter Bartok  <pbartok@novell.com>
16603
16604         * TextControl.cs:
16605         - Added color attribute to line tags.
16606         - Added color argument to all functions dealing with tags
16607         - Added color argument support to various functions
16608         - Fixed miss-calculation of baseline/shift in certain circumstances
16609
16610         * TextBoxBase.cs: Added new color option to test code
16611
16612 2004-12-17  Jackson Harper  <jackson@ximian.com>
16613
16614         * TreeNode.cs:
16615         * MonthCalendar.cs: Signature fixes
16616
16617 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16618
16619         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
16620         keyboard event moved it.  Create a new graphics context for each paint resolves this
16621
16622 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16623
16624         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
16625         Make caret exist and go blink blink.  Initial keyboard support.
16626         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
16627         works.
16628
16629 2004-12-17  Jackson Harper  <jackson@ximian.com>
16630
16631         * XplatUIStructs.cs: Updated set of virtual keycodes.
16632         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
16633
16634 2004-12-17  Jackson Harper  <jackson@ximian.com>
16635
16636         * XplatUIX11.cs: Prune old keyboard code.
16637
16638 2004-12-17  Jackson Harper  <jackson@ximian.com>
16639
16640         * XplatUIX11.cs: When generating mouse wparams get the modifier
16641         keys from the ModifierKeys property.
16642
16643 2004-12-17  Jackson Harper  <jackson@ximian.com>
16644
16645         * X11Keyboard.cs: Send up/down input when generating
16646         messages. Remove some unused vars.
16647
16648 2004-12-17  Jackson Harper  <jackson@ximian.com>
16649
16650         * TabControl.cs:
16651         * TreeView.cs: get rid of warnings.
16652
16653 2004-12-17  Jackson Harper  <jackson@ximian.com>
16654
16655         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
16656
16657 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
16658
16659         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
16660           CheckedListBox.cs: Implementation
16661
16662 2004-12-17  Peter Bartok  <pbartok@novell.com>
16663
16664         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
16665
16666 2004-12-16  Peter Bartok  <pbartok@novell.com>
16667
16668         * TextControl.cs:
16669           - InsertCharAtCaret(): Fixed start pos fixup
16670           - CaretLine_get: No longer derives the line from the tag, the tag
16671             could be stale if lines in the document have been added or deleted
16672           - RebalanceAfterDelete(): Fixed bug in balancing code
16673           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
16674           - Line.Streamline(): Now can also elminate leading empty tags
16675           - DumpTree(): Added a few more tests and prevented exception on
16676             uninitialized data
16677           - Added Debug section for Combining lines
16678           - Delete(): Now copies all remaining properties of a line
16679           
16680         * TextBoxBase.cs:
16681           - Left mousebutton now sets the caret (and middle button still acts
16682             as formatting tester, which must go away soon)
16683           - Added Debug section for Deleting/Combining lines
16684           - Fixed calculations for UpdateView after Combining lines
16685
16686 2004-12-16  Peter Bartok  <pbartok@novell.com>
16687
16688         * TextControl.cs: Now properly aligns text on a baseline, using the
16689           new XplatUI.GetFontMetrics() method. Simplified several calculations
16690         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
16691           defined
16692
16693 2004-12-16  Peter Bartok  <pbartok@novell.com>
16694
16695         * XplatUI.cs: Added GetFontMetrics() method
16696         * XplatUIDriver.cs: Added GetFontMetrics() abstract
16697         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
16698           into libgdiplus, our private GetFontMetrics function
16699         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
16700         * XplatUIWin32.cs: Implemented GetFontMetrics() method
16701
16702 2004-12-16  Jackson Harper  <jackson@ximain.com>
16703
16704         * XplatUIStruct.cs: Add enum for dead keys
16705         * X11Keyboard.cs: Map and unmap dead keys.
16706
16707 2004-12-16  Jackson Harper  <jackson@ximian.com>
16708
16709         * X11Keyboard.cs: Detect and use the num lock mask.
16710
16711 2004-12-16  Peter Bartok  <pbartok@novell.com>
16712
16713         * Control.cs (CreateGraphics): Added check to make sure the
16714           handle of the window exists before calling Graphics.FromHwnd()
16715
16716 2004-12-16  Peter Bartok  <pbartok@novell.com>
16717
16718         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
16719           contains a lot of code that's not supposed to be there for the
16720           real thing, but required for developing/testing the textbox
16721           backend.
16722
16723 2004-12-16  Peter Bartok  <pbartok@novell.com>
16724
16725         * TextControl.cs:
16726         - Fixed Streamline method
16727         - Added FindTag method to Line
16728         - Added DumpTree method for debugging
16729         - Added DecrementLines() method for deleting lines
16730         - Fixed UpdateView to update the cursor to end-of-line on single-line
16731           updates
16732         - Added PositionCaret() method
16733         - Fixed MoveCaret(LineDown) to move into the last line, too
16734         - Added InsertChar overload
16735         - Fixed InsertChar tag offset calculations
16736         - Added DeleteChar() method
16737         - Added Combine() method for folding lines
16738         - Fixed Delete() method, no longer allocates wasted Line object and
16739           now copies all properties when swapping nodes
16740         - Delete() method now updates document line counter
16741
16742 2004-12-15  Jackson Harper  <jackson@ximian.com>
16743
16744         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
16745         * X11Keyboard.cs: Expose the currently selected modifier keys
16746         through a property.
16747
16748 2004-12-15  Peter Bartok  <pbartok@novell.com>
16749
16750         * TextControl.cs: Initial check-in. Still incomplete
16751
16752 2004-12-15  Jackson Harper  <jackson@ximian.com>
16753
16754         * TreeNode.cs:
16755         * TreeView.cs: Fix build on csc (second time today ;-))
16756
16757 2004-12-15  Jackson Harper  <jackson@ximian.com>
16758
16759         * TreeView.cs: Store the treenodes plus/minus box bounds when it
16760         is calculated and use this for click testing.
16761         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
16762
16763 2004-12-15  Jackson Harper  <jackson@ximian.com>
16764
16765         * TreeView.cs: Pass the nodes image index to the image list when
16766         drawing that image.
16767
16768 2004-12-15  Jackson Harper  <jackson@ximian.com>
16769
16770         * X11Keyboard.cs: Set messages hwnd.
16771         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
16772         post_message calls.
16773
16774 2004-12-15  Jackson Harper  <jackson@ximian.com>
16775
16776         * X11Keyboard.cs: Fix to compile with csc.
16777         
16778 2004-12-15  Jackson Harper  <jackson@ximian.com>
16779
16780         * X11Structs.cs: Add key mask values
16781         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
16782         * X11Keyboard.cs: New file - Extrapolates and interpolates key
16783         down/up foo into WM_CHAR foo
16784         * KeyboardLayouts.cs: Common keyboard layouts
16785         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
16786         post messages into the main queue.
16787
16788 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
16789
16790         * Button.cs: implement ProcessMnemonic
16791         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
16792           brushes everytime
16793         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
16794         * ButtonBase.cs: Show HotkeyPrefix (not the &)
16795
16796 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
16797         
16798         * MonthCalendar.cs: Implemented click-hold for next/previous month
16799           and date selection
16800           
16801 2004-12-11  Peter Bartok  <pbartok@novell.com>
16802
16803         * X11Structs.cs:
16804           - Added XKeyboardState (moved from XplatUIX11.cs)
16805           - Added XCreateGC related enums and structures
16806           - Added GXFunction for XSetFunction
16807
16808         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
16809
16810         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
16811           CaretVisible() calls
16812
16813         * ToolTip.cs: Added code to prevent stealing focus from app windows
16814
16815         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
16816           DestroyCaret, SetCaretPos and CaretVisible)
16817
16818         * XplatUIX11.cs:
16819           - Added implementation for caret functions
16820           - Moved hover variables into a struct, to make it a bit easier
16821             on the eyes and to debug
16822           - Removed XKeyboardState (moved to XplatUIX11.cs)
16823           - Moved Keyboard properties into the properties region
16824
16825         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
16826           call to get a graphics context for our control
16827
16828         * XplatUIOSX.cs: Added empty overrides for the new caret functions
16829
16830         * TreeView.cs: Fixed bug. No matter what color was set it would always
16831           return SystemColors.Window
16832
16833         * XplatUIWin32.cs: Implemented caret overrides
16834
16835 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
16836
16837         * ListBox.cs: fire events, implement missing methods and properties,
16838         sorting.
16839
16840 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
16841
16842         * MonthCalendar.cs: invalidation bug fixing
16843         * ThemeWin32Classic.cs: paint fixing
16844
16845 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
16846
16847         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
16848         prepare the CGContextRef there now.
16849
16850 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
16851
16852         * MonthCalendar.cs:
16853           - optimisationL only invalidate areas that have changed
16854         * ThemeWin32Classic.cs:
16855           - only paint parts that intersect with clip_area
16856
16857 2004-12-09  Peter Bartok  <pbartok@novell.com>
16858
16859         * Application.cs: Undid changes from r37004 which cause problems
16860         on X11
16861
16862 2004-12-09  Ravindra  <rkumar@novell.com>
16863
16864         * ToolBar.cs: Added support for displaying ContextMenu
16865         attached to a button on ToolBar.
16866         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
16867         property.
16868
16869 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16870
16871         * Label.cs: autosize works in text change and removes unnecessary
16872         invalidate
16873
16874 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16875
16876         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16877         remove warnings
16878
16879 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
16880
16881         * XplatUIOSX.cs: Added mouse move/click/grab support
16882         Remove some debugging WriteLines not needed anymore.
16883         Add window resizing/positioning.
16884         Fix visibility on reparenting.
16885
16886 2004-12-08  Peter Bartok  <pbartok@novell.com>
16887
16888         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
16889
16890 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
16891
16892         * XplatUIOSX.cs: Initial checkin
16893         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
16894
16895 2004-12-03  Ravindra <rkumar@novell.com>
16896
16897         * ListView.cs: Added some keybindings and fixed scrolling.
16898         ScrollBars listen to ValueChanged event instead of Scroll
16899         Event. This would let us take care of all changes being
16900         done in the scrollbars' values programmatically or manually.
16901         * ListView.cs (CanMultiselect): Added a check for shift key.
16902         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
16903         * ListViewItem.cs (Clone): Fixed. We need to make a copy
16904         of ListViewSubItemCollection as well.
16905
16906 2004-12-06  Peter Bartok <pbartok@novell.com>
16907
16908         * Control.cs (Parent): Added check and exception to prevent
16909         circular parenting
16910
16911 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
16912
16913         * ListBox.cs: implemented clipping, selection single and multiple,
16914         bug fixing
16915
16916 2004-12-03  Ravindra <rkumar@novell.com>
16917
16918         * ListView.cs (ListView_KeyDown):
16919         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
16920         when CTRL key is pressed.
16921         * ListViewItem.cs (Selected): Fixed setting the property.
16922
16923 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16924
16925         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
16926
16927         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
16928         MinimizeBox, ShowInTaskbar, TopMost properties.
16929
16930         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
16931         will be implemented).
16932
16933 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16934
16935         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
16936
16937         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
16938         tests.
16939         
16940         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
16941         
16942         * TreeView.cs: BackColor is Colors.Window.
16943
16944 2004-12-01  Jackson Harper  <jackson@ximian.com>
16945
16946         * TreeView.cs: When resizing the tree if the user is making it
16947         smaller we don't get expose events, so we need to handle adding
16948         the horizontal scrollbar in the size changed handler as well as
16949         the expose handler.
16950
16951 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
16952
16953         * DrawItemState.cs: fixes wrong enum values
16954
16955 2004-12-01  Jackson Harper  <jackson@ximian.com>
16956
16957         * TreeView.cs: Resize the hbar as well as the vbar on resize.
16958
16959 2004-12-01  Jackson Harper  <jackson@ximian.com>
16960
16961         * NodeLabelEditEventArgs.cs:
16962         * NodeLabelEditEventHandler.cs:
16963         * OpenTreeNodeEnumerator.cs:
16964         * TreeNode.cs:
16965         * TreeNodeCollection.cs:
16966         * TreeView.cs:
16967         * TreeViewAction.cs:
16968         * TreeViewCancelEventArgs.cs:
16969         * TreeViewCancelEventHandler.cs:
16970         * TreeViewEventArgs.cs:
16971         * TreeViewEventHandler.cs: Initial implementation.
16972
16973 2004-12-01  Ravindra <rkumar@novell.com>
16974
16975         * ListView.cs (CalculateListView): Fixed scrolling related
16976         calculations. Also, removed some debug statements from other
16977         places.
16978         * ListViewItem.cs: Changed access to 'selected' instance variable
16979         from private to internal.
16980         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
16981
16982 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
16983
16984         * ThemeWin32Classic.cs: remove cache of brush and pens for
16985         specific controls and use the global system, fixes scrollbutton
16986         bugs (for small sizes, disabled, etc)
16987         
16988         * ScrollBar.cs: does not show the thumb for very small controls
16989         (as MS) and allow smaller buttons that the regular size
16990
16991 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
16992
16993         * UpDownBase.cs: Add abstract methods for the interface.
16994         Add new virtual methods (need to be hooked up to TextEntry when it
16995         exists).
16996         Add override methods for most features.
16997         Computes the size, forces the height of the text entry.
16998
16999         * NumericUpDown.cs: Put here the current testing code.
17000
17001         * Set eol-style property on all files that do not have mixed line
17002         endings, to minimize the future problems.  There are still a few
17003         files with mixed endings, and someone should choose whether they
17004         want to move it or not.
17005
17006 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17007
17008         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17009         System.Colors
17010         
17011 2004-11-30  Ravindra <rkumar@novell.com>
17012
17013         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17014         drawing and replaced use of SystemColors by theme colors.
17015         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17016         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17017         same ListViewItem is being added more than once.
17018
17019 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17020
17021         * MonthCalendar.cs:
17022           - ControlStyles love to make the control not flicker
17023           
17024 2004-11-30  Peter Bartok  <pbartok@novell.com>
17025
17026         * CharacterCasing.cs: Added
17027
17028 2004-11-29  Peter Bartok  <pbartok@novell.com>
17029
17030         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17031           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17032           I am removing these files as they conflict with already completed
17033           work. While it is fantastic to get contributions to MWF, I
17034           respectfully ask that everyone please coordinate their contributions
17035           through mono-winforms-list or #mono-winforms at this time. We're
17036           explicitly avoiding stubbing and don't want controls that don't have
17037           their basic functionality implemented in svn. Please also see
17038           http://www.mono-project.com/contributing/winforms.html
17039
17040
17041 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17042
17043         * Application.cs (ModalRun): Don't hang after exit.
17044
17045         * Theme.cs: New TreeViewDefaultSize property.
17046
17047         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17048         with less hardcoded SystemColors constant.
17049         Implemented TreeViewDefaultSize.
17050
17051         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17052         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17053
17054
17055 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17056
17057         * MonthCalendar.cs:
17058           - Fix NextMonthDate and PrevMonthDate click moving calendar
17059
17060 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17061
17062         * MonthCalendar.cs:
17063           - Fix usage of ScrollChange Property when scrolling months
17064
17065 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17066
17067         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17068          - Fixes menu destroying
17069          - Support adding and removing items on already created menus
17070
17071 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17072
17073         * MonthCalendar.cs:
17074           - Re-worked all bolded dates handling to match win32
17075         * ThemeWin32Classic.cs:
17076           - Fixed rendering with bolded dates
17077
17078 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17079
17080         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17081         - Horizontal scroolbar
17082         - Multicolumn
17083         - Fixes
17084
17085
17086 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17087
17088         * MonthCalendar.cs:
17089           - Fix Usage of MaxSelectionCount from SelectionRange
17090           - Fixed Shift + Cursor Selection
17091           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17092           - Fixed normal cursor selection to be compat with win32
17093           - Fixed Shift + Mouse Click selection
17094
17095 2004-11-24  Peter Bartok <pbartok@novell.com>
17096
17097         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17098         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17099         * XplatUIX11.cs:
17100           - CreatedKeyBoardMsg now updates keystate with Alt key
17101           - Added workaround for timer crash to CheckTimers, Jackson will
17102             develop a proper fix and check in later
17103           - Implemented DispatchMessage
17104           - Removed calling the native window proc from GetMessage (call
17105             now moved to DispatchMessage)
17106
17107         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17108           the keydata (Fixes bug #69831)
17109
17110         * XplatUIWin32.cs:
17111           - (DispatchMessage): Switched to return IntPtr
17112           - Added DllImport for SetFocus
17113
17114 2004-11-24  Ravindra <rkumar@novell.com>
17115
17116         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17117         background drawing.
17118         * ListViewItem.cs: Fixed various properties, calculations
17119         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17120         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17121         and some internal properties. Fixed MouseDown handler and Paint
17122         method.
17123
17124 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17125
17126         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17127
17128 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17129
17130         * ContainerControl.cs: correct accidental check in of local changes
17131
17132 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17133
17134         * ThemeWin32Classic.cs:
17135                 - Fixed Drawing Last month in grid (sometimes not showing)
17136         * MonthCalendar.cs:
17137                 - Fixed title width calculation bug (makeing title small)
17138
17139 2004-11-23  Peter Bartok <pbartok@novell.com>
17140
17141         * XplatUIX11.cs:
17142           - Added generation of WM_MOUSEHOVER event
17143           - Added missing assignment of async_method atom
17144           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17145
17146 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17147
17148         * ThemeWin32Classic.cs:
17149                 - Fixed Drawing of today circle when showtodaycircle not set
17150                 - fixed drawing of first and last month in the grid (gay dates)
17151         * MonthCalendar.cs:
17152                 - Fixed Drawing of today circle
17153                 - Fixed drawing of grady dates
17154                 - Fixed HitTest for today link when ShowToday set to false
17155                 - Fixed DefaultSize to obey ShowToday
17156
17157 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17158
17159         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17160         * System.Windows.Forms/Theme.cs
17161         * MonthCalendar.cs: added for MonthCalendar
17162         * SelectionRange.cs: added for MonthCalendar
17163         * Day.cs: added for MonthCalendar: added for MonthCalendar
17164         * DateRangeEventArgs.cs: added for MonthCalendar
17165         * DateRangeEventHandler.cs: added for MonthCalendar
17166
17167 2004-11-22  Ravindra <rkumar@novell.com>
17168
17169         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17170         property.
17171
17172 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17173
17174         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17175         event handler.
17176         
17177         * NumericUpDown.cs: Added new implementation.
17178         * UpDownBase.cs: Added new implementation.
17179
17180         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17181         implementations.
17182         
17183         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17184         implementations.
17185
17186         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17187         methods.
17188
17189 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17190
17191         * Timer.cs  (Dispose): Should call the base dispose when
17192         overriding.
17193
17194 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17195
17196         * ScrollBar.cs: updates thumb position when max, min or increment
17197         is changed
17198
17199 2004-11-21  Ravindra <rkumar@novell.com>
17200
17201         * ListView.cs: Implemented item selection, activation and
17202         column header style. Fixed properties to do a redraw, if
17203         required. Added support for MouseHover, DoubleClick, KeyDown
17204         and KeyUp event handling and some minor fixes.
17205         * ListViewItem.cs: Fixed constructor.
17206         * ThemeWin32Classic.cs: Improved drawing for ListView.
17207
17208 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17209
17210         * ThemeWin32Classic.cs: initial listbox drawing code
17211         * DrawMode.cs: new enumerator
17212         * ListControl.cs: stubbed class
17213         * ListBox.cs: initial implementation
17214         * Theme.cs: new methods definitions
17215         * SelectionMode.cs: new enumerator
17216
17217 2004-11-17  Peter Bartok  <pbartok@novell.com>
17218
17219         * XplatUIWin32.cs: Added double-click events to the class style
17220         * Control.cs (WndProc):
17221           - Added handling of click-count to MouseDown/ MouseUp events.
17222           - Added handling of middle and right mouse buttons
17223           - Removed old debug code
17224
17225 2004-11-17  Jackson Harper  <jackson@ximian.com>
17226
17227         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17228
17229 2004-11-17  Ravindra <rkumar@novell.com>
17230
17231         * ListView.cs: Added event handling for MouseMove/Up/Down.
17232         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17233         * ThemeWin32Classic.cs: We need to clear the graphics context and
17234         draw column header in a proper state.
17235
17236
17237 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17238
17239         *  Menu.cs: fixes signature
17240
17241 2004-11-16  Peter Bartok  <pbartok@novell.com>
17242
17243         * XplatUIX11.cs (GetMessage): Implemented generation of
17244           double click mouse messages
17245
17246 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17247
17248         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17249         not by menu
17250
17251 2004-11-11  Peter Bartok  <pbartok@novell.com>
17252
17253         * HandleData.cs: Added Visible property
17254         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17255           HandleData
17256         * XplatUIX11.cs: Removed old debug leftovers
17257         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17258         * Control.cs (WndProc): Removed old debug leftovers,
17259           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17260           needed WM_SIZE handling
17261
17262 2004-11-11  Jackson Harper  <jackson@ximian.com>
17263
17264         * OwnerDrawPropertyBag.cs:
17265         * TreeViewImageIndexConverter.cs: Initial implementation
17266
17267 2004-11-10  Jackson Harper  <jackson@ximian.com>
17268
17269         * ThemeWin32Classic.cs:
17270         * TabControl.cs: instead of moving tabs by the slider pos just
17271         start drawing at the tab that is offset by the slider. This way
17272         scrolling always moves by exactly one tab.
17273
17274 2004-11-10  Jackson Harper  <jackson@ximian.com>
17275
17276         * TabControl.cs: You can only scroll left when the slider has
17277         already ben moved right.
17278         
17279 2004-11-10  Jackson Harper  <jackson@ximian.com>
17280
17281         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17282         the clip area.
17283         
17284 2004-11-10  Jackson Harper  <jackson@ximian.com>
17285
17286         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17287         clip area.
17288         
17289 2004-11-09  Jackson Harper  <jackson@ximian.com>
17290
17291         * TabControl.cs (CalcXPos): New helper method so we can determine
17292         the proper place to start drawing vertical tabs.
17293         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17294         
17295 2004-11-09  Jackson Harper  <jackson@ximian.com>
17296
17297         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17298         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17299         and Bottom, left and right are illegal values for this and
17300         multiline is enabled when the alignment is set to left or right.
17301         (DrawTab): Each alignment block should draw the text itself now
17302         because Left requires special love. Also add rendering for Left
17303         aligned tabs.
17304         
17305 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17306
17307         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17308         does not destroy the windows, removes debugging messages
17309
17310 2004-11-09  jba  <jba-mono@optusnet.com.au>
17311
17312         * ThemeWin32Classic.cs
17313         (DrawButtonBase): Fix verticle text rect clipping in windows
17314         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17315         rendering and incorrect text rect clipping
17316         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17317         rendering and incorrect text rect clipping
17318         
17319 2004-11-08  Jackson Harper  <jackson@ximian.com>
17320
17321         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17322         bottom when they are bottom aligned so the bottoms of the tabs get
17323         displayed.
17324         * TabControl.cs (DropRow): Move rows up instead of down when the
17325         tab control is bottom aligned.
17326
17327 2004-11-08 13:59  pbartok
17328
17329         * XplatUIX11.cs:
17330           - Added handling for various window styles
17331           - Added handling for popup windows
17332           - Added SetTopmost handling
17333
17334 2004-11-08 13:55  pbartok
17335
17336         * XplatUIWin32.cs:
17337           - Added argument to SetTopmost method
17338           - Fixed broken ClientToScreen function
17339
17340 2004-11-08 13:53  pbartok
17341
17342         * XplatUIStructs.cs:
17343           - Added missing WS_EX styles
17344
17345 2004-11-08 13:53  pbartok
17346
17347         * XplatUI.cs, XplatUIDriver.cs:
17348           - Added argument to SetTopmost
17349
17350 2004-11-08 13:52  pbartok
17351
17352         * X11Structs.cs:
17353           - Added XSetWindowAttributes structure
17354           - Improved XWindowAttributes structure
17355           - Added SetWindowValuemask enum
17356           - Added window creation arguments enum
17357           - Added gravity enum
17358           - Added Motif hints structure
17359           - Added various Motif flags and enums
17360           - Added PropertyMode enum for property functions
17361
17362 2004-11-08 13:50  pbartok
17363
17364         * Form.cs:
17365           - Fixed arguments for updated SetTopmost method
17366
17367 2004-11-08 13:49  pbartok
17368
17369         * ToolTip.cs:
17370           - Fixed arguments for updated SetTopmost function
17371           - Fixed usage of PointToClient
17372
17373 2004-11-08 13:44  pbartok
17374
17375         * MenuAPI.cs:
17376           - Added Clipping of children and siblings
17377
17378 2004-11-08 13:41  pbartok
17379
17380         * MainMenu.cs:
17381           - Removed SetMenuBarWindow call. We do this in Form.cs
17382
17383 2004-11-08 13:40  jackson
17384
17385         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17386           scrolling jimmi in the correct location with bottom aligned tabs
17387
17388 2004-11-08 13:36  pbartok
17389
17390         * ContainerControl.cs:
17391           - Implemented BindingContext
17392           - Implemented ParentForm
17393
17394 2004-11-08 12:46  jackson
17395
17396         * TabControl.cs: Put bottom rendered tabs in the right location
17397
17398 2004-11-08 07:15  jordi
17399
17400         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17401           removes dead code
17402
17403 2004-11-05 17:30  jackson
17404
17405         * TabControl.cs: When selected tabs are expanded make sure they
17406           don't go beyond the edges of the tab control
17407
17408 2004-11-05 14:57  jackson
17409
17410         * TabControl.cs: Reset show_slider so if the control is resized to
17411           a size where it is no longer needed it's not displayed anymore
17412
17413 2004-11-05 13:16  jackson
17414
17415         * TabControl.cs: Make tab pages non visible when added to the
17416           control
17417
17418 2004-11-05 12:42  jackson
17419
17420         * TabControl.cs: Implement SizeMode.FillToRight
17421
17422 2004-11-05 12:16  jackson
17423
17424         * Control.cs: Do not call CreateHandle if the handle is already
17425           created
17426
17427 2004-11-05 11:46  jackson
17428
17429         * TabControl.cs: Remove superflous call to CalcTabRows
17430
17431 2004-11-05 09:07  jackson
17432
17433         * XplatUIX11.cs: Update for Mono.Posix changes
17434
17435 2004-11-05 07:00  ravindra
17436
17437         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17438           scrolling.
17439
17440 2004-11-04 22:47  jba
17441
17442         * ThemeWin32Classic.cs:
17443           - Fix Button rendering for FlatStyle = Flat or Popup
17444           - Fix RadioButton and CheckBox rendering when Appearance = Button
17445             (normal and flatstyle).
17446           - Correct outer rectangle color when drawing focus rectangle
17447           - Adjust button bounds to be 1 px smaller when focused
17448           - Make button not draw sunken 3d border when pushed (windows compat)
17449           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17450           - Offset the text in RadioButton and Checkbox when being rendered as
17451           a button.
17452           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17453           radiobuttons
17454           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17455           - Fixed disabled text rendering for normally rendered radiobuttons
17456
17457 2004-11-04 10:26  jackson
17458
17459         * TabControl.cs: Recalculate tab rows when resizing
17460
17461 2004-11-04 07:47  jordi
17462
17463         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17464           collection completion, drawing issues, missing features
17465
17466 2004-11-04 05:03  ravindra
17467
17468         * ScrollBar.cs:
17469                 - We need to recalculate the Thumb area when
17470                 LargeChange/maximum/minimum values are changed.
17471           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17472                 than minimum. This is required to handle the case if large_change is
17473                 more than max, and use LargeChange property instead of large_change
17474                 variable.
17475           - We return max+1 when large_change is more than max, like MS does.
17476
17477 2004-11-04 04:29  ravindra
17478
17479         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
17480                 - Changed default value signatures (prefixed all with ListView).
17481                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
17482                 ListView.
17483           - Fixed calculations for ListViewItem and implemented Clone()
17484           method.
17485
17486 2004-11-04 04:26  ravindra
17487
17488         * Theme.cs, ThemeWin32Classic.cs:
17489                 - Changed default ListView values signatures (prefixed all with
17490                 ListView).
17491           - Fixed default size values for VScrollBar and HScrollBar.
17492                 - Fixed DrawListViewItem method.
17493
17494 2004-11-04 04:05  ravindra
17495
17496         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17497
17498 2004-11-04 04:04  ravindra
17499
17500         * ImageList.cs: Implemented the missing overload for Draw method.
17501
17502 2004-11-03 19:29  jackson
17503
17504         * TabControl.cs: Handle dropping rows on selection properly
17505
17506 2004-11-03 11:59  jackson
17507
17508         * TabControl.cs: remove debug code
17509
17510 2004-11-03 11:52  jackson
17511
17512         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
17513           the scrolly widgerywoo
17514
17515 2004-11-02 13:52  jackson
17516
17517         * TabControl.cs: Resize the tab pages and tabs when the tab control
17518           is resized
17519
17520 2004-11-02 13:40  jackson
17521
17522         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
17523           selected tab to the bottom
17524
17525 2004-11-02 13:39  jackson
17526
17527         * TabPage.cs: Store the tab pages row
17528
17529 2004-11-02 12:33  jordi
17530
17531         * MenuItem.cs: fixes handle creation
17532
17533 2004-11-02 11:42  jackson
17534
17535         * TabControl.cs: signature fix
17536
17537 2004-11-02 08:56  jackson
17538
17539         * TabControl.cs: Calculate whether the tab is on an edge properly.
17540           Remove top secret debugging code
17541
17542 2004-11-01 19:57  jackson
17543
17544         * TabControl.cs: Add click handling, and proper sizing
17545
17546 2004-11-01 19:47  jackson
17547
17548         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
17549           tab controls
17550
17551 2004-11-01 19:39  jackson
17552
17553         * TabPage.cs: add internal property to store the bounds of a tab
17554           page
17555
17556 2004-10-30 04:23  ravindra
17557
17558         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
17559           values.
17560
17561 2004-10-30 04:21  ravindra
17562
17563         * ListView.cs, ListViewItem.cs: Added support for scrolling and
17564           fixed calculations.
17565
17566 2004-10-30 03:06  pbartok
17567
17568         * XplatUIX11.cs:
17569           - Removed extension of DllImported libs
17570
17571 2004-10-29 09:55  jordi
17572
17573         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
17574           navigation, itemcollection completion, menu fixes
17575
17576 2004-10-27 22:58  pbartok
17577
17578         * XplatUIX11.cs:
17579           - Now throws a nice error message when no X display could be opened
17580
17581 2004-10-26 13:51  jordi
17582
17583         * ListView.cs: removes warning
17584
17585 2004-10-26 03:55  ravindra
17586
17587         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
17588           ThemeWin32Classic.cs: Some formatting for my last checkins.
17589
17590 2004-10-26 03:36  ravindra
17591
17592         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
17593           control and default values.
17594
17595 2004-10-26 03:35  ravindra
17596
17597         * Theme.cs: Added some default values for ListView control.
17598
17599 2004-10-26 03:33  ravindra
17600
17601         * ToolBar.cs: ToolBar should use the user specified button size, if
17602           there is any. Added a size_specified flag for the same.
17603
17604 2004-10-26 03:33  ravindra
17605
17606         * ColumnHeader.cs: Added some internal members and calculations for
17607           ColumnHeader.
17608
17609 2004-10-26 03:32  ravindra
17610
17611         * ListViewItem.cs: Calculations for ListViewItem.
17612
17613 2004-10-26 03:31  ravindra
17614
17615         * ListView.cs: Added some internal members and calculations for
17616           ListView.
17617
17618 2004-10-22 13:31  jordi
17619
17620         * MenuAPI.cs: speedup menus drawing
17621
17622 2004-10-22 13:16  jackson
17623
17624         * XplatUIX11.cs: Make sure to update exposed regions when adding an
17625           expose event
17626
17627 2004-10-22 11:49  jackson
17628
17629         * Control.cs: oops
17630
17631 2004-10-22 11:41  jackson
17632
17633         * Control.cs: Check to see if the window should have its background
17634           repainted by X when drawing.
17635
17636 2004-10-22 11:31  jackson
17637
17638         * XplatUIX11.cs: When invalidating areas only use XClearArea if
17639           clear is true, this way we do not get flicker from X repainting the
17640           background
17641
17642 2004-10-22 11:28  jackson
17643
17644         * XEventQueue.cs: Queue properly
17645
17646 2004-10-21 09:38  jackson
17647
17648         * XEventQueue.cs: Fix access modifier
17649
17650 2004-10-21 09:36  jackson
17651
17652         * XEventQueue.cs: Don't loose messages
17653
17654 2004-10-21 09:22  jackson
17655
17656         * XEventQueue.cs: Don't loose messages
17657
17658 2004-10-20 04:15  jordi
17659
17660         * BootMode.cs: enum need it by SystemInfo
17661
17662 2004-10-19 21:58  pbartok
17663
17664         * XplatUIWin32.cs:
17665           - Small sanity check
17666
17667 2004-10-19 21:56  pbartok
17668
17669         * Form.cs:
17670           - Added private FormParentWindow class which acts as the container
17671             for our form and as the non-client area where menus are drawn
17672           - Added/Moved required tie-ins to Jordi's menus
17673           - Fixed/Implemented the FormStartPosition functionality
17674
17675 2004-10-19 21:52  pbartok
17676
17677         * Control.cs:
17678           - Removed unneeded locals
17679           - Added code to all size and location properties to understand and
17680             deal with the parent container of Form
17681
17682 2004-10-19 21:33  pbartok
17683
17684         * Application.cs:
17685           - Fixed to deal with new Form subclasses for menus
17686
17687 2004-10-19 17:48  jackson
17688
17689         * XEventQueue.cs: commit correct version of file
17690
17691 2004-10-19 16:50  jackson
17692
17693         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
17694
17695 2004-10-19 16:15  jordi
17696
17697         * MenuAPI.cs: MenuBarCalcSize returns the height
17698
17699 2004-10-19 08:31  pbartok
17700
17701         * Control.cs:
17702           - Added missing call to PreProcessMessage before calling OnXXXKey
17703           methods
17704
17705 2004-10-19 00:04  ravindra
17706
17707         * ToolTip.cs: Fixed constructor.
17708
17709 2004-10-18 09:31  jordi
17710
17711         * MenuAPI.cs: menuitems in menubars do not have shortcuts
17712
17713 2004-10-18 09:26  jordi
17714
17715         * MenuItem.cs: fixes MenuItem class signature
17716
17717 2004-10-18 08:56  jordi
17718
17719         * MenuAPI.cs: prevents windows from showing in the taskbar
17720
17721 2004-10-18 00:28  ravindra
17722
17723         * ToolTip.cs: Suppressed a warning message.
17724
17725 2004-10-18 00:27  ravindra
17726
17727         * Control.cs: Default value of visible property must be true.
17728
17729 2004-10-17 23:19  pbartok
17730
17731         * ToolTip.cs:
17732           - Complete implementation
17733
17734 2004-10-17 23:19  pbartok
17735
17736         * XplatUIX11.cs:
17737           - Added EnableWindow method
17738           - Added SetModal stub
17739           - Added generation of WM_ACTIVATE message (still needs testing)
17740           - Added SetTopMost stub
17741           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
17742
17743 2004-10-17 23:17  pbartok
17744
17745         * XplatUIWin32.cs:
17746           - Removed VirtualKeys to XplatUIStructs
17747           - Implemented SetTopMost method
17748           - Implemented EnableWindow method
17749           - Bugfix in ScreenToClient()
17750           - Bugfixes in ClientToScreen()
17751
17752 2004-10-17 22:51  pbartok
17753
17754         * XplatUIStructs.cs:
17755           - Added WS_EX styles to WindowStyles enumeration
17756
17757 2004-10-17 22:50  pbartok
17758
17759         * XplatUI.cs, XplatUIDriver.cs:
17760           - Added method for enabling/disabling windows
17761           - Added method for setting window modality
17762           - Added method for setting topmost window
17763
17764 2004-10-17 22:49  pbartok
17765
17766         * ThemeWin32Classic.cs:
17767           - Added ToolTip drawing code
17768
17769 2004-10-17 22:49  pbartok
17770
17771         * Theme.cs:
17772           - Added ToolTip abstracts
17773
17774 2004-10-17 22:47  pbartok
17775
17776         * Form.cs:
17777           - Fixed Form.ControlCollection to handle owner relations
17778           - Added Owner/OwnedForms handling
17779           - Implemented Z-Ordering for owned forms
17780           - Removed unneeded private overload of ShowDialog
17781           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
17782             so I hope)
17783           - Fixed Close(), had wrong default
17784           - Added firing of OnLoad event
17785           - Added some commented out debug code for Ownership handling
17786
17787 2004-10-17 22:16  pbartok
17788
17789         * Control.cs:
17790           - Fixed/implemented flat list of controls
17791
17792 2004-10-17 22:14  pbartok
17793
17794         * Application.cs:
17795           - Added code to simulate modal dialogs on Win32
17796
17797 2004-10-17 16:11  jordi
17798
17799         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
17800           mouse event
17801
17802 2004-10-17 13:39  jordi
17803
17804         * MenuAPI.cs: menu drawing fixes
17805
17806 2004-10-15 09:10  ravindra
17807
17808         * StructFormat.cs: General Enum.
17809
17810 2004-10-15 09:09  ravindra
17811
17812         * SizeGripStyle.cs: Enum for Form.
17813
17814 2004-10-15 09:08  ravindra
17815
17816         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
17817           in Theme for ListView.
17818
17819 2004-10-15 09:06  ravindra
17820
17821         * ColumnHeader.cs: Flushing some formatting changes.
17822
17823 2004-10-15 09:05  ravindra
17824
17825         * ListViewItem.cs: Implemented GetBounds method and fixed coding
17826           style.
17827
17828 2004-10-15 09:03  ravindra
17829
17830         * ListView.cs: Implemented Paint method and fixed coding style.
17831
17832 2004-10-15 07:34  jordi
17833
17834         * MenuAPI.cs: fix for X11
17835
17836 2004-10-15 07:32  ravindra
17837
17838         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
17839                 - Renamed Paint() method to Draw() for clarity. Also, moved
17840                 DrawImage() to OnPaint().
17841
17842 2004-10-15 07:25  ravindra
17843
17844         * CheckBox.cs, RadioButton.cs:
17845                 - Removed Redraw (), we get it from ButtonBase.
17846                 - Implemented Paint (), to do class specific painting.
17847
17848 2004-10-15 07:16  ravindra
17849
17850         * ButtonBase.cs:
17851                 - Redraw () is not virtual now.
17852                 - Added an internal virtual method Paint (), so that
17853                 derived classes can do their painting on their own.
17854                 - Modified OnPaint () to call Paint ().
17855
17856 2004-10-15 06:43  jordi
17857
17858         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
17859           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
17860
17861 2004-10-15 00:30  ravindra
17862
17863         * MessageBox.cs:
17864                 - MessageBox on windows does not have min/max buttons.
17865                 This change in CreateParams fixes this on Windows. We
17866                 still need to implement this windowstyle behavior in
17867                 our X11 driver.
17868
17869 2004-10-14 05:14  ravindra
17870
17871         * ToolBar.cs:
17872                 - Changed Redraw () to do a Refresh () always.
17873                 - Fixed the MouseMove event handling when mouse is pressed,
17874                 ie drag event handling.
17875                 - Replaced the usage of ToolBarButton.Pressed property to
17876                 ToolBarButton.pressed internal variable.
17877
17878 2004-10-14 05:10  ravindra
17879
17880         * ToolBarButton.cs:
17881                 - Added an internal member 'inside' to handle mouse move
17882                 with mouse pressed ie mouse drag event.
17883                 - Changed 'Pressed' property to return true only when
17884                 'inside' and 'pressed' are both true.
17885                 - Some coding style love.
17886
17887 2004-10-14 00:17  ravindra
17888
17889         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
17890           public method.
17891
17892 2004-10-14 00:15  ravindra
17893
17894         * ButtonBase.cs: Redraw () related improvements.
17895
17896 2004-10-14 00:14  ravindra
17897
17898         * MessageBox.cs: Moved InitFormSize () out of Paint method and
17899           removed unnecessary calls to Button.Show () method.
17900
17901 2004-10-13 17:50  pbartok
17902
17903         * XplatUIX11.cs:
17904           - Formatting fix
17905           - Removed destroying of window until we solve the problem of X
17906             destroying the window before us on shutdown
17907
17908 2004-10-13 16:32  pbartok
17909
17910         * ButtonBase.cs:
17911           - Now Redraws on MouseUp for FlatStyle Flat and Popup
17912
17913 2004-10-13 14:18  pbartok
17914
17915         * XplatUIX11.cs:
17916           - Added code to destroy the X window
17917
17918 2004-10-13 14:18  pbartok
17919
17920         * XplatUIWin32.cs:
17921           - Added code to destroy a window
17922
17923 2004-10-13 14:12  pbartok
17924
17925         * ButtonBase.cs:
17926           - Added the Redraw on Resize that got dropped in the last rev
17927
17928 2004-10-13 09:06  pbartok
17929
17930         * ThemeWin32Classic.cs:
17931           - Path from John BouAntoun:
17932             * Fix check rendering (centre correctly for normal style, offset
17933               correctly for FlatStyle).
17934             * Fix border color usage (use backcolor) for FlatStyle.Popup
17935             * Use checkbox.Capture instead of checkbox.is_pressed when
17936               rendering flatstyle states.
17937
17938 2004-10-12 21:48  pbartok
17939
17940         * ThemeWin32Classic.cs:
17941           - Removed all occurences of SystemColors and replaced them with the
17942             matching theme color
17943
17944 2004-10-12 21:41  pbartok
17945
17946         * ThemeWin32Classic.cs:
17947           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
17948             him using the function for flatstyle drawing
17949           - Changed functions to use the new version of CPDrawBorder3D
17950
17951 2004-10-12 21:15  pbartok
17952
17953         * ControlPaint.cs:
17954           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
17955             match MS documentation. They need to return defined colors if the
17956             passed color matches the configured control color. Thanks to John
17957             BouAntoun for pointing this out.
17958
17959 2004-10-12 20:57  pbartok
17960
17961         * Control.cs:
17962           - Fix from John BouAntoun: Raise ForeColorChanged event when text
17963             color is changed
17964
17965 2004-10-12 20:46  pbartok
17966
17967         * CheckBox.cs:
17968           - Fix from John BouAntoun: Now properly sets the Appearance property
17969
17970 2004-10-12 20:45  pbartok
17971
17972         * ThemeWin32Classic.cs:
17973           - Fixes from John BouAntoun: now handles forecolors and backcolors
17974             for flatstyle rendered controls much better; It also fixes normal
17975             checkbox rendering when pushed or disabled.
17976
17977 2004-10-08 02:50  jordi
17978
17979         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
17980           work
17981
17982 2004-10-07 08:56  jordi
17983
17984         * ThemeWin32Classic.cs: Removes deletion of cached brushes
17985
17986 2004-10-06 03:59  jordi
17987
17988         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
17989           XplatUIWin32.cs: removes warnings from compilation
17990
17991 2004-10-05 12:23  jackson
17992
17993         * RadioButton.cs: Fix ctor
17994
17995 2004-10-05 11:10  pbartok
17996
17997         * MessageBox.cs:
17998           - Partial implementation by Benjamin Dasnois
17999
18000 2004-10-05 10:15  jackson
18001
18002         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18003           by John BouAntoun
18004
18005 2004-10-05 03:07  ravindra
18006
18007         * ToolBar.cs:
18008                 - Removed a private method, Draw ().
18009                 - Fixed the ButtonDropDown event handling.
18010                 - Fixed MouseMove event handling.
18011
18012 2004-10-05 03:04  ravindra
18013
18014         * ThemeWin32Classic.cs:
18015                 - Added DrawListView method and ListViewDefaultSize property.
18016                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18017                 - Changed DOS style CRLF to Unix format (dos2unix).
18018
18019 2004-10-05 03:03  ravindra
18020
18021         * Theme.cs:
18022                 - Added DrawListView method and ListViewDefaultSize property.
18023
18024 2004-10-05 02:42  ravindra
18025
18026         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18027           clicks on DropDown arrow.
18028
18029 2004-10-04 22:56  jackson
18030
18031         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18032           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18033           Control handle the buffers, derived classes should not have to
18034           CreateBuffers themselves.
18035
18036 2004-10-04 21:20  jackson
18037
18038         * StatusBar.cs: The control handles resizing the buffers now.
18039
18040 2004-10-04 21:18  jackson
18041
18042         * Control.cs: When resizing the buffers should be invalidated. This
18043           should be handled in Control not in derived classes.
18044
18045 2004-10-04 14:45  jackson
18046
18047         * TabPage.cs: oops
18048
18049 2004-10-04 02:14  pbartok
18050
18051         * LeftRightAlignment.cs:
18052           - Initial check-in
18053
18054 2004-10-04 01:09  jordi
18055
18056         * ThemeWin32Classic.cs: fixes right button position causing right
18057           button not showing on horizontal scrollbars
18058
18059 2004-10-02 13:12  pbartok
18060
18061         * XplatUIX11.cs:
18062           - Simplified the Invalidate method by using an X call instead of
18063             generating the expose ourselves
18064           - Added an expose when the window background is changed
18065           - Implemented ClientToScreen method
18066
18067 2004-10-02 13:08  pbartok
18068
18069         * XplatUIWin32.cs:
18070           - Added Win32EnableWindow method (test for implementing modal
18071           dialogs)
18072           - Added ClientToScreen method and imports
18073
18074 2004-10-02 13:07  pbartok
18075
18076         * XplatUI.cs, XplatUIDriver.cs:
18077           - Added ClientToScreen coordinate translation method
18078
18079 2004-10-02 13:06  pbartok
18080
18081         * KeyPressEventArgs.cs:
18082           - Fixed access level for constructor
18083
18084 2004-10-02 13:06  pbartok
18085
18086         * NativeWindow.cs:
18087           - Changed access level for the window_collection hash table
18088
18089 2004-10-02 13:05  pbartok
18090
18091         * Form.cs:
18092           - Added KeyPreview property
18093           - Added Menu property (still incomplete, pending Jordi's menu work)
18094           - Implemented ProcessCmdKey
18095           - Implemented ProcessDialogKey
18096           - Implemented ProcessKeyPreview
18097
18098 2004-10-02 13:02  pbartok
18099
18100         * Control.cs:
18101           - Added private method to get the Control object from the window
18102           handle
18103           - Implemented ContextMenu property
18104           - Implemented PointToScreen
18105           - Implemented PreProcessMessage
18106           - Implemented IsInputChar
18107           - Implemented IsInputKey
18108           - Implemented ProcessCmdKey
18109           - Completed ProcessKeyEventArgs
18110           - Fixed message loop to call the proper chain of functions on key
18111           events
18112           - Implemented ProcessDialogChar
18113           - Implemented ProcessDialogKey
18114           - Implemented ProcessKeyMessage
18115           - Implemented ProcessKeyPreview
18116           - Added RaiseDragEvent stub (MS internal method)
18117           - Added RaiseKeyEvent stub (MS internal method)
18118           - Added RaiseMouseEvent stub (MS Internal method)
18119           - Added RaisePaintEvent stub (MS Internal method)
18120           - Added ResetMouseEventArgs stub (MS Internal method)
18121           - Implemented RtlTranslateAlignment
18122           - Implemented RtlTranslateContent
18123           - Implemented RtlTranslateHorizontal
18124           - Implemented RtlTranslateLeftRight
18125           - Added generation of KeyPress event
18126
18127 2004-10-02 05:57  ravindra
18128
18129         * ListViewItem.cs: Added attributes.
18130
18131 2004-10-02 05:32  ravindra
18132
18133         * ListView.cs: Added attributes.
18134
18135 2004-10-01 11:53  jackson
18136
18137         * Form.cs: Implement the Close method so work on MessageBox can
18138           continue.
18139
18140 2004-09-30 14:06  pbartok
18141
18142         * XplatUIX11.cs:
18143           - Bug fixes
18144
18145 2004-09-30 11:34  jackson
18146
18147         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18148
18149 2004-09-30 07:26  ravindra
18150
18151         * ListViewItemConverter.cs: Converter for ListViewItem.
18152
18153 2004-09-30 07:26  ravindra
18154
18155         * SortOrder.cs: Enum for ListView control.
18156
18157 2004-09-30 07:25  ravindra
18158
18159         * ColumnHeader.cs: Supporting class for ListView control.
18160
18161 2004-09-30 07:24  ravindra
18162
18163         * ListView.cs, ListViewItem.cs: Initial implementation.
18164
18165 2004-09-30 07:20  ravindra
18166
18167         * ItemActivation.cs: Enum for ListView Control.
18168
18169 2004-09-29 20:29  pbartok
18170
18171         * XplatUIX11.cs:
18172           - Added lookup of pixel value for background color; tries to get a
18173             color 'close' to the requested color, it avoids having to create a
18174             colormap.  Depending on the display this could mean the used color
18175             is slightly off the desired color. Might have to change it to a more
18176             resource intensive colormap approach, but it will work as a
18177           workaround to avoid red screens.
18178
18179 2004-09-29 14:27  jackson
18180
18181         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18182
18183 2004-09-28 12:44  pbartok
18184
18185         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18186           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18187           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18188           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18189           TrackBar.cs, VScrollBar.cs:
18190           - Streamlined Theme interfaces:
18191             * Each DrawXXX method for a control now is passed the object for
18192               the control to be drawn in order to allow accessing any state the
18193               theme might require
18194
18195             * ControlPaint methods for the theme now have a CP prefix to avoid
18196               name clashes with the Draw methods for controls
18197
18198             * Every control now retrieves it's DefaultSize from the current
18199             theme
18200
18201 2004-09-28 12:17  jackson
18202
18203         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18204           drawing
18205
18206 2004-09-24 14:57  jackson
18207
18208         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18209           Gives us a nice little performance boost.
18210
18211 2004-09-24 12:02  jackson
18212
18213         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18214           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18215           Control and supporting classes. Initial checkin
18216
18217 2004-09-23 13:08  jackson
18218
18219         * Form.cs: Temp build fixage
18220
18221 2004-09-23 01:39  ravindra
18222
18223         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18224           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18225           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18226           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18227           EventHandlers needed by ListView Control.
18228
18229 2004-09-22 14:12  pbartok
18230
18231         * ScrollableControl.cs:
18232           - Implemented DockPadding property
18233           - Implemented AutoScroll property
18234           - Implemented AutoScrollMargin property
18235           - Implemented AutoScrollMinSize property
18236           - Implemented AutoScrollPosition property
18237           - Implemented DisplayRectangle property (still incomplete)
18238           - Implemented CreateParams property
18239           - Implemented HScroll property
18240           - Implemented VScroll property
18241           - Implemented OnVisibleChanged property
18242
18243 2004-09-22 14:09  pbartok
18244
18245         * Form.cs:
18246           - Added Form.ControllCollection class
18247           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18248             RemoveOwnedForm (still incomplete, missing on-top and common
18249             minimize/maximize behaviour)
18250           - Added StartPosition property (still incomplete, does not use when
18251             creating the form)
18252           - Added ShowDialog() methods (still incomplete, missing forcing the
18253             dialog modal)
18254
18255 2004-09-22 14:05  pbartok
18256
18257         * Application.cs:
18258           - Added message loop for modal dialogs
18259
18260 2004-09-22 14:02  pbartok
18261
18262         * GroupBox.cs:
18263           - Fixed wrong types for events
18264
18265 2004-09-22 14:00  pbartok
18266
18267         * Shortcut.cs, FormWindowState.cs:
18268           - Fixed wrong values
18269
18270 2004-09-22 12:01  jackson
18271
18272         * Control.cs: Text is never null
18273
18274 2004-09-20 22:14  pbartok
18275
18276         * XplatUIWin32.cs:
18277           - Fixed accessibility level for Idle handler
18278
18279 2004-09-20 18:54  jackson
18280
18281         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18282           XplatUIX11.cs: New message loop that uses poll so we don't get a
18283           busy loop
18284
18285 2004-09-17 10:43  pbartok
18286
18287         * ScrollBar.cs:
18288           - Fixed behaviour of arrow buttons. Now properly behaves like
18289             Buttons (and like Microsoft's scrollbar arrow buttons)
18290
18291 2004-09-17 10:14  pbartok
18292
18293         * ScrollBar.cs:
18294           - Added missing release of keyboard/mouse capture
18295
18296 2004-09-17 06:18  jordi
18297
18298         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18299           Theme.cs: Very early menu support
18300
18301 2004-09-16 17:45  pbartok
18302
18303         * XplatUIWin32.cs:
18304           - Fixed sending a window to the front
18305           - Added overload for SetWindowPos to avoid casting
18306
18307 2004-09-16 17:44  pbartok
18308
18309         * Control.cs:
18310           - Added SendToBack and BringToFront methods
18311
18312 2004-09-16 07:00  ravindra
18313
18314         * Copyright: Added Novell URL.
18315
18316 2004-09-16 07:00  ravindra
18317
18318         * ToolBar.cs: Invalidate should be done before redrawing.
18319
18320 2004-09-15 21:19  ravindra
18321
18322         * ColumnHeaderStyle.cs: Enum for ListView Control.
18323
18324 2004-09-15 21:18  ravindra
18325
18326         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18327           ListView Control.
18328
18329 2004-09-13 18:26  jackson
18330
18331         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18332           properly
18333
18334 2004-09-13 18:13  jackson
18335
18336         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18337           a second thread and post messages into the main threads message
18338           queue. This makes timing much more consistent. Both win2K and XP
18339           have a minimum timer value of 15 milliseconds, so we now do this
18340           too.
18341
18342 2004-09-13 15:18  pbartok
18343
18344         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18345           XplatUIX11.cs:
18346           - Added Z-Ordering methods
18347
18348 2004-09-13 10:56  pbartok
18349
18350         * Form.cs:
18351           - Fixed #region names
18352           - Moved properties and methods into their proper #regions
18353
18354 2004-09-13 10:51  pbartok
18355
18356         * Form.cs:
18357           - Added Accept and CancelButton properties
18358           - Added ProcessDialogKey() method
18359
18360 2004-09-13 08:18  pbartok
18361
18362         * IWindowTarget.cs:
18363           - Initial check-in
18364
18365 2004-09-10 21:50  pbartok
18366
18367         * Control.cs:
18368           - Added DoDragDrop() [incomplete]
18369           - Properly implemented 'Visible' handling
18370           - Added SetVisibleCore()
18371           - Implemented FindChildAtPoint()
18372           - Implemented GetContainerControl()
18373           - Implemented Hide()
18374
18375 2004-09-10 19:28  pbartok
18376
18377         * Control.cs:
18378           - Moved methods into their appropriate #regions
18379           - Reordered methods within regions alphabetically
18380
18381 2004-09-10 18:57  pbartok
18382
18383         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18384           - Added method to retrieve text from window
18385
18386 2004-09-10 18:56  pbartok
18387
18388         * Control.cs:
18389           - Moved some internal functions into the internal region
18390           - Implemented FontHeight
18391           - Implemented RenderRightToLeft
18392           - Implemented ResizeRedraw
18393           - Implemented ShowFocusCues
18394           - Implemented ShowKeyboardCues
18395           - Implemented FromChildHandle
18396           - Implemented FromHandle
18397           - Implemented IsMnemonic
18398           - Implemented ReflectMessage
18399           - All public and protected Static Methods are now complete
18400
18401 2004-09-10 16:54  pbartok
18402
18403         * Control.cs:
18404           - Implemented remaining missing public instance properties
18405           - Alphabetized some out of order properties
18406
18407 2004-09-10 05:51  ravindra
18408
18409         * PictureBox.cs: Added a check for null image.
18410
18411 2004-09-10 00:59  jordi
18412
18413         * GroupBox.cs: remove cvs tag
18414
18415 2004-09-09 05:25  ravindra
18416
18417         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18418
18419 2004-09-09 05:23  ravindra
18420
18421         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18422           parent redraw.
18423
18424 2004-09-09 02:28  pbartok
18425
18426         * ThemeWin32Classic.cs:
18427           - Improve disabled string look
18428
18429 2004-09-09 01:15  jordi
18430
18431         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18432           args and handler
18433
18434 2004-09-08 23:56  ravindra
18435
18436         * ItemBoundsPortion.cs: It's enum, not a class!
18437
18438 2004-09-08 23:47  ravindra
18439
18440         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18441           Enums for Form.
18442
18443 2004-09-08 21:13  ravindra
18444
18445         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18446           ListView control.
18447
18448 2004-09-08 21:03  ravindra
18449
18450         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18451           avoid crash.
18452
18453 2004-09-08 21:01  ravindra
18454
18455         * ScrollableControl.cs: Removed unreachable code.
18456
18457 2004-09-08 06:45  jordi
18458
18459         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18460
18461 2004-09-08 01:00  jackson
18462
18463         * XplatUIX11.cs: Only run the timers when updating the message
18464           queue. This effectively gives X messages a higher priority then
18465           timer messages. Timers still need love though
18466
18467 2004-09-07 14:01  jackson
18468
18469         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18470           this for us and the handle is no longer valid.
18471
18472 2004-09-07 13:59  jackson
18473
18474         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
18475           loop that manages to not crash. TODO: Add poll and cleanup timers
18476
18477 2004-09-07 11:12  jordi
18478
18479         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
18480
18481 2004-09-07 03:40  jordi
18482
18483         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
18484           fixes, methods, multiple links
18485
18486 2004-09-06 06:55  jordi
18487
18488         * Control.cs: Caches ClientRectangle rectangle value
18489
18490 2004-09-05 02:03  jordi
18491
18492         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18493           certain situations
18494
18495 2004-09-04 11:10  jordi
18496
18497         * Label.cs: Refresh when font changed
18498
18499 2004-09-02 16:24  pbartok
18500
18501         * Control.cs:
18502           - Added sanity check to creation of double buffer bitmap
18503
18504 2004-09-02 16:24  pbartok
18505
18506         * ButtonBase.cs:
18507           - Fixed selection of text color
18508           - Fixed handling of resize event; now properly recreates double
18509             buffering bitmap
18510           - Added missing assignment of TextAlignment
18511           - Added proper default for TextAlignment
18512
18513 2004-09-02 14:26  pbartok
18514
18515         * RadioButton.cs:
18516           - Added missing RadioButton.RadioButtonAccessibleObject class
18517
18518 2004-09-02 14:26  pbartok
18519
18520         * Control.cs:
18521           - Added missing Control.ControlAccessibleObject class
18522           - Started to implement Select()ion mechanisms, still very incomplete
18523
18524 2004-09-02 14:25  pbartok
18525
18526         * AccessibleObject.cs:
18527           - Added missing methods
18528
18529 2004-09-02 14:23  pbartok
18530
18531         * AccessibleNavigation.cs, AccessibleSelection.cs:
18532           - Initial check-in
18533
18534 2004-09-02 10:32  jordi
18535
18536         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
18537           pool for pens, brushes, and hatchbruses
18538
18539 2004-09-01 15:30  jackson
18540
18541         * StatusBar.cs: Fix typo
18542
18543 2004-09-01 14:44  pbartok
18544
18545         * RadioButton.cs:
18546           - Fixed state
18547
18548 2004-09-01 14:39  pbartok
18549
18550         * Button.cs, RadioButton.cs:
18551           - Functional initial check-in
18552
18553 2004-09-01 14:01  pbartok
18554
18555         * CheckBox.cs:
18556           - Added missing default
18557           - Added missing region mark
18558
18559 2004-09-01 09:10  jordi
18560
18561         * Label.cs: fixes method signatures, new methods, events, fixes
18562           autosize
18563
18564 2004-09-01 07:19  jordi
18565
18566         * Control.cs: Init string variables with an empty object
18567
18568 2004-09-01 04:20  jordi
18569
18570         * Control.cs: fires OnFontChanged event
18571
18572 2004-08-31 20:07  pbartok
18573
18574         * ButtonBase.cs:
18575           - Enabled display of strings
18576
18577 2004-08-31 20:05  pbartok
18578
18579         * Form.cs:
18580           - Added (partial) implementation of DialogResult; rest needs to be
18581             implemented when the modal loop code is done
18582
18583 2004-08-31 19:55  pbartok
18584
18585         * CheckBox.cs:
18586           - Fixed to match the removal of the needs_redraw concept
18587
18588 2004-08-31 19:55  pbartok
18589
18590         * ButtonBase.cs:
18591           - Removed the rather odd split between 'needs redraw' and redrawing
18592           - Now handles the events that require regeneration (ambient
18593             properties and size)
18594
18595 2004-08-31 19:41  pbartok
18596
18597         * Control.cs:
18598           - Added firing of BackColorChanged event
18599           - Added TopLevelControl property
18600           - Fixed handling of WM_ERASEBKGRND message
18601
18602 2004-08-31 12:49  pbartok
18603
18604         * ButtonBase.cs:
18605           - Removed debug
18606           - Minor fixes
18607
18608 2004-08-31 12:48  pbartok
18609
18610         * CheckBox.cs:
18611           - Finished (famous last words)
18612
18613 2004-08-31 04:35  jordi
18614
18615         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
18616           scrolling bugs, adds new methods
18617
18618 2004-08-30 14:42  pbartok
18619
18620         * CheckBox.cs:
18621           - Implemented CheckBox drawing code
18622
18623 2004-08-30 14:42  pbartok
18624
18625         * ButtonBase.cs:
18626           - Made Redraw() and CheckRedraw() virtual
18627           - Improved mouse up/down/move logic to properly track buttons
18628
18629 2004-08-30 09:44  pbartok
18630
18631         * CheckBox.cs:
18632           - Updated to fix broken build. Not complete yet.
18633
18634 2004-08-30 09:28  pbartok
18635
18636         * CheckState.cs:
18637           - Initial checkin
18638
18639 2004-08-30 09:17  pbartok
18640
18641         * Appearance.cs:
18642           - Initial check-in
18643
18644 2004-08-27 16:12  ravindra
18645
18646         * ToolBarButton.cs: Added TypeConverter attribute.
18647
18648 2004-08-27 16:07  ravindra
18649
18650         * ImageIndexConverter.cs: Implemented.
18651
18652 2004-08-27 14:17  pbartok
18653
18654         * Control.cs:
18655           - Removed unneeded stack vars
18656           - First attempt to fix sizing issues when layout is suspended
18657
18658 2004-08-25 15:35  jordi
18659
18660         * ScrollBar.cs: more fixes to scrollbar
18661
18662 2004-08-25 14:04  ravindra
18663
18664         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
18665           Added the missing divider code and grip for ToolBar Control.
18666
18667 2004-08-25 13:20  pbartok
18668
18669         * Control.cs:
18670           - Control now properly passes the ambient background color to child
18671             controls
18672
18673 2004-08-25 13:20  jordi
18674
18675         * ScrollBar.cs: small bug fix regarding bar position
18676
18677 2004-08-25 12:33  pbartok
18678
18679         * Timer.cs:
18680           - Now only calls SetTimer or KillTimer if the enabled state has
18681           changed
18682
18683 2004-08-25 12:33  pbartok
18684
18685         * XplatUIWin32.cs:
18686           - Fixed timer handling, now seems to work
18687           - Improved error message for window creation
18688
18689 2004-08-25 12:32  pbartok
18690
18691         * Control.cs:
18692           - Fixed generation of MouseUp message
18693
18694 2004-08-25 12:29  jordi
18695
18696         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
18697           and fixes for progressbar
18698
18699 2004-08-24 18:43  ravindra
18700
18701         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
18702           in ToolBar control.
18703
18704 2004-08-24 17:15  pbartok
18705
18706         * Panel.cs:
18707           - Added #region
18708           - Added missing events
18709           - Alphabetized
18710
18711 2004-08-24 17:14  pbartok
18712
18713         * StatusBar.cs, PictureBox.cs:
18714           - Now uses Control's CreateParams
18715
18716 2004-08-24 16:36  pbartok
18717
18718         * XplatUIX11.cs:
18719           - Fixed background color handling
18720           - Fixed sending of enter/leave events on a grab
18721
18722 2004-08-24 16:35  pbartok
18723
18724         * X11Structs.cs:
18725           - Refined definitions for CrossingEvent
18726
18727 2004-08-24 12:37  jordi
18728
18729         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
18730           formmating, methods signature, and adds missing events
18731
18732 2004-08-24 12:24  jordi
18733
18734         * Control.cs: fire OnEnabledChanged event
18735
18736 2004-08-24 11:17  pbartok
18737
18738         * XplatUIWin32.cs:
18739           - Implemented SetTimer() and KillTimer()
18740
18741 2004-08-24 11:16  pbartok
18742
18743         * XplatUIX11.cs:
18744           - Now uses Remove instead of Add to kill the timer
18745
18746 2004-08-24 10:16  jackson
18747
18748         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
18749           picture boxes in the theme now. Draw picture box borders and obey
18750           sizing modes
18751
18752 2004-08-24 05:49  jackson
18753
18754         * Timer.cs: Remove top secret debugging code
18755
18756 2004-08-24 05:34  jackson
18757
18758         * PictureBox.cs: Temp hack to make picture boxes draw their full
18759           image
18760
18761 2004-08-24 05:29  jackson
18762
18763         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18764           XplatUIX11.cs: Move timers to the driver level. On X they are
18765           queued by the driver and checked on idle.
18766
18767 2004-08-24 01:07  jackson
18768
18769         * XplatUIX11.cs: Use a queue for async messages instead of passing
18770           them as ClientMessages since that was totally broken. Also simply
18771           check for events and return an idle message if none are found. This
18772           gives us an idle handler, and prevents deadlocking when no messages
18773           are in the queue.
18774
18775 2004-08-23 18:19  ravindra
18776
18777         * XplatUIWin32.cs: Removed the unwanted destructor.
18778
18779 2004-08-23 17:27  pbartok
18780
18781         * ButtonBase.cs:
18782           - Finishing touches. Works now, just needs some optimizations.
18783
18784 2004-08-23 16:53  jordi
18785
18786         * ScrollBar.cs: small fix
18787
18788 2004-08-23 16:45  pbartok
18789
18790         * Application.cs:
18791           - Removed debug output
18792           - Simplifications
18793
18794 2004-08-23 16:43  jordi
18795
18796         * ScrollBar.cs: [no log message]
18797
18798 2004-08-23 16:10  pbartok
18799
18800         * Form.cs:
18801           - Fixed handling of WM_CLOSE message
18802           - Removed debug output
18803
18804 2004-08-23 16:09  pbartok
18805
18806         * Application.cs:
18807           - Added handling of Idle event
18808           - Added handling of form closing
18809           - Fixed reporting of MessageLoop property
18810           - Removed some unneeded code, should provide a bit of a speedup
18811
18812 2004-08-23 15:22  pbartok
18813
18814         * Control.cs:
18815           - Added InitLayout() method
18816           - Added code to properly perform layout when Anchor or Dock property
18817             is changed
18818           - Changed 'interpretation' of ResumeLayout. MS seems to have a
18819             LAMESPEC, tried to do it in a way that makes sense
18820
18821 2004-08-23 14:10  jordi
18822
18823         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
18824           properties and methods
18825
18826 2004-08-23 13:55  pbartok
18827
18828         * Control.cs:
18829           - Properly fixed Jordi's last fix
18830           - Now uses Cursor's Position property instead of calling XplatUI
18831           directly
18832
18833 2004-08-23 13:44  jordi
18834
18835         * PaintEventHandler.cs: Adding missing attribute
18836
18837 2004-08-23 13:39  pbartok
18838
18839         * Cursor.cs:
18840           - Implemented Position property
18841
18842 2004-08-23 13:39  pbartok
18843
18844         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18845           - Added method to move mouse cursor
18846
18847 2004-08-23 13:39  pbartok
18848
18849         * XplatUIX11.cs:
18850           - Fixed setting of background color
18851           - Added method to move mouse cursor
18852
18853 2004-08-23 13:16  jordi
18854
18855         * Control.cs: avoids null exception
18856
18857 2004-08-22 17:46  jackson
18858
18859         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
18860           PictureBox
18861
18862 2004-08-22 17:40  jackson
18863
18864         * XplatUIX11.cs: Add some missing locks
18865
18866 2004-08-22 15:10  pbartok
18867
18868         * Control.cs, Form.cs:
18869           - Removed OverlappedWindow style from Control, instead it's default
18870             now is child
18871           - Made form windows OverlappedWindow by default
18872
18873 2004-08-22 13:34  jackson
18874
18875         * ScrollBar.cs: Update the position through the Value property so
18876           the OnValueChanged event is raised.
18877
18878 2004-08-22 12:04  pbartok
18879
18880         * SWF.csproj:
18881           - Added Cursor.cs and UserControl.cs
18882
18883 2004-08-22 12:03  pbartok
18884
18885         * Cursor.cs:
18886           - Started implementation, not usable yet
18887
18888 2004-08-22 12:00  pbartok
18889
18890         * UserControl.cs:
18891           - Implemented UserControl (complete)
18892
18893 2004-08-21 19:20  ravindra
18894
18895         * ToolBar.cs: Correcting the formatting mess of VS.NET.
18896
18897 2004-08-21 18:49  ravindra
18898
18899         * ToolBar.cs: Probably this completes the missing attributes in
18900           toolbar control.
18901
18902 2004-08-21 18:03  ravindra
18903
18904         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
18905           Fixed toolbar control signatures.
18906
18907 2004-08-21 16:32  pbartok
18908
18909         * LinkLabel.cs:
18910           - Signature Fixes
18911
18912 2004-08-21 16:30  pbartok
18913
18914         * Label.cs:
18915           - Signature fixes
18916
18917 2004-08-21 16:19  pbartok
18918
18919         * Control.cs, Label.cs:
18920           - Signature fixes
18921
18922 2004-08-21 15:57  pbartok
18923
18924         * ButtonBase.cs:
18925           - Added loads of debug output for development
18926           - Fixed typo in method name
18927
18928 2004-08-21 15:52  pbartok
18929
18930         * ToolBarButtonClickEventArgs.cs:
18931           - Added missing base class
18932
18933 2004-08-21 14:53  pbartok
18934
18935         * Control.cs:
18936           - Updated to match new GrabWindow signature
18937
18938 2004-08-21 14:51  pbartok
18939
18940         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18941           - Added method to get default display size
18942
18943 2004-08-21 14:23  pbartok
18944
18945         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18946           - Added method to query current grab state
18947           - Added argument to allow confining a grab to a window
18948
18949 2004-08-21 14:22  pbartok
18950
18951         * Keys.cs:
18952           - Added [Flags] attribute so that modifiers can be used in bitwise
18953           ops
18954
18955 2004-08-21 14:21  pbartok
18956
18957         * TrackBar.cs, ScrollBar.cs:
18958           - Replaced direct XplatUI calls with their Control counterpart
18959
18960 2004-08-21 13:32  pbartok
18961
18962         * Control.cs:
18963           - Implemented Created property
18964
18965 2004-08-21 13:28  pbartok
18966
18967         * Control.cs:
18968           - Implemented ContainsFocus
18969
18970 2004-08-21 13:26  pbartok
18971
18972         * Control.cs:
18973           - Implemented CausesValidation
18974
18975 2004-08-21 13:21  pbartok
18976
18977         * Control.cs:
18978           - Implemented CanFocus
18979           - Implemented CanSelect
18980           - Implemented Capture
18981
18982 2004-08-21 12:35  pbartok
18983
18984         * XplatUIWin32.cs:
18985           - Fixed bug with Async message handling
18986           - Implemented getting the ModifierKeys
18987
18988 2004-08-21 12:32  jackson
18989
18990         * AsyncMethodResult.cs: Make sure we have the mutex before we
18991           release it. Fixes BeginInvoke on windows
18992
18993 2004-08-21 11:31  pbartok
18994
18995         * XplatUIWin32.cs, XplatUIX11.cs:
18996           - Drivers now return proper mouse state
18997
18998 2004-08-21 10:54  jackson
18999
19000         * Control.cs: Implement EndInvoke
19001
19002 2004-08-21 10:48  jackson
19003
19004         * Timer.cs: Remove unneeded finalizer
19005
19006 2004-08-20 19:52  ravindra
19007
19008         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19009           in mouse event handling in the ToolBar control.
19010
19011 2004-08-20 19:50  ravindra
19012
19013         * ImageList.cs: Changed draw method to use the arguments passed in
19014           to draw the image.
19015
19016 2004-08-20 18:58  pbartok
19017
19018         * XplatUIStructs.cs:
19019           - Added private message for async communication
19020
19021 2004-08-20 17:38  ravindra
19022
19023         * Control.cs: Made RightToLeft property virtual and removed a
19024           Console.WriteLine.
19025
19026 2004-08-20 14:39  jordi
19027
19028         * ThemeGtk.cs: use style_attach
19029
19030 2004-08-20 14:39  pbartok
19031
19032         * XplatUIWin32.cs:
19033           - Added jackson's Async code from X11 to Win32
19034
19035 2004-08-20 14:09  pbartok
19036
19037         * SWF.csproj:
19038           - Added all new files
19039
19040 2004-08-20 14:09  pbartok
19041
19042         * Control.cs:
19043           - Added call to set window background color
19044
19045 2004-08-20 14:03  pbartok
19046
19047         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19048           - Added method for setting the window background
19049
19050 2004-08-20 14:02  pbartok
19051
19052         * XplatUIWin32.cs:
19053           - Added method for setting the background color
19054           - Added handling for erasing the window background
19055
19056 2004-08-20 13:45  jordi
19057
19058         * TrackBar.cs: fixes timer, new properties and methods
19059
19060 2004-08-20 13:34  jackson
19061
19062         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19063           correct thread
19064
19065 2004-08-20 13:22  jackson
19066
19067         * Timer.cs: Timer Tick events are now handed through Controls Async
19068           mechanism so the callbacks are executed in the same thread as X
19069
19070 2004-08-20 13:19  jackson
19071
19072         * XplatUIDriver.cs: Expose functionality to send async messages
19073           through the driver
19074
19075 2004-08-20 13:18  jackson
19076
19077         * Control.cs: Implement Begininvoke
19078
19079 2004-08-20 13:14  jackson
19080
19081         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19082           messages through the driver
19083
19084 2004-08-20 13:12  jackson
19085
19086         * XplatUIX11.cs: Lock before all X operations. Also added Async
19087           method functionality through XSendEvent
19088
19089 2004-08-20 13:11  jackson
19090
19091         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19092           This will screw up on 64 bit systems)
19093
19094 2004-08-20 13:10  jackson
19095
19096         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19097           Async messages through X/Win32
19098
19099 2004-08-19 19:39  pbartok
19100
19101         * XplatUIX11.cs:
19102           - Updated code to match new HandleData.DeviceContext type
19103
19104 2004-08-19 19:38  pbartok
19105
19106         * HandleData.cs:
19107           - Made DeviceContext a generic object to allow usage from various
19108           drivers
19109           - Added support for queueing Windows messages
19110
19111 2004-08-19 19:37  pbartok
19112
19113         * XplatUIWin32.cs:
19114           - Added generation of MouseEnter, MouseLeave and MouseHover events
19115           - Added cleanup on EndPaint
19116
19117 2004-08-19 19:17  pbartok
19118
19119         * Control.cs:
19120           - Added handling of WM_MOUSEHOVER
19121           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19122           code
19123
19124 2004-08-19 18:55  jordi
19125
19126         * ThemeGtk.cs: fixes button order
19127
19128 2004-08-19 18:12  jordi
19129
19130         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19131
19132 2004-08-19 17:09  pbartok
19133
19134         * Control.cs:
19135           - Added Right property
19136           - Added RightToLeft property
19137
19138 2004-08-19 16:27  jordi
19139
19140         * ThemeGtk.cs: experimental GTK theme support
19141
19142 2004-08-19 16:26  jordi
19143
19144         * ITheme.cs, Theme.cs: move themes from an interface to a class
19145
19146 2004-08-19 16:25  jordi
19147
19148         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19149           theme enhancaments
19150
19151 2004-08-19 16:04  pbartok
19152
19153         * XplatUIX11.cs:
19154           - Added colormap basics
19155           - Added a way to re-initialize with a different display handle
19156           - Fixed setting of the window background color
19157           - Added various X11 imports related to colors and colormaps
19158
19159 2004-08-19 15:51  pbartok
19160
19161         * X11Structs.cs:
19162           - Removed packing hints (Paolo suggested this a while back)
19163           - fixed colormap type
19164           - Added default Atom types
19165           - Added Screen and color structs and enums
19166
19167 2004-08-19 15:39  pbartok
19168
19169         * ImageList.cs:
19170           - Added missing Draw() method
19171           - Added missing RecreateHandle event
19172
19173 2004-08-19 15:30  pbartok
19174
19175         * Form.cs:
19176           - Added handling of WM_CLOSE
19177
19178 2004-08-18 13:16  jordi
19179
19180         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19181           a table
19182
19183 2004-08-18 09:56  jordi
19184
19185         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19186
19187 2004-08-17 15:31  ravindra
19188
19189         * SWF.csproj: Updated project.
19190
19191 2004-08-17 15:25  pbartok
19192
19193         * Control.cs:
19194           - Drawing improvement; don't call UpdateBounds if we are not visible
19195             (or have been minimized)
19196
19197 2004-08-17 15:24  pbartok
19198
19199         * XplatUIWin32.cs:
19200           - Finished IsVisible
19201           - Added Win32GetWindowPlacement
19202
19203 2004-08-17 15:08  jackson
19204
19205         * Panel.cs: Initial checkin of the Panel
19206
19207 2004-08-17 14:25  pbartok
19208
19209         * Control.cs:
19210           - Fixed broken handling of default window sizes
19211
19212 2004-08-17 13:29  jackson
19213
19214         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19215           has a large startup time.
19216
19217 2004-08-17 10:25  jackson
19218
19219         * HandleData.cs: union areas properly
19220
19221 2004-08-17 10:12  jackson
19222
19223         * HandleData.cs: union areas properly
19224
19225 2004-08-16 20:00  ravindra
19226
19227         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19228
19229 2004-08-16 18:48  ravindra
19230
19231         * ToolBar.cs: Added attributes.
19232
19233 2004-08-16 17:17  ravindra
19234
19235         * SWF.csproj: Updated project.
19236
19237 2004-08-16 17:16  jackson
19238
19239         * XplatUIX11.cs: Check for more expose events before sending a
19240           WM_PAINT so they can all be grouped together. This makes dragging a
19241           window across another window redraw in a sane way.
19242
19243 2004-08-16 15:47  pbartok
19244
19245         * Control.cs:
19246           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19247             support OnMouseEnter/Leave()
19248           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19249             exposure handling
19250
19251 2004-08-16 15:46  pbartok
19252
19253         * XplatUIStructs.cs, XplatUIX11.cs:
19254           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19255           OnMouseEnter/Leave()
19256
19257 2004-08-16 15:34  jackson
19258
19259         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19260           sure messages get the message field set to WM_NULL if they are not
19261           handled.
19262
19263 2004-08-16 15:24  jackson
19264
19265         * HandleData.cs: HandleData is used for storing message information
19266           for window handles
19267
19268 2004-08-15 17:23  ravindra
19269
19270         * ColorDepth.cs: Added attribute.
19271
19272 2004-08-15 17:23  ravindra
19273
19274         * SWF.csproj: Updated project for ToolBar Control.
19275
19276 2004-08-15 17:20  ravindra
19277
19278         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19279           control and also dos2unix format.
19280
19281 2004-08-15 17:13  ravindra
19282
19283         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19284           ToolBarButtonClickEventArgs.cs,
19285           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19286           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19287
19288 2004-08-15 15:31  pbartok
19289
19290         * ButtonBase.cs:
19291           - First (mostly) working version
19292
19293 2004-08-13 16:15  pbartok
19294
19295         * Control.cs:
19296           - Fixed Anchor default
19297
19298 2004-08-13 15:43  pbartok
19299
19300         * Control.cs:
19301           - Changed GetCursorPos signature
19302
19303 2004-08-13 15:42  pbartok
19304
19305         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19306           - Changed signature for GetCursorPos
19307
19308 2004-08-13 15:25  pbartok
19309
19310         * XplatUIX11.cs:
19311           - Cleanup
19312           - Fixed resizing/exposure handling
19313
19314 2004-08-13 15:22  jordi
19315
19316         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19317           with tickposition
19318
19319 2004-08-13 14:55  jordi
19320
19321         * TrackBar.cs: change from wndproc to events
19322
19323 2004-08-13 13:00  jordi
19324
19325         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19326           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19327
19328 2004-08-13 12:53  pbartok
19329
19330         * XplatUIWin32.cs:
19331           - Changed GetWindowPos to also provide client area size
19332           - Fixed broken prototypes for several win32 functions
19333
19334 2004-08-13 12:53  pbartok
19335
19336         * XplatUI.cs, XplatUIDriver.cs:
19337           - Changed GetWindowPos to also provide client area size
19338
19339 2004-08-13 12:52  pbartok
19340
19341         * XplatUIX11.cs:
19342           - Added generation of WM_POSCHANGED
19343           - Changed GetWindowPos to also provide client area size
19344
19345 2004-08-13 12:52  pbartok
19346
19347         * Control.cs:
19348           - Added Dispose() and destructor
19349           - Fixed resizing and bounds calculation
19350           - Fixed Layout
19351           - Added memory savings for invisible windows
19352
19353 2004-08-13 12:46  jordi
19354
19355         * TrackBar.cs: adds timer and grap window
19356
19357 2004-08-13 10:25  jackson
19358
19359         * Timer.cs: SWF Timer
19360
19361 2004-08-12 16:59  pbartok
19362
19363         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19364           - Implemented method to get current mouse position
19365
19366 2004-08-12 14:29  jordi
19367
19368         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19369           enhancement, fix mouse problems, highli thumb, etc
19370
19371 2004-08-12 13:31  pbartok
19372
19373         * Control.cs:
19374           - Fixed Anchoring bugs
19375
19376 2004-08-12 13:01  jackson
19377
19378         * StatusBar.cs: Don't forget things
19379
19380 2004-08-12 12:54  jackson
19381
19382         * ThemeWin32Classic.cs: Handle owner draw status bars
19383
19384 2004-08-12 12:54  jackson
19385
19386         * StatusBar.cs: Implement missing properties, events, and methods.
19387           Handle mouse clicking
19388
19389 2004-08-12 10:19  jackson
19390
19391         * StatusBarPanelClickEventArgs.cs,
19392           StatusBarPanelClickEventHandler.cs: Classes for handling status
19393           bar panel click events
19394
19395 2004-08-12 10:10  jackson
19396
19397         * Control.cs: Add missing properties
19398
19399 2004-08-12 09:46  pbartok
19400
19401         * BindingsManagerBase.cs:
19402           - Name changed to BindingManagerBase.cs
19403
19404 2004-08-12 09:25  jordi
19405
19406         * ScrollableControl.cs: calls ctrlbase instead of exeception
19407
19408 2004-08-11 16:28  pbartok
19409
19410         * InputLanguageChangingEventArgs.cs:
19411           - Never check in before compiling. Fixes the last check-in
19412
19413 2004-08-11 16:26  pbartok
19414
19415         * InputLanguageChangingEventArgs.cs:
19416           - More signature fixes
19417
19418 2004-08-11 16:20  pbartok
19419
19420         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19421           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19422           ImageListStreamer.cs, InputLanguage.cs,
19423           InputLanguageChangedEventArgs.cs,
19424           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19425           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19426           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19427           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19428           - Signature fixes
19429
19430 2004-08-11 16:16  pbartok
19431
19432         * Application.cs:
19433           - Fixed Signature
19434           - Added .Net 1.1 method
19435
19436 2004-08-11 15:25  pbartok
19437
19438         * SWF.csproj:
19439           - Fixed BindingManagerBase.cs filename
19440
19441 2004-08-11 15:22  pbartok
19442
19443         * BindingManagerBase.cs:
19444           - Was checked in with wrong filename
19445
19446 2004-08-11 14:50  pbartok
19447
19448         * SWF.csproj:
19449           - Updated
19450
19451 2004-08-11 13:41  jordi
19452
19453         * XplatUIWin32.cs: Fixes ClientRect
19454
19455 2004-08-11 13:19  pbartok
19456
19457         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19458           XplatUIX11.cs:
19459           - We had SetWindowPos and MoveWindow to set window positions and
19460             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19461             keep SetWindowPos as matching counterpart
19462           - Added some X11 sanity checking
19463
19464 2004-08-11 12:59  pbartok
19465
19466         * Control.cs:
19467           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19468             (It seems that SetBounds is just a front for SetBoundsCore and
19469              SetBoundsCore updates the underlying window system and
19470              UpdateBounds is responsible for updating the variables associated
19471              with the Control and sending the events)
19472           - Major cleanup of Size handling; we now have two sizes, client_size
19473             and bounds. Bounds defines the window with decorations, client_size
19474             without them.
19475
19476 2004-08-11 12:55  pbartok
19477
19478         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19479           - Added method to calculate difference between decorated window and
19480             raw client area
19481
19482 2004-08-11 12:54  pbartok
19483
19484         * Label.cs:
19485           - Forcing redraw on resize
19486
19487 2004-08-11 11:43  pbartok
19488
19489         * ImageList.cs:
19490           - Removed disposing of the actual images when the list is disposed
19491
19492 2004-08-11 09:13  pbartok
19493
19494         * Control.cs:
19495           - Now properly reparents windows
19496
19497 2004-08-11 08:37  pbartok
19498
19499         * Control.cs:
19500           - Duh!
19501
19502 2004-08-11 07:47  pbartok
19503
19504         * Control.cs:
19505           - Rewrote the collection stuff. Might not be as fast now, not
19506             keeping the number of children around and accessible directly, but
19507             it's more straightforward
19508
19509 2004-08-11 07:44  pbartok
19510
19511         * AccessibleObject.cs:
19512           - Fixed to match ControlCollection rewrite
19513
19514 2004-08-11 07:43  pbartok
19515
19516         * ImageList.cs:
19517           - Added missing creation of the collection list
19518
19519 2004-08-10 20:08  jackson
19520
19521         * StatusBar.cs: Get the paint message from WndProc
19522
19523 2004-08-10 19:31  jackson
19524
19525         * ThemeWin32Classic.cs: Create Brushes as little as possible
19526
19527 2004-08-10 19:20  jackson
19528
19529         * UICues.cs: Add Flags attribute
19530
19531 2004-08-10 19:19  jackson
19532
19533         * StatusBarPanel.cs: Signature cleanup
19534
19535 2004-08-10 19:10  jackson
19536
19537         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
19538           Initial implementation of status bar item drawing
19539
19540 2004-08-10 17:27  jordi
19541
19542         * TrackBar.cs: add missing methods, properties, and restructure to
19543           hide extra ones
19544
19545 2004-08-10 16:24  jackson
19546
19547         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
19548           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
19549           attribute
19550
19551 2004-08-10 13:21  jordi
19552
19553         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
19554           enhancements and standarize on win colors defaults
19555
19556 2004-08-10 12:52  jackson
19557
19558         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
19559           ThemeWin32Classic.cs: Implement DrawItem functionality
19560
19561 2004-08-10 12:47  jordi
19562
19563         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
19564
19565 2004-08-10 12:32  jordi
19566
19567         * Control.cs: throw ontextchange event
19568
19569 2004-08-10 11:43  pbartok
19570
19571         * Control.cs:
19572           - Added more to the still unfinished Dock/Anchor layout code
19573
19574 2004-08-10 11:39  pbartok
19575
19576         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19577           - Added GetWindowPos method
19578
19579 2004-08-10 11:36  pbartok
19580
19581         * XplatUIWin32.cs:
19582           - Implemented several methods
19583
19584 2004-08-10 09:47  jackson
19585
19586         * TrackBar.cs: Allow control to handle buffering
19587
19588 2004-08-10 09:41  jackson
19589
19590         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
19591
19592 2004-08-10 09:24  jackson
19593
19594         * Label.cs, LinkLabel.cs: Let Control handle buffering.
19595
19596 2004-08-10 09:09  jackson
19597
19598         * StatusBar.cs: Let Control handle all the buffering.
19599
19600 2004-08-10 09:08  jackson
19601
19602         * Control.cs: Control will now handle the buffering code, so each
19603           control does not have to implement this.
19604
19605 2004-08-10 08:34  jackson
19606
19607         * XplatUIDriver.cs: Use default colors from the theme
19608
19609 2004-08-09 17:12  pbartok
19610
19611         * ImageList.cs:
19612           - Fixed several bugs Ravindra pointed out
19613
19614 2004-08-09 16:11  pbartok
19615
19616         * Control.cs:
19617           - Added incomplete dock layout code
19618           - Added support for mouse wheel
19619
19620 2004-08-09 16:09  pbartok
19621
19622         * XplatUIX11.cs:
19623           - Added handling for middle and right mousebutton
19624           - Added handling for mouse wheel
19625           - Added handling for key state and mouse state and position
19626           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
19627           messages
19628
19629 2004-08-09 15:40  jackson
19630
19631         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
19632           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
19633           checkin
19634
19635 2004-08-09 15:37  jackson
19636
19637         * StatusBar.cs: Initial implementation of StatusBar
19638
19639 2004-08-09 15:36  jackson
19640
19641         * ITheme.cs: Add support for drawing status bar and getting status
19642           bar item sizes
19643
19644 2004-08-09 15:35  pbartok
19645
19646         * MouseButtons.cs:
19647           - Fixed values
19648
19649 2004-08-09 15:34  jackson
19650
19651         * ThemeWin32Classic.cs: Add support for drawing status bar and get
19652           status bar item sizes
19653
19654 2004-08-09 15:21  jackson
19655
19656         * ThemeWin32Classic.cs: Use known colors for default control
19657           colours
19658
19659 2004-08-09 15:12  jackson
19660
19661         * ThemeWin32Classic.cs: Make the default font static, it is static
19662           in control so this doesn't change functionality and creating fonts
19663           is sloooooow.
19664
19665 2004-08-09 14:56  pbartok
19666
19667         * X11Structs.cs:
19668           - Added GrabMode enum
19669
19670 2004-08-09 14:55  pbartok
19671
19672         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19673           - Removed Run method, was only required for initial development
19674
19675 2004-08-09 14:51  pbartok
19676
19677         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19678           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
19679           capture
19680
19681 2004-08-09 13:48  pbartok
19682
19683         * XplatUIX11.cs:
19684           - Fixed default sizing for child windows
19685
19686 2004-08-09 12:56  pbartok
19687
19688         * XplatUIX11.cs:
19689           - Added generation of WM_DESTROY message
19690           - Added handling of window manager induced shutdown
19691
19692 2004-08-09 11:31  jackson
19693
19694         * ThemeWin32Classic.cs: New names for control properties
19695
19696 2004-08-09 11:25  jackson
19697
19698         * Control.cs: Use new color names
19699
19700 2004-08-09 11:02  jackson
19701
19702         * XplatUI.cs: Get default window properties from the theme
19703
19704 2004-08-09 11:01  jackson
19705
19706         * ITheme.cs: The theme engine now controls default window
19707           properties
19708
19709 2004-08-09 11:00  jackson
19710
19711         * ThemeWin32Classic.cs: Add default window color properties
19712
19713 2004-08-09 10:17  jackson
19714
19715         * ThemeWin32Classic.cs: Use correct default back color
19716
19717 2004-08-09 10:05  jackson
19718
19719         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
19720           the theme now.
19721
19722 2004-08-09 09:56  jackson
19723
19724         * XplatUI.cs: Remove defaults, these are handled by the theme now.
19725
19726 2004-08-09 09:54  jackson
19727
19728         * Control.cs: Get default properties from the theme.
19729
19730 2004-08-09 09:53  jackson
19731
19732         * ITheme.cs: Themes now handle default control properties
19733
19734 2004-08-09 09:53  jackson
19735
19736         * ThemeWin32Classic.cs: Themes now handle default control
19737           properties so coloring will be consistent
19738
19739 2004-08-08 16:54  jordi
19740
19741         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
19742
19743 2004-08-08 15:08  jordi
19744
19745         * XplatUIX11.cs: fixes keyboard crash
19746
19747 2004-08-08 13:47  jordi
19748
19749         * Label.cs: add cvs header info
19750
19751 2004-08-08 12:09  jackson
19752
19753         * ThemeWin32Classic.cs: Add pen_buttonface
19754
19755 2004-08-08 11:52  jordi
19756
19757         * Label.cs, LinkLabel.cs: [no log message]
19758
19759 2004-08-08 11:34  jordi
19760
19761         * ThemeWin32Classic.cs: Use Windows Standard Colours
19762
19763 2004-08-07 17:32  jordi
19764
19765         * TrackBar.cs: throw exceptions of invalid enums values
19766
19767 2004-08-07 17:31  jordi
19768
19769         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
19770           draw method name
19771
19772 2004-08-07 16:56  jackson
19773
19774         * HorizontalAlignment.cs: Initial checkin
19775
19776 2004-08-07 13:16  jordi
19777
19778         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
19779           methods
19780
19781 2004-08-07 13:05  jordi
19782
19783         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
19784           GetSysColor defines
19785
19786 2004-08-06 18:01  pbartok
19787
19788         * ThemeWin32Classic.cs:
19789           - Fixed some rounding issues with float/int
19790
19791 2004-08-06 18:00  jackson
19792
19793         * DockStyle.cs, AnchorStyles.cs:
19794
19795                   Add flags and serializable attributes.
19796
19797 2004-08-06 17:46  pbartok
19798
19799         * XplatUIX11.cs:
19800           - Implemented GetParent
19801
19802 2004-08-06 17:18  pbartok
19803
19804         * TrackBar.cs:
19805           - Fixed some rounding issues with float/int
19806
19807 2004-08-06 17:17  pbartok
19808
19809         * X11Structs.cs, XplatUIX11.cs:
19810           - Fixed Refresh and Invalidate
19811
19812 2004-08-06 15:30  pbartok
19813
19814         * Control.cs, X11Structs.cs, XplatUIX11.cs:
19815           - Fixed recursive loop when resizing
19816           - Improved/fixed redrawing on expose messages
19817
19818 2004-08-06 09:53  jordi
19819
19820         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
19821           keyboard navigation
19822
19823 2004-08-06 08:02  pbartok
19824
19825         * X11Structs.cs, XplatUIX11.cs:
19826           - Fixed reparenting
19827           - Fixed window border creation
19828
19829 2004-08-05 15:38  pbartok
19830
19831         * XplatUIX11.cs:
19832           - Attempted fix for reparenting problems
19833
19834 2004-08-04 15:14  pbartok
19835
19836         * Control.cs:
19837           - Fixed Invalidation bug (calculated wrong client area)
19838           - Added ClientSize setter
19839
19840 2004-08-04 15:13  pbartok
19841
19842         * Form.cs:
19843           - Added AutoScale properties
19844
19845 2004-08-04 15:13  pbartok
19846
19847         * SWF.csproj:
19848           - Added latest files
19849
19850 2004-08-04 14:11  pbartok
19851
19852         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19853           XplatUIX11.cs:
19854           - Added Invalidate handling
19855
19856 2004-08-03 17:09  jordi
19857
19858         * XplatUIDriver.cs: fixes spelling mistake
19859
19860 2004-07-27 09:53  jordi
19861
19862         * TrackBar.cs: fixes trackbar events, def classname, methods
19863           signature
19864
19865 2004-07-27 09:29  jordi
19866
19867         * ScrollBar.cs: fixes scrollbar events
19868
19869 2004-07-27 04:38  jordi
19870
19871         * Control.cs: changes to be able to run winforms samples
19872
19873 2004-07-26 11:42  jordi
19874
19875         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
19876           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
19877
19878 2004-07-26 05:41  jordi
19879
19880         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
19881           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
19882           implementation
19883
19884 2004-07-22 09:22  jordi
19885
19886         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
19887           check link overlapping, implement events, and fixes
19888
19889 2004-07-21 10:28  jordi
19890
19891         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
19892
19893 2004-07-21 10:19  jordi
19894
19895         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
19896           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
19897           LinkLabelLinkClickedEventArgs.cs,
19898           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
19899           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
19900           implementation
19901
19902 2004-07-19 13:09  jordi
19903
19904         * Control.cs, Label.cs: label control re-written: added missing
19905           functionlity, events, and properties
19906
19907 2004-07-19 10:49  jordi
19908
19909         * Control.cs: fixes SetBounds logic
19910
19911 2004-07-19 01:29  jordi
19912
19913         * Control.cs: Call RefreshWindow only if the window has created
19914
19915 2004-07-15 14:05  pbartok
19916
19917         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
19918           - Implemented ImageList and ImageList.ImageCollection classes
19919           - Added ColorDepth enumeration
19920           - Updated SWF VS.Net project
19921
19922 2004-07-15 11:06  jordi
19923
19924         * XplatUIStructs.cs: added MsgButons enum
19925
19926 2004-07-15 11:03  jordi
19927
19928         * Control.cs: added basic mouse handeling events
19929
19930 2004-07-15 03:38  jordi
19931
19932         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
19933           Vertical TrackBar control implementation
19934
19935 2004-07-13 09:33  jordi
19936
19937         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
19938
19939 2004-07-13 09:31  jordi
19940
19941         * Control.cs, Form.cs: commit: new properties and fixes form size
19942           problems
19943
19944 2004-07-09 14:13  miguel
19945
19946         * ProgressBar.cs: Spelling
19947
19948 2004-07-09 11:25  pbartok
19949
19950         * ProgressBar.cs:
19951           - Removed usage of Rectangle for drawing. Miguel pointed out it's
19952           faster
19953
19954 2004-07-09 11:17  miguel
19955
19956         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
19957
19958                 * ProgressBar.cs: Fixed spelling for `block'
19959
19960                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
19961                 style guidelines.
19962
19963                 Avoid using the += on rect.X, that exposed a bug in the compiler.
19964
19965 2004-07-08 23:21  pbartok
19966
19967         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
19968           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
19969           BaseCollection.cs, Binding.cs, BindingContext.cs,
19970           BindingMemberInfo.cs, BindingsCollection.cs,
19971           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
19972           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
19973           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
19974           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
19975           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
19976           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
19977           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
19978           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
19979           FrameStyle.cs, GiveFeedbackEventArgs.cs,
19980           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
19981           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
19982           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
19983           InputLanguageChangedEventArgs.cs,
19984           InputLanguageChangedEventHandler.cs,
19985           InputLanguageChangingEventArgs.cs,
19986           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
19987           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
19988           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
19989           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
19990           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
19991           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
19992           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
19993           QueryAccessibilityHelpEventArgs.cs,
19994           QueryAccessibilityHelpEventHandler.cs,
19995           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
19996           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
19997           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
19998           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
19999           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20000           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20001           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20002           XplatUIX11.cs, lang.cs:
20003           - Initial check-in
20004