* DataGridTextBoxColumn.cs: remove some spew.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-04  Chris Toshok  <toshok@ximian.com>
2
3         * DataGridTextBoxColumn.cs: remove some spew.
4
5         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
6         but some part of me is saying "it shouldn't be here.."  At any
7         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
8         setting the value.
9
10 2006-12-04  Chris Toshok  <toshok@ximian.com>
11
12         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
13         to reassign the propertydescriptor.
14
15 2006-12-04  Jackson Harper  <jackson@ximian.com>
16
17         * TextBoxBase.cs:
18         * TextControl.cs: Remove some unused variables.  Maybe this will
19         patch things up between mike and I.
20         - don't split lines less then one char wide, if the viewport is
21         that small text won't be visible anyways.
22         
23 2006-12-04  Jackson Harper  <jackson@ximian.com>
24
25         * TextBoxBase.cs: Default selection length is -1, need to do some
26         more testing on windows to see when this is used for the property.
27         - Redid the Lines [] property to that we properly remove soft line
28         breaks
29         - added support for preserving carriage returns
30         -  CanUndo is not a variable like 'is undo enabled' it just returns
31         true if there is undo operations available.
32         - AppendText doesn't need to grab the last tag itself anymore,
33         this happens automatically when we move the cursor.
34         * TextControl.cs: Add CompoundActions to the undo class. This
35         allows combining the other operations into one big option.  ie a
36         paste will combine { delete old, insert new, move cursor }
37         - Add InsertString undo operation
38         - New method for deleting multiline text
39         - Add carriage returns to lines. So we can preserve carriage
40         returns when text is 'roundtripped'
41
42 2006-12-04  Chris Toshok  <toshok@ximian.com>
43
44         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
45         minimum 0.  Fixes the scrollbar exception in bug #80136.
46
47 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
48
49         * MdiClient.cs: 
50         * MdiWindowManager: Removed unused fields and methods.
51         
52 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
53         
54         * StatusBar.cs: Update all panels when a AutoSize=Contents
55         panel needs updating.
56         
57         * StatusBarPanel.cs: Remove twidth and only use initialize.
58         Fixes #80031.
59                 
60 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
61
62         * Form.cs: When a form's MdiParent is set add it directly
63         on top of the z-order in stead of relying on MdiClient's
64         ActivateChild to do it. Fixes #80135.
65         
66         * MdiClient.cs: 
67         - Remove original_order, mdi_child_list is already doing
68         the same thing.
69         - Create mdi_child_list on construction in
70         stead of first use (avoids a few null checks).
71
72         * MenuItem.cs: Use an already existing list of mdi children
73         to get the correct order of children and remove the other
74         redundant list.
75
76 2006-12-04  Chris Toshok  <toshok@ximian.com>
77
78         * PropertyGridView.cs: cached_splitter_location is only used in
79         !DOUBLEBUFFER code.
80
81         * PropertyGrid.cs: implement the ComComponentNameChanged event
82         using Events, hoping that would fix the warning.  Looks like a
83         compiler bug instead (#80144).
84
85         * PropertyManager.cs: remove unused method.
86
87 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
88
89         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
90         include parentesis to fix expression evaluation. Fixes #79634.
91
92 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
93         
94         * MenuAPI.cs:
95         - Changes to fix behavior in Menu control, some reported in #80097
96         and other detected during behavior refactory like a select event
97         problems.
98         - Remove unneded "if's" conditions.
99         - Created an internal to flag when popup is active in control, we need 
100         it because in .NET you can have menu active but without popup active
101         when you active menu using popup without visible items.
102         - Mimic win32 behavior for Select and Popup events.  
103         - Dont open popup menu when you dont have visible subitems.
104         - Do nothing when click on disabled menu item.
105         - Some small changes to follow the coding style guidelines.
106         - Unselect menu only when another control gives focus. Fixes #80097.
107         - Remove unused code.
108         
109         * MenuItem.cs: internal VisibleItems method to check if menu
110         theres visible subitems, it will be usefull to fix some 
111         behavior in Menu control.
112         
113 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
114         
115         * Timer.cs: Tag property for 2.0 profile.
116         
117 2006-12-01  Chris Toshok  <toshok@ximian.com>
118
119         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
120         
121         * Win32DnD.cs: comment out some unused fields.
122
123         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
124         some unused properties/methods.
125
126         * XplatUIX11.cs: fix MousePosition so we override the base class's
127         property instead of conflicting with it.
128
129         * PictureBox.cs: comment out some unused fields
130
131         * OSXStructs.cs: make some struct fields public.
132
133         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
134         MousePosition so we override the base class's property instead of
135         conflicting with it.
136
137         * X11Dnd.cs: comment out some unused fields
138
139         * X11DesktopColors.cs: fix some struct field visibility to quiet
140         the compiler.
141
142         * X11Dnd.cs: remove some debug code.
143
144         * ThemeClearlooks.cs: comment out unused field.
145
146         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
147
148         * ThemeGtk.cs: comment out some unused pinvokes.
149
150         * Timer.cs: remove some unused fields.
151
152         * ThemeClearlooks.cs: comment out unused field.
153
154         * UpDownBase.cs: comment out unused field.
155
156         * DataObject.cs: comment out unused field.
157
158         * DataGridBoolColumn.cs: reomve unused field.
159
160         * DataGrid.cs: remove unused field.
161
162         * Cursor.cs: remove old ToBitmap code.
163
164         * ControlPaint.cs: remove unused method.
165
166         * ScrollBar.cs: remove unused fields.
167
168         * ComboBox.cs: remove unused field, and chain up to
169         AccessibleObject ctor.
170
171         * ListBox.cs: remove unused field.
172
173         * ButtonBase.cs: wrap a couple fields in NET_2_0.
174
175         * GridEntry.cs: remove unused fields.
176
177         * Binding.cs: remove unused fields.
178
179         * AxHost.cs: remove unused method.
180
181         * ContainerControl.cs: remove unused field.
182
183         * ScrollableControl.cs: remove unused fields.
184
185 2006-12-01  Chris Toshok  <toshok@ximian.com>
186
187         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
188         the Where/WhereString stuff.  it's easy enough to CWL
189         Environment.StackTrace.
190
191         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
192         unused private fields.
193
194 2006-12-01  Jackson Harper  <jackson@ximian.com>
195
196         * TextControl.cs: Do not update the view while inserting multiline
197         text. If we update the view we might wrap lines, before entering
198         the new lines, which causes the new line insertion calculations to
199         be totally fubared.
200         - Remove an old TODO
201         - Make debug output a little nicer
202         
203 2006-12-01  Chris Toshok  <toshok@ximian.com>
204
205         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
206
207 2006-12-01  Chris Toshok  <toshok@ximian.com>
208
209         [ fix the majority of the CS0108 warnings we've been suppressing ]
210         
211         * TreeView.cs: mark BackgroundImageChanged as 'new'.
212
213         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
214         to "LayoutToolBar" to quiet mcs.
215         
216         * TabControl.cs: mark our ControlCollection class as 'new'.
217
218         * TextBoxBase.cs: mark some events as 'new'.
219
220         * Splitter.cs: TabStop is 'new'.
221
222         * ControlBindingsCollection.cs: mark a few methods as new since
223         they change the visibility from protected to public.
224
225         * RadioButton.cs: DoubleClick -> base class, and remove unused
226         HaveDoubleClick.
227
228         * MonthCalendar.cs: ImeMode property -> base class, and mark many
229         events as new.
230
231         * NumericUpDown.cs: TextChanged -> base class.
232
233         * CheckedListBox.cs: mark our ObjectCollection class as new to
234         quiet mcs.
235
236         * FolderBrowserDialog.cs: make HelpRequest event new and have it
237         muck with the base class.
238
239         * StatusBar.cs: fix some mcs warnings about Update being the same
240         name as a base class method.
241
242         * RichTextBox.cs: mark some events as new, and make them do things
243         to the base class impl.
244
245         * UserControl.cs: mark TextChanged as new, and have it manipulate
246         base.TextChanged.
247
248         * UpDownBase.cs: mark some things new.
249
250         * CheckBox.cs: mark DoubleClick "new", and add some text about
251         what we need to look at.
252
253         * Panel.cs: make the events "new", and manipulate the base
254         version.  these are just here for attributes.
255
256         * AccessibleObject.cs: make owner private.
257
258         * Control.cs: deal with AccessibleObject.owner being private.
259         cache our own copy if we need it.
260
261         * Button.cs: add "new" to the DoubleClickEvent.
262
263         * ListBox.cs: no need to track our own has_focus here.  let
264         Control.has_focus do it for us.  Also some other work to clear up
265         warnings about not overriding base class methods of the same name.
266         
267         * ComboBox.cs: clear up some warnings about not override base
268         class methods of the same name.
269
270 2006-12-01  Chris Toshok  <toshok@ximian.com>
271
272         * Form.cs: flag a few things as "new" to quiet some of the mcs
273         warnings.
274
275         * AxHost.cs: same.
276
277         * PrintPreviewDialog.cs: same.
278
279         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
280         now DGV isn't so horrible on the class status page.  also, move
281         all events to using System.ComponentModel.EventHandlerList.  my
282         wrists hurt.
283
284 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
285
286         * MdiWindowManager.cs:
287         - Set form to active mdi child if shown,
288         and update the active mdi child to the next 
289         remaining child in the z-order if the form is hidden.
290
291         * Form.cs: 
292         - Track if the form has been visible and if its 
293         visibility is beeing changed, so that the MdiClient
294         can properly decide the ActiveMdiChild. The MdiClient 
295         cannot track this since the form can change visibility 
296         before MdiClient is created.
297
298         * MdiClient.cs:
299         - Don't activate anything of the parent form is changing
300         its visibility.
301         - Rework ActiveMdiChild to only return visible mdi 
302         children and take into account several other corner 
303         cases.
304
305 2006-12-01  Chris Toshok  <toshok@ximian.com>
306
307         * IBindableComponent.cs: new 2.0 interface.
308
309 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
310
311         * DataGrid.cs: Font for caption area is bold by default.
312
313 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
314
315         * Menu.cs: Tag property for 2.0.
316         
317 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
318
319         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
320         
321 2006-12-01  Chris Toshok  <toshok@ximian.com>
322
323         * TreeView.cs: doh, the Begin* events should be
324         TreeViewCancelEventHandler.
325
326 2006-12-01  Chris Toshok  <toshok@ximian.com>
327
328         * Form.cs: Form.ControlCollection already stores off the
329         form_owner field.  don't access the base class's internal "owner"
330         field.
331
332         * Control.cs: make all the fields in Control.ControlCollection
333         private.  there's no need for any internal fields here.
334
335 2006-12-01  Chris Toshok  <toshok@ximian.com>
336
337         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
338         OnHandleCreated.  Fixes bug #80109.
339
340 2006-12-01  Chris Toshok  <toshok@ximian.com>
341
342         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
343         SplitContainer.cs, Control.cs, StatusStrip.cs,
344         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
345         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
346         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
347         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
348         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
349         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
350         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
351         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
352         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
353         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
354
355         do most of the work to convert our code over to use
356         System.ComponentModel.Component.Events for
357         adding/removing/dispatching events.
358
359
360 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
361
362         * DataGridView.cs: Fix an ArgumentNullException reported 
363         twice today in IRC.
364
365 2006-11-30  Mike Kestner  <mkestner@novell.com>
366
367         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
368         grabbed listbox.  Fixes #80036 and #80101.
369
370 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
371
372         * Message.cs: Changed ToString() to match MS.
373         
374 2006-11-30  Jackson Harper  <jackson@ximian.com>
375
376         * TextBoxBase.cs: You can still change the selected text on a read
377         only textbox.
378         * TextControl.cs: Lower magic number for wrap calculations. This
379         lets text get closer to the right (far) edge.
380
381 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
382
383         * Control.cs: Tweak 2.0 layout properties.
384         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
385         * TextRenderer.cs: Add a new overload.
386         * ToolStrip*: Huge amount of changes and new features.
387
388 2006-11-30  Mike Kestner  <mkestner@novell.com>
389
390         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
391         scroll range correct.  Fixes #79994.
392
393 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
394
395         * MdiWindowManager.cs: Update main form's text when
396         a form is closed. (fixes #80038)
397         
398 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
399
400         * ToolBar.cs:
401         - Fix an regression in ButtonSize.
402         - Get ImeMode default value change to "Disable".
403         - Get ShowTooltips default value change to true, default value is 
404         "false" but after make a test in .NET we get "true" result as default.
405         
406 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
407
408         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
409
410 2006-11-29  Chris Toshok  <toshok@ximian.com>
411
412         * XplatUIWin32.cs (GetWindowTransparency): check return value of
413         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
414         SetWindowTransparency hasn't been called.
415
416 2006-11-29  Chris Toshok  <toshok@ximian.com>
417
418         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
419         if it's supported.
420         (set_AllowTransparency): reorder things a little so that the
421         WS_EX_LAYERED style is removed properly.
422
423 2006-11-29  Chris Toshok  <toshok@ximian.com>
424
425         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
426         
427         * Form.cs: only call the XplatUI transparency method (get/set) if
428         SupportsTransparency says it's supported. Otherwise fallback to
429         doing nothing (in the set case) or returning the instance field we
430         cache (in the get case).
431
432         * XplatUIStructs.cs: add TransparencySupport flag enum.
433         
434         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
435         change to SupportsTransparency.
436
437         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
438         TransparencySupport.None from SupportsTransparency.
439
440         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
441         TransparencySupport.Set from SupportsTransparency.
442
443         * XplatUIWin32.cs: implement GetWindowTransparency calling
444         GetLayeredWindowAttributes, and implement SupportsTransparency by
445         checking whether or not both
446         GetWindowTransparency/SetWindowTransparency are available
447         entrypoints.  We need to do this since SetWindowTransparency is
448         available as of win2k, but GetWindowTransparency requires winxp.
449         yay win32 api.
450
451         * XplatUI.cs: Add GetWindowTransparency, and change
452         SupportsTransparency to allow for either/both Get/Set.
453
454 2006-11-29  Chris Toshok  <toshok@ximian.com>
455
456         * DataGrid.cs: keep from going into an infinite loop redrawing a
457         datagrid that has no datasource.  Fixes bug #80033.
458
459 2006-11-29  Chris Toshok  <toshok@ximian.com>
460
461         * MenuItem.cs: fix the NRE when we assign text (and therefore call
462         Invalidate) before the mainmenu has been assigned to a control.
463
464 2006-11-29  Chris Toshok  <toshok@ximian.com>
465
466         * DataGrid.cs: detect when we should be double the double click
467         row/column autosize stuff, although that codepath has yet to be
468         written.  part of the work for bug #79891.
469
470 2006-11-29  Chris Toshok  <toshok@ximian.com>
471
472         * Binding.cs (SetControl): fix unit test.
473
474 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
475
476         * PageSetupDialog.cs: Validate the margins and set them in
477         PageSettings. 
478         * NumericTextBox.cs: New class to mimic the behavior of the
479         textboxes used in the printing dialogs.
480
481 2006-11-29  Andreia Gaita  <avidigal@novell.com>
482         
483         * Form.cs: Revert previous change (remove call UpdateBounds
484         from form constructor), because it messes with the handle creation
485         order, and that one needs lots and lots of love.
486         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
487         for valid printer and throw InvalidPrinterException if document
488         is set but printer not valid), adding a MonoTODO. Once 
489         handle creation is done properly, we can put this back in.
490
491 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
492
493         * MenuItem.cs: Create a invalidate method for menu item, to be
494         calling from set text, it make text changes to imadiate update
495         on screen. Fixes #80013. 
496         
497 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
498
499         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
500         fixes bug #80070 and some other problem on toolbar buttons
501         layout.
502
503 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
504
505         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
506         with dotted brush.      Fixes #79564
507         
508 2006-11-28  Andreia Gaita  <avidigal@novell.com>
509
510         * Form.cs: Removed call to UpdateBounds on Form
511         constructor, it was causing a call to CreateHandle
512         before it was supposed to.
513         * PrintControllerWithStatusDialog: Applied patch
514         by Chris Toshok to hide controller when there are
515         no printers available.
516         PrintDialog.cs: initialize printer settings to 
517         null - correct DefaultValues test #5
518         * PrintPreviewControl.cs: Move PrintController
519         initialization to GeneratePreview
520         * PrintPreviewDialog.cs: 
521         - Remove Preview generation     from Document_set(). It is 
522         called on OnPaint
523         - Throw InvalidPrinterException on CreateHandle if
524         a Document is set but there are no printers or 
525         printer is not valid.
526         * ThemeWin32Classic: don't paint PrintPreviewControl
527         if there is nothing to paint    
528
529 2006-11-28  Miguel de Icaza  <miguel@novell.com>
530
531         * Form.cs: Add another popular method.
532
533         * TabPage.cs: ditto.
534
535 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
536
537         * MenuItem.cs: Fixed a warning.
538         * InternalWindowManager: Fixed a warning.
539
540 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
541
542         * MenuItem.cs:
543         - When cloning a menu also clone MdiList and clone the 
544           window menu items properly (as the forms and menuitems
545           are kept in an internal hashtable, these need updating 
546           as well)
547         - Rewrote the window menu code, menu items are added in the
548           order the forms were added to their parent, and they are
549           updated every time the window menu is shown (before the
550           list was only generated once, in the current order of the
551           forms, and would never be updated). A checkmark is shown
552           next to the item corresponding to the active mdi child.
553
554 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
555
556         * XplatUIStructs.cs: 
557         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
558         
559         * XplatUIWin32.cs: 
560         - Added TME_NONCLIENT to TMEFlags.
561         - Handles WM_NCMOUSEMOVE in GetMessage to 
562           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
563
564         * MdiWindowManager:
565         - Now merges mdi child menu to parent menu when maximized.
566         - Recalculate NC areas of both mdi child and mdi parent. 
567           Fixes #79757 (4).
568           on window state and size changes.Fixes #79844 (3).
569         - Handle WM_NCCALCSIZE to properly calculate borders.
570
571         * Form.cs:
572         - Add/remove to the mdi containers list of mdi children 
573           in the order they are added.
574         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
575           to the maximized mdi child.
576         
577         * InternalWindowManager.cs:
578         - Only execute a click on the control buttons on the mouse up,
579           not on the mouse down. Show the state of the button 
580           (was only showing Normal state, never Pressed state). The
581           pressed button now follows the mouse (if you click the Close 
582           button and move the mouse over the Maximize button, the 
583           Maximize button will be shown as pressed). Since Win32 does
584           not generate WM_NCLBUTTONUP if you release the button outside
585           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
586           it as a mouse up.
587         
588         * ThemeWin32Classic.cs:
589         - Draw a missing border around mdi child forms. Fixes #79844 (2).
590
591         * MdiClient.cs:
592         - Added a list of forms which contains the order the forms are
593           added to the mdi parent.
594         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
595         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
596         - If the active form changes set the scrollbars to the top
597           of the Z order, otherwise the form could hide them.
598         - Scrollbars are now sized according to ClientSize, not 
599           to Size, and they take into account the other scrollbar
600           to determine maximum.
601         
602 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
603         
604         * XplatUI.cs:
605         * XplatUIDriver.cs:
606         * XplatUIX11.cs:
607         * XplatUIWin32.cs:
608         * XplatUIOSX.cs:
609         - Added RequestAdditionalWM_NCMessages for windows to 
610           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
611           Currently only implemented in XplatUIWin32.
612
613 2006-11-27  Chris Toshok  <toshok@ximian.com>
614
615         * Hwnd.cs: only add the hwnd to the windows hash in
616         set_WholeWindow and set_ClientWindow if whole_window/client_window
617         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
618
619 2006-11-27  Mike Kestner  <mkestner@novell.com>
620
621         * ComboBox.cs: remove redundant OnDropDown call.  It is called
622         from the ComboListBox.ShowWindow code. Fixes #79969.
623
624 2006-11-27  Chris Toshok  <toshok@ximian.com>
625
626         * Hwnd.cs: remove the setters for ExposePending and
627         NCExposePending - noone uses them.
628
629 2006-11-27  Jackson Harper  <jackson@ximian.com>
630
631         * TextControl.cs: new param for ReplaceSelection which determines
632         whether we select the new selection, or set the cursor to the end
633         of the new selection.
634         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
635         pasting, select the new text.
636         * RichTextBox.cs: Use new param for ReplaceSelection.
637
638 2006-11-27  Jackson Harper  <jackson@ximian.com>
639
640         * TextBoxBase.cs: Set the selection to the caret after the caret
641         is moved, otherwise they get out of sync.
642
643 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
644
645         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
646         it fixes #80015
647
648 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
649
650         * ThemeWin32Classic.cs: 
651         - Fix toolbar drop down arrow position.
652         - Fix drop down appearance when ToolBar.Appearance is normal,
653         it fixes #80018.
654         
655 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
656
657         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
658         * Control.cs: Same.
659         * UpDownBase.cs: Same.
660         * ButtonBase.cs: Same.
661         * ScrollBar.cs: Same.
662         * TrackBar.cs: Same.
663         * PictureBox.cs: Same.
664         * UserControl.cs: Same.
665         * Label.cs: Same.
666         * ListControl.cs: Same.
667         * TextBoxBase.cs: Same.
668         * ListView.cs: Same.
669         * RichTextBox.cs: Same.
670         * TreeView.cs: Same.
671
672 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
673
674         * PrintDialog.cs:
675         - Text label for where 
676         - Text label comment was not shown
677
678 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
679
680         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
681
682 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
683
684         * InternalWindowManager.cs: 
685         - Handle WM_PARENTNOTIFY to activate the form
686         if any child control is clicked.
687         - The form is only sizable if not minimized.
688
689         * MdiWindowManager.cs:
690         - Save the IconicBounds if the form is moved.
691         - Rework SetWindowState, now the window bounds 
692         are stored only if the old window state is Normal.
693         
694         * MdiClient.cs:
695         - In SetWindowStates store the old window state if 
696         the window is maximized and restore window state if
697         the window looses focus.
698         - Don't handle any scrollbar value changes if 
699         initializing the scroll bars. Fixes #79771.
700         - Reworked ArrangeIconicWindows. Current algorithm
701         tests bounds agains all other minimized windows, if
702         any intersections create new bounds (going left to 
703         right, bottom to top) and then test again. When 
704         successful the bounds are saved and never computed
705         again. Fixes #79774.
706
707 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
708
709         * InternalWindowManager.cs: Added HandleTitleBarUp.
710
711 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
712
713         * NumericUpDown.cs: In .NET 1.1, user entered text is still
714         hexadecimal in ParseUserEdit.
715
716         
717 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
718
719         * MdiWindowManager.cs: 
720         - Handle a click on the form's icon to show the 
721         system menu (when maximized). Fixes #79775.
722         - Change the existing click handler for the form's
723         icon when not maximized to show on MouseUp.
724         Fixes #79776.
725
726         * Form.cs: In OnResize only layout the mdi child's
727         parent if it actually has a parent. Might not if
728         the window is closing.
729
730
731 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
732
733         * MdiClient.cs: Ignore active MDI client for text of parent, if
734         child has no text set.
735
736 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
737
738         * ToolBar.cs: Fixed ToString to match MS.
739
740 2006-11-22  Andreia Gaita  <avidigal@novell.com>
741
742         * NumericUpDown: 
743         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
744         update inner values on set. Fixes #79966.
745         - Override OnLostFocus to update value on NET 2. Fixes #79950.
746         - Fix hexadecimal parsing.
747         
748         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
749         parent. Fixes #79957
750
751 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
752
753         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
754         the actual size has to be queried, since if height /
755         width is negative Win32 changes it to 0. 
756         Fixes #79999 on Windows.
757         
758         * XplatUIX11.cs: Set height / width to 0 if negative
759         in SetWindowPos. Fixes #79999 on Linux.
760         
761 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
762
763         * ThemeWin32Classic.cs: Fix text redenring when button is
764         pressed.
765
766 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
767
768         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
769         and later navigate by mouse. Fixes #79528.
770
771 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
772
773         * ToolBar.cs: Set default value for TabStop to false in
774         constructor, it fixes remaining behavior of bug #79863.
775
776 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
777
778         * MdiWindowManager.cs:
779         * InternalWindowManager.cs:
780         - Moved a few methods specific to Mdi from 
781         InternalWindowManager to MdiWindowManager.
782         Fixes #79996.
783         
784 2006-11-21  Chris Toshok  <toshok@ximian.com>
785
786         * XplatUIOSX.cs: stub out InvalidateNC.
787
788         * XplatUIWin32.cs: implement InvalidateNC using the call I found
789         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
790
791         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
792
793         * XplatUIDriver.cs: add InvalidateNC abstract method.
794
795         * XplatUI.cs: add InvalidateNC.
796
797 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
798
799         * ToolBar.cs: Invalidate complete button area when pressed status 
800         was changed.
801         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
802         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
803         by 1 when button is pressed.
804
805 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
806
807         * ToolButton.cs: Invalidate middle of DropDown button when
808         ToolBar theres DropDownArrows.
809         * ThemeWin32Classic.cs: Change position of DropDown arrow and
810         fix DropDown drawing operations.
811
812 2006-11-20  Chris Toshok  <toshok@ximian.com>
813
814         * NativeWindow.cs: fix the formatting of functions ('{' on the
815         following line), and enable the thread exception dialog.
816
817         * Application.cs: remove the duplicate exception catching from
818         here.
819
820 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
821
822         * Toolbar.cs: Triggers button click event when click on icon
823         of dropdown ToolBarButton. Fixes #79912.
824         
825 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
826
827         * Theme.cs:
828         * ThemeWin32Classic.cs:
829         - Added a property WindowBorderFont to enable themeing
830           of mdi child windows' Text.
831           
832 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
833
834         * InternalWindowManager.cs:
835         * Form.cs:
836         * MdiClient.cs:
837         * MdiWindowManager.cs: 
838         - If mdi child is maximized, set mdi parent's
839           text to "Parent - [Child]". Fixes #79770.
840         - If there is any maximized mdi child windows, only the active 
841           window (and any new windows) is maximized, the rest are normal.
842         - On a WindowState change only save mdi child's window bounds 
843           if the old window state was normal. Fixes #79774.
844         - The scroll bars are now calculated on hopefully all
845           necessary events. Fixed #79771 / #79844->6 / #79906.
846         - MdiClient.SizeScrollBars() now takes into account docked 
847           controls in the parent when calculating available space.
848         - InternalWindowManager now always repaints the entire title
849           area. Fixes #79844->1/4/5.
850         - Added RequestNCRecalc on mdi child windowstate changes.
851           Fixes #79772.
852
853 2006-11-20  Mike Kestner  <mkestner@novell.com>
854
855         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
856         in the MouseUp handler of the listbox and move the return handling
857         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
858
859 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
860
861         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
862
863 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
864
865         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
866           working in 1.2.x anymore. So, updated.
867
868 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
869
870         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
871         NumberGroupSeparator of current culture instead of assuming en-US.
872         Fixed bug #79967.
873
874 2006-11-17  Mike Kestner  <mkestner@novell.com>
875
876         * Control.cs: Add the concept of implicit bounds setting so that
877         dock/undock round trips preserve explicitly set size/locations.
878         Fixes #79313.
879
880 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
881
882         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
883           can't handle those filters. (Fixes bug #79961)
884
885 2006-11-17  Chris Toshok  <toshok@ximian.com>
886
887         [ fixes the exit/crashes associated with #79835.  it's clearly
888         suboptimal though, we need to figure out a better way to solve
889         this. ]
890         
891         * PrintPreviewControl.cs: deal with the new invalid printer
892         exceptions.
893
894         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
895         and return false (so CommonDialog.ShowDialog doesn't actually show
896         the form.)
897
898         * PrintDialog.cs: enable/disable the Ok button depending on
899         whether or not the printer is valid.
900
901         * CommonDialog.cs (ShowDialog): only actually show the form if
902         RunDialog returns true.
903
904 2006-11-17  Jackson Harper  <jackson@ximian.com>
905
906         * TextControl.cs: When soft splitting a line, mark it as a soft
907         split line. Also carry over the current line break to the next
908         line.
909
910 2006-11-17  Chris Toshok  <toshok@ximian.com>
911
912         * XplatUIX11.cs: when scrolling a window with an invalid area, we
913         only want to shift the part of the invalid area that overlaps the
914         area we're scrolling.  we also don't want to clear the invalid
915         area unless the invalid area was entirely contained within the
916         scrolling area.
917
918 2006-11-16  Chris Toshok  <toshok@ximian.com>
919
920         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
921         also make sure to free the memory returned by XGetWindowProperty
922         in GetText().
923
924         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
925
926 2006-11-16  Chris Toshok  <toshok@ximian.com>
927
928         * XplatUI.cs: add a new super secret way to get at the totally
929         unsupported X11 backend.
930
931 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
932
933         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
934
935 2006-11-16  Jackson Harper  <jackson@ximian.com>
936
937         * TreeView.cs: Allow more explicit setting of top node position
938         for scrollbars. Slower algo, but more accurate.
939         - CollapseAll should maintain the current top node.
940         * TextBoxBase.cs: When positioning the caret, use the line, pos
941         method, since the x, y method does not grab the correct tag, and
942         the caret height never gets set correctly. (Maybe I should just do
943         away with the caret having its own height, and always use the
944         carets current tag for height).
945
946 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
947
948         [Fixes 79778, 79923]
949
950         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
951         Parent to the FosterParent instead.
952
953 2006-11-16  Jackson Harper  <jackson@ximian.com>
954
955         * TreeView.cs: Need to recalc the topnode when we expand or
956         collapse. The scrolling methods can't handle this on their own,
957         since they use differences between the last scroll position, and
958         those difference get completely messed up since we are expanding
959         nodes.  This problem should probably be fixed in the scrolling
960         methods, so they can figure out exactly where they are, but this
961         will slow things down a little.
962         * ThemeWin32Classic.cs: Special case for groupboxes with empty
963         strings, makes nunit-gui look a lot nicer.
964
965 2006-11-16  Chris Toshok  <toshok@ximian.com>
966
967         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
968         the broken multithreaded event handling we have in here.  File
969         this entry under "Why we should move to the new X11 backend".
970
971         Any thread can make it into UpdateMessageQueue, which gets events
972         from the X socket - some of which could belong to hwnds being
973         managed by a different thread.  We can also have multiple threads
974         in UpdateMessageQueue at the same time, with each one reading from
975         the X socket.  This leads to many problems, with the following
976         solutions:
977
978         We can't use hwnd.Queue.Enqueue anywhere in here and must use
979         EnqueueLocked.
980
981         The MotionNotify compression we do can't work across threads
982         (without locking the entire queue, perhaps) since we call
983         hwnd.Queue.Peek, so we just punt and don't compress motion events
984         unless the owning thread is the one which got the X event.
985
986         ConfigureNotify is another fun one, since it modifies the hwnd's
987         bounds and then enqueues the event.  We add a lock to Hwnd which
988         is held when setting configure_pending to true (and enqueuing the
989         event).
990
991         There is a race wrt the wake socket.  we need to make sure that
992         only 1 thread is waiting on that socket, or else a thread could
993         sleep waiting for data that never comes.  It's difficult (but not
994         impossible) to make happen, because it seems to require something
995         like the following:
996
997             1. Thread 1 polls on wake_receive
998         
999             2. poll returns saying there's data to be read on
1000                wake_receive.
1001         
1002             3. Thread 2 polls on wake_receive and immediately returns
1003                saying there's data to be read.
1004
1005             4. Thread 2 reads the wakeup byte from wake_receive
1006
1007             5. Thread 1 attempts to read the wakeup byte from
1008                wake_receive.
1009
1010             6. Thread 2 exits (due to a form closing, perhaps).
1011
1012             7. Thread 1 blocks forever.
1013         
1014         Fun, eh?
1015
1016         Fixing the Expose handling isn't done yet, and the races inherent
1017         in that piece of code are responsible for the drawing mistakes you
1018         see when generating expose events in a MT app (like NPlot).  This
1019         one is the likely to be the hardest to bandaid, and it doesn't
1020         appear to cause anything but drawing problems.  The other issues
1021         caused apps to exit or hang.
1022
1023         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1024         called from a different thread than the one that should be calling
1025         these functions.
1026
1027         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1028
1029 2006-11-15  Chris Toshok  <toshok@ximian.com>
1030
1031         * Application.cs: null out the context's MainForm when we exit
1032         RunLoop.  Fixes a newly checked in unit test as well as the last
1033         ODE from bug #79933.
1034
1035 2006-11-15  Chris Toshok  <toshok@ximian.com>
1036
1037         * Form.cs (set_Owner): allow a null value so we can clear the
1038         form's owner.
1039         (Dispose): set all our owned_form's Owner properties to null, and
1040         clear the owned_forms collection.
1041         (WM_CLOSE): clean up this a little bit.. still not right though.
1042
1043         * ApplicationContext.cs: OnMainFormClosed should only call
1044         ExitThreadCore if the main form isn't recreating.  Fixes unit
1045         test.
1046
1047 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1048
1049         [Fixes 78346]
1050
1051         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1052
1053 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1054
1055         [Fixes 79433]
1056
1057         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1058         keep popup window types from stealing focus from the main form
1059         on Windows.
1060
1061         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1062
1063         * MenuAPI.cs: Set above flag to true.
1064
1065 2006-11-15  Chris Toshok  <toshok@ximian.com>
1066
1067         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1068         the button being released is not in wParam.
1069
1070 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1071
1072         * Form.cs: Add the released button to MouseEventArgs.Button
1073         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1074         on Win32.
1075
1076 2006-11-15  Chris Toshok  <toshok@ximian.com>
1077
1078         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1079         GetText().  untested because it's unused in our implementation.
1080         Control.Text always caches the text, even if
1081         ControlStyles.CacheText is not set.
1082
1083         fixes bug #79939.
1084
1085 2006-11-15  Chris Toshok  <toshok@ximian.com>
1086
1087         [ fixes #79933 ]
1088         
1089         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1090         message.  no hiding, no disposing.
1091
1092         in the WM_CLOSE handler, hide the form if it's modal.
1093
1094 2006-11-15  Chris Toshok  <toshok@ximian.com>
1095
1096         * XplatUIX11.cs: use AddExpose instead of sending a message.
1097         fixes textbox border drawing.
1098
1099 2006-11-15  Chris Toshok  <toshok@ximian.com>
1100
1101         * PropertyGridView.cs: keep from crashing on mouse move/down when
1102         the property grid is empty.
1103
1104 2006-11-14  Jackson Harper  <jackson@ximian.com>
1105
1106         * TextControl.cs: Make PageUp and PageDown more like the MS
1107         versions.
1108         * TextBoxBase.cs: When we set the text property position the
1109         cursor at the beginning of the document.
1110
1111 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1112
1113         * Form.cs: if a mdi child's WindowState has changed
1114         before it's creation, it would display wrong control
1115         buttons.
1116         
1117 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1118
1119         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1120           (Fixes bug #79927)
1121
1122 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1123
1124         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1125         the window gets to paint its borders even if the window is
1126         getting smaller.
1127         
1128         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1129         otherwise the old control buttons would still be painted 
1130         if the window gets bigger.
1131         
1132         * PaintEventArgs.cs: add an internal method so that the clip 
1133         rectangle can be changed.
1134         
1135 2006-11-13  Chris Toshok  <toshok@ximian.com>
1136
1137         [ fixes bug #79745 ]
1138         
1139         * NotifyIcon.cs: lots of cleanup.
1140
1141         * X11Structs.cs: add an enum for XEMBED messages.
1142
1143         * XplatUIX11.cs: reindent one of the giant switch statements, it
1144         was taking up an additional tab stop, and this file is already way
1145         too wide for my laptop's screen.
1146
1147         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1148         we get it, resize the hwnd to the WMNormalHints max_width/height.
1149
1150 2006-11-13  Jackson Harper  <jackson@ximian.com>
1151
1152         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1153         teh simple way.
1154
1155 2006-11-13  Chris Toshok  <toshok@ximian.com>
1156
1157         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1158         #79898.  force a reference to the Region to stick around so the
1159         unmanaged object isn't collected (rendering our handle in the MSG
1160         stale).
1161
1162 2006-11-13  Chris Toshok  <toshok@ximian.com>
1163
1164         * XplatUIX11.cs: fix #79917 for window managers which support
1165
1166         using XStoreName on the raw utf8, and we need to convert to
1167         COMPOUND_TEXT if it's non-latin1.
1168
1169 2006-11-13  Chris Toshok  <toshok@ximian.com>
1170
1171         * Form.cs (set_DialogResult): we need to set closing to false if
1172         we're setting our result to None.  fixes bug #79908.
1173
1174 2006-11-13  Jackson Harper  <jackson@ximian.com>
1175
1176         * TextControl.cs: When formatting text, compute the adjusted tag
1177         lengths correctly, using FindTag for the end tag instead of trying
1178         to figure it out outselves.
1179         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1180         the item, ItemHeight doesn't work, because trees with large
1181         imagelists use those for their height
1182         * TreeView.cs: ActualItemHeight factors in the image height
1183         - compute left edge of checkboxes correctly
1184         - when expanding/collapsing move the bottom down one pixel, so we
1185         aren't moving part of the node
1186
1187 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1188
1189         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1190         stack in PaintEventStart so that it won't get disposed by the gc
1191         before reaching PaintEventEnd.
1192
1193 2006-11-13  Jackson Harper  <jackson@ximian.com>
1194
1195         * TextBoxBase.cs: Don't select the word if we are on a line with
1196         no text.
1197         - We don't need to position the caret on mouse up, since the mouse
1198         move handler should be doing this
1199         - When double clicking a blank line, the caret is advanced to the
1200         next line.
1201
1202 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1203
1204         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1205
1206 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1207
1208         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1209         Fixes part of bug #79910.
1210
1211 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1212
1213         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1214           (bug #79903). Some minor string updates to match ms.
1215
1216 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1217
1218         * FileDialog.cs: Don't add an extension if the filename
1219           already ends with that extension.
1220
1221 2006-11-10  Jackson Harper  <jackson@ximian.com>
1222
1223         * TreeView.cs: Use the currently highlighted node for the
1224         BeforeSelect event.
1225         * TextBoxBase.cs: There is no need to expand selection on
1226         MouseMove.
1227         - CanUndo means 'is there any undo operations', not 'is undo
1228         allowed on this textcontrol. Fixed ClearUndo unit test.
1229
1230 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
1231
1232         * Button.cs: only perform click when button is Selectable (so as 
1233         not to activate default buttons when they're disabled)
1234         
1235         * Control.cs: Rewrite of the SelectNextControl and related 
1236         methods. HandleClick now selects next control if the current one
1237         is being disabled.
1238         
1239         * Form.cs: OnActivated selects next active control only if Load 
1240         has already occurred. If Load hasn't run, there's no point in 
1241         selecting here, Load might change the state of controls.
1242         
1243         * FocusTest.cs: Tests marked as working again for these fixes
1244
1245 2006-11-10  Chris Toshok  <toshok@ximian.com>
1246
1247         * XplatUIX11.cs: a couple of fixes.
1248
1249         - use XInternAtoms with almost all the atoms we need to register,
1250         instead of many, many calls to XInternAtom.  should help a bit on
1251         startup time, at the expense of making the code look a little
1252         worse.
1253
1254         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
1255         isn't reparented (which seems to be a clue that we're running fon
1256         compiz) and they have an Owner form.  This fixes the tool windows
1257         in paint.net when running under compiz.
1258
1259         - when setting the opacity of a window, support both the case
1260         where the window has been reparented and also when it hasn't been.
1261         Since compiz/beryl doesn't seem to reparent windows, and these are
1262         the only window managers which support translucency, I'm not sure
1263         why we need the hwnd.reparented case at all.. but leave it in.
1264         now we get translucent windows in paint.net under compiz/beryl.
1265
1266 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1267
1268         * FileDialog.cs: Always return the value for FilterIndex that
1269           was set. Internally convert it to values that make sense.
1270
1271 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1272         
1273         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
1274
1275 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
1276
1277         * Toolbar.cs: Change default value of DropDownArrows to true, the 
1278         signature still using false to make it compatible with MS but the 
1279         initial value is true. Fixes #79855.
1280
1281 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1282
1283         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
1284           only available on Linux.
1285
1286 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
1287
1288         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
1289         reduce number of calls to redraw method during toolbar creation.
1290
1291 2006-11-09  Mike Kestner  <mkestner@novell.com>
1292
1293         * ListView.cs : raise SelectedIndexChanged when an item is selected
1294         programmatically via the Item.Selected property.  Gert's nice 
1295         ListViewSelectedIndexChanged test fixture now runs clean.
1296
1297 2006-11-09  Mike Kestner  <mkestner@novell.com>
1298
1299         * ListView.cs : raise SelectedIndexChanged when a selected item is
1300         removed from the item collection using Remove or RemoveAt.
1301
1302 2006-11-09  Mike Kestner  <mkestner@novell.com>
1303
1304         * ListView.cs : raise SelectedIndexChanged once per selected item
1305         for compat with MS.  Fixes #79849+.
1306
1307 2006-11-09  Chris Toshok  <toshok@ximian.com>
1308
1309         * TabControl.cs: initialize row_count to 0, and set it to 1 when
1310         we need to (if we have any tab pages).  Fixes unit test.
1311
1312 2006-11-09  Chris Toshok  <toshok@ximian.com>
1313
1314         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
1315         width is 0, not 3.  Fixes a unit test.
1316
1317 2006-11-09  Mike Kestner  <mkestner@novell.com>
1318
1319         * ListView.cs : use Implicit scrollbars so that focus isn't 
1320         stolen from the listview when they are clicked. Fixes #79850.
1321
1322 2006-11-09  Chris Toshok  <toshok@ximian.com>
1323
1324         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
1325         have a root item.  Fixes #79879.
1326
1327 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
1328
1329         * FileDialog.cs:
1330           - Fix ToString ()
1331           - An ArgumentException is now thrown if a wrong filter
1332             is applied (matches ms). The previous filter doesn't change
1333             anymore if an exception is thrown.
1334           - Changing the FileName property also affects FileNames
1335         * ColorDialog.cs: The length of the CustomColors array is always
1336           16. It doesn't matter if we use a smaller array or null to update
1337           or change the custom colors property.
1338         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
1339           for RootFolder if we get a undefined value.
1340
1341 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1342
1343         * StatusBarPanel.cs: 
1344         - Width is set to MinWidth if Width is smaller than
1345         MinWidth. Fixes #79842.
1346         - MinWidth now always overrides Width (MSDN says MinWidth
1347         is set to Width when AutoSize = None, but they do not 
1348         behave like that).
1349         - Style has now the the correct default value.
1350         
1351 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1352  
1353         * TrackBar.cs: 
1354         - The control is completely invalidated on 
1355         Got/LostFocus to draw the focus rectangle correctly.
1356         - When AutoSize then height is always 45 (width for 
1357         vertical controls).
1358         
1359         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
1360         on the mouse when moved and it doesn't move when grabbed
1361         until the mouse moves as well. Also fixed some wrong 
1362         calculations when clicking on the thumb (control thought
1363         click was outside of thumb and didn't grab it).
1364         Fixes some of the issues in #79718.
1365
1366 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
1367
1368         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
1369
1370 2006-11-08  Chris Toshok  <toshok@ximian.com>
1371
1372         * PropertyGridView.cs: only call ToggleValue if the item is not
1373         readonly.
1374
1375 2006-11-08  Jackson Harper  <jackson@ximian.com>
1376
1377         * TextBoxBase.cs: The RichTextBox and textbox have very different
1378         word selection methods.  Implement the textbox's simple word
1379         selection here, and let the RichTextBox override and provide it's
1380         own.
1381         - Don't do extra selection on mouseup
1382         * RichTextBox.cs: Use the documents word selection algorithm, I
1383         think ideally, this function will be pulled into the
1384         RichTextBox.cs code someday.
1385
1386 2006-11-08  Chris Toshok  <toshok@ximian.com>
1387
1388         * RootGridEntry.cs: new class to represent GridItemType.Root.
1389
1390         * CategoryGridEntry.cs: reformat, and add boilerplate.
1391         
1392         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
1393         returns the UI parent anyway, and we need special handling to
1394         implement the GetTarget method in the face of it.  Also, implement
1395         Select().
1396
1397         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
1398         a root grid item, and use that instead of PropertyGrid.grid_items.
1399         Also, make use of TypeConverters (and add limitted support for
1400         ICustomTypeDescriptors) when initially populating the grid.
1401         Arrays now show up more or less properly.
1402
1403 2006-11-08  Chris Toshok  <toshok@ximian.com>
1404
1405         * Application.cs: set the modal dialog to non modal after we close
1406         it.  Fixes bug #79866.
1407
1408 2006-11-08  Jackson Harper  <jackson@ximian.com>
1409
1410         * TextControl.cs: When combining lines carry over the line end
1411         style from the end line.
1412         - Invalidate the selected area when setting it, if it is visible.
1413         * TextBoxBase.cs: Only rich text box can do full line selects.
1414         - Make sure to set the cursor position when there is a click,
1415         otherwise two clicks in separate areas could cause a large chunk
1416         to be selected.
1417
1418 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1419
1420         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
1421         Fixes #79863.
1422
1423 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1424
1425         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
1426         time. Remove tooltips when ToolButton click events.  Fixes #79856.
1427
1428 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1429
1430         * MenuAPI.cs: Ignore right click for menu actions and fixes
1431         menu border when clicked.  Fixes #79846.
1432
1433 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1434
1435         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
1436         MouseState after create wParam for message, this fixes mouse button 
1437         equal none in mouse up events.
1438         
1439 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
1440
1441         * Control.cs : Focus() now calls Select to set the Container's
1442         Active Control and to give it focus. To avoid infinite recursion
1443         (because ActiveControl also calls Focus at one point), a check 
1444         is made in Focus with the help of a new internal variable
1445         is_focusing.
1446
1447 2006-11-07  Mike Kestner  <mkestner@novell.com>
1448
1449         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
1450         if there's a selection.  Fixes #79849.
1451
1452 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1453
1454         * PropertyGrid.cs: Avoid fixed height of help description label.
1455         Fixes part of bug #79829.
1456
1457 2006-11-07  Chris Toshok  <toshok@ximian.com>
1458
1459         * XplatUIX11.cs: fix #79790 again, by using the
1460         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
1461
1462 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1463
1464         * ToolBar.cs: Fix left click checking.
1465
1466 2006-11-07  Chris Toshok  <toshok@ximian.com>
1467
1468         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
1469
1470 2006-11-07  Chris Toshok  <toshok@ximian.com>
1471
1472         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
1473         PropertyManager unit tests.
1474
1475         * PropertyManager.cs: make property_name internal.
1476
1477 2006-11-07  Chris Toshok  <toshok@ximian.com>
1478
1479         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
1480         pass a unit test.  Also, don't set image_index to anything in
1481         response to setting the ImageList property.
1482
1483 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1484
1485         * ToolBar.cs: Ignore click events when mouse button is not a
1486         left button, only accepts other button for dropdown menus.  
1487         Fixes #79854.
1488
1489 2006-11-07  Chris Toshok  <toshok@ximian.com>
1490
1491         * DataGrid.cs: make the back and parent row buttons a little less
1492         ugly.
1493
1494 2006-11-07  Jackson Harper  <jackson@ximian.com>
1495
1496         * TextBoxBase.cs: When converting to Text don't put line breaks in
1497         for soft line breaks.
1498         * TextControl.cs: There is an initial "fake" line in the document,
1499         this is now a soft break line, so that an extra line feed doesn't
1500         get added to the end of documents.
1501
1502 2006-11-07  Chris Toshok  <toshok@ximian.com>
1503
1504         [ fix bug #79778 ]
1505         
1506         * CurrencyManager.cs: if the list is readonly, don't bother
1507         checking if IBindingList.AllowNew is true.
1508
1509         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
1510         for non-DataRowView datasources..  or rather, make it not crash.
1511         (DataGridPaintRelationRow): make sure we limit the row painting to
1512         the area not covered by the row header, and make our cell width at
1513         least large enough to cover the relation area.  This allows grids
1514         that have relations but no rows to render correctly.
1515         (DataGridPaintRowContents): same type of changes here.
1516         (SetDataSource): move back to always calling
1517         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
1518         navigating back through relations.
1519         (HitTest): handle the case where we have no cells but have
1520         relations.  Right now we generate a hit in cell 0 of whatever the
1521         row is, not sure if this is strictly correct, but it works for our
1522         purposes.
1523         
1524         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
1525         bother doing anything.
1526
1527 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
1528
1529         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
1530         early version of StatusStrip.  Not responsible for eaten
1531         application or firstborn children.
1532
1533 2006-11-06  Chris Toshok  <toshok@ximian.com>
1534
1535         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
1536         call GetTabRect with a -1 index.  Fixes #79847.
1537
1538 2006-11-06  Jackson Harper  <jackson@ximian.com>
1539
1540         * TreeNodeCollection.cs: Update scrollbars after clearing.
1541
1542 2006-11-06  Chris Toshok  <toshok@ximian.com>
1543
1544         * NumericUpDown.cs: fix the ToString method for some unit test
1545         love.
1546
1547 2006-11-06  Chris Toshok  <toshok@ximian.com>
1548
1549         * PropertyGrid.cs:
1550         - set the initial SelectedGridItem if we can.
1551
1552         - Exclude non-mergable properties only if we're merging > 1
1553         object.  Merging 1 object isn't really merging, obviously.
1554
1555         - Handle PropertySort.NoSort just like Alphabetical, which is
1556         wrong of course, but at least gets things on the screen.
1557         
1558         * PropertyGridView.cs:
1559         - Add method "FindFirstItem" which finds the first property grid
1560         item, so we can select it by default.
1561
1562         - make use of GridEntry.CanResetValue.
1563
1564         - Don't call RedrawBelowItemOnExpansion here anymore, the
1565         individual GridEntry's will do that.
1566
1567         - Remove the ITypeDescriptorContextImpl internal class.
1568         
1569         * GridEntry.cs:
1570         - this class needs to implement ITypeDescriptorContext, as it's
1571         what MS's PropertyDescriptorGridEntry does, which means we can
1572         remove the ITypeDescriptorContextImpl internal class from
1573         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
1574
1575         - keep a reference to our PropertyGridView, and move the call to
1576         RedrawBelowItemOnExpansion here from PGV.  This means
1577         programmaticly setting Expanded actually does something visible.
1578
1579         - add a CanResetValue() function which takes into account our
1580         possibly multiple "selected_objects" in the merged case.  Shifting
1581         PropertyGridView to use this method fixes another unreported
1582         crasher found running the test for #79829.
1583
1584         - when Top or Bounds is updated, make sure the PropertyGridTextBox
1585         is updated to reflect this.
1586
1587         * CategoryGridEntry.cs: the ctor takes the PGV now.
1588         
1589 2006-11-06  Jackson Harper  <jackson@ximian.com>
1590
1591         * TextControl.cs: These are 1 based.
1592         * TextBoxBase.cs: When setting the selected text, don't change the
1593         selected text tags, this is done by ReplaceText, just position the
1594         cursor at the end of the new text.
1595
1596 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1597
1598         * ListView.cs: Allow label edit only when, when LabelEdit is
1599           set to true.
1600
1601 2006-11-06  Jackson Harper  <jackson@ximian.com>
1602
1603         * TextControl.cs: If a suitable wrapping position isn't found,
1604         just wrap right in the middle of a word.
1605
1606 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1607
1608         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
1609           bug #79820.
1610
1611 2006-11-06  Jackson Harper  <jackson@ximian.com>
1612
1613         * TreeView.cs: Can't use the VisibleCount property when setting
1614         scrollbar heights, because this doesn't take into account whether
1615         or not the horz scrollbar just came visible.
1616
1617 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
1618
1619         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
1620         activated.  Fixes #79369, #79832.
1621
1622 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
1623
1624         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
1625           had to remove support for links that point to a directory. FileInfo
1626           returns no usefull information (means, the directory they point to)
1627           for such links. Replaced some empty string ("") with String.Empty.
1628
1629 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1630
1631         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
1632         NullReferenceException when attempting to remove node that is not in
1633         collection. Throw NullReferenceException when null is passed to 
1634         Remove. Allow first element of the collection to be removed. Fixes
1635         bug #79831.  In GetEnumerator ().Current return null if positioned 
1636         before the first element of the collection. In GetEnumerator ().Reset,
1637         position before first element of the collection.
1638
1639 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1640
1641         * PropertyGrid.cs: To match MS, remove default title and description
1642         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
1643         buttons.
1644
1645 2006-11-04  Chris Toshok  <toshok@ximian.com>
1646
1647         * Theme.cs: add a Clamp method, just for kicks.
1648
1649         * ThemeWin32Classic.cs: clamp all color components to [0..255].
1650
1651 2006-11-04  Chris Toshok  <toshok@ximian.com>
1652
1653         * Form.cs: if the form isn't visible, Close() does nothing.
1654
1655 2006-11-03  Chris Toshok  <toshok@ximian.com>
1656
1657         * Form.cs (Close): if the form is modal, don't Dispose of it, only
1658         Hide it.
1659         (WndProc): don't Dispose after handling the WM_CLOSE message.
1660
1661         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
1662         them as such, instead of using casts from Control to Form.  Also,
1663         don't Dispose of the modal dialog when we fall out of the loop -
1664         Close() it instead.
1665
1666         fixes bug #79813.
1667
1668 2006-11-03  Chris Toshok  <toshok@ximian.com>
1669
1670         * Control.cs (Dispose): only go through the dispose thing if we're
1671         @disposing, and we haven't already been disposed.  Fixes bug
1672         #79814.
1673
1674         * Form.cs: no reason to call "base.Dispose()" here instead of
1675         "Dispose()".
1676
1677 2006-11-03  Mike Kestner  <mkestner@novell.com>
1678
1679         * ComboBox.cs : use ToString instead of casts in AddItem for
1680         sorting functionality.  Fixes #79812.
1681
1682 2006-11-03  Chris Toshok  <toshok@ximian.com>
1683
1684         * Application.cs: pave the way for actually using the thread
1685         exception dialog.  it's ifdefed out at the moment.
1686
1687 2006-11-03  Chris Toshok  <toshok@ximian.com>
1688
1689         * ThreadExceptionDialog.cs: until we get a better layout, actually
1690         hide the details textbox and label when we shouldn't see them.
1691
1692 2006-11-03  Jackson Harper  <jackson@ximian.com>
1693
1694         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
1695         multiline textboxes anymore.  This method also determines the
1696         width/height of a textboxes canvas area.
1697         - Sorta a revert of the last patch.  For multiline just position
1698         the controls, then bail.  This way the scrollbar width won't be
1699         altered.
1700
1701 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
1702
1703         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
1704         it dont need.  Fixes #79537.
1705
1706 2006-11-02  Jackson Harper  <jackson@ximian.com>
1707
1708         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
1709         send the status after firing the DndOver event.
1710
1711 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1712
1713         * TrackBar.cs: Now orientation only switches height / width if
1714         the control's handle is created (Win32 does it like this). Also 
1715         fixed a typo in ToString() for a test to pass, changed the 
1716         exception thrown in set_LargeChange and set_SmallChange to 
1717         match Win32 behaviour, and added TrackBar tests to the unit 
1718         tests.
1719
1720 2006-11-02  Chris Toshok  <toshok@ximian.com>
1721
1722         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
1723         not _NET_WM_STATE_NO_TASKBAR.
1724
1725 2006-11-02  Jackson Harper  <jackson@ximian.com>
1726
1727         * TextControl.cs: Increment count by one, since in the update view
1728         count - 1 is used.
1729
1730 2006-11-02  Jackson Harper  <jackson@ximian.com>
1731
1732         * TextBoxBase.cs: Use client rectangle not bounds for checking if
1733         the mouse is in the client rectangle (duh).
1734
1735 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1736         
1737         * TrackBar.cs: Fixed trackbar jumping around when clicking
1738         on it - the trackbar was not detecting correctly at which
1739         side of the thumb the click was done. (fixes #79718)
1740
1741 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1742
1743         * ListBox.cs: scroll visible area when change SelectedIndex to
1744         a non visible area.  Fixes #79481.
1745
1746 2006-11-01  Jackson Harper  <jackson@ximian.com>
1747
1748         * TextControl.cs: When replacing the selection move the selection
1749         start/end/anchor to the end of the new text.
1750
1751 2006-11-01  Jackson Harper  <jackson@ximian.com>
1752
1753         * XplatUIWin32.cs: When setting the parent change the controls
1754         visibility to it's visibility flag, not to it's old parents
1755         visibility (.Visible walks the parent chain).
1756
1757 2006-11-01  Chris Toshok  <toshok@ximian.com>
1758
1759         * XplatUIX11.cs: revert the #79790 fix, as the simple.
1760         XSetTransientForHint fix breaks paint .net's tool windows.  more
1761         work needed for that one.
1762
1763 2006-11-01  Chris Toshok  <toshok@ximian.com>
1764
1765         * ScrollBar.cs: throw ArgumentException instead of Exception in
1766         LargeChange/SmallChange setters.  fixes unit tests.
1767
1768 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1769
1770         * ContainerControl.cs: reverted rev.67183 (which was itself
1771         a reversion of rev.66853... eh).
1772         
1773         * Control.cs: Fixes Reflector hang by changing Focus() call
1774         to what it was before rev.66643 (calling Select() here sets 
1775         ActiveControl, which in some situations calls back Focus and 
1776         eventually does a stack overflow). Temp fix.    
1777         Changes to GetNextControl() to not look for children to select when
1778         parent cannot be selectable (so it looks for siblings instead)  
1779         
1780 2006-10-31  Mike Kestner  <mkestner@novell.com>
1781
1782         * CheckedListBox.cs : off by one error in returned index from
1783         ObjectCollection.Add.  Fixes #79758.
1784
1785 2006-10-31  Chris Toshok  <toshok@ximian.com>
1786
1787         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
1788         calls for the textbox/spinner, to keep from recursing to the point
1789         where we crash.  Fixes #79760.
1790
1791 2006-10-31  Chris Toshok  <toshok@ximian.com>
1792
1793         * ListControl.cs (set_SelectedValue): don't throw exceptions on
1794         null/"" value, just return.  matches ms's behavior and fixes some
1795         failing tests.
1796
1797 2006-10-31  Chris Toshok  <toshok@ximian.com>
1798
1799         * Control.cs (set_Capture): make a logic a little easier to
1800         follow.
1801
1802         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
1803         if it's being destroyed.  A necessary fix surely, but a bandaid
1804         also, to fix the stuck capture problem in bug #78413.
1805
1806 2006-10-31  Chris Toshok  <toshok@ximian.com>
1807
1808         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
1809         convention of clearing hwnd.ClientRect when we set the
1810         width/height (so it'll be recalculated by Hwnd).
1811
1812 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1813
1814         * ContainerControl.cs: reversed Contains check from
1815         ActiveControl due to hanging problems. This fix
1816         partly regresses #79667 (button does not have
1817         initial focus), so this might be a symptom for 
1818         a larger parenting problem (set_ActiveControl
1819         is being called but the child control does
1820         not have the parent set yet?)   
1821         
1822 2006-10-31  Mike Kestner  <mkestner@novell.com>
1823
1824         * MenuAPI.cs : fix keynav when menu is click activated.
1825
1826 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
1827
1828         * ToolStrip*: Version 0.2.
1829
1830         * MenuStrip.cs: Version 0.1.
1831
1832         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
1833
1834 2006-10-30  Chris Toshok  <toshok@ximian.com>
1835
1836         [ fixes the oversized notify icon issue in bug #79745 ]
1837         
1838         * NotifyIcon.cs: scale the icon down to the size we're given by
1839         the XplatUI layer (this would be faster if we did it once instead
1840         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
1841         since it's never invoked.
1842
1843         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
1844         pixels high by default, so let's hardcode our systray icon to that
1845         size.  The SYSTEM_TRAY protocol should really have a way for
1846         client apps to query for the correct icon size.. but oh well.  A
1847         couple of patches to deal with the screwy client_window ==
1848         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
1849         instance, and also make sure we don't XSelectInput twice).
1850
1851 2006-10-30  Chris Toshok  <toshok@ximian.com>
1852
1853         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
1854         recreating forms.  Control recreation is the bane of my existence.
1855         Fix it in a way that keeps everyone happy.
1856
1857 2006-10-30  Chris Toshok  <toshok@ximian.com>
1858
1859         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
1860         just non-CHILD ones.  otherwise sometimes scrollbars end up with
1861         client_windows not being resized to the proper size (ReportBuilder
1862         shows this extremely well).
1863
1864 2006-10-30  Chris Toshok  <toshok@ximian.com>
1865
1866         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
1867         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
1868         showing up in the gnome taskbar.  Fixes bug #79790.
1869
1870 2006-10-30  Chris Toshok  <toshok@ximian.com>
1871
1872         * ApplicationContext.cs: guard against a NRE.
1873
1874         * Application.cs: null out the old MainForm for the context, so we
1875         don't try to use it again once it's disposed.  Fixes bug #79783.
1876
1877 2006-10-30  Chris Toshok  <toshok@ximian.com>
1878
1879         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
1880         BindingContext, set the data source directly, otherwise do the
1881         lazy approach - the actual ListManager will be created when we get
1882         a BindingContext. Fixes bug #79700.
1883
1884 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1885
1886         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
1887           XplatUIX11.cs: Remove old 2 parameter SetVisible.
1888
1889         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
1890
1891 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1892
1893         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
1894         of SetVisible that allows a window to be shown, but not activated.
1895         This is needed on Windows for MenuStrip, and can probably be used
1896         with MainMenu and ComboBox to fix the focus stealing issues on
1897         Windows.
1898
1899         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
1900
1901 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
1902
1903         * PictureBox.cs: Fix the output of the ToString method.
1904
1905 2006-10-29  Chris Toshok  <toshok@ximian.com>
1906
1907         * Control.cs (get_TopLevelControl): fix bug #79781.
1908
1909 2006-10-29  Chris Toshok  <toshok@ximian.com>
1910
1911         * ListControl.cs (set_DataSource): throw Exception here, not
1912         ArgumentException, to match MS behavior.
1913
1914 2006-10-29  Chris Toshok  <toshok@ximian.com>
1915
1916         * Form.cs: remove the try-catch's around calls to GetWindowState.
1917         We can just check the return value.
1918
1919         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
1920         Instead return -1.
1921
1922         * XplatUI.cs: Add note about additional return value for
1923         GetWindowState.
1924
1925 2006-10-29  Chris Toshok  <toshok@ximian.com>
1926
1927         * Control.cs (CreateHandle): when we create our handle, we also
1928         create the handles of our child controls.  Fixes one of the
1929         Control unit tests (CH11).
1930
1931 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1932
1933         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
1934
1935 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1936
1937         * ThemeClearlooks.cs: A little speedup.
1938
1939 2006-10-27  Chris Toshok  <toshok@ximian.com>
1940
1941         * Control.cs: implement Control.FromChildHandle in a way that
1942         matches the docs (and fixes the failed test.)
1943
1944 2006-10-27  Chris Toshok  <toshok@ximian.com>
1945
1946         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
1947         comments).
1948
1949         * DataGrid.cs: implement ResetForeColor such that the tests
1950         succeed.
1951         
1952 2006-10-27  Chris Toshok  <toshok@ximian.com>
1953
1954         * ToolBarButton.cs: setting text/tooltiptext to null results in it
1955         being set to "".  Fixes bug #79759.
1956
1957 2006-10-27  Jackson Harper  <jackson@ximian.com>
1958
1959         * TextControl.cs: We need to clear the entire selection area when
1960         setting the start, otherwise multiline selections are still
1961         visible.
1962
1963 2006-10-26  Chris Toshok  <toshok@ximian.com>
1964
1965         * PropertyGridView.cs: 
1966
1967         - ifdef all the code specific to the double
1968         buffer case, and provide some alternatives in the non-doublebuffer
1969         code, which makes heavy use of XplatUI.ScrollWindow to move things
1970         around without having to invalidate (and cause flicker).  There
1971         are still some drawing problems in the non-doublebuffered case, so
1972         DOUBLEBUFFER is defined by default.
1973
1974         - Fix the way dropdowns are handled.  now we explicitly watch for
1975         the events which might cause the dropdown to close, and break out
1976         of the nested event loop there.  This gets rid of all Capture
1977         code, at the expense of the Msg special casing.  Seems to work,
1978         though, and fixes bug #79743.
1979
1980 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
1981         * Control.cs: SetIsRecreating now recreates implicitly added
1982         child controls as well. Finally fixes #79629. The flag passed to 
1983         SetIsRecreating has also been removed since it wasn't used.
1984         
1985 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1986
1987         * PageSetupDialog.cs: Clean some code, fix some bits, 
1988         add some checks, and add a printer sub-dialog.
1989
1990 2006-10-26  Chris Toshok  <toshok@ximian.com>
1991
1992         * PropertyGrid.cs: make set_SelectedObject call
1993         set_SelectedObjects, and move the duplicate logic to the
1994         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
1995
1996         * PropertyGridView.cs: hide the textbox when we get a
1997         SelectedObjectsChanged event.
1998
1999         Fixes bug #79748.
2000
2001 2006-10-26  Chris Toshok  <toshok@ximian.com>
2002
2003         * PropertyGridView.cs: deal with the type converter not supporting
2004         GetStandardValues() or GetStandardValues() returning null, which
2005         is does in the default case.  Fixes #79742.
2006
2007 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2008
2009         * CheckedListBox.cs: nunit no longer crashes when selecting 
2010         Project/Edit menu option
2011         
2012 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2013
2014         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2015         is no menu selected. fixes #79739
2016
2017 2006-10-25  Chris Toshok  <toshok@ximian.com>
2018
2019         * PropertyGridView.cs: factor out the splitter invalidation code
2020         into the SplitterPercent setter, and for kicks implement the
2021         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2022         amount in either direction.
2023
2024 2006-10-25  Chris Toshok  <toshok@ximian.com>
2025
2026         * PropertyGridView.cs: do some cleanup of the brush used to draw
2027         text - read only fields should be grayed out.  not sure how to do
2028         this with the textbox, though.  but the textbox's should also be
2029         readonly now at least.  Also, hide/show the textbox when resizing
2030         the control.
2031         
2032         * CursorConverter.cs: use System.Reflection when getting the
2033         properties of Cursors, as TypeDescriptor.GetProperties isn't
2034         returning static properties.
2035
2036 2006-10-25  Chris Toshok  <toshok@ximian.com>
2037
2038         * PropertyGridView.cs: factor out the up/down handling, and reuse
2039         it for page up/down.  also add End/Home support.
2040
2041 2006-10-25  Chris Toshok  <toshok@ximian.com>
2042
2043         * PropertyGridView.cs:
2044
2045         - ensure the selected grid item is visible in the scrolled area,
2046         fixes bug #79572.
2047
2048         - fix Keys.Down handling when you're on the last item in the
2049         propertygrid.
2050
2051 2006-10-25  Mike Kestner  <mkestner@novell.com>
2052
2053         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2054         clicks too.  Fixes #79725.
2055
2056 2006-10-24  Chris Toshok  <toshok@ximian.com>
2057
2058         * PropertyGrid.cs: use property.Converter instead of
2059         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2060         TypeConverters declared on the property as well as on the
2061         PropertyType.  Fixes bug #79678.
2062
2063 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2064
2065         * MimeIcon.cs, Mime.cs:
2066           Fallback to the default platform handler if no shared mime info
2067           stuff exists (fixes #79693).
2068
2069 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2070         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2071         from previous fix (duh).
2072
2073 2006-10-20  Chris Toshok  <toshok@ximian.com>
2074
2075         * PropertyGridView.cs: the dropdown should be MIN(number of items
2076         in list, 15).  Fixes #79551.
2077
2078 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2079         Fixes #79384, #79394, #79652, #79667
2080         * Application.cs: 
2081         
2082         - Modal windows are now destroyed in the proper order for windows
2083         
2084         * ContainerControl.cs:
2085         
2086         - ActiveControl setter has more conditions on when to return:
2087                 - if we're reselecting the active control, but it actually
2088                 didn't have focus (window hidden or some such), it runs
2089                 - if the active control being selected doesn't actually 
2090                 exist in the container, it returns
2091         
2092         * Form.cs
2093         
2094         - The ShowDialog now gets the current form as the owner when
2095         invoking without parameters, and correctly activates the owner 
2096         when returning
2097         
2098         * MessageBox.cs
2099         
2100         - MessageBox now catches the Escape key to exit
2101
2102 2006-10-20  Chris Toshok  <toshok@ximian.com>
2103
2104         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2105         most of bug #79676):
2106
2107         - you can navigate around the property grid with the arrow keys.
2108
2109         - the dropdown is sized properly when the pg has a vertical
2110         scrollbar.
2111
2112         - fix the indentation for subentries, and properly select the
2113         entire label rect.
2114
2115         - fix the gray bar's drawing (only draw it to the last element,
2116         not for the height of the control.  Also make sure we draw that
2117         last horizontal grid line.
2118
2119         - use the same mechanism the datagrid uses wrt the editing textbox
2120         when scrolling/resizing/etc.  Namely, we hide it first, do the
2121         operation, then show it again (if it's still visible).
2122         
2123         - aggressively remove a lot of unnecessary refreshes (and also
2124         calls to Invalidate(). call more limited variants, and only redraw
2125         what we need.)
2126         
2127         * PropertyGrid.cs:
2128
2129         - when we're populating the merged collection, fill in the UI
2130         parent with either the passed in item, or the category item we
2131         create.
2132
2133         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2134
2135         * GridItem.cs: drop some fully qualified names.
2136         
2137         * GridEntry.cs: add a "UIParent", which is basically the parent
2138         treenode.
2139
2140         * GridItemCollection.cs: add an IndexOf method.
2141
2142 2006-10-20  Mike Kestner  <mkestner@novell.com>
2143
2144         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2145         a working win32 NC invalidation mechanism, we can't invalidate
2146         menus.  [Fixes #79705]
2147
2148 2006-10-20  Mike Kestner  <mkestner@novell.com>
2149
2150         * ListBox.cs : don't update the VScrollbar if the list is empty,
2151         just hide it.  [Fixes #79692]
2152
2153 2006-10-20  Jackson Harper  <jackson@ximian.com>
2154
2155         * RichTextBox.cs: Handle some special chars better, and don't skip
2156         the entire group when we encounter a special char that we don't
2157         handle correctly.
2158
2159 2006-10-18  Chris Toshok  <toshok@ximian.com>
2160
2161         * PropertyGridView.cs: address a number of issues from bug #79676,
2162         mostly of the cosmetic variety.
2163
2164         - The highlight rectangle for indented items not extends all the
2165         way to the left.
2166
2167         - Indented items aren't indented so much.
2168
2169         - the dropdown is properly sized width-wise if the pg has a
2170         vertical scrollbar.
2171
2172 2006-10-18  Chris Toshok  <toshok@ximian.com>
2173
2174         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2175         systray stuff is rather convoluted to begin with.
2176
2177         systray icons are a single window for some reason (that I haven't
2178         figured out yet), and for them, client_window == whole_window.
2179         Given the way the tests are structured elsewhere to determine
2180         which paints are pending (client vs. nc), that situation will
2181         always yield PAINT, not NCPAINT.  So, if we have a pending
2182         nc_expose and no pending expose, remove the hwnd from the paint
2183         queue, and also set nc_expose_pending to false, to keep us from
2184         blocking further expose's adding the hwnd to the paint queue.
2185
2186         phew.  like i said, a rather convoluted change.  Fixes the
2187         notifyicon repaint issues in bug #79645.
2188
2189 2006-10-18  Chris Toshok  <toshok@ximian.com>
2190
2191         * Form.cs: when getting the backcolor of the form, don't get
2192         base.BackColor, as this allows parents to influence the background
2193         color.  This breaks mdi forms.  Instead, if the background_color
2194         is empty, return the default.
2195
2196 2006-10-18  Chris Toshok  <toshok@ximian.com>
2197
2198         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2199         to being private instead of internal static.
2200
2201         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2202         crap, it wasn't working for more deeply nested controls anyway,
2203         and we already have the is_recreating flag - use that instead.
2204         Before calling DestroyHandle in RecreateHandle, recurse through
2205         the control tree setting it to true.  this returns the recreate
2206         code to much of its original simplicity, while now guaranteeing we
2207         actually recreate everything we're supposed to.  This change gets
2208         fyireporting actually showing mdi children.
2209
2210 2006-10-17  Chris Toshok  <toshok@ximian.com>
2211
2212         * Form.cs: remove some debug spew, and collapse some duplicate
2213         code at the end of SetClientSizeCore.
2214
2215         * XplatUIX11.cs: 
2216         - add some more debug spew here too wrt Destroy handling.
2217         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2218         in Control's handling of WM_DESTROY.
2219         - Remove the handling of zombie window DestroyNotifies from the
2220         event loop - we don't need it.  Now the only DestroyNotifies we
2221         actually handle are ones generated by X.
2222         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
2223         match gtk's (functioning) handling of this. This keep metacity
2224         from leaving droppings in the form of wm borders with no window
2225         contents all over the place.
2226
2227         * Control.cs:
2228         - add a bunch of debug spew wrt control recreation.
2229         - fix a bug where we weren't tracking Visible properly on
2230         recreated hwnds.
2231         - fixed the WM_PAINT double buffer handling to support re-entrant
2232         calls (yes, i know it's gross, but it's happening to us).
2233
2234 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2235         * ThemeWin32Classic.cs: changed drawing of selected days
2236         to make them look better.
2237
2238 2006-10-16  Chris Toshok  <toshok@ximian.com>
2239
2240         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
2241         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
2242
2243         * XplatUIX11.cs: move away from using hwnd.client_dc and
2244         hwnd.non_client_dc and on to a stack of dc's (and in window's
2245         case, PAINTSTRUCT's), so we can deal with nested Paint calls
2246         without puking or not disposing of Graphics objects.
2247
2248         * XplatUIOSX.cs: same.
2249
2250         * XplatUIWin32.cs: same.
2251
2252 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2253
2254         * FileDialog.cs: Don't call on_directory_changed inside
2255           OnSelectedIndexChanged (it changes the SelectedIndex too).
2256           Instead move it to OnSelectionChangeCommitted.
2257
2258 2006-10-13  Chris Toshok  <toshok@ximian.com>
2259
2260         * XplatUIX11.cs: more Destroy work.  the current code does the
2261         following things, in order:
2262
2263         1. Enumerates all handles of all controls at or below the one
2264         being destroyed, in pre-order.  As it is doing this, it marks the
2265         handles as zombie and clears all references to them.
2266         
2267         2. calls XDestroyWindow on the window passed in.
2268
2269         3. SendMessage's WM_DESTROY to all he handles in the accumulated
2270         list.
2271
2272 2006-10-13  Chris Toshok  <toshok@ximian.com>
2273
2274         * XplatUIX11.cs: set hwnd.zombie to true before calling
2275         SendMessage (WM_DESTROY).  this keeps us from marking the new
2276         window a zombie, and also keeps us from calling sendmessage at
2277         all.
2278
2279 2006-10-13  Jackson Harper  <jackson@ximian.com>
2280
2281         * TextControl.cs: Do not show the caret and selection at the same
2282         time.  Reduces ugliness by 35%.
2283
2284 2006-10-13  Chris Toshok  <toshok@ximian.com>
2285
2286         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
2287         zombie after we do the recursive call, so we actually do call
2288         SendMessage on the children controls.
2289         (GetMessage): if we find a pending paint event for a zombie hwnd,
2290         remove the hwnd from the paint queue, or else it will always be
2291         there (and we'll effectively loop infinitely)
2292
2293 2006-10-13  Mike Kestner  <mkestner@novell.com>
2294
2295         * MenuItem.cs : add Selected format under keynav too.
2296         Fixes #79528.
2297
2298 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
2299
2300         * PropertyGrid.cs: Fixed some NRE's and small difference between our
2301         implementation and that of MS.
2302
2303 2006-10-13  Chris Toshok  <toshok@ximian.com>
2304
2305         * Control.cs (OnInvalidated) only futz with the invalid_region if
2306         the control is double buffered.  this fixes the apparent hang in
2307         the ListView unit tests.  Someone needs to make the
2308         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
2309
2310 2006-10-13  Chris Toshok  <toshok@ximian.com>
2311
2312         * PropertyGridView.cs:
2313
2314         - do a little refactoring so that only one place calls
2315         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
2316         else call that.  Also make it Refresh, since there are redraw bugs
2317         otherwise (we should take a look at that...)
2318
2319         - do a little more refactoring work to share the body of code
2320         involved with the drop down.  it was duplicated in the code
2321         dealing with the listbox handling and in the code dealing with the
2322         UITypeEditors.
2323
2324         - add a Capture to the dropdown form's control once it's
2325         displayed, and add a MouseDown handler that checks to make sure
2326         the position is inside the control.  If it's not, close the
2327         dropdown.  This fixes #78190.
2328
2329         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
2330         if the value is different than the initial value.
2331         
2332 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
2333
2334         * Control.cs: see #78650
2335         - Fixed GetNextControl for several cases:
2336                 - Changed FindFlatForward to return 
2337                 correct sibling control when more than one
2338                 control has same TabIndex as the currently 
2339                 focused one.
2340                 - Changed FindFlatBackward to loop children
2341                 from last to first and apply same logic as in
2342                 FindFlatForward
2343                 - Changed FindControlForward to search for
2344                 children when control is not a container
2345                 but has children, or search for siblings if
2346                 control is a container...
2347                 - Changed FindControlBackward   to continue
2348                 searching for child controls when hitting 
2349                 Panel-like parents
2350                 
2351         - Fixed Focus method to update ActiveControl
2352         (FocusTest.FocusSetsActive failure)
2353         
2354         * TabControl.cs:
2355         - Focus rectangle now refreshes when gaining
2356         or losing focus
2357         - Removed grab for Tab key on IsInputKey that 
2358         was keeping tab navigation from working (#78650)
2359
2360 2006-10-13  Chris Toshok  <toshok@ximian.com>
2361
2362         * PropertyGridView.cs:
2363         - Rewrite SetPropertyValue to loop over SelectedGridItem's
2364         SelectedObjects.
2365
2366         - Deal with GridItem.Value == null a few places.
2367
2368         * PropertyGrid.cs: 
2369         - replace the PopulateGridItemCollection with a pair of methods
2370         which compute the intersection of all the properties in the
2371         SelectedObjects array.  Fixes #79615.
2372
2373         - Throw ArgumentException from set_SelectedObjects if there's a
2374         null in the array.
2375
2376         - Add GetTarget method which can be used to traverse up the
2377         GridItem.Parent chain.  It depends on the assumption that
2378         selected_objects for different GridEntries are always in the same
2379         order (a safe assumption).  Use this method and loop over all the
2380         selected objects in the entry when calling RemoveValueChanged and
2381         AddValueChanged.
2382         
2383         * GridEntry.cs: Make this handle multiple selected objects.
2384         .Value returns null if not all the selected objects share the same
2385         value.
2386
2387 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
2388         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
2389           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
2390           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
2391           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
2392           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
2393         add additional functionality.
2394
2395 2006-10-12  Mike Kestner  <mkestner@novell.com>
2396
2397         * ErrorProvider.cs : new ToolTipWindow ctor sig.
2398         * HelpProvider.cs : new ToolTipWindow ctor sig.
2399         * ToolTip.cs : remove ToolTip param from Window sig since it is
2400         not used.
2401         * ToolBar.cs : add tooltip support.  Fixes #79565.
2402
2403 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2404
2405         * ComboBox.cs: move the events in set_SelectedIndex to 
2406         after the call to HighlightIndex in order to avoid 
2407         possible recursion and subsequent problems with the call
2408         to HighlightIndex and include a range check in 
2409         set_HighlightIndex. Fixes #79588
2410         
2411 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2412
2413         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
2414         to ui thread's settings instead of sunday. 
2415         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
2416
2417 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
2418
2419         * DateTimePicker.cs
2420         * MonthCalendar.cs
2421         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
2422         and implement missing functionality (selecting different parts 
2423         of the date and edit them individually with the keyboard).
2424         
2425 2006-10-11  Chris Toshok  <toshok@ximian.com>
2426
2427         * Control.cs (OnInvalidated): fix NRE relating to last change.
2428
2429 2006-10-11  Chris Toshok  <toshok@ximian.com>
2430
2431         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
2432         atoms in _NET_WM_STATE here if the window is maximized.  We need
2433         to do this because we're *replacing* the existing _NET_WM_STATE
2434         property, so those atoms will be lost otherwise, and any further
2435         call to GetWindowState will return Normal for a window which is
2436         actually maximized.  Fixes #79338.
2437
2438 2006-10-11  Jackson Harper  <jackson@ximian.com>
2439
2440         * TextControl.cs: Special case for setting selection end to
2441         selection start, we basically kill the anchor.
2442         - some todo comments.
2443
2444 2006-10-11  Chris Toshok  <toshok@ximian.com>
2445
2446         * Control.cs: switch to using an "invalid_region" to track which
2447         parts of the image buffer need updating.  This is more code than
2448         the simple fix from r66532.  That version just attempted to always
2449         fill the entire buffer on redraw, which turns out to be
2450         inefficient when invalidating small rectangles.  This version
2451         simply adds the invalid rectangle to the invalid region.  When we
2452         get any WM_PAINT message we see if it can be filled using the
2453         image buffer, and if it can't (if the paint event's clip rectangle
2454         is visible in the invalid region) we first fill the image buffer.
2455         So, the image buffer is still a cache, we just fill it lazily.
2456
2457         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
2458         need it any longer.
2459
2460 2006-10-11  Chris Toshok  <toshok@ximian.com>
2461
2462         * XplatUIX11.cs (SetWindowPos): we need to update both position as
2463         well as size after calling XMoveResizeWindow.  This keeps us from
2464         ignoring future SetWindowPos calls.  Fixes the disappearing
2465         DateTimePicker in the ToolBarDockExample from bug #72499.
2466
2467 2006-10-11  Chris Toshok  <toshok@ximian.com>
2468
2469         * TextBoxBase.cs: reorder things a bit when it comes to
2470         resizing-causing-recalculation.  we were recalculating the
2471         document when our position was changed, which shouldn't happen.
2472         We only care about size changes.  Clear up some more redundant
2473         recalculation calls while I'm at it.  This makes the toolbar dock
2474         example snappy when you're just dragging toolbars around (since it
2475         causes a relayout whenever you move one.)
2476
2477 2006-10-11  Chris Toshok  <toshok@ximian.com>
2478
2479         * ToolBarButton.cs (get_Rectangle): this only returns
2480         Rectangle.Empty if Visible == false, or Parent == null.
2481         Parent.Visible doesn't matter.
2482
2483 2006-10-10  Chris Toshok  <toshok@ximian.com>
2484
2485         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2486         by .net 1.1, so switch to an internal method instead.
2487
2488 2006-10-10  Chris Toshok  <toshok@ximian.com>
2489
2490         * Control.cs (WM_PAINT): when a control is double buffered we draw
2491         initially to the ImageBuffer and then copy from there.  But when a
2492         parent control which has child controls is double buffered, the
2493         initial drawing doesn't encompass the entire ClientRectangle of
2494         the parent control, so we end up with uninitialized bits (this is
2495         easily seen by dragging the top toolbar in
2496         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2497         manually set the ClipRectangle of the paint_event (only the one we
2498         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2499         of the nastiness in bug #72499.
2500
2501         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2502         which we use in Control.cs's WM_PAINT handling.
2503
2504 2006-10-10  Jackson Harper  <jackson@ximian.com>
2505
2506         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2507
2508 2006-10-10  Chris Toshok  <toshok@ximian.com>
2509
2510         * Cursor.cs: Apply a slightly different patch to the one suggested
2511         in #79609.
2512
2513 2006-10-10  Jackson Harper  <jackson@ximian.com>
2514
2515         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
2516         not the parent form.
2517         * TextControl.cs: use difference in old line count vs new count to
2518         calculate how many lines were added, this takes into account soft
2519         line breaks properly.
2520
2521 2006-10-10  Chris Toshok  <toshok@ximian.com>
2522
2523         * LinkLabel.cs: don't call MeasureCharacterRanges against a
2524         rectangle located at 0,0 and the size of the text.  Use
2525         ClientRectangle instead.  This fixes rendering of non-left aligned
2526         link labels.
2527
2528 2006-10-10  Jackson Harper  <jackson@ximian.com>
2529
2530         * TextBoxBase.cs: When we set the selection start position the
2531         caret.
2532         * TextControl.cs: Need to update the caret when we decrement it to
2533         zero.
2534         - Make sure that the selection_visible flag gets reset to false if
2535         the selection isn't visible.  Before this you could get it set to
2536         visible by changing the selection start, then changing the end to
2537         equal the start.
2538
2539 2006-10-09  Jackson Harper  <jackson@ximian.com>
2540
2541         * TreeView.cs: Don't update scrollbars when we aren't visible.
2542         * TreeNodeCollection.cs: Only need to update scrollbars if being
2543         added to an expanded visible node or the root node.
2544
2545 2006-10-09  Chris Toshok  <toshok@ximian.com>
2546
2547         * XplatUIX11.cs (SendMessage): fix NRE.
2548
2549 2006-10-09  Jackson Harper  <jackson@ximian.com>
2550
2551         * TextBoxBase.cs: Implement horizontal autoscrolling.
2552         * TextControl.cs: Add a movement types that allows moving forward
2553         and backwards without wrapping.
2554
2555 2006-10-09  Mike Kestner  <mkestner@novell.com>
2556
2557         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
2558         with focus "expansion" of labels.  Fixes #79532 and then some.
2559         * ThemeWin32Classic.cs : add LineLimit to ListView label format
2560         when wrapping.
2561
2562 2006-10-09  Jackson Harper  <jackson@ximian.com>
2563
2564         * TextBoxBase.cs: Set the default max values to MaxValue since
2565         we use the scrollbar for autoscrolling and the default value is
2566         100.  If we don't do this the caret won't keep up with typing
2567         after about 18 characters.
2568         * TextControl.cs: Make sure the selection is offset by the
2569         viewport x.  This fixes selection when using auto scrolling.
2570
2571 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
2572         
2573         * Form.cs: The active control should be selected after the 
2574         OnLoad so that any child control initialization that affects
2575         the selection is done. Fixes #79406
2576
2577 2006-10-06  Chris Toshok  <toshok@ximian.com>
2578
2579         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
2580         to have no evil effects.
2581
2582         - Stop selecting StructureNotifyMask on non-toplevel windows.
2583
2584           The only way children should be resized is by using the SWF api,
2585           and we already send WM_WINDOWPOSCHANGED messages in those cases.
2586           Toplevel windows can be interacted with via the window manager,
2587           and so we keep the input mask there.
2588
2589           The other event StructureNotifyMask gives us (that we care
2590           about) is DestroyNotify.  The code is already structured such
2591           that it assumes we won't be getting a DestroyNotify event for
2592           the window we pass to XDestroyWindow (which is what
2593           StructureNotifyMask is supposed to guarantee.)  So, that code
2594           shouldn't be affected by this either.
2595
2596         - Stop selecting VisibilityChangeMask altogether.
2597
2598           We weren't doing anything with the resulting events anyway.
2599         
2600         This vastly reduces the number of X requests and events we see
2601         when resizing/laying out a large ui.
2602
2603 2006-10-06  Chris Toshok  <toshok@ximian.com>
2604
2605         * ScrollableControl.cs (DisplayRectangle): we need to take into
2606         account the DockPadding regardless of whether or not auto_scroll
2607         == true.  rework this slightly to this effect, and fix bug #79606,
2608         and part of #72499 (you can now see the drag handles and drag
2609         toolbars around).
2610
2611 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
2612
2613         * ListViewItem.cs: Collections of selected and checked items are now
2614         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
2615         we mark the collection "dirty".
2616         * ListView.cs: Marked collections readonly. Modified UpdateSelection
2617         to only clear SelectedItems when a new item is selected and MultiSelect
2618         is enabled. CheckedItems and SelectedItems now subscribe to Changed
2619         event of ListViewItemCollection, and mark its list dirty whenever
2620         that event is fire. This allows us to return selected/checked items 
2621         in the same order as they are in the Items collection. This matches
2622         the MS behavior.
2623
2624 2006-10-06  Chris Toshok  <toshok@ximian.com>
2625
2626         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
2627         right mouse clicks.  Fixes bug #79593.
2628
2629 2006-10-06  Chris Toshok  <toshok@ximian.com>
2630
2631         * Splitter.cs: doh, fix splitters that don't want to cancel the
2632         movement when you drag them.  Also, impose the limits on the
2633         values we send to the SplitterMovingEvent.  Fixes #79598.
2634
2635 2006-10-06  Jackson Harper  <jackson@ximian.com>
2636
2637         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
2638         since we use this for auto scrolling also.
2639
2640 2006-10-05  Chris Toshok  <toshok@ximian.com>
2641
2642         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
2643         beginning to think that most datagrid column types don't need this
2644         method.  Fixes bug #79392.
2645
2646 2006-10-05  Chris Toshok  <toshok@ximian.com>
2647
2648         * DataGrid.cs: move back to a more lazy scheme for creating the
2649         CurrencyManager, so we aren't updating it every time you set
2650         either DataSource or DataMember.  Also, don't call
2651         RecreateDataGridRows if the currency manager hasn't changed.
2652
2653 2006-10-05  Chris Toshok  <toshok@ximian.com>
2654
2655         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
2656         emitted, SelectedIndex should already be updated.  Fixes bug
2657         #78929.
2658
2659 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
2660
2661         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
2662           ToolStripTextBox.cs: Initial commit.
2663         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
2664
2665 2006-10-05  Jackson Harper  <jackson@ximian.com>
2666
2667         * TabControl.cs: We need to invalidate the tab control area when
2668         new ones are added (duh).
2669
2670 2006-10-03  Chris Toshok  <toshok@ximian.com>
2671
2672         * Form.cs (ProcessDialogKey): if the focused control is in this
2673         form and is a button, call its PerformClick method here.  Fixes
2674         #79534.
2675
2676 2006-10-04  Jackson Harper  <jackson@ximian.com>
2677
2678         * TabPage.cs: Ignore setting of Visible, and add an internal
2679         method for setting the controls visibility.  TabPage's Visible
2680         property is a little strange on MS, this seems to make us
2681         compatible, and fixes cases where people set all the tab pages to
2682         visible.
2683         * TabControl.cs: Use the new internal setting on tab pages
2684         visibility.
2685
2686 2006-10-03  Mike Kestner  <mkestner@novell.com>
2687
2688         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
2689
2690 2006-10-03  Mike Kestner  <mkestner@novell.com>
2691
2692         * ListView.cs : use is_visible instead of Visible to check if 
2693         scrollbars should be placed/sized.  Also some max_wrap_width
2694         love for LargeIcon view.  [Fixes #79533]
2695
2696 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
2697
2698         * TextControl.cs :
2699           Make set_TextAlign() do actually update the align. Fixed #78403.
2700
2701 2006-10-03  Chris Toshok  <toshok@ximian.com>
2702
2703         * DataGrid.cs: fix a crash when switching datasources if the
2704         vertical scrollbar is at someplace other than Value = 0.  Also,
2705         reduce the number of recalculation passes we do in SetDataSource
2706         from 2 to 1.
2707
2708 2006-10-03  Jackson Harper  <jackson@ximian.com>
2709
2710         * TextBoxBase.cs: Move the if value the same bail check up, we
2711         don't want to empty the document if it is already empty, this
2712         seems to severly mess up the caret.  TODO: I should probably fix
2713         the empty statement to update teh caret somehow.
2714
2715 2006-10-03  Chris Toshok  <toshok@ximian.com>
2716
2717         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
2718         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
2719         reflection, an internal row type, properties on said type, etc.)
2720         will work with our datagrid.  Fixes #79531.
2721
2722 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2723
2724         * FileDialog.cs: Don't crash if a path is not accessible
2725           (System.UnauthorizedAccessException). Fixes #79569.
2726         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
2727           a ':' too. Return unknown icon for those paths/files.
2728
2729 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
2730
2731         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
2732         GetContainerControl returns null.
2733
2734 2006-10-02  Chris Toshok  <toshok@ximian.com>
2735
2736         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
2737         call to XGetWindowAttributes instead of "handle".  fixes an X
2738         error using notifyicon after the NotifyIconWindow to Form base
2739         class switch.
2740
2741 2006-10-02  Chris Toshok  <toshok@ximian.com>
2742
2743         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
2744         server grab and looping we need to do to get down to the most
2745         deeply nested child window.
2746         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
2747         QueryPointer again after the WarpPointer so we can generate a
2748         proper (fake) MotionNotify event to be enqueued in the destination
2749         window's queue.
2750         (GetCursorPos): call QueryPointer.
2751
2752         Fixes #79556.
2753
2754 2006-10-02  Jackson Harper  <jackson@ximian.com>
2755
2756         * NotifyIcon.cs: Derive the notify icon from a form, so things
2757         like FindForm work on it.
2758         - Swallow the WM_CONTEXTMENU message, since that is generated on
2759         mouse down, and context menu is a mouse up kinda guy.  I believe
2760         the correct fix here is probably to make the notify icon entirely
2761         NC area, but this seems to work fine for anyone not manipulating
2762         WndProc.
2763
2764 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
2765
2766         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
2767           ToolStripItemCollection.cs, ToolStripLabel.cs,
2768           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
2769           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
2770           Initial implementation.
2771         * TextRenderer.cs: Provide padding to MeasureText.
2772
2773 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
2774
2775         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
2776         of ButtonBaseAccessibleObject. Fix bug #79552.
2777
2778 2006-10-02  Jackson Harper  <jackson@ximian.com>
2779
2780         * MdiWindowManager.cs: When maximizing use the containers client
2781         rect, not it's bounds, so nc area is accounted correctly.
2782         - Use the parent form's size for the menu position, since the
2783         client isn't always the full form size.
2784
2785 2006-10-01  Chris Toshok  <toshok@ximian.com>
2786
2787         * ScrollableControl.cs: make sure neither right_edge or
2788         bottom_edge are < 0, since they're used as LargeChange for the
2789         horiz/vert scrollbars respectively.  Fixes #79539.
2790
2791 2006-10-01  Chris Toshok  <toshok@ximian.com>
2792
2793         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
2794         the xplatuix11 code can cause us to destroy/recreate our handle.
2795
2796         * XplatUIX11.cs
2797         (SystrayAdd):
2798         - this code can be invoked many times for the same Hwnd.  Make
2799           sure we only destroy the client window once (the first time this
2800           method is called).  This fixes bug #79544.
2801         - Remove the call to the improperly bound XSync.  why we had two
2802           bindings to this, I will never know, but this call resulted in
2803           events being discarded from the queue(!).
2804         - correct a misunderstanding of _XEMBED_INFO - the second atom is
2805           not our current state but the state we wish to be in.  So, 0 if
2806           we don't want to be mapped.  Change it to 1.
2807         (SystrayRemove): The XEMBED spec makes mention of the fact that
2808         gtk doesn't support the reparent of client windows away from the
2809         embedder.  Looking at gtksocket-x11.c seems to agree with this.
2810         The only avenue we have for removing systray icons is to destroy
2811         them.  We don't want the handle to go away for good, though, so
2812         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
2813         #79545.
2814         
2815 2006-10-01  Chris Toshok  <toshok@ximian.com>
2816
2817         * Form.cs (WndProc): inline the native_enabled variable usage into
2818         the cases in which it's used.  Fixes #79536.
2819
2820 2006-09-29  Mike Kestner  <mkestner@novell.com>
2821
2822         * ListView.cs : toggle the selection state for ctrl clicks in 
2823         multiselect mode. [Fixes #79417]
2824
2825 2006-09-29  Mike Kestner  <mkestner@novell.com>
2826
2827         * ListView.cs : kill CanMultiSelect and refactor the selection
2828         code to support multiselection in the absence of mod keys. Steal
2829         arrow/home/end keys by overriding InternalPreProcessMessage to
2830         restore regressed keynav behavior.
2831         [Fixes #79416]
2832
2833 2006-09-29  Jackson Harper  <jackson@ximian.com>
2834
2835         * MdiClient.cs: Repaint the titlebars when the active window is
2836         changed.
2837
2838 2006-09-29  Chris Toshok  <toshok@ximian.com>
2839
2840         * Application.cs: when entering a runloop with a modal, make sure
2841         the hwnd is enabled.  Fixes #79480.
2842
2843 2006-09-29  Chris Toshok  <toshok@ximian.com>
2844
2845         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
2846         when ListManager.CanAddRows == false, bump us back one.
2847
2848         * DataGridColumnStyle.cs (ParentReadOnly): remove the
2849         listmanager.CanAddRows check.  This makes ArrayLists uneditable
2850         using a datagrid, which is not right.
2851         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
2852         is an IEditable, but call property_descriptor.SetValue regardless.
2853         fixes #79435.
2854
2855 2006-09-29  Chris Toshok  <toshok@ximian.com>
2856
2857         * DataGridBoolColumn.cs: we need to test equality in the face of
2858         possible null values (as is the case with the default NullValue).
2859         This patch keeps us from crashing in that case.
2860
2861 2006-09-29  Jackson Harper  <jackson@ximian.com>
2862
2863         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
2864         here, since it will get called for every node collection in the
2865         tree. This is now done in the treeview once the sorting is
2866         finished.
2867         * TreeView.cs: Recalculate the visible order, and update the
2868         scrollbars after sorting, set the top nope to the root so that the
2869         recalc actually works.
2870
2871 2006-09-29  Chris Toshok  <toshok@ximian.com>
2872
2873         * LinkLabel.cs: more handling of the default link collection in
2874         the face of LinkArea manipulation.  The default link collection
2875         contains 1 element (start=0,length=-1).  If the user sets LinkArea
2876         to anything and the links collection is the default, clear it.
2877         Then only add the link if its nonempty.  Fixes #79518.
2878
2879 2006-09-29  Chris Toshok  <toshok@ximian.com>
2880
2881         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
2882         piece correctly when we hit a '\n'.  Fixes #79517.
2883
2884 2006-09-29  Chris Toshok  <toshok@ximian.com>
2885
2886         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
2887         change the binding of gdk_init_check to take two IntPtr's, and
2888         pass IntPtr.Zero for both of them.  Fixes #79520.
2889
2890 2006-09-29  Mike Kestner  <mkestner@novell.com>
2891
2892         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
2893         [Fixes #78779]
2894
2895 2006-09-28  Jackson Harper  <jackson@ximian.com>
2896
2897         * XplatUIX11.cs: When translating NC messages make sure we go from
2898         whole window to screen, not client window to screen.
2899         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
2900         method doesn't exist
2901         - Skip over controls that aren't forms when arranging.
2902
2903 2006-09-28  Jackson Harper  <jackson@ximian.com>
2904
2905         * XplatUIWin32.cs: Clip the rect to the parent window.
2906         * XplatUIStructs.cs: Add clipping modes struct.
2907         * InternalWindowManager.cs: New private method that factors title
2908         bar heights in when calculating the pos of an NC mouse message.
2909         - Use SendMessage to force a paint when the form's size is changed
2910         instead of painting the decorations immediately.
2911         - Don't let the NC button click messages get to DefWndProc,
2912         because they will attempt to handle windowing themself, and this
2913         messes up z-order (it will put them in front of the scrollbars).
2914         * XplatUIX11.cs: Make sure that we don't reset window managers if
2915         we already have one (ie the window is an MDI window).
2916
2917 2006-09-28  Chris Toshok  <toshok@ximian.com>
2918
2919         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
2920         menu code really needs going over.
2921
2922 2006-09-27  Chris Toshok  <toshok@ximian.com>
2923
2924         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
2925         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
2926         window is maximizable.  So, we need to make sure that even if we
2927         clear the border/wm frame of those functions, they're still
2928         available (basically, we remove the decoration without removing
2929         the function).  Half the fix for #79338.
2930
2931 2006-09-27  Chris Toshok  <toshok@ximian.com>
2932
2933         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
2934         Fixes bug #79515.
2935
2936 2006-09-27  Chris Toshok  <toshok@ximian.com>
2937
2938         * Splitter.cs: reorder things a bit so that we don't actually
2939         draw/move the splitter until after calling OnSplitterMoving.  This
2940         lets users cancel/disallow the movement by explicitly setting
2941         event.SplitX/SplitY.  Fixes #79372.
2942
2943 2006-09-27  Jackson Harper  <jackson@ximian.com>
2944
2945         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
2946         because it is most likely on a window being destroyed, and that
2947         will give us an X11 error.
2948
2949 2006-09-27  Chris Toshok  <toshok@ximian.com>
2950
2951         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
2952         the dropdown button now toggles between showing and hiding the
2953         dropdown.  Also, get rid of dropdown_form_showing and just use
2954         dropdown_form.Visible.  We still don't do a grab, but I'll leave
2955         that part to someone who has handled Capture-fu before.
2956
2957 2006-09-27  Chris Toshok  <toshok@ximian.com>
2958
2959         * DataGrid.cs: return false if alt isn't pressed when '0' is
2960         pressed.  this keeps the '0' key from being swallowed, and fixes
2961         bug #79350.
2962
2963 2006-09-27  Chris Toshok  <toshok@ximian.com>
2964
2965         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
2966         Calling Refresh (in response to a scrollbar event) screws up the
2967         scrollbar painting.  Fixes bug #78923.
2968
2969 2006-09-27  Chris Toshok  <toshok@ximian.com>
2970
2971         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
2972         then insert into hashtable" blocks threadsafe.
2973
2974 2006-09-27  Chris Toshok  <toshok@ximian.com>
2975
2976         * MessageBox.cs (CreateParams): the styles should be |'ed with our
2977         baseclass's, since otherwise the
2978         ControlBox/MinimizeBox/MaximizeBox assignments above have no
2979         effect.  This gets the close button back in messageboxes.
2980
2981 2006-09-27  Chris Toshok  <toshok@ximian.com>
2982
2983         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
2984         flag, not just != 0.  this makes flags that are actually multiple
2985         bits (like WS_CAPTION) work.  fixes bug #79508.
2986
2987 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
2988
2989         * PageSetupDialog.cs: add support for getting and settings the 
2990         paper size, source and orientation.
2991
2992 2006-09-26  Chris Toshok  <toshok@ximian.com>
2993
2994         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
2995         and caption == "", we need to remove the resize handles as well as
2996         the title bar.
2997
2998         * Control.cs (set_Text): turns out that setting Text on a form
2999         should change the WM styles on the window, since if ControlBox ==
3000         false, the only way to get a window border is to have a non-""
3001         Text property.  check winforms/forms/text.cs for an example.  so,
3002         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3003         update both window styles and title.  This fixes a lot of dialogs
3004         (including the preferences dialog in MonoCalendar.)
3005
3006 2006-09-26  Chris Toshok  <toshok@ximian.com>
3007
3008         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3009         control isn't a Form), call Win32ShowWindow to hide the window,
3010         but don't update the control Visible property.  When we reparent
3011         back to a parent control, call SetVisible in order for the
3012         window's visibility to be reinstated.
3013
3014         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3015         the FosterParent.
3016
3017         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3018         call for good, since it breaks MonoCalendar (and other things I'm
3019         sure.) Also, set all_controls to null *after* the owner calls,
3020         which end up regenerating it.
3021         (ChangeParent): allow new_parent to be == null, passing
3022         IntPtr.Zero down to XplatUI.
3023
3024         this fixes #79294 the right way.
3025
3026 2006-09-26  Mike Kestner  <mkestner@novell.com>
3027
3028         * GridEntry.cs : internal SetParent method.
3029         * PropertyGrid.cs : attach to property changed on the proper
3030         target if we have a hierarchical grid with subobjects. Setup
3031         GridItem.Parent for hierarchical items.
3032         * PropertyGridView.cs : Set value on the correct target for
3033         hierarchical grids. [Fixes #78903]
3034
3035 2006-09-26  Chris Toshok  <toshok@ximian.com>
3036
3037         * Control.cs (ChildNeedsRecreating): this should return true if
3038         either we're being recreated and the child is in our list, or our
3039         parent is waiting for our recreation.
3040
3041 2006-09-26  Chris Toshok  <toshok@ximian.com>
3042
3043         * Control.cs (ControlCollection.Remove): reinstate the
3044         value.Hide() call as suggested in bug #79294.
3045
3046 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3047
3048         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3049         coordinates (versus a relative move).
3050
3051 2006-09-26  Chris Toshok  <toshok@ximian.com>
3052
3053         * Control.cs: rework child recreation a little bit.  It turns out
3054         that we race between the DestroyNotify the WM_DESTROY message.  If
3055         the parent gets its DestroyNotify before the child gets the
3056         WM_DESTROY message, the child ends up not recreating (since the
3057         parent finishes its recreation on DestroyNotify, and the child
3058         checks ParentIsRecreating.)
3059
3060         So, instead we store off a list of all the child controls which
3061         need to be recreated when the parent control starts to recreate
3062         itself.  Then, when child controls get their WM_DESTROY message we
3063         check to see if they're in the parent's pending recreation list,
3064         and if so, we recreate.  This removes all dependency on ordering
3065         from the code and fixes the initial MonoCalendar upgrade dialog.
3066         
3067 2006-09-26  Jackson Harper  <jackson@ximian.com>
3068
3069         * TextControl.cs: Use the Line to get the length of the line,
3070         since soft line breaks can change the end line.
3071
3072 2006-09-26  Chris Toshok  <toshok@ximian.com>
3073
3074         * Control.cs (ControlCollection.AddImplicit): don't add the
3075         control again if it's already in one of our lists.  This keeps us
3076         from adding controls over and over again for comboboxes when their
3077         handle gets recreated (as the combobox adds implicit controls in
3078         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3079
3080 2006-09-26  Jackson Harper  <jackson@ximian.com>
3081
3082         * TextControl.cs: When deleting characters make sure that any
3083         orphaned zero lengthed tags get deleted.
3084         - Fix ToString for zero lengthed tags.
3085
3086 2006-09-25  Jackson Harper  <jackson@ximian.com>
3087
3088         * TextControl.cs: When getting a tag at the location there can be
3089         multiple tags at the same spot, these are 0-lengthed tags that
3090         appear when extra formatting has been stuck in a location.  We
3091         need to pull out the last of these 0 lengthed tags.
3092
3093 2006-09-25  Jackson Harper  <jackson@ximian.com>
3094
3095         * TextControl.cs: Fix print out in debug method.
3096         * TextBoxBase.cs: When text is set bail if we are setting to the
3097         previous value.
3098         
3099 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3100
3101         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3102           It is now possible to change the selected index in a FontXXXListBox
3103           with the up and down arrow keys from the FontXXXTextBoxes.
3104           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3105           FontXXXListBoxes to match ms.
3106
3107 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3108
3109         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3110         anyone can dispose it, anytime. All other properties returns enums, 
3111         structs or basic types so they don't need such tricks.
3112
3113 2006-09-22  Jackson Harper  <jackson@ximian.com>
3114
3115         * XplatUI.cs:
3116         * XplatUIWin32.cs:
3117         * Clipboard.cs:
3118         * DataFormats.cs:
3119         * XplatUIOSX.cs:
3120         * XplatUIDriver.cs: Update interface to add a primary selection
3121         flag, so the driver can use the primary selection buffer if
3122         needed.
3123         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3124
3125         * RichTextBox.cs: We need to supply the data object to paste now
3126         (so we can choose to supply CLIPBOARD or PRIMARY).
3127         * TextBoxBase.cs: Supply data object to paste (see above).
3128         - Middle click uses the primary selection data object.
3129         
3130 2006-09-21  Chris Toshok  <toshok@ximian.com>
3131
3132         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3133         of SetWMStyles.  It's still a rat's nest and is largely
3134         order-dependent which I dislike immensely.  This also fixes the X
3135         button disappearing from toplevel forms.
3136
3137 2006-09-21  Mike Kestner <mkestner@novell.com>
3138
3139         * ListBox.cs: move Jordi's click/dblclick raising code to the
3140         mouse up handler.
3141
3142 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3143
3144         * ListBox.cs: Fixes 79450
3145
3146 2006-09-21  Mike Kestner <mkestner@novell.com>
3147
3148         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3149         to deal with people updating the TreeNodeCollection after the tree
3150         is disposed.  "Fixes" 79330.
3151
3152 2006-09-20  Jackson Harper <jackson@ximian.com>
3153
3154         * TextControl.cs: Push the cursor record onto the undo stack
3155         before the delete action. This fixes 78651.
3156
3157 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3158
3159         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3160         CreateParams. Fixes 79329.
3161
3162 2006-09-19  Chris Toshok  <toshok@ximian.com>
3163
3164         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3165         things up a bit.  First, get rid of the NetAtoms array (and the NA
3166         enum), and just embed the atoms as static fields.  Also, add a
3167         couple of functions (StyleSet and ExStyleSet) to clean up all the
3168         bitmask testing of styles.
3169
3170         * X11Structs.cs: remove the NA enum, not needed anymore.
3171         
3172 2006-09-19  Chris Toshok  <toshok@ximian.com>
3173
3174         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3175         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3176         added cleanup to get MessageBox titles appearing again, which were
3177         broken by my earlier fix for caption-less/ControlBox-less windows.
3178
3179 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3180
3181         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3182           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3183           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3184           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3185           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3186           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3187           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3188           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3189           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3190           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3191           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3192             Inital import.
3193         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3194           ToolStripButton.cs: Stubs needed for above.
3195         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3196
3197 2006-09-15  Chris Toshok  <toshok@ximian.com>
3198
3199         * XplatUIX11.cs:
3200         - make the MessageQueues hashtable Synchronized.
3201         
3202         - SendMessage: if the Hwnd is owned by a different thread, use the
3203         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3204         thread.  Fixes bug #79201.
3205
3206 2006-09-15  Chris Toshok  <toshok@ximian.com>
3207
3208         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3209         ControlBox == false, we disallow maximize/minimize/close.  If the
3210         form Caption is "" we also disallow move (and get rid of the Title
3211         decoration).  Unfortunately, regardless of how things are set,
3212         we're stuck with the Title and WM menu.
3213
3214 2006-09-15  Chris Toshok  <toshok@ximian.com>
3215
3216         * Application.cs: add locking around the static message_filters
3217         ArrayList, part of #79196.
3218
3219 2006-09-15  Chris Toshok  <toshok@ximian.com>
3220
3221         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
3222         Form.ControlBox == false, the window has no titlebar nor resize
3223         handles.  fixes bug #79368.
3224
3225 2006-09-15  Chris Toshok  <toshok@ximian.com>
3226
3227         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
3228         >= 0.  Fixes bug #79370.
3229
3230 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
3231         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
3232         * Control.cs:
3233             Add properties: LayoutEngine, Margin, DefaultMargin.
3234             Add method: GetPreferredSize.
3235             Move layout logic from PerformLayout to layout engines. 
3236
3237 2006-09-13  Chris Toshok  <toshok@ximian.com>
3238
3239         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
3240         fix for #79326 broke #78718, so this change addresses that.
3241
3242         - in SendWMDestroyMessages remove the call to
3243         CleanupCachedWindows, since we might be recreating the control and
3244         need to maintain the references to right Hwnd handles.  Also, set
3245         the zombie flag to true for each of the children in the hierarchy
3246         instead of calling hwnd.Dispose.  This will cause GetMessage to
3247         ignore all events for the window except for DestroyNotify.
3248
3249         - In GetMessage, ignore messages except for DestroyNotify for
3250         zombie hwnds.
3251         
3252         * Control.cs: revert the is_recreating fix from the last
3253         ChangeLog.  It's definitely "right", but it breaks switching from
3254         an MDI form to a non-MDI form.  Will need to revisit that.
3255
3256         * Hwnd.cs: add a zombie flag, which means "the
3257         client_window/whole_window handles are invalid, but we're waiting
3258         for the DestroyNotify event to come in for them".  Set the flag to
3259         false explicitly if setting WholeWindow/ClientWindow, and also
3260         when Disposing.
3261         
3262 2006-09-13  Chris Toshok  <toshok@ximian.com>
3263
3264         * XplatUIX11.cs: rework window destruction slightly.
3265
3266         - when destroying the windows associated with a control, we don't
3267         need 2 separate XDestroyWindow calls.  Just the one for the
3268         whole_window (or for client_window if whole_window is somehow
3269         IntPtr.Zero -- can this happen?) is enough.
3270
3271         - reworked SendWMDestroyMessages slightly, so we always dispose
3272         the child control hwnd's after sending the messages.
3273         
3274         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
3275         the two places it was used (one was even using hwnd.Handle and the
3276         other hwnd.client_window.  ugh), adding another call in
3277         SendWMDestroyMessages.  We need this new call because now the
3278         DestroyNotify events in the queue will be ignored for the child
3279         controls (as their hwnd's were disposed, and the window id's
3280         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
3281
3282         - this fixes bug #79326.
3283
3284 2006-09-13  Chris Toshok  <toshok@ximian.com>
3285
3286         * Control.cs: don't always set is_recreating to false at the end
3287         of RecreateHandle, since sometimes we're not done (and won't be
3288         until WndProc handles the WM_DESTROY message).  Also, set
3289         is_recreating to false in the WM_DESTROY handling code.  Part of
3290         the fix for bug #79326.
3291
3292 2006-09-13  Miguel de Icaza  <miguel@novell.com>
3293
3294         * X11DesktopColors.cs: Start the droppage of debugging messages.
3295
3296         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
3297
3298 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
3299
3300         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
3301
3302 2006-09-12  Chris Toshok  <toshok@ximian.com>
3303
3304         * DataGrid.cs (get_ListManager): if the list_manager is null, try
3305         to create it using SetDataSource.  Fixes bug #79151.
3306
3307 2006-09-11  Chris Toshok  <toshok@ximian.com>
3308
3309         * XEventQueue.cs: add a DispatchIdle property.
3310
3311         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
3312         either the queue is null, or the queue has DispatchIdle set to
3313         true.
3314         (DoEvents): set queue.DispatchIdle to false around the
3315         peek/translate/dispatch message loop in this method.  This keeps
3316         Application.Doevents from emitting idle events.  Part of the fix
3317         for #78823.
3318
3319 2006-09-11  Chris Toshok  <toshok@ximian.com>
3320
3321         * DataGrid.cs (set_DataSource): make this work for both the
3322         winforms/datagrid test and ReportBuilder.  It seems as though when
3323         we've created a ListManager (or maybe it's if we have a
3324         BindingContext?), when we set the DataSource it clears the
3325         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
3326         #79333.
3327
3328 2006-09-11  Chris Toshok  <toshok@ximian.com>
3329
3330         * XplatUIX11.cs: deal with queue being null, which happens in all
3331         the Clipboard functions.  Fixes one of the two problems mentioned
3332         in #78612.
3333
3334 2006-09-11  Chris Toshok  <toshok@ximian.com>
3335
3336         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
3337         button on various spots (including outside the menu) works closer
3338         to MS, and doesn't crash.  Fixes #79343.
3339
3340 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
3341
3342         * ListView.cs: Do not initialize item_sorter in init. To match MS,
3343         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
3344         and the internal comparer is set. When a new ListViewItemSorter is set,
3345         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
3346         was specified. No further processing is necessary if SortOrder is set
3347         to it's current value. If Sorting is modified to None, and View is
3348         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
3349         (either custom or our internal ItemComparer) to null, on 1.0 profile
3350         only set item_sorter to null if its our internal IComparer. If Sorting
3351         is modified to Ascending or Descending, then use our internal IComparer
3352         if none is set, and if the current IComparer is our internal one then:
3353         on 2.0 profile always replace it with one for new Sorting, and on 1.0
3354         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
3355         Enum.IsDefined to verify whether a valid View value is specified in
3356         its setter. Automatically sort listview items when listview is
3357         created. In Sort, do nothing if ListView is not yet created, or if
3358         no item_sorter is set (no Sorting was set, Sorting was explicitly set
3359         to None or ListViewItemSorter was set to null). Added Sort overload
3360         taking a bool to indicate whether the ListView should be redrawn when
3361         items are sorted (we use this in ListViewItemCollection to avoid double
3362         redraws). Modified our internal IComparer to take the sort order into
3363         account. In Add and AddRange methods of ListViewItemCollection, also
3364         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
3365         view), but use overload with noredraw option to avoid double redraw.
3366         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
3367         true when View is Tile, and do the same when attempting to set View to
3368         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
3369         for selected/checked indices, as it involves overhead when sorting is
3370         done while these collections are not used all that often. Instead
3371         we'll build the indices on demand. Modified IList implementation of
3372         CheckedIndexCollection to use public methods if object is int.
3373         Modified CheckedListViewItemCollection to hide checked items if
3374         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
3375         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
3376         IList implementation in SelectedIndexCollection to use public methods
3377         if object is int. Modified SelectedListViewItemCollection to hide
3378         selected items if listview is not yet created.
3379         * ListViewItem.cs: CheckedIndices list no longer needs to be
3380         maintained separately (see ListView changes). Also clone font, fixes
3381         test failure.
3382
3383 2006-09-11  Mike Kestner  <mkestner@novell.com>
3384
3385         * ComboBox.cs: if we are updating the contents of the currently
3386         selected index, refresh the control or the textbox selection.
3387         [Fixes #79066]
3388
3389 2006-09-11  Mike Kestner  <mkestner@novell.com>
3390
3391         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
3392         the 'specified' logic has been moved there.  This seems like a bug 
3393         in Control.cs, since our current SetBoundsCore completely ignores 
3394         the specified parameter.  Peter's commit seems to indicate that is 
3395         the way the MS control implementation works.  [Fixes #79325]
3396
3397 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
3398
3399         * XplatUI.cs: Set default_class_name to be composed
3400         of current domain id. This allows MWF to be loaded in multiple
3401         domains on Win32.
3402
3403 2006-09-09  Miguel de Icaza  <miguel@novell.com>
3404
3405         * X11Keyboard.cs: If we are unable to obtain the input method, do
3406         not call CreateXic to create the input context.   Should fix
3407         #78944/79276.
3408
3409 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
3410
3411         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
3412           Simplified gnome support by adding more pinvokes to get the
3413           icon for a file or mime type.
3414
3415 2006-09-08  Jackson Harper  <jackson@ximian.com>
3416
3417         * MenuAPI.cs: Deslect popup context menu items before closing the
3418         window, so that you don't see the previously selected item
3419         selected when you reopen the menu.
3420         * TextControl.cs: Update the cursor position even if we don't have
3421         focus.  This fixes typing in things like the ComboBox.  I'm not
3422         totally sure we should always set the visibility if we don't have
3423         focus, but couldn't find any corner cases where the cursor showed
3424         up when it shouldn't.
3425
3426 2006-09-08  Chris Toshok  <toshok@ximian.com>
3427
3428         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
3429         our arrays are length 256.  & 0xff before indexing.  Fixes the
3430         crash in bug #78077.
3431         
3432 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3433
3434         * ThemeWin32Classic.cs: 
3435         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
3436         is true. Handle that check box too.
3437
3438 2006-09-07  Chris Toshok  <toshok@ximian.com>
3439
3440         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
3441         79244.
3442
3443 2006-09-07  Chris Toshok  <toshok@ximian.com>
3444
3445         * Control.cs: in set_BackColor only do the work if
3446         background_color != value.
3447
3448         * XplatUIX11.cs: move the clearing of invalid areas (both client
3449         and nc) to the same block of code where we set (nc_)expose_pending
3450         to false.  That is, move it from PaintEventEnd to PaintEventStart,
3451         so things that cause invalidates from within OnPaint will trigger
3452         another call to OnPaint.  Fixes bug #79262.
3453
3454 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
3455
3456         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
3457         * FileDialog.cs: Fix typo
3458
3459 2006-09-07  Jackson Harper  <jackson@ximian.com>
3460
3461         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
3462         for tab pages if they have any.
3463
3464 2006-09-06  Mike Kestner  <mkestner@novell.com>
3465
3466         * Splitter.cs: use the "current" rect when finishing drag handle
3467         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
3468
3469 2006-09-06  Mike Kestner  <mkestner@novell.com>
3470
3471         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
3472         support offset splitters. [Fixes #79298]
3473
3474 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
3475
3476         * Mime.cs: Fixed a bug that could override the global mime type
3477           result.
3478
3479 2006-09-05  Jackson Harper  <jackson@ximian.com>
3480
3481         * TabControl.cs: Better calculation method for setting the slider
3482         pos. Prevents crashes on really wide tabs.
3483         - Draw Image on tab pages if an image list is used.
3484
3485 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3486
3487         * MonthCalendar.cs: When Font changes, the Size should be
3488         updated to fit the new font's space requirements.
3489
3490 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3491
3492         * ListBox.cs: If the items are cleared with Items.Clear set
3493           top_index to 0.
3494
3495 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3496
3497         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3498         fire DateChanged event instead of DateSelected event when
3499         the date was changed by keyboard interaction.
3500
3501 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3502
3503         * DateTimePicker.cs: Handle DateChanged for the associated
3504         month_calendar control, and set month_calendar.Font from 
3505         OnFontChanged method, as well as resize the height of the
3506         control when needed. Make PreferredHeight proportional.
3507
3508 2006-09-01  Chris Toshok  <toshok@ximian.com>
3509
3510         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
3511         properties.
3512
3513         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
3514
3515 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
3516
3517         * FileDialog.cs: Set ClientSize instead of window size, to allow space
3518           for decorations (Fixes #79219)
3519
3520 2006-09-01  Mike Kestner  <mkestner@novell.com>
3521
3522         * ComboBox.cs: first stab at sorting plus some selection handling
3523         fixes to bring us more in line with MS behavior.  Also switches back
3524         to index based selection.  Alternative patches for index-based 
3525         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
3526         and latency@gmx.de on bug 78848.  I assume they were similar to this
3527         code I've had simmering in my tree forever.
3528         [Fixes #78848]
3529
3530 2006-09-01  Chris Toshok  <toshok@ximian.com>
3531
3532         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
3533         when setting list position guard against ending up with a -1 index
3534         (the other part of the fix for #78812).  Should probably make sure
3535         we don't need the analogous fix in the ItemDeleted case.
3536
3537         * DataGrid.cs:
3538         - in SetDataSource, work around the fact that the way
3539         OnBindingContextChanged is invoked will cause us to re-enter this
3540         method.  I'll remove the hack once I investigate
3541         OnBindingContextChanged.
3542
3543         - fix the logic in set_DataSource and set_DataMember (basically
3544         what to do if the other of the two is null.)
3545         
3546         - in OnListManagerItemChanged, we need to take into account the
3547         edit row when deciding whether or not to call RecreateDataGridRows
3548         (part of the fix for #78812).
3549
3550 2006-09-01  Jackson Harper  <jackson@ximian.com>
3551
3552         * Splitter.cs: Don't do anything if there is no control to affect
3553         (prevents us from crashing in weird tet cases).
3554         * TreeView.cs: Bounding box for the mouse movement reverting
3555         focus/selection back to previously selected node.  This matches
3556         MS, and makes the tree a lot more useable.
3557         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
3558         use clipping so they are not drawn.  This fixes when the control
3559         is set to have a transparent background, or if it was over an
3560         image.
3561
3562 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
3563
3564         * MimeIcon.cs: Improved handling for reading default icons when
3565           using gnome (2.16 made it necessary). Check and read svg icons
3566           first, then 48x48 and then 32x32 icons.
3567
3568 2006-08-31  Chris Toshok  <toshok@ximian.com>
3569
3570         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
3571         visible.
3572
3573         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
3574         ProcessKeyPreview.  Fixes part of #77806.
3575
3576         * DataGrid.cs: big patch.
3577
3578         - revert the queueing up of DataSource/DataMember if inside
3579         BeginInit/EndInit calls.  That's not the way the datagrid achieves
3580         its delayed databinding.  Instead, call SetDataSource in
3581         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
3582         #78811.
3583
3584         - Also, it wasn't mentioned in #78811, but the test case exhibits
3585         behavior that was lacking in our datagrid implementation - Columns
3586         that have mapping names that don't exist in the datasource's
3587         properties aren't shown.  Yuck.  To fix this I added the bound
3588         field to the column style, and basically any calculation to figure
3589         out anything about columns uses a loop to find the bound columns.
3590         still need to investigate if I can cache an array of the bound
3591         columns or if the indices must be the same.
3592
3593         - When setting CurrentCell, we no longer abort if the cell being
3594         edited was in the add row.  This fixes the other part of #77806.
3595
3596         - The new code also fixes #78807.
3597         
3598         * ThemeWin32Classic.cs: perpetrate the same disgusting
3599         column.bound field hack, and only render bound fields.
3600
3601 2006-08-31  Chris Toshok  <toshok@ximian.com>
3602
3603         * DataGridColumnStyle.cs: add bound field.  this field is true if
3604         the datasource has a property corresponding to the mapping name.
3605
3606         * DataGridTableStyle.cs: set the bound field on the column styles
3607         depending on whether or not we have a column for that property.
3608
3609 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
3610
3611         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
3612           splitter control (fixes #79228)
3613
3614 2006-08-31  Chris Toshok  <toshok@ximian.com>
3615
3616         * DataGridColumnStyle.cs: we need to delay the assignment of
3617         property descriptor until the last possible moment due to the lazy
3618         databinding stuff in the datagrid.  Also, fix the exceptions
3619         thrown by CheckValidDataSource to match MS.
3620
3621 2006-08-31  Jackson Harper  <jackson@ximian.com>
3622
3623         * Form.cs: When activated select the active control, if there is
3624         no active control, we select the first control.
3625         * XplatUIX11.cs: If there is no focus control when we get a
3626         FocusIn event, find the toplevel form and activate it.  This
3627         occurs when you popup a window, it becomes the focus window, then
3628         you close that window, giving focus back to the main window.
3629
3630 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3631
3632         * MonthCalendar.cs: 
3633         * ThemeWin32Classic.cs: Cache Font in bold style, as well
3634         as StringFormat with Center alignments in MonthCalendar,
3635         instead of creating new ones when drawing the control. 
3636         Also, draw the month name in bold style.
3637
3638 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
3639
3640         * Control.cs:
3641           - PerformLayout(): It would seem MS performs the fill even if the 
3642             control is not visible (part of #79218 fix)
3643           - ResetBackColor(): Use the setter to reset the color, to allow
3644             overriders to catch the change.
3645         * Form.cs:
3646           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
3647           - CreateHandle(): dito (part of $79218 fix)
3648           - Don't set an icon if we have a dialog
3649         * ScrollableControl.cs:
3650           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
3651           - ScrollIntoView(): No need to scroll if control is already visible
3652             (resolves fixme and fixes #79218)
3653
3654 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3655
3656         * MonthCalendar.cs: Change proportions in SingleMonthSize
3657         to match the aspect of the original control.
3658
3659 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
3660
3661         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
3662           get updated when they get maximized.
3663
3664 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
3665
3666         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
3667
3668 2006-08-29  Chris Toshok  <toshok@ximian.com>
3669
3670         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
3671
3672 2006-08-29  Jackson Harper  <jackson@ximian.com>
3673
3674         * TreeView.cs: Need to track selected node and highlighted node,
3675         they aren't always the same thing, when the mouse is down on a
3676         node it is hilighted, but not selected yet.
3677         - Do the HideSelection stuff right
3678         - Need to focus on rbutton mouse down. And redraw selection when
3679         right click is mouse upped.
3680
3681 2006-08-29  Mike Kestner  <mkestner@novell.com>
3682
3683         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
3684         when SubItems.Count < Columns.Count.  [Fixes #79167]
3685
3686 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
3687
3688         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
3689
3690 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
3691
3692         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
3693           from X. Only send based on ConfigureNotify if we don't have the
3694           correct location in hwnd (if the window manager moved us)
3695
3696 2006-08-28  Mike Kestner  <mkestner@novell.com>
3697
3698         * ListView.cs: remove a TODO. 
3699         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
3700         [Fixes ListView part of #79166]
3701
3702 2006-08-28  Mike Kestner  <mkestner@novell.com>
3703
3704         * ListView.cs: move wheel handler to parent since it is focused
3705         instead of the item_control now.  [Fixes #79177]
3706
3707 2006-08-28  Mike Kestner  <mkestner@novell.com>
3708
3709         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
3710         when the control is focused. [Fixes #79171]
3711
3712 2006-08-28  Mike Kestner  <mkestner@novell.com>
3713
3714         * ListView.cs: size the item and header controls for empty and
3715         unscrollable views.
3716         * ThemeWin32Classic.cs: draw disabled backgrounds.
3717         [Fixes #79187]
3718
3719 2006-08-28  Chris Toshok  <toshok@ximian.com>
3720
3721         * Form.cs: remove unused "active_form" static field.
3722
3723         * Hwnd.cs: lock around accesses to static windows collection.
3724
3725         * Application.cs: lock threads in Exit ().
3726
3727 2006-08-28  Chris Toshok  <toshok@ximian.com>
3728
3729         * NativeWindow.cs: lock around accesses to window_collection.
3730         
3731 2006-08-28  Chris Toshok  <toshok@ximian.com>
3732
3733         * Control.cs: err, fix this the right way, by locking on controls
3734         when using it.  not by making it synchronized.
3735
3736 2006-08-28  Chris Toshok  <toshok@ximian.com>
3737
3738         * Control.cs: make the static "controls" field synchronized, as it
3739         gets updated from multiple threads.
3740
3741 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3742
3743         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
3744           Prevent other threads from exiting when calling thread sets quit state.
3745         * XEventQueue.cs: Added PostQuitState property
3746
3747 2006-08-27  Chris Toshok  <toshok@ximian.com>
3748
3749         * AsyncMethodData.cs: add a slot for the window handle.
3750
3751         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
3752         window (the destination control's window, not the foster window).
3753
3754         * Control.cs (BeginInvokeInternal): store the window's handle in
3755         the AsyncMethodData.
3756         
3757
3758 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3759
3760         * XplatUIX11.cs:
3761           - PostQuitMessage: Removed resetting S.D display handle, we might have
3762             another loop started after calling PostQuitMessage (Fixes #79119)
3763           - Created destructor to reset S.D handle
3764
3765 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
3766
3767         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
3768
3769 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3770
3771         * TextControl.cs (Insert): Update the caret position even if we don't
3772           have a handle yet, just don't call the driver in that case.
3773         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
3774           to the end of the new selection text (Fixes #79184)
3775
3776 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3777
3778         * Form.cs (Activate): Only activate if the handle is created)
3779         * Control.c:
3780           - Mark window as invisible when it's disposed
3781           - Check if window handle is created when setting window visible, 
3782             instead of relying just on the is_created variable
3783           - Check if object is disposed when creating the control (Fixes #79155)
3784
3785 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3786
3787         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
3788           when allowing layout again. Otherwise we re-generate the anchoring 
3789           distance to the border again and actually alter what the user wanted
3790           This is ugly, it'd be better if we used DisplayRectangle instead of
3791           ClientRectangle for Control.UpdateDistances, but that causes us to
3792           have other problems (initial anchoring positons would be wrong)
3793           (Fixes #78835)
3794
3795 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3796
3797         * Control.cs:
3798           - The size and location setters shouldn't go directly to 
3799             SetBoundsCore, but to SetBounds, which triggers layout on the
3800             parent, then calls SetBoundsCore. (Related to fix for #78835)
3801           - SetBounds: Moved actual location update code into this function
3802             from SetBoundsCore, to match MS. Added call to PerformLayout if
3803             we have a parent (to trigger resizing of anchored parents if the 
3804             child size has changed (see testcase for #78835) 
3805         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
3806           new control code
3807         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
3808
3809 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3810
3811         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
3812           System.Drawing when a toplevel window gets closed; there might
3813           be other toplevel windows belonging to the same app (Fixes #78052)
3814
3815 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
3816
3817         * FileDialog.cs: After reading FileDialog settings from mwf_config
3818           use Desktop prefix only if a real folder doesn't exist anymore.
3819         * FontDialog.cs: Added char sets.
3820           It is now possible to select the font, size or style with the
3821           textboxes.
3822
3823 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
3824
3825         * PrintPreviewDialog.cs: Use assembly name constants.
3826
3827 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3828
3829         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
3830           scrollbar from whacking it's buttons)
3831
3832 2006-08-24  Chris Toshok  <toshok@ximian.com>
3833
3834         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
3835         in this patch (aggregating setting Left/Top/Width/Height to
3836         setting Bounds on the scrollbars), but the crux of the fix is in
3837         Recalculate, where we scroll by the remaining scroll_position if
3838         we're hiding a scrollbar.  The 2*$5 reward in the comment is
3839         serious.
3840
3841 2006-08-24  Jackson Harper  <jackson@ximian.com>
3842
3843         * MdiClient.cs:
3844         * MdiWindowManager.cs: If the form is made a non-mdi window we
3845         need to remove the form closed event so that closing forms works
3846         correctly.
3847
3848 2006-08-24  Jackson Harper  <jackson@ximian.com>
3849
3850         * Control.cs: Make IsRecreating internal so that the driver can
3851         check it
3852         - Temporarily remove the Hide when controls are removed, its
3853         making a whole bunch of things not work because visibility isn't
3854         getting reset elsewhere correctly
3855         * Form.cs: Need to do a full handle recreation when the mdi parent
3856         is set.
3857         * XplatUIX11.cs: If we are recreating handles don't dispose the
3858         HWNDs.  What was happening is the handles were being recreated in
3859         SendWMDestroyMessages, but then flow continued on in that method
3860         and destroyed the new handles.
3861
3862 2006-08-23  Jackson Harper  <jackson@ximian.com>
3863
3864         * Form.cs: MdiClient is always at the back of the bus
3865         * Control.cs: When the order of items in the collection is changed
3866         we need to reset the all_controls array
3867         - do the same sorta setup thats done when adding a control when a
3868         control is set on the collection.
3869
3870 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3871
3872         * TextBoxBase.cs (get_Text): Return an empty array if our document
3873           is empty (fixes #79052)
3874
3875 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3876
3877         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
3878           on WM_SYSCHAR messages (fixes #79053)
3879
3880 2006-08-23  Chris Toshok  <toshok@ximian.com>
3881
3882         * DataGrid.cs: fix flickering when scrolling vertically.
3883
3884 2006-08-23  Chris Toshok  <toshok@ximian.com>
3885
3886         * DataGrid.cs (EndEdit): only invalidate the row header when we
3887         need to.
3888
3889 2006-08-23  Chris Toshok  <toshok@ximian.com>
3890
3891         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
3892         methods.  fixes the flicker when scrolling around.
3893
3894 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3895
3896         * FileDialog.cs: Making sure the control is created before we get a 
3897           chance to use it with BeginInvoke (Fixes #79096)
3898
3899 2006-08-23  Chris Toshok  <toshok@ximian.com>
3900
3901         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
3902         width to use when painting the rows.
3903
3904 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3905
3906         * TextBoxBase.cs:
3907           - Throw ArgumentException if a negative value is passed to SelectionLength
3908           - Update the selection end if start is moved. end needs to be always
3909             after start. (Fixes #79095)
3910           - Track selection length; MS keeps the selection length even if start
3911             is changed; reset on all other operations affection selection
3912
3913 2006-08-22  Jackson Harper  <jackson@ximian.com>
3914
3915         * TreeView.cs: Make sure both scrollbars get displayed and sized
3916         correctly when the other bar is visible.
3917         - Use the original clip rectangle for checking if the area between
3918         the two scrollbars is visible, not the viewport adjusted clipping
3919         rectangle.
3920
3921 2006-08-22  Jackson Harper  <jackson@ximian.com>
3922
3923         * Binding.cs: We don't use IsBinding because it requires the
3924         control to be created, which really shouldn't be necessary just to
3925         set a property on the control.
3926
3927 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3928
3929         * ComboBox.cs: Some CB.ObjectCollection methods must throw
3930         ArgumentNullReferenceException when the argument is null.
3931
3932 2006-08-21  Jackson Harper  <jackson@ximian.com>
3933
3934         * Timer.cs: Track the thread that the timer is started in (NOT
3935         CREATED), this way messages for it will only be triggered on its
3936         queue.
3937         * XEventQueue.cs: Track the timers here, this makes timers per
3938         thread, like MS.
3939         * XplatUIX11.cs: The timers are moved to the XEventQueue.
3940
3941 2006-08-19  Chris Toshok  <toshok@ximian.com>
3942
3943         * XplatUIX11.cs: after further communication with pdb, we get the
3944         best of both worlds.  SetZOrder working for un-Mapped windows, and
3945         no X errors for un-mapped windows.
3946
3947 2006-08-19  Chris Toshok  <toshok@ximian.com>
3948
3949         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
3950         as it was causing pdn toolbars to not have the correct stacking.
3951
3952 2006-08-18  Mike Kestner  <mkestner@novell.com> 
3953
3954         * ListView.cs : guard against negative ClientArea.Width in scrollbar
3955         calculation.  Not sure why control should ever be setting a negative
3956         width though.  Fixes #78931.
3957
3958 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3959
3960         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
3961         null items in ObjectCollection class.
3962         * ListBox.cs.: Likewise.
3963
3964 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
3965
3966         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
3967           as the base method in ThemeWin32Classic should work fine.
3968           Fixed bug #78607.
3969
3970 2006-08-18  Jackson Harper  <jackson@ximian.com>
3971
3972         * Binding.cs: When validating if the value entered doesn't convert
3973         properly reset to the old value.
3974         * RadioButton.cs: Don't fire click when we get focus.
3975
3976 2006-08-18  Jackson Harper  <jackson@ximian.com>
3977
3978         * FileDialog.cs: Paint the selection on the directory combobox the
3979         same way as on MS. 
3980
3981 2006-08-17  Jackson Harper  <jackson@ximian.com>
3982
3983         * ErrorProvider.cs: Don't allow the error control to be selected.
3984         * Control.cs: Don't send the SetFocus messages, the control
3985         activation will do this, and if we do it blindly here validation
3986         does not work.
3987
3988 2006-08-17  Jackson Harper  <jackson@ximian.com>
3989
3990         * Control.cs:
3991         * ContainerControl.cs: Make validation events fire in the correct
3992         order.  TODO: For some reason the first validation event is not
3993         getting fired.
3994
3995 2006-08-17  Mike Kestner  <mkestner@novell.com> 
3996
3997         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
3998
3999 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4000
4001         * ComboBox.cs : implement scroll wheel support for popped-down
4002         state. Fixes #78945. 
4003
4004 2006-08-17  Jackson Harper  <jackson@ximian.com>
4005
4006         * TreeView.cs: Specify treeview actions (old patch that didn't get
4007         committed for some reason).
4008         - Don't let the mouse wheel scroll us too far.  Just want to make
4009         the bottom node visible, not scroll it all the ways to the top.
4010
4011 2006-08-17  Jackson Harper  <jackson@ximian.com>
4012
4013         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4014
4015 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4016
4017         * ComboBox.cs : don't do mouseover selection in simple mode.
4018
4019 2006-08-16  Jackson Harper  <jackson@ximian.com>
4020
4021         * Form.cs: Fire the closing events for all the mdi child windows
4022         when a window is closed.  If the cancel args are set to true, the
4023         main window still gets the event fired, but it doesn't not close.
4024         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4025         handler, instead of when the button is clicked, so cancelling the
4026         close works correctly.
4027         * ComboBox.cs: Send the mouse down to the scrollbar.
4028
4029 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4030
4031         * ListBox.cs: When passing 'null' to SelectedItem,
4032         set SelectedIndex to -1, to unselect items. This is the
4033         observed behaviour in .Net.
4034
4035 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4036
4037         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4038           MS flags saying there won't be any. (fixes #78800)
4039         * Control.cs (HandleClick): Made virtual
4040
4041 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4042
4043         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4044           cultures. Fixed bug #78399.
4045
4046 2006-08-16  Jackson Harper  <jackson@ximian.com>
4047
4048         * Form.cs: Use the MdiClients MdiChildren property to access
4049         MdiChildren instead of creating the array from the child controls.
4050         * MdiClient.cs: Maintain a separate array of the mdi children, so
4051         that insertion order is maintained when the Z-order is changed.
4052
4053 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4054
4055         * ListView.cs : add an ItemComparer and default to it for sorting.
4056         Fixes #79076, but sorting needs a complete overhaul to be compat with
4057         MS.
4058
4059 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4060
4061         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4062
4063 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4064
4065         * Hwnd.cs (Mapped): Properly traverse the tree
4066
4067 2006-08-15  Chris Toshok  <toshok@ximian.com>
4068
4069         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4070         pass manager.Current.GetType() to ParseData.  It has to be the
4071         property type.  So, hold off doing the ParseData until we're in
4072         SetPropertyValue where we know the type.  This fixes the crash in
4073         #78821 but the textbox is still empty.
4074
4075 2006-08-15  Chris Toshok  <toshok@ximian.com>
4076
4077         * DataGrid.cs:
4078         - when we're scrolling, only call Edit() again if the
4079         current cell is still unobscured. Fixes bug #78927.
4080         - when handling mousedown on a cell, ensure the cell is visible
4081         before calling Edit.
4082         - remove the properties from DataGridRow, and remove the
4083         DataGridParentRow class altogether.
4084         
4085
4086 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4087
4088         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4089           fire OnTextChanged by ourselves. There's no point calling base,
4090           we don't set the base value anywhere else. Fixes #78773.
4091
4092 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4093
4094         * ListBox.cs: Call CollectionChanged when modifying
4095         an item from Items indexer, to update the actual items
4096         in the list box.
4097
4098 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4099
4100         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4101         to match .Net behaviour.
4102
4103 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4104
4105         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4106
4107 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4108
4109         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4110
4111 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4112
4113         * MessageBox.cs: Prevent potential NRE exception.
4114         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4115
4116 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4117
4118         * MessageBox.cs: Calculate the owner of a messagebox, also make
4119           it topmost. Fixes #78753
4120
4121 2006-08-14  Chris Toshok  <toshok@ximian.com>
4122
4123         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4124         programmatically move windows.  first, set the PPosition hint as
4125         well as the USPosition hint.  Second include some code from pdb
4126         that sets the window type to NORMAL when we set the transient for
4127         hint.  This is because, in the absence of a window type, metacity
4128         thinks any window with TransientFor set is a dialog, and refuses
4129         to let us move it programmatically.  fascists.
4130
4131 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4132
4133         * XplatUIX11.cs: When setting normal hints, take into consideration
4134           an different hints previously set so we don't delete them (fixes #78866)
4135
4136 2006-08-12  Chris Toshok  <toshok@ximian.com>
4137
4138         * ToolBarButton.cs: make Layout return a boolean, if something to
4139         do with the button's layout changed.
4140
4141         * ToolBar.cs:
4142         - add another parameter to Redraw, @force, which all existing
4143           calls set to true.
4144         - make the Layout function return a boolean which is true if the
4145           layout has actually changed.  Redraw now uses this (and @force)
4146           to determine when to invalidate.  At present the only place
4147           where @force can be false is the call from OnResize, when
4148           background_image == null.  So, resizing a toolbar when the
4149           layout doesn't change results in no drawing.
4150
4151 2006-08-12  Chris Toshok  <toshok@ximian.com>
4152
4153         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4154         the VScrollBar and HScrollbar reversed.  oops.
4155
4156         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4157         scrollbars.  we were assigning them twice (once in
4158         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4159         therefore causing two scrollbar resizes (and redraws?) to happen
4160         per grid resize.
4161
4162 2006-08-12  Chris Toshok  <toshok@ximian.com>
4163
4164         * ToolBarButton.cs: redraw the entire button if the theme tells us
4165         to.
4166
4167         * Theme.cs: add ToolBarInvalidateEntireButton.
4168
4169         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4170         buttons, just the border.
4171
4172         * ThemeNice.cs: redraw the entire toolbar button since we need to
4173         draw the highlight image.
4174
4175         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4176         we need to redraw the entire button (not just the border).
4177
4178 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4179
4180         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4181           for vertical bars. Fixes the mismatches shown by #78513
4182
4183 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4184
4185         * FileDialog.cs: If a saved/remembered path doesn't exist
4186           anymore, fall back to "Desktop".
4187
4188 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4189
4190         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4191           parent. It's apparently legal to not have one
4192         * XplatUIX11.cs:
4193           - SetZOrder: Don't try to set Z-Order on an unmapped window
4194           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4195             it unless the coordinates are negative
4196
4197 2006-08-10  Mike Kestner  <mkestner@novell.com>
4198
4199         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4200         when setting to null per msdn docs.  Fixes #78854.
4201
4202 2006-08-10  Chris Toshok  <toshok@ximian.com>
4203
4204         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4205         flickering by setting a clip rectangle on the Graphics when we
4206         need to redraw just a particular menuitem.  Also, rename "OnClick"
4207         to "OnMouseDown" to reflect what it actually is.
4208         
4209         * Form.cs: track the OnMouseDown change.
4210
4211 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4212
4213         * CommonDialog.cs: Properly inherit the CreateParams from the form
4214           and only change what we need. Fixes #78865
4215
4216 2006-08-10  Chris Toshok  <toshok@ximian.com>
4217
4218         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
4219         flickering in flat mode (and most of the flickering in general) by
4220         only invalidating the button border (and not the entire rectangle)
4221         when the state changes.  A couple of cases still flicker:
4222         ToggleButtons, and the dropdown arrow case when the user mouse
4223         ups.
4224
4225 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
4226
4227         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
4228           for german keyboards. Numlock state shouldn't affect the behaviour
4229           of the Del key. Fixes bug #78291.
4230
4231 2006-08-10  Chris Toshok  <toshok@ximian.com>
4232
4233         * ListControl.cs: remove the items.Clear line from BindDataItems,
4234         as this is the first thing done by both subclasses in their
4235         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
4236         passed -1, refresh the list.  This gets databinding working when
4237         the datasource is set on the list before the datasource is
4238         populated (as in wf-apps/ReportBuilder.)
4239
4240         * ComboBox.cs: remove the argument to BindDataItems.  This call
4241         should really go away, and be initiated by the ListControl code.
4242
4243         * ListBox.cs: same.
4244
4245 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4246
4247         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
4248           if no data is in the document when the control is displayed
4249
4250 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
4251
4252         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
4253           yes (fixes #78806)
4254         * TextControl.cs: 
4255           - PositionCaret: Allow positioning of caret but don't call methods 
4256             requiring a handle if the window isn't created yet
4257           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
4258           - owner_HandleCreated: Don't position the caret, just update it's 
4259             location. User might have already set a different position
4260
4261 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
4262
4263         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
4264           windows. Screws up the returned coordinates for child windows. 
4265           Fixes #78825. I'm hoping this doesn't break something, since the
4266           code was explicitly put in 8 months ago, but no bug was attached.
4267           Menus still seem to work properly.
4268
4269 2006-08-08  Chris Toshok  <toshok@ximian.com>
4270
4271         * DataGrid.cs: make BeginInit/EndInit actually do what they're
4272         supposed to do - delay data binding until the EndInit call.  Also,
4273         make the table style collection's CollectionChangeAction.Refresh
4274         work properly.
4275
4276         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
4277         (with action = Refresh) when a consituent table's MappingName is
4278         changed.
4279
4280 2006-08-08  Chris Toshok  <toshok@ximian.com>
4281
4282         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
4283         Invalidate, since changing the text can change the size of the all
4284         toolbar buttons.
4285
4286 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4287
4288         * Form.cs (AddOwnedForm): Still need to add the form to our listif
4289           we don't have it yet
4290
4291 2006-08-08  Chris Toshok  <toshok@ximian.com>
4292
4293         * PrintControllerWithStatusDialog.cs: don't .Close() the status
4294         dialog, as this causes X errors later on, since we actually
4295         destroy the window.  Instead, .Hide() it.
4296
4297 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
4298
4299         * ComboBox.cs: Added focus reflection for popup window
4300         * XplatUIX11.cs: 
4301           - Removed transient setting for non-app windows for now, not sure it
4302             was needed
4303           - Fixed logic checking if we have captions when deciding 
4304             override_redirect, WS_CAPTION is two bits and a 0 check was not
4305             sufficient
4306           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
4307             complicated
4308         * Form.cs: 
4309           - AddOwnedForm: Don't just add the form to the list, call the property
4310             to ensure the driver is informed about the ownership as well
4311           - CreateHandle: Set the TopMost status in the driver if we have an owner
4312         * XplatUI.cs: Fixed debug statement
4313
4314 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
4315         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4316           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
4317           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
4318           TrackBarRenderer.cs: Make constructor private.
4319         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
4320         * ProfessionalColorTable.cs: Make properties virtual.
4321
4322 2006-08-06  Duncan Mak  <duncan@novell.com>
4323
4324         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
4325         is not changing.
4326
4327 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4328         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
4329           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
4330           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
4331           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
4332           Initial import of new 2.0 classes.
4333
4334 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4335         * Application.cs: Add 2.0 VisualStyles properties.
4336
4337 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
4338         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4339           XplatUIX11.cs: Create property to allow access to existing private
4340           variable "themes_enabled"
4341
4342 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4343
4344         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
4345         file size, as otherwise our class libraries fail using windows. Fixes
4346         bug #78759.
4347
4348 2006-08-04  Jackson Harper  <jackson@ximian.com>
4349
4350         * Form.cs:
4351         * XplatUIX11.cs: Move the toolwindow window manager creation into
4352         the X11 driver, this way on win32 we can let windows create/handle
4353         the toolwindows.
4354
4355 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4356
4357         * PrintDialog.cs: Remove some redundant checks, add some others,
4358         clean some code, and move the focus to the text boxes when the
4359         values are incorrect.
4360
4361 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
4362
4363         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
4364
4365 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4366
4367         * NumericUpDown.cs: Setting the Minimum and Maximum is now
4368           handled correctly. Fixes bug #79001.
4369
4370 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4371
4372         * PrintDialog.cs: The "Copies" numeric up down must have
4373         set the Minimum property to 1; only if the value is bigger
4374         than 1, activate "Collate" check box. This is the behaviour of .Net.
4375         Also modify the Document elements only if it is not null.
4376
4377 2006-08-03  Jackson Harper  <jackson@ximian.com>
4378
4379         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
4380         length. (We have a larger array then actual node count).
4381                 
4382 2006-08-03  Jackson Harper  <jackson@ximian.com>
4383
4384         * ComboBox.cs: Don't show selection by default.
4385         - The SelectAll isn't needed here, since the focus code should do
4386         that
4387         - DDL style lists to manual selection drawing, so when they
4388         get/lose focus they have to invalidate.
4389
4390 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
4391
4392         * TextBoxBase.cs: Don't always show all selections by default.
4393
4394 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
4395         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
4396           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
4397           Fixed various typos.
4398
4399 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
4400
4401         * Control.cs: Removing the controls in a ControlCollection with
4402           Clear now hides the controls as expected. Fixes bug #78804. 
4403
4404 2006-08-03  Jackson Harper  <jackson@ximian.com>
4405
4406         * Control.cs: Revert previous focus patch, it breaks reflector.
4407
4408 2006-08-03  Jackson Harper  <jackson@ximian.com>
4409
4410         * ComboBox.cs: Cleanup selection and focus with the combobox.
4411         This also eliminates some duplicated keyboard code, since now
4412         everything is handled by the main class.
4413         - Make list selection work on mouse up instead of down, to match
4414         MS.
4415
4416 2006-08-02  Jackson Harper  <jackson@ximian.com>
4417
4418         * Control.cs: Setting focus needs to go through the whole
4419         selection mechanism.
4420
4421 2006-08-02  Chris Toshok  <toshok@ximian.com>
4422
4423         * PrintPreviewDialog.cs: change MinimumSize to use
4424         base.MinimumSize so it works.
4425
4426 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
4427
4428         * TextControl.cs:
4429           - UpdateCaret: Added sanity check in case caret isn't defined yet
4430           - Line.Delete: Now updating selection and caret markers if we're
4431             transfering a node (Properly fixes #78323)
4432           - SetSelectionEnd: Added sanity check
4433         * TextBoxBase.cs: Removed broken attempt to fix #78323
4434
4435 2006-08-01  Chris Toshok  <toshok@ximian.com>
4436
4437         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
4438         Close() call is handled in Form, not here.
4439
4440 2006-08-01  Chris Toshok  <toshok@ximian.com>
4441
4442         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
4443         layout/rendering.
4444
4445         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
4446         for sizes < 100% zoom.  The code now aggressively attempts to keep
4447         from calling document.Print (), and tries not to use the scaling
4448         g.DrawImage whenever possible (it still does if you scale to >
4449         100%, since usually that involves huge images).
4450
4451         * PrintPreviewControl.cs: hook up the close button.
4452
4453 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
4454         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
4455           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
4456           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
4457           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
4458           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
4459           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
4460           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
4461           Removed [Serializable] for 2.0 Event Handlers.
4462
4463 2006-07-31  Jackson Harper  <jackson@ximian.com>
4464
4465         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
4466         * TextControl.cs: Uncomment out the body of this method.
4467
4468 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
4469
4470         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
4471           standard cursors.
4472
4473 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4474
4475         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
4476           that embed TextBox and need selections visible even if textbox is not
4477           focused to enforce that behaviour.
4478         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
4479           selection drawing
4480
4481 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4482
4483         * TextControl.cs:
4484           - Added new SetSelectionStart/SetSelectionEnd overloads
4485           - Fixed viewport width assignment to be accurate
4486           - Adjusted alignment line shift calculations to allow cursor on right
4487             aligned lines to be always visible at the right border (like MS)
4488         * TextBoxBase.cs:
4489           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4490           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4491           - CalculateScrollBars: Use ViewPort size instead of window size, to
4492             properly consider space occupied by the border and scrollbars 
4493             (Fixes #78661)
4494           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4495             calculations; no longer leaves artifacts
4496           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4497             calculation bugs (Still missing right/center align calculations)
4498
4499 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4500
4501         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4502           use of both scroll rect and clip rect, as they do the same.
4503
4504 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4505
4506         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4507           in the event handler (fixes #78912)
4508
4509 2006-07-31  Chris Toshok  <toshok@ximian.com>
4510
4511         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
4512         grid.ListManager.Count, since grid.ListManager might be null.
4513         This of course begs the question "why are we drawing rows for a
4514         grid with no list manager (and therefor no rows)?"  Fixes the
4515         crash in bug #78929.
4516
4517 2006-07-31  Chris Toshok  <toshok@ximian.com>
4518
4519         * RelatedPropertyManager.cs: Don't always chain up to the parent
4520         ctor.  instead, call SetDataSource if the parent's position is !=
4521         -1.  Fixes the crash in #78822.
4522
4523 2006-07-31  Chris Toshok  <toshok@ximian.com>
4524
4525         * DataGrid.cs (get_ListManager): use field instead of property
4526         accessors for datasource and datamember.
4527         (RowsCount): make internal again.
4528         (OnMouseDown): end edits before resizing columns/rows.
4529         (OnMouseUp): restart edits after resizing columns/rows.
4530
4531 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
4532
4533         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
4534           This fixes the situation where the last set cursor is displayed
4535           whenever the mouse is over scrollbars.
4536
4537 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4538
4539         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
4540         Document properties, as well as initial values.
4541
4542 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
4543
4544         * XplatUIWin32.cs (SetBorderStyle): Setting both border
4545           and ClientEdge results in a 3-pixel border, which is
4546           wrong.
4547
4548 2006-07-28  Jackson Harper  <jackson@ximian.com>
4549
4550         * TreeNodeCollection.cs: Fix the clear method.
4551         - Fix the Shrink also
4552
4553 2006-07-27  Jackson Harper  <jackson@ximian.com>
4554
4555         * TreeView.cs: Make sure the visible order is computed when we
4556         attempt to size the scrollbars (for trees that mess with the
4557         scrolling when they shouldn't.
4558         - Make sure to give the scrollbars valid values.
4559
4560 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4561
4562         * XplatUIX11.cs: Move motion compression code to where it
4563           has less performance impact
4564
4565 2006-07-26  Jackson Harper  <jackson@ximian.com>
4566
4567         * UpDownBase.cs: When the control is selected make the child
4568         controls non selectable, so that a click on them won't do a
4569         focus/unfocus cycle.
4570         - Don't give focus to the text box when the spinner is selected.
4571         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
4572
4573 2006-07-26  Chris Toshok  <toshok@ximian.com>
4574
4575         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
4576         satisfied with this solution.  If the bitmaps are small, we should
4577         just cache them in the PrintPreviewDialog and draw them here.
4578         Also, the layout is broken for the 2-up and 3-up cases.
4579
4580         * Theme.cs: add PrintPReviewControlPaint.
4581
4582         * PrintPreviewDialog.cs: first pass implementation.
4583
4584         * PrintPreviewControl.cs: first pass implementation.  No
4585         scrollbars yet.
4586
4587         * PrintDialog.cs: only validate fields if that particular portion
4588         of the UI is enabled.  Also, set the document's controller to a
4589         PrintControllerWithStatusDialog wrapping the document's print
4590         controller.
4591
4592         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
4593         bring up a SaveFileDialog (i hope we don't want to match the
4594         behavior of the crappy windows file entry) and set the
4595         PrinterSettings.PrintFileName accordingly.
4596
4597 2006-07-26  Jackson Harper  <jackson@ximian.com>
4598
4599         * ContainerControl.cs: Add a field that disables auto selecting
4600         the next control in a container when the container is activated.
4601         * UpDownBase.cs: Don't select the text box when the up down is
4602         selected.
4603
4604 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4605
4606         * XEventQueue.cs: Added methods for peeking (used for compression
4607           of successive events)
4608         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
4609           mouse move events (fixes #78732)
4610
4611 2006-07-25  Jackson Harper  <jackson@ximian.com>
4612
4613         * UpDownBase.cs: Use an internal class for the textbox so that we
4614         can control focus.  the updown control should always have focus,
4615         if either the text area or the buttons are clicked.
4616         - Send the key messages to the textbox, since it never actually
4617         has focus
4618         - Activate and decativate the textbox caret.
4619
4620 2006-07-24  Jackson Harper  <jackson@ximian.com>
4621
4622         * Control.cs: Use the directed select when selecting a control,
4623         this way the container controls override will get called and the
4624         whole ActiveControl chain will get triggered.  TODO: probably need
4625         to make sure this gets done everywhere instead of the old
4626         Select(Control).
4627         * ContainerControl.cs: Implement the directed Select method to
4628         find and activate the correct child control.    
4629         
4630 2006-07-22  Mike Kestner  <mkestner@novell.com>
4631
4632         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
4633         menu handling code so that clicks without a grab work too.
4634         [Fixes #78914]
4635
4636 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
4637
4638         * FileDialog.cs: Enable the BackButton when dirstack has one element.
4639           Added some small optimizations.
4640
4641 2006-07-21  Matt Hargett  <matt@use.net>
4642
4643         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
4644
4645 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
4646
4647         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
4648           tests pass and match MS in some strange border cases.
4649
4650 2006-07-21  Chris Toshok  <toshok@ximian.com>
4651
4652         * ThemeWin32Classic.cs: handle drawing of the relation links and
4653         parent row buttons.
4654
4655         * Theme.cs: change args to DataGridPaintParentRow.
4656
4657         * DataGrid.cs: Don't use controls for the relation links and
4658         parent buttons, so we have to handle all their interactions in
4659         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
4660         when we're navigating through child tables, so we can reinstate
4661         selection, expanded state, current cell, etc.
4662
4663 2006-07-20  Chris Toshok  <toshok@ximian.com>
4664
4665         * ToolBar.cs: When we redraw a button, for whatever reason,
4666         there's no reason to redraw the entire toolbar.  Also, don't call
4667         Control.Refresh from within Redraw, as it's much heavier than
4668         Invalidate (which is really what we want).
4669
4670 2006-07-20  Chris Toshok  <toshok@ximian.com>
4671
4672         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
4673         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
4674         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
4675         traces from within a debug IBindingList datasource
4676         (in mono/winforms/datagrid) for *days*, I've finally gotten things
4677         to work in a similar fashion.
4678
4679 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4680
4681         * ListBox.cs: Don't call Sort () when setting 
4682         the Sorted property to false (avoid an unnecessary sort).
4683
4684 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4685
4686         * ListControl.cs: DataSource should throw an ArgumentException
4687         instead of a normal exception when the argument is not of the 
4688         correct type.
4689
4690 2006-07-20  Mike Kestner  <mkestner@novell.com>
4691
4692         * Control.cs: add InternalPreProcessMessage to allow us to steal
4693         key events before MWF gets its paws on them.  Adapted from a
4694         suggestion by eno.
4695         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
4696         up/down/left/right navigation. Override the new internal control
4697         method to steal the events since they never make it to WndProc.
4698         * ToolBarButton.cs: don't worry about pushed when setting hilight
4699         since the drawing code prefers pushed to hilight. Invalidate on 
4700         Hilight changes. Fixes #78547 and #78525.
4701
4702 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4703
4704         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
4705           the canvas size. Fixes #78868
4706
4707 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
4708
4709         * Splitter.cs: Track requested split position until first layout
4710           is performed. Fixes #78871
4711
4712 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4713
4714         * Application.cs: Removed code that forces 1.x for the version
4715           number if the version started with 0. Not sure why that code was
4716           there and I couldn't find any bugs that indicated we needed it.
4717           Fixes #78869
4718
4719 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
4720
4721         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
4722           ResetDefaults(), just write some output to the console until it's
4723           implemented. Fixes bug #78907 for now. Eliminated two warnings.
4724
4725 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
4726
4727         * PropertyGridView.cs: set StartPosition of drop down forms
4728         so they appear in correct initial spot.  Fixes #78190.
4729
4730 2006-07-19  Mike Kestner  <mkestner@novell.com>
4731
4732         * ThemeWin32Classic.cs: use parent background color when drawing
4733         flat toolbars.  Restructure the conditionals to make sure non-flat
4734         non-Divider toolbars are filled too.  Fixes #78837.
4735
4736 2006-07-19  Mike Kestner  <mkestner@novell.com>
4737
4738         * ListBox.cs: Sort on collection changes even if the handle
4739         isn't created yet.  Fixes #78813.
4740
4741 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4742
4743         * ListControl.cs: DisplayMember should never be null,
4744         and now we assign String.Empty when null is passed to it (this
4745         is the .Net way).
4746
4747 2006-07-17  Mike Kestner  <mkestner@novell.com>
4748
4749         * ListViewItem.cs: restructure Font and subitem Font handling 
4750         to hold a specific font and refer back to owner on null.
4751         Fixes #78761.
4752
4753 2006-07-17  Mike Kestner  <mkestner@novell.com>
4754
4755         * ToolBar.cs: bandaid for side-effect of previous patch which was
4756         discarding explicit heights for non-AutoSize toolbars.  Need to
4757         extend my format tester to deal with AutoSize=false. Fixes #78864.
4758
4759 2006-07-15  Jackson Harper  <jackson@ximian.com>
4760
4761         * LabelEditTextBox.cs:
4762         * TreeView.cs: Use a new LabelEdit class for node editing, this
4763         class automatically 'closes' itself when it gets the enter key or
4764         loses focus.
4765         - Use the client rectangle when setting the trees scrollbars, so
4766         border style is taken into account.
4767         
4768 2006-07-14  Jackson Harper  <jackson@ximian.com>
4769
4770         * TreeNode.cs:
4771         * TreeView.cs: Make the editing work similar to MSs, firing the
4772         events correctly and ending edits correctly.
4773
4774 2006-07-14  Mike Kestner  <mkestner@novell.com>
4775
4776         * ToolBarButton.cs:
4777         * ToolBar.cs: layout restructuring and redraw enhancements to support
4778         formatting changes gracefully, like setting TextAlign, ImageList, 
4779         ButtonSize, and Appearance.  Handles explicit button sizing quirks
4780         of the MS controls.  Things like flat toolbars ignoring button size
4781         but becoming constant sized at the largest button's size.  Normal
4782         toolbars with an image set cannot be shrunk smaller than the image,
4783         but text can be clipped/ignored.
4784         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
4785         is zero.  Seems like DrawString should be smart enough to not put
4786         anything on screen though. Also trim labels and ellipsize at the char
4787         boundary, not word.
4788         Fixes #78711 and #78483.
4789
4790 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4791
4792         * FolderBrowserDialog.cs: Disable "New Folder" button and
4793           "New Folder" contextmenu menuitem if a folder like "My Computer"
4794           is selected.
4795
4796 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4797
4798         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
4799         * FolderBrowserDialog.cs:
4800           - Use MWFConfig to store and read size and position settings
4801           - Added code to create a new folder (button or context menu).
4802             Use TreeView labeledit to change the name of the new folder.
4803
4804 2006-07-14  Jackson Harper  <jackson@ximian.com>
4805
4806         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
4807         when the tree is scrolled we end editing.
4808
4809 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4810
4811         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
4812           Down arrows
4813
4814 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
4815
4816         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
4817         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
4818         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
4819         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
4820         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
4821         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
4822         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
4823         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
4824         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
4825         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
4826         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
4827         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
4828         ListViewItemSelectionChangedEventHandler.cs,
4829         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
4830         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
4831         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
4832         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
4833         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
4834         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
4835         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
4836         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
4837         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
4838         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
4839         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
4840         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
4841         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
4842         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
4843         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
4844         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
4845         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
4846         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
4847         WebBrowserNavigatingEventHandler.cs, 
4848         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
4849
4850 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
4851
4852         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
4853         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
4854         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
4855         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
4856         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
4857         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
4858         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
4859         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
4860         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
4861         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
4862         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
4863         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
4864         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
4865         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
4866         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
4867         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
4868         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
4869         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
4870         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
4871         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
4872         ListViewItemStates.cs, MaskFormat.cs: Added
4873
4874 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
4875
4876         * PropertyGridView.cs: Fix keyboard navigation of drop down.
4877         Patch from eno for bug 78558.
4878         
4879 2006-07-13  Jackson Harper  <jackson@ximian.com>
4880
4881         * TreeView.cs: When an edit is finished make sure that the
4882         selected node is visible.
4883         - When setting the top/bottom use the scrollbars is_visible, so
4884         everything will be set correctly even if the tree isn't visible
4885         yet.
4886
4887 2006-07-13  Jackson Harper  <jackson@ximian.com>
4888
4889         * ComboBox.cs: Revert the item->index part of my previous patch.
4890         * TreeView.cs: Use LostFocus instead of Leave for detecting when
4891         the edit box has lost focus (duh).
4892         - Just make the edit box not visible when we get return, that will
4893         take the focus, which will call EndEdit
4894         * TreeNode.cs When we start editing, notify the treeview.
4895
4896 2006-07-12  Jackson Harper  <jackson@ximian.com>
4897
4898         * ComboBox.cs: Clear out old items before setting the item list.
4899         This prevents databound controls from having their items added
4900         twice.
4901         - Switch the combobox to use indices whereever possible instead of
4902         using Item's.  This allows usto navigate through lists that have
4903         more then one item with the same string value (ie a, b, b, a).
4904         - Scroll the listboxes scrollbar when a non visible item is
4905         highlighted
4906         - Allow keypress to cycle through all the possible values. For
4907         example if you have b1, b2, b3 and hold down the B key all the
4908         values will be cycled through.
4909         
4910 2006-07-12  Jackson Harper  <jackson@ximian.com>
4911
4912         * TextBoxBase.cs:
4913         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
4914         this using the internal methods.
4915         * Control.cs: Add OnGotFocusInternal.  A new method that allows
4916         controls to "override" OnGotFocus and change focus behavior if
4917         needed.
4918         - Same thing for LostFocus
4919         * ComboBox.cs: Pass off focus to the text control properly.
4920
4921 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
4922
4923         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
4924         * FolderBrowserDialog.cs: Almost a complete rewrite.
4925           - Better support for Environment.Specialfolders
4926           - Added support for MWFVFS
4927           - Made setting SelectedPath work
4928
4929 2006-07-12  Jackson Harper  <jackson@ximian.com>
4930
4931         * Control.cs: Optimze getting all the controls.
4932
4933 2006-07-11  Jackson Harper  <jackson@ximian.com>
4934
4935         * ContainerControl.cs: Override SETFOCUS in the container control,
4936         so that it is not selected on mouse click.
4937
4938 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
4939
4940         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
4941           Hopefully we will have a better way once all of focus is complete.
4942
4943 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
4944
4945         * ThemeWin32Classic.cs: Commented out some debug code and fixed
4946           a compile error with csc.
4947
4948 2006-07-11  Jackson Harper  <jackson@ximian.com>
4949
4950         * Control.cs: When hiding a control only select the next control
4951         if the current control was focused.
4952         - Don't handle enter/leave when setting/killing focus, this is
4953         done by the container control.
4954         - Remove is_selected, it's not needed anymore.
4955         - Add utility methods for selecting a child control, and for
4956         firing the Enter/Leave events.
4957         * ContainerControl.cs: When a control is activated fire the
4958         enter/leave events.
4959         - Don't wrap when processing the tab key, so that focus can be
4960         moved outside of the container.
4961         - Use the correct active control
4962
4963 2006-07-11  Jackson Harper  <jackson@ximian.com>
4964
4965         * ComboBox.cs: Remove some debug code that was blinding me.
4966         * UpDownBase.cs: These controls actually aren't implicit, they are
4967         visible to the user.
4968
4969 2006-07-10  Chris Toshok  <toshok@ximian.com>
4970
4971         * DataGrid.cs: move back to the is_adding boolean field.  god i
4972         hate this is_editing/is_adding/is_changing stuff.
4973
4974 2006-07-10  Chris Toshok  <toshok@ximian.com>
4975
4976         * DataGridTableStyle.cs: just check if the property type is bool.
4977         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
4978         Don't use CanRenderType.
4979
4980         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
4981         if our text == NullText.  Remove CanRenderType.
4982
4983         * DataGridBoolColumn.cs: nuke CanRenderType.
4984
4985         * DataGrid.cs: reenable some code to end the current edit inside
4986         of set_CurrentCell.  This fixes the other 1.1.16 regression.
4987         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
4988         Also, remove the visible_row_count arg from CalcRowHeaders, since
4989         we don't need to worry about the actual height of the area.
4990
4991 2006-07-10  Chris Toshok  <toshok@ximian.com>
4992
4993         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
4994         mode, just return.
4995
4996         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
4997         the real sense of the IsInEditOrNavigateMode property (true =
4998         navigate, false = edit).  Also, update OnKeyPress to reflect this.
4999
5000         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5001         column style exists, we still need to set its property descriptor
5002         to match up with our list manager.
5003
5004 2006-07-10  Chris Toshok  <toshok@ximian.com>
5005
5006         * ThemeWin32Classic.cs: implement the new row/header painting
5007         approach.  The parent row painting will likely go away and
5008         replaced with label controls, but the rest seems to work ok (and
5009         efficiently).
5010
5011         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5012         the row headers as a block now.  Instead we draw them in the
5013         normal draw-row loop.  Add some calls for drawing parent rows and
5014         relation rows.
5015
5016         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5017         a default table style.  Set the defaults from ThemeEngine.Current,
5018         not SystemColors.  Fix lots of misc issues with property setters.
5019
5020         * DataGrid.cs: move loads of style information out of this class
5021         as it's being duplicated with DataGridTableStyle.  keep track of a
5022         special DataGridTableStyle for the properties we used to mirror
5023         here.  Switch all the style properties to access this table style
5024         instead of instance fields of this class.  Also add a internal
5025         class to represent parent rows (more needs to be stored here, like
5026         the selection state from the parent table, as well as the
5027         expansion state.)  Also, for datasources with relations, do the
5028         right thing for collapse/expand, and add support for the
5029         navigation/parent row buttons.
5030
5031         Lastly, fix the crash in the 1.1.16 build.
5032
5033         * GridTableStylesCollection.cs: make the explicit interface
5034         implementations call the class's methods as opposed to duplicating
5035         them.
5036
5037         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5038         0 so the text doesn't jump around when we move the cursor.
5039
5040 2006-07-10  Jackson Harper  <jackson@ximian.com>
5041
5042         * TextBoxBase.cs:
5043         * ListBox.cs: Match MS's ToString (this makes debugging focus
5044         stuff infinitely easier).
5045
5046 2006-07-10  Jackson Harper  <jackson@ximian.com>
5047
5048         * Control.cs (SelectNextControl): When checking the control's
5049         parent use this instead of ctrl.parent so that null can be passed
5050         to SelectNextControl. (I have unit tests for this).
5051         - Remove unused var.
5052
5053 2006-07-10  Chris Toshok  <toshok@ximian.com>
5054
5055         * CurrencyManager.cs: correct one regression, the removal of the
5056         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5057         Refresh() correctly, and fix some event emission in
5058         ListChangedHandler.
5059
5060 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5061
5062         * FileDialog.cs: Don't use brackets for new folders if they exist
5063           under *nix. Instead use -(number of existing folders +1).
5064
5065 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5066
5067         * FileDialog.cs:
5068           - Fixed really nasty bug #78771
5069           - Don't block the whole GUI when reading directories with a lot of
5070             entries. Use an other thread instead and call BeginInvoke to
5071             update the ListView in MWFFileView
5072
5073 2006-07-07  Chris Toshok  <toshok@ximian.com>
5074
5075         * Control.cs (Dispose): release any Capture when disposing.
5076
5077 2006-07-07  Chris Toshok  <toshok@ximian.com>
5078
5079         * LinkLabel.cs (Select): if we chain up to the parent, set
5080         focused_index to -1 so we'll search for the first available link
5081         the next time the user tabs into us.  Also, if the direction is
5082         backward and focused_index == -1, start the search from the last
5083         element.
5084
5085 2006-07-07  Chris Toshok  <toshok@ximian.com>
5086
5087         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5088         is beyond the end of the text, don't do anything.
5089         (CreateLinkPieces): set our ControlStyles.Selectable based on
5090         whether or not we have any links.
5091         (Link.Invalidate): use a loop instead of foreach.
5092         (Link.set_Start): null out owner.sorted_links so it'll be
5093         recreated by CreateLinkPieces.
5094
5095 2006-07-06  Chris Toshok  <toshok@ximian.com>
5096
5097         * LinkLabel.cs: revert the SetStyle change.
5098
5099 2006-07-06  Chris Toshok  <toshok@ximian.com>
5100
5101         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5102         (OnEnableChanged): s/Refresh/Invalidate
5103         (OnGotFocus): if we have a focused index already, refocus it (so
5104         if we mouse out/in to the window it'll focus the right link).
5105         (OnKeyDown): move the tab handling out of here.
5106         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5107         when we lose focus.
5108         (OnMouseDown): don't Capture here - Control handles it.  Also,
5109         focus the active link.
5110         (OnMouseUp): don't deal with Capture.
5111         (OnPaintBackgroundInternal): remove.
5112         (OnTextAlignChanged): CreateLinkPieces before calling the
5113         superclass's method.
5114         (OnTextChanged): call CreateLinkPieces before calling superclass's
5115         method.
5116         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5117         move around.
5118         (Select): implement this, moving the selection between different
5119         links, and call parent.SelectNextControl if we don't have another
5120         link to focus in the given direction.
5121         (CreateLinkPieces): call Invalidate instead of Refresh.
5122         
5123 2006-07-06  Chris Toshok  <toshok@ximian.com>
5124
5125         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5126         new LinkLabel internals.
5127
5128         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5129         over pieces looking for active/focused/etc links.  also, deal with
5130         runs of text (and links) with embedded \n's in them, and use
5131         MeasureCharacterRanges instead of MeasureString to figure out the
5132         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5133         two-step.
5134
5135 2006-07-04  Jackson Harper  <jackson@ximian.com>
5136
5137         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5138         XKB or key auto repeat, do it manually.  Without key auto repeat,
5139         when a key is held down we get key press, key release, key press,
5140         key release, ... with auto repeat we get key press, key press, key
5141         press ..., and then a release when the key is actually released.
5142
5143 2006-07-03  Jackson Harper  <jackson@ximian.com>
5144
5145         * TabControl.cs:
5146         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5147         rules, they are always control color regardless of the background
5148         color.
5149
5150 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5151
5152         * FileDialog.cs: Added internal class MWFConfig.
5153           Removed Registry support and replaced it with support for the new
5154           MWFConfig class. See MWFConfig comments for more information.
5155
5156 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5157
5158         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5159           rectangle. Added some patches from eno from bug #78490 and fixed
5160           the arrow position for small up and down CPDrawScrollButtons.
5161
5162 2006-06-30  Jackson Harper  <jackson@ximian.com>
5163
5164         * InternalWindowManager.cs: Remove some debug code.
5165         * Form.cs: When an MdiParent is set to null, the window is
5166         "detatched" and becomes a normal window.
5167         * MdiClient.cs: Don't bring the new child form to the front until
5168         it is activated (setting it as active does this), this makes the
5169         previously active forms titlebar get redrawn as inactive.
5170
5171 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5172
5173         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5174           with later controls
5175
5176 2006-06-29  Mike Kestner  <mkestner@novell.com>
5177
5178         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5179         arrow in keynav state.  Fixes #78682.
5180
5181 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5182
5183         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5184           order (fixes #78393)
5185
5186 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5187
5188         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5189           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5190           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5191           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5192           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5193           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5194           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5195           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5196           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5197           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5198           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5199           values)
5200
5201 2006-06-28  Mike Kestner  <mkestner@novell.com>
5202
5203         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5204
5205 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5206
5207         * PropertyGrid.cs,
5208           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5209           item lines from other area (It also makes BackColor consistent and
5210           compatible with .NET). Fixed bug #78564.
5211
5212 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5213
5214         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5215         Patch from Eno for #78555.
5216
5217 2006-06-27  Chris Toshok  <toshok@ximian.com>
5218
5219         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
5220
5221         * DataGridColumnStyle.cs: same.
5222
5223         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
5224         
5225         * DataGridDrawingLogic.cs: nuke.
5226
5227 2006-06-27  Chris Toshok  <toshok@ximian.com>
5228
5229         * DataGridTableStyle.cs: clean up the constructors, and build the
5230         list of child relations for this table.  I have no idea if this is
5231         where we should be doing it (it probably isn't), but since we're
5232         already iterating over the properties..
5233
5234         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
5235         struct and array for keeping track of row information, similar to
5236         what's shown in a hack on
5237         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
5238
5239         * Theme.cs: be consistent about the naming of DataGrid methods,
5240         prefering ColumnWidths and RowHeights over columnsWidths and
5241         RowsHeights.
5242
5243         * ThemeWin32Classic.cs: same, and also add support for variable
5244         sized rows (and the +/- expansion icons for related rows).
5245
5246 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5247
5248         * TextBoxBase.cs: Applied Eno's patch from #78660
5249
5250 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5251
5252         * Form.cs (ScaleCore): We don't want to scale our form if it's
5253           state is minimized or maximized, but we still need to scale our
5254           child windows. Also, added try/finally block to ensure layout
5255           gets reset (Fixes #78697)
5256
5257 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
5258
5259         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
5260
5261 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
5262
5263         * Form.cs: Fixed c+p error and added check to resize form if minimum
5264           size is bigger than current size (Fixes #78709)
5265
5266 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
5267
5268         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
5269
5270 2006-06-26  Mike Kestner  <mkestner@novell.com>
5271
5272         * ComboBox.cs: only do Keypress handling in the combo when there  
5273         are items in the collection. Fixes #78710.
5274
5275 2006-06-26  Chris Toshok  <toshok@ximian.com>
5276
5277         * Binding.cs: make this work bi-directionally.  also, clear up
5278         other mixups between Push/Pull Data (e.g. we're supposed to pull
5279         data when validating).
5280
5281         * BindingManagerBase.cs: trim some fully qualified collection
5282         types.
5283
5284         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
5285
5286 2006-06-23  Chris Toshok  <toshok@ximian.com>
5287
5288         * PropertyManager.cs: It appears (according to the unit tests)
5289         that PropertyManager doesn't use
5290         PropertyDescriptor.AddValueChanged to track propery value changes
5291         in its datasource, but uses the same scheme as Binding, where it
5292         looks for a <Property>Changed event and binds to it.
5293
5294         Also, according to the docs, IsSuspended always returns false for
5295         a property manager with a non-null datasource.
5296
5297 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
5298
5299         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
5300           need to update the actual DialogResult. (Fixes #78613)
5301
5302 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
5303
5304         * Form.cs (ShowDialog): Release any captures before running the
5305           new message pump (fixes #78680)
5306
5307 2006-06-22  Mike Kestner  <mkestner@novell.com>
5308
5309         * ListView.cs: Layout column widths properly in details mode even 
5310         if HeaderStyle.None is set.  Fixes #78691.
5311
5312 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
5313
5314         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
5315
5316 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
5317
5318         * Control.cs (ContainsFocus): Using new driver method to get focused
5319           window, instead of trying to use internal tracking var, which can
5320           recursion issues (Fixes #78685)
5321         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
5322           XplatUIWin32.cs: Added GetFocus method to return focused window
5323
5324 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5325
5326         * ColorDialog.cs: when the mouse button is pressed inside the color
5327         matrix, don't let the cursor move out of it until the button is
5328         released, which is the behavior on windows. Changed 'colours' by
5329         'colors' to use the same word consistently.
5330
5331 2006-06-21  Chris Toshok  <toshok@ximian.com>
5332
5333         * DataGrid.cs: add in some basic navigation stuff (navigating to a
5334         child relation and back, using a stack).  Also, remove
5335         GetDataSource and the code that calls it - it's not needed.  Also,
5336         track CurrencyManager.ListName's removal.
5337
5338 2006-06-21  Chris Toshok  <toshok@ximian.com>
5339
5340         * CurrencyManager.cs: push some of the original type checking from
5341         BindingContext.CreateBindingManager to here, and remove some of
5342         the finalType stuff.  Need more tests to make sure I've got the
5343         ListName part right, and we might need more in SetDataSource.
5344
5345         * PropertyManager.cs: add a ctor that takes just the datasource,
5346         and no property name.  Make SetDataSource work with a null
5347         property_name, and make Current return the data_source if the
5348         property descriptor is null.  this makes 'string foo = "hi";
5349         BindingContext[foo].Current' return "hi" as it should.
5350
5351         * RelatedCurrencyManager.cs: make this code more generic - there's
5352         no reason the parent manager has to be CurrencyManager, and
5353         there's no reason to pass the DataRelation.  It suffices to use a
5354         BindingManagerBase and PropetyDescriptor.
5355
5356         * RelatedPropertyManager.cs: make a similar change here.
5357         
5358         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
5359         flower I knew it could be.
5360
5361 2006-06-20  Chris Toshok  <toshok@ximian.com>
5362
5363         * PropertyManager.cs: the PropertyChangedHandler is invoked when
5364         data in the source has changed and we need to update the control,
5365         so s/PullData/PushData.
5366
5367         * CurrencyManager.cs: Refresh is meant to update the control from
5368         data in the datasource.  So, s/PullData/PushData.
5369
5370         * BindingContext.cs: add more ugliness (we weren't handling the
5371         case where data_source = DataTable and data_member = column_name).
5372
5373         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
5374         from the perspective of the datasource.  PullData pulls from the
5375         control, PushData pushes to the control.
5376
5377 2006-06-20  Chris Toshok  <toshok@ximian.com>
5378
5379         * BindingContext.cs: rewrite the CreateBindingManager code to
5380         handle navigation paths more or less properly.  This could
5381         definitely stand some more work, in particular to push the
5382         recursion up to the toplevel.  But that relies on fixes in other
5383         places (System.Data comes to mind).
5384
5385         Also, move to a flat hashtable (and encode the twolevel nature of
5386         the dictionary into the hash key).  This lets us implement the
5387         IEnumerable.GetEnumerator method.
5388
5389         * RelatedCurrencyManager.cs: new class.  Update our view based on
5390         our relation and our parent CurrencyManager's position.
5391
5392         * CurrencyManager.cs: split out some logic from the ctor into
5393         SetView, so it can be called from the new RelatedCurrencyManager
5394         subclass.
5395
5396         * RelatedPropertyManager.cs: new class.  Update our datasource
5397         based on the position of our parent CurrencyManager.
5398
5399         * PropertyManager.cs: split out some logic from the ctor into
5400         SetDataSource, so it can be called from the new RelatedDataSource
5401         subclass.  Also, make the Current getter return the value
5402         of the PropertyDescriptor, not the data_source.
5403
5404         * Binding.cs: no need to duplicate the string splitting code here.
5405
5406 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5407
5408         * Control.cs:
5409           - set_Enabled: OnEnabledChanged is not called if the inherited state 
5410             of the control is not altered, even though  we might be changing the
5411             internal state of the control (#78458)
5412           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
5413             OnEnabledChanged, to allow easy altering of any child window state
5414           - OnEnabledChanged: Added code to enable/disable driver window state
5415           - OnParentEnabledChanged: Instead of firing the event, call 
5416             OnEnabledChanged, which will fire the event and also a) set driver
5417             window state and pass the enabled state to any grandchildren (#78458)
5418
5419 2006-06-19  Jackson Harper  <jackson@ximian.com>
5420
5421         * InternalWindowManager.cs: We don't set the cursor explicitly
5422         thats done via the response to NCHITTESTs.
5423         - Don't need to adjust for titlebar heights anymore, the
5424         coordinates are coming in the correct coordinates now (see peters
5425         last patch).
5426
5427
5428 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
5429
5430         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
5431           being translated relative to whole window, instead of client window.
5432           That caused broken offsets on mouseclick (and caused gas for our
5433           InternalWindowManager)
5434
5435 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5436
5437         * TextControl.cs:
5438           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
5439           - Undo(): Added replay of cursor move on DeleteChars action; added
5440             calling Undo() again if a recorded cursor move is invalid (to
5441             ensure that some action is performed on Undo)
5442         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
5443
5444 2006-06-16  Jackson Harper  <jackson@ximian.com>
5445
5446         * MdiClient.cs: Instead of just sizing maximized windows when
5447         there is a resize we also have to adjust the Y of minimized
5448         windows, so they stay pinned to the bottom of the mdi container.
5449         - Eliminate separate tracking of the active control, we can just
5450         get this from the controls collection.
5451         - Paint the decorations for the newly activated titlebar so we get
5452         a pretty blue bar.
5453         * InternalWindowManager.cs:
5454         * ThemeWin32Classic.cs: Minimized windows get all three buttons
5455         even if they are a tool window.
5456         
5457 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
5458
5459         * TextControl.cs (Undo): Handle non-existent cursor locations in the
5460           undo buffer, these can happen when text was deleted and the cursor
5461           was recorded first. Since we will also have a recorded cursor
5462           after the delete this is not an issue. (Fixes #78651)
5463
5464 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
5465
5466         * AccessibleObject.cs: Remove dependence on Control.is_selected;
5467           instead properly track control states internally (allows us to
5468           remove is_selected from Control)
5469
5470 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5471
5472         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
5473         whose width is not a multiple of 8.
5474
5475 2006-06-13  Jackson Harper  <jackson@ximian.com>
5476
5477         * MdiClient.cs:  Only maximize the next child if the current one
5478         is maximized.
5479
5480 2006-06-13  Chris Toshok  <toshok@ximian.com>
5481
5482         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5483         modified.  Also, guard against grid or grid_drawing being null in
5484         Invalidate.
5485
5486         * DataGrid.cs: Reformat tons of getters/setters.  In the
5487         DataMember setter, just call SetNewDataSource instead of
5488         duplicating some of its functionality.  In SetNewDataSource, don't
5489         check ListManager for null, since the property getter creates the
5490         object if needed.
5491
5492         * DataGridTableStyle.cs: don't set TableStyle or call
5493         SetDataGridInternal on the column here, it's done in
5494         GridColumnStylesCollection.Add.
5495
5496         * GridColumnStylesCollection.cs: fix all the explicit interface
5497         implementations to just call our methods.  Nuke AddInternal() and
5498         move the body of it to Add().  Also, add a call to
5499         column.SetDataGridInternal to Add().
5500
5501         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5502         base()+duplicate code.  Also, use the Format property instead of
5503         format to generate an Invalidate ala MS.  Lastly, create the
5504         textbox here, unconditionally.
5505         (set_Format): call Invalidate.
5506         (get_TextBox): no need to call EnsureTextBox.
5507         (Commit): remove the message box.
5508         (Edit) remove the call to EnsureTextBox.
5509         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
5510         (EnterNullValue): no need to check textbox for null.
5511         (HideEditBox): no need to check textbox for null.
5512         (SetDataGridInColumn): add the textbox to the grid's controls.
5513         (EnsureTextBox): nuke.
5514         
5515 2006-06-13  Jackson Harper  <jackson@ximian.com>
5516
5517         * MdiWindowManager.cs: Hook up to the maximized menus paint event
5518         and redraw the buttons when needed. Unhook when the window is
5519         unmaximized.
5520         * MainMenu.cs: Add an internal Paint event, the mdi window manager
5521         needs this so that it can redraw its buttons when the menu is
5522         repainted.
5523         * InternalWindowManager.cs:
5524         * Form.cs: The method order has changed for DrawMaximizedButtons,
5525         so that it can be a PaintEventHandler.
5526         
5527 2006-06-13  Jackson Harper  <jackson@ximian.com>
5528
5529         * MdiClient.cs: When we close a maximized mdi window, the next mdi
5530         window is activated and maximized, even if it wasn't before.
5531         - When  a new window is activated repaint the decorations of the
5532         old one, so that it no longer has the Active "look" (the blue
5533         titlebar).
5534         * InternalWindowManager.cs: Open up CreateButtons to base classes
5535         so they can recreate the buttons on state changes.
5536         - If a window is maximized give it all three buttons
5537         * MdiWindowManager.cs: Create the titlebar buttons when the state
5538         is changed, this is needed because a toolwindow will not have all
5539         three buttons until it is maximized.
5540
5541 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
5542
5543         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
5544           Fixed bug #78609.
5545
5546 2006-06-12  Jackson Harper  <jackson@ximian.com>
5547
5548         * KeysConverter.cs: Make sure we handle the Ctrl special case
5549         if its the only key.
5550         
5551 2006-06-12  Jackson Harper  <jackson@ximian.com>
5552
5553         * Theme.cs: Add a method to get the size of a managed window
5554         toolbar button.
5555         * InternalWindowManager.cs: Remove the ButtonSize property, this
5556         should be retrieved from the theme.
5557         * MdiWindowManager.cs: Get the button size from the theme
5558         * ThemeWin32Classic.cs: Make the method to get the managed window
5559         titlebar button size public.
5560         - Handle the different button sizes of maximized toolwindows
5561         (should match any maximized window).
5562         - Get the titlebar height from the theme, not the WM (which gets
5563         it from the theme).
5564
5565 2006-06-12  Jackson Harper  <jackson@ximian.com>
5566
5567         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
5568         event down to the mdi window manager.
5569         - Expose some extra stuff to base classes
5570         - Make sure to end the Capture on an NC Mouse up, so that we can
5571         get double clicks properly, and the sizing doens't stick.
5572         - When doing PointToClient contain it in the workable desktop
5573         area, this prevents windows from changing size when the cursor is
5574         pulled outside of the working area while sizing.
5575         * MdiWindowManager.cs: When we get a double click maximize the
5576         window.
5577         - Reset the cursor after handling mode changes.
5578
5579 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
5580
5581         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
5582           current desktop, instead of just assuming a 0, 0 origin. This
5583           is needed for our internal window manager, to know the top
5584           margin of the desktop
5585
5586 2006-06-12  Chris Toshok  <toshok@ximian.com>
5587
5588         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
5589         we need this to get rid of the selected background in the bool
5590         column.
5591         (CancelEditing): move the ConcedeFocus call to above the Abort
5592         call.  Also, set is_changing to false and invalidate the row
5593         header if we were changing before.
5594         (ProcessKeyPreviewInternal): remove, since noone outside this
5595         class calls it anymore.  Roll the code into ProcessKeyPreview.
5596         (EndEdit): remove the internal version.
5597         (InvalidateCurrentRowHeader): make private.
5598
5599         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
5600         Keys.Escape handling (and with it the last call to
5601         DataGrid.EndEdit from outside the class.)
5602
5603
5604 2006-06-12  Chris Toshok  <toshok@ximian.com>
5605
5606         * DataGridTextBox.cs (.ctor): isedit defaults to false.
5607         (OnKeyPress): set isedit to true.
5608         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
5609         already handled by the grid.
5610
5611         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
5612         right.  ugh.
5613         (set_DataSource): SetDataSource always returns true, so stop
5614         putting it in an if statement.
5615         (EndEdit): get rid of some {}'s
5616         (ProcessGridKey): return true in case Keys.Escape.
5617         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
5618         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
5619         PositionChanged, stopped connecting to CurrentChanged.
5620         (GetDataSource): simplify this a bunch.
5621         (SetDataSource): change return type from bool to void.
5622         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
5623         to this, and make sure we don't set ListManager.Position inside
5624         set_CurrentCell.
5625         (OnListManagerItemChanged): if we're passed an actual index,
5626         redraw that row.
5627
5628         * CurrencyManager.cs (set_Position): don't call PullData here.
5629
5630 2006-06-09  Jackson Harper  <jackson@ximian.com>
5631
5632         * TreeNode.cs:  Recalculate the visible order before doing the
5633         Expand/Collapse Below calls, because those calls generate an
5634         expose.
5635         - Reduce calls to the TreeView property, which is mildly expensive
5636         by using a local var.
5637         * Form.cs: Layout the MDI child windows when creating the parent
5638         form.
5639         - Don't use the internal constructor anymore
5640         * MdiClient.cs: use the parent form width/height (if available)
5641         when laying out the child windows, we do this because the
5642         mdiclient isn't docked yet when the initial layout is done.
5643         - Don't need an internal constructor anymore.
5644
5645 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5646
5647         * FileDialog.cs: handle access errors when trying to create a folder
5648         or changing to a directory. No need to initialize out parameters.
5649
5650 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5651
5652         * FileDialog.cs: Append a number when creating a new folder if the
5653           folder already exists (use parenthesis instead of square brackets)
5654
5655 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5656
5657         * FileDialog.cs:
5658           - Disabled registry support for windows and added better registry
5659             error checking for other systems (need to investigate why it
5660             works perfectly on my system)
5661           - If a folder already exist show an error MessageBox instead of
5662             trying to create an indexed name.
5663           - Fixed a non intentional typo.
5664
5665 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5666
5667         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
5668
5669 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5670
5671         * FileDialog.cs: When creating a new folder don't crash if the
5672           folder already exists.
5673
5674 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5675
5676         * FileDialog.cs: Allmost a complete rewrite.
5677           - added a "virtual" file system that handles the differences
5678             between unix and windows file systems (especially the directory
5679             structure). Moved most of the directory and file handling code
5680             into the vfs.
5681             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
5682             UnixFileSystem and FSEntry.
5683           - Recently used folder/directory, size, location and used file names
5684             (file name ComboBox) are now stored in the registry and get read
5685             before the dialog shows up (fixes part 6 of bug #78446).
5686           - Creation of new folders/directories is now possible (context menu
5687             or ToolBar). Added TextEntryDialog for this that fills in the gap
5688             until ListView.LabelEdit works.
5689           - Fixed cursor handling (bug #78527) and focus handling for
5690             PopupButtonPanel
5691           - Various "Search in" ComboBox enhancements. The content of the
5692             dropdown listbox now almost matches ms.
5693           - Changed the behaviour when the user switches to SpecialFolder
5694             Recent to show the ListView in View.Details.
5695           - Beside using the ToolBar to change the View property of the
5696             file ListView it is now possible to use the context menu too.
5697
5698 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5699
5700         * ComboBox.cs: Don't create a new ObjectCollection when an item
5701           gets inserted. Just insert the item in the existing object_items
5702           ArrayList.
5703
5704 2006-06-08  Jackson Harper  <jackson@ximian.com>
5705
5706         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
5707         that the treeview and root node checks are done also, this fixes a
5708         regression i caused in the unit tests.
5709
5710 2006-06-07  Wade Berrier <wberrier@novell.com> 
5711
5712         * RichTextBox.cs: More ISO8859-1 -> unicode
5713
5714 2006-06-07  Mike Kestner  <mkestner@novell.com>
5715
5716         * ComboBox.cs : use items to hold highlight/selection so that
5717         collection insertions don't require synchronization.
5718
5719 2006-06-07  Jackson Harper  <jackson@ximian.com>
5720
5721         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
5722         routine.  We now always keep the sized edge at the cursor instead
5723         of computing movement and adjusting rects.  There is one buglet
5724         with this method though when the cursor is moved over area that
5725         the window can not expand too (such as the toolbars on the desktop).
5726
5727 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5728
5729         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
5730         here. Fixes crash on startup in AlbumSurfer.
5731
5732 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
5733
5734         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
5735           values
5736
5737 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5738
5739         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
5740         statement to avoid calling XNextEvent which will block if another thread
5741         took the event that we were expecting. Fixes bug #78605.
5742
5743 2006-06-07  Mike Kestner  <mkestner@novell.com>
5744
5745         * ListView.cs : isolated checkbox clicking from the selection logic.
5746         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
5747
5748 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5749
5750         * Form.cs: Check that the value passed to Form.DialogResult
5751         is a valid enum value.
5752
5753 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5754
5755         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
5756         Computer'. Clicking it in the network view goes to 'My Computer'.
5757         Added CIFS filesystem type. Display the mount point of filesystems.
5758         Avoid duplicate mount points (happens for me with CIFS);
5759
5760 2006-06-06  Jackson Harper  <jackson@ximian.com>
5761
5762         * InternalWindowManager.cs: Draw the maximized windows buttons
5763         when resizing.
5764
5765 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5766
5767         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
5768         all other dialogs. Fixes bug #78585.
5769
5770 2006-06-06  Mike Kestner  <mkestner@novell.com>
5771
5772         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
5773         Only invalidate checkbox on checkstate changes to avoid flicker.
5774         * ListBox.cs : avoid unselect/select when clicking selected item.
5775         avoid reselection flicker for already multiselected items.
5776         Fixes #78382.
5777
5778 2006-06-06  Jackson Harper  <jackson@ximian.com>
5779
5780         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
5781         the parent form so that the menu is removed if needed.
5782
5783 2006-06-06  Mike Kestner  <mkestner@novell.com>
5784
5785         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
5786         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
5787
5788 2006-06-06  Mike Kestner  <mkestner@novell.com>
5789
5790         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
5791
5792
5793 2006-06-06  Jackson Harper  <jackson@ximian.com>
5794
5795         * Control.cs: Use the property (instead of the field) to get the
5796         default cursor so it is instantiated correctly.
5797         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
5798         resizes so we need to manually repaint the window decorations here.
5799         - Set the titlebar button locations as soon as they are created,
5800         otherwise they are not set correctly on win32.
5801         
5802 2006-06-06  Chris Toshok  <toshok@ximian.com>
5803
5804         * CurrencyManager.cs (set_Position): call PullData before
5805         OnCurrentChanged.
5806         (AddNew): after calling IBindingList.AddNew, update our
5807         listposition, and call OnCurrentChanged/OnPositionChanged (without
5808         calling PullData).
5809         (OnCurrentChanged): remove the call to PullData from here.
5810         (OnItemChanged): remove the call to PushData from here.
5811         (OnPositionChanged): change the test from == null to != null to
5812         match the other methods.
5813         (ListChangedHandler): the grossest part of the patch.  Implement
5814         this such that it passes the unit tests in CurrencyManagerTest and
5815         the output more or less matches that of MS's implementation.
5816  
5817 2006-06-06  Mike Kestner  <mkestner@novell.com>
5818
5819         * ListView.cs : only update check state on single click.
5820         * ThemeWin32Classic.cs : fix focus drawing for details view without
5821         fullrowselect.  Fixes #78454.
5822         * XplatUIX11.cs : fix for double click emission.
5823
5824 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
5825
5826         * PropertyGridView.cs : Applied Atsushi's patch to fix
5827         font dialog bug  (#78197).
5828
5829 2006-06-05  Jackson Harper  <jackson@ximian.com>
5830
5831         * TreeNode.cs: Compute the next node for expanding/collapsing
5832         correctly. We now factor in nodes without a NextNode
5833         correctly. (Fixes somes cases in nunit-gui).
5834         * InternalWindowManager.cs: Set the bounds when updating the
5835         virtual position of a tool window.
5836         
5837 2006-06-05  Chris Toshok  <toshok@ximian.com>
5838
5839         * DataGrid.cs: rename cached_currencymgr to list_manager.
5840         (set_CurrentCell): move SetCurrentCell code here, and clean it up
5841         some.
5842         (CurrentRow, CurrentColumn): single accessors so we can make the
5843         cursor movement code a lot easier to understand.
5844         (CurrentRowIndex): implement this in terms of CurrentRow.
5845         (BeginEdit): clean this up a bit.
5846         (CancelEditing): sort out the is_editing/is_changing/is_adding
5847         stuff a little.
5848         (EndEdit): minor changes.
5849         (OnKeyDown): add a comment about a (most likely) unnecessary
5850         check.
5851         (OnMouseDown): cancel editing when we click on a row header.  And
5852         use the CurrentRow setter, not CurrentCell.
5853         (ProcessDialogKey): directly call ProcessGridKey.
5854         (UpdateSelectionAfterCursorMove): factor out this common block of
5855         code (it's used everywhere that we move the cursor by updating row
5856         or column).
5857         (ProcessGridKey): pretty substantial overhaul.  Use the
5858         CurrentRow/CurrentColumn properties to make the code a lot more
5859         readable.  Only use the CurrentCell property when we have to
5860         modify both row and column at once.  Tab behavior is still broken,
5861         and Delete is untested.
5862         (Select): if we have no selected rows, set selection_start to
5863         @row.
5864         (EditCurrentCell): rename EditCell this.  It was only ever invoked
5865         with CurrentCell as the arg, so drop the arg and rename it.
5866
5867         * DataGridColumnStyle.cs: clean up the constructors a little, and
5868         drop CommonConstructor().
5869
5870         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
5871         actually get notified when the user hits it.
5872         (ProcessKeyMessage): *substantially* simplify this method.
5873         There's no reason (that I can see) for the textbox to be making
5874         calls into the datagrid at all.  Remove all of them but the ones
5875         for Enter handling.  those will take some more work.
5876
5877         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
5878         calling HideEditBox.
5879         (HideEditBox): if we have an active textbox, render it invisible
5880         without causing a re-layout of the datagrid.
5881
5882 2006-06-05  Mike Kestner  <mkestner@novell.com>
5883
5884         * ListView.cs : fix NRE crasher when focuseditem is cleared by
5885         collection changes by resetting it to Items[0].  Fixes #78587.
5886
5887 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5888
5889         * MessageBox.cs: if the height of the text is larger than the icon_size,
5890         use that. Fixes bug #78575.
5891
5892 2006-06-05  Jackson Harper  <jackson@ximian.com>
5893
5894         * TreeView.cs: Fix line drawing when scrolling.  To do this each
5895         node is basically responsible for drawing its entire horizontal
5896         area.  When drawing a node it draws its parent node lines if
5897         needed.
5898         - Adjust the clip area to the viewport rectangle
5899         - Fix Left/Right key handling to match MS. (It expand/collapses
5900         and moves to parents/first child but does not move selection to
5901         sibling nodes).
5902         - Fix SetTop to work with new bound calculation code
5903         - When scrollbars are no longer needed we need to reset scrolling
5904         vars and recalculate the visible order so the redraw is correct
5905         * TreeNode.cs: We can't expand/collapse nodes with no children.
5906
5907 2006-06-03  John Luke  <john.luke@gmail.com> 
5908
5909         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
5910         so the colors work without dev packages
5911         
5912 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
5913
5914         * Control.cs 
5915           - Select: Implemented to just use activate. Seems to match MS 
5916             behaviour closest. Documented to only do actual control walking 
5917             based on it's parameters if in a container control so I moved 
5918             the code there.
5919           - Removed selection check logic from our internal Select() method
5920         * ContainerControl.cs:
5921           - Select: Moved selection logic from Control here, since MS documents
5922             that containers obey the bool arguments. No longer calling base
5923
5924 2006-06-02  Jackson Harper  <jackson@ximian.com>
5925
5926         * TreeView.cs: If the selected node isn't changed when we get
5927         focus update the previously selected node so that we see the
5928         selection box.
5929
5930 2006-06-02  Mike Kestner  <mkestner@novell.com>
5931
5932         * ComboBox.cs: restructure grab and general mouse event handling.
5933         Make the composite control raise mouse events like it was a single
5934         control for leaves/enters/motion/up/down events.  fix dropdown list
5935         coordinate mangling and refactor it into the scrollbar subclass to
5936         reduce code duplication.  Fixes #78282 #78361 and #78457.
5937
5938 2006-06-02  Mike Kestner  <mkestner@novell.com>
5939
5940         * ScrollBar.cs: remove Capture setting/clearing, as it happens
5941         automatically in the Control.WndProc.
5942
5943 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5944
5945         * FileDialog.cs: fix crash when running SharpChess, which sets the
5946         FilterIndex to 2 with only one Filter.
5947
5948 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5949
5950         * ToolBar.cs: add SizeSpecified property.
5951         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
5952         try to figure out our real size, otherwise fallback to what the
5953         container says.
5954
5955 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5956
5957         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
5958         * Control.cs (WndProc): MS always calls the DefWndProc to pass
5959           up the event
5960
5961 2006-06-01  Mike Kestner  <mkestner@novell.com>
5962
5963         * ListView.cs: revamp the focus management in ListView.  It still
5964         causes churn of LostFocus/GotFocus emissions on clicks, but it's
5965         better than not handling focus at all.  Will revisit when pdb feels
5966         the general focus handling is solid.  Fixes #78526.
5967
5968 2006-06-01  Jackson Harper  <jackson@ximian.com>
5969
5970         * TreeView.cs: Set the default border style in the constructor.
5971         - Move painting to use OnPaintInternal instead of capturing
5972         WM_PAINT, this is the correct way of doing things
5973         - UpdateBelow shouldn't invalidate the scrollbar area
5974         - Cap the top on update below in case the node was above the top
5975         of the viewport rectangle.
5976         - ExpandBelow and Collapse below need to obey Begin/End Update.
5977         * TreeNode.cs: Make is_expanded internal so the treenode
5978         collection can change it without firing the whole event chain.
5979         * TreeNodeCollection.cs: When clearing all the child nodes make
5980         sure to recalc the visible order.
5981         - Improve algo for remove the top node
5982
5983 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5984
5985         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
5986           SendMessage directly calling window procedures, which in turn might
5987           call SetFocus()
5988
5989 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
5990
5991         * Control.cs: Don't handle WM_SETFOCUS if the same window already
5992           has focus (works around X11 sending a FocusIn after our SetFocus)
5993         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
5994
5995 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
5996
5997         * Mime.cs: Fix for the NET_2_0 build.
5998           NameValueCollection needs StringComparer now.
5999
6000 2006-05-31  Chris Toshok  <toshok@ximian.com>
6001
6002         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6003         return (via an out parameter) the starting X of the column.
6004         (UpdateVisibleColumn): track change to FromPixelToColumn.
6005         (HitTest): add a ColumnResize case here.
6006         (DrawResizeLine): new function, probably poorly named.
6007
6008         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6009         only need to keep one reference.
6010         (set_ListManager): same.
6011         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6012         Also, add support for HitTestType.ColumnResize.
6013         (OnMouseMove): add column resize behavior here, and change the
6014         cursor to the correct one as we move around the datagrid.
6015         (OnMouseUp): terminate the column resize if we're resizing.
6016         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6017         for the current cell.
6018         (ConnectListManagerEvents): use cached_currencymgr.
6019         (DisconnectListManagerEvents): fill this in, using
6020         cached_currencymgr.
6021         (SetCurrentCell): remove cached_currencymgr_events handling.
6022         (SetDataMember): only call DisconnectListManagerEvents if
6023         cached_currencymgr is != null.
6024         (SetDataSource): same.
6025         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6026         cached_currencymgr.
6027
6028 2006-05-31  Jackson Harper  <jackson@ximian.com>
6029
6030         * BindingManagerBase.cs: Remove somedebug code that creeped into
6031         SVN.
6032         * TreeNode.cs: We get the indent level dynamically right now, so
6033         don't track it as a member.
6034         * TreeNodeCollection.cs: Make sure all nodes added to the list
6035         have parents, treeviews/topnodes setup properly.
6036         - Don't attempt to track indent level.
6037
6038 2006-05-30  Jackson Harper  <jackson@ximian.com>
6039
6040         * BindingContext.cs: Create the currency manager tables here.
6041         This allows us to more easily create null tables (when bad data
6042         members are used), and more easily create related currency
6043         managers.
6044         * CurrencyManager.cs: All the table creation stuff is done by the
6045         binding context now.
6046         - Current should throw an exception if listposition is -1.
6047         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6048         been bound yet.
6049
6050 2006-05-30  Mike Kestner  <mkestner@novell.com>
6051
6052         * ListView.cs: allow reexpansion of zero-width column headers.
6053         Fixes #78528.
6054
6055 2006-05-28  Chris Toshok  <toshok@ximian.com>
6056
6057         * CurrencyManager.cs (get_Current): after the late binding
6058         listposition = -1 fix, we need to guard against it here and return
6059         null, otherwise we raise an exception (which is swallowed
6060         elsewhere, and breaks datagrid databinding.)
6061
6062 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6063
6064         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6065           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6066
6067 2006-05-26  Jackson Harper  <jackson@ximian.com>
6068
6069         * ControlPaint.cs:
6070         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6071         values, it's faster and it's all we care about (we don't care if
6072         the names aren't equal).
6073         * KeyboardLayouts.cs: Eliminate some dead code.
6074         - Lazy init things
6075         * X11Keyboard.cs: Lazy init keyboard detection.
6076         - Cleanup access modifiers a little.
6077
6078 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6079
6080         * XplatUIX11.cs: Once again, attempting to get layout just right.
6081
6082 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6083
6084         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6085           the sizes of each link section, that will result in sizes that
6086           match DrawString's layout (Fixes #78391)
6087
6088 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6089
6090         * FileDialog.cs: If AddExtension property is true autocomplete the
6091           extensions in SaveFileDialog correctly. Fixes bug #78453.
6092           Set MyNetwork and MyComputer to "C:\" for windows. This should
6093           fix part 8 of bug #78446 for now.
6094
6095 2006-05-26  Chris Toshok  <toshok@ximian.com>
6096
6097         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6098         invalidate the current row header if we need to, but presumably
6099         we'll invalidate the row corrsponding to the bounds or
6100         editingControl.
6101         (GridHScrolled): switch back to this method, as it's part of the
6102         public api.  *sigh*.
6103         (GridVScrolled): same.
6104         (OnMouseWheel): hack up something that more or less works.  Call
6105         GridHScrolled/GridVScrolled directly, instead of duplicating much
6106         of their code here.
6107         (EnsureCellVisibility): reinstate a bunch of this code, since we
6108         can't just set the scrollbar Value and expect to do all the work
6109         in the ValueChanged handler.  Also, Call Update() after scrolling
6110         in one direction so the other XplatX11.ScrollWindow call has the
6111         proper stuff in the proper places.
6112         (EditCell): set is_editing to true before calling .Edit.
6113
6114         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6115         don't bother comparing first.
6116         (OnKeyPress): call grid.ColumnStartedEditing before calling
6117         base.OnKeyPress.  this will set is_changing and invalidate the row
6118         header if necessary.
6119         (ProcessKeyMessage): for WM_CHAR messages, call
6120         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6121         and WM_KEYDOWN.
6122         
6123         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6124         it's done in the DataGrid.
6125         (NextState): call grid.ColumnStartedEditing, which takes care of
6126         invalidating the row header (and setting is_changing).
6127
6128         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6129         here.  it's done in the DataGrid.
6130
6131 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6132
6133         * Control.cs: allow changing the cursor when the mouse position is
6134         out of bounds but Capture is set.
6135         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6136         linklabel but released somewhere else.
6137
6138 2006-05-25  Jackson Harper  <jackson@ximian.com>
6139
6140         * TreeView.cs: When we get focus if there is no selected node make
6141         it the top node
6142         - Remove some uneeded setup code from Draw.
6143         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6144         a new node is inserted make the new node the top.
6145         * XplatUIX11.cs:
6146         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6147         be used (should be faster).
6148         
6149 2006-05-25  Chris Toshok  <toshok@ximian.com>
6150
6151         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6152         problem with the last commit.
6153
6154 2006-05-25  Chris Toshok  <toshok@ximian.com>
6155
6156         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6157         need the invalidate call here, while scrolling right-to-left via
6158         the left arrow key (i.e. moving the editing cell while scrolling).
6159
6160         * DataGrid.cs (.ctor): remove the initialization of
6161         ctrl_pressed/shift_pressed.  We no longer track them using key
6162         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6163         to using ValueChanged handlers on the scrollbars instead of
6164         Scrolled event handlers.  This simplifies a bunch of the scrolling
6165         code.
6166         (GridHValueChanged): rename from GridHScrolled, and change it to
6167         work with the new event args.
6168         (GridVValueChanged): same.
6169         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6170         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6171         selected cell.
6172         (ProcessGridKey): correct all the keyboard navigation stuff I
6173         could find.  Ctrl up/down/left/right/home/end work now.
6174         (EnsureCellVisibility): correct method name spelling.  Also,
6175         simplify this a touch by not explicitly calling the
6176         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6177         scrollbar value.
6178         (OnKeyUpDG): no need for this method now.
6179         
6180 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6181
6182         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6183         Fixes bug #78392.
6184
6185 2006-05-25  Chris Toshok  <toshok@ximian.com>
6186
6187         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6188         r61019.
6189
6190 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6191
6192         * Application.cs: Moved setting of is_modal and closing to before
6193           we create the control, to allow the event handlers called as a
6194           result of creation affect closing. Also removed Gonzalo's previous
6195           change to setting DialogResult, the behaviour has been moved to 
6196           Form.ShowDialog()
6197         * Form.cs: 
6198           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6199             handle it instead
6200           - ShowDialog(): If no dialog result is set, we need to return Cancel
6201           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6202             the close is cancelled
6203
6204 2006-05-25  Jackson Harper  <jackson@ximian.com>
6205
6206         * StatusBar.cs: We only need to update the sizes of the other
6207         panels when we have auto size contents.  Also we are only updating
6208         the contents of the panel, not the borders, so compensate for the
6209         border width (TODO: get this width from the theme somehow).
6210         * TreeView.cs: Scrollable is true by default
6211         - Use invalidate instead of refresh where needed
6212         - Factor the scrollable value into scrollbar updating
6213         - Update the scrollbars if the Scrollable property is altered
6214         - Update the selected node if its ImageIndex is changed
6215         - Handle null nodes in UpdateNode (mainly so we don't have to
6216         check if selected is null when updating it
6217         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6218         are factored into the visible count
6219         - Use VisibleCount for clarity in the code
6220         - When the font is changed we need to recurse through all the
6221         nodes and invalidate their sizes
6222         
6223 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6224
6225         * Application.cs: set the DialogResult to fixed when the main form is
6226         hidden or destroyed while being modal.
6227
6228 2006-05-25  Miguel de Icaza  <miguel@novell.com>
6229
6230         * Theme.cs: Use Tangoified messagebox icons. 
6231
6232         (GetSizedResourceImage): Also cope with width = 0 and do not
6233         trigger a warning in that case (0 means "give me your icon from
6234         the resouce, no special size needed).
6235
6236 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6237
6238         * Application.cs: Leave runloop if the the main modal form is 
6239           hidden (fixes #78484)
6240
6241 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6242
6243         * BindingContext.cs : reject null datasource in Contains() and
6244           Item[].
6245         * CurrencyManager.cs : check data_member validity when data_source
6246           is dataset. When it is late binding, the initial position is -1.
6247
6248 2006-05-24  Jackson Harper  <jackson@ximian.com>
6249
6250         * TreeNodeCollection.cs: Dont't recalculate the visible order on
6251         inserted nodes that aren't visible.  This changes the
6252         max_visible_order which confuses scrollbar settings.
6253         - Use the enumerator to get the prev node instead of duplicating
6254         code.
6255         * TreeView.cs: Use new method for setting scrollbar values
6256         - Don't set the bounds every time the scrollbar is updated
6257         - When updating below the root node use an invalidate instead of a
6258         refresh to prevent the child controls (scrollbars) from being
6259         refreshed. (UpdateBelow still needs to be reworked anyways).
6260         - Reenable SetBottom now that visible orders are set correctly,
6261         added some debug code incase we ever get bad values there again.
6262         - Set the scrollbar max to 2 less then the max value, this
6263         compensates for the max value being one above the node count, and
6264         for scrollbars adding one extra "notch".
6265         - When drawing image nodes if there is an imagelist we draw the
6266         first image in the list if the supplied image index is out of the
6267         image list's bounds.
6268         
6269 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6270
6271         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
6272           we receive a size change from the WM (Fixes #78503)
6273
6274 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
6275
6276         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
6277           rectangle (Fixes #78501)
6278
6279 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
6280
6281         * ButtonBase.cs: 
6282           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
6283             as a bitfield.
6284           - Fixed MouseMove to no longer switch pressed state unless the left
6285             mouse button is pressed. Atsushi provided the original patch (#78485)
6286           
6287 2006-05-24  Jackson Harper  <jackson@ximian.com>
6288
6289         * ScrollBar.cs: New internal methods that allow us to change a
6290         couple values on the scrollbar (the most common case is maximum
6291         and large change) without getting multiple invalidates.
6292
6293 2006-05-24  Chris Toshok  <toshok@ximian.com>
6294
6295         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
6296         (Edit): save off the original state in oldState, and set
6297         grid.is_editing to true.
6298         (OnKeyDown): abort editing if escape is pressed.  also, call
6299         NextState if space is pressed.
6300         (OnMouseDown): call NextState.
6301         (NextState): factor out shared code from OnKeyDown and OnMouseDown
6302         here.  Also, only invalidate the row header once (on the initial
6303         is_changing switch) to save on redraws.
6304
6305 2006-05-24  Chris Toshok  <toshok@ximian.com>
6306
6307         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
6308         if the value in the cell is different than it was before.  This
6309         keeps us from triggering a layout when we move around a datarid
6310         with a highlighted cell.
6311         (Edit): suspend layout when creating/positining the text box, and
6312         resume passing false so we don't ever actually re-layout.
6313         (ReleaseHostedControl): same.
6314         (EnsureTextBox): reformat slightly, and set WordWrap to false.
6315
6316         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
6317         control-key sequences should go to the datagrid - remove that
6318         lock.  Also, modify the conditions under which we move between
6319         cells when moving the cursor within a cell, and remove the "this"
6320         and "base" from field accesses.  We weren't even consistent, given
6321         they all were in the base class.
6322
6323 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
6324
6325         * Binding.cs : (.ctor)
6326           An obvious NRE fix for BindingTest.CtorNullTest().
6327
6328 2006-05-23  Chris Toshok  <toshok@ximian.com>
6329
6330         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
6331         them between lines.  This fixes some quirks editing cells in the
6332         datagrid.
6333
6334 2006-05-23  Jackson Harper  <jackson@ximian.com>
6335
6336         * TreeView.cs: Use begin/end update when doing expand/collapse all
6337         so that we don't get flicker on the scrollbar.
6338
6339 2006-05-23  Jackson Harper  <jackson@ximian.com>
6340
6341         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
6342         treenode calculations to be independant of the painting code. To
6343         do this nodes track a visible order which is calculated by the
6344         treeview.
6345         - Call new methods for expanding/collapsing nodes.  These methods
6346         use scrollwindow so we don't have to update everything below the
6347         node.
6348         * TreeView.cs: Refactored drawing and scrolling code.  We don't
6349         need to update nodes when drawing anymore or calculate scrollbar
6350         stuff.
6351         - Added new methods for expanding/collapsing nodes. These methods
6352         use ScrollWindow so as to not have to redraw all the nodes below.
6353         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
6354         we add/remove nodes or sort.
6355         - Handle removing the selected and the top node properly.
6356
6357 2006-05-23  Chris Toshok  <toshok@ximian.com>
6358
6359         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
6360         maybe this should actually happen in the datagrid code?
6361         (EndEdit): no need to invalidate anything, given that
6362         ReleaseHostedControl causes the datagrid to relayout, which
6363         invalidates everything anyway.
6364
6365         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
6366         in SetCurrentCell).
6367         (set_SelectionBackColor): call InvalidateSelection instead of
6368         Refresh.
6369         (set_SelectionForeColor): same.
6370         (BeginEdit): Flesh this out a bit.
6371         (CancelEditing): only do any of this if we're editing/adding.
6372         (EndEdit): same.
6373         (OnMouseDown): there's no need to cancel editing here, it's done
6374         in SetCurrentCell.
6375         (SetCurrentCell): only invalidate the current row header if it's a
6376         different row than the new one.
6377         (ShiftSelection): fix this to work like MS does.
6378         (ResetSelection): factor out the invalidation of selected_rows to
6379         InvalidateSelection.
6380         (SetDataSource): cancel any editing that's going on.
6381
6382         * DataGridColumnStyle.cs
6383         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
6384         call the non-interface version.
6385
6386         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
6387         header rectangle with the clip rectangle so we don't redraw the
6388         entire header for just a small area.  Gets rid of the last flicker
6389         when horizontally scrolling.
6390         (DataGridPaintRow): same.
6391
6392 2006-05-23  Mike Kestner  <mkestner@novell.com>
6393
6394         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
6395         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
6396         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
6397         Critical bug report.
6398
6399 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6400
6401         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
6402           and this fixes #78493
6403
6404 2006-05-23  Miguel de Icaza  <miguel@novell.com>
6405
6406         * Theme.cs (GetSizedResourceImage): Scale images if the proper
6407         size is not found.  
6408         
6409         * FileDialog.cs: Do not change the background for the side bar as
6410         it wont work nicely with the theme, and also reduces the artifacts
6411         in rendering the icons (which I want to fix too).
6412
6413         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
6414         resources, not resgen resources. 
6415
6416         (PlatformDefaultHandler): Pull images using the new API.
6417
6418 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
6419
6420         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
6421           a reference to the hwnd and will not remove it unless there are
6422           no pending exposures (fixes #78341)
6423         * XplatUI.cs: Improved debug
6424
6425 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
6426
6427         * MenuAPI.cs : don't handle OnClick event when it was not the left
6428           button. Fixed bug #78487.
6429
6430 2006-05-23  Mike Kestner  <mkestner@novell.com>
6431
6432         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
6433         prefer submenus to the top menu for item lookup, to avoid popping down
6434         top-row items.
6435
6436 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
6437
6438         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
6439           Graphics.FillRectangle as the visual results are really bad (even
6440           on win). We now draw perfect arrows (and perfect shadows when the
6441           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
6442           Pen.DashPattern to draw the dots of each line.
6443
6444 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
6445
6446         * FileDialog.cs: Update the filename combobox when navigating through
6447           the ListView with the cursor keys. Fixes part 7 of bug #78446.
6448
6449 2006-05-22  Mike Kestner  <mkestner@novell.com>
6450
6451         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
6452         Fixes #78463.
6453
6454 2006-05-22  Mike Kestner  <mkestner@novell.com>
6455
6456         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
6457         requests. Fix a misspelled parameter and a copy paste exception error
6458         in Select.
6459
6460 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
6461
6462         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
6463           to get the same width/height (5/13) on X11 as the default font has on
6464           win32. This means that our DefaultFont emSize is smaller than the 
6465           the MS SWF equivalent (even thought the width/height stays the same)
6466
6467 2006-05-20  Jackson Harper  <jackson@ximian.com>
6468
6469         * MdiClient.cs:
6470         * MdiWindowManager.cs:
6471         * InternalWindowManager.cs: Make sure to use the border width from
6472         the theme.
6473
6474 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
6475
6476         * PrintDialog.cs: Implements printer details
6477
6478 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
6479
6480         * FileDialog.cs: Added focus handling for PopupButtonPanel.
6481           Fixes part 1 and 2 of bug #78446
6482
6483 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6484
6485         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6486           instead of sticking to the first ever calculated value
6487
6488 2006-05-19  Mike Kestner  <mkestner@novell.com>
6489
6490         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6491         PointToClient, since Capture is set. Fixes #78344.
6492
6493 2006-05-19  Mike Kestner  <mkestner@novell.com>
6494
6495         * ListView.cs: match MS behavior in Details view where items are not
6496         drawn if Columns.Count == 0. 
6497         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6498         Use a separate pen to draw the check, since changing the width affects
6499         the box as well.  Fixes #78454.
6500
6501 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6502
6503         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6504         exception should throw the name of the invalid argument.
6505
6506         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6507         there are no files listed. 
6508
6509 2006-05-18  Jackson Harper  <jackson@ximian.com>
6510
6511         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
6512         up.
6513
6514 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6515
6516         * Control.cs: Brought back our old UpdateZOrder method as a private
6517           function and switched our calls from UpdateZOrder to the new one.
6518           This fixes the Paint.Net canvas disappearing bug.
6519
6520 2006-05-18  Jackson Harper  <jackson@ximian.com>
6521
6522         * Theme.cs:
6523         * ThemeWin32Classic.cs:
6524         * InternalWindowManager.cs: Move the drawing into the theme,
6525         expose everything the theme should need from the window manager.
6526
6527 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6528
6529         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
6530           from the call to NativeWindow to avoid walking up the parent chain
6531           further than needed (speeds up setting cursors and avoids setting
6532           the wrong cursor if a parent has another cursor defined)
6533         * Cursor.cs: When loading an icon as cursor, MS uses the center of
6534           the icon as hotspot, not what's contained as hotspot in the icon
6535           file. This fixes the perceived drawing offset seen with Paint.Net
6536         
6537 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6538
6539         * XplatUIX11.cs: 
6540           - Store the calculated rectangle in Hwnd object and use it when 
6541             setting the client size
6542           - Force Toolwindows to always be type Dock, to ensure they're on top
6543
6544 2006-05-18  Mike Kestner  <mkestner@novell.com>
6545
6546         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
6547         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
6548         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
6549         Substantial refactoring to remove confusing nested classes. Coding
6550         standard and Get+Set->property refactorings.  Shift to index based
6551         highlighting in ComboListBox instead of constantly using IndexOf and
6552         Items[]. Add invalidations on resize for DropDownList to fix ugliness
6553         in FileDialog growth.  Draw borders manually since Simple mode needs
6554         to look like two independent controls.  Make listbox border
6555         conditional to DropDownStyle.  Improved OwnerDraw support.
6556
6557 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
6558
6559         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
6560         Don't set the disposed graphics to null, so we can throw the "right"
6561         exception if the graphics is reused later (added a flag to avoid 
6562         double disposing). Some behaviours are different under 2.0 and are
6563         filled under bug #78448.
6564
6565 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6566
6567         * Control.cs: When double-buffering is enabled, we need to reset
6568           our graphics context between paint calls. Otherwise, any 
6569           transformations and other alterations on the context will 
6570           become cumulative (#77734)
6571
6572 2006-05-18  Mike Kestner  <mkestner@novell.com>
6573
6574         * ListView.cs: do focused item selection like MS on clicks. 
6575         Rework focus handling for ItemControl so LostFocus invalidates as
6576         well.
6577         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
6578         the ListView ItemControl has focus.
6579
6580 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
6581
6582         * XplatUIX11.cs: If client_window ends up being width or height zero
6583           due to border settings, move it off window inside whole_window (#78433)
6584
6585 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6586
6587         * Mime.cs: Shrink the mime file cache correctly.
6588
6589 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6590
6591         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
6592
6593 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6594
6595         * XplatUIX11.cs (AddExpose): More sanity checks
6596
6597 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6598
6599         * XplatUIX11.cs:
6600           - AddExpose: Don't add expose ranges outside the size of our
6601             window
6602           - Cast opacity values to Int32 to avoid crashes with certain
6603             values
6604           - Added disabled code paths that protect against illegal cross-
6605             thread painting (Developers.exe)
6606
6607 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6608
6609         * ProgressBar.cs: Invalidate the control when it's resized
6610           since block size is based on control size. (#78388)
6611
6612 2006-05-16  Miguel de Icaza  <miguel@novell.com>
6613
6614         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
6615         of setting the incoming argument to the "reset" value, we set the
6616         this.datamember to string.empty (before we were invalidating the
6617         incoming data).   
6618
6619         Fixes 78420
6620
6621 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6622
6623         * Form.cs: Only apply transparency settings after the form
6624           is created. (Fixes #77800)
6625
6626 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6627
6628         * ApplicationContext.cs: Grab the HandleDestroyed event so
6629           we know when to fire OnMainFormClosed 
6630
6631 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6632
6633         * Application.cs: Introduced sub-class to allow tracking of
6634           threads and centralized triggering of the event mess for
6635           ThreadExit, AppExit, etc..  (#76156)
6636
6637 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
6638
6639         * MimeIcon.cs:
6640           - Do not return a null icon index value for a mime subclass.
6641             Instead try the main mime type class too.
6642           - Seems that some newer distributions don't have a link to some
6643             gnome default icons anymore. So check the default gnome dir too.
6644           
6645
6646 2006-05-16  Jackson Harper  <jackson@ximian.com>
6647
6648         * MdiClient.cs: Don't paint the parent background image if we have
6649         our own background image.
6650
6651 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6652
6653         * Control.cs:
6654           - PerformLayout: Do not shrink space filled by DockStyle.Fill
6655             controls, all filled controls are supposed to overlap (#78080)
6656           - UpdateZOrder is supposed to update the control's z-order in the
6657             parent's z-order chain. Fixed to behave like that
6658           - BringToFront: Removed obsolete code
6659           - SendToBack: Simplyfied
6660           - SetChildIndex: Trigger layout calculations when Z-order changes
6661             since layout is done by z-order
6662
6663 2006-05-16  Chris Toshok  <toshok@ximian.com>
6664
6665         [ fixes bug #78410 ]
6666         * DataGrid.cs (set_AlternatingBackColor): use
6667         grid_drawing.InvalidateCells instead of Refresh().
6668         (set_BackColor): call grid_drawing.InvalidateCells.
6669         (set_BackgroundColor): use Invalidate instead of Refresh.
6670
6671         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
6672         invalidate the cell area.
6673
6674 2006-05-15  Chris Toshok  <toshok@ximian.com>
6675
6676         [ fixes bug #78011 ]
6677         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
6678         on to DataGridPaintRow.
6679         (DataGridPaintRow): take a clip argument, and only draw the cells
6680         which intersect it.  same with the not_usedarea.
6681
6682         * Theme.cs (DataGridPaintRow) add @clip parameter.
6683
6684         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
6685         XplatUI.ScrollWindow.
6686         (ScrollToRow): same.
6687
6688         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
6689         with last column which was causing a gray swath to appear with the
6690         XplatUI.ScrollWindow code.
6691
6692 2006-05-15  Chris Toshok  <toshok@ximian.com>
6693
6694         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
6695         use XplatUI.ScrollWindow.
6696         (VerticalScrollEvent): use XplatUI.ScrollWindow.
6697
6698 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
6699
6700         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
6701
6702 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6703
6704         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
6705           file since there are no equivalent X11 cursors
6706
6707 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6708
6709         * MonthCalendar.cs : DateTimePicker should reflect selected date
6710           on mouse*up*, not mouse*down*. Fixed originally reported part of
6711           bug #76474.
6712
6713 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6714
6715         * TabControl.cs : When argument index is equal or more than tab
6716           count, just ignore. Fixed bug #78395.
6717
6718 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6719
6720         * Control.cs: Dispose all child controls when control is diposed (#78394)
6721
6722 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6723
6724         * ColorDialog.cs: Finally it is possible to select the color with
6725           the text boxes
6726
6727 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6728
6729         * PrintDialog.cs: Fix typo
6730
6731 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6732
6733         * PrintDialog.cs: PrintDialog is not resizable
6734         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
6735           color. Made some ToolBar drawing methods protected virtual.
6736
6737 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
6738
6739         * PrintDialog.cs: Implementation of the PrintDialog
6740
6741 2006-05-12  Chris Toshok  <toshok@ximian.com>
6742
6743         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
6744         thumb, instead use MoveThumb.  This has the side effect of making
6745         most of the other thumb moving machinery use MoveThumb as well.
6746         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
6747         need to actually invalidate the rectangle where the new thumb will
6748         go.
6749         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
6750         We force an Update() after, so it's not as fast as it could be,
6751         but at least there's zero flicker and no droppings.
6752         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
6753         (UpdateThumbPos): add another argument (dirty), which says whether
6754         or not to calculate/add dirty regions which we later invalidate.
6755         For cases where we know we're going to use MoveThumb, we pass
6756         false for this.  Otherwise, pass true.
6757
6758 2006-05-12  Jackson Harper  <jackson@ximian.com>
6759
6760         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
6761         the status bar.
6762         
6763 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
6764
6765         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
6766           and GetClipRegion methods and UserClipWontExposeParent property.
6767         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
6768           overriding UserClipWontExposeParent property, setting to false, since
6769           Win32 handles the required expose messages to draw our clipped parent
6770           areas internally
6771         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
6772           PaintEventStart to set the user clip region if set.
6773         * Control.cs: 
6774           - Now internally tracking the Region for the control since we need to
6775             store it if the handle is not yet created and only set it when it
6776             becomes created. Before setting the region forced handle creation
6777           - Added code to draw the parents underneath a user-clipped region
6778         * Hwnd.cs: Added UserClip property
6779
6780 2006-05-12  Chris Toshok  <toshok@ximian.com>
6781
6782         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
6783         (set_Maximum): same.
6784         (set_Minimum): same.
6785         (set_SmallChange): same.
6786         (OnMouseUpSB): remove the call to refresh when releasing the
6787         thumb.  We shouldn't need it.
6788         
6789 2006-05-12  Miguel de Icaza  <miguel@novell.com>
6790
6791         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
6792         AutoSize set to None, we do not need to relayout everything, we
6793         just need to invalidate the current region.
6794
6795         (Draw): Do not draw the entire ClientArea, just redraw the
6796         clip area being passed.
6797
6798         * MdiClient.cs: Make MdiClient constructor with the Form argument
6799         internal. 
6800
6801 2006-05-12  Jackson Harper  <jackson@ximian.com>
6802
6803         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
6804         parents background image,  but strangely not their own.
6805         - (DrawStatusBarPanel): Take into account horizontal alignment
6806         when drawing the strings and icons.
6807
6808 2006-05-12  Mike Kestner  <mkestner@novell.com>
6809
6810         * ListBox.cs: avoid invalidations for focus when the collection is
6811         empty. 
6812
6813 2006-05-12  Chris Toshok  <toshok@ximian.com>
6814
6815         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
6816         invalidate the entire thumb area.  Call InvalidateDirty which
6817         limits the redraw to the thumb itself and surrounding pixels.
6818
6819         * XplatUIX11.cs (ScrollWindow): optimize copying.
6820         
6821 2006-05-12  Chris Toshok  <toshok@ximian.com>
6822
6823         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
6824         Figure out the positioning/layout in a single pass instead of
6825         multiple recursive invocations.  Speeds up the initial display of
6826         the data grid.  Also, make many things private that were
6827         originally public but unused outside this class.
6828
6829 2006-05-11  Jackson Harper  <jackson@ximian.com>
6830
6831         * MdiClient.cs: Improved layout code.
6832
6833 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
6834
6835         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
6836           not SelectedObject.
6837
6838 2006-05-11  Chris Toshok  <toshok@ximian.com>
6839
6840         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
6841         union of that will always be {0,0,width,height}.
6842
6843 2006-05-11  Jackson Harper  <jackson@ximian.com>
6844
6845         * Form.cs: Match MS's DefaultSize for forms (they must have
6846         changed the size in sp2).
6847
6848 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6849
6850         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
6851
6852 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6853
6854         * TextControl.cs : Fixed bug #78109. This incorrect position
6855           comparison caused crash on automatic line split.
6856         * TextBoxBase.cs : reduce duplicate code.
6857
6858 2006-05-10  Jackson Harper  <jackson@ximian.com>
6859
6860         * MdiClient.cs: Active form is only sent to the back when using
6861         the Next form functionality, when a form is clicked the current
6862         active shouldn't be sent to the back.
6863         - Layout the mdi windows when the container is first made visible.
6864         * Form.cs: Give the MdiClient a ref to the containing form when we
6865         create it.
6866         
6867 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6868
6869         * LinkLabel.cs : link_font could be uninitialized, so populate one
6870           before actual use. Fixed bug #78340.
6871
6872 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6873
6874         * XplatUIX11.cs : clipboard format native value is IntPtr.
6875           Fixed bug #78283.
6876
6877 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6878
6879         * Control.cs: 
6880           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
6881             which is passed up the parent chain by DefWndProc
6882           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
6883             to DefWndProc (#77956)
6884         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
6885
6886 2006-05-10  Jackson Harper  <jackson@ximian.com>
6887
6888         * MdiClient.cs: We need to remove the controls from the mdi
6889         collection, when we close the window.
6890         * MdiWindowManager.cs: Special handling of closing mdi windows.
6891         * InternalWindowManager.cs: Make the close method virtual so the
6892         mdi window manager can handle it specially.
6893
6894 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
6895
6896         * DataGrid.cs:
6897           - Recalculate grid when the data source has changed
6898           - Matches styles provided by user from all data sources types
6899         * DataGridTableStyle.cs: For columns that provided by the user set the
6900         with the preferred value is there was unassigned.
6901         * CurrencyManager.cs: throw OnItemChanged event
6902
6903 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
6904
6905         * PictureBox.cs: Don't animate until handle is created. Start animation
6906           when handle is created.
6907
6908 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6909
6910         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
6911           current codebase.
6912         * XEventQueue.cs: We don't need to provide the extra info
6913
6914 2006-05-10  Jackson Harper  <jackson@ximian.com>
6915
6916         * MdiClient.cs: If the mdi clients parent form has a background
6917         image set, we draw that background image for the mdi area's
6918         background.
6919
6920 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6921
6922         * TextBoxBase.cs: Set IBeam cursor (#78347)
6923
6924 2006-05-10  Mike Kestner  <mkestner@novell.com>
6925
6926         * ToolBar.cs: fix some text padding issues with ButtonSize
6927         calculation. Update the default size to match MS documentation.
6928         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
6929         button size. Fixes #78296.
6930
6931 2006-05-10  Mike Kestner  <mkestner@novell.com>
6932
6933         * ListBox.cs: use is_visible for scrollbar positioning in case the
6934         control isn't on screen yet.  Fix off by one with Right vs Width
6935         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
6936         
6937 2006-05-10  Jackson Harper  <jackson@ximian.com>
6938
6939         * X11Dnd.cs: Drop to a control with another control on top of it.
6940         * ToolBar.cs: Work on a copy of the buttons list, so that it can
6941         be modified in click handlers. TODO: Look for similar problems in
6942         other controls.
6943
6944 2006-05-09  Jackson Harper  <jackson@ximian.com>
6945
6946         * Form.cs: Window managers need the old window state when setting
6947         window state now.
6948         * InternalWindowManager.cs: Allow the base mdi window manager to
6949         handle more of the MDI only stuff (like maximize buttons).
6950         * MdiWindowManager.cs: Fix some snafus in changing the window
6951         state.  Add all the menu functionality, for both popup and
6952         maximized menus.
6953         * MdiClient.cs: When a new form is selected the currently
6954         activated form is sent to the back, this matches MS.
6955         - Implement a new method to activate the next mdi child window.
6956
6957 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
6958
6959         * Control.cs: 
6960           - Added new InternalCapture method to allow controls to prevent
6961             the capture behaviour on the click handlers
6962           - Switched to use InternalCapture
6963         * ComboBox.cs:
6964           - Using InternalCapture to prevent mouse captures from being released
6965             on mouse button release (Fixes #78100)
6966         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
6967           returns Form borders if a caption is present. (Fixes #78310)
6968
6969 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
6970
6971         * TreeNode.cs: Changed serialization .ctor to not require every field
6972           to be present. (#78265)
6973         * OwnerDrawPropertyBag.cs: Added serialization .ctor
6974
6975 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
6976
6977         * MimeIcon.cs: for is faster than foreach for strings.
6978
6979 2006-05-05  Mike Kestner  <mkestner@novell.com>
6980
6981         * CheckedListBox.cs: update check handling code to not use selected.
6982         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
6983         behavior for visual feedback, motion response, shift/ctrl handling,
6984         and properly deal with all 4 selection modes. Updates to bounds
6985         handling logic.  Add scroll wheel support. [Fixes #77842]
6986
6987 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
6988
6989         * ListView.cs:
6990           - Moved adding of Implicit controls into .ctor. That way, subsequent
6991             creation of the controls will not cause them to think they are 
6992             toplevel windows (fixes #78200 header problem)
6993           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
6994           - Switched visibility setting of header control to use internal field
6995             to avoid triggering handle creation
6996           - Now checking if handle is created before causing a refresh when items
6997             are added (This makes us now match handle creation time with MS)
6998         * Splitter.cs: Removed loading of private splitter cursor, switched to
6999           Cursors version now that that is loading the right ones
7000         * Cursors.cs: Load proper splitter cursors from resources
7001         * Cursor.cs: Added second method of loading resource cursors for the 
7002           VS.Net users amongst us
7003
7004 2006-05-05  Mike Kestner  <mkestner@novell.com>
7005
7006         * ListView.cs: give header_control a minimum size based on the
7007         ListView size.
7008
7009 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7010
7011         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7012           window seems to do that with metacity, so set that type. (#78120)
7013
7014 2006-05-05  Mike Kestner  <mkestner@novell.com>
7015
7016         * ListViewItem.cs: fix Details mode checkbox layout bug.
7017         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7018         at the end of the header, if it exists. [Fixes for #78200]
7019
7020 2006-05-04  Jackson Harper  <jackson@ximian.com>
7021
7022         * MdiClient.cs: Add a helper property to get the container form.
7023         * MdiWindowManager.cs: We have to make sure to use the menu origin
7024         when drawing the icons and buttons, this fixes maximized window
7025         icons/buttons on win32.
7026         * InternalWindowManager.cs: Reset the restore captions when a
7027         window goes from Maximized to Minimized and vice versa. Move the
7028         DrawMaximizedButtons into the MdiWindowManager source, tool
7029         windows can't be maximized. NOTE: This could use a little
7030         refactoring if time ever permits.
7031         
7032 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7033
7034         * TextBox.cs: Add MWFCategoryAttributes
7035         * TextBoxBase.cs: Add MWFCategoryAttributes
7036         * Form.cs: Add MWFCategoryAttributes
7037
7038 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7039
7040         * Control.cs: Add MWFCategoryAttributes
7041         * ScrollableControl.cs: Add MWFCategoryAttributes
7042
7043 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7044
7045         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7046           Divider is true. Fix a little glitch in PropertyToolBar
7047           drawing code
7048
7049 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7050
7051         * Control.cs:
7052           - Dispose: Call base.Dispose, this causes the disposed event
7053             to be fired (and probably other, more important stuff)
7054           - SetVisibleCore: Set is_visible to true after creating the
7055             window so that the window still gets created invisible (if
7056             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7057             to generate a WM_ACTIVE message
7058         * Form.cs: Call Dispose when we want to destroy the window, instead of
7059           just destroying the handle (Dispose will do that for us)
7060         * XplatUIX11.cs:
7061           - RootWindow also needs a queue, so we can properly process the
7062             property change events from RootWindow (like Activate)
7063           - Generatic synthetic WM_ACTIVE message when the active window is
7064             being destroyed
7065
7066 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7067
7068         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7069           bounds are changed
7070
7071 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7072
7073         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7074           for determining width and height (image might not be assigned if
7075           we're drawing an imagelist)
7076
7077 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7078
7079         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7080         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7081           height from system
7082         * Theme.cs: No longer returns hardcoded menu height, instead calls
7083           new driver method
7084         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7085           on MS (# 78257)
7086
7087 2006-05-01  Mike Kestner  <mkestner@novell.com>
7088
7089         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7090
7091 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7092
7093         * TextBoxBase.cs: Removed Fixme
7094         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7095
7096 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7097
7098         * XplatUIX11.cs:
7099           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7100             the rectangle relative to the parent, considering borders. We
7101             don't really want that.
7102           - ScrollWindow: Fixed warning to be more understandable
7103         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7104           scrollbars and scroll only the visible area
7105         * RichTextBox.cs: Removed debug output
7106
7107 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7108
7109         * NumericUpDown.cs (Text): Just use base
7110         * UpDownBase.cs: Ensure txtView is created before using it
7111
7112 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7113
7114         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7115           casting to IntPtr to avoid 64bit overflow errors
7116
7117 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7118
7119         * Control.cs:
7120           - AllowDrop: Don't force handle creation.
7121           - CreateHandle: Added call to tell driver if we're allowed to drop
7122
7123 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7124
7125         * FileDialog.cs: Remember the last directory not only for the
7126           current instance but also for new FileDialog instances.
7127
7128 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7129         
7130         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7131           broke sending async messages
7132
7133 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7134
7135         * XplatUIX11.cs:
7136           - ScrollWindow: Fixed method. We finally generate expose events again
7137             for scrolled areas. This was causing 'garbage' when scrolling
7138             textbox and other controls that used ScrollWindow
7139           - Switched from using the regular queue for paint events to the MS 
7140             model of 'generating' paint events when the queue is empty.
7141             We use the new XQueueEvent.Paint subclass to store which windows
7142             need painting.
7143           - AddExpose now takes the x/y/width/height of the exposed area
7144             and inserts the window into the paint queue if not already there
7145           - InvalidateWholeWindow: Switched to use new AddExpose method
7146           - UpdateMessageQueue: Added which queue to monitor for paint events
7147           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7148             the unlikely case nothing above handles it. We reset the expose
7149             pending states to get them off the queue.
7150           - GetMessage: Now pulls a paint event if no other events are in the
7151             queue
7152           - Invalidate: Switched to new AddExpose method
7153           - PeekMessage: Updated to understand pending paint events
7154           - UpdateWindow: Fixed logic bug. We were only updating if the window
7155             didn't need updating. Also switched to sending WM_PAINT directly,
7156             like MS does.
7157         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7158           and random access Remove(). The random access is needed to handle
7159           UpdateWindow() where a WM_PAINT is sent directly without accessing
7160           the queue.
7161         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7162           allow for better feedback when scrolling. Scrollbars are small and
7163           the immediate update should make it 'feel' more responsive without
7164           slowing things down. ScrollBar still needs it's invaliate logic
7165           updated to not always invalidate the whole bar on certain changes.
7166
7167 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7168
7169         * Control.cs:
7170         (BackColor): if the control does not support a transparent background,
7171         return the default backcolor when the parent backcolor is transparent.
7172
7173 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7174
7175         * Application.cs: Updated to new StartLoop/GetMessage API
7176         * RichTextBox.cs: Provide some output on RTF parsing errors
7177         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7178           new queue_id argument to GetMessage and PeekMessage to allow faster
7179           handling of per-thread queues in drivers.
7180         * Hwnd.cs: Added Queue tracking and property
7181         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7182         * XEventQueue.cs: Added thread trackingA
7183         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7184         * XplatUIX11.cs:
7185           - Implemented new per-thread queue
7186           - GetMessage: Fixed return/break behaviour on several cases. We were
7187             returning stale messages in some cases, instead of just processing
7188             the next message
7189
7190 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7191
7192         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7193
7194 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7195
7196         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7197           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7198
7199 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7200
7201         * PropertyGridView.cs: Fix drop down width.
7202
7203 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7204
7205         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7206           a mess in DrawToolBar, so I removed one of them.
7207
7208 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7209
7210         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7211           needed (clip). Otherwise we get artifacts.
7212
7213 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7214
7215         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7216           dimension is fixed
7217         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7218           and switched FixedSizeTextBox to only be fixed vertical (#78116)
7219         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
7220           if it matches the scale base font (avoids unneeded scaling)
7221
7222 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7223
7224         * X11DesktopColors.cs: One gtk_init_check should be enough
7225
7226 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
7227
7228         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
7229           match MS behaviour
7230
7231 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7232
7233         * TextBoxBase.cs: 
7234           - Generate OnTextChanged for Backspace even if we're only deleting
7235             the current selection
7236           - When setting the Text property, only select all text if the
7237             control does not have focus when it is being set. Otherwise
7238             just place the cursor at the beginning of the control
7239
7240 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
7241
7242         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
7243           Added a little helper to draw PropertyGrid ToolBar with a different
7244           border and a different BackColor.
7245         * PropertyGrid.cs: Some background parts didn't get painted with the
7246           correct background color. Added a class that helps us to draw the
7247           correct border for PropertyGridView and a class that helps us to
7248           draw ToolBars with a different backcolor
7249         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
7250
7251 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
7252
7253         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
7254         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
7255
7256 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7257
7258         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
7259           into the palette entries. Also, since we're working on a copy
7260           we needed to copy the palette back onto the bitmap.
7261         * Cursor.cs: Same fix as XplatUIWin32.cs.
7262
7263 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
7264
7265         * ImageListStreamer.cs: Need to read the var (or we're off)
7266
7267 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
7268
7269         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
7270           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
7271           TextBoxBase.cs: Unused var fixes
7272         * AxHost.cs: Small 2.0 fix
7273         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
7274           as it seems that is what at least Metacity expects. This will make
7275           icons show up on 64bit platforms. We still have some 64bit size
7276           issues, though, since the startup app window size still won't match.
7277
7278 2006-04-25  Mike Kestner  <mkestner@novell.com>
7279
7280         * *.cs: cleanup newly reported exception var unused warnings.
7281
7282 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7283
7284         * ThemeWin32Classic.cs: Button image alignment now matches exactly
7285           ms
7286
7287 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7288
7289         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
7290           image. The image position is always the same, no matter if the
7291           button is pressed or not.
7292
7293 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
7294
7295         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
7296           selection and set the correct filename for SaveFileDialog.
7297           Patch by Emery Conrad.
7298
7299 2006-04-24  Mike Kestner  <mkestner@novell.com>
7300
7301         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
7302         check for item.X outside the ClientRect instead of item.Y. Fixes
7303         #78151.
7304
7305 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7306
7307         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
7308         trust that value blindly and do some sanity check. Fixes bug #77814.
7309
7310 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7311
7312         * ImageListStreamer.cs: save the mask as a 1bpp image.
7313
7314 2006-04-21  Mike Kestner  <mkestner@novell.com>
7315
7316         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
7317         pass Checked and Indeterminate to the Theme Engine. Improve
7318         encapsulation with ListBox.
7319         * ListBox.cs: Keep a StringFormat instead of calculating it every item
7320         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
7321         nested types.  Move all CheckState functionality to CheckedListBox.
7322         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
7323         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
7324         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
7325         single base list. Fix scrollbar sizing and placement to mirror MS.
7326         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
7327         used.
7328         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
7329         for CheckedListBox by using new DrawItemState info.  Center the
7330         checkboxes on the items. Use new StringFormat property.
7331
7332 2006-04-18  Jackson Harper  <jackson@ximian.com>
7333
7334         * Form.cs: MdiChildren don't do default locations the same way as
7335         regular forms.  This prevents a crash when trying to position the
7336         mdi windows.
7337
7338 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
7339
7340         * PropertyGridTextBox.cs: Formatting, copyright
7341         * PropertiesTab.cs: Formatting
7342         * PropertyGrid.cs: Formatting
7343         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
7344           click toggling of values
7345           
7346 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
7347
7348         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
7349         * Control.cs (.ctor): verify_thread_handle is static, don't reset
7350           every time a control is created
7351         * Application.cs: Removed obsolete EnableRTLMirroring method
7352
7353 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
7354
7355         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
7356         SelectedIndex to -1. Fixes bug #78121.
7357
7358 2006-04-17  Jackson Harper  <jackson@ximian.com>
7359
7360         * Binding.cs: Handle null values for Current and BindingContext.
7361         This occurs when binding is a little delayed.
7362         * CurrencyManager.cs: return null for Current when there are no
7363         items in the list.
7364         - Hookup to the listchanged event on the DataView and update
7365         bindings when the list is changed.  This fixes late binding of
7366         controls.
7367
7368 2006-04-17  Jackson Harper  <jackson@ximian.com>
7369
7370         * X11Dnd.cs:
7371         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
7372         Ringenbach.
7373
7374 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
7375
7376         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
7377           place
7378         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
7379           with the correct ButtonState
7380
7381 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
7382
7383         * XplatUIX11.cs: Improved distinguishing between window types to
7384           tell the WM a type closer to what the app wants (Fixes #78107)
7385
7386 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7387
7388         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
7389           GrabHandle
7390
7391 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
7392
7393         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
7394           drawing code to reflect the size grip changes
7395
7396 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7397
7398         * ImageListStreamer.cs: fix handling of the mask that follows the main
7399         bitmap when deserializing and serialize it properly. The generated mask
7400         should better be a 1bpp image, but I'll do that later.
7401
7402 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7403
7404         * FileDialog.cs: Show something in the DirComboBox on *nix if the
7405           path doesn't fit into some of our Current.Places
7406
7407 2006-04-13  Jackson Harper  <jackson@ximian.com>
7408
7409         * ComboBox.cs: Use borders instead of drawing our own decorations,
7410         try to obey correct rules for heights.
7411         * Theme.cs:
7412         * ThemeNice.cs:
7413         * ThemeClearLooks.cs:
7414         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
7415         this is now handled by borders.
7416         - Remove unused DrawListBoxDecorationSize method.
7417         
7418 2006-04-13  Mike Kestner  <mkestner@novell.com>
7419
7420         * MenuAPI.cs: null guarding for the disbled click check fixes crash
7421         reported by Alex.
7422
7423 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
7424
7425         * ThemeWin32Classic.cs: 
7426           - Fixed CPDrawStringDisabled
7427           - Corrected drawing of disabled menu items
7428           - Fixed drawing of disabled radio buttons (bug #78095)
7429           - Draw check in a disabled CheckBox with color ControlDark 
7430
7431 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7432
7433         * Form.cs: Use the provided width when calculating the menu size;
7434           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
7435           and ClientSize.Width won't be updated yet
7436         * Application.cs: Use Visible instead of Show() to make form visible,
7437           this way we create the handle later and menusize is considered
7438
7439 2006-04-12  Mike Kestner  <mkestner@novell.com>
7440
7441         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
7442         reporting.
7443
7444 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7445
7446         * TextBox.cs: Implemented context menu
7447
7448 2006-04-12  Mike Kestner  <mkestner@novell.com>
7449
7450         * ListView.cs: implement box selection. fixes #77838.
7451         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
7452
7453 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7454
7455         * XplatUIX11.cs: Added setting of window type when transient window
7456           is created (metacity would move it otherwise)
7457         * X11Structs.cs: Added WINDOW_TYPE atoms
7458         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
7459           background (the control is Opaque but still wants transparent
7460           backgrounds)
7461
7462 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7463
7464         * Control.cs: Added OnPaintBackgroundInternal to allow controls
7465           that set Opaque but don't mean it (like all ButtonBase-derived
7466           controls) to still draw their background
7467         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
7468           the background
7469
7470 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
7471
7472         * Control.cs (PaintControlBackground): Set the graphics object
7473           on our PaintEvent to null to prevent it from being disposed
7474           when the PaintEvent gets disposed
7475
7476 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
7477
7478         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
7479         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
7480
7481 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7482
7483         * Control.cs: 
7484           - Added transparency check to BackColor property. Transparent
7485             backgrounds are only allowed if the control styles permit it
7486           - Added recursive painting of parent control background and
7487             foreground if a control with a transparent backcolor is drawn
7488             (Thanks to Tim Ringenback for providing his 'hack' as a base
7489              for this patch) Fixes #77985 and #78026.
7490           - Added Opaque style check before calling OnPaintBackground, no
7491             need to draw the background if the control is opaque
7492           - Removed ControlAccessibleObject owner variable (inherited from
7493             base, no need to define again)
7494           - Added some documentation links explaining the drawing events
7495             and styles
7496
7497 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7498
7499         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7500           that the affected control is the located at the left border of our
7501           parent (Fixes #77936)
7502
7503 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7504
7505         * TextBoxBase.cs: When rendering disabled or readonly controls,
7506           draw the background with 'Control' instead of 'Window' color as
7507           long as the user hasn't specifically set a color
7508
7509 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7510
7511         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
7512           since that won't be updated if the user types text (only if it's
7513           programatically set)
7514
7515 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7516
7517         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
7518           layout changes do to app-triggered resizes will have the proper
7519           display rectangle for layout
7520
7521 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
7522
7523         * ThemeWin32Classic.cs:
7524           - Make use of the SystemBrushes and SystemPens wherever possible
7525           - Corrected some highlight colors
7526           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
7527             drawing
7528         * Theme.cs: Added Empty field to CPColor struct
7529
7530 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7531
7532         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
7533           is displayed when calculating the display rectangle. Thanks to Mike
7534           for teaching me the err of my ways.
7535
7536 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
7537
7538         * ScrollableControl.cs:
7539           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
7540             (instead of 0,0) and we now return the real width/height instead of
7541             just the clientrectangle, adjusted for padding. The rectangle is
7542             now cached and created by the new CalculateDisplayRectangle method.
7543           - Created new CalculateDisplayRectange method, which basically does
7544             what get_DisplayRectangle() did originally, but now using the 
7545             right edge instead of DisplayRectangle to determine the size of
7546             our scrollbars
7547           - get_Canvas(): Fixed it to properly calculate canvas for 
7548             right/bottom controls which seem to be placed to the right/bottom
7549             of any controls that have a fixed location
7550           - Removed TODO that's taken care of
7551           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
7552             and SetDisplayRectLocation according to new MSDN2 docs
7553           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
7554             event when that is called, this is added for compatibility
7555           - ScrollControlIntoView(): Implemented.
7556           - Switched scrollbars to be implicit, they shouldn't be selectable
7557         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
7558           call it when the active control is set/changed
7559         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
7560         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
7561           implicit_control variable (used for native Win32 message generation)
7562         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
7563           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
7564         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
7565         * XplatUIStructs.cs: Added ScrollBarCommands enum
7566
7567 2006-04-10  Jackson Harper  <jackson@ximian.com>
7568
7569         * ButtonBase.cs:
7570         * CheckedListBox.cs:
7571         * ComboBox.cs:
7572         * DataGrid.cs:
7573         * DataGridView.cs:
7574         * Form.cs:
7575         * GroupBox.cs:
7576         * ListBox.cs:
7577         * PrintPreviewControl.cs:
7578         * ProgressBar.cs:
7579         * PropertyGrid.cs:
7580         * Splitter.cs:
7581         * StatusBar.cs:
7582         * TrackBar.cs:
7583         * UpDownBase.cs: Fixup base event overrides.
7584         
7585 2006-04-06  Mike Kestner  <mkestner@novell.com>
7586
7587         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
7588         all user-initiated value changes to min <= value <= max-thumbsz+1.
7589         (set_Value): check for vert/horiz when calculating new thumb position.
7590         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
7591         like MS does.
7592         (OnMouseMoveSB): refactor the thumb dragging code and refine
7593         invalidation logic to reduce flicker.
7594         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
7595         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
7596         (UpdateThumbPosition): small code readability cleanup
7597
7598 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
7599
7600         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
7601           different
7602
7603 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7604
7605         * ThemeNice.cs: Use a better graphics effect when a button is pressed
7606
7607 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7608
7609         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
7610         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
7611           This dramatically reduces the number of Pen.Dispose calls. 
7612           Where possible call ResPool methods only once instead of calling it
7613           over and over again (for example for the same color).
7614
7615 2006-04-06  Mike Kestner  <mkestner@novell.com>
7616
7617         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
7618         Also remove an unused private field on the collection. Fixes #77972.
7619
7620 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7621
7622         * ThemeNice.cs: Added ToolBar drawing code
7623
7624 2006-04-06  Mike Kestner  <mkestner@novell.com>
7625
7626         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
7627         I'm assuming that means we need to look up the toplevel for the
7628         provided control. Fixes the crash trace in #77911 but exposes another
7629         crash in some strange reflection usage in NDocGui.
7630
7631 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7632
7633         * ThemeNice.cs: Gave it a little silver touch and added Images
7634           method
7635         * FontDialog.cs: FontDialog is not resizable
7636         * FileDialg.cs: Added SizeGripStyle.Show
7637
7638 2006-04-05  Jackson Harper  <jackson@ximian.com>
7639
7640         * KeyboardLayouts.cs: Remove warning.
7641
7642 2006-04-05  Jackson Harper  <jackson@ximian.com>
7643
7644         * Control.cs: Enable OnPaintInternal so we can use it for drawing
7645         all of our controls instead of Paint +=.
7646         * ListBox.cs:
7647         * ListView.cs:
7648         * MenuAPI.cs:
7649         * MessageBox.cs:
7650         * NotifyIcon.cs:
7651         * ProgressBar.cs:
7652         * ScrollBar.cs:
7653         * Splitter.cs:
7654         * StatusBar.cs:
7655         * TabControl.cs:
7656         * TextBoxBase.cs:
7657         * ToolBar.cs:
7658         * TrackBar.cs:
7659         * UpDownBase.cs:
7660         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
7661         use OnPaintInternal. Remove Width/Height and Visible checks in
7662         paint handler, this is done at a higher level now.
7663         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
7664         * PaintEventArgs.cs: Add a handled flag so controls that don't
7665         want anymore painting after OnPaintInternal can make sure OnPaint
7666         isn't called.
7667
7668 2006-04-05  Mike Kestner  <mkestner@novell.com>
7669
7670         * Form.cs: fix the menu WndProc hacks to respect the native enabled
7671         state of the form, so that we don't process events when Modal dialogs
7672         are up. Fixes #77922.
7673
7674 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
7675
7676         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
7677           checking is done.
7678
7679 2006-04-05  Mike Kestner  <mkestner@novell.com>
7680
7681         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
7682
7683 2006-04-05  Mike Kestner  <mkestner@novell.com>
7684
7685         * ListView.cs (HeaderMouseMove): null guarding for the over column
7686         when setting up the drag_to_index.  Fixes #78015.
7687
7688 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
7689
7690         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
7691           in the taskbar. Transient windows seem to accomplish that.
7692
7693 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
7694
7695         * Form.cs:
7696           - Re-enabled CreateParams.X/Y code for FormStartPosition
7697           - Added code for manual placement when creating the Control
7698           - Incomplete patch to treat MDI forms differently when
7699             setting the ClientSizeCore. (Still need to figure out handling
7700             x/y coords there)
7701         * XplatUIX11.cs:
7702           - When we're explicitly setting the X/Y position of a non-Child
7703             window, let the WM know. Metacity really wants this.
7704
7705 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7706
7707         * ThemeNice.cs: Added CPDrawButton
7708
7709 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7710
7711         * ThemeNice.cs: Changed the color for focused buttons and activated
7712           the arrows for small scroll buttons.
7713
7714 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7715
7716         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
7717           anymore. Changed some method modifiers to protected (virtual)
7718         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
7719           changes
7720         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
7721           Updated drawing of menus, buttons and progressbars; added
7722           CPDrawBorder3D 
7723
7724 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7725
7726         * ImageListStreamer.cs: implemented serialization/deserialization
7727         of the images.
7728
7729 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
7730
7731         * ThemeWin32Classic.cs:
7732           - Removed all the DrawFrameControl stuff; CPDrawButton,
7733             CPDrawCheckBox and CPDrawRadioButton are now handled directly
7734             inside the methods
7735           - Updated and corrected the drawing code of CPDrawButton,
7736             CPDrawCheckBox and CPDrawRadioButton to better match ms
7737           - Updated theme checkbox and radiobutton code to use the CP*
7738             methods
7739
7740 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7741
7742         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
7743           bug is fixed
7744
7745 2006-03-31  Jackson Harper  <jackson@ximian.com>
7746
7747         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
7748         sometimes.
7749         * UpDownBase.cs: Don't CreateGraphics manually, use a
7750         Refresh. Ideally we would invalidate the correct areas here.
7751
7752 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7753
7754         * XplatUIX11.cs: 
7755           - We now track the mapping state of windows. If a window (or 
7756             one of it's parents) is not mapped we no longer permit
7757             WM_PAINT messages to be generated since we'd otherwise get 
7758             lots of BadMatch X errors. Jackson did all the work figuring
7759             out the problem.
7760           - Destroying the caret if the window it's contained in is 
7761             destroyed. Can't use regular DestroyCaret method since it
7762             might fall into a drawing function (trying to remove the
7763             caret) and with that generate new BadMatch errors. Again,
7764             Jackson tracked this down.
7765           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
7766             make sure we send the messages to all windows. (The old code
7767             would send the WM_DESTROY to the window, and then all child
7768             windows would be 'gone' because the WM_DESTROY handle lookup
7769             would no longer find the destroyed window)
7770         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
7771         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
7772
7773 2006-03-31  Jackson Harper  <jackson@ximian.com>
7774
7775         * ScrollableControl.cs: Dont recalc if we are not visible.
7776
7777 2006-03-31  Mike Kestner  <mkestner@novell.com>
7778
7779         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
7780         the visibility branch.
7781
7782 2006-03-31  Jackson Harper  <jackson@ximian.com>
7783
7784         * ScrollBar.cs: Cap values when incrementing/decrementing.
7785
7786 2006-03-31  Mike Kestner  <mkestner@novell.com>
7787
7788         * MenuAPI.cs: setup menu.tracker for popup/context menus.
7789         * ToolTip.cs: guard against timer expirations with no active control.
7790         Not sure why it happened.
7791
7792 2006-03-31  Mike Kestner  <mkestner@novell.com>
7793
7794         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
7795         text.
7796         * ToolTip.cs: Position the tooltip based on where the cursor is at
7797         popup time, not at MouseEnter time.  Add a Down state so that we don't
7798         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
7799         positioning offset. Lookup DisplaySize at positioning time, since it
7800         can theoretically change during invocation.
7801         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
7802         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
7803
7804 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7805
7806         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
7807           Fixes behaviour when the Text property of the box is String.Empty
7808
7809 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
7810
7811         * XplatUIX11.cs: Only send mouseleave for our client windows, not
7812           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
7813           a window)
7814
7815 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7816
7817         * FileDialog.cs: Visual enhancement for the popup buttons in 
7818           PopupButtonPanel
7819
7820 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7821
7822         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
7823           code
7824
7825 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
7826
7827         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
7828           highlighted menu items to match ms
7829
7830 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
7831
7832         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
7833
7834 2006-03-30  Mike Kestner  <mkestner@novell.com>
7835
7836         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
7837         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
7838         go active to account for HotLight to Selected transition.
7839         * MenuItem.cs: add internal Selected prop. Fill out the Status
7840         property by calculating it from item info. Add HotLight,
7841         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
7842
7843 2006-03-30  Mike Kestner  <mkestner@novell.com>
7844
7845         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
7846
7847 2006-03-29  Jackson Harper  <jackson@ximian.com>
7848
7849         * Form.cs: Implement TODO.
7850
7851 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
7852
7853         * PrintPreviewDialog.cs: Implemented missing methods and events; still
7854           missing proper dialog setup in the constructor
7855
7856 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
7857
7858         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
7859         * Control.cs:
7860           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
7861           - Fixed ResetBindings and removed TODO
7862           - Added check for cross-thread calls to get_Handle()
7863           - Added Marshaller attribute for set_Font to satisfy class status
7864         * FontDialog.cs: Removed TODOs that seemed implemented
7865         * UpDownBase.cs: Removed unneeded TODO and Fixme
7866         * MessageBox.cs: Implemented support for Default button and removed TODO
7867         * FileDialog.cs: Removed obsolete TODO
7868         * DomainUpDown.cs: Removed obsolete TODO
7869         * ButtonBase.cs: Removed obsolete TODO
7870         * XplatUIWin32.cs: Removed obsolete TODO
7871         * Form.cs:
7872           - Removed obsolete TODO
7873           - Calling CheckAcceptButton when the acceptbutton is changed to allow
7874             internal status updates
7875           - Making sure the active control is selected when the control is created
7876         * CurrencyManager.cs: Removed obsolete TODO
7877
7878 2006-03-29  Mike Kestner  <mkestner@novell.com>
7879
7880         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
7881         of PrintPreviewDialog and RichTextBox.
7882
7883 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7884
7885         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
7886           DarkDark, Light and LightLight colors for a specific color
7887         * ThemeWin32Classic.cs:
7888           - Use Button drawing code to draw RadioButtons and CheckBoxes with
7889             Appearance = Button 
7890           - Make use of the new ResPool helper CPColor
7891           - Draw ProgressBar and StatusBar with correct 3D borders
7892
7893 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7894
7895         * ColorDialog.cs: Return selected color. Fixes bug #77940.
7896
7897 2006-03-28  Mike Kestner  <mkestner@novell.com>
7898
7899         * ListView.cs: fix Icon layout to plan for scrollbar widths when
7900         calculating col/row counts.
7901
7902 2006-03-28  Mike Kestner  <mkestner@novell.com>
7903
7904         * ColumnHeader.cs:
7905         * ListView.cs:
7906         * ListViewItem.cs:
7907         * Menu.cs: 
7908         switch to explicit interface method implementation for some methods
7909         corcompare identifies as inconsistent with MS.
7910
7911 2006-03-28  Mike Kestner  <mkestner@novell.com>
7912
7913         * MainMenu.cs: 
7914         * Menu.cs:
7915         add a few missing methods from the class status output.
7916
7917 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
7918
7919         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
7920           correct.
7921
7922 2006-03-28  Mike Kestner  <mkestner@novell.com>
7923
7924         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
7925
7926 2006-03-27  Mike Kestner  <mkestner@novell.com>
7927
7928         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
7929         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
7930
7931 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
7932
7933         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
7934
7935 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7936
7937         * ThemeWin32Classic.cs:
7938           - GroupBox: Inserted a little gap between the text and the lines
7939             on the right side
7940           - Made the code in CPDrawBorder3D more readable
7941           - Corrected the drawing location of the up and down arrows in 
7942             CPDrawScrollButton
7943
7944 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7945
7946         * ControlPaint.cs: Corrected line widths in DrawBorder for
7947           ButtonBorderStyle Inset and Outset
7948
7949 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7950
7951         * ThemeWin32Classic.cs:
7952           - Rewrote the totally broken CPDrawBorder3D method. That was
7953             one of the main problems for the terrific ThemeWin32Classic
7954             look
7955           - Updated and corrected Button drawing
7956           - Correct the dimensions of the SizeGrip to match ms ones
7957           - Removed a small drawing glitch in DrawComboBoxEditDecorations
7958         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
7959           Border3DStyle.Sunken to match ms.
7960
7961 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7962
7963         * ThemeWin32Classic.cs: First small part of the "de-uglify
7964           ThemeWin32Classic" effort, SizeGrip
7965
7966 2006-03-24  Jackson Harper  <jackson@ximian.com>
7967
7968         * XplatUIX11.cs: Give a max idle time of one second, this matches
7969         MS and forces an Idle event every second when there are no other
7970         events in the queue.
7971
7972 2006-03-24  Mike Kestner  <mkestner@novell.com>
7973
7974         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
7975         * ListView.Item.cs: fix layout issues with null image lists and images
7976         smaller than checkbox size.
7977         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
7978         mode like MS does.  It's weird, but consistent.  ;-)
7979         Fixes #77890.
7980
7981 2006-03-24  Mike Kestner  <mkestner@novell.com>
7982
7983         * ListView.cs: Scroll wheel support for the item control.  Fixes
7984         #77839.
7985
7986 2006-03-23  Jackson Harper  <jackson@ximian.com>
7987
7988         * ScrollableControl.cs: Special case negative sized areas, not
7989         zero.
7990         * MonthCalendar.cs: Save the rect of the clicked date so we can
7991         use it for invalidation.
7992         - Try to cut down on the number of invalidates
7993         - Invalidate the rect the mouse is over and was over when moving
7994         the mouse, so we get the focus box following the cursor.
7995
7996 2006-03-23  Mike Kestner  <mkestner@novell.com>
7997
7998         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
7999         focus rectangle drawing. Fixes #77835.
8000
8001 2006-03-23  Mike Kestner  <mkestner@novell.com>
8002
8003         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8004         the if and else if and reverting back to the original == check on the
8005         None conditional.
8006
8007 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8008
8009         * FontDialog.cs: Update the example panel if the selected index of
8010           the fontListBox changes.
8011
8012 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8013
8014         * FileDialog.cs: Make FileDialog remember which directory it was in
8015           last in the same execution.
8016
8017 2006-03-22  Mike Kestner  <mkestner@novell.com>
8018
8019         * FileDialog.cs: make the DropDownMenu on the toolbar display
8020         RadioChecks since they are mutually exclusive and that's what MS does.
8021
8022 2006-03-22  Mike Kestner  <mkestner@novell.com>
8023
8024         * Theme.cs: add Color param to CPDrawMenuGlyph.
8025         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8026         checks and radio marks and arrows are visible on highlighted items.
8027         * ControlPaint.cs: update to use new Theme signature.
8028
8029 2006-03-22  Mike Kestner  <mkestner@novell.com>
8030
8031         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8032         is active. Fixes #77870.
8033
8034 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8035
8036         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8037           to be focused/selected after startup
8038
8039 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8040
8041         * ColorDialog.cs: 
8042           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8043             CustomColors and ShowHelp properties
8044           - Some internal rewrites to get better results when using the
8045             ColorMatrix
8046
8047 2006-03-22  Mike Kestner  <mkestner@novell.com>
8048
8049         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8050         HoverSelection.  Fixes #77836.
8051
8052 2006-03-22  Mike Kestner  <mkestner@novell.com>
8053
8054         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8055         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8056         1, not 0.  Update ButtonSize based on a pixel count of the win32
8057         control.  Adjust the toolbar size/location for new button size.
8058
8059 2006-03-22  Jackson Harper  <jackson@ximian.com>
8060
8061         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8062         true.
8063         * ScrollBar.cs: When doing increments and decrements we need to
8064         set the Value property so that ValueChanged gets raised. A
8065         possible optimization here would be to make an internal SetValue
8066         that doesn't invalidate immediately.
8067         * ToolTip.cs: Tooltips get added to their container (when
8068         supplied) so they get disposed when the container is disposed.
8069         - Don't create tooltips for String.Empty. This prevents all these
8070         little 2-3 pixel windows from showing up when running nunit-gui
8071         and driving me mad.
8072         * Form.cs: Don't set topmost when setting the owner if the handles
8073         haven't been created yet.  The topmost set will happen when the
8074         handles are created.
8075
8076 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8077
8078         * XplatUIX11.cs:
8079           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8080           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8081             visible (to allow them to recalculate their sizes)
8082
8083 2006-03-21  Mike Kestner  <mkestner@novell.com>
8084
8085         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8086         methods. Removed a ton of redundant code.  Still not really happy with
8087         the border rendering, but I think that's mainly because of the
8088         ControlDarkDark being black instead of a dark grey. Depending on how 
8089         close we want to be, we might want to revisit those color choices.
8090         Among the new features added during the refactor were DropDownArrow
8091         pressed rendering, Disabled image rendering.  Proper flat appearance
8092         boundary rendering.  Removed the Divider and Wrapping dividers since I
8093         can't figure out any combination of themes and conditions to make the
8094         MS control draw a horizontal line on a toolbar despite what the
8095         Divider property docs indicate.
8096         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8097         conditions and incorrect layout.  Updated to coding standard.
8098         * ToolBarButton.cs: refactored layout and positioning code from
8099         ToolBar to here.  Invalidate wherever possible instead of forcing
8100         redraws of the whole toolbar. 
8101         (Known remaining issues: explicit ButtonSize smaller than provided
8102         images.)
8103
8104 2006-03-21  Mike Kestner  <mkestner@novell.com>
8105
8106         * ContextMenu.cs (Show): use the position parameter instead of just
8107         showing at the MousePosition.
8108
8109 2006-03-21  Jackson Harper  <jackson@ximian.com>
8110
8111         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8112         control handle this.
8113         * TreeNodeCollection.cs: If we are clearing the root node we need
8114         to reset top_node so calcs can still happen.
8115         * ThemeWin32Classic.cs: This is a Flags so we need to check
8116         properly.
8117         
8118 2006-03-21  Jackson Harper  <jackson@ximian.com>
8119
8120         * DataGrid.cs: Create columns when the binding context has been
8121         changed.
8122         * X11Structs.cs: Keysyms are uints.
8123         - Add size to fix build.
8124
8125 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8126
8127         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8128           XplatUIOSX.cs: 
8129           - Added ResetMouseHover method to allow controls to retrigger
8130             hovering if they need it more than once
8131           - Implemented MouseHoverTime and MouseHoverSize properties
8132         * Timer.cs: Start() must reset the interval
8133         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8134           properties
8135
8136 2006-03-21  Jackson Harper  <jackson@ximian.com>
8137
8138         * X11Keyboard.cs: improved layout detection. Move the nonchar
8139         tables into this file.
8140         * KeyboardLayouts.cs: Move the tables into resource files.
8141
8142 2006-03-21  Mike Kestner  <mkestner@novell.com>
8143
8144         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8145
8146 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8147
8148         * Mime.cs: Various speed optimizations. Looking up mime types
8149           is now 2 times faster than before
8150
8151 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8152
8153         * CreateParams.cs: Added internal menu field
8154         * Control.cs: 
8155           - Switched call order for UpdateBounds; now we always call
8156             the one that also takes ClientSize, and we're calculating the 
8157             client size via driver method in the others. The previous
8158             method of tracking client size by difference wasn't working
8159             for forms where even the starting client size wouldn't match
8160             the overall form size (due to borders) (Part of fix for #77729)
8161           - CreateParams(): Do not use parent.Handle unless the handle is
8162             already created. Causes havoc with Nexxia and throws off our
8163             creation of controls
8164         * XplatUIX11.cs:
8165           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8166           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8167             method (consolidates code)
8168           - Changed RequestNCRecalc to use new PerformNCCalc method
8169           - Added calls to RequestNCRecalc when menus and borders are changed
8170             to allow app to set NC size. (Part of fix for #77729) This matches
8171             when MS send a WM_NCRECALC on Win32 windows.
8172           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8173             (Part of fix for #77729). This matches what MS does, they also
8174             send that message when the form is made visible.
8175           - XException.GetMessage: Improved usability of X errors by including
8176             a translation of the window into Hwnd and Control class
8177           - Improved debug info for window creation, reparenting and destruction
8178           - Created helper method WindowIsMapped() [Currently not used]
8179         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8180         * Form.cs:
8181           - CreateParams: Now setting our menu on the new internal menu field
8182           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8183             avoid calculating the same property twice
8184         * Hwnd.cs:
8185           - Improved usability of ToString() for debugging purposes
8186           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8187             determine the height of the menu, instead of just the font. This
8188             required to also create a graphics context and to keep a bmp 
8189             around (for performance reasons)
8190
8191 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8192
8193         * MenuAPI.cs: Added OnMouseUp method
8194         * Form.cs:
8195           - Now remembering the requested client size, avoids size errors
8196           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8197             instead of base if the menu is active. This is required due to
8198             control now capturing and releasing on down/up and it would
8199             prematurely release our menu capture
8200
8201 2006-03-17  Jackson Harper  <jackson@ximian.com>
8202
8203         * KeyboardLayouts.cs: Add the czech layouts.
8204
8205 2006-03-16  Jackson Harper  <jackson@ximian.com>
8206
8207         * Control.cs: Use the viewport space when sizing not the controls
8208         client size, so things like ScrollableControl that effect the
8209         viewport size (when scrollbars are added) are computed correctly.
8210         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8211         of ManagerEntrys.
8212         - Handle creating BindingManagers for null data sources.
8213         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8214         source, otherwise when rows are added they are added to the 'fake'
8215         datasource and we will crash when trying to set the position in
8216         those rows.
8217         - Use Implicit scrollbars on the datagrid so they arent
8218         selectable.
8219         
8220 2006-03-16  Jackson Harper  <jackson@ximian.com>
8221
8222         * Binding.cs:
8223         * InternalWindowManager.cs:
8224         * MdiWindowManager.cs:
8225         * X11Keyboard.cs: I really want Mike to love me again (fix
8226         compiler warnings).
8227
8228 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
8229
8230         * DataGrid.cs:
8231           - OnMouseDown: Switch to editing mode when clicking on the cell
8232                          even if we're clicking on the cell that's currently 
8233                          selected
8234           - ProcessGridKey: Left/Right now wrap like MS.Net does
8235           - ProcessGridKey: Tab now knows to add a new row when tab is
8236                             pressed in the cell of the last column of the 
8237                             last row
8238           - ProcessGridKey: Enter now adds another row  if pressed in the last
8239                             row and selectes the new row, same column cell
8240           - ProcessGridKey: Home/End navigate columns, not rows, like 
8241                             originally implemented
8242           - Broke ProcessKeyPreview code out into an extra Internal method
8243             so it can be called from the edit code
8244         * DataGridTextBox.cs (ProcessKeyMessage):
8245           - Switched to accept Tab keypresses
8246           - Added F2 handling to allow jumping to the end of the edited cell
8247           - Added logic to allow moving caret left/right inside edited cell
8248             and making the edited cell jump when the caret hits cell borders
8249           - Tab and Enter are now passed to the datagrid after being handled
8250         * TextBoxBase.cs:
8251           - Removed capture code now that Control handles it
8252           - set_SelectionStart now ensures caret is visible
8253
8254 2006-03-16  Jackson Harper  <jackson@ximian.com>
8255
8256         * TrackBar.cs: Debackwards the increment/decrement for handling
8257         mouse clicks on the bar with vertical trackbars.
8258         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
8259         bottom to match MS.
8260
8261 2006-03-16  Mike Kestner  <mkestner@novell.com>
8262
8263         * ListView.cs: make shift/ctrl keyboard and mouse selection 
8264         consistent with the MS control. Fix a bug in
8265         SelectedListViewItemCollection.Clear that was pissing me off for the
8266         better part of a day because the collection was being altered
8267         underneath us as we walked the list.
8268
8269 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
8270
8271         * Control.cs: Not sure how we could miss this so long, but it seems
8272           that MS.Net has Capture set all the way from before calling 
8273           OnMouseDown through sending the mouse events until after
8274           OnMouseUp. This will fix DataGrid's selection being set to end
8275           at the location of the MouseUp.
8276
8277 2006-03-15  Jackson Harper  <jackson@ximian.com>
8278
8279         * BindingContext.cs: Check the binding after its added so that it
8280           can initialize the binding managers and hookup to events.
8281         * Binding.cs: Data members seem to sometimes include rows/cols in
8282           the format Row.Column we now take this into account.
8283           - Hookup to the position changed event so we can update the
8284           control when the position has changed in the data set.
8285         * CurrencyManager.cs: Take into account the row/col naming
8286           convention when creating dataset tables.
8287         * BindingContext.cs: Using a newer better way of storing
8288           datasource/datamember pairs.  Hopefully this better matches MS for
8289           looking up binding managers.
8290
8291
8292 2006-03-15  Jackson Harper  <jackson@ximian.com>
8293
8294         * BindingContext.cs: The currency manager needs the data member
8295         name, if the member is a data set we use the name to find the
8296         correct table.
8297         * CurrencyManager.cs: When creating the list prefer an IList over
8298         an IListSource.
8299         - Attempt to create a DataTable from a DataSet (TODO: might need
8300         some better error checking here, although MS doesn't seem to have much)
8301         - If we have a DataTable create a view and use it as our list.
8302
8303 2006-03-15  Mike Kestner  <mkestner@novell.com>
8304
8305         * ListView.cs: keep a matrix of the icon mode layout to facilitate
8306         keyboard navigation. Support Up/Down/Left/Right selection correctly
8307         for all 4 View modes.
8308         * ListViewItem.cs: add internal row/col fields for icon layouts.
8309
8310 2006-03-15  Jackson Harper  <jackson@ximian.com>
8311
8312         * TabControl.cs: Redraw the tabs when we resize so their newly
8313         calculated sizes are drawn on screen.
8314         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
8315         composite characters.
8316         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
8317         - filter events so that composite characters can be created
8318         patches by peter
8319         * X11Structs.cs: Add XIMProperties enum.
8320
8321 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8322
8323         * Control.cs (BringToFront, SendToBack): Don't use window or handle
8324           unless it's created
8325
8326 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8327
8328         * Control.cs (PerformLayout): We don't need to consider visiblity
8329           for anchoring, only for docking. This fixes 'whacky' alignment
8330           in listbox and other controls that use implicit scrollbars after
8331           the previous PerformLayout patch
8332         * ListBox.cs: Switched to use implicit scrollbars
8333           
8334 2006-03-14  Mike Kestner  <mkestner@novell.com>
8335
8336         * ToolBar.cs: 
8337         * VScrollBar.cs:
8338         - chain up the "new event" overrides to base and use
8339         OnEvent to raise them.  Part of fix for bug #76509.
8340
8341 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
8342
8343         * FileDialog.cs: Do not select an item in the parent directory
8344           on backspace
8345
8346 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
8347
8348         * Control.cs (PerformLayout): It would seem that we considered
8349           invisible windows for our layout. Not quite the right thing
8350           to do. Now we don't any longer, thereby fixing bug #76889.
8351
8352 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
8353
8354         * Control.cs (CanFocus): I goofed. A control can have focus 
8355           even though it's not selectable. Made it match MS docs.
8356
8357 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8358
8359         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
8360           center by default (fixes #76895)
8361         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
8362           all uses of Border3DSides.All with the explicit ORd together
8363           Left|Right|Top|Bottom because I assume that nobody was aware 
8364           that All also implies a center fill. Most places I checked had
8365           a fill right above.
8366         * ProgressBarStyle.cs: Added
8367
8368 2006-03-13  Mike Kestner  <mkestner@novell.com>
8369
8370         * ListView.cs: fix breakage in drag shadow header positioning 
8371         from Peter's csc compilation fix.
8372
8373 2006-03-13  Mike Kestner  <mkestner@novell.com>
8374
8375         * ListView.cs: fix NRE produced by backspacing twice in a focused
8376         FileDialog.
8377
8378 2006-03-13  Mike Kestner  <mkestner@novell.com>
8379
8380         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
8381
8382 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8383
8384         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
8385           be changed
8386         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
8387           the allowed size before making programmatic size changes
8388
8389 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
8390
8391         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
8392           set, metacity is broken and will still use the emty sizes in 
8393           the struct. (Fix for #77089)
8394
8395 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
8396
8397         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
8398           WindowExStyles and marked both enums as Flags
8399         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
8400           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
8401           to match WindowStyles split
8402         * XplatUIX11.cs:
8403           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
8404           - Updated to match WindowStyles split
8405         * XplatUIWin32.cs:
8406           - Fixed FosterParent creation, was using ExStyle on the Style field
8407             (This should help with Popup focus issues)
8408           - Updated to match WindowStyles split
8409
8410 2006-03-13  Jackson Harper  <jackson@ximian.com>
8411
8412         * MdiWindowManager.cs: Use the system menu height. Fixes some
8413         strange sizing issues.
8414
8415 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8416
8417         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
8418         * TextBoxBase.cs:
8419           - Scroll to caret after inserting text (#77672)
8420           - Make scroll range one pixel higher, fixes off-by-one error (and
8421             makes underlines visible on the last line)
8422
8423 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
8424
8425         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
8426           the keyboard state from being stuck with keys in 'pressed' state when
8427           focus is switched away via keyboard
8428         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
8429           reset the keyboard if no X11 KeyUp events are expected to come
8430         * X11Structs.cs: Switched type of Visible to bool to match driver
8431
8432 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
8433
8434         * TextControl.cs:
8435           - Switched caret to be just 1 pixel wide, matches MS and looks less
8436             clunky
8437           - Moved caret display 1 pixel down from the top of the control
8438             to improve view
8439           - InsertCharAtCharet: Update the selection start if moving the caret
8440             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
8441           - No longer always creating the caret when the caret methods are
8442             called. Only the actual ShowCaret/HideCaret will do that now
8443           - Only setting caret visible if the owner control has focus
8444           - UpdateView: Added invalidation-shortcut logic for center and right 
8445             aligned text. Previously we'd update all according to the left
8446             logic which caused drawing errors. Also fixed height of invalidated
8447             areas, now properly invalidating the whole area (was off-by-one)
8448           - owner_HandleCreated: Always generate the document when the
8449             handle is created; this ensures that 
8450         * TextBoxBase.cs:
8451           - Fixed situation where caret would disappear under the right
8452             window border, also improved scrolling behaviour on left-
8453             aligned textboxes
8454           - Fixed right-aligned textboxes to have a border to the
8455             right instead of the caret being under the right border
8456         * XplatUIX11.cs:
8457           - Switched from 'nested' to simple visible/not visible tracking 
8458             for caret (part of fix for #77671)
8459           - No longer passing through translated FocusIn/FocusOut messages
8460             since we were notifying too often and the wrong windows. Instead
8461             we just notify our focussed window of receiving or loosing focus
8462         * XplatUIWin32.cs: Switched from 'nested' show/hide 
8463           counting for caret to simple visible yes/no behaviour (part of 
8464           fix for #77671)
8465
8466 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8467
8468         * Mime.cs: Remove debug code...
8469
8470 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
8471
8472         * MimeGenerated.cs: Removed
8473         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
8474           and subclasses) from /usr/(local/)share/mime and
8475           $HOME/.local/share/mime.
8476
8477 2006-03-10  Jackson Harper  <jackson@ximian.com>
8478
8479         * MdiWindowManager.cs: Recalc the NC area when a window is
8480         maximized/restored so that the menu area is drawn on forms that
8481         don't have a menu.
8482
8483 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8484
8485         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8486           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8487           us to force a WM_NCCALCRESIZE message being sent. This is needed
8488           for MDI maximizing.
8489
8490 2006-03-10  Jackson Harper  <jackson@ximian.com>
8491
8492         * Form.cs: We need to use the ActiveMenu when calculating menu
8493         height.
8494         - Fix nullref when the window manager hasn't been created yet.
8495         * Control.cs: Fix nullref when we try to bring a control to the
8496         front that has no parent.
8497         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8498         height.
8499         - Add a dummy item to the maximized menu so it always has the
8500         correct height. Otherwise when there are no menus we don't get our
8501         icon and buttons.
8502         
8503
8504 2006-03-10  Jackson Harper  <jackson@ximian.com>
8505
8506         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8507         stuff.
8508         * Form.cs: Make the window_state internal so the window managers
8509         can track it.
8510         - When an MDI child is maximized let its window manager create the
8511         main menu (so it can add its icon).
8512         - Notify the window managers of state changes
8513         - Let the window manager paint its buttons and handle button
8514         clicks on the menu when it is maximized.
8515         * InternalWindowManager.cs: Move the prev_bounds into the mdi
8516         window manager, since tool windows don't use it, only mdi windows.
8517         - Tell the main form that we don't want it to handle NCPAINT
8518         itself to avoid extra painting.
8519         - Handle clicks on a maximized windows menu.
8520         - Handle window state changes
8521         - Handle minimize/maximize clicks correctly by setting the window state.
8522         * MdiWindowManager.cs: Add an icon menu that (the menu you get
8523         when clicking on the forms icon).
8524         - New method to create a forms maximized menu. This is its normal
8525         menu + an icon.
8526         - Handle window state changes.
8527         - Handle sizing of maximized windows.  Maximized windows are just
8528         drawn bigger then the parent visible area. All controls are still
8529         there, they are just outside the visible area (this matches windows).
8530         * MdiClient.cs: No scrollbars when a child window is maximized.
8531         - Let the children windows figure out how big they should be when
8532         sizing maximized windows.
8533         - Implement a version of ArrangeIconicWindows somewhat similar to
8534         Windows version.  There are some little differences, but I don't
8535         think any app will rely on the layout of minimized mdi windows.
8536
8537 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8538
8539         * Padding.cs: Several fixes to allow compiling with csc 2.0
8540
8541 2006-03-09  Jackson Harper  <jackson@ximian.com>
8542
8543         * Menu.cs:
8544         * MenuItem.cs: Cheap hack so we can add items to the list without
8545         the events being raised.  This allows adding mdi items during
8546         drawing. TODO: Should probably find a better time to add the items.
8547
8548 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8549
8550         * ThemeWin32Classic.cs:
8551           - CheckBox_DrawText: Added logic to not wrap if not enough space
8552             is available (Fix for bug #77727)
8553           - RadioButton_DrawText: Added logic not to wrap if not enough
8554             space is available (Fix for bug #77727). Also removed some
8555             duplicate code, DrawString always drawing the regular text
8556             before hitting the if statement.
8557
8558 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
8559
8560         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
8561
8562 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8563
8564         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
8565         * ContainerControl.cs: Partial implementation of some 2.0 scaling
8566           methods. Moved the new 2.0 properties into alphabetical order with
8567           other properties and added MonoTODO tags
8568
8569 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8570
8571         * AutoScaleMode.cs: Added. Fix build.
8572
8573 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8574
8575         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8576           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
8577           and was requiring premature handle creation for calls from above
8578         * Form.cs, Control.cs: Removed handle arguments from calls to
8579           CalculateClientRect()
8580
8581 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8582
8583         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
8584           drag_column.column_rect is MarshalByRef and can't be used that way
8585
8586 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8587
8588         * AxHost.cs: Added deserialization constructor for 
8589           AxHost+State (fixes 77743)
8590
8591 2006-03-09  Mike Kestner  <mkestner@novell.com>
8592
8593         * ListView.cs: 
8594         - Added column drag reordering for details view.
8595         - fixed behavior when mouse is dragged off column and
8596         AllowColumnReorder is false.
8597         * ColumnHeader.cs: clone the format too in Clone.
8598         * Theme.cs: add DrawListViewHeaderDragDetails method.
8599         * ThemeWin32Classic.cs:
8600         - impl new method for drawing drag column shadows and targets.
8601         - support column offset for details mode in DrawListViewItem.
8602
8603 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8604
8605         * TextControl.cs: Reset the char_count when the document is cleared
8606           (Fixes bug reported on mono-winforms mailing list)
8607
8608 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8609
8610         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
8611           of calling base we simply process the key ourselves, since both
8612           DefWindowProc and the handled method would set m.Result. 
8613           (Fixes #77732)
8614
8615 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8616
8617         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
8618           method also moves the window; instead implemented a copy of
8619           Control.ScaleCore (Part of fix for #77456)
8620         * TextBoxBase.cs: 
8621           - Created new CreateGraphicsInternal method to allow providing
8622             a graphics context when no handle is created without triggering
8623             handle creation. (Part of fix for #77456)
8624           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8625         * TextControl.cs: 
8626           - Switched Constructor to require TextBoxBase instead of Control (to
8627             allow uncast access to CreateGraphicsInternal)
8628           - Safeguarded use of owner.Handle property. No longer accessing it
8629             unless the handle is already created.
8630           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8631           - Now triggering a recalc when owning control becomes visible
8632         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
8633           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
8634           premature handle creation (Part of fix for #77456)
8635         * Control.cs:
8636           - We now only destroy our double-buffering buffers when the
8637             control is resized or disposed, but not when visibility
8638             changes. (The code even re-created them twice every time)
8639           - Now requiring a redraw of the buffer on visibility changes
8640             (fixes bug 77654 part 2)
8641           - Not passing OnParentVisibleChanged up unless the control
8642             is visible
8643           - CanFocus: Fixed to match MS documentation
8644           - Focus: Fixed to return actual focus state and to check if
8645             setting focus is legal before setting it
8646
8647 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
8648
8649         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
8650           when to draw focus rectangle by looking at parent focus and
8651           selected state instead. This fixes TabPages on Linux sometimes
8652           having none or multiple focus rectangles.
8653         * XplatUIX11.cs (SetFocus): 
8654           - Don't set the focus if the same window already has focus
8655           - Use SendMessage instead of PostMessage (like it's Win32
8656             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
8657             to match MS behaviour
8658         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
8659           are not selectable.
8660
8661 2006-03-07  Jackson Harper  <jackson@ximian.com>
8662
8663         * PictureBox.cs: Revert line I accidently committed last week.
8664
8665 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
8666
8667         * Control.cs: 
8668           - Added new IsRecreating and ParentIsRecreating properties to
8669             allow testing if RecreateHandle has been called on ourselves
8670             or one of our parents
8671           - WndProc(WM_DESTROY): If our control handle is being recreated
8672             we immediately need to create the handle when receiving the
8673             destroy, that way our child windows find a valid parent handle
8674             when they themselves are being recreated upon WM_DESTROY receipt
8675             (fix for bug #77654 part 1)
8676         * XplatUIX11.cs:
8677           - DestroyWindow: WM_DESTROY must be sent to our own window before
8678             notifying any child windows. MS documents that child windows
8679             are still valid when WM_DESTROY is received. (Control now relies on
8680             this behaviour)
8681           - Added some fine-grain debug options
8682
8683 2006-03-06  Jackson Harper  <jackson@ximian.com>
8684
8685         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
8686         box and base calculations off this.
8687         * MdiChildContext.cs:
8688         * MdiWindowManager.cs: Don't need to ensure scrollbars here
8689         anymore.
8690         
8691 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
8692
8693         * Splitter.cs: In situations where the affected control is added
8694           to the parent's control list after the splitter, we would not
8695           populate affected. Now we try populating it on mousedown, if
8696           it's not already set, and force it to be re-set whenever our
8697           parent changes.
8698
8699 2006-03-03  Matt Hargett  <matt@use.net>
8700
8701         * Control.cs: implement Control.Padding
8702         * Padding.cs: -Padding.All returns -1 when constructing with the
8703         implicit default ctor
8704         -Padding.ToString() matches MS.NET
8705         * ContainerControl.cs: implement
8706         ContainerControl.AutoScaleDimensions
8707         * ListControl.cs: implement ListControl.FormattingEnabled
8708         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
8709         * ButtonBase.cs:
8710         * TabPage.cs: Implement UseVisualStyleBackColor.
8711         * PictureBox.cs: Implement PictureBox.InitialImage.
8712
8713 2006-03-03  Mike Kestner  <mkestner@novell.com>
8714
8715         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
8716         event declarations to proxy to base event.
8717         * ListViewItem.cs: update to use ItemControl.
8718         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
8719         * ThemeWin32Classic.cs: update to new ListView theme API and fix
8720         column header label rendering for 0 width columns.
8721
8722 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
8723
8724         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
8725           that causes the control to be created. Fixes #77476.
8726
8727 2006-03-02  Jackson Harper  <jackson@ximian.com>
8728
8729         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
8730         expose_pending.
8731
8732 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
8733
8734         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
8735           passed in for the EventArgs (fixes #77690)
8736
8737 2006-03-01  Jackson Harper  <jackson@ximian.com>
8738
8739         * ScrollBar.cs: Refresh afterbeing resized.
8740
8741 2006-02-28  Mike Kestner  <mkestner@novell.com>
8742
8743         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
8744         Clean up a tracker compile warning.
8745         * MenuItem.cs: add internal PerformPopup method.
8746         [Fixes #77457]
8747
8748 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8749
8750         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
8751           implicit expose) when the text is set to null
8752
8753 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
8754
8755         * RichTextBox.cs (FlushText): When newline is true, we always
8756           need to split the line, even if no text is on it and we may
8757           never eat newlines. (Fixes #77669)
8758
8759 2006-02-28  Mike Kestner  <mkestner@novell.com>
8760
8761         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
8762         and set Selected instead.
8763         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
8764         collections.
8765
8766 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8767
8768         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
8769
8770 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
8771
8772         * FontDialog.cs:
8773           - Got rid of the panel. All controls are now directly added to
8774             the dialog form
8775           - It is now possible to set a font with the Font property
8776           - MinSize and MaxSize property do now what they should
8777           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
8778           - Searching and selecting a font with the font textbox works now,
8779             the same applies to the style and size textbox
8780           - Draw the correct 3D border in the example panel
8781           - Fixed a little mem leak (unused fonts didn't get disposed)
8782           - Many other internal updates/rewrites...
8783           - Fix typo
8784
8785 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8786
8787         * TextControl.cs: 
8788           - InsertRTFFromStream: Added 'number of characters inserted' argument
8789           - set_SelectedRTF: Now using the number of characters to calculate
8790             the new location for the selection and cursor (x/y cannot be used
8791             due to potentially already wrapped text)
8792
8793 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
8794
8795         * TextControl.cs: Added property and implemented means to allow 
8796           disabling recalculation of a document (can be used to speed up
8797           multiple inserts and is needed to make RTF inserts predictable, see
8798           bug #77659)
8799         * RichTextBox.cs: Using the new NoRecalc property of Document to
8800           keep x/y insert locations predictable. Also makes it faster inserting
8801           large chunks of RTF
8802
8803 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8804
8805         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
8806           it's easier for a child control to handle the other messages without
8807           having to duplicate the special functionality
8808         * TextBoxBase.cs
8809           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
8810             code to handle processing the key ourselves, in order to get 
8811             access to the result of KeyEventArgs.Handled. We now only call 
8812             ProcessKey if they key hasn't been handled already. Fixes #77526.
8813           - set_Text: If null or empty string is given, just clear the 
8814             document. Fixes part of #77526
8815
8816 2006-02-27  Jackson Harper  <jackson@ximian.com>
8817
8818         * SizeGrip.cs: Paint the background color before painting the grip
8819         so things look right.
8820         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
8821
8822 2006-02-27  Mike Kestner  <mkestner@novell.com>
8823
8824         * ListView.cs:
8825           - Restructure layout and invalidation model to remove a ton of
8826           flicker from the control and speed up performance in general.
8827           - Add manual column resize, flickers like crazy, but I already have
8828           some ideas on how I'll fix that. (#76822)
8829           - Merge the three Icon-based views into a single layout method.
8830           - Move item selection interaction logic from the item since 
8831           interaction with the collections is more appropriate to the view.
8832           - Deselection on non-item clicks.
8833         * ListViewItem.cs:
8834           - Encapsulate most of the layout. Add some internal props to trigger
8835           layout.  Move to a model where Items invalidate themselves instead
8836           of just invalidating the whole control every time something changes.
8837           - Invalidate on Text/Caption changes.
8838           - switch to an offset based layout model to avoid having to absolute
8839           position every element on item moves.
8840           - correct checkbox layout to conform to MS layout.
8841         * ThemeWin32Classic.cs:
8842           - refactor some column header drawing code.
8843           - fix string justification for column headers (#76821)
8844           - make SmallIcon labels top justified for compat with MS impl.
8845         * ThemeClearlooks.cs:
8846           - adjust to new ListViewItem internal checkbox bounds api.
8847
8848 2006-02-27  Jackson Harper  <jackson@ximian.com>
8849
8850         * Control.cs:  Change where implicit controls fall in the zorder.
8851         They are now on top of all children.
8852         - Synced AddImplicit code with Add
8853         - Removed unused enumerator.
8854         * SizeGrip.cs: Remove the TODO as its been TODONE.
8855
8856 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
8857
8858         * TextControl.cs(Insert): Combine the last lines unless the insertion
8859           string ends with \n\n, otherwise we leave one line too many (Fixes
8860           something I noticed with the testapp for #77526; the bug itself was
8861           already fixed in the previous checkin)
8862
8863 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
8864
8865         * RichTextBox.cs:
8866           - SelectionColor and SelectionFont methods no longer set absolute
8867             styles. Instead, the keep font or color respectively (This 
8868             resolves a long-standing FIXME in the code)
8869           - When flushing RTF text, the insert code now considers text trailing
8870             behind the insertion point (Fixes the bug where when replacing
8871             the selected text via SelectedRTF the remainder of the line behind 
8872             the selection would stay on the first insertion line)
8873         * TextBoxBase.cs:
8874           - AppendText now updates the selection points after inserting text
8875           - AppendText now ensures that the last tag (sometimes 0-length) of
8876             the document is used for the style information (Fixes part of 
8877             bug #77220)
8878         * TextControl.cs:
8879           - Created new FontDefiniton class to allow describing partial style
8880             changes
8881           - StreamLine() now takes a lines argument, to allow it to decide
8882             whether an encountered zero-length tag is the last in the document
8883             (which must be kept to not loose the font/color contained in it,
8884             for later appends)
8885           - Created Combine() and Split() methods for Marker structs, to 
8886             support marker updates due to reformatted documents (soft line
8887             wraps)
8888           - Implemented Document.CaretTag setter
8889           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
8890             of the last line (Not the cause, but also exposed by bug #77220)
8891           - Added LineTag argument to InsertString method, to allow callers
8892             to force a certain tag to be used (required to force use of the
8893             trailing zero-length tag of a document)
8894           - Now updating markers in Combine(), to avoid stale tag markers
8895           - Added some method descriptions to aid maintenance
8896           - Implemented new FormatText concept, allowing additive/subtractive
8897             formatting by only specifying the components that are to be 
8898             changed. This was needed for resolving the RTB.SelectedColor/
8899             RTB.SelectedFont fixmes
8900           - Added Break() support method to allow breaking up linetags (used
8901             for partial formatting)
8902           - Added GenerateTextFormat() method. It is used for partial 
8903             formatting and allows to generate a full font/color from given
8904             attributes and an existing tag.
8905
8906 2006-02-26  Jackson Harper  <jackson@ximian.com>
8907
8908         * XplatUIX11.cs:  Use the correct caption height.
8909         - Translate hittest coordinates to screen coords to match MS.
8910         * XplatUIWin32.cs: When we create MDI windows we need to reset
8911         some of the style flags, so we get a nice blank window, and can
8912         draw all the decorations ourselves.
8913         - Set a clipping rectangle on the non client paint event, the
8914         window manager drawing code needs one.
8915         * Form.cs: The window manager needs to know when the window state
8916         has been updated.
8917         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
8918         don't need to factor in border and title sizes in these
8919         methods. TODO: Remove the args and fix the call points.
8920         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
8921         properly.
8922         - Let the driver set the cursors.
8923         - Improve active window handling
8924         - Correct sizes for title bars and buttons.
8925         - Match MS drawing better
8926         * MdiWindowManager.cs: We don't need to handle border style
8927         updates specially anymore.
8928         - Check for scrollbars when windows are done moving
8929         - Handle Active properly.
8930         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
8931         correctly. I am spewing the exception though, so we don't hide the
8932         bugs.
8933         
8934 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
8935
8936         * DataGridViewRowPostPaintEventArgs.cs,
8937           DataGridViewCellPaintingEventArgs.cs,
8938           DataGridViewRowCollection.cs,
8939           DataGridViewRowPrePaintEventArgs.cs,
8940           DataGridViewCell.cs: Clear a few warnings and implement a few
8941           exceptions that should be thrown.
8942
8943 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8944
8945         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
8946           'inheriting' our parent's (non-default) cursor. (Part of
8947            the fix for #77479)
8948
8949 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
8950
8951         * XplatUIX11.cs: Fixed cast to make csc happy
8952
8953 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8954
8955         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
8956           it's for the client area (part of fix for #77479 and needed
8957           for MDI window cursor handling)
8958         * XplatUIX11.cs
8959           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
8960             the appropriate default cursors and also passing the message
8961             up the parent chain 
8962           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
8963             for non-client areas
8964
8965 2006-02-15  Jackson Harper  <jackson@ximian.com>
8966
8967         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
8968         is a real MDI window
8969
8970 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
8971
8972         * X11DesktopColors.cs: Instead of checking the desktop session
8973           string for "KDE" check if it starts with "KDE"
8974
8975 2006-02-10  Jackson Harper  <jackson@ximian.com>
8976
8977         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
8978         systems).
8979
8980 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
8981
8982         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
8983           errors
8984         * ColorDialog.cs:
8985           - Got rid of the panel. All controls are now directly added to
8986             the dialog form
8987           - Changed to mono coding style
8988
8989 2006-02-10  Jackson Harper  <jackson@ximian.com>
8990
8991         * InternalWindowManager.cs: We don't need the set visibility to
8992         false hack anymore now that peter has written beautiful shutdown
8993         code.
8994
8995 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
8996
8997         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
8998           where already explicitly destroyed
8999
9000 2006-02-10  Jackson Harper  <jackson@ximian.com>
9001
9002         * MdiClient.cs: Handle the case where windows are too high or to
9003         the left and we need scrollbars.
9004
9005 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9006
9007         * MimeIcon.cs: Added some icons
9008         * FileDialog.cs:
9009           - Fixed bug #77477
9010           - Got rid of the panel. All controls are now directly added to
9011             the dialog form
9012           - Changed to mono coding style
9013           - On Linux "My Computer" and "My Network" will now show some
9014             more usefull information. A new class, MasterMount, gathers
9015             this information from /proc/mount. Updated MWFFileView to make
9016             use of this information
9017           - Fixed a bug that caused FileDialog to crash when
9018             ".recently_used" file had a zero size
9019           - FilterIndex does now what it should
9020           - Some Refactoring
9021         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9022             FileDialog changes
9023
9024 2006-02-09  Jackson Harper  <jackson@ximian.com>
9025
9026         * ComboBox.cs: Don't touch if null.
9027
9028 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9029
9030         * Cursor.cs: 64bit safeness fix
9031         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9032
9033 2006-02-09  Jackson Harper  <jackson@ximian.com>
9034
9035         * Form.cs: If a form is made into an MDI form update the styles so
9036         all the props can get set correctly.
9037         - Kill the mdi_container when we dont need it anymore.
9038         * InternalWindowManager.cs: Add missing NOT
9039
9040 2006-02-08  Jackson Harper  <jackson@ximian.com>
9041
9042         * InternalWindowManager.cs: Respek clipping when drawing MDi
9043         decorations.
9044
9045 2006-02-08  Jackson Harper  <jackson@ximian.com>
9046
9047         * Hwnd.cs: Add bits to track non client expose events.
9048         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9049         gives us a proper invalid rect and will allow for some nice
9050         optimizations with NC client drawing
9051         - MDI windows are children windows, so move their style handling
9052         into the child window block.
9053         * InternalWindowManager.cs: Remove a state reset that was
9054         getting invoked at the wrong time. Fixes managed windows getting
9055         into a 'stuck' captured state.
9056
9057 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9058
9059         * TextControl.cs (Document.ctor): Now initializing 
9060           selection_anchor. Fixes #77493
9061
9062 2006-02-07  Jackson Harper  <jackson@ximian.com>
9063
9064         * TrackBar.cs: The increment/decrements were backwards.
9065
9066 2006-02-07  Mike Kestner  <mkestner@novell.com>
9067
9068         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9069         to the instance itself.
9070
9071 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9072
9073         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9074           on ulongs and pointers, the size differs between 32bit and 64bit
9075           systems. 
9076
9077 2006-02-07  Mike Kestner  <mkestner@novell.com>
9078
9079         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9080         for 64 bit platforms to work around a metacity bug. 
9081
9082 2006-02-07  Jackson Harper  <jackson@ximian.com>
9083
9084         * TrackBar.cs: Process the input keys we need, and hookup to
9085         KeyDown instead of using WndProc, so we get key messages.
9086
9087 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9088
9089         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9090           machine we're on. 
9091         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9092           we need to translate the XdndVersion atoms array before sending it
9093
9094 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9095
9096         * XplatUIX11.cs: 
9097           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9098             number of bits for the property, not the number of bytes. The
9099             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9100             but would not crash since it specified 8 bits instead of 4 bits)
9101           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9102             defined as XID -> long in the C headers)
9103           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9104             references since those are now IntPtr to begin with
9105           - Switched all Atom.XXX 'int' casts to IntPtr casts
9106           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9107           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9108           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9109         * X11Structs.cs:
9110           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9111           - Changed atom in HoverStruct to be IntPtr
9112         * X11DnD.cs:
9113           - Removed local DllImports, switched code to use those from XplatUIX11
9114           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9115
9116 2006-02-06  Mike Kestner  <mkestner@novell.com>
9117
9118         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9119         method signatures in the import region.  There may still be some
9120         lingering struct marshaling issues, as I didn't drill down into those.
9121         Yet.
9122
9123 2006-02-06  Jackson Harper  <jackson@ximian.com>
9124
9125         * ComboBox.cs: Dont manually set the top_item, this is computed
9126         when the scrollbar position is set.
9127
9128 2006-02-06  Mike Kestner  <mkestner@novell.com>
9129
9130         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9131         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9132         usage of Atom needs to be mapped to IntPtr for example.  And there are
9133         likely other int/long issues to be addressed.
9134
9135 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9136
9137         * FileDialog.cs: One more...
9138
9139 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9140
9141         * FileDialog.cs: Next try
9142
9143 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9144
9145         * FileDialog.cs: First part of fix for #77464
9146
9147 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9148
9149         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9150           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9151           AcceptButton border drawing.
9152
9153 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9154
9155         * Form.cs: Moved positioning of form after auto scaling is applied,
9156           otherwise it would possibly use wrong form size.
9157
9158 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9159
9160         * Control.cs (RecreateHandle): No need to re-create any child
9161           controls, the child windows will get destroyed automatically by
9162           the windowing system or driver, and re-created when the handle
9163           is being accessed the first time. Fixes #77456
9164         * Form.cs: No longer setting the form to closing if the handle is 
9165           being recreated. This seems like the right thing to do, don't
9166           have a bug or testcase for this, though.
9167
9168 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9169
9170         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9171           controls to avoid unwanted side effects
9172
9173 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9174
9175         * Control.cs: 
9176           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9177             control. Fixes #77416.
9178           - DefaultSize is 0,0 for control
9179         * TextBoxBase.cs: 
9180           - DefaultSize is 100, 20
9181           - SetBoundsCore: Now enforcing the height, no matter if the provided
9182             height is more or less than the preferred one, as long as AutoSize
9183             is on
9184         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9185
9186 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9187
9188         * Control.cs:
9189           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9190             call unless both performLayout is true *and* we have a pending
9191             layout change
9192           - ResumeLayout: MS does not completely nest Suspend and Resume,
9193             they bottom out at 0, fixed our code to match that.
9194           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9195             SetBoundsCore, we were updating even when we shouldn't. This fixes
9196             swf-anchors mis-anchoring when resizing the app fast and lots.
9197           - UpdateDistances: Now only setting the left and top distance if 
9198             we have a parent and are not suspended, this is based on
9199             a suggestion by Don Edvaldson in bug #77355.
9200           - OnVisibleChanged: Fixed logic when to create the control. We may
9201             not create the control if we have no parent or if it's not visible;
9202             switched to using Visible property instead of is_visible field 
9203             since the property also considers parent states. This fixes a bug
9204             when starting Paint.Net
9205
9206 2006-02-02  Jackson Harper  <jackson@ximian.com>
9207
9208         * Form.cs: If the forms handle hasn't been created yet don't call
9209         into xplatui to make it top most, just set the topmost flag on the
9210         form in CreateParams
9211         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9212
9213 2006-02-01  Jackson Harper  <jackson@ximian.com>
9214
9215         * ScrollableControl.cs: Refactored the Recalculate method a
9216         little, this wasn't handling all the variants of bottom and right
9217         bars needed to be added and added/removed based on their
9218         counterparts being added/removed (which changes the drawable
9219         size). Also we special case client widths and heights of 0 and
9220         don't add the scrollbar for those.
9221
9222 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
9223
9224         * XplatUIX11.cs: 
9225           - Added method to get AbsoluteGeometry(); currently unused, but might
9226             be used in the future, if we try again to figure out toplevel
9227             coordinates with some more crappy window managers
9228           - Added FrameExtents() method to retrieve the WM set decoration size
9229           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
9230             to deal with at least KDE, FVWM and metacity (Fixes #77092)
9231         * Hwnd.cs: 
9232           - Added whacky_wm tracking var for metacity
9233           - Added logic to have default menu height if the actual menu height
9234             has not yet been calculated (part of fix for #77426)
9235         * Form.cs: Keep track whether client size has been set and re-set 
9236           it if a menu is added/removed afterwards (Fixes #77426)
9237
9238 2006-01-31  Jackson Harper  <jackson@ximian.com>
9239
9240         * Control.cs: When a new Site is set on the component attempt to
9241         pull the AmbientProperties from it.
9242
9243 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
9244
9245         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
9246           in the background of the owning form. Fixes #77332
9247
9248 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9249
9250         * MimeIcon.cs: Fix for #77409
9251
9252 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
9253
9254         * XplatUIX11GTK.cs: Initial import
9255
9256 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
9257
9258         * FixedSizeTextBox: fixes class signature
9259
9260 2006-01-30  Jackson Harper  <jackson@ximian.com>
9261
9262         * FixedSizeTextBox.cs: New internal class that represents a
9263         textBox that will not be scaled.
9264         * TreeView.cs:
9265         * ComboBox.cs:
9266         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
9267         standard TextBox.
9268                 
9269 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
9270
9271         * XplatUIX11.cs: Retrieve default screen number instead of
9272           assuming 0. Attempted fix for #77318
9273
9274 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
9275
9276         * XplatUIWin32.cs: 
9277           - GetWindowPos: When a window is parented by FosterParent, use 
9278             the desktop instead of FosterParent as the base to get coordinates
9279           - CreateWindow: Don't make FosterParent the parent window for Popups
9280             if we don't want a taskbar entry, Popups automatically don't get one
9281         * Hwnd.cs: Need to call remove to actually remove the key from the
9282           hash table
9283
9284 2006-01-30  Mike Kestner  <mkestner@novell.com>
9285
9286         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
9287
9288 2006-01-30  Jackson Harper  <jackson@ximian.com>
9289
9290         * TreeView.cs:
9291         * TreeNode.cs: Raise events no matter how the treenode is
9292         checked. Patch by Don Edvalson.
9293
9294 2006-01-30  Jackson Harper  <jackson@ximian.com>
9295
9296         * TreeNode.cs: Signature fix.
9297
9298 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
9299
9300         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
9301
9302 2006-01-20  Mike Kestner  <mkestner@novell.com>
9303
9304         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
9305         event forwarding when menus are active.
9306         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
9307         Most of the patch is pdb's with a little rework.
9308
9309 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9310
9311         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
9312           Removed GetMenuDC and ReleaseMenuDC methods; replaced
9313           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
9314         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
9315         * InternalWindowManager.cs: Added use of PaintEventStart/End to
9316           handling of WM_NCPAINT message, now passing the PaintEventArgs to
9317           the PaintWindowDecorations method
9318         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
9319         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
9320         * MenuAPI.cs: Made tracker window invisible
9321         * XplatUIWin32.cs:
9322           - Removed GetMenuDC and ReleaseMenuDC methods
9323           - Implemented the client=false path for PaintEventStart and
9324             PaintEventEnd
9325
9326 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9327
9328         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
9329         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
9330           styles
9331         * Form.cs: 
9332           - MaximizeBox, MinimizeBox: Recreate the handle when setting
9333             the style
9334           - CreateParams: Reworked the styles to match MS look'n'feel,
9335             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
9336             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
9337
9338 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
9339
9340         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
9341           window is not mapped, since otherwise every form that's being 
9342           created is considered minimized, which is wrong.
9343         * Form.cs: Catching the exception and returning our internal value
9344           instead
9345
9346 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
9347
9348         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
9349           SetWindowMinMax() to have means to tell the driver about the minimum,
9350           maximum and maximized state window sizes. (Part of the fix for #76485)
9351         * Form.cs:
9352           - Implemented tracking of minimum and maximum window size, now calling
9353             new SetWindowMinMax() driver method to tell the driver (Part of the
9354             fix for #76485)
9355           - Finished handling of WM_GETMINMAXINFO method, now setting all values
9356             (Completes fix for #76485)
9357           - Calling new SetWindowMinMax driver method when the handle for a 
9358             form is created, to make sure the driver knows about it even if
9359             the values have been set before the window was created
9360           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
9361             to avoid messing up our anchoring calculations (partial fix
9362             for #77355)
9363         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
9364         * XplatUIX11.cs:
9365           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
9366           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
9367             (and presumably other freedesktop.org compliant WMs). Left the
9368             assumption unmapped=minimized, needed for SetVisible to work.
9369           - Now setting the window state when creating windows
9370           - Fixed SetVisible to consider/set the window state when mapping
9371             a Form. We cannot set the state before it's mapped, and we cannot
9372             use Form.WindowState once it's mapped (since it would ask the
9373             driver and get 'normal'. Therefore, we grab the state before
9374             mapping, map, and then set state.
9375           - Implmemented SetWindowMinMax method; Metacity does not seem to
9376             honor the ZoomHints, though.
9377         * XplatUIWin32.cs:
9378           - Removed MINMAXINFO (moved to XplatUIStructs)
9379           - Added SetWindowMinMax stub (on Win32 the only way to set that
9380             information is in response to the WM_GETMINMAXINFO message, which
9381             is handled in Form.cs)
9382           - Added logic to SetVisible to set the proper window state when a 
9383             form is made visible (fixes #75720)
9384
9385 2006-01-26  Jackson Harper  <jackson@ximian.com>
9386
9387         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
9388         same way we handle them with Invoke.
9389
9390 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
9391
9392         * Form.cs:
9393           - Added tracking of window state so CreateParams can return
9394             the appropriate style
9395           - Moved setting of WS_CAPTION style in CreateParams to allow
9396             styles without caption
9397         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
9398           control if the TextBox property is accessed. Fixes #77345
9399         * Control.cs:
9400           - get_Created: now uses is_disposed and is_created to determine
9401             return value (suggested by Jackson)
9402           - CreateHandle: No longer exits if the handle is being recreated
9403           - RecreateHandle: If the handle is not yet created call the 
9404             appropriate method to create either control or handle. If the
9405             control is already created CreateHandle will simply exit instead
9406             of just creating the handle
9407         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
9408           now SendMessage WM_DESTROY directly to the control when DestroyWindow
9409           is called.
9410         * XplatUIX11.cs: 
9411           - When DestroyWindow is called, instead of waiting for the 
9412             DestroyNotification from X11, we directly post it to the WndProc
9413             and immediately dispose the hwnd object.
9414             Same applies to DestroyChildWindows, and this obsoletes the
9415             expose_pending tracking. Contrary to Win32 behaviour we destroy our
9416             child windows before our own, to avoid X11 errors.
9417           - Removed the direct sending of WM_PAINT on UpdateWindow
9418         * XplatUIWin32.cs:
9419           - Reworked DoEvents and GetMessage to allow access to internal queue
9420             even when trying non-blocking access to the queue.  Fixes #77335. 
9421             Based on a patch suggestion by Don Edvalson. The new private
9422             GetMessage can now also be used as a backend for a PeekMessage
9423             frontend version.
9424         * XplatUI.cs: Improved debug output for CreateWindow
9425
9426 2006-01-25  Jackson Harper  <jackson@ximian.com>
9427
9428         * Help.cs: Allow param to be null. Patch by Don Edvalson.
9429
9430 2006-01-24  Jackson Harper  <jackson@ximian.com>
9431
9432         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
9433         when we have a MaxDropItems lower then the selected index.
9434
9435 2006-01-24  Jackson Harper  <jackson@ximian.com>
9436
9437         * Control.cs: Don't allow selection of non visible controls, allow
9438         selection of controls without parents.
9439
9440 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9441
9442         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
9443         * DataGridDrawingLogic.cs: Add editing row only when is necessary
9444
9445 2006-01-23  Jackson Harper  <jackson@ximian.com>
9446
9447         * UpDownBase.cs: Make the textbox handle all the selection and
9448         tabbing. This fixes tabing to updown controls.
9449
9450 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
9451
9452         * TextBoxBase.cs: fixes exception thown the object was null
9453
9454 2006-01-23  Jackson Harper  <jackson@ximian.com>
9455
9456         * ButtonBase.cs: Just use the base CreateParams. They set
9457         visibility and enabled correctly.
9458         * ComboBox.cs:
9459         * TrackBar.cs:
9460         * MonthCalendar.cs: Lets let the base set as much of the
9461         createparams as possible so we don't have duplicate code all over
9462         the place.
9463
9464 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
9465
9466         * ThemeGtk.cs: Added TrackBar and some experimental code to
9467           get double buffering back
9468
9469 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
9470
9471         * DataGrid.cs: Allows row number set internally higher than the last
9472         when creating a new row. Restores the editing functionality.
9473
9474 2006-01-20  Mike Kestner  <mkestner@novell.com>
9475
9476         * MimeIcon.cs: delay Image creation until the icons are accessed
9477         instead of creating 190 scaled images on GnomeHandler startup.
9478
9479 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
9480
9481         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9482           first call base before processing the event. Fixes #77279
9483
9484 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9485
9486         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9487           that the stride for the GDI bitmap would match the stride of
9488           a DIB or a Cursor.
9489
9490 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9491
9492         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9493
9494 2006-01-19  Jackson Harper  <jackson@ximian.com>
9495
9496         * ComboBox.cs: Hookup the text controls keydown event so we get
9497         those when the text control has the focus.
9498
9499 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9500
9501         * Label.cs: Now using the base events instead of defining new ones;
9502           this allows us to just call the base properties without having to
9503           duplicate all base property logic 
9504
9505 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9506
9507         * Label.cs: A label by default is not a tabstop (Fixes one of our
9508           failing nunit tests)
9509
9510 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9511
9512         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
9513         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
9514
9515 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9516
9517         * Cursor.cs: Reimplemented creating cursor bitmaps without using
9518           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
9519           This fixes #77218
9520         * XplatUIWin32.cs: 
9521           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
9522             constructor creates images that can't be saved. Part of the fix
9523             for #76103
9524           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
9525           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
9526             bug fix for handling window state in forms properly)
9527
9528 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9529
9530         * ThemeGtk.cs: Simplify ScrollBar drawing
9531
9532 2006-01-18  Jackson Harper  <jackson@ximian.com>
9533
9534         * Splitter.cs: Set the default dock style for the splitter control
9535         in the constructor.
9536
9537 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9538
9539         * ThemeGtk.cs: Corrected StateType and ShadowType for
9540           gtk_paint_box
9541
9542 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9543
9544         * Control.cs: Make use of Theme.DoubleBufferingSupported
9545         * ThemeGtk.cs:
9546           - Added drawing for flat style buttons
9547           - Added ScrollBar drawing
9548
9549 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9550
9551         * ThemeClearlooks.cs: Removed some unneeded code.
9552         * ThemeGtk.cs: First part of ThemeGtk enhancements.
9553
9554 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9555
9556         * LinkLabel.cs: We need to update the hover drawing when
9557           leaving the control as well.
9558
9559 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
9560
9561         * DataGrid.cs: Clicking on non empty areas in the columns
9562            area was giving an exception
9563
9564 2006-01-17  Jackson Harper  <jackson@ximian.com>
9565
9566         * ThemeWin32Classic.cs:
9567         * ListView.cs: Do not draw/clip the headers when the header style
9568         is None.
9569
9570 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9571
9572         * DataGrid.cs: Fixes 77260
9573         
9574 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9575
9576         * DataGrid.cs: Clicking on a column on a empty grid was giving
9577           an exception
9578
9579 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9580
9581         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
9582           or any keypress will crash the grid.
9583
9584 2006-01-17  Mike Kestner  <mkestner@novell.com>
9585
9586         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
9587         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
9588         invisible/previously-visible items.
9589         [Fixes #76909]
9590
9591 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
9592
9593         * ThemeClearlooks.cs:
9594         - Added CL_Draw_Button method; now other theme controls that are 
9595           not derived from button or do not have a button can draw buttons
9596           too
9597         - Updated ComboBox drawing
9598         - Beautified RadioButton drawing
9599         - Corrected drawing of bottom and left tabs
9600         - Beautified DateTimePicker and MonthCalendar
9601         - Added CPDrawButton and CPDrawRadioButton
9602
9603 2006-01-16  Jackson Harper  <jackson@ximian.com>
9604
9605         * ComboBox.cs: Set the initial value of the scrollbar to the
9606         current index. Reduce the numbers of refreshs and IndexOfs called.
9607
9608 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
9609
9610         * FileDialog.cs: When the file listview is focused hitting the
9611           backspace key moves the fileview to the parent directory
9612
9613 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9614
9615         * Form.cs: 
9616           - Added RecreateHandle call when changing taskbar visibility to 
9617             trigger reparenting in Win32 driver (Fixes #75719)
9618           - If a window has minimize or maximize buttons, it cannot have
9619             a help button
9620         * XplatUIWin32.cs:
9621           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
9622             the toplevel form with FosterParent (A toolwindow not on the
9623             taskbar) (Fixes #75719)
9624           - Made FosterParent a toolwindow
9625
9626 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9627
9628         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
9629
9630 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9631
9632         * ToolTip.cs: If SetToolTip is called from a control and the mouse
9633           is currently over that control, make sure that tooltip_window.Text
9634           gets updated
9635
9636 2006-01-13  Mike Kestner  <mkestner@novell.com>
9637
9638         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
9639
9640 2006-01-13  Jackson Harper  <jackson@ximian.com>
9641
9642         * TreeView.cs: On MS GetNodeAt never actually factors in the X
9643         value passed.  Also redraw the selected node when we recieve
9644         focus, so tabbing between trees works correctly.
9645
9646 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9647
9648         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
9649           ~/.gconf/%gconf-tree.xml, so use
9650           .gconf/desktop/gnome/interface/%gconf.xml
9651
9652 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9653
9654         * TextControl.cs: Draw text in gray if control is disabled
9655
9656 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9657
9658         * TreeView.cs: Draw the focus rectangle outside the highlight, to
9659           make sure it's always visible. Fixes #76680.
9660
9661 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9662
9663         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
9664
9665 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
9666
9667         * PageSetupDialog.cs: Added.
9668         * PrintDialog.cs: Attributes.
9669         * PrintPreviewControl.cs: Updates.
9670         * PrintPreviewDialog.cs: Updates.
9671         
9672 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9673
9674         * Control.cs: Undid my selection check fix, since it's not needed
9675         * TextBoxBase.cs:
9676           - Now considering the presence of hscroll/vscroll when sizing
9677             vscroll/hscroll respectively. Fixed bug #77077
9678           - Added Left/Up/Down/Right to IsInputKey list to prevent
9679             ContainerControl from stealing them. This fixes what I broke
9680             with my last checkin.
9681
9682 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
9683
9684         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
9685           I finally understand how the property can be set without a setter :-)
9686
9687 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9688
9689         * Application.cs:
9690           - Switched RunLoop to use static Message.Create to create a 
9691             Message object
9692           - Added PreProcessMessage call in runloop for keyboard events; this
9693             is part of the fix for #77219, I overlooked this originally in the
9694             MSDN doc for PreProcessMessage
9695         * Control.cs:
9696           - Removed call to PreProcessMessage from handling of keyboard 
9697             messages; it's supposed to be done in the message pump
9698           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
9699             per MSDN documentation.
9700           - IsInputChar: All chars are input chars by default; removed the 
9701             parent calling chain, MS does not document that
9702           - PreProcessMessage: If IsInputChar is true, we want to return false
9703             to allow dispatching of the message
9704           - When selecting the next control, now also check that we're not
9705             selecting ourselves again and therefore return a false positive.
9706         * TextBoxBase.cs:
9707           - Tried to match return values for IsInputKey and ProcessDialogKey
9708             to what MS returns; moved processing of our special keys outside
9709             ProcessDialogKey since MS does not seem to return true on those.
9710           - Moved code that previously was in ProcessDialogKey into new private
9711             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
9712           - Reworked handling of WM_CHAR to not have to duplicate code from
9713             Control.cs anymore, instead we simply call down to base.
9714            
9715 2006-01-12  Jackson Harper  <jackson@ximian.com>
9716
9717         * ComboBox.cs: We always need to refresh the text area when
9718         EndUpdate is called. Fixes the combobox in the file dialog.
9719         * Control.cs: Don't create the creator_thread until the controls
9720         handle is created.  Also in InvokeRequired we check if the
9721         creator_thread is null. This gives the effect of InvokeRequired
9722         returning true if the controls handle is not created yet, and
9723         matches MS.
9724
9725 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9726
9727         * XplatUI.cs:
9728           - Added StartLoop() driver method. This is used to allow drivers to
9729             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
9730             loop for a particular thread
9731           - Added EndLoop() driver method. This is called once the message
9732             pump for the thread is shut down
9733           - Added SupportsTransparency method to allow the driver to indicate
9734             opacity support for windows
9735         * Form.cs:
9736           - Removed TODO attribute, completed AllowTransparency property
9737           - Added documented logic to Opacity
9738         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
9739           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
9740           versions of CompatibleTextRendering
9741         * X11Structs.cs: Added opacity atom to our atom enumeration
9742         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
9743           of a form might be set before it's reparented by the WM, and we need
9744           the opacity value without calling up to Form)
9745         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
9746           SupportsTransparency() driver methods
9747         * Application.cs: Now calling StartLoop and EndLoop driver methods
9748         * XplatUIX11.cs:
9749           - Added opacity atom registration
9750           - Added StartLoop()/EndLoop() methods. They're empty right now but
9751             will need to get implemented when we switch to a per-thread queue
9752           - Implemented SupportsTransparency() method
9753           - Implemented SetWindowTransparency() method
9754           - Added support for setting the opacity value when a window is
9755             reparented (since the opacity needs to be set on the WM frame)
9756         * XplatUIOSX.cs, XplatUIWin32.cs:
9757           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
9758
9759 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9760
9761         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
9762
9763 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9764
9765         * FileDialog.cs: Added ToolTip for MWFFileView
9766         * MimeIcon.cs: Rewrote GnomeHandler.
9767           - Get currently used gnome icon theme from
9768             ($HOME)/.gconf/%gconf-tree.xml
9769           - Make use of inherited icon themes
9770           - Support SVG icon themes like Tango via librsvg
9771
9772 2006-01-12  Miguel de Icaza  <miguel@novell.com>
9773
9774         Revert's Jackson's revert which broke 2.0 builds.   Fix both
9775         builds. 
9776         
9777         * Application.cs: Move the use_compatible_text_rendering outside
9778         the NET_2_0 define.  If we ever need to use the
9779         use_compatible_text_rendering on the individual controls they will
9780         access the variable from the common shared code paths.
9781
9782 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9783
9784         * XplatUI.cs:
9785           - Added more granular debug options
9786           - Added method to print both window text and id
9787           - Switched debug output to use new Window() debug method
9788           - Added IsEnabled() driver method
9789           - Added EnableWindow() driver method
9790         * Form.cs:
9791           - Removed end_modal; no longer needed, new loop handles termination
9792             via 'closing' variable
9793           - If form is modal, setting DialogResult will now initiate loop
9794             termination via 'closing' variable
9795           - Added support for is_enabled/WS_DISABLED to CreateParams
9796           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
9797             does all the work
9798           - Removed code that's now in RunLoop from ShowDialog()
9799           - Added various documented sanity checks to ShowDialog()
9800           - Added handling of WM_DESTROY message; we set 'closing' on getting
9801             the message to indicate the message pump to terminate
9802           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
9803             send by the Application.ExitThread method. (We send the message
9804             to destroy the window after all other events have been
9805             processed through the queue, instead of destroying the handle 
9806             directly)
9807           - Moved code from Close() method to WM_CLOSE handler; added logic
9808             to only send close-related events if the form is not displayed
9809             modal
9810         * Splitter.cs (..ctor): Fixed typo in resource name
9811         * Control.cs:
9812           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
9813             brush now
9814           - set_Cursor: Now only setting calling into XplatUI if the handle for
9815             the control is already created; this avoids implict handle creation
9816             or crashes if it's not created
9817           - set_Enabled: Now setting the enabled state via the new driver method
9818             instead of just tracking it
9819           - CreateParams: Added logic to set WS_DISABLED based on enabled state
9820           - CreateControl: Reordered event firing and method calls to more
9821             closely fire events in the order MS does. Now setting the
9822             enabled state in the driver when creating the control.
9823           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
9824             match MS order
9825         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
9826           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
9827         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
9828         * Hwnd.cs:
9829           - Added tracking of window enabled state (get_Enabled/set_Enabled)
9830           - Added EnabledHwnd property to easily allow a driver to find the
9831             handle of the first enabled window in the parent chain (this is
9832             used by drivers to pass up input events of disabled windows)
9833         * XplatUIDriver.cs: Added IsEnabled() method
9834         * Application.cs:
9835           - Removed crude and obsolete exiting tracking variable
9836           - Removed internal ModalRun(); replaced by RunLoop()
9837           - Implemented private CloseForms() method to allow closing all 
9838             windows owned by a particular (or all) threads
9839           - Exit() now properly closes all windows without forcing the message
9840             pump to quit
9841           - Removed obsolete InternalExit() method
9842           - Changed Run() methods to use new RunLoop() message pump
9843           - Implemented new RunLoop() method for both modal and non-modal forms
9844         * CommonDialog.cs:
9845           - get_CreateParams: Added setting of WS_DISABLED
9846           - Simplified ShowDialog(); now all the work is done in RunLoop(),
9847             invoked via Form.ShowDialog()
9848         * NativeWindow.cs: We don't remove the window from the collection when
9849           the handle is destroyed; there might still be messages for it in the
9850           queue (mainly the resulting WM_DESTROY); instead it will be removed
9851           when Control calls InvalidateHandle in the WM_DESTROY handler
9852         * XplatUIX11.cs:
9853           - CreateWindow: Added logic to handle the WS_DISABLED window style
9854           - EnableWindow: Implemented based on Hwnd.Enabled
9855           - GetMessage: Reset PostQuitState so the method can be called again
9856           - Implemented support for disabled windows (passing messages to the
9857             first enabled parent) in handling all input messages
9858           - Added optimizations for handling Expose events
9859           - Implemeted new driver method IsEnabled()
9860           - Now always resetting paint pending tracking vars when we start paint
9861           - Re-implemented UpdateWindow via just sending a WM_PAINT message
9862         * XplatUIOSX.cs: Added IsEnabled method stub
9863         * XplatUIWin32.cs: Implemented new IsEnabled() method
9864
9865 2006-01-11  Jackson Harper  <jackson@ximian.com>
9866
9867         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9868         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
9869         variables a little.
9870         * ColorDialog.cs: Clear out the old form before adding the new
9871         panel.  
9872
9873 2006-01-11  Jackson Harper  <jackson@ximian.com>
9874
9875         * X11Dnd.cs: Make sure to add all the text formats when adding
9876         strings to the data object.
9877         * TreeNodeCollection.cs: When adding to a sorted tree we need to
9878         do some redrawing too.  Also change the UpdateNode to an
9879         UpdateBelow so the newly added node gets painted.
9880         
9881 2006-01-11  Miguel de Icaza  <miguel@novell.com>
9882
9883         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9884         LinkLabel.cs, PropertyGrid.cs: Implement the
9885         UseCompatibleTextRendering property for 2.x
9886
9887         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
9888
9889 2006-01-11  Jackson Harper  <jackson@ximian.com>
9890
9891         * TreeView.cs: Use the property for setting the selected node so
9892         the correct events get raised.
9893         * TreeNode.cs: Update the tree when the fore/back colours of a
9894         node are set.
9895
9896 2006-01-10  Jackson Harper  <jackson@ximian.com>
9897
9898         * TreeView.cs: Allow setting SelectedNode to null.
9899
9900 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9901
9902         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
9903
9904 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9905
9906         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
9907
9908 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9909
9910         * PrintDialog.cs: Added attributes and set default property values.
9911
9912 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9913
9914         * PrintControllerWithStatusDialog.cs: 
9915         Added PrintControllerWithStatusDialog.
9916
9917 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9918
9919         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
9920         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
9921
9922 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9923
9924         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
9925
9926 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9927
9928         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
9929         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
9930
9931 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9932
9933         * MimeIcon.cs: Added internal class SVGUtil.
9934
9935 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9936
9937         * FileDialog.cs: Don't crash if there are two files with the
9938           same name but different locations.
9939
9940 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
9941
9942         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
9943         dates across multiple month grids. Used to not highlight entire 
9944         month, but does now.
9945         
9946 2006-01-06  Jackson Harper  <jackson@ximian.com>
9947
9948         * MonthCalendar.cs: Removed DoEvents call to prevent a running
9949         message loop. Change timer intervals to numbers that seem more
9950         natural.
9951
9952 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
9953
9954         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
9955           object for location info since screen object is now implemented.
9956
9957 2006-01-05  Jackson Harper  <jackson@ximian.com>
9958
9959         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
9960         * AsyncMethodResult.cs: We no longer use a WeakReference for the
9961         AsyncMethodResult, this is because we ALWAYS want the
9962         ManualResetEvent to get set.
9963         * Control.cs: When disposing use an async invoke to call shutdown
9964         code, so that thigns don't block on the finalizer thread.  Also
9965         check if we even have a message loop before trying to send
9966         messages, if we don't then don't bother sending messages.
9967         - No more weak references for async methods
9968         * XplatUIDriver.cs: No more weak references for async methods.
9969
9970 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9971
9972         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
9973           returns two FontFamily with the same name
9974
9975 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9976
9977         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
9978           drawing disabled text. Instead using the ColorGrayText color
9979
9980 2006-01-04  Jackson Harper  <jackson@ximian.com>
9981
9982         * TreeNode.cs: redraw the node when its image index is changed.
9983
9984 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9985
9986         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
9987           time I checked there are no others like it.
9988
9989 2006-01-04  Jackson Harper  <jackson@ximian.com>
9990
9991         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
9992         this gives the behavoir I was looking for.
9993         * Control.cs: Special case Invoking EventHandlers, this matches MS
9994         and fixes part of bug #76326.
9995
9996 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9997
9998         * ThemeClearlooks.cs, FileDialog.cs:
9999           - Reflect the latest Theme class changes
10000           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10001             with DateTime
10002             
10003 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10004
10005         * Theme.cs: Cache UI resource images and resize them if needed
10006
10007 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10008
10009         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10010           is called. This fixes the crash in Nexxia when setting the font
10011           attributes in the chat. [However, RTF needs a look-over to make sure
10012           that all SelectionXXX methods handle the special case that selection
10013           is empty and therefore the change must be applied to all text starting
10014           at the cursor/selection start]
10015
10016 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10017
10018         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10019           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10020         * X11Keyboard.cs: Switched to new way of calling PostMessage
10021
10022 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10023
10024         * Theme.cs: Added theme interface for images to allow the theme to
10025           control what images are used for things like FileDialog, MessageBox
10026           icons, etc.
10027         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10028
10029 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10030
10031         * FileDialog.cs:
10032           - Removed some dead code
10033           - Opening a recently used file does work now
10034           - Small UI enhancements
10035           - Refactoring
10036
10037 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10038
10039         * FileDialog.cs: Forgot too add __MonoCS__
10040
10041 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10042
10043         * FileDialog.cs: We are able to read recently used files now let's
10044           go on and write them.
10045
10046 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10047
10048         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10049           button
10050         * MimeIcon.cs: Do a check for the top level media type also
10051
10052 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10053
10054         * ThemeClearlooks.cs:
10055           - Added CPDrawStringDisabled
10056           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10057             some chars if the text doesn't fit into text_rect
10058           - DrawListViewItem: If View = View.LargeIcon center the image;
10059             rewrote the drawing of ListViewItem.Text if View = 
10060             View.LargeIcon
10061
10062 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10063
10064         * MimeIcon.cs: Use default KDE icon theme if there is no
10065           "48x48" directory for the current icon theme, fixes #77114
10066         * Mime.cs: Disable not working and actually not used code. 
10067         * ThemeWin32Classic.cs:
10068           - Replace "new SolidBrush" in GetControlBackBrush and
10069             GetControlForeBrush with ResPool.GetSolidBrush
10070           - Changed DrawListViewItem from private to protected virtual
10071         * FileDialog.cs:
10072           - Added form.MaximizeBox = true
10073           - Don't throw an exception if there is a broken symbolic link
10074
10075 2005-12-23  Jackson Harper  <jackson@ximian.com>
10076
10077         * TabControl.cs: Give the panels focus, keyboard navigation is
10078         fixed so this works correctly now.
10079         - We need these key events also.
10080         * ToolBar.cs: Remove some of the poor mans double buffering.
10081         
10082 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10083
10084         * ComboBox.cs: The internal TextBox now returns the focus.
10085
10086 2005-12-23  Jackson Harper  <jackson@ximian.com>
10087
10088         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10089
10090 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10091
10092         * Control.cs: Removed debug code
10093         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10094           implicit children
10095
10096 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10097
10098         * Control.cs: When creating the control, update the Z-order after
10099           all it's children are created, too. (Fixes nexxia not showing
10100           picturebox bug)
10101
10102 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10103
10104         * Control.cs: Do not update the anchoring distances if layout is
10105           suspended, instead do it once layout is resumed
10106
10107 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10108
10109         * Control.cs: 
10110           - After many hours of debugging, for both Jackson and
10111             myself, it turns out that it helps to set the parent of a control
10112             if you want to actually see it onscreen. In the spirit of that
10113             discovery, we're now setting the parent of the control and
10114             it's children when the control's handle is created. This fix
10115             will make Lutz Roeder's Reflector run happily. 
10116           - now just creating the handle instead of the whole control when
10117             getting a graphics context for the control.
10118
10119 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10120
10121         * ScrollableControl.cs: When calculating the canvas, don't consider
10122           the scrollbar widths. Instead, predict if horizontal scrollbar
10123           will affect canvas when deciding on vertical display and vice versa.
10124
10125 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10126
10127         * RichTextBox.cs: Set default RTF font for documents that don't
10128           have a font table (Fixes #77076)
10129
10130 2005-12-22  Jackson Harper  <jackson@ximian.com>
10131
10132         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10133         clipboard. This prevents a NullRef in that case.
10134         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10135         clipboard. PRIMARY is for the currently selected text only. (We
10136         should implement PRIMARY at some point.
10137
10138 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10139
10140         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10141           a Unicode function with a structure that was defined in Ansi way.
10142           This fixes #76942.
10143
10144 2005-12-21  Jackson Harper  <jackson@ximian.com>
10145
10146         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10147         on. Because thats how it rolls. (and this avoids it using ambient
10148         colours).
10149         * ThemeWin32Classic.cs: Use the proper back color for filling.
10150         * Menu.cs: Use the system menu bar color for drawing menu
10151         bars. Using the window back color will bring ambient colours into
10152         the picture.
10153
10154 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10155
10156         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10157           Bitmaps were created and not disposed.
10158
10159 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10160
10161         * Control.cs (CreateControl): Don't do anything if the control is
10162           already created, otherwise we'd fire the OnCreated event more than
10163           once
10164
10165 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10166
10167         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10168           will always match. Instead return -1. Fixes #76464.
10169
10170 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10171
10172         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10173           neither the beginning nor the end of the line (Fixes bug #76479)
10174
10175 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10176
10177         * Control.cs:
10178           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10179             where handle is invalid
10180           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10181             instead of slower linear search
10182         * NativeWindow.cs: Don't remove the window from the hashtable until
10183           after the driver has destroyed it (since the driver might use
10184           Control.FromHandle to lookup the control object
10185         * Hwnd.cs: Added DestroyPending property to track if a window is 
10186           already destroyed as far as the driver is concerned and only hasn't
10187           yet notified the control
10188         * XplatUIX11.cs:
10189           - Activate(): Check if the window is still valid before using the 
10190             handle
10191           - Implemented DestroyChildWindow() method to mark child windows as
10192             destroyed when a window is destroyed. This prevents situations 
10193             where we might call an X method based on queued events for a
10194             window that already has been destroyed but we haven't yet pulled
10195             the destroy method from the queue.
10196           - Added a call to the new DestroyChildWindow() method to the drivers
10197             DestroyWindow code. Also now marking the destroyed window itself
10198             as pending
10199
10200 2005-12-20  Jackson Harper  <jackson@ximian.com>
10201
10202         * StatusBar.cs:
10203         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10204         anymore. Just do them when needed, also track the rects of panels
10205         so that we can optimize refreshing more in the future.
10206
10207 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10208
10209         * ColorDialog.cs: Fixed focus drawing in small color controls
10210
10211 2005-12-19  Jackson Harper  <jackson@ximian.com>
10212
10213         * InternalWindowManager.cs:
10214         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10215         moving windows works properly.
10216
10217 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10218
10219         * Control.cs: 
10220           - Removed call to InitLayout() from SetBoundsCore(); doc says
10221             it's only called when a control is added to a container
10222           - Split InitLayout logic, moved to separate UpdateDistances() method
10223             since we need to perform those calculations more often than just
10224             when adding the control to a container. (Needed to fix #77022)
10225           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
10226           - Reduced the OnBindingContextChanged events count, don't send them
10227             unless the control is created, we still aren't totally matching
10228             MS, but I can't quite figure out some of their rules
10229
10230 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10231
10232         * ThemeClearlooks.cs: Corrected distance between ProgressBar
10233           stripes
10234
10235 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10236
10237         * ThemeClearlooks.cs:
10238           - Updated ProgressBar drawing
10239           - Corrected drawing of ScrollBars and scroll buttons
10240           - Some temporary fixes for minor pixel artefacts
10241
10242 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
10243
10244         * Control.cs:
10245           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
10246             cause events to be sent in the same order as MS does.
10247           - Added ChangeParent() method to trigger various OnXXXChanged events
10248             that need to be fired when a parent changes (This is a reworking
10249             of the patch from r54254, with the X11 errors fixed)
10250           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
10251             since on MS we get OnLayoutChanged events when calling Clear()
10252           - Changed Enabled property to consider parent state as well, if a
10253             parent is not enabled, the control will not be either
10254           - Changed Parent property to simply call Controls.Add() since that
10255             now does all the work required, this way we avoid code duplication
10256           - Threw in a few OnBindingsContextChanged calls to try and match
10257             when MS sends them. We seem to send a few too many, though.
10258           - Added call to CreateControl when adding the control to a parent.
10259             We were never calling CreateControl. Still needs some work, in
10260             some places we treat HandleCreated and ControlCreated as equal, 
10261             which is wrong
10262           - Removed obsolete commented out code from UpdateZOrder()
10263
10264 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
10265
10266         * ThemeClearlooks.cs: Updated TrackBar drawing.
10267
10268 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10269
10270         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
10271
10272 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
10273
10274         * FileDialog.cs: Add the Help button and the open readonly
10275           checkbox only if needed
10276
10277 2005-12-16  Jackson Harper  <jackson@ximian.com>
10278
10279         * Control.cs: Make sure we have an active menu before trying to
10280         process commands on it. Prevents menu-less forms from crashing
10281         when Alt is pressed.
10282         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
10283         Dieter Bremes.
10284         * RichTextBox.cs: Expand statement to help out gmcs and fix the
10285         2.0 build.
10286
10287 2005-12-16  Jackson Harper  <jackson@ximian.com>
10288
10289         * InternalWindowManager.cs: Don't translate tool windows screen
10290         coordinates. This fixes windows 'bouncing' around when being moved.
10291
10292 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10293
10294         * TextBoxBase.cs:
10295           - MaxLength now treats 2^31-1 equal to unlimited length (this is
10296             not quite MS compatible, MS uses that number only for single line
10297             and 2^32-1 for multi-line, but I figure it won't hurt keeping
10298             the limit at 2GB)
10299           - Now enforcing the MaxLength limit when entering characters
10300           - Added argument to internal Paste() method to track if it's called
10301             from programatically or via keyboard, since keyboard driven pastes
10302             need to enforce max-length
10303           - Added logic to Paste to only paste as many chars as MaxLength 
10304             allows
10305         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
10306         * TextControl.cs:
10307           - Added Length property to return number of characters in document
10308           - Added private CharCount property which only tracks actual chars
10309             in the document (no linefeeds) and fires event when CharCount
10310             changes
10311           - Added tracking of character count to all methods that alter it
10312           - Added LengthChanged event to allow applications to subscribe
10313             to any changes to the document
10314
10315 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
10316
10317         * TextBox.cs: 
10318           - Removed local password_char field (moved to TextBoxBase)
10319           - Now setting the document's password var when password is
10320             set
10321         * TextBoxBase.cs:
10322           - Added password_char field (needed here so MultiLine can
10323             access it)
10324           - Added logic to MultiLine property setter to set the document's
10325             variable when password display is allowed
10326           - Removed debug code and made some debug code conditional
10327         * TextControl.cs:
10328           - Added RecalculatePasswordLine() method to handle special password
10329             char only lines
10330           - Added PasswordChar property, also added related tracking vars
10331           - Draw() method now uses local text var for grabbing text to draw,
10332             this var is set to line.text unless we're doing password display,
10333             then it is set to the pre-generated all-password-chars line
10334           - Added calling RecalculatePasswordLine() method for password lines
10335
10336 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10337
10338         * Hwnd.cs: 
10339           - Added Reparented property to allow tracking of Window Manager
10340             reparenting actions (which affect X/Y calculations of toplevel 
10341             windows)
10342           - Made ToString() print window handles in hex
10343         * XplatUIX11.cs:
10344           - AddConfigureNotify(): Now uses reparented state off Hwnd to
10345             determine if X/Y needs offsetting
10346           - AddConfigureNotify(): Fixed offset calculations
10347           - Now adds ReparentNotify messages into the queue
10348           - Now processes ReparentNotify messages and causes a 
10349             WM_WINDOWPOSCHANGED message to be sent upstream if a window
10350             is reparented (as most likely it's X/Y coordinates are changed
10351             due to that)
10352
10353 2005-12-14  Jackson Harper  <jackson@ximian.com>
10354
10355         * XplatUIX11.cs: Tool windows still need to respek focus.
10356
10357 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
10358
10359         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
10360           have a working release
10361
10362 2005-12-13  Jackson Harper  <jackson@ximian.com>
10363
10364         * Form.cs: Update styles after setting the border style regardless
10365         of whether or not the window is using a window manager.
10366
10367 2005-12-13  Jackson Harper  <jackson@ximian.com>
10368
10369         * Form.cs: We now hook into an internal window manager instead of just an
10370         MDI subsystem, this is so we can have properly behaving tool windows.
10371         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
10372         * InternalWindowManager.cs: New internal class that acts as a
10373         window manager for tool windows and as a base for mdi windows.
10374         * MdiWindowManager.cs: New class that acts as a window manager for
10375         mdi windows.
10376
10377 2005-12-12  Jackson Harper  <jackson@ximian.com>
10378
10379         * Control.cs: Updates so we match behavoir for for implicit
10380         controls. Fixes explosions in MDI.
10381
10382 2005-12-12  Jackson Harper  <jackson@ximian.com>
10383
10384         * Control.cs: Implement Invalidate (Region).
10385
10386 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
10387
10388         * Control.cs: 
10389           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
10390             the same events as MS does. MS fires events for each property 
10391             except, for unknown reasons, Cursor, when the control is reparented. 
10392             I can't seem to totally match add/remove since MS also fires some 
10393             VisibleChanged events, which makes no sense. Consolidated the
10394             parenting code into a separate method so it can be called from
10395             both Add and Remove. set_Parent no longer needs any special logic
10396             as it calls the parent's add method which implicitly fires
10397             all events
10398           - Removed some obsolete code and debug output
10399           - Enabled state is inherited from parents, if this is enabled
10400
10401 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
10402
10403         * Form.cs: Removed commented out code
10404
10405 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
10406
10407         * Control.cs:
10408           - Added internal version of Invoke, with additional argument 
10409             indicating if we're calling it from a Dispose() handler. That
10410             way we can avoid BeginInvoke throwing an exception if we're
10411             calling for an already destroyed window.
10412           - Added a dispose argument to BeginInvokeInternal, and made the
10413             check if a valid window handle chain exists conditional on
10414             it not being a dispose call
10415           - Removed code in DestroyHandle to destroy our children. Since we
10416             now handle the WM_DESTROY message we will catch all our children
10417             being destroyed.
10418           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
10419         * Form.cs:
10420           - Added a field to track the application context of the form.
10421           - No need to set closing variable as response to WM_CLOSE, instead
10422             we destroy the window. We also call PostQuitMessage if the form
10423             has an application context (which makes it the main app form,
10424             which, when closed terminates the app)
10425         * XplatUI.cs:
10426           - Dropped Exit() method, it's naming was confusing
10427           - Added PostQuitMessage() which causes GetMessage to return false
10428             once the message queue is empty
10429         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
10430           PostQuitMessage()
10431         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
10432           no longer a valid XplatUI method, but left it in since it's used
10433           internally. Added empty PostQuitMessage() method.
10434         * MenuAPI.cs: Replaced call to Exit() with call to
10435           PostQuitMessage, even though this is probably no longer needed.
10436         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
10437         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
10438         * Application.cs:
10439           - Replaced call to XplatUI.Exit() with PostQuitMessage()
10440           - Removed old debug code that would call XplatUI for exception
10441             display, enabled standard exception handling (Still not enabled
10442             though, until NativeWindow's ExternalExceptionHandler define
10443             is removed
10444         * NativeWindow.cs:
10445           - Added internal method to allow control to update NativeWindow
10446             after a window has been destroyed
10447           - Added handling of already destroyed windows when calling i
10448             DestroyWindow
10449           - Added removal of handle from list on ReleaseHandle
10450         * XplatUIX11.cs:
10451           - Dropped GetMessageResult var and related code
10452           - Added PostQuitState to field to track if PostQuitMessage has been
10453             called
10454           - Dropped Exit() method
10455           - Added PostQuitMessage() method
10456           - GetMessage now will return false if PostQuitState is set and no
10457             more messages are in the queue.
10458           - Expose handler will no longer generate WM_PAINT messages if we are
10459             in PostQuitState since it's very likely any windows have already
10460             been destroyed, and since Hwnd won't get updated until we have
10461             processed the DestroyNotify we'd be causing X errors.
10462         
10463 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10464
10465         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
10466           Thanks to Mike for pointing out the err of my ways.
10467
10468 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10469
10470         * Control.cs(PreProcessMessage): Moved menu handling back, but
10471           after all other key handling, to match MS (who handles Menu in
10472           DefWndProc)
10473         * Menu.cs (WndProc): Removed my brainfart
10474
10475 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10476
10477         * Control.cs(PreProcessMessage): Removed special menu handling 
10478         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
10479
10480 2005-12-07  Mike Kestner  <mkestner@novell.com>
10481
10482         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10483         state according in tracker.
10484         * Menu.cs : promote tracker field to base class and provide a tracker
10485         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10486         has a tracker. Unparent items that are removed from the collection.
10487         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10488         * Theme*.cs: add always_show_hotkeys field to support configurability
10489         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10490         pressed.
10491
10492 2005-12-07  Jackson Harper  <jackson@ximian.com>
10493
10494         * MdiChildContext.cs: Use Control.ResetCursor.
10495         * Control.cs: ResetCursor needs to set the property so that the
10496         correct XplatUI call gets made.
10497
10498 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10499
10500         * Control.cs: More fixes to make our key events match MS. We
10501           were not setting the modifier state on KeyData, and we were
10502           not generating any events when Alt was pressed with a key
10503           since handling of WM_SYSxxx was missing for the OnKey methods.
10504
10505 2005-12-07  Jackson Harper  <jackson@ximian.com>
10506
10507         * MdiChildContext.cs: reenable the sizing code.
10508         - When the mouse leaves a window reset its cursor.
10509
10510 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10511
10512         * ThemeClearlooks.cs: Reflect latest Hwnd changes
10513
10514 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10515
10516         * Hwnd.cs: Now using the theme 3d bordersize to calculate
10517           widths of Fixed3D borders
10518
10519 2005-12-07  Jackson Harper  <jackson@ximian.com>
10520
10521         * MdiClient.cs: Fix warnings. Earn Mike's love.
10522
10523 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10524
10525         * ThemeClearlooks.cs:
10526           - Adjusted mouse over button color
10527           - Added first parts of CheckBox drawing
10528           - Added correct color for selected text background
10529           - Fixed ComboBox drawing
10530           - Added CPDrawBorder3D and CPDrawBorder
10531
10532 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10533
10534         * XplatUIX11.cs: Added call to XBell for AudibleAlert
10535
10536 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
10537
10538         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10539           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
10540           alert users via sound. We could add an enum arg with different
10541           types of alerts in the future
10542
10543 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10544
10545         * Control.cs: Fix behaviour problems pointed out by Mike
10546
10547 2005-12-05  Mike Kestner  <mkestner@novell.com>
10548
10549         * StatusBarPanel.cs: add Invalidate method and hook it into all the
10550         prop setters.  Calls parent.Refresh for now, but could be maybe be
10551         optimized with an internal method on StatusBar at some point.
10552         [Fixes #76513]
10553
10554 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
10555
10556         * RichTextBox.cs: Implemented get_SelectionColor
10557
10558 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
10559
10560         * ThemeClearlooks.cs:
10561           - Removed dead code
10562           - Draw black button border only if button is Form.AcceptButton
10563           - Draw correct button color for pressed RadioButton if the mouse 
10564             has entered the button
10565           - Updated ProgressBar drawing!
10566           - Updated CPDrawSizeGrip drawing
10567           - Updated StatusBarPanel drawing
10568
10569 2005-12-05  Mike Kestner  <mkestner@novell.com>
10570
10571         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
10572         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
10573
10574 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
10575
10576         * ThemeClearlooks.cs: Initial check-in, activate with
10577           export MONO_THEME=clearlooks
10578         * ThemeEngine.cs: Added ThemeClearlooks
10579
10580 2005-12-03  Mike Kestner  <mkestner@novell.com>
10581
10582         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
10583         [Fixes #76897]
10584
10585 2005-12-02  Jackson Harper  <jackson@ximian.com>
10586
10587         * Form.cs: If the child form has no menu the default main menu is
10588         used as the active menu.
10589
10590 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
10591
10592         * ListBox.cs: Check if any items exist before trying to resolve 
10593           coordinates into items
10594
10595 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10596
10597         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
10598           as the second color for the background hatch
10599
10600 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10601
10602         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
10603         * RichTextBox.cs: FormatText position arguments are 1-based, now making
10604           sure that what we pass to FormatText is always 1-based. Fixes #76885
10605
10606 2005-11-29  Miguel de Icaza  <miguel@novell.com>
10607
10608         * NumericUpDown.cs (EndInit): When we are done initializing,
10609         reflect any updates on the UI.
10610
10611 2005-12-02  Jackson Harper  <jackson@ximian.com>
10612
10613         * ImplicitHScrollBar.cs:
10614         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
10615         their container controls.
10616         * TreeView.cs: Use the new implicit scrollbars.
10617
10618 2005-12-02  Jackson Harper  <jackson@ximian.com>
10619
10620         * TreeView.cs: Make top_node internal so the TreeNodeCollections
10621         can play with it.
10622         * TreeNodeCollection.cs: If we remove the topnode we need to
10623         update topnode to the next node in line.
10624         - When clearing nodes go through the same process as removing
10625         them, so they get depareneted and checked if they are top node.
10626
10627 2005-12-01  Jackson Harper  <jackson@ximian.com>
10628
10629         * TreeView.cs: When imagelists are used the image area is
10630         selectable as well as the text.
10631         - If there are no selected nodes select the first one.
10632         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
10633         so don't do it more then we need to.
10634
10635 2005-12-01  Jackson Harper  <jackson@ximian.com>
10636
10637         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
10638         that arrows can be scaled.
10639
10640 2005-12-01  Jackson Harper  <jackson@ximian.com>
10641
10642         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
10643         fail. Patch by Dieter Bremes
10644
10645 2005-11-30  Jackson Harper  <jackson@ximian.com>
10646
10647         * Form.cs: Property is 2.0 only
10648         * PrintDialog.cs: Signature fix.
10649
10650 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10651
10652         * TextControl.cs: 
10653           - No longer artificially moves text 2 pixels down (now that we have
10654             borders this is no longer needed)
10655           - Added calcs for left, hanging and right indent
10656
10657 2005-11-23  Mike Kestner  <mkestner@novell.com>
10658
10659         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
10660
10661 2005-11-30  Jackson Harper  <jackson@ximian.com>
10662
10663         * MdiChildContext.cs: Set the cloned menus forms, as these don't
10664         get cloned as part of CloneMenu ().
10665         * Menu.cs: Make sure the parent of the items get set correctly
10666         when they are added.  And the owners are notified of the changes.
10667         * Form.cs: Create an ActiveMenu property, so that when MDI is used
10668         we can change the menu being displayed/handled by the form without
10669         changing the menu assosciated with the form.
10670         - Don't let Mdi children draw/handle menus.
10671         
10672 2005-11-30  Jackson Harper  <jackson@ximian.com>
10673
10674         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
10675         a MenuChanged event. Just to make the API a little more
10676         consistent.
10677         * MainMenu.cs:
10678         * MenuItem.cs: Use the new OnMenuChanged
10679         * MdiChildContext.cs: Handle menu merging.
10680         * Form.cs: Implement MergedMenu.
10681         
10682 2005-11-30  Jackson Harper  <jackson@ximian.com>
10683
10684         * Menu.cs: We were misusing Add. Add goes behind the specified
10685         index according to the docs, and does not replace the specified
10686         index. So I added an Insert method.
10687
10688 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10689
10690         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
10691           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
10692           is for Jackson
10693         * RichTextBox.cs: Added calls to base for DnD events
10694
10695 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
10696
10697         * TextControl.cs:
10698           - Fixed drag-selection related crash; style fixes
10699           - Implemented undo class
10700             o Implemented method to capture document state for specified
10701               range in document tree
10702             o Implemented method to restore captured document state
10703             o Implemented cursor tracking
10704             o Implemented basic undo stack
10705           - Added undo cursor tracking to methods altering cursor location
10706           - Added undo tracking to selection deletion (still missing
10707             other text-altering hookups)
10708         * RichTextBox.cs:
10709           - Added SelectionLength property
10710           - Implemented CanPaste()
10711           - Implemented Paste()
10712           - Added missing protected methods
10713           - Fixed RTF->Document conversion; now uses font index 0 and color 
10714             index 0 as the default font for the parsed text
10715           - Fixed RTF<->Document font size translation
10716           - Fixed RTF generation, now properly handles cross-tag boundaries
10717             for single line selection
10718           - No longer always appends blank line to generated RTF
10719           - Removed TODOs
10720           - Added missing attributes
10721           - Hooked up undo-related methods
10722         * TextBoxBase.cs:
10723           - Implemented Copy()
10724           - Implemented Paste()
10725           - Implemented Cut()
10726           - Fixed caret mis-behaviour on backspace across line-boundaries
10727
10728 2005-11-29  Jackson Harper  <jackson@ximian.com>
10729
10730         * MdiClient.cs: Add a method for activating mdi children. Very
10731         basic right now. I imagine someday it might need more girth.
10732         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
10733         children windows names are added to the menu item.
10734         * ThemeWin32Classic.cs: Draw the arrow if the item is an
10735         mdilist. This happens regardless of whether or not there are any
10736         mdi windows to see in the list, and according to my tests happens
10737         before the items are even added. Also happens if there isn't even
10738         an mdi client to get windows from.
10739
10740 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
10741
10742         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
10743         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
10744
10745 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
10746
10747         * DataGridTableStyle.cs:
10748           - Create always the styles for the missing columns even if they are
10749             provided by the user (not default table style)
10750         * DataGrid.cs:
10751           - Fixes bug 76770
10752           - Fixes SetDataBinding (always re-attach source)
10753           - Fixes SetNewDataSource (only clear styles if they are not for 
10754             this source)
10755          -  Expands OnTableStylesCollectionChanged to handle style refresh 
10756             and remove properly
10757
10758 2005-11-29  Jackson Harper  <jackson@ximian.com>
10759
10760         * FileDialog.cs: Implement missing bits, remove some dead
10761         code.
10762         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
10763         creation of the panel so that the options set on the dialog are
10764         seen when the panel is created.
10765         * TreeView.cs: raise a click when items are clicked.
10766         
10767 2005-11-29  Jackson Harper  <jackson@ximian.com>
10768
10769         * MdiClient.cs: Pass some signature methods through to base.
10770
10771 2005-11-28  Jackson Harper  <jackson@ximian.com>
10772
10773         * ListView.cs: Raise the click event when items are clicked.
10774
10775 2005-11-28  Jackson Harper  <jackson@ximian.com>
10776
10777         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
10778         a nullref.
10779
10780 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
10781
10782         * ThemeNice.cs: - Removed 1 pixel bitmaps
10783           - Use SmoothingMode.AntiAlias where it makes sense
10784             (ScrollButton arrow for example)
10785           - Enhanced Button focus drawing
10786           - Fixed ComboBox drawing (no artefacts anymore, focus
10787             rectangle is back again, reduced size of ComboButton, etc.)
10788           - Fixed RadioButton focus drawing for Appearence.Button
10789           - Slight ScrollButton redesign
10790           - Some LinearGradientBrush size fixes
10791           - GroupBoxes have now rounded edges
10792           - Fixed StatusBar drawing
10793
10794 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
10795
10796         * ThemeNice.cs: - Remove dead code
10797           - use correct background colors for menus, etc.
10798           - Fake pixel drawing with 1 pixel bitmaps
10799
10800 2005-11-24  Jackson Harper  <jackson@ximian.com>
10801
10802         * MdiClient.cs: Size the scrollbars when resizing the window.
10803         - Resize the maximized windows when the client is resized
10804         * Form.cs: Make the child context available
10805         
10806 2005-11-23  Jackson Harper  <jackson@ximian.com>
10807
10808         * MdiChildContext.cs: Don't size windows if they are maximized.
10809
10810 2005-11-23  Mike Kestner  <mkestner@novell.com>
10811
10812         * ContextMenu.cs: use MenuTracker.
10813         * Control.cs: remove menu handle usage.
10814         * Form.cs: remove menu handle usage.
10815         * Hwnd.cs: remove menu handle usage.
10816         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
10817         motion and clicks to the new Tracker handlers.
10818         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
10819         and handle usage.
10820         * MenuAPI.cs: refactored to combine popup and menubar event handling.
10821         Killed the MENU and MENUITEM data types and associated collections
10822         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
10823         MenuTracker class that exposes the leftovers from the old MenuAPI
10824         static methods. Restructured Capture handling so that only one grab is
10825         done for the entire menu hierarchy instead of handing off grabs to
10826         submenus. Tracker now has an invisible control to Capture when active.
10827         * MenuItem.cs: add sizing accessors, kill Create
10828         and handle usage.
10829         * Theme.cs: remove menu handle and MENU(ITEM) usage.
10830         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
10831         MENU(ITEM). remove menu handle usage, use Menu directly.
10832         * XplatUIDriver.cs: remove menu handle usage.
10833         * XplatUIOSX.cs: remove menu handle usage.
10834         * XplatUIWin32.cs: remove menu handle usage.
10835         * XplatUIX11.cs: remove menu handle usage.
10836
10837 2005-11-22  Jackson Harper  <jackson@ximian.com>
10838
10839         * Hwnd.cs: Don't compute the menu size for
10840         DefaultClientRectangle.
10841         - Reenable menu sizes being computed for GetClienRectangle.
10842         * Form.cs: Remove comment of trechery
10843         
10844 2005-11-22  Jackson Harper  <jackson@ximian.com>
10845
10846         * Hwnd.cs: The adjustments for the menu bar are made when it is
10847         attached to the form.
10848
10849 2005-11-19  Jackson Harper  <jackson@ximian.com>
10850
10851         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
10852         (just like on windows).
10853
10854 2005-11-19  Jackson Harper  <jackson@ximian.com>
10855
10856         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
10857         use real buttons anymore because they are in non client area. The
10858         one TODO here is that I need to somehow invalidate a section of
10859         the non client area.
10860
10861 2005-11-18  Jackson Harper  <jackson@ximian.com>
10862
10863         * Control.cs: Put the enum check back in now that MDI doesnt have
10864         to use this to set border styles.
10865         * Form.cs: Only set mdi child windows borders if the handle has
10866         been created.
10867         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
10868         this directly on to the driver.
10869         - Get the move start position before adjusting for the titlebar
10870         height, this fixes the windows "skipping" when they are first
10871         moved.
10872
10873 2005-11-18  Jackson Harper  <jackson@ximian.com>
10874
10875         * XplatUIX11.cs: Just compute the mdi borders separately as they
10876         don't totally match up with normal form borders.
10877
10878 2005-11-18  Jackson Harper  <jackson@ximian.com>
10879
10880         * Control.cs: Set WS_ styles for borders, so that the driver does
10881         not have to retrieve the control instance to figure out what kind
10882         of borders it should have.
10883         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
10884         driver can know its an mdi child easily.
10885         * XplatUIX11.cs: Get the border styles and whether the window is
10886         MDI from the Styles and ExStyles params instead of having to get a
10887         control. This prevents a chicken and egg problem.       
10888
10889 2005-11-18  Jackson Harper  <jackson@ximian.com>
10890
10891         * MdiClient.cs: Fix typo so scrollbars show up correctly.
10892
10893 2005-11-18  Jackson Harper  <jackson@ximian.com>
10894
10895         * MdiClient.cs: Calculate when to add and remove scrollbars
10896         correctly.
10897         * MdiChildContext.cs: Adjust the y position to take the titlebar
10898         into account.
10899         - No height for FormBorderStyle.None
10900
10901 2005-11-18  Jackson Harper  <jackson@ximian.com>
10902
10903         * Control.cs: Allow non enum values to be used for
10904         InternalBorderStyle.  MDI does this to set a special border style.
10905         - New utility methods for converting points to/from client coords
10906         - Add the newly created control to the Controls collection before
10907         updating its style. This way UpdateStyle can walk the control
10908         heirarchy to find the control if needed.
10909         so I don't need to create a new Point object all the time.
10910         * Form.cs: Let MDI windows handle their border styles.
10911         - Set styles on MDI windows so the correct title style is derived.
10912         * MdiChildContext.cs: Move all the painting and window handling
10913         into the non client area.
10914         - Use correct sizing and put correct buttons on frames based on
10915         the FormBorderStyle.
10916         - Notify the mdi client about scrolling
10917         - Need to handle the buttons ourselves now, because they are all
10918         in non client areas and we can't add controls there.
10919         * MdiClient.cs: Halfway to scrolling, this implementation is
10920         somewhat broken though, we need to check to make sure other
10921         windows aren't causing scrolling before removing the bars. Also
10922         the bars need to be drawn on top, maybe I can switch implicit
10923         controls to be on top.
10924         * Hwnd.cs: caption_height and tool_caption_height are now
10925         properties of an hwnd, this way they can be set by the driver
10926         based on the type of window they are.  In X11 the window manager
10927         handles the decorations so caption_height is zero unless its an
10928         MDI window.
10929         - Add 3 pixel borders for MDI windows (0xFFFF).
10930         - Get rid of some code duplication, have DefaultClientRectanle
10931         just call GetClientRectangle.
10932         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
10933         Hwnd now.
10934         - Set border styles differently for mdi windows.
10935         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
10936         Hwnd now.
10937         
10938 2005-11-15  Mike Kestner  <mkestner@novell.com>
10939
10940         * Menu.cs: when adding an item to the collection, if item is already 
10941         parented, remove it from the parent.
10942
10943 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
10944
10945         * X11DesktopColors.cs: Added KDE support
10946
10947 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
10948
10949         * XplatUIWin32.cs: 
10950           - Clipboard methods now can translate Rtf format
10951           - No longer removes clipboard contents whenever a new format is added
10952             to allow placing multiple formats on the clipboard
10953         * Clipboard.cs: Clipboard now supports getting a IDataObject and
10954           will place all formats contained in it onto the clipboard. Also
10955           now cleans the clipboard before placing a new object onto it
10956         * RichTextBox.cs:
10957           - Implemented set_Rtf
10958           - Implemented set_SelectedRtf
10959           - Created InsertRTFFromStream() method to allow single code base
10960             for all properties and methods that insert RTF into document
10961           - Removed debug output
10962         * TextControl.cs:
10963           - Fixed Delete(int) to fix up line numbers
10964           - Fixed ReplaceSelection to combine start and end line
10965           - Fixed serious DeleteChars bug that would leave the document tree
10966             broken
10967           - Improved DumpTree with several logic checks to detect broken
10968             document trees
10969           - Removed debug lines
10970           - Fixed Caret.WordForward/WordBack moving code, now always also 
10971             updates caret.tag (fixes crash when word-selecting across tag
10972             boundaries via keyboard)
10973           - Added Insert() method for inserting multiline text into documents
10974           - Fixed DeleteChars() calculation errors that would cause a broken
10975             tag chain with multiple tag lines
10976           - DeleteChars() no longer crashes on multi-tag lines if not all tags
10977           - Split() no longer moves caret if split is at caret location
10978           - ReplaceSelection() now updates the cursor and re-displays it
10979           - ReplaceSelection() now uses new Insert() method to avoid code
10980             duplication
10981           - FormatText() can now handle formatting partial lines
10982         * TextBoxBase.cs:
10983           - Append now uses new TextControl.Insert() method (this avoids 
10984             duplicate code)
10985           - Implemented Ctrl-X (Cut) (
10986           - Implemented Ctrl-C (Copy)
10987           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
10988             regeneration when pasting text; roundtripping Copy&Paste within
10989             edit control still fails due to some calculation bugs in GenerateRTF)
10990           - The Delete key will now remove the current selection if it is visible
10991         * TextBox.cs: Removed debug lines
10992         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
10993           driver to be initialized and can't therefore be done via a static ctor)
10994
10995 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
10996
10997         * TextControl.cs: Added backend code for finding char arrays and strings
10998         * TextBoxBase.cs:
10999           - Added mouse wheel scroll support
11000           - Added support for VScroll and HScroll events
11001         * RichTextBox.cs:
11002           - Implemented all seven Find() variants
11003           - Implemented GetCharFromPosition()
11004           - Implemented GetCharIndexFromPosition()
11005           - Implemented GetLineFromIndex()
11006           - Implemented GetPositionFromCharIndex();
11007           - Implemented SaveFile for PlainText and UnicodeText
11008           - Fixed set_Font, now setting a new font applies that font to
11009             the whole document
11010           - Implemented generic Document to RTF converter
11011           - Implemented SaveFile for RichText format (still missing unicode
11012             conversion for non-ansi chars)
11013           - Implemented get_Rtf
11014           - Implemented get_SelectedRtf
11015
11016 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11017
11018         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11019           to allow any captures to be released before triggering OnClick. This
11020           way a click handler may capture the mouse without interference.
11021         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11022           This way we send them even though X may not allow a grab (if the window
11023           isn't visible, for example)
11024
11025 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11026
11027         * DataGridViewRowEventArgs.cs: DataGridView implementation
11028         * DataGridViewElement.cs: DataGridView implementation
11029         * DataGridViewComboBoxCell.cs: DataGridView implementation
11030         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11031         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11032         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11033         * ImageLayout.cs: DataGridView implementation
11034         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11035         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11036         * DataGridViewSelectionMode.cs: DataGridView implementation
11037         * IDataGridViewEditingControl.cs: DataGridView implementation
11038         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11039         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11040         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11041         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11042         * DataGridViewColumnSortMode.cs: DataGridView implementation
11043         * DataGridView.cs: DataGridView implementation
11044         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11045         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11046         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11047         * Padding.cs: DataGridView implementation
11048         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11049         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11050         * DataGridViewRowEventHandler.cs: DataGridView implementation
11051         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11052         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11053         * DataGridViewButtonCell.cs: DataGridView implementation
11054         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11055         * DataGridViewEditMode.cs: DataGridView implementation
11056         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11057         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11058         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11059         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11060         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11061         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11062         * DataGridViewCellEventHandler.cs: DataGridView implementation
11063         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11064         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11065         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11066         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11067         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11068         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11069         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11070         * QuestionEventArgs.cs: DataGridView implementation
11071         * IDataGridViewEditingCell.cs: DataGridView implementation
11072         * DataGridViewTriState.cs: DataGridView implementation
11073         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11074         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11075         * DataGridViewColumnCollection.cs: DataGridView implementation
11076         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11077         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11078         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11079         * DataGridViewColumn.cs: DataGridView implementation
11080         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11081         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11082         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11083         * DataGridViewRow.cs: DataGridView implementation
11084         * DataGridViewImageCellLayout.cs: DataGridView implementation
11085         * DataGridViewImageCell.cs: DataGridView implementation
11086         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11087         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11088         * DataGridViewHeaderCell.cs: DataGridView implementation
11089         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11090         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11091         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11092         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11093         * QuestionEventHandler.cs: DataGridView implementation
11094         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11095         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11096         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11097         * DataGridViewCell.cs: DataGridView implementation
11098         * DataGridViewCellEventArgs.cs: DataGridView implementation
11099         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11100         * DataGridViewCellStyle.cs: DataGridView implementation
11101         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11102         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11103         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11104         * TextFormatFlags.cs: DataGridView implementation
11105         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11106         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11107         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11108         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11109         * DataGridViewButtonColumn.cs: DataGridView implementation
11110         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11111         * HandledMouseEventArgs.cs: DataGridView implementation
11112         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11113         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11114         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11115         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11116         * DataGridViewRowCollection.cs: DataGridView implementation
11117         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11118         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11119         * DataGridViewHitTestType.cs: DataGridView implementation
11120         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11121         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11122         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11123         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11124         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11125         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11126         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11127         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11128         * DataGridViewContentAlignment.cs: DataGridView implementation
11129         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11130         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11131         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11132         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11133         * DataGridViewPaintParts.cs: DataGridView implementation
11134         * DataGridViewCellCollection.cs: DataGridView implementation
11135         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11136         * DataGridViewImageColumn.cs: DataGridView implementation
11137         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11138         * DataGridViewElementStates.cs: DataGridView implementation
11139         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11140         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11141         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11142         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11143         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11144         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11145         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11146         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11147         * DataGridViewTextBoxCell.cs: DataGridView implementation
11148         * DataGridViewBand.cs: DataGridView implementation
11149         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11150         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11151         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11152         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11153         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11154         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11155         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11156         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11157         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11158         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11159         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11160
11161 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11162
11163         * ThemeWin32Classic.cs: 
11164           - Draw the outside focus rectangle around buttons
11165           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11166             doesn't use end caps for every dash of a line anymore. This
11167             workaround ignores the forecolor.
11168
11169 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11170
11171         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11172           endian safe.
11173
11174 2005-11-07  Jackson Harper  <jackson@ximian.com>
11175
11176         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11177
11178 2005-11-07  Jackson Harper  <jackson@ximian.com>
11179
11180         * ScrollableControl.cs: Calculate the maximum and change vars
11181         (more) correctly so that scrollbars appear as a sensible size.
11182
11183 2005-11-04  Jackson Harper  <jackson@ximian.com>
11184
11185         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11186         collection.
11187         * TreeView.cs: When the tree is sorted null out the top_node so
11188         that it is recalculated.
11189         - Use dotted lines instead of dashed lines to match MS better.
11190
11191 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11192
11193         * ListView.cs: 
11194           - Implements key search for items. Useful when browsing files with FileDialog
11195           - When changing view mode or when clear the items reset scrollbar positions
11196
11197 2005-11-04  Jackson Harper  <jackson@ximian.com>
11198
11199         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11200         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11201         as to what the method may do as there is no real way of creating a
11202         derived CurrencyManager and calling the method. 
11203
11204 2005-11-03  Jackson Harper  <jackson@ximian.com>
11205
11206         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11207         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11208         method which seems to just be used internally to refresh the tabs.
11209
11210 2005-11-03  Jackson Harper  <jackson@ximian.com>
11211
11212         * TabControl.cs: Implement the remove method. Fix some broken
11213         comments.
11214
11215 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11216
11217         * DateTimePicker.cs:
11218           - Added missing DateTimePickerAccessibleObject class
11219           - Added missing events
11220           - Added OnFontChanged method
11221         * Form.cs: Added missing attributes
11222         * TreeView.cs: Added missing attributes
11223
11224 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
11225
11226         * GridItemCollection.cs: Fix signatures
11227
11228 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11229
11230         * XplatUI.cs: Updated build rev/date
11231         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
11232           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
11233         * Application.cs: Trigger context-specific ExitThread events
11234
11235 2005-11-03  Jackson Harper  <jackson@ximian.com>
11236
11237         * Menu.cs:
11238         * MainMenu.cs:
11239         * GridTableStylesCollection.cs:
11240         * Timer.cs:
11241         * TabPage.cs:
11242         * HelpProvider.cs:
11243         * StatusBar.cs:
11244         * MonthCalendar.cs: Signature fixes
11245
11246 2005-11-03  Jackson Harper  <jackson@ximian.com>
11247
11248         * TreeNodeCollection.cs: Remove should not be virtual.
11249         * TreeView.cs: Implement the last of the missing methods.
11250
11251 2005-11-03  Jackson Harper  <jackson@ximian.com>
11252
11253         * TreeNodeConverter.cs: Implement to get off my class-status back.
11254
11255 2005-11-03  Jackson Harper  <jackson@ximian.com>
11256
11257         * TreeView.cs: Hookup the bits for drag and drop.
11258         * TreeNode.cs: Don't cache the tree_view or index anymore, now
11259         that nodes can be moved from tree to tree easily this just causes
11260         all sorts of problems.
11261         * TreeNodeCollection: Don't need to give treenodes an index and
11262         treeview anymore when they are added, these are computed on the
11263         fly. Also make sure to remove a node before its added.
11264
11265 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11266
11267         * TextControl.cs:
11268           - Added CaretSelection enum
11269           - Added comparison methods to Marker struct, makes selection code
11270             more readable
11271           - Added SelectionStart and SelectionEnd as 'moveable' location for
11272             the CaretDirection enum and handler
11273           - Added selection_prev variable to track optimized invalidation for
11274             word and line selection
11275           - Added SelectionVisible property (returns true if there is a valid 
11276             selection)
11277           - Switched CaretHasFocus to only display the caret if there is no
11278             visible selection
11279           - Avoiding StringBuilder.ToString to retrieve a single char, instead
11280             using the direct character index; should be much faster
11281           - Added various conditional debug statements
11282           - Fixed invalidation calculation for selection ranges
11283           - Added ExpandSelection() method to support word and line selection
11284           - Switched SetSelectionToCaret to use new Marker compare overloads
11285           - Added central IsWordSeparator() method to determine word 
11286             separators/whitespace and FindWordSeparator() to streamline common
11287             usage of IsWordSeparator()
11288         * TextBoxBase.cs:
11289           - Removed unneeded grabbed variable, it was just mirroring
11290             Control.Capture
11291           - No longer firing OnTextChanged event when Text setter is called,
11292             since the base will fire the event for us
11293           - Added handling of Ctrl-Up/Down selection
11294           - Added handling of Shift-Cursorkey selection
11295           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
11296             words
11297           - Added handling of Shift and Ctrl-Shift-Home/End selection
11298           - Removed some debug output
11299           - Added handling for single/double/tripple-click to place caret/
11300             select word/select line respectively (Fixes bug #76031)
11301           - Added support for drag expansion of word/line selection
11302         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
11303           current selection
11304
11305 2005-11-02  Jackson Harper  <jackson@ximian.com>
11306
11307         * X11Dnd.cs: If the drag is going to and from a MWF window just
11308         copy the data instead of sending it out through the X Selection
11309         mechanism.
11310
11311 2005-11-02  Jackson Harper  <jackson@ximian.com>
11312
11313         * X11Dnd.cs:
11314         * XplatUIX11.cs: When in a drag we don't want motion notify
11315         messages to get passed on to the other controls. This prevents
11316         mouse move messages from showing up in the drag source.
11317
11318 2005-11-02  Jackson Harper  <jackson@ximian.com>
11319
11320         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
11321         the correct button is release to end a drag.
11322         * XplatUIX11.cs: Make the button state internal so the drag system
11323         can access it.  Dragging needs to know about all button releases,
11324         not just left button.
11325
11326 2005-11-02  Miguel de Icaza  <miguel@novell.com>
11327
11328         * Form.cs (Icon): If the icon is null, reset the icon to the
11329         default value. 
11330
11331         * Cursor.cs: When writing the AND-mask bitmap do not include the
11332         number of colors, but hardcode those to two (black and white),
11333         fixes the loading of color cursors (Paint Dot Net).
11334
11335         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
11336         turn off autoscaling.
11337
11338         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
11339
11340 2005-11-02  Jackson Harper  <jackson@ximian.com>
11341
11342         * X11Dnd.cs: Make sure to send a status message if the pointer
11343         enters a control that can not accept a drop, otherwise the cursor
11344         isn't updated correctly. Also tried to compress the lines of code
11345         a bit.
11346
11347 2005-11-02  Jackson Harper  <jackson@ximian.com>
11348
11349         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
11350         set actions correctly.  This isn't perfect as XDND and win32 have
11351         some differences on how you allow actions. I'll clear this up by
11352         adding a path for drag from MWF to MWF windows.
11353         * XplatUIX11.cs: Hook into the dnd system.
11354
11355 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
11356
11357         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
11358         previously shown but they are no longer need it. Very obvious when 
11359         browsing files with FileDialog.
11360
11361 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
11362
11363         * Control.cs: We always need to call OnPaintBackground. We pretty much
11364           ignore AllPaintingInWmPaint and always do the painting there, whether 
11365           it's set or not, since we always ignore the WM_ERASEBKGND message 
11366           (which we don't generate on X11). This fixes #76616.
11367         * Panel.cs: Removed unneeded background painting. This happens properly
11368           in Control.cs already
11369
11370 2005-10-31  Mike Kestner  <mkestner@novell.com>
11371
11372         * Menu.cs: Add items to collection before setting their index.
11373         * MenuItem.cs : add range checking with ArgumentException like MS.
11374         [Fixes #76510]
11375
11376 2005-10-31  Jackson Harper  <jackson@ximian.com>
11377
11378         * ListBox.cs: Invalidate if the area is visible at all not just
11379         contained in the visible rect. Fixes unselection of semi visible
11380         items.
11381
11382 2005-10-31  Jackson Harper  <jackson@ximian.com>
11383
11384         * Control.cs: Consistently name the dnd methods. Make them
11385         internal so we can override them to match some MS behavoir
11386         internally.
11387         * Win32DnD.cs: Use the new consistent names.
11388
11389 2005-10-31  Jackson Harper  <jackson@ximian.com>
11390
11391         * TreeView.cs: Don't draw the selected node when we lose focus.
11392
11393 2005-10-31  Jackson Harper  <jackson@ximian.com>
11394
11395         * X11Dnd.cs: We still need to reset the state even though a full
11396         reset isn't being done, otherwise status's still get sent all over
11397         the place.
11398
11399 2005-10-31  Jackson Harper  <jackson@ximian.com>
11400
11401         * Control.cs: Make the dnd_aware flag internal so the dnd
11402         subsystem can check it. Catch exceptions thrown in dnd handlers to
11403         match MS behavoir.
11404         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
11405         * X11Dnd.cs: Handle null data in the converters. Set the XDND
11406         version when sending a XdndEnter. Use the control/hwnd dnd_aware
11407         flags to reduce the number of dnd enters/status's sent.
11408
11409 2005-10-31  Jackson Harper  <jackson@ximian.com>
11410
11411         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
11412
11413 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
11414
11415         * PictureBox.cs: Fixes 76512
11416
11417 2005-10-28  Jackson Harper  <jackson@ximian.com>
11418
11419         * X11Dnd.cs: Early implementation to support winforms being a drag
11420         source for data on X11. Also restructured the converters so they
11421         can go both ways now.
11422         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
11423         
11424 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
11425
11426         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
11427           clipboard requests
11428
11429 2005-10-27  Jackson Harper  <jackson@ximian.com>
11430
11431         * TreeNode.cs: Implement serialization so my DnD examples will work.
11432
11433 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
11434
11435         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
11436           TreeView.cs: Don't dispose objects that are not owned.
11437           
11438 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
11439
11440         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
11441           should retrieve the current cursor and report that, but XplatUI
11442           doesn't (yet) have an interface for that (and I'm not sure I even
11443           can, on X11)
11444         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
11445           until any message loop processing is done (and the WM_SETCURSOR
11446           replaces the cursor to the proper one)
11447         * XplatUIX11.cs: 
11448           - Fixed override behaviour, we can't set the cursor globally on X11, 
11449             just for our windows.
11450           - Invalidating the System.Drawing X11 display handle when we are
11451             shutting down
11452         * Control.cs: Fix to make csc happy
11453
11454 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
11455
11456         * TextBoxBase.cs: 
11457           - get_Text: Add last line (without trailing newline) to returned
11458             value (Fixes 76212)
11459           - get_TextLength: Count last line in returned length
11460           - ToString: Call Text property instead of duplicating code
11461
11462 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
11463
11464         * ImageList.cs: Dispose ImageAttributes objects.
11465
11466 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11467
11468         * ImageList.cs: Use attribute constructors with less arguments where
11469           possible.
11470
11471 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
11472
11473         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
11474           Use typeof instead of strings when assembly is referenced. Added
11475           some more comments.
11476
11477 2005-10-21  Jackson Harper  <jackson@ximian.com>
11478
11479         * ListView.cs: Raise a double click event. Also tried to somewhat
11480         fix when the selectedindexchanged event is raised. Its still
11481         broken though.
11482
11483 2005-10-21  Jackson Harper  <jackson@ximian.com>
11484
11485         * TreeView.cs: New method to invalidate the plus minus area of a
11486         node without invalidating the whole node (maybe this can be used
11487         in some more places).
11488         * TreeNodeCollection.cs: When adding to an empty node we need to
11489         invalidate its plus minus area so the little block shows up.
11490         
11491 2005-10-21  Jackson Harper  <jackson@ximian.com>
11492
11493         * TreeView.cs: Make sure that when we invalidate a node the bounds
11494         are big enough to cover the selected box and the focus
11495         rectangle. Use a different colour for the lines connecting nodes
11496         so they show up with all themes.
11497
11498 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11499
11500         * NativeWindow.cs: Don't call anything that could call into the driver,
11501           we might be on a different thread.
11502
11503 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11504
11505         * Control.cs(Dispose): Since Dispose might run on a different thread,
11506           make sure that we call methods that could call into the driver via
11507           invoke, to avoid thread issues
11508
11509 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11510
11511         * XplatUI.cs: Removed finalizer
11512         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
11513           not allowing to be called on the finalizer thread.
11514
11515 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
11516
11517         * ImageList.cs:
11518           - Reverted r51889 and r51891.
11519           - Added ImageListItem class that stores unmodified image items and image
11520             properties required to create list images until handle is created.
11521           - Added AddItem and moved image creation logic to AddItemInternal.
11522           - Added CreateHandle method that creates images based on unmodified items.
11523           - Added DestroyHandle that changes state to store unmodified items.
11524           - Add and AddStrip methods no more create handle.
11525           - ReduceColorDepth has no return value.
11526           - Dispose destroys handle.
11527           - Modified other methods to reflect the above changes.
11528           - Implemented key support.
11529           - Added profile 2.0 members and attributes.
11530           - Added private Reset and ShouldSerialize methods that provide the same
11531             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
11532             them as they are private.
11533           - Added some more comments about implementation details.
11534
11535 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11536
11537         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
11538
11539 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11540
11541         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
11542
11543 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11544
11545         * DataGridDrawingLogic.cs: Fixes column hit calcultation
11546         * DataGridColumnStyle.cs: Remove debug message
11547
11548 2005-10-20  Jackson Harper  <jackson@ximian.com>
11549
11550         * TreeView.cs: We can always get input keys regardless of whether
11551         or not editing is enabled. They are used for navigation.
11552
11553 2005-10-20  Jackson Harper  <jackson@ximian.com>
11554
11555         * TreeNode.cs: Use the viewport rect for determining if a node
11556         needs to be moved for visibility. Don't use Begin/End edit. This
11557         calls a full refresh when its done.
11558         * TreeView.cs: New SetBottom works correctly.  Make the viewport
11559         rect property internal so the treenodes can see it. When clicking
11560         on a node we need to ensure that its visible because it might just
11561         be partly visible when clicked.
11562
11563 2005-10-20  Jackson Harper  <jackson@ximian.com>
11564
11565         * TreeNodeCollection.cs: Remove debug code.
11566
11567 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11568
11569         * Datagrid.cs: Implements column sorting in Datagrid
11570         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
11571
11572 2005-10-20  Jackson Harper  <jackson@ximian.com>
11573
11574         * TreeNodeCollection.cs: Remove items properly. Update the correct
11575         area after removing them.
11576
11577 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11578
11579         * Datagrid.cs: Should not call base.OnPaintBackground
11580
11581 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11582
11583         * XplatUIX11.cs (GetMessage):
11584           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
11585             window instead of client window
11586           - Now properly calculates NC_xBUTTONUP message coordinates
11587           - ScreenToMenu now properly calculates it's coordinates of whole 
11588             window, since menus are in the whole window, not in the client
11589             window
11590           - Added WholeToScreen coordinate translation method
11591
11592 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
11593
11594         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
11595           want to return a message, loop back to the beginning of the function
11596           and grab the next real message to process instead.
11597
11598 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11599
11600         * Splitter.cs: Properly set limits if no filler control is used
11601
11602 2005-10-19  Jackson Harper  <jackson@ximian.com>
11603
11604         * ColorDialog.cs: Don't show the help button if it is not enabled
11605         instead of disabling it (this is what MS does). Don't create the
11606         panel until the dialog is run, otherwise the vars (such as
11607         ShowHelp) are not set yet.
11608
11609 2005-10-19  Jackson Harper  <jackson@ximian.com>
11610
11611         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
11612         are reduced when adding nodes.
11613         * TreeNode.cs:
11614         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
11615         tree.
11616         
11617 2005-10-19  Jackson Harper  <jackson@ximian.com>
11618
11619         * FolderBrowserDialog.cs: End editing our treeview so the window
11620         actually gets refreshed.
11621
11622 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11623
11624         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
11625           Obsoleted handling of WM_ERASEBKGND, now always draws our background
11626           inside of WM_PAINT
11627
11628 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11629
11630         * MenuAPI.cs: Returns after Hidding window
11631         * XplatUIX11.cs: Added TODO found while debugging menu issues
11632
11633 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11634
11635         * XplatUIX11.cs: Do not re-map the whole window when it's size
11636           becomes non-zero unless it's supposed to be actually visible
11637
11638 2005-10-18  Jackson Harper  <jackson@ximian.com>
11639
11640         * TreeView.cs: We don't need to keep a count anymore.
11641         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
11642         use the Grow method.
11643
11644 2005-10-18  Jackson Harper  <jackson@ximian.com>
11645
11646         * TreeNodeCollection.cs: Insert is not supported on arrays, so
11647         implement it manually here.
11648
11649 2005-10-18  Jackson Harper  <jackson@ximian.com>
11650
11651         * ImageList.cs: Dont kill the list when the colour depth is
11652         changed, just change the colour depth of all the images.
11653         - Same goes for setting the image size. Just resize them all
11654         instead of killing the list softly.
11655
11656 2005-10-18  Jackson Harper  <jackson@ximian.com>
11657
11658         * Control.cs: Don't invalidate empty rectangles.
11659
11660 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11661
11662         * ListViewItem.cs:
11663           - Adds checked item to the Checked/Item lists (where empty before)
11664           - Do not add items to the Selected lists if they are already present
11665         * ListView.cs:
11666           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
11667           - When deleting items make sure that we delete them for the Selected
11668           and Checked list also.
11669
11670 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11671
11672         * Label.cs: Dispose objects no longer used
11673         * ThemeWin32Classic.cs: Dispose objects no longer used
11674
11675 2005-10-18  Jackson Harper  <jackson@ximian.com>
11676
11677         * TabControl.cs: Don't refresh the whole control when the tabs are
11678         scrolled, we just need to refresh the tab area.
11679
11680 2005-10-17  Jackson Harper  <jackson@ximian.com>
11681
11682         * XplatUIX11.cs: Compress code a little bit. Only calculate the
11683         after handle when we need it.
11684
11685 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11686
11687         * Control.cs: When the parent size changes, recalculate anchor 
11688           positions. Partial fix for #76462
11689
11690 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11691
11692         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
11693           drawn. Fixes #76462
11694
11695 2005-10-17  Jackson Harper  <jackson@ximian.com>
11696
11697         * MonthCalendar.cs: Don't create the numeric up down until our
11698         handle is created. Otherwise our handle is created in the
11699         constructor and we don't know if we are a WS_CHILD or WS_POPUP
11700         yet.
11701
11702 2005-10-17  Jackson Harper  <jackson@ximian.com>
11703
11704         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
11705         correctly.
11706
11707 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11708         * TreeNode.cs : small logical fix (was using local var instead of field)
11709         
11710 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11711
11712         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
11713
11714 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11715
11716         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
11717
11718 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
11719
11720         * Control.cs: 
11721           - Re-implemented anchoring code. My first version was really broken.
11722             This fixes bug #76033. Unlike the previous implementation we will
11723             no longer have round errors since all numbers are calculated from
11724             scratch every time. Removed various anchor-related obsolete vars.
11725           - InitLayout no longer causes layout event firing and layout to be 
11726             performed
11727
11728 2005-10-16  Jackson Harper  <jackson@ximian.com>
11729
11730         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
11731         which was broken).
11732
11733 2005-10-16  Jackson Harper  <jackson@ximian.com>
11734
11735         * TabControl.cs: Remove debug code.
11736
11737 2005-10-16  Jackson Harper  <jackson@ximian.com>
11738
11739         * XEventQueue.cs: Increase the default queue size (very simple
11740         apps needed to grow the queue).
11741         * Hwnd.cs: No finalizer so we don't need to suppress
11742         finalization. Compute the invalid area manually so a new rectangle
11743         does not newto be created.
11744         * ScrollableControl.cs: Don't set any params (otherwise visibility
11745         isn't set correctly).
11746         * MdiChildContext.cs: New constructor takes the mdi parent so it
11747         doesn't have to be computed and avoids a crash on windows. Draw
11748         the window icon properly, and allow the text to be seen.
11749         * Form.cs: Use new MdiChildContext constructor. Make sure the
11750         child context isn't null in wndproc.
11751         * TabControl.cs: Don't set focus, this is muddling keyboard
11752         behavoir. Expand the tab rows when a window size increase will
11753         allow extra tabs to be seen. Don't allow tabs smaller than the
11754         width of a window to be scrolled out of view.
11755         * TreeNode.cs:
11756         * TreeView.cs: Use measure string to calculate a nodes width, the
11757         width is cached and only updated when the text or the font is
11758         changed. Don't check for expand/collapse clicks on the first level
11759         nodes if root lines are disabled.
11760         
11761 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
11762
11763         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
11764
11765 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11766
11767         * DataGridBoolColumn.cs: fixes warning
11768
11769 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11770
11771         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
11772         to match more to match more precisely the MS Net behavior
11773
11774 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11775
11776         * Hwnd.cs: Added field to track if window is mapped
11777         * XplatUIX11.cs: 
11778           - Unmap windows if they become 0-size, re-map when 
11779             they are >0 again; fixes #76035
11780           - Re-set our error handler after initializing X11Desktop
11781             to override any error handlers Gtk or whatever was called
11782             may have set.
11783
11784 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11785
11786         * CheckedListBox.cs: Removed unused vars
11787         * ListView.cs: Fixed signatures
11788         * RichTextBox.cs: Removed unused vars
11789         * TextBoxBase.cs: Removed unused vars
11790         * XplatUIWin32.cs: Removed unused vars
11791         * XplatUIX11.cs: Removed unused vars
11792         * XplatUI.cs: Updated version and date to latest published
11793
11794 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11795
11796         * Cursor.cs: Added private .ctor to work around a bug in
11797           resourceset (Thanks to Geoff Norton for the help on this)
11798         * SplitterEventArgs.cs: Made fields accessible so we don't
11799           waste boatloads of objects and can reuse the same one
11800           in Splitter
11801         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
11802           any captions and borders when generating screen coordinates
11803         * Splitter.cs: Reimplemented control, now fully complete, uses
11804           rubberband drawing, supports and obeys all properties, has
11805           proper cursors
11806
11807 2005-10-13  Miguel de Icaza  <miguel@novell.com>
11808
11809         * Form.cs (Form): Setup default values for autoscale and
11810         autoscale_base_size;  Make these instance variables, not static
11811         variables. 
11812
11813         (OnLoad): on the first load, adjust the size of the form.
11814
11815 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11816
11817         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
11818           width argument to DrawReversibleRectangle()
11819         * XplatUIWin32.cs, XplatUIX11.cs: 
11820           - Implemented width for DrawReversibleRectangle()
11821           - Added logic to DrawReversibleRectangle that recognizes a zero
11822             width or height and only draws a line in that situation
11823         
11824 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
11825
11826         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
11827         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
11828         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
11829           method (it uses our FosterParent window to get a graphics context)
11830
11831 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
11832
11833         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
11834           and SetWindowBackground methods
11835         * Control.cs:
11836           - Setting proper ControlStyles
11837           - We no longer call XplatUI.SetWindowBackground and XplatUI.
11838             EraseWindowBackground, instead we draw the window background
11839             ourselves in PaintControlBackground. This behaviour is
11840             required to match MS, where, when OnPaintBackground is not
11841             called, the background is not drawn.
11842           - Removed unneeded Refresh() in set_Text
11843         * Hwnd.cs: Dropped the ErasePending support. No longer needed
11844         * XplatUIX11.cs:
11845           - Created DeriveStyles method to translate from CreateParams to
11846             FormBorderStyle and TitleStyle, also handles BorderStyle (which
11847             matches FormBorderStyle enum values)
11848           - Consolidated SetHwndStyles and CalculateWindowRect border/title
11849             style calculations into single DeriveStyles method
11850           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
11851             from redrawing the whole window on any resize or expose.
11852           - Fixed CreateWindow usage of SetWindowValuemask. Before not
11853             all styles were applied to our whole/client window appropriately
11854           - Removed EraseWindowBackground() and SetWindowBackground() methods
11855           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
11856             no longer clear/redraw the background through X
11857           - Removed handling of erase_pending bit, we have no use for it (or
11858             so it seems)
11859         * XplatUIOSX.cs:
11860           - Removed generation and handling of WM_ERASEBKGND message
11861           - Removed EraseWindowBackground() and SetWindowBackground() methods
11862           - Removed handling of hwnd.ErasePending flag
11863         * XplatUIWin32.cs:
11864           - Removed EraseWindowBackground() and SetWindowBackground() methods
11865           - We no longer call EraseWindowBackground on PaintEventStart, we 
11866             ignore the fErase flag, erasing is handled in Control in the
11867             background handler
11868         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
11869           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
11870           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
11871           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
11872           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
11873           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
11874           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
11875
11876 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
11877
11878         * PropertyGrids.cs: Get sub properties
11879         * PropertyGridView.cs: Fix drawing code
11880
11881 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11882
11883         * ListBox.cs: Fixes 76383
11884
11885 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11886
11887         * DataGridTextBoxColumn.cs: Sets location and size before attachment
11888         * ThemeWin32Classic.cs: Fixes border drawing and calculations
11889         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
11890
11891
11892 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11893
11894         * ComboBox.cs: Fixes border drawing
11895
11896 2005-10-10  Miguel de Icaza  <miguel@novell.com>
11897
11898         * MimeIcon.cs: Ignore errors if the file can not be read.
11899
11900 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11901
11902         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
11903          - Fixed border calculations
11904          - Fixed horizontal scrolling in single column listboxes
11905          - Fixed drawing issues
11906
11907 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
11908
11909         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
11910           FormBorderStyle enum
11911         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
11912           code to determine FormBorderStyles from CreateParams
11913         * Form.cs:
11914           - Fixed bug where we'd set the wrong window styles if we were
11915             not creating an MDI window
11916           - Added call to XplatUI.SetBorderStyle when form borders are set
11917         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
11918         * Hwnd.cs:
11919           - Removed obsolete edge style
11920           - Switched from BorderStyle to FormBorderStyle
11921         
11922 2005-10-10  Jackson Harper  <jackson@ximian.com>
11923
11924         * Form.cs: Use the property to get the window handle instead of
11925         accessing it directly. Prevents a null reference exception.
11926
11927 2005-10-10  Jackson Harper  <jackson@ximian.com>
11928
11929         * TreeView.cs: Don't adjust the rect given to DrawString now that
11930         our libgdiplus draws correctly.
11931
11932 2005-10-08  Jackson Harper  <jackson@ximian.com>
11933
11934         * TreeView.cs: Don't try to find the clicked on node if there are
11935         no nodes in the tree.
11936
11937 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11938
11939         * RichTextBox.cs:
11940
11941           restore
11942
11943 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11944
11945         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
11946           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
11947           ErrorProvider.cs:
11948           Use ResPool for brushes and dispose System.Drawing objects that
11949           are not used anymore.
11950
11951 2005-10-07  Jackson Harper  <jackson@ximian.com>
11952
11953         * MdiChildContext.cs: Use the new borders instead of drawing them
11954         ourselves.
11955
11956 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11957
11958         * Calling UpdateBounds after changing the window's BorderStyle 
11959         since the style can change the ClientSize
11960
11961 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11962
11963         * Control.cs: Made PaintControlBackground virtual
11964         * Panel.cs: Overriding PaintControlBackground instead of using paint
11965           event; paint event method was interfering with 'real' users of the
11966           event.
11967
11968 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11969
11970         * ThemeWin32Classic.cs: remove border drawing since it is handled
11971         by the base control class now and was causing double border drawing.
11972
11973 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11974
11975         * Panel.cs: Redraw our background on paint. Not a pretty solution,
11976           but it does seem to match MS behaviour. This fixes bug #75324
11977
11978 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11979
11980         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
11981           somewhat hackish looking
11982
11983 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
11984
11985         * TextBoxBase.cs:
11986           - We now accept Enter even if AcceptEnter is false, if the containing
11987             form does not have an AcceptButton configured (fixes bug #76355)
11988           - Calculations are now fixed to no longer use Width/Height, but
11989             ClientSize.Width/Height, since we now support borders (this was
11990             a result of fixing borders and therefore bug #76166)
11991           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
11992             true (fixes bug #76354)
11993         
11994 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11995
11996         * Control.cs: 
11997           - Defaulting BorderStyle and setting it in XplatUI when our window 
11998             is created
11999           - Added enum check to InternalBorderStyle setter
12000         * XplatUIX11.cs: 
12001           - Added drawing of window borders
12002           - Now properly calculates WM decorations offset for toplevel 
12003             windows (fixes bug #74763)
12004         * XplatUIWin32.cs: 
12005           - Implemented BorderStyles for windows (we're letting win32 draw 
12006             the border for us)
12007           - Fixed the signature for SetWindowLong
12008         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12009           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12010           setting borders
12011         * UpDownBase.cs: Remove drawing of borders, this is handled by
12012           the driver, outside the client area
12013         * ListView.cs: Removed bogus border calculations. The control should
12014           be oblivious to borders, since those are not part of the client
12015           area. 
12016         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12017         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12018           drawing code
12019
12020 2005-10-06  Jackson Harper  <jackson@ximian.com>
12021
12022         * MdiChildContext.cs: Clear out the old virtual position remove
12023         all the unneeded calls to CreateGraphics.
12024
12025 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12026
12027         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12028
12029 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12030
12031         * Form.cs: 
12032           - Added loading and setting of our new default icon
12033           - Only set icon if window is already created
12034
12035 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12036
12037         * Label.cs:
12038           - Do not explicitly set the foreground and background colors, to
12039             allow inheriting from parents (fixes #76302)
12040           - Use Control's InternalBorderStyle property to deal with borders
12041
12042 2005-10-06  Jackson Harper  <jackson@ximian.com>
12043
12044         * MdiChildContext.cs: Use the new xplatui function to draw a
12045         reversible rect.
12046
12047 2005-10-06  Jackson Harper  <jackson@ximian.com>
12048
12049         * Form.cs: Add the parent before creating the child context cause
12050         we need the parent when setting up the child.
12051
12052 2005-10-06  Jackson Harper  <jackson@ximian.com>
12053
12054         * FolderBrowserDialog.cs: redo the tree population code so a
12055         second thread isn't used. Should be a lot faster and more stable
12056         now.
12057
12058 2005-10-05  Jackson Harper  <jackson@ximian.com>
12059
12060         * TreeView.cs: There are no expand/collapse boxes if the node has
12061         no children.
12062
12063 2005-10-05  Jackson Harper  <jackson@ximian.com>
12064
12065         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12066
12067 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12068
12069         * FileDialog.cs: Fix InitialDirectory
12070
12071 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12072
12073         * ComboBox.cs:
12074                 - Fixes changing between styles
12075                 - Fixes simple mode
12076                 - Fixes last item crashing when navigating with keyboard
12077
12078 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12079
12080         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12081
12082 2005-10-05  Jackson Harper  <jackson@ximian.com>
12083
12084         * TreeView.cs: If updating the root node do a full refresh.
12085         * TreeNode.cs: The root node should be expanded by default. Also
12086         added a utility prop to tell if we are the root node.
12087         * TreeNodeCollection.cs: Only refresh if the node we are being
12088         added to is expanded. Also added a comment on a potential
12089         optimization.
12090         
12091 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12092
12093         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12094           in dispose method. Fixes #76330
12095
12096 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12097
12098         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12099
12100                 - Implements vertical and horizontal scrolling using XplatUI
12101                 - Fixes keyboard navagation
12102                 - Fixes EnsureVisible
12103                 - Drawing fixes
12104                 - Handles and draws focus properly
12105
12106
12107 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12108
12109         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12110           Create handle. NET_2_0: Destroy handle when value is null.
12111
12112 2005-10-03  Jackson Harper  <jackson@ximian.com>
12113
12114         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12115         revert and a new patch to prevent the thumb from refreshing so
12116         much.
12117
12118 2005-10-02  Jackson Harper  <jackson@ximian.com>
12119
12120         * ScrollBar.cs: Don't update position if it hasn't actually
12121         changed. This occurs when you hold down the increment/decrement
12122         buttons and the thumb gets to the max/min.
12123
12124 2005-10-01  Jackson Harper  <jackson@ximian.com>
12125
12126         * Form.cs:
12127         * MdiChildContext.cs:
12128         * MdiClient.cs: Implement ActiveMdiChild in Form.
12129
12130 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12131
12132         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12133
12134 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12135
12136         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12137           be found
12138
12139 2005-09-30  Jackson Harper  <jackson@ximian.com>
12140
12141         * ListBox.cs: Don't do a full refresh unless some data has
12142         actually changed.
12143
12144 2005-09-30  Jackson Harper  <jackson@ximian.com>
12145
12146         * TreeView.cs: Make sure that the checkboxes size is factored in
12147         even when not visible.
12148
12149 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12150
12151         * FileDialog.cs: Fix Jordi's build break
12152
12153 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12154
12155         * FileDialog.cs: 
12156                 - Use standard the Windows colours for the combobox as espected
12157                 - Dispose objects that use resouces when no longer need them
12158
12159 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12160
12161         * X11DesktopColors.cs: Initial incomplete implementation
12162         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12163
12164 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12165
12166         * Theme.cs: 
12167           - Switched Theme color names to match the names defined in 
12168             System.Drawing.KnownColors. Life's hard enough, no need to make 
12169             it harder.
12170           - Added setters to all theme color properties so themes can set
12171             their color schemes. The setters also propagate the color changes
12172             to System.Drawing.KnownColors via reflection
12173         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12174           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12175           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12176           use the new, more logical theme color names
12177         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12178           post-NT colors
12179         * ThemeWin32Classic.cs:
12180           - Removed code to set the old classic Windows colors. Instead it
12181             now relies on the colors returned by System.Drawing.KnownColors
12182             which will be either modern static colors (Unix) or colors
12183             read from the user's configuration (Win32)
12184           - Updated to use the new, more logical theme color names
12185           - Switched DataGrid drawing code to use only Theme colors instead of
12186             a mix of System.Drawing.KnownColors and Theme colors
12187           - DrawFrameControl(): Removed code that fills the button area, the
12188             fill would overwrite any previous fill done by a control. This
12189             fixes bug #75338 
12190           - Added DrawReversibleRectangle() stub
12191         * ScrollableControl.cs: Set visible state to false when scrollbars
12192           are removed (pdn fix)
12193         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12194           DrawReversibleRectangle() method to allow drawing primitive 
12195           'rubber bands'
12196         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12197
12198 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12199
12200         * ImageList.cs: Add(Icon): Create handle.
12201
12202 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12203
12204         * ListView.cs:
12205         * ThemeWin32Classic.cs:
12206                 - Fixes detail mode
12207                 - Sets clippings
12208                 - Issues with drawing
12209
12210 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12211
12212         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12213           source has to be the ImageList.
12214
12215 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12216
12217         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12218
12219 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12220
12221         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
12222
12223 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12224
12225         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
12226
12227 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
12228         * GridItem.cs: Fixed TODOs
12229         * GridItemCollection.cs: Added ICollection interface
12230
12231 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12232
12233         * ImageList.cs: Resize icons when needed.
12234
12235 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
12236
12237         * ListViewItem.cs
12238                 - Fixes GetBounds and returns on screen rects
12239         * ListView.cs:
12240                 - Fixes vertical and horzintal scrolling of items
12241         * ThemeWin32Classic.cs:
12242                 - Fixes drawing
12243                 
12244 2005-09-29  Raja R Harinath  <harinath@gmail.com>
12245
12246         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
12247
12248 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
12249
12250         * ImageList.cs: Added comments about handle creation. Moved Handle,
12251           HandleCreated and OnRecreateHandle implementations to ImageCollection.
12252           Handle is created in Add methods.
12253
12254 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12255          
12256         * DataGridDrawingLogic.cs: 
12257                 - Takes rows into account on Colum calculations
12258                 - Returns the column when clickig
12259         * DataGrid.cs:
12260                 - Fixes default HitTestInfo values
12261                 - Fixes HitTestInfo.ToString
12262                 - Fixes ResetBackColor          
12263         
12264 2005-09-28  Jackson Harper  <jackson@ximian.com>
12265
12266         * MdiChildContext.cs: Obey rules for fixed sized windows (no
12267         sizing or cursor changes). Also added some temp code to draw the
12268         titlebars text (Makes dev a little easier).
12269
12270 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12271
12272         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
12273
12274 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
12275          
12276         * ListBox.cs: Fixes bug 76253
12277
12278 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
12279
12280         * ImageList.cs: Added comments about the current implementation. Added
12281           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
12282           Format32bppArgb to preserve transparency and can use Graphics.FromImage
12283           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
12284           with Bitmap.LockBits for better performance. Revised the whole file to
12285           match MS.NET behaviour and provide better performance. Non-public
12286           interface members are calling public members even when they throw
12287           NotSupportedException for better maintainability. Moved ColorDepth,
12288           ImageSize, ImageStream and TransparentColor implementations to
12289           ImageCollection for better performance as these properties are not used
12290           by ImageList.
12291         * ImageListStreamer.cs: Added a new internal constructor that takes an
12292           ImageList.ImageCollection and serializes Images based on
12293           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
12294           match ImageList property name.
12295
12296 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
12297
12298         * ListBox.cs: Fixes IndexFromPoint for last item
12299
12300 2005-09-27  Jackson Harper  <jackson@ximian.com>
12301
12302         * Form.cs: Set the position of new mdi children correctly.
12303
12304 2005-09-27  Jackson Harper  <jackson@ximian.com>
12305
12306         * MdiClient.cs: New mdi children need to be added to the back of
12307         the controls collection so the zorder is set correctly. Also add a
12308         count of all the child windows that have been created.
12309
12310 2005-09-27  Jackson Harper  <jackson@ximian.com>
12311
12312         * Form.cs (CreateParams): Setup MDI forms correctly.
12313
12314 2005-09-27  Jackson Harper  <jackson@ximian.com>
12315
12316         * MdiChildContext.cs:
12317         * MonthCalendar.cs:
12318         * UpDownBase.cs:
12319         * ListBox.cs:
12320         * ListView.cs:
12321         * TextBoxBase.cs:
12322         * TreeView.cs:
12323         * ScrollableControl.cs:
12324         * ComboBox.cs: Add implicit controls using the new implict control
12325         functionality in ControlCollection. Also try to block multiple
12326         control add in a suspend/resume layout to save some cycles.
12327         
12328 2005-09-27  Jackson Harper  <jackson@ximian.com>
12329
12330         * Control.cs: Add functionality to the controls collection to add
12331         'implicit controls' these are controls that are created by the
12332         containing control but should not be exposed to the user. Such as
12333         scrollbars in the treeview.
12334         * Form.cs: The list var of the ControlsCollection is no longer
12335         available because of the potential of implicit controls getting
12336         ignored by someone accessing the list directly.
12337
12338 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
12339
12340         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
12341           loose it's parent. (Fixed bug introduced in r49103 when we added
12342           setting the child parent to null on Remove)
12343
12344 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
12345
12346         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
12347         * Splitter.cs: Added missing attributes for BorderStyle property.
12348         * TextBoxBase.cs: Marked Calculate* methods internal.
12349         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
12350         MS.NET.
12351
12352 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
12353          
12354         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
12355
12356 2005-09-25  Jackson Harper  <jackson@ximian.com>
12357
12358         * TreeView.cs: Update the node bounds correctly regardless of
12359         whether the node is visible.
12360
12361 2005-09-25  Jackson Harper  <jackson@ximian.com>
12362
12363         * ImageList.cs: Don't dispose the image after it is added to the
12364         image list. Only reformat images that need to be resized.
12365
12366 2005-09-25  Jackson Harper  <jackson@ximian.com>
12367
12368         * ImageList.cs: Don't set the format when changing the image.
12369
12370 2005-09-25  Jackson Harper  <jackson@ximian.com>
12371
12372         * TreeView.cs: We can't just assume the node has a font. Use the
12373         treeviews font if no node font is available.
12374
12375 2005-09-25  Jackson Harper  <jackson@ximian.com>
12376
12377         * TreeView.cs: Allow the scrollbars to be reset with negative
12378         values.
12379         - Don't add scrollbars to negative sized windows.
12380
12381 2005-09-23  Jackson Harper  <jackson@ximian.com>
12382
12383         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
12384         old Mono.Posix. Also remove some stray code that shouldn't have
12385         been committed.
12386
12387 2005-09-23  Jackson Harper  <jackson@ximian.com>
12388
12389         * TreeView.cs: Attempt at proper sizing of the horizontal
12390         scrollbar. Also don't resize the scrollbars unless they are
12391         visible.
12392
12393 2005-09-23  Jackson Harper  <jackson@ximian.com>
12394
12395         * TreeView.cs: We don't need to expand the invalid area when the
12396         selection changes, as this is all drawn in the node's bounding
12397         box. The area needs to be expanded (previous typo was contracting
12398         it) when the focus rect moves.
12399
12400 2005-09-23  Jackson Harper  <jackson@ximian.com>
12401
12402         * TreeView.cs: Display the selection box under the correct
12403         circumstances. We were rendering white text with no selection box
12404         before.
12405
12406 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
12407
12408         * TextControl.cs(Split): Now updates selection start/end if it points 
12409           into a line that's being split. Fixes a FIXME and bug #75258
12410
12411 2005-09-23  Jackson Harper  <jackson@ximian.com>
12412
12413         * Binding.cs:
12414         * ListControl.cs: Don't use the path when retrieving binding
12415         managers from the binding context. My bat sense tells me that the
12416         path is only used on insertion.
12417
12418 2005-09-22  Jackson Harper  <jackson@ximian.com>
12419
12420         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
12421
12422 2005-09-22  Jackson Harper  <jackson@ximian.com>
12423
12424         * Splitter.cs: There are special cursors used for splitting.
12425         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
12426
12427 2005-09-22  Jackson Harper  <jackson@ximian.com>
12428
12429         * Splitter.cs: Change the cursor appropriately when the splitter
12430         is moused over, so the user actually knows there is a splitter
12431         there.
12432
12433 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12434
12435        * Label.cs : Fix ToString method to give same output as MS.NET
12436
12437 2005-09-22  Jackson Harper  <jackson@ximian.com>
12438
12439         * TreeView.cs: Create the scrollbars when the handle is created
12440         and add them right away, just make them invisble. Also account for
12441         the window being shrunk vertically to the point that the vert
12442         scrollbar needs to be added.
12443         - Remove some 0.5 adjustments to get around anti aliasing issues.
12444         
12445 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
12446          
12447         * MainMenu.cs: Fixes default value
12448         * MenuItem.cs: Fixes default value
12449
12450 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
12451
12452         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
12453
12454 2005-09-21  Jackson Harper  <jackson@ximian.com>
12455
12456         * Control.cs: Don't try to set the border style on the window if
12457         it hasn't been created. When the window is created the border
12458         style will be used.
12459
12460 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12461
12462         * Control.cs (Update): Don't call XplatUI if we don't have a
12463           window handle yet
12464
12465 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12466
12467         * ContainerControl.cs: Instead of throwing an exception, print
12468           a one-time warning about Validate not being implemented
12469         * XplatUIWin32.cs: Removed debug output
12470
12471 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
12472
12473         * Control.cs: Only set XplatUI background if we expect the windowing
12474           system to handle the background. This stops controls that draw their
12475           own background from flickering
12476
12477         * XplatUIX11.cs: Support custom visuals and colormaps for window 
12478           creation. This allows, amongst other things, using MWF X11 windows 
12479           with OpenGL.
12480
12481 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12482
12483         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12484           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12485           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12486           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12487           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12488           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12489           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12490           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12491           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12492           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12493           GridColumnStylesCollection.cs, 
12494           IDataGridColumnStyleEditingNotificationService.cs,
12495           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12496           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12497           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12498           TreeNodeCollection.cs, AmbientProperties.cs, 
12499           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12500           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12501           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12502           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12503           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12504           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12505           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12506           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12507           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12508           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
12509           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
12510           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
12511           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
12512           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
12513           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
12514           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
12515           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
12516           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
12517           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
12518           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
12519           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
12520           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
12521           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
12522           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
12523           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
12524           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
12525           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
12526           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
12527           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
12528           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
12529           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
12530           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
12531           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
12532           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
12533           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
12534           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
12535           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
12536
12537 2005-09-21  Jackson Harper  <jackson@ximian.com>
12538
12539         * TreeNode.cs: Call Before/After Expand not Collapse when
12540         expanding.
12541
12542 2005-09-20  Jackson Harper  <jackson@ximian.com>
12543         
12544         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
12545
12546 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12547          
12548         * ListViewItem.cs:
12549                 - Fixes bug 76120
12550                 - Fixes proper storing of subitems
12551                 - Fixes not updated items
12552
12553 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
12554
12555         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
12556           things if our window handle isn't created yet. Also disabled 
12557           debug for TextBoxBase
12558
12559 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
12560
12561         * MenuAPI.cs: Remove filtering of events to allow menu usage
12562
12563 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12564
12565         * Cursor.cs: Allow null to be passed to Cursor.Current.
12566
12567 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
12568
12569         * ThemeWin32Classic.cs:
12570           - Change some private methods/fields to protected virtual so that 
12571             they can be accessed and overriden in derived classes
12572           - First refactoring of some methods. Derived themes now don't 
12573             need to duplicate the complete code from ThemeWin32Classic
12574         * ThemeNice.cs:
12575           - Added nice StatusBar
12576           - Derive from ThemeWin32Classic and not Theme
12577           - Removed duplicate ThemeWin32Classic code
12578
12579 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12580
12581         * Control.cs (ControlCollection.Add): If the value null is passed
12582         the control is ignored. 
12583
12584         Optimize this loop.
12585
12586 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
12587
12588         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
12589           PostQuitMessage state.
12590         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
12591
12592 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
12593
12594         * Application.cs: Our constructor will never get called, move 
12595           initialization to fields; fixes bug #75933
12596
12597 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12598
12599         * FileDialog.cs :
12600                 - Allow files to be selected properly using file name
12601                 combo box.
12602                 - Add ability to change diretory (absolute / relative)
12603                 using file name combo box.
12604
12605 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12606          
12607         * ListBox.cs: 
12608                 - Fixes Multicolumn listboxes item wrong calculations
12609                 - Allows to click when only one item is in the listbox
12610                 - Fixes crash when no items using keyboard navigation
12611
12612 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
12613
12614         * ComboBox.cs: Reverted almost everything from the latest patch which
12615           broke ComboBox
12616
12617 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
12618         
12619         * ToolTip.cs:
12620                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
12621         * ComboBox.cs:
12622                 - When DropDownStyle is Simple, it does not show scrollbar 
12623                 to the last item of the list.
12624                 - When DropDownStyle is Simple, it crashed when the list was 
12625                 scrolled down with the down cursor key.
12626                 - Fixed a bug that when DropDownStyle is DropDownList, the 
12627                 selected item was not shown.
12628                 - The position of the selected item was not preserved when 
12629                 the next dropdown happened.
12630         * ThemeWin32Classic.cs:
12631                 - Items were wrapped at the right end.
12632         * CheckedListBox.cs:
12633                 - Fixed Add method
12634         * ListBox.cs:
12635                 - Items should be fully shown.
12636                 - When resizing and vertical scrollbar disappeared, the item 
12637                 of index 0 should be on the top of the list.
12638                 - GetItemRectangle should consider the size of ver. scrollbar
12639         * StatusBar.cs:
12640                 - SizingGrip area should not be allocated when it is not 
12641                 displayed.
12642                 - Now it reflects MinWidth of the containing panel and 
12643                 fixed a crash that happens when its width becomes so small.
12644
12645 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12646
12647         * CheckedListBox.cs: Fixes bug 76028
12648         * ListBox.cs: Fixes bug 76028
12649
12650 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12651
12652         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
12653         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
12654
12655 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
12656
12657         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
12658
12659 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12660
12661         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
12662
12663 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12664
12665         * IRootGridEntry.cs: Added
12666         * PropertyGridCommands.cs: Added
12667         * PropertiesTab.cs: Added missing methods and property
12668         * PropertyGridView.cs: Made class internal
12669         * PropertyGridTextBox.cs: Made class internal
12670
12671 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12672
12673         * MimeIcon.cs: Try to check some other environment variables
12674           if "DESKTOP_SESSION" returns "default"
12675
12676 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12677
12678         * ThemeNice.cs: Corrected background colors (e.g. menus)
12679         * ColorDialog.cs: Use correct background colors for controls
12680
12681 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12682
12683         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
12684
12685 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
12686
12687         * RichTextBox.cs: Added initial implementation
12688         * lang.cs: Removed. Was accidentally checked in long time ago
12689         * TODO: Removed. Contents were obsolete
12690
12691 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12692                                                                                 
12693         * PropertiesTab.cs : Added
12694
12695 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12696                                                                                 
12697         * PropertyGrid.cs : Update
12698         * PropertyGridView.cs : Update
12699         * System.Windows.Forms.resx : Added images and strings
12700
12701 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
12702
12703         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
12704  
12705 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
12706
12707         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
12708           a busy loop right after the Ungrab the X11 display is otherwise 
12709           blocked
12710
12711 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
12712
12713         * ThemeWin32Classic.cs: Optimise the use of clipping
12714
12715 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
12716
12717         * DataGrid.cs: fixes recursion bug
12718
12719 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
12720
12721         * ThemeNice.cs: 
12722           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
12723           - Cleanup
12724
12725 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
12726
12727         * ThemeNice.cs: Draw nice ProgressBars
12728
12729 2005-09-01  Miguel de Icaza  <miguel@novell.com>
12730
12731         * VScrollBar.cs: Another buglet found by Aaron's tool. 
12732
12733         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
12734         bug finder.
12735
12736 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
12737
12738         * ThemeNice.cs:
12739           - Added nicer menu drawing
12740           - Updated DrawTab
12741           - some refactoring
12742
12743 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12744
12745         * CreateParams.cs (ToString): Made output match MS
12746         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
12747             handle is already created (to avoid forcing window creation)
12748         * XplatUIX11.cs: Set window text to caption after creating window,
12749           in case Text was set before window was created
12750         * Form.cs: Use this.Text instead of a static string as caption
12751
12752 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12753
12754         * NotifyIcon.cs: Don't set the window to visible; this screws
12755           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
12756           OnPaint without a bitmap)
12757         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
12758           happen very often anyway; we could add the check to the WM_PAINT 
12759           event generation code
12760
12761 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12762
12763         * NotifyIcon.cs: Fill the icon area with a background color, to 
12764           avoid 'residue' when transparent icons are drawn
12765         * XplatUIX11.cs:
12766           - Handle whole_window == client_window when destroying windows
12767           - SystrayAdd(): Set client_window to whole_window value to
12768             get mouse and other events passed to NotifyIcon
12769
12770 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12771
12772         * Form.cs: Set proper default for Opacity property
12773         * NotifyIcon.cs:
12774           - ShowSystray(): Don't bother creating telling the OS
12775             about the systray item if no icon is provided
12776           - Now handles WM_NCPAINT message to deal with whole/client window
12777             split
12778           - Create window as visible to not get caught by Expose optimization
12779         * Hwnd.cs: Removed debug message
12780         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
12781           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
12782             PaintEventStart/End to use new client argument
12783         * TextBoxBase.cs:
12784           - Commented out debug messages
12785           - Switched PaintEventStart/End to use new client argument
12786         * XplatUI.cs: Added client window bool to PaintEventStart()/
12787           PaintEventEnd() calls, to support drawing in non-client areas
12788         * XplatUIDriver.cs: 
12789           - Added client window bool to PaintEventStart()/PaintEventEnd() 
12790             calls, to support drawing in non-client areas
12791           - Added conditional compile to allow using MWF BeginInvoke 
12792             on MS runtime
12793         * XplatUIX11.cs:
12794           - Added some conditional debug output
12795           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
12796             whole/client window split
12797           - Implemented handling of client argument to PaintEventStart()/End()
12798         * Control.cs:
12799           - Throw exception if BeginInvoke() is called and the window handle
12800             or one of the window's parent handles is not created
12801           - Added conditional compile to allow using MWF BeginInvoke on
12802             MS runtime
12803           - get_Parent(): Only sets parent if handle is created. This avoids
12804             forcing window handle creation when parent is set.
12805           - Now fires Layout and Parent changed events in proper order
12806           - Switched to use Handle instead of window.Handle for Z-Order setting,
12807             the get_Parent() patch above causes us to possibly get null for 'window'
12808           - Implemented handling of client argument to PaintEventStart()/End()
12809           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
12810             default handling)
12811           - Now sends a Refresh() to all child windows when Refresh() is called
12812
12813 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12814
12815         * Form.cs: Added (non-functional) Opacity property
12816         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
12817
12818 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
12819         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
12820           use export MONO_THEME=nice to activate it.
12821           Currently supported controls:
12822           - Button
12823           - ComboBox
12824           - ScrollBar
12825           - TabControl (TabAlignment.Top only, other will follow)
12826         * ThemeEngine.cs: Add theme nice
12827         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
12828           if enabled
12829
12830 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
12831
12832         * Splitter.cs: Resize docked control and its neighbor.
12833
12834 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12835         -- Making Windows with Menus layout correctly --
12836         * Form.cs : The first leg of the fix
12837                 Menu setter - adjust Client Size as needed to make space for the menu
12838                 SetClientSizeCore - doesn't call base version to be able to pass the 
12839                         menu handle to XplatUI.CalculateWindowRect
12840         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
12841         * XplatUIX11.cs: The critical second leg of the fix
12842                 GetWindowPos needs to use a recalculated client_rect
12843                 so that resizing the window doesn't break layout of child controls. 
12844                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
12845                 Lots of \t\n killed
12846
12847 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12848
12849         * Label.cs: Now properly recalculates width and height on Font and Text
12850           changes if AutoSize is set
12851
12852 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12853         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
12854
12855 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
12856
12857         * ImageList.cs: Makes ToString method compatible with MS
12858
12859 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
12860
12861         * MenuAPI.cs: fixes bug 75716
12862
12863 2005-08-11 Umadevi S <sumadevi@novell.com>
12864         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
12865
12866 2005-08-11 Umadevi S <sumadevi@novell.com>
12867         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
12868
12869 2005-08-10  Umadevi S <sumadevi@novell.com>
12870         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
12871
12872 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
12873
12874         * Menu.cs: fixes bug 75700
12875         * MenuAPI.cs: fixes navigation issues
12876
12877 2005-08-09  Umadevi S <sumadevi@novell.com>
12878         * CheckedListBox.cs - simple fix for GetItemChecked.
12879
12880 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
12881
12882         * ComboBox.cs: Serveral fixes
12883         * ListBox.cs: Serveral fixes
12884
12885 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12886
12887         * ComboBox.cs: Fixes FindString methods and GetItemHeight
12888         * ListBox.cs: Fixes FindString methods
12889
12890 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12891
12892         * DataGrid.cs: fixes bugs exposed by new tests
12893
12894 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
12895
12896         * Mime.cs: Compile Mono assembly references only if compiling
12897           with Mono (Allows to build with VS.Net again)
12898
12899 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
12900
12901         * Control.cs (PaintControlBackground): Draw background image
12902         corrrectly.
12903         (CheckForIllegalCrossThreadCalls): Stubbed.
12904         
12905         * Form.cs (OnCreateControl): Center when should be centered.
12906         
12907         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
12908
12909 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
12910
12911         * Binding.cs: Binding to properties should be case unsensitive
12912
12913 2005-07-18 vlindos@nucleusys.com
12914
12915         * DataGrid.cs: fixes setmember order
12916
12917 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
12918
12919         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
12920         * FileDialog.cs: FileDialog is now resizable and uses the new
12921           MimeIconEngine
12922
12923 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
12924
12925         * DataGridTextBoxColumn.cs: default value
12926         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
12927         * GridTableStylesCollection.cs: fixes checking MappingName
12928         * DataGridDrawingLogic.cs: fixes drawing logic issues
12929         * DataSourceHelper.cs: rewritten to make compatible with more data sources
12930         * DataGrid.cs: fixes    
12931
12932 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
12933
12934         * MimeGenerated.cs: Use case sensitive comparer for
12935           NameValueCollections
12936
12937 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
12938
12939         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
12940         * ThemeWin32Classic.cs: bug fixes, code refactoring
12941         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
12942         * DataGrid.cs: bug fixes, code refactoring
12943         * DataGridTextBox.cs: bug fixes, code refactoring
12944         * DataGridColumnStyle.cs:  bug fixes, code refactoring
12945         * Theme.cs:  bug fixes, code refactoring
12946
12947 2005-07-01  Peter Bartok  <pbartok@novell.com> 
12948
12949         * TextControl.cs: Quick fix for the reported crash on ColorDialog
12950           and other text box usage
12951
12952 2005-07-01  Jackson Harper  <jackson@ximian.com>
12953
12954         * TabControl.cs: Make sure the bottom of the tab covers the pages
12955         border.
12956
12957 2005-06-30  Peter Bartok  <pbartok@novell.com> 
12958
12959         * Form.cs (ShowDialog): Assign owner of the dialog
12960         * TextBoxBase.cs: Always refresh caret size when deleting, caret
12961           might have been moved to a tag with different height
12962
12963 2005-06-30  Jackson Harper  <jackson@ximian.com>
12964
12965         * Form.cs: Don't create an infinite loop when setting focus
12966         * MenuItem.cs: Don't dirty the parents if we don't have any
12967
12968 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
12969
12970         * LibSupport.cs: Rename
12971
12972 2005-06-29  Peter Bartok  <pbartok@novell.com>
12973
12974         * TextBoxBase.cs: Re-align caret after deleting a character
12975         * TextControl.cs:
12976           - DeleteChars(): Ensure that tag covers the provided position
12977           - StreamLine(): Drop reference for dropped tag
12978
12979 2005-06-29  Peter Bartok  <pbartok@novell.com> 
12980
12981         * TextControl.cs: 
12982           - Selections now work properly, anchoring at the initial location
12983             and properly extending in either direction (SetSelectionToCaret(),
12984             SetSelectionStart() and SetSelectionEnd())
12985           - No longer redraws the whole control on selection change, now
12986             calculates delta between previous and new selection and only
12987             invalidates/redraws that area
12988           - Fixed FindPos() math off-by-one errors
12989           - Changed DeleteChars() to verify the provided tag covers the
12990             provided position, selections may have a tag that doesn't cover
12991             the position if the selection is at a tag border
12992           - Fixed off-by-one errors in DeleteChars()
12993           - Added missing streamlining check in DeleteChars() to remove
12994             zero-length tags
12995           - Implemented Invalidate() method, now properly calculates exposures
12996             between two given lines/positions
12997           - Implemented SetSelection()
12998           - Obsoleted and removed FixupSelection()
12999           - Improved RecalculateDocument() logic, removing code duplication
13000
13001 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13002
13003         * LibSupport.cs: changes to match different input/output arguments.
13004
13005 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13006
13007         * LibSupport.cs: added libsupport.so init routine.
13008
13009 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13010         
13011         * ControlBindingsCollection.cs
13012                 - Throws an exception on null datasource when adding
13013                 - Checks for duplicated bindings when adding
13014
13015 2005-06-28  Jackson Harper  <jackson@ximian.com>
13016
13017         * TreeView.cs (OnKeyDown): Support left and right properly
13018         (navigates as well as expanding and collapsing.
13019         - Add support for Multiply, this expands all the selected nodes
13020         children.
13021         - Fix some tabbing.
13022
13023 2005-06-28  Jackson Harper  <jackson@ximian.com>
13024
13025         * TreeView.cs: Implement keyboard navigation, currently supports,
13026         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13027         support for toggling checkboxes with the space bar.
13028
13029 2005-06-28  Jackson Harper  <jackson@ximian.com>
13030
13031         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13032         tree.
13033
13034 2005-06-28  Jackson Harper  <jackson@ximian.com>
13035
13036         * TreeView.cs: Add missing event.
13037
13038 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13039
13040         * TextControl.cs:
13041           - Made line ending size configurable (now allows for counting 
13042             lineendings as \n or \r\n)
13043           - Added margin to viewport to keep caret visible on right side
13044           - Fixed translation routines for line/pos to documentpos to consider
13045             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13046           - Fixed some line-endings to be unix style
13047           - Fixed Document.FormatText to perform it's calculations 1-based
13048           - Added descriptions for a few methods that might otherwise get 
13049             used wrong
13050           - Added NOTE section with some basic conventions to remember at 
13051             the top of the file
13052           - Major fixup for RichTextBox selection drawing:
13053             * Fixed crashes when multiple tags on a single line were selected
13054             * fixed selection box drawing not overlaying text
13055             * fixed bogus offset calculation for tags not starting at index 1
13056             * Switched behaviour from using multiple Substrings of a 
13057               StringBuilder.ToString() to using multiple 
13058               StringBuilder.ToString(start, length) statements, hoping this is
13059               faster (kept original version commented out in the code, in case
13060               original version was faster)
13061         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13062           alignment != Left
13063         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13064           call it as well
13065
13066 2005-06-27  Jackson Harper  <jackson@ximian.com>
13067
13068         * TabControl.cs: Move to the left and right with the arrow
13069         keys. These keys don't cycle beyond first and last like
13070         tab. Refresh all the tabs when scrolling them to the left or
13071         right.
13072
13073 2005-06-27  Jackson Harper  <jackson@ximian.com>
13074
13075         * TabControl.cs:
13076           - ToString: Added method
13077           - CreateParams: Remove TODO and comment
13078           - OnKeyDown: Cycle through bounds properly.
13079           - SelectedIndex: Scroll to the right or left if we need to
13080           display the newly selected tab.
13081
13082 2005-06-23  Jackson Harper  <jackson@ximian.com>
13083
13084         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13085         set.
13086
13087 2005-06-23  Jackson Harper  <jackson@ximian.com>
13088
13089         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13090         CTRL-SHIFT-TAB, and HOME, END are there any others?
13091
13092 2005-06-23  Jackson Harper  <jackson@ximian.com>
13093
13094         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13095
13096 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13097         
13098         * DataGridTextBoxColumn.cs: fixes and enhancements
13099         * ThemeWin32Classic.cs: fixes and enhancements
13100         * DataGridBoolColumn.cs:  fixes and enhancements
13101         * DataGridDrawingLogic.cs:  fixes and enhancements
13102         * CurrencyManager.cs: fixes and enhancements
13103         * DataGrid.cs: fixes and enhancements
13104         * DataGridColumnStyle.cs:  fixes and enhancements
13105
13106 2005-06-22  Jackson Harper  <jackson@ximian.com>
13107
13108         * TabControl.cs: Add some missing methods that just call into the
13109         base. Make the TabPageCollection's IList interface behave in the
13110         same manner as the MS implementation.
13111
13112 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13113
13114         * TextControl.cs: Added sanity check
13115         * TextBoxBase.cs: 
13116           - Fixed wrapping behaviour, don't set wrap on single line controls
13117             (this fixes the breakage of colordialog introduced in an earlier
13118              checkin)
13119           - Added rudimentary support for autoscrolling right-aligned controls
13120             (still needs fixing, also, center alignment scroll is missing)
13121
13122 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13123         
13124         * ScrollBar.cs: Fixes thumbpos on Maximum values
13125
13126 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13127         
13128         * PropertyGridView.cs: Pass context information to UITypeEditors 
13129
13130 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13131
13132         * TextBoxBase.cs:
13133           - Now calling PositionCaret with absolute space coordinates
13134           - Enabled vertical scrolling
13135           - Better tracking of scrollbar changes, tied into WidthChange
13136             event
13137           - Improved cursor tracking
13138           - Removed debug output
13139         * TextControl.cs:
13140           - PositionCaret coordinates are now works in absolute space, not 
13141             the canvas
13142           - Improved tracking of document size
13143           - Added events for width and height changes
13144
13145 2005-06-21  Peter Bartok  <pbartok@novell.com>
13146
13147         * Form.cs: Set focus to active control when form is activated
13148         * TextControl.cs: 
13149           - Added word-wrap functionality to RecalculateLine() 
13150           - Added some short function descriptions for VS.Net to aid in
13151             writing dependent controls
13152           - Added Caret property, returning the current coords of the caret
13153           - Added ViewPortWidth and ViewPortHeight properties
13154           - Added Wrap property
13155           - Added CaretMoved event
13156           - Removed some old debug code
13157           - Split() can now create soft splits
13158           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13159           - Added method to format existing text
13160           - Fixed size/alignment calculations to use viewport
13161           - RecalculateDocument now can handle changing line-numbers while
13162             calculating lines
13163
13164         * TextBox.cs:
13165           - Added some wrap logic, we don't wrap if alignment is not left
13166           - Added casts for scrollbar var, base class switched types to
13167             also support RichTextBoxA
13168           - Implemented handling of scrollbar visibility flags
13169
13170         * TextBoxBase.cs:
13171           - Switched scrollbars type to RichTextBoxScrollBars to support
13172             RichTextBox
13173           - Added tracking of canvas width/height
13174           - Switched scrollbars to be not selectable (to keep focus on text)
13175           - Added central CalculateDocument() method to handle all redraw
13176             requirements
13177           - Added ReadOnly support
13178           - Added WordWrap support
13179           - Fixed handling of Enter key (we now treat it as a DialogKey)
13180           - Fixed caret positioning when h or v scroll is not zero
13181           - Fixed placing/generation of vertical scrollbar
13182           - Added CalculateScrollBars() method to allow updating scrollbar
13183             limits and visibility
13184           - Fixed handling of horizontal scroll
13185           - Added handling of vertical scroll
13186           - Implemented auto-'jump' when caret moves to close to a left or
13187             right border and there is text to be scrolled into view (currently
13188             there's the potential for a stack overflow, until a bug in
13189             scrollbar is fixed)
13190
13191 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13192         
13193         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13194
13195 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13196
13197         * Mime.cs:
13198         - added inodes.
13199         - return application/x-zerosize for files with size zero
13200           (if no extension pattern matches).
13201         - check matches collection for strings too.
13202         - return only the first mime type if the name value
13203           collection has more than one mime type.
13204
13205 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13206         
13207         * PropertyGrid.cs: Cleaned up some TODOs
13208         * PropertyGridView.cs: Added support for UITypeEditors
13209
13210 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13211         
13212         * DataGrid.cs: clears cached value
13213
13214 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13215
13216         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13217         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13218         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
13219         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
13220         
13221 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
13222
13223         * ThemeWin32Classic.cs: fixes colour
13224
13225 2005-06-15  Peter Bartok  <pbartok@novell.com>
13226
13227         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
13228         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
13229         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
13230         * Control.cs: Added some MWFCategory and MWFDescription attributes
13231         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
13232
13233 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
13234
13235         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
13236         usage
13237
13238 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
13239
13240         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
13241         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
13242         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
13243         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
13244         * DataGrid.cs: default datagrid settings for Default Styles, fixes
13245         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
13246
13247 2005-06-13  Jackson Harper  <jackson@ximian.com>
13248
13249         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
13250         isn't printed when the user enables dropping. (X11 does accept
13251         drops).
13252         
13253 2005-06-13  Jackson Harper  <jackson@ximian.com>
13254
13255         * TreeView.cs: Remove some TODOS.
13256
13257 2005-06-13  Jackson Harper  <jackson@ximian.com>
13258
13259         * Form.cs: Hook into the mdi framework.
13260         * MdiClient.cs: Use the base control collections add method so
13261         parents get setup correctly. Set the default back colour and dock
13262         style.
13263         * MdiChildContext.cs: New class, this bad actor handles an
13264         instance of an MDI window. Right now there is only basic
13265         support. You can drag, close, and resize windows. Minimize and
13266         Maximize are partially implemented.
13267
13268 2005-06-13  Jackson Harper  <jackson@ximian.com>
13269
13270         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
13271         freaky when both vals are negative. NOTE: There are probably other
13272         places in XplatUIX11 that this needs to be done.
13273
13274 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
13275
13276         * DataGrid.cs: implement missing methods, move KeyboardNavigation
13277         * DataGridColumnStyle.cs: fixes signature
13278
13279 2005-06-12  Jackson Harper  <jackson@ximian.com>
13280
13281         * XplatUIX11.cs: Use sizing cursors similar to the ones on
13282         windows.
13283
13284 2005-06-11  Jackson Harper  <jackson@ximian.com>
13285
13286         * StatusBarPanel.cs: Signature cleanups. Implement
13287         BeginInit/EndInit.
13288
13289 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
13290
13291         * DataGridTextBoxColumn.cs: Honors aligment
13292         * GridColumnStylesCollection.cs: Contains is case unsensitive
13293         * GridTableStylesCollection.cs: several fixes
13294         * DataGridTableStyle.cs: default column creation
13295         * DataGridDrawingLogic.cs: fixes
13296         * CurrencyManager.cs: ListName property
13297         * DataGrid.cs: multiple styles support
13298         * DataGridColumnStyle.cs: fixes
13299         
13300
13301 2005-06-10  Peter Bartok  <pbartok@novell.com>
13302
13303         * Control.cs(Select): Moved SetFocus call to avoid potential
13304           loops if controls change the active control when getting focus
13305         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
13306           the up/down buttons
13307
13308 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
13309
13310         * ImageListConverter.cs: Implemented
13311
13312 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13313
13314         * MonthCalendar.cs: Wired in NumericUpDown control for year
13315
13316 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
13317
13318         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
13319           DoubleClick events, since they are not meant to be fired.
13320
13321 2005-06-09  Peter Bartok  <pbartok@novell.com>
13322
13323         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
13324           Jonathan's standalone controls into MWF, implemented missing
13325           events, attributes and methods; added xxxAccessible classes
13326         * AccessibleObject.cs: Made fields internal so other classes
13327           can change them if needed
13328
13329 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
13330
13331         * UpDownBase.cs: Complete implementation
13332         * NumericUpDown.cs: Complete implementation
13333         * DomainUpDown.cs: Complete implementation
13334
13335 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
13336
13337         * DataGridTextBoxColumn.cs: drawing fixes
13338         * DataGridCell.cs: fixes ToString method to match MSNet
13339         * DataGridTableStyle.cs: fixes
13340         * DataGridBoolColumn.cs: fixes, drawing
13341         * DataGridDrawingLogic.cs: fixes, new methods
13342         * DataGridTextBox.cs: Keyboard and fixes
13343         * DataGrid.cs:
13344                 - Keyboard navigation
13345                 - Scrolling fixes
13346                 - Row selection (single, multiple, deletion, etc)
13347                 - Lots of fixes
13348         
13349 2005-06-07  Jackson Harper  <jackson@ximian.com>
13350
13351         * ThemeWin32Classic.cs: Clear the background area when drawing
13352         buttons.
13353
13354 2005-06-06  Peter Bartok  <pbartok@novell.com>
13355
13356         * ImageListStreamer.cs: Fixed signature for GetData
13357         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
13358         * ComboBox.cs:
13359           - Added missing ChildAccessibleObject class
13360           - Added missing OnXXXFocus overrides, switched to using those
13361             instead of the event handler
13362         * Control.cs:
13363           - Added Parent property for ControlAccessibleObject
13364           - Fixed signatures
13365           - Fixed attributes
13366           - Added ResetBindings()
13367         * ListBindingConverter.cs: Implemented some methods
13368         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
13369         * ImageList.cs: Implemented basic handle scheme, removed TODOs
13370         * ContainerControl.cs: Fixed signature, now subscribing to the
13371           ControlRemoved event instead of overriding the handler, LAMESPEC
13372         * CurrencyManager.cs: Added missing attribute
13373         * MonthCalendar.cs: Added missing properties
13374
13375 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13376
13377         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
13378         
13379 2005-06-06  Gaurav Vaish and Ankit Jain
13380
13381         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
13382         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
13383         
13384 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
13385
13386         * Control.cs: fixes CreateParams Width / Height.
13387
13388 2005-06-05  Peter Bartok  <pbartok@novell.com>
13389
13390         * Win32DnD.cs: Removed compilation warnings
13391
13392 2005-06-05  Peter Bartok  <pbartok@novell.com>
13393
13394         * Control.cs (CreateParams): Since we don't know if one of the
13395           properties we use is overridden, lets make sure if we fail accessing
13396           we continue with a backup plan
13397
13398 2005-06-05  Peter Bartok  <pbartok@novell.com>
13399
13400         * Win32DnD.cs:
13401           - Removed debug output
13402           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
13403             struct
13404           - Plugged resource leak
13405         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
13406           MS size
13407
13408 2005-06-05  Peter Bartok  <pbartok@novell.com>
13409
13410         * XplatUIWin32.cs: Removed DnD code
13411         * Win32DnD.cs: Implemented drop source and drop target functionality
13412
13413 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13414
13415         * UpDownBase.cs: remove duplicate addition of event, enable some code
13416         that was commented out.
13417         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
13418         Validate input when a key is pressed. It works fine now for every
13419         combination of Hexadecimal. Only missing some drawing love when sharing
13420         space with other controls.
13421
13422 2005-06-04  Peter Bartok  <pbartok@novell.com>
13423
13424         * Control.cs:
13425           - We need to pass a window for DragDrop, so enable callback events
13426           - Added DnD callback events when being a DragSource
13427         * XplatUI.cs (StartDrag): Added window handle argument
13428         * XplatUIDriver.cs (StartDrag): Added window handle argument
13429         * QueryContinueDragEventArgs: Made fields internally accessible so
13430           drivers can set them
13431         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
13432           can set them
13433
13434 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
13435
13436         * DataGridTextBoxColumn.cs: column text editing
13437         * DataGridTableStyle.cs: Respect columns styles created by the user
13438         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
13439         * DataGridBoolColumn.cs: bool column editing
13440         * DataGrid.cs: fixes to scrolling, properties, etc
13441         * DataGridTextBox.cs: handle keyboard
13442         * DataGridColumnStyle.cs: fixes
13443
13444 2005-06-02  Jackson Harper  <jackson@ximian.com>
13445
13446         * ImageListStreamer.cs: Somewhat broken implementation of
13447         GetObjectData. The RLE needs some work to match MS properly.
13448
13449 2005-06-02  Jackson Harper  <jackson@ximian.com>
13450
13451         * X11Dnd.cs: Attempting to keep at least one file in MWF
13452         monostyled.
13453
13454 2005-06-02  Peter Bartok  <pbartok@novell.com>
13455
13456         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
13457           that way
13458
13459 2005-06-02  Peter Bartok  <pbartok@novell.com>
13460
13461         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
13462         * XplatUI.cs: Added DoDragDrop() method
13463         * XplatUIDriver.cs: Added DoDragDrop() method
13464
13465 2005-06-02  Jackson Harper  <jackson@ximian.com>
13466
13467         * Splitter.cs: Implement BorderStyle.
13468
13469 2005-06-02  Jackson Harper  <jackson@ximian.com>
13470
13471         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
13472         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
13473         X11 using XDND.
13474
13475 2005-06-02  Peter Bartok  <pbartok@novell.com>
13476
13477         * DataObject.cs:
13478           - Added Data setter
13479           - Fixed broken insertion code for SetData, now also
13480             overwrites any existing entry of the same format name
13481         * Hwnd.cs: Added list of pointers that automatically gets
13482           freed when the window is disposed
13483         * XplatUI.cs: Call driver initialization method when loading
13484           a driver
13485         * Control.cs:
13486           - OnDragLeave takes EventArgs, not DragEventArgs
13487           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13488             supported
13489           - Forces style update when drop state changes
13490         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13491           not perfect since we cannot (yet) call the IDataObject.GetData()
13492           method, we keep getting 0x80004005 error, dunno why)
13493
13494 2005-06-02  Peter Bartok  <pbartok@novell.com>
13495
13496         * DragEventArgs.cs: Make fields internal so we can cache the
13497           object and re-set the fields from XplatUI
13498
13499 2005-06-02  Jackson Harper  <jackson@ximian.com>
13500
13501         * Control.cs: Add some internal methods so the DnD subsystem can
13502         raise DnD events. Also call into the driver when AllowDrop is set.
13503         * XplatUI.cs:
13504         * XplatUIDriver.cs: New method for setting whether or not a window
13505         is allowed to accept drag and drop messages.
13506                 
13507 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13508         
13509         * ScrollBar.cs: Make sure that values sent in Scroll events
13510         are always between Maximum and Minimum.
13511
13512 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
13513
13514         * Menu.cs: Call MenuChanged when menuitem visibility has been
13515         changed.
13516         * MenuItem.cs: Rebuild menu when item is (not) visible.
13517         * MainMenu.cs: MainMenu has special MenuChanged.
13518         * Theme.cs: Caption and FrameBorderSize are not fixed.
13519         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
13520         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
13521         * XplatUIX11.cs,
13522         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
13523         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
13524
13525 2005-05-30  Jackson Harper  <jackson@ximian.com>
13526
13527         * DataFormat.cs: We can't statically initialize this stuff because
13528         it calls into the xplatui and could create a loop. So we lazy init
13529         it.
13530
13531 2005-05-28  Jackson Harper  <jackson@ximian.com>
13532
13533         * Control.cs: Proper implementation of Product(Name/Version).
13534
13535 2005-05-27  Jackson Harper  <jackson@ximian.com>
13536
13537         * DataObject.cs: Dont crash if no data is found.
13538
13539 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
13540         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
13541                 as per status page, guessing it should be set to true
13542
13543 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
13544
13545         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
13546         * DataGridTableStyle.cs: set proper formatting text, def header text
13547         * ThemeWin32Classic.cs: new themable paramaters
13548         * DataGridBoolColumn.cs: paint check box, get data, fixes
13549         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
13550         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
13551         * DataGridColumnStyle.cs: fixes
13552         * Theme.cs: new themable paramaters
13553                 
13554 2005-05-26  Peter Bartok  <pbartok@novell.com>
13555
13556         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
13557
13558 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13559         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
13560
13561 2005-05-24  Peter Bartok  <pbartok@novell.com>
13562
13563         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
13564           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
13565           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
13566           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
13567           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
13568           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
13569           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
13570           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
13571           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
13572           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
13573           missing attributes, etc
13574         * DataGridPreferredColumnWidthTypeConverter.cs: Added
13575
13576 2005-05-24  Peter Bartok  <pbartok@novell.com>
13577
13578         * Help.cs: Added, implemented trivial functions, throws up MessageBox
13579           when user tries to get help
13580         * DataObject.cs, DataFormats.cs, LinkArea.cs,
13581           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
13582           to suppress warnings
13583         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
13584           avoid unreachable code warning
13585
13586 2005-05-20  Peter Bartok  <pbartok@novell.com>
13587
13588         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
13589
13590 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13591
13592         * DataGridTextBoxColumn.cs: Basic painting methods
13593         * DataGridTableStyle.cs: Set table style in the column
13594         * ThemeWin32Classic.cs: Use Theme for colors
13595         * DataGridDrawingLogic.cs: Implement more drawing
13596         * DataGrid.cs: drawing, theming, enhacements, fixes
13597         * DataGridColumnStyle.cs: fixes, drawing
13598         * Theme.cs: theming for Datagrid
13599
13600 2005-05-20  Peter Bartok  <pbartok@novell.com>
13601
13602         * Cursor.cs: Implemented GetObjectData() method
13603
13604 2005-05-20  Peter Bartok  <pbartok@novell.com>
13605
13606         * Cursors.cs: Added setting of cursor name
13607         * Cursor.cs:
13608           - Implemented constructors
13609           - Implemented Draw and DrawStretched
13610           - Implemented Current property
13611           - Implemented == and != operators
13612           - Implemented Dispose()
13613           - Implemented ToString
13614           - Added missing attributes
13615         * XplatUIX11.cs:
13616           - Added missing reset for OverrideCursor when DoEvents is called
13617           - Fixed creation of cursor, logic was wrong
13618         * XplatUIWin32.cs:
13619           - Added missing reset for OverrideCursor when DoEvents is called
13620           - Fixed creation of cursor, bit arrays were swapped
13621         * Clipboard.cs: Removed obsolete MonoTODO attribute
13622
13623 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13624
13625         * ComboBox.cs: fixes OnSelectedItemChanged
13626         * ControlBindingsCollection.cs: fixes item range check
13627
13628 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13629
13630         * UpDownBase.cs:
13631                 - Calc preferred height properly
13632                 - Implement missing properties
13633                 
13634         * NumericUpDown.cs: Implement missing events
13635
13636 2005-05-19  Jackson Harper  <jackson@ximian.com>
13637
13638         * TabControl.cs: New method that resizes the tab pages before
13639         redrawing them. This as needed as the control is double buffered
13640         and sizing will not be recalculated unless ResizeTabPages is
13641         called.
13642         * TabPage.cs: Set base.Text instead of Text in the constructor so
13643         that UpdateOwner does not get called. Use the new Redraw method of
13644         TabControl instead of Refresh so the sizing is recalculated.
13645         * ThemeWin32Classic.cs: Draw the text for button tabs.
13646
13647 2005-05-19  Jackson Harper  <jackson@ximian.com>
13648
13649         * Control.cs: Paint control background images. Fix typo where
13650         PaintControlBackground was not getting called correctly.
13651
13652 2005-05-19  Peter Bartok  <pbartok@novell.com>
13653
13654         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
13655           I can investigate, apparently I broke FileDialog
13656
13657 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
13658
13659         * AxHost.cs: Some simple properties.
13660         * Control.cs: window must be accessible after ctor.
13661         * Form.cs: Added TransparencyKey property.
13662         * TextBoxBase.cs: Implemented Clear. Text property can be null.
13663         * XplatUIWin32.cs: SetBorderStyle implemented.
13664
13665 2005-05-18  Peter Bartok  <pbartok@novell.com>
13666
13667         * DataObject.cs: Entries are not global but particular to the
13668           DataObject, now it behaves that way
13669         * XplatUIWin32.cs: Implemented Clipboard methods
13670         * Clipboard.cs: Implemented
13671         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
13672         * XplatUIOSX.cs: Updated to final clipboard prototypes
13673         * XplatUIX11.cs: Implemented Clipboard methods
13674         * XplatUIDriver.cs: Updated to final clipboard prototypes
13675         * XplatUIStructs.cs:
13676           - Added BITMAPINFOHEADER struct
13677           - Added ClipboardFormats enum
13678         * X11Structs.cs:
13679           - Added ClipboardStruct
13680           - Added Atom enum items for clipboard types
13681           - Fixed atom types for Selection event structures
13682         * DataFormats.cs:
13683           - Added internal properties and methods for drivers to enumerate
13684             all known formats
13685           - Switched initialization method to allow drivers to assign their
13686             own IDs even for the MS predefined clipboard IDs
13687         * XplatUI.cs: Updated to final clipboard interface
13688
13689 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13690         * PropertyGridView.cs: Fixed compiler warnings.
13691
13692 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13693         * PropertyGrid.cs: Added some event calls
13694         * PropertyGridView.cs: Change drawing code to use double buffering
13695         * PropertyGridTextBox.cs: Changed Text property name
13696         * GridItem.cs: Added Bounds property.
13697         * GridEntry.cs: Added Bounds property.
13698
13699 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
13700
13701         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
13702         since GetType() may not return the correct type if the object is
13703         a remoting proxy.
13704
13705 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
13706
13707         * TreeNodeCollection.cs: fixes get/set item ranges
13708         
13709 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13710
13711         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
13712                 
13713 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13714
13715         * ComboBox.cs: Fix item range comparation
13716         * ListView.cs: Fix item range comparation
13717
13718 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13719
13720         * FontDialog.cs:
13721           - Clear example panel when OnPaint is called
13722           - Better solution for displaying the example panel text
13723           - Select default indexes in the ListBoxes
13724
13725 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13726
13727         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
13728
13729 2005-05-11  Peter Bartok  <pbartok@novell.com>
13730
13731         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
13732         * SelectionRangeConverter.cs: Implemented
13733         * PropertyGrid.cs: Fixed attribute value
13734         * Control.cs:
13735           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
13736           - Added Sebastien Pouliot's CAS Stack Propagation fixes
13737         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
13738           that's common to all drivers. First methods to go there are
13739           Sebastien Pouliot's CAS Stack Propagation helper methods
13740         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
13741           Sebastien Pouliot for CAS Stack Propagation
13742
13743 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13744
13745         * OSXStructs.cs:
13746           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
13747
13748 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
13749
13750         * DataGridTextBoxColumn.cs: fixed some members
13751         * GridColumnStylesCollection.cs: indexed column is case insensitive
13752         * DataGridTableStyle.cs: fixes
13753         * ThemeWin32Classic.cs: add new theme parameter
13754         * Theme.cs: add new theme parameter
13755         * DataGridDrawingLogic.cs: Datagrid's drawing logic
13756         * DataGrid.cs: fixes, new internal properties, etc.
13757         * DataGridColumnStyle.cs: allows to set grid value
13758         *
13759
13760 2005-05-10  Peter Bartok  <pbartok@novell.com>
13761
13762         * AccessibleObject.cs:
13763           - Removed MonoTODO attribute on help, method is correct
13764           - Fixed Bounds property
13765         * AxHost.cs: Moved MonoTODO
13766         * ButtonBase.cs: Now setting AccessibleObject properties
13767         * RadioButton.cs: Setting proper AccessibleObject role
13768         * CheckBox.cs: Setting proper AccessibleObject role
13769         * ControlBindingsCollection.cs: Added properties, methods and attributes
13770         * DataFormats.cs: Fixed awkward internal API, and changed to enable
13771           userdefined DataFormats.Format items as well
13772         * ListControl.cs: Removed data_member from the public eye
13773         * OpenFileDialog.cs:
13774           - Made class sealed
13775           - Added missing attributes
13776         * SaveFileDialog.cs: Added missing attributes
13777         * ImageListStreamer.cs: Fixed code that caused warnings
13778         * LinkLabel.cs: Removed unreachable code
13779         * TreeView.cs: Fixed code that caused warnings
13780         * PropertyGridView.cs: Fixed code that caused warnings
13781         * GridColumnStylesCollection.cs: Added missing attributes
13782         * GridTableStylesCollection: Added missing attribute
13783         * PropertyManager: Added .ctor
13784         * SecurityIDType: Added
13785         * DataObject.cs: Implemented class
13786         * LinkArea.cs: Added missing attribute
13787
13788 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
13789
13790         * RadioButton.cs: call base method to allow to fire OnClick event
13791         * UpDownBase.cs: OnMouseUp call base method
13792         * CheckedListBox.cs: call base method before returning
13793         * TrackBar.cs: call base method before returning
13794         
13795
13796 2005-05-10  Peter Bartok  <pbartok@novell.com>
13797
13798         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
13799           for messages
13800
13801 2005-05-10  Peter Bartok  <pbartok@novell.com>
13802
13803         * DataFormats.cs: Implemented
13804         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
13805           XplatUIX11.cs: Added Clipboard APIs
13806         * XplatUIWin32.cs: Implemented Clipboard APIs
13807         * FolderBrowserDialog.cs: Added missing event, attributes
13808
13809 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
13810
13811         * CheckBox.cs: call base method to allow to fire OnClick event
13812
13813 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
13814
13815         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
13816
13817 2005-05-06  Peter Bartok  <pbartok@novell.com>
13818
13819         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
13820         * Screen.cs: Implemented
13821         * HelpNavigator.cs: Added
13822         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
13823           property
13824         * HelpProvider.cs: Implemented all we can do until we have a CHM
13825           help library (which means that "What's This" does work now)
13826
13827 2005-05-06  Jackson Harper  <jackson@ximian.com>
13828
13829         * XplatUIX11.cs: Fix waking up the main loop.
13830                 
13831 2005-05-05  Peter Bartok  <pbartok@novell.com>
13832
13833         * XplatUI.cs: Updated revision
13834         * Form.cs: Removed enless loop
13835         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
13836         * Label.cs (OnPaint): Added call to base.OnPaint()
13837         * ToolTip.cs: Made ToolTipWindow reusable for other controls
13838         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
13839         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
13840         * AxHost.cs: Added
13841         * ButtonBase.cs: Moved base.OnPaint() call to end of method
13842         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
13843           to ToolTip.ToolTipWindow for drawing and size methods; this allows
13844           reuse of ToolTipWindow by other controls
13845         * SizeGrip.cs: Moved base.OnPaint() call to end of method
13846         * XplatUIX11.cs: Now clipping drawing area (experimental)
13847         * PictureBox.cs: Moved base.OnPaint() call to end of method
13848         * Theme.cs: Fixed ToolTip abstracts to match new format
13849         * ErrorProvider.cs: Implemented
13850
13851 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
13852
13853         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
13854         * LinkLabel.cs:
13855                 - Adds cursors
13856                 - Handles focus
13857                 - Implements LinkBehavior
13858                 - Fixes many issues
13859
13860 2005-05-03  Jackson Harper  <jackson@ximian.com>
13861
13862         * ListView.cs: Calculate the scrollbar positioning on resize and
13863         paint, so they get put in the correct place.
13864
13865 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13866
13867         * ColorDialogs.cs: The small color panels are now handled by
13868           SmallColorControl. This fixes drawing of the focus rectangle
13869           and adds a 3D border.
13870
13871 2005-05-03  Peter Bartok  <pbartok@novell.com>
13872
13873         * Control.cs: Modified version of Jonathan Chamber's fix for
13874           double-buffering
13875
13876 2005-05-03  Jackson Harper  <jackson@ximian.com>
13877
13878         * ListView.cs: Remove redraw variable. Control now handles whether
13879         or not a redraw needs to be done, and will only raise the paint
13880         event if redrawing is needed.
13881
13882 2005-05-03  Jackson Harper  <jackson@ximian.com>
13883
13884         * Splitter.cs: No decorations for the splitter form. Cache the
13885         hatch brush.
13886
13887 2005-05-03  Jackson Harper  <jackson@ximian.com>
13888
13889         * TreeView.cs: Use dashed lines to connect nodes. Use the
13890         ControlPaint method for drawing the focus rect instead of doing
13891         that in treeview.
13892
13893 2005-05-02  Peter Bartok  <pbartok@novell.com>
13894
13895         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
13896
13897 2005-04-29  Jackson Harper  <jackson@ximian.com>
13898
13899         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
13900         entire image buffer. Just clear the clipping rectangle.
13901
13902 2005-04-29  Jackson Harper  <jackson@ximian.com>
13903
13904         * ThemeWin32Classic.cs: Don't draw list view items that are
13905         outside the clipping rectangle.
13906
13907 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
13908
13909         * ListBox.cs: added horizontal item scroll
13910
13911 2005-04-29  Jackson Harper  <jackson@ximian.com>
13912
13913         * ThemeWin32Classic.cs: Remove some old debug code that was
13914         causing flicker with the new double buffering code.
13915
13916 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
13917
13918         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
13919         behave like combobox and comboboxlist (still not sure if this is
13920         correct though).
13921
13922 2005-04-28  Jackson Harper  <jackson@ximian.com>
13923
13924         * ThemeWin32Classic.cs: Don't fill the middle of progress
13925         bars. This fills areas outside of the clip bounds that don't need
13926         to be filled.
13927
13928 2005-04-28  Jackson Harper  <jackson@ximian.com>
13929
13930         * Control.cs: Don't expose functionality to touch the image buffers.
13931         * ProgressBar.cs:
13932         * ListView.cs: We do not need to (and no longer can) manipulate
13933         the image buffers directly. All of this is handled by Control.
13934
13935 2005-04-28  Peter Bartok  <pbartok@novell.com>
13936
13937         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13938           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
13939           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
13940
13941 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13942
13943         * Combobox:
13944                 - Adjust control's height for non-simple comboboxes (bug fix)
13945                 - Remove dead code
13946         * MenuAPI.cs: remove unused var
13947         * ScrollBar.cs: remove unsed var
13948                  
13949         * ListBox.cs: unselect items when clearing
13950
13951 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13952
13953         * ListControl.cs: honors OnPositionChanged and default Selected Item
13954         * ListBox.cs: unselect items when clearing
13955
13956 2005-04-27  Jackson Harper  <jackson@ximian.com>
13957
13958         * X11Keyboard.cs: Initialize a default keyboard and give a warning
13959         if a "correct" keyboard is not found. This will make us not crash,
13960         but might give some users bad keyboard layouts...seems to be the
13961         same thing rewind does.
13962
13963 2005-04-27  Jackson Harper  <jackson@ximian.com>
13964
13965         * BindingManagerBase.cs: Attach the current/position changed
13966         handlers to their respective events.
13967
13968 2005-04-27  Jackson Harper  <jackson@ximian.com>
13969
13970         * Control.cs: Make sure that the first WM_PAINT does a full draw,
13971         not just a blit.
13972         * ThemeWin32Classic.cs: Don't fill the background for picture
13973         boxes. This could overright user drawing.
13974         * ComboBox.cs: Just fill the clipping rect not the entire client
13975         rect when drawing the background. This prevents pieces of the
13976         image buffer from getting overwritten and is theoretically faster.
13977
13978 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
13979
13980         * ComboBox.cs: Databinding support fixes, fire missing events
13981         * ListControl.cs: implement missing methods and properties, fixes
13982         * ThemeWin32Classic.cs: Databiding support on Drawing
13983         * CheckedListBox.cs: Databinding support fixes, fire missing events
13984         * ListBox.cs: Databinding support fixes, fire missing events
13985         
13986 2005-04-25  Peter Bartok  <pbartok@novell.com>
13987
13988         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
13989
13990 2005-04-25  Jackson Harper  <jackson@ximian.com>
13991
13992         * TreeView.cs: Use the horizontal scrollbars height not width when
13993         determining how much of the client area is available.
13994
13995 2005-04-25  Jackson Harper  <jackson@ximian.com>
13996
13997         * Control.cs: Double buffering is handled differently now. As per
13998         the spec, the extra buffer is created in the WM_PAINT message and
13999         passed down to the control's drawing code.
14000         * GroupBox.cs:
14001         * Label.cs:
14002         * CheckBox.cs:
14003         * ProgressBar.cs:
14004         * RadioButton.cs:
14005         * ColorDialog.cs:
14006         * ComboBox.cs:
14007         * PropertyGridView.cs:
14008         * UpDownBase.cs:
14009         * MessageBox.cs:
14010         * MenuAPI.cs:
14011         * ListView.cs:
14012         * ButtonBase.cs:
14013         * SizeGrip.cs:
14014         * ScrollBar.cs:
14015         * ListBox.cs:
14016         * TrackBar.cs:
14017         * ToolBar.cs:
14018         * PictureBox.cs:
14019         * DateTimePicker.cs:
14020         * StatusBar.cs:
14021         * TreeView.cs: Update to new double buffering system.
14022         * MonthCalendar.cs: Uncomment block, as Capture is now
14023         working. Update to new double buffering
14024         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14025         * PaintEventArgs.cs: New internal method allows us to set the
14026         graphics object. This is used for double buffering.
14027         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14028         rectangle. The internal paint_area var has been removed from
14029         StatusBar. The clipping rect should be used instead.
14030         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14031         * TabPage.cs: The RefreshTabs method was removed, so just call the
14032         tab controls Refresh method now.
14033         * TabControl.cs: Update to new double buffering. Make sure the
14034         handle is created before sizing the tab pages, otherwise we will
14035         get stuck in a loop.
14036
14037 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14038
14039         * LinkLabel.cs: Fix typo, bug #74719; patch
14040           from Borja Sanchez Zamorano
14041
14042 2005-04-22  Jackson Harper  <jackson@ximian.com>
14043
14044         * TreeNode.cs: Implement Handle stuff.
14045         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14046
14047 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14048
14049         * DataGridTextBoxColumn.cs: call base constructors, fixes
14050         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14051         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14052         * DataGridTableStyle.cs: implements create default column styles
14053         * DataGridBoolColumn.cs: which types can handle
14054         * DataGrid.cs: missing methods, fixes, new functionality
14055         * DataGridColumnStyle.cs: fixes
14056
14057 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14058         * FolderBrowserDialog.cs:
14059         - Use a thread to fill the TreeView
14060         - Adjusted some sizes
14061
14062 2005-04-19  Peter Bartok  <pbartok@novell.com>
14063
14064         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14065           property. Fixes #74360.
14066
14067 2005-04-19  Jackson Harper  <jackson@ximian.com>
14068
14069         * XEventQueue.cs: Lock when getting the lockqueue size.
14070         * PictureBox.cs: Call base OnPaint
14071         
14072 2005-04-19  Peter Bartok  <pbartok@novell.com>
14073
14074         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14075           messages were no longer being processed (this broke BeginInvoke)
14076
14077           
14078 2005-04-18  Jackson Harper  <jackson@ximian.com>
14079
14080         * TreeView.cs: buglet that caused node images to get drawn
14081         regardless of whether or not they were in the clipping rectangle.
14082
14083 2005-04-18  Jackson Harper  <jackson@ximian.com>
14084
14085         * CurrencyManager.cs: There are four rules for GetItemProperties:
14086         - If the type is an array use the element type of the array
14087         - If the type is a typed list, use the type
14088         - If the list contains an Item property that is not an object, use
14089         that property
14090         - use the first element of the list if there are any elements in
14091         the list.
14092         
14093 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14094
14095         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14096         click. This handles offsets for scrolling properly and reduces
14097         memory. Also fixed GetNode to not offset now that TopNode works
14098         properly.
14099         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14100         
14101 2005-04-17  Jackson Harper  <jackson@ximian.com>
14102
14103         * CursorConverter.cs: Initial implementation.
14104
14105 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14106
14107         * ListControl.cs: work towards complex data binding support on ListControl
14108         * CurrencyManager.cs: work towards complex data binding support on ListControl
14109         * ListBox.cs: work towards complex data binding support on ListControl
14110
14111
14112 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14113
14114         * GridTableStylesCollection.cs: fixes name and constructor
14115         * DataGridTableStyle.cs: fixes
14116         * DataGridBoolColumn.cs: fixes names and constructors
14117         * DataGrid.cs: define methods and properties. Some init implementations
14118         * DataGridCell.cs: define methods and properties. Some init implementations
14119         * GridTablesFactory.cs: Define methods and properties
14120
14121 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14122
14123         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14124         graphics port changes.  We still want the coordinates in global screen
14125         coordinates.
14126
14127 2005-04-14  Jackson Harper  <jackson@ximian.com>
14128
14129         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14130         check plus minus or checkbox clicks unless those features are enabled.
14131
14132 2005-04-14  Jackson Harper  <jackson@ximian.com>
14133
14134         * TreeView.cs: Add methods for setting the top and bottom visible
14135         nodes. TreeNode::EnsureVisible uses these methods.
14136         * TreeNode.cs: Implement EnsureVisible
14137
14138 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14139
14140         * Form.cs: Pospone menu assignation if the window has not been created yet
14141         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14142         size and position
14143
14144 2005-04-12  Jackson Harper  <jackson@ximian.com>
14145
14146         * TreeView.cs: Set the TopNode properly when scrolling
14147         occurs. This has the added benifit of reducing the amount of
14148         walking that needs to be done when drawing. Also removed an old
14149         misleading TODO.
14150         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14151         
14152 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14153
14154         * Timer.cs: fixes interval setting when the timer is already enabled
14155         
14156 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14157
14158         * FolderBrowserDialog.cs: First approach
14159
14160 2005-04-09  Peter Bartok  <pbartok@novell.com>
14161
14162         * FolderBrowserDialog: Added
14163
14164 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14165
14166         * LinkLabel.cs: move drawing code into the theme
14167         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14168         * Theme.cs: define DrawLinkLabel method
14169
14170 2005-04-05  Jackson Harper  <jackson@ximian.com>
14171
14172         * BindingContext.cs: Use weak references so these bad actors don't
14173         stay alive longer then they need to.
14174
14175 2005-04-05  Jackson Harper  <jackson@ximian.com>
14176
14177         * ListControl.cs: Basic implementation of complex databinding.
14178         * ComboBox.cs:
14179         * ListBox.cs: Add calls to ListControl databinding methods.
14180
14181 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14182
14183         * FileDialog.cs:
14184           - Don't change PopupButtonState to Normal when the
14185             PopupButton gets pressed several times.
14186           - Renamed ButtonPanel to PopupButtonPanel
14187
14188 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14189
14190         * ColorDialog.cs: Use cached objects instead of creating them
14191         * LinkLabel.cs: Use cached objects instead of creating them
14192         * Splitter.cs: Use cached objects instead of creating them
14193         * FontDialog.cs: Use cached objects instead of creating them
14194         * PropertyGridView.cs: Use cached objects instead of creating them
14195         * MessageBox.cs: Use cached objects instead of creating them
14196         * FileDialog.cs: Use cached objects instead of creating them
14197         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14198         * TreeView.cs: Use cached objects instead of creating them
14199         
14200 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14201
14202         * Control.cs: use Equals to compare the font since no == op
14203         * ScrollBar.cs: use Equals to compare the font since no == op
14204
14205 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14206
14207         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14208
14209 2005-04-01  Jackson Harper  <jackson@ximian.com>
14210
14211         * Binding.cs: Implement IsBinding.
14212         * BindingManagerBase.cs:
14213         * PropertyManager.cs:
14214         * CurrencyManager.cs: Add IsSuspended property.
14215
14216 2005-04-01  Jackson Harper  <jackson@ximian.com>
14217
14218         * Binding.cs: Had some IsAssignableFrom calls backwards.
14219
14220 2005-04-01  Jackson Harper  <jackson@ximian.com>
14221
14222         * Binding.cs: Handle null data members when pulling data.
14223         * PropertyManager.cs: Handle the data member being a property that
14224         does not exist.
14225
14226 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14227
14228         * DataGridTextBoxColumn.cs: fixes signature
14229         * DataGrid.cs: calls right constructor
14230
14231 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
14232
14233         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
14234         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
14235         * GridTableStylesCollection.cs: implements GridTableStylesCollection
14236         * DataGridTableStyle.cs: implements DataGridTableStyle
14237         * DataGridBoolColumn.cs: implements DataGridBoolColumn
14238         * DataGridTextBox.cs: implements DataGridTextBox
14239         * DataGridColumnStyle.cs: implements DataGridColumnStyle
14240
14241 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
14242
14243         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
14244
14245 2005-03-29  Peter Bartok  <pbartok@novell.com>
14246
14247         * Application.cs:
14248           - Properly implemented CompanyName property
14249           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
14250             returns a path that includes CompanyName, ProductName and
14251             Version (fixes bug #70330)
14252
14253 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
14254
14255         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
14256           fixes bug #72588.
14257
14258 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14259
14260         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
14261         
14262           - Added ReadOnly CheckBox
14263           - Further refactoring: moved some code from Open-/SaveFileDialog
14264             to FileDialog
14265
14266 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
14267
14268         * OpenFileDialog.cs: Fixed CheckFileExists
14269         * FileDialog.cs:
14270           Moved FileView and DirComboBox outside FileDialog class.
14271           They can now be used outside FileDialog
14272
14273 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14274
14275         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
14276         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
14277
14278 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
14279
14280         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14281           - Added missing CreatePrompt property in SaveDialog
14282           - Overall SaveDialog handling should be better now
14283           - Added non standard ShowHiddenFiles property
14284           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
14285           - Added InitialDirectory and RestoreDirectory support
14286
14287 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
14288
14289         * FileDialog.cs: Made dirComboBox usable
14290
14291 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
14292
14293         * FileDialog.cs: Added Filter support (case sensitiv)
14294
14295 2005-03-24  Jackson Harper  <jackson@ximian.com>
14296
14297         * TabControl.cs: Need a couple more pixels for the lines.
14298
14299 2005-03-23  Jackson Harper  <jackson@ximian.com>
14300
14301         * TabControl.cs: Give the tab page focus when it is selected.
14302
14303 2005-03-23  Jackson Harper  <jackson@ximian.com>
14304
14305         * TabControl.cs: Account for the drawing of tabs borders when
14306         invalidating. If the slider was clicked dont do click detection on
14307         the tabs.
14308
14309 2005-03-23  Jackson Harper  <jackson@ximian.com>
14310
14311         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
14312
14313 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
14314
14315         * CategoryGridEntry.cs: Added
14316         * GridItem.cs: Added helper properties
14317         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
14318         * GridEntry.cs: Updated code for collection
14319         * PropertyGrid.cs: Cleaned up some formatting
14320         * PropertyGridView.cs: Added drop down functionality for enums.
14321         * GridItemCollection.cs: Added enumerator logic
14322         * PropertyGridEntry.cs: Added
14323
14324 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14325
14326         * FileDialog.cs:
14327           - Removed unnecessary commented code
14328           - Fixed handling for entering the filename manually in the combobox
14329
14330 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
14331
14332         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
14333
14334 2005-03-18  Peter Bartok  <pbartok@novell.com>
14335
14336         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
14337           them being touching the border
14338
14339 2005-03-18  Peter Bartok  <pbartok@novell.com>
14340
14341         * TextControl.cs: Quick hack to center text better
14342
14343 2005-03-18  Peter Bartok  <pbartok@novell.com>
14344
14345         * ControlPaint.cs:
14346           - Don't throw NotImplemented exceptions, just print a notice once
14347             instead (requested by Miguel). This makes running existing SWF
14348             apps a bit easier
14349         * Control.cs:
14350           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
14351           - Added context menu trigger on right click
14352         * Panel.cs: Trigger invalidate on resize
14353         * StatusBar.cs:
14354           - Removed old double-buffer drawing
14355           - Added ResizeRedraw style to force proper update of statusbar
14356         * ListView.cs:
14357           - Removed debug output
14358         * ThemeWin32Classic.cs:
14359           - Fixed drawing of status bar, now draws Text property if there
14360             are no defined panels
14361
14362 2005-03-18  Jackson Harper  <jackson@ximian.com>
14363
14364         * ImageList.cs: When the image stream is set pull all the images
14365         from it.
14366         * ImageListStreamer.cs: Implement reading image list streams.
14367
14368 2005-03-18  Peter Bartok  <pbartok@novell.com>
14369
14370         * ThemeWin32Classic.cs (DrawPictureBox):
14371           - Fixed calculations for centered drawing
14372           - Fixed drawing for normal mode, not scaling the image on normal
14373
14374 2005-03-18  Peter Bartok  <pbartok@novell.com>
14375
14376         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
14377           textbox
14378         * FileDialog.cs:
14379           - Made Open/Save button the accept button for FileDialog
14380           - Tied the cancel button to the IButtonControl cancel button
14381           - Save/Open now properly builds the pathname
14382           - Now handles user-entered text
14383           - Preventing crash on right-click if no item is selected
14384           - Fixed Text property, now uses contents of textbox
14385           - Fixed SelectedText property, now just returns the text part that
14386             is selected in the text box
14387
14388 2005-03-18  Jackson Harper  <jackson@ximian.com>
14389
14390         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
14391         rect, make sure to de-adjust the interior rect after drawing the
14392         tab text.
14393
14394 2005-03-18  Peter Bartok  <pbartok@novell.com>
14395
14396         * MenuAPI.cs: Remove menu *before* executing selected action to
14397           prevent the menu from 'hanging around'
14398           
14399 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
14400
14401         * XplatUIOSX.cs: Implemented WorkingArea property
14402
14403 2005-03-17  Peter Bartok  <pbartok@novell.com>
14404
14405         * XplatUIX11.cs: Fixed menu coord calculations
14406         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
14407           for calculating offsets
14408
14409 2005-03-17  Peter Bartok  <pbartok@novell.com>
14410
14411         * Hwnd.cs: Do not consider menu presence for default client
14412           rectangle location/size
14413         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
14414           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
14415           translation functions
14416         * FileDialog.cs: Fixed (what I presume is a) typo
14417
14418 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
14419
14420         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
14421           X access (avoids X-Async errors)
14422
14423 2005-03-16  Jackson Harper  <jackson@ximian.com>
14424
14425         * TabControl.cs: Raise the SelectedIndexChanged event.
14426
14427 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
14428
14429         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
14430           - Removed vertical ToolBar and replaced it with a custom panel
14431             (desktop and home button already work)
14432           - Added Help button (some controls get resized or relocated then)
14433           - Draw correct text depending on Open or Save.
14434           - Fixed some typos...
14435
14436 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
14437
14438         * ScrollBar.cs:
14439           - Only change Maximum and Minimum when need it (bug fix)
14440
14441 2005-03-15  Peter Bartok  <pbartok@novell.com>
14442
14443         * Form.cs: Use Handle for icon, to trigger creation if
14444           the window does not yet exist
14445         * Control.cs:
14446           - CanSelect: Slight performance improvement
14447           - Focus(): Preventing possible recursion
14448           - Invalidate(): Removed ControlStyle based clear flag setting
14449           - WM_PAINT: fixed logic for calling OnPaintBackground
14450           - WM_ERASEBKGND: Fixed logic, added call to new driver method
14451             EraseWindowBackground if the control doesn't paint background
14452         * XplatUIWin32.cs:
14453           - Moved EraseWindowBackground() method to internal methods
14454           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
14455             is sent via SendMessage on BeginPaint call on Win32
14456         * XplatUIX11.cs:
14457           - Added EraseWindowBackground() method
14458           - No longer sends WM_ERASEBKGND on .Expose, but on call to
14459             PaintEventStart, which more closely matches Win32 behaviour
14460           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
14461           - Fixed SetFocus() to properly deal with client and whole windows
14462         * Hwnd.cs: Added ErasePending property
14463         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
14464         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
14465
14466 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
14467
14468         * XplatUIOSX.cs:
14469           - Fix hard loop when timers exist.
14470           - Fix bugs with middle and right click for 3 button mice.
14471
14472 2005-03-11  Peter Bartok  <pbartok@novell.com>
14473
14474         * XplatUIX11.cs:
14475           - get_WorkingArea: Need to call X directly, GetWindowPos only
14476             returns cached data now
14477           - Added sanity check to GetWindowPos hwnd usage
14478
14479 2005-03-11  Jackson Harper  <jackson@ximian.com>
14480
14481         * BindingManagerBase.cs: This method isn't used anymore as
14482         PullData now updates the data in the control.
14483
14484 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14485
14486         * Form.cs: fixes menu drawing on X11
14487         * MenuAPI.cs:  fixes menu drawing on X11
14488
14489 2005-03-11  Peter Bartok  <pbartok@novell.com>
14490
14491         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14492           from Jonathan Gilbert; should fix bug #73606
14493         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14494           in Screen coordinates. Thanks, Jordi.
14495         * Form.cs: Added missing attribute
14496
14497 2005-03-11  Peter Bartok  <pbartok@novell.com>
14498
14499         * Form.cs:
14500           - Rudimentary Mdi support
14501           - Removed outdated FormParent code
14502           - Implemented lots of missing properties and methods, still missing
14503             transparency support
14504           - Added missing attributes
14505           - Implemented support for MaximumBounds
14506           - Added firing of various events
14507         * XplatUI.cs: Added SetIcon() method
14508         * XplatUIDriver.cs: Added SetIcon() abstract
14509         * XplatUIOSX.cs: Stubbed out SetIcon() method
14510         * XplatUIX11.cs:
14511           - Implemented SetIcon() support
14512           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
14513           - Switched to unix line endings
14514         * XplatUIWin32.cs:
14515           - Made POINT internal so for can access it as part of MINMAX
14516           - Implemented SetIcon() support
14517           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
14518             native Mdi support again, might have to go managed)
14519         * Control.cs: Now fires the StyleChanged event
14520         * MdiClient.cs: Added; still mostly empty
14521
14522 2005-03-10  Peter Bartok  <pbartok@novell.com>
14523
14524         * SaveFileDialog.cs: Added emtpy file
14525
14526 2005-03-08  Peter Bartok  <pbartok@novell.com>
14527
14528         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
14529           in turn triggers OnCreateContro) when creating a handle for the
14530           first time.
14531         * TextControl.cs: Fixed endless loop in certain cases when
14532           replacing the current selection
14533
14534 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
14535
14536         * ScrollBar.cs:
14537           - Honors NewValue changes in Scroll events allowing apps to change it
14538           - Adds First and Last Scroll events
14539           - Fixes Thumb events
14540
14541 2005-03-07  Peter Bartok  <pbartok@novell.com>
14542
14543         * Hwnd.cs: Added DefaultClientRectangle property
14544         * XplatUI.cs: Now using the X11 driver Where() method, which provides
14545           more detailed debug information
14546         * XplatUIX11.cs:
14547           - Fixed size-change feedback loop, where we would pull an old size
14548             off the queue and mistakenly change our window's size to an
14549             earlier value
14550           - Now compressing ConfigureNotify events, to reduce looping and
14551             redraw issues
14552         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
14553           is called
14554
14555 2005-03-07  Jackson Harper  <jackson@ximian.com>
14556
14557         * Binding.cs: Push data pushes from data -> property. Check if the
14558         property is readonly when attempting to set it.
14559
14560 2005-03-07  Jackson Harper  <jackson@ximian.com>
14561
14562         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
14563         instead of IsSubclassOf. Pulling data now sets the value on the
14564         control.
14565         * PropertyManager.cs:
14566         * CurrencyManager.cs: Just need to pull data when updating now,
14567         because PullData will set the value on the control.
14568
14569 2005-03-04  Jackson Harper  <jackson@ximian.com>
14570
14571         * Binding.cs: Implement data type parsing and converting on pulled
14572         data. TODO: Are there more ways the data can be converted?
14573
14574 2005-03-04  Jackson Harper  <jackson@ximian.com>
14575
14576         * Binding.cs: Support <Property>IsNull checks. Also bind to the
14577         controls Validating method so we can repull the data when the
14578         control loses focus.
14579
14580 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
14581
14582         * ColumnHeader.cs:
14583           - Fixes null string format
14584           
14585         * ListView.cs:
14586           - Adds enum type checks
14587           - Fixes redrawing and recalc need after changing some properties
14588           - Fixes on focus_item set after the event
14589           - Fixes adding columns after the control has been created
14590           
14591         * ThemeWin32Classic.cs:
14592           - Fixes CheckBox focus rectangle
14593           - Fixes ColumnHeader drawing
14594
14595
14596 2005-03-03  Jackson Harper  <jackson@ximian.com>
14597
14598         * Binding.cs: Bind to <Property>Changed events so we can detect
14599         when properties are changed and update the data.
14600
14601 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
14602
14603         * ImageList.cs:
14604           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
14605           - Fixes ImageList constructor with ImageList container
14606           - Fixes image scaling (wrong parameters at DrawImage)
14607
14608 2005-02-02  Jackson Harper  <jackson@ximian.com>
14609
14610         * Binding.cs: Make property searches case-insensitive. Eliminate
14611         some duplicated code.
14612
14613 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
14614
14615         * ComboBox.cs:
14616                 - Handle focus event
14617                 - Fix scrollbar events
14618                 - Discard highlighted item if remove it
14619                 - Fixes SelectedItem with strings
14620
14621 2005-03-01  Peter Bartok  <pbartok@novell.com>
14622
14623         * Control.cs:
14624           - Fixed Visible property, now follows (once again) parent chain
14625             to return false if any control in the chain is visible=false
14626           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
14627           - Fixed several places where is_visible instead of Visible was used
14628           - Implemented FIXME related to focus selection when setting focused
14629             control to be invisible
14630
14631         * XplatUIWin32.cs: Now using proper method to find out if window is
14632           visible. Thanks to Jordi for pointing it out
14633
14634 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
14635
14636         * ComboBox.cs: show/hide scrollbar instead of creating it
14637
14638 2005-02-27  Jackson Harper  <jackson@ximian.com>
14639
14640         * CurrencyManager.cs: Add PositionChanged stuff.
14641
14642 2005-02-27  Peter Bartok  <pbartok@novell.com>
14643
14644         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
14645         * XplatUIOSX.cs: Added GetMenuOrigin() stub
14646         * XplatUIWin32.cs: Implemented GetMenuOrigin()
14647         * XplatUIX11.cs:
14648           - Implemented GetMenuDC()
14649           - Implemented GetMenuOrigin()
14650           - Implemented ReleaseMenuDC()
14651           - Implemented generation of WM_NCPAINT message
14652           - Implemented generation and handling of WM_NCCALCSIZE message
14653         * Form.cs: Added debug helper message for Jordi's menu work
14654         * Hwnd.cs:
14655           - Modified ClientRect property; added setter, fixed getter to handle
14656             setting of ClientRect
14657           - Added MenuOrigin property
14658
14659 2005-02-26  Peter Bartok  <pbartok@novell.com>
14660
14661         * XplatUIX11.cs:
14662           - Destroys the caret if a window that's being destroyed contains it
14663           - Ignores expose events coming from the X11 queue for windows that
14664             already are destroyed
14665           - Now uses the proper variable for handling DestroyNotify, before we
14666             marked the wrong window as destroyed
14667           - Improved/added some debug output
14668
14669 2005-02-26  Peter Bartok  <pbartok@novell.com>
14670
14671         * X11Keyboard.cs: Fixes to work on 64bit systems
14672
14673 2005-02-26  Peter Bartok  <pbartok@novell.com>
14674
14675         * Control.cs:
14676           - Now calling OnHandleDestroyed from DestroyHandle()
14677             instead of Dispose()
14678           - Removed bogus call to controls.Remove() from DestroyHandle()
14679
14680 2005-02-26  Peter Bartok  <pbartok@novell.com>
14681
14682         * Control.cs: Properly destroy child windows when our handle is
14683           destroyed
14684
14685 2005-02-25  Peter Bartok  <pbartok@novell.com>
14686
14687         * XplatUI.cs:
14688           - Added 'DriverDebug' define to allow tracing XplatUI API calls
14689           - Alphabetized Static Methods and Subclasses
14690
14691         * XplatUIX11.cs:
14692           - Added XException class to allow custom handling of X11 exceptions
14693           - Created custom X11 error handler, tied into XException class
14694           - Added support for MONO_XEXCEPTIONS env var to allow the user
14695             to either throw an exception on X errors or continue running
14696             after displaying the error
14697           - Added handling of DestroyNotify message
14698           - Added handler for CreateNotify message (still disabled)
14699           - Improved (tried to at least) Where method to provide file and lineno
14700         * X11Structs.cs:
14701           - Added XErrorHandler delegate
14702           - Added XRequest enumeration (to suppor translation of errors)
14703
14704 2005-02-25  Jackson Harper  <jackson@ximian.com>
14705
14706         * PropertyManager.cs: Implement editing features
14707         * CurrencyManager.cs:
14708         * Binding.cs: First attempt at UpdateIsBinding
14709         * BindingManagerBase.cs: Call UpdateIsBinding before
14710         pushing/pulling data.
14711
14712 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
14713
14714         * MenuAPI.cs: Respect disabled items
14715         * ThemeWin32Classic.cs
14716                 - Caches ImageAttributes creation for DrawImageDisabled
14717                 - Fixes vertical menu line drawing
14718                 - Draws disabled arrows in disable menu items
14719
14720 2005-02-24  Peter Bartok  <pbartok@novell.com>
14721
14722         * Hwnd.cs:
14723           - Added UserData property to allow associating arbitrary objects
14724             with the handle
14725           - Fixed leak; now removing Hwnd references from static windows array
14726         * XplatUIWin32.cs:
14727           - Fixed Graphics leak in PaintEventEnd
14728           - Removed usage of HandleData, switched over to Hwnd class
14729         * HandleData.cs: Removed, obsoleted by Hwnd.cs
14730
14731 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14732
14733         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
14734         * ScrollBar.cs: Fixes bug
14735         * TrackBar.cs: removes death code, clipping, mimize refreshes,
14736          keyboard navigation enhancements
14737
14738 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14739
14740         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
14741         * GroupBox.cs: Add control styles
14742         * Label.cs: Add control styles
14743         * UpDownBase.cs: Add control styles
14744         * ListBox.cs: Add control styles
14745         * XplatUIWin32.cs: Fixes wrong parameter order
14746
14747
14748 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
14749
14750         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
14751
14752 2005-02-23  Jackson Harper  <jackson@ximian.com>
14753
14754         * PropertyManager.cs: Implement property binding. This doesn't
14755         seem to work yet though as (I think) there are some bugs in
14756         System.ComponentModel.PropertyDescriptor.
14757         * BindingContext.cs: Use new PropertyManager constructor.
14758
14759 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
14760
14761         * ProgressBar.cs: use clip region in ProgressBar
14762         * ThemeWin32Classic.cs: use clip region in ProgressBar
14763
14764 2004-02-22  Jackson Harper  <jackson@ximian.com>
14765
14766         * BindingsCollection.cs: Remove some debug code.
14767
14768 2005-02-22  Jackson Harper  <jackson@ximian.com>
14769
14770         * BindingContext.cs:
14771         * ControlBindingsCollection.cs:
14772         * CurrencyManager.cs:
14773         * Binding.cs:
14774         * BindingManagerBase.cs: Initial implementation
14775         * BindingsCollection.cs: Add an internal contains method that the
14776         BindingManagerBase uses to ensure bindings aren't added twice to
14777         the collection.
14778         * PropertyManager.cs: Stubbed out.
14779         * Control.cs:
14780         * ContainerControl.cs: Hook up databinding
14781         
14782 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
14783
14784         * XplatUIOSX.cs:
14785           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
14786           Fixed Invalidate/Update chain.
14787           Fixed tons of other minor bugs (this is almost a complete rewrite).
14788
14789 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
14790
14791         * ComboBox.cs: do subcontrol creation when the control is created
14792
14793 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14794
14795         * Label.cs: fixes image drawing (image and imagelist)
14796         * ThemeWin32Classic.cs: cache brushes
14797         
14798 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14799
14800         * Form.cs: Move menu drawing code to Theme class
14801         * ComboBox.cs: Move ComboBox drawing code to Theme class
14802         * MenuItem.cs: Move menu drawing code to Theme class
14803         * MenuAPI.cs: Move menu drawing code to Theme class
14804         * ThemeWin32Classic.cs: New methods
14805         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
14806         * ListBox.cs: Move Listbox drawing code to Theme class
14807         * Theme.cs: New methods
14808
14809 2005-02-20  Peter Bartok  <pbartok@novell.com>
14810
14811         * Control.cs:
14812           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
14813             only process mnemonics on those)
14814           - Fixed event sequence for key handling; first calling
14815             ProcessKeyEventArgs now
14816         * TextBoxBase.cs:
14817           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
14818             for processing non-character keys
14819           - Fixed WM_CHAR to generate proper event sequence before processing
14820         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
14821           generation
14822
14823 2005-02-19  Peter Bartok  <pbartok@novell.com>
14824
14825         * UserControl.cs: Added TextChanged event; added attributes
14826         * SizeGrip.cs: Implemented resizing and optional display of grip
14827         * Form.cs: Fixed attribute
14828         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
14829           Changed meaning of ScrollWindow bool argument; instead of the
14830           clear attribute (which will be true usually anyway), it gives the
14831           option of moving child controls as well.
14832         * XplatUIX11.cs:
14833           - Changed to match new ScrollWindow argument
14834           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
14835             now handles the implicit parent window a WM puts around us
14836         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
14837           to work)
14838         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
14839         * TreeView.cs: Adjusted to new ScrollWindow arguments
14840
14841 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14842
14843         * Form.cs: Menu integration with non-client area
14844         * MenuItem.cs: Menu integration with non-client area
14845         * MenuAPI.cs: Menu integration with non-client area
14846
14847 2005-02-18  Peter Bartok  <pbartok@novell.com>
14848
14849         * MethodInvoker.cs: Added
14850         * MdiLayout.cs: Added
14851         * SendKeys.cs: Started implementation
14852         * ErrorIconAlignment.cs: Added
14853
14854 2005-02-18  Peter Bartok  <pbartok@novell.com>
14855
14856         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
14857         * Form.cs: Added handling for Menu-related Non-client messages
14858
14859 2005-02-17  Peter Bartok  <pbartok@novell.com>
14860
14861         * UpDownBase.cs: Fixed typo, compilation errors
14862         * DomainUpDown.cs: Fixed attribute value
14863
14864 2005-02-16  Miguel de Icaza  <miguel@novell.com>
14865
14866         * UpDownBase.cs: Attach entry events.
14867         Propagate events.
14868         Add ForeColor property, Focused, InterceptArrowKeys (interception
14869         does not work yet).
14870
14871 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
14872
14873         * Form.cs:
14874                 - Redraw non client are on Setmenu
14875                 - Calc proper menu starting point
14876
14877 2005-02-17  Peter Bartok  <pbartok@novell.com>
14878
14879         * Application.cs: Fixed message_filter check
14880
14881 2005-02-17  Peter Bartok  <pbartok@novell.com>
14882
14883         * Application.cs: Now calls registered message filters
14884         * DockStyle.cs: Fixed attribute
14885         * Form.cs: Fixed attribute
14886         * Menu.cs: Fixed attribute
14887         * ToolTip.cs: Fixed attribute
14888         * TreeNode.cs: Added missing attributes and arranged in regions
14889         * PropertyGrid.cs: Fixed signatures
14890         * TreeNodeCollection.cs: Added attributes
14891         * Splitter.cs: Added missing attributes; arranged into regions
14892         * TabPage.cs: Added missing attributes; arranged into regions
14893         * TextBoxBase.cs: Added missing attributes
14894         * TextBox.cs: Added missing attributes
14895         * ArrangeDirection.cs: Added missing attributes
14896         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
14897         * ToolBarButton.cs: Fixed attributes
14898         * AnchorStyles.cs: Fixed attribute
14899         * TrackBar.cs: Fixed attributes
14900         * TabControl.cs: Added missing attributes and arranged into regions
14901         * ToolBar.cs: Fixed attribute
14902         * StatusBar.cs: Fixed signature, organized into regions and added
14903           attributes
14904         * StatusBarPanel.cs: Fixed attributes
14905         * ContentsResizedEventArgs.cs: Implemented
14906         * ContentsResizedEventHandler.cs: Implemented
14907         * DateBoldEventArgs.cs: Implemented
14908         * DateBoldEventHandler.cs: Implemented
14909         * UpDownEventArgs.cs: Implemented
14910         * UpDownEventHandler.cs: Implemented
14911         
14912 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
14913
14914         * Form.cs: first Menu NC refactoring
14915         * MenuAPI.cs: first Menu NC refactoring
14916         
14917 2005-02-16  Peter Bartok  <pbartok@novell.com>
14918
14919         * ImeMode.cs: Added missing attributes
14920         * Menu.cs: Fixed attribute
14921         * GroupBox.cs: Fixed attribute
14922         * Label.cs: Fixed attribute
14923         * ColorDialog.cs (RunDialog): Removed TODO attribute
14924         * ComboBox.cs: Fixed attributes
14925         * ListControl.cs: Added missing attributes
14926         * PropertyGrid.cs: Fixed attributes
14927         * Control.cs: Fixed attributes
14928         * ListViewItem.cs: Added TypeConverter attribute
14929         * NotifyIcon.cs: Fixed attributes
14930         * ListView.cs: Fixed attributes
14931         * ButtonBase.cs: Fixed attribute
14932         * ImageList.cs: Added missing attributes
14933         * ContainerControl.cs: Fixed signature
14934         * CheckedListBox.cs: Fixed attribute; added missing attributes
14935         * Panel.cs: Fixed attributes
14936         * PropertyTabChangedEventArgs.cs: Added missing attribute
14937         * PropertyValueChangedEventArgs.cs: Added missing attribute
14938         * Binding.cs: Fixed attribute
14939         * ListViewItemConverter: Implemented ListViewSubItemConverter class
14940         * ListBox.cs: Fixed attribute; added missing attributes;
14941         * ScrollableControl.cs: Added missing attributes
14942         * PictureBox.cs: Added missing attributes; implemented missing property
14943         * DateTimePicker.cs: Added missing attributes
14944         * Theme.cs (ToolWindowCaptionHeight): Fixed type
14945         * MonthCalendar.cs: Fixed attributes
14946         * StatusBarPanel.cs: Added missing attributes
14947         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
14948
14949 2005-02-16  Peter Bartok  <pbartok@novell.com>
14950
14951         * TextBoxBase.cs: The previous method to enforce height yet remember
14952           the requested high was less than ideal, this is an attempt to do
14953           it better.
14954         * Control.cs: Added comment about possible problem
14955         * Copyright: Updated format
14956         * GridItemType.cs: Fixed swapped values
14957
14958 2005-02-15  Jackson Harper  <jackson@ximian.com>
14959
14960         * BaseCollection.cs: Use property so we never access an
14961         uninitialized list. Also initialize the list in the property.
14962
14963 2005-02-15  Peter Bartok  <pbartok@novell.com>
14964
14965         * GroupBox.cs (ProcessMnemonic): Implemented
14966         * Label.cs (ProcessMnemonic): Implemented
14967         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
14968           hotkeys
14969
14970 2005-02-15  Peter Bartok  <pbartok@novell.com>
14971
14972         * RadioButton.cs (ProcessMnemonic): Implemented
14973         * CheckBox.cs (ProcessMnemonic): Implemented
14974         * Control.cs:
14975           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
14976             handling
14977           - Added internal method to allow calling ProcessMnemonic from other
14978             controls
14979         * ContainerControl.cs:
14980           - Started support for handling validation chain handling
14981           - Implemented ProcessMnemonic support
14982           - Added Select() call to Active, to make sure the active control
14983             receives focus
14984         * Form.cs: Setting toplevel flag for Forms (this was lost in the
14985           FormParent rewrite)
14986         * ThemeWin32Classic.cs:
14987           - DrawCheckBox(): Fixed stringformat to show hotkeys
14988           - DrawRadioButton(): Fixed stringformat to show hotkeys
14989         * CommonDialog.cs: Removed WndProc override, not needed
14990
14991 2005-02-14  Peter Bartok  <pbartok@novell.com>
14992
14993         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
14994           missed those in the rewrite
14995
14996 2005-02-14  Miguel de Icaza  <miguel@novell.com>
14997
14998         * NumericUpDown.cs (Increment, ToString): Add.
14999         (DecimalPlaces): implement.
15000         
15001         Add attributes.
15002         
15003         * UpDownBase.cs: Add the designer attributes.
15004
15005 2005-02-13  Peter Bartok  <pbartok@novell.com>
15006
15007         * Panel.cs: Removed border_style, now in Control
15008         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15009           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15010
15011 2005-02-13  Peter Bartok  <pbartok@novell.com>
15012
15013         * MouseButtons.cs: Added missing attributes
15014         * XplatUIStructs.cs: Added enumeration for title styles
15015         * LeftRightAlignment.cs: Added missing attributes
15016         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15017           it compatible with Graphics.FromHwnd()
15018         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15019         * Keys.cs: Added missing attributes
15020         * SelectionRange.cs: Added missing attributes
15021         * SelectionRangeConverter.cs: Added
15022         * XplatUI.cs:
15023           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15024             ReleaseMenuDC methods
15025           - Renamed ReleaseWindow to UngrabWindow
15026           - Added proper startup notice to allow version identification
15027         * Form.cs:
15028           - Added missing attributes
15029           - Removed FormParent concept
15030         * Label.cs: Removed border_style field, now in Control
15031         * RadioButton.cs: Now properly selects RadioButton when focus is
15032           received
15033         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15034         * Control.cs:
15035           - Added missing attributes
15036           - Added borderstyle handling
15037           - Removed FormParent concept support
15038           - Fixed calls to XplatUI to match changed APIs
15039           - Fixed bug that would case us to use disposed Graphics objects
15040           - Removed unneeded internal methods
15041           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15042           - SelectNextControl(): Fixed to properly check common parents
15043         * TextBoxBase.cs: Removed border_style field (now in Control)
15044         * MessageBox.cs:
15045           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15046             fixed calculations for form size
15047           - Added support for localized strings and icons
15048           - Improved form size calculations, added border
15049         * ListView.cs: Removed border_style field (now in Control)
15050         * X11Structs.cs: Moved several structs from X11 driver here
15051         * X11Keyboard.cs: Changed debug message
15052         * Application.cs: Removed FormParent concept support
15053         * CommonDialog.cs:
15054           - Resetting end_modal flag
15055           - Removed FormParent concept support
15056         * NativeWindow.cs: Removed FormParent concept support
15057         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15058           Client area and Non-Client whole window to allow support for WM_NC
15059           messages
15060         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15061           prevent using it until it supports Hwnd as per Geoff Norton's request
15062         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15063         * PictureBox.cs: Removed border_style field, now in Control
15064         * XplatUIWin32.cs: Added new driver methods
15065
15066 2005-02-12  Peter Bartok  <pbartok@novell.com>
15067
15068         * OpacityConverter.cs: Implemented
15069         * Hwnd.cs: Internal class to support drivers that need to emulate
15070           client area/non-client area window behaviour
15071
15072 2005-02-11  Peter Bartok  <pbartok@novell.com>
15073
15074         * KeysConverter.cs: Implemented
15075
15076 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15077
15078         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15079         * LinkLabel: Added missing attributes
15080         * MainMenu.cs: fixes ToString
15081         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15082         * ListBox.cs: fixes event position
15083         * TrackBar.cs: adds missing attributes and events
15084         
15085 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15086
15087         * MenuItem.cs: Use SystemInformation and bug fixes
15088         * MenuAPI.cs: Use SystemInformation and bug fixes
15089
15090 2005-02-09  Jackson Harper  <jackson@ximian.com>
15091
15092         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15093         their keystate otherwise things like VK_MENU get stuck "on".
15094
15095 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15096
15097         * ListBox.cs: Fixes AddRange bug
15098         
15099 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15100
15101         * ProgressBar.cs
15102                 - Add missing attributes
15103                 - Add missing method
15104                 
15105         * CheckedListBox.cs: Added missing attributes
15106                 - Add missing attributes
15107                 - Remove extra method
15108         
15109         * ComboBox.cs: Added missing attributes
15110         * VScrollBar.cs: Added missing attributes
15111         * ScrollBar.cs:  Added missing attributes
15112         * ListBox.cs: Fixes signature, add missing consts
15113         * LinkArea.cs:   Added missing attributes
15114         
15115
15116 2005-02-08  Peter Bartok  <pbartok@novell.com>
15117
15118         * Menu.cs: Added missing attributes
15119         * MainMenu.cs: Added missing attributes
15120         * GroupBox.cs: Added missing attributes
15121         * Label.cs: Added missing attributes
15122         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15123         * ColorDialog.cs:
15124           - Added Instance and Options properties
15125           - Added missing attributes
15126         * Cursor.cs: Made Serializable
15127         * NotifyIcon: Added missing attributes
15128         * MenuItem.cs: Added missing attributes
15129         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15130         * Panel.cs: Added Missing attributes
15131         * MonthCalendar.cs: Fixed CreateParams
15132
15133 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15134         
15135         * LinkLabel.cs:
15136                 - Fixes signature
15137                 - Fixes issues with links
15138                 - Adds the class attributes
15139
15140 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15141         
15142         * ComboBox.cs:
15143                 - Fixes button when no items available in dropdown
15144                 - Fixes repainting problems
15145                 - Adds the class attributes
15146                 
15147 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15148
15149         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15150         the current theme.  Cache these on startup.
15151
15152 2005-02-07  Jackson Harper  <jackson@ximian.com>
15153
15154         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15155         the scrollbar buttons when they are depressed.
15156
15157 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15158
15159         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15160         Get the display size from the main displayid.  We currently dont
15161         support multiple display configurations.
15162
15163 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15164
15165         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15166
15167 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15168
15169         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15170
15171 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15172
15173         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15174
15175 2005-02-04  Jackson Harper  <jackson@ximian.com>
15176
15177         * ThemeWin32Classic.cs: Respect the clipping rect when
15178         drawing. Only fill the intersection of clips and rects so there
15179         isn't a lot of large fills.
15180         * ScrollBar.cs: Pass the correct clipping rect to the theme
15181         engine. Remove some debug code.
15182
15183 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15184         
15185         * DateTimePicker.cs:
15186                 - Fixed crash on DateTime.Parse, use Constructor instead
15187
15188 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15189         
15190         * MenuItem.cs:
15191         * MenuAPI.cs:
15192                 - Owner draw support (MeasureItem and DrawItem)
15193
15194 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15195         
15196         *  Menu.cs:
15197                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15198                 - Fixes MenuItems.Add range
15199         * MenuItem.cs:
15200                 - MergeMenu and Clone and CloneMenu functions
15201
15202 2005-02-03  Jackson Harper  <jackson@ximian.com>
15203
15204         * ScrollBar.cs: Make abstract
15205         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15206         is abstract.
15207
15208 2005-02-03  Jackson Harper  <jackson@ximian.com>
15209
15210         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15211         all the unneeded refreshes and uses invalidates with properly
15212         computed rects.
15213
15214 2005-02-03  Peter Bartok  <pbartok@novell.com>
15215
15216         * ComponentModel.cs: Added
15217         * IDataGridEditingService.cs: Added
15218         * Timer.cs: Added missing attributes
15219         * ToolTip.cs: Added missing attributes
15220
15221 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
15222
15223         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
15224
15225 2005-02-03  Peter Bartok  <pbartok@novell.com>
15226
15227         * ListBox.cs: Added missing attributes
15228
15229 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
15230         
15231         * ListBox.cs:
15232                 - Fixes font height after font change
15233                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
15234                 
15235 2005-02-02  Peter Bartok  <pbartok@novell.com>
15236
15237         * HandleData.cs: Introduced static methods to allow class
15238           to be more self-contained and track it's own HandleData objects
15239         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
15240           HandleData to use new static methods
15241
15242 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
15243
15244         * Combobox.cs:
15245                 - Fixes default size and PreferredHeight
15246                 - Missing events
15247                 - ObjectCollection.Insert implementation
15248                 
15249         * ListControl.cs
15250                 - Fixes signature
15251         * ListBox.cs:
15252                 - Several fixes
15253                 - ObjectCollection.Insert implementation
15254                 - No selection after clean
15255                 - Small fixes
15256
15257 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15258
15259         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
15260
15261 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
15262
15263         * Combobox.cs:
15264                 - Caches ItemHeight calculation for OwnerDrawVariable
15265                 - Handles dropdown properly
15266                 - Fixes several minor bugs
15267
15268 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15269
15270         * ListBox.cs:
15271                 - Fixes 71946 and 71950
15272                 - Fixes changing Multicolumn on the fly
15273                 - Fixes keyboard navigation on Multicolumn listboxes
15274
15275 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15276         
15277         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
15278         crash reporter log.
15279
15280 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15281
15282         * XplatUIOSX.cs: Allow applications to actually exit.
15283
15284 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
15285
15286         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
15287         their parent at creation time rather than lazily later.  Fixes a major
15288         regression we were experiencing.
15289
15290 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
15291
15292         * ThemeWin32Classic.cs: more date time picker painting fixes
15293         * DateTimePicker.cs: more monthcalendar drop down fixes
15294         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
15295
15296 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
15297
15298         * ScrollBar.cs:
15299                 - When moving the thumb going outside the control should stop the moving
15300                 - Adds the firing of missing events
15301                 - Fixes no button show if Size is not specified
15302                 - End / Home keys for keyboard navigation
15303
15304 2005-01-30  Peter Bartok  <pbartok@novell.com>
15305
15306         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
15307           sanity check to prevent theoretical loop
15308         * XplatUIWin32.cs (SetVisible): Removed debug output
15309         * XplatUIX11.cs (SystrayChange): Added sanity check
15310         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
15311         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
15312           behaviour, valid until the X11 client window rewrite is done
15313         * TextBox.cs (ctor): Setting proper default foreground and background
15314           colors
15315
15316 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
15317
15318         * Theme: Added DrawDateTimePicker to interface
15319         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
15320         * DateTimePicker.cs: Created (still needs keys and painting code)
15321         * DateTimePickerFormat.cs: added
15322         * MonthCalendar.cs: fixed CreateParams for popup window mode
15323           
15324 2005-01-29  Peter Bartok  <pbartok@novell.com>
15325
15326         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
15327           this should also the calculations for ligher/darker
15328         * Theme.cs: Fixed defaults for ScrollBar widths/heights
15329
15330 2005-01-29  Peter Bartok  <pbartok@novell.com>
15331
15332         * ArrangeDirection.cs: Added
15333         * ArrangeStartingPositon.cs: Added
15334         * SystemInformation.cs: Implemented
15335         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15336           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
15337           used by SystemInformation class
15338         * X11Strucs.cs: Added XSizeHints structure
15339         * MenuAPI.cs:
15340           - Fixed CreateParams to make sure the menu window is always visible
15341           - TrackPopupMenu: Added check to make sure we don't draw the
15342             menu offscreen
15343
15344 2005-01-29  Peter Bartok  <pbartok@novell.com>
15345
15346         * HandleData.cs: Added method for altering invalid area
15347         * TextBoxBase.cs: Implemented TextLength
15348
15349 2005-01-28  Peter Bartok  <pbartok@novell.com>
15350
15351         * XplatUIX11.cs: Improvement over last patch, not sending
15352           the WM_PAINT directly anymore, instead we scroll any pending
15353           exposed areas and let the system pick out the WM_PAINT later
15354
15355 2005-01-28  Peter Bartok  <pbartok@novell.com>
15356
15357         * SWF.csproj: Deleted, no longer used. Instead,
15358           Managed.Windows.Forms/SWF.csproj should be used
15359         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
15360           directly, to avoid a potential race condition with the next
15361           scroll
15362
15363 2005-01-28  Peter Bartok  <pbartok@novell.com>
15364
15365         * XplatUI.cs: Made class internal
15366
15367 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
15368
15369         * CheckedListBox.cs:
15370                 - Draw focus
15371                 - Fixed Drawing
15372                 - Missing methods and events
15373
15374 2005-01-27  Peter Bartok  <pbartok@novell.com>
15375
15376         * Application.cs (Run): Don't use form if we don't have one
15377
15378 2005-01-27  Peter Bartok  <pbartok@novell.com>
15379
15380         * TextBoxBase.cs (get_Lines): Fixed index off by one error
15381
15382 2005-01-27  Peter Bartok  <pbartok@novell.com>
15383
15384         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
15385         * GridItem.cs: Added; Patch by Jonathan S. Chambers
15386         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
15387         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
15388         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
15389         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
15390         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15391         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15392         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15393         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15394         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
15395         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
15396
15397 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15398
15399         * Combobox.cs:
15400                 - Draw focus on Simple Combobox
15401                 - Fixes drawing issues
15402                 - fixes 71834
15403
15404 2005-01-27  Peter Bartok  <pbartok@novell.com>
15405
15406         * Form.cs:
15407           - Place window in default location, instead of hardcoded 0/0
15408           - Send initial LocationChanged event
15409         * Control.cs:
15410           - UpdateBounds after creation to find out where the WM placed us
15411           - Make sure that if the ParentForm changes location the Form
15412             is notified
15413         * XplatUIX11.cs: XGetGeometry will not return the coords relative
15414             to the root, but to whatever the WM placed around us.
15415             Translate to root coordinates before returning toplevel
15416             coordinates
15417         * XplatUIWin32.cs: Removed debug output
15418         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
15419           flag to GetWindowPos, to allow translation of coordinates on X11
15420
15421 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
15422
15423         * ListBox.cs: connect LostFocus Event
15424
15425 2005-01-27  Peter Bartok  <pbartok@novell.com>
15426
15427         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15428           XplatUIX11.cs: Extended the Systray API
15429         * Form.cs: Removed debug output
15430         * Application.cs: Fixed focus assignment, always need to call
15431           XplatUI.Activate() since Form.Activate() has rules that may
15432           prevent activation
15433         * NotifyIcon.cs: Should be complete now
15434         * ToolTip.cs: Worked around possible timer bug
15435
15436 2005-01-27  Jackson Harper  <jackson@ximian.com>
15437
15438         * TabControl.cs:
15439         - Only invalidate the effected tabs when the
15440         selected index changes. This reduces drawing and gets rid of some
15441         flicker.
15442         - Only refresh if the tabs need to be shifted, otherwise only
15443         invalidate the slider button.
15444         - On windows the tabs are not filled to right if the slider is
15445         visible.
15446         
15447 2005-01-27  Jackson Harper  <jackson@ximian.com>
15448
15449         * TabControl.cs: Only refresh on mouseup if we are showing the
15450         slider. Also only invalidate the button whose state has changed.
15451
15452 2005-01-26  Peter Bartok  <pbartok@novell.com>
15453
15454         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
15455         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
15456           and SystrayRemove() methods
15457         * XplatUIOSX.cs: Stubbed Systray methods
15458         * XplatUIX11.cs:
15459           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
15460             methods
15461           - Fixed broken XChangeProperty calls (marshalling messed up things)
15462         * X11Structs.cs: Added enums and structs required for Size hinting
15463         * NotifyIcon.cs: Added & implemented
15464
15465 2005-01-26  Jackson Harper  <jackson@ximian.com>
15466
15467         * TabControl.cs: Space vertically layed out tabs properly.
15468
15469 2005-01-26  Peter Bartok  <pbartok@novell.com>
15470
15471         * Form.cs (CreateClientParams): Always set the location to 0,0
15472           since we're a child window.
15473
15474         * Control.cs (SetVisibleCore): Always explicitly setting the location
15475           of a toplevel window, apparently X11 doesn't like to move windows
15476           while they're not mapped.
15477
15478 2005-01-26  Jackson Harper  <jackson@ximian.com>
15479
15480         * TabControl.cs: Implement FillToRight size mode with vertically
15481         rendered tabs.
15482
15483 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15484
15485         * ControlPaint.cs, ThemeWin32Classic.cs
15486                 - Fixes DrawFocusRectangle
15487
15488 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15489
15490         * MenuAPI.cs:
15491                 - MenuBar tracking only starts when item is first clicked
15492                 - Fixes menu hidding for multiple subitems
15493                 - Unselect item in MenuBar when item Executed
15494                 - Fixes bug 71495
15495
15496 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15497
15498         * ListControl.cs:
15499                 - IsInputKey for ListBox
15500         * ListBox.cs:
15501                 - Focus item
15502                 - Shift and Control item selection
15503                 - Implement SelectionMode.MultiExtended
15504                 - Fixes RightToLeft
15505         * ComboBox.cs:
15506                 - IsInputKey implemented
15507                 - Do not generate OnTextChangedEdit on internal txt changes
15508                 
15509 2005-01-23  Peter Bartok  <pbartok@novell.com>
15510
15511         * AccessibleObject.cs: Partially implemented Select()
15512         * MonthCalendar.cs: Added missing attributes and events
15513         * Form.cs: Fixed CreateParams behaviour, now controls derived from
15514           form can properly override CreateParams.
15515         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15516           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
15517           Control performs Invalidate & Update
15518         * NativeWindow (CreateHandle): Added special handling for Form
15519           and Form.FormParent classes to allow overriding of From.CreateParams
15520         * Control.cs:
15521           - ControlNativeWindow: Renamed 'control' variable to more intuitive
15522             name 'owner'
15523           - ControlNativeWindow: Added Owner property
15524           - Removed usage of Refresh() on property changes, changed into
15525             Invalidate(), we need to wait until the queue is processed for
15526             updates, direct calls might cause problems if not all vars for
15527             Paint are initialized
15528           - Added call to UpdateStyles() when creating the window, to set any
15529             styles that CreateWindow might have ignored.
15530           - Added support for Form CreateParent overrides to UpdateStyles()
15531         * MessageBox.cs: Removed no longer needed FormParent override stuff,
15532           CreateParams are now properly overridable
15533         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
15534           CreateParams are now properly overridable
15535
15536 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
15537
15538         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
15539         OnTextBoxChanged.
15540
15541         Capture LostFocus and OnTextBoxChanged.  The later introduces a
15542         recursive invocation that I have not figured out yet.
15543
15544         Reset the timer when not using (it was accumulating).
15545
15546
15547         (OnTextBoxChanged): Set UserEdit to true here to track whether the
15548         user has made changes that require validation.
15549
15550         Reset changing to avoid loops.
15551
15552 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
15553
15554         * NumericUpDown.cs: Display value at startup.
15555
15556         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
15557         ValidateEditText.
15558
15559         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
15560         filled in.  Added some basic parsing of text.
15561
15562         Still missing the OnXXX method overrides, and figuring out the
15563         events that must be emitted.
15564
15565         * UpDownBase.cs: Handle UserEdit on the Text property.
15566         
15567 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
15568
15569         * ComboBox.cs:
15570           - Fixes IntegralHeight
15571           - ToString method
15572
15573 2005-01-21  Jackson Harper  <jackson@ximian.com>
15574
15575         * TabControl.cs: Set the SelectedIndex property when SelectedTab
15576         is set so that the page visibility is updated and the tabs are
15577         sized correctly.
15578
15579 2005-01-21  Jackson Harper  <jackson@ximian.com>
15580
15581         * TabControl.cs: Use cliping rectangle for blitting. Give the
15582         theme the clipping rect so we can do clipping while
15583         drawing. Remove some debug code.
15584
15585 2005-01-21  Jackson Harper  <jackson@ximian.com>
15586
15587         * TabPage.cs: Add a new method so tab pages can force the tab
15588         control to recalculate the tab page sizes.
15589         * TabControl.cs: UpdateOwner needs to make the tab control recalc
15590         sizes.
15591
15592 2005-01-20  Jackson Harper  <jackson@ximian.com>
15593
15594         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
15595
15596 2005-01-20  Jackson Harper  <jackson@ximian.com>
15597
15598         * TreeView.cs: Set the bounds for nodes properly. They were
15599         getting screwed up when checkboxes were not enabled, but images
15600         were.
15601
15602 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
15603
15604         * ListBox.cs:
15605                 - Owner draw support
15606                 - Fixes
15607                 
15608 2005-01-20  Jackson Harper  <jackson@ximian.com>
15609
15610         * XplatUIStructs.cs: More misc keys
15611         * X11Keyboard.cs: Ignore some control keys.
15612
15613 2005-01-20  Jackson Harper  <jackson@ximian.com>
15614
15615         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
15616         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
15617
15618 2005-01-19  Peter Bartok  <pbartok@novell.com>
15619
15620         * Control.cs: Un-selecting the control when it is loosing focus
15621
15622 2005-01-19  Jackson Harper  <jackson@ximian.com>
15623
15624         * TreeView.cs: Hook up to the text controls leave event so we can
15625         end editing when the users clicks outside the text box.
15626         
15627 2005-01-19  Jackson Harper  <jackson@ximian.com>
15628
15629         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
15630         get set in the conversion array.
15631
15632 2005-01-19  Peter Bartok  <pbartok@novell.com>
15633
15634         * Application.cs (ModalRun): Added a call to CreateControl to ensure
15635           focus is properly set
15636         * Button.cs:
15637           - Added missing attributes
15638           - removed styles, those are already set in the base class
15639         * ButtonBase.cs:
15640           - Added missing attributes
15641           - Added clip window styles
15642         * CheckBox.cs: Added missing attributes
15643         * CommonDialog.cs:
15644           - FormParentWindow.CreateParams: Added required clip styles
15645         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
15646           also filters modifier keys
15647         * MessageBox.cs:
15648           - Added assignment of Accept and Cancel button to enable Enter
15649             and Esc keys in MessageBox dialogs
15650           - FormParentWindow.CreateParams: Added required clip styles
15651         * RadioButton.cs: Added missing attributes
15652         * TextControl.cs: No longer draws selection if control does not
15653           have focus
15654         * TextBoxBase.cs:
15655           - Now draws simple rectangle around test area to make it obvious
15656             there's a control. This is a hack until we properly support borders
15657           - A few simple fixes to support selections better, now erases selected
15658             text when typing, and resets selection when using movement keys
15659
15660 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15661
15662         * UpDownBase.cs: Added some new properties.
15663
15664         * DomainUpDown.cs: Implement a lot to get my test working.
15665
15666 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15667
15668         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
15669
15670 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15671
15672         * OSXStructs (WindowAttributes): Fixed csc complaints
15673
15674 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15675
15676         * XplayUIOSX.cs:
15677           OSXStructs.cs: Initial refactor to move enums and consts into
15678           OSXStructs and use them in the driver for greater readability.
15679
15680 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15681
15682         * XplatUIOSX.cs: Initial support for Standard Cursors.
15683         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
15684
15685 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
15686
15687         * ComboBox.cs: ability to change style when the ctrl is already
15688         created, missing methods and events, bug fixes, signature fixes
15689
15690 2005-01-19  Peter Bartok  <pbartok@novell.com>
15691
15692         * Cursors.cs (ctor): Added ctor to fix signature
15693
15694 2005-01-18  Peter Bartok  <pbartok@novell.com>
15695
15696         * Button.cs: Implemented DoubleClick event
15697         * ButtonBase.cs:
15698           - Fixed keyboard handling to behave like MS, where the press of
15699             Spacebar is equivalent to a mousedown, and the key release is
15700             equivalent to mouseup. Now a spacebar push will give the same
15701             visual feedback like a mouse click.
15702           - Added missing attributes
15703           - Added ImeModeChanged event
15704           - Added support for generating DoubleClick event for derived classes
15705         * CheckBox.cs:
15706           - Implemented DoubleClick event
15707           - Added missing attributes
15708         * CommonDialog.cs: Added missing attribute
15709         * ContextMenu.cs: Added missing attributes
15710         * RadioButton.cs:
15711           - AutoChecked buttons do not allow to be unselected when clicked
15712             (otherwise we might end up with no selected buttons in a group)
15713           - Added missing attributes
15714           - Implemented DoubleClickEvent
15715         * ThreadExceptionDialog.cs: Enabled TextBox code
15716
15717 2005-01-18  Peter Bartok  <pbartok@novell.com>
15718
15719         * Form.cs: Removed debug output
15720         * Button.cs: Added support for DoubleClick method
15721
15722 2005-01-18  Peter Bartok  <pbartok@novell.com>
15723
15724         * Form.cs:
15725           - Added method to parent window that allows triggering size
15726             calculations when a menu is added/removed
15727           - set_Menu: Cleaned up mess from early days of Form and Control,
15728             now properly triggers a recalc when a menu is added/removed
15729           - Added case to select form itself as focused form if no child
15730             controls exist
15731           - Added PerformLayout call when showing dialog, to ensure properly
15732             placed controls
15733         * Control.cs:
15734           - Select(): Made internal so Form can access it
15735           - Focus(): Only call Xplat layer if required (avoids loop), and sets
15736             status
15737         * Application.cs (Run): Removed hack and calls PerformLayout instead
15738           to trigger calculation when Form becomes visible
15739
15740 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
15741
15742         * ComboBox.cs: fixes for ownerdraw
15743
15744 2005-01-18  Peter Bartok  <pbartok@novell.com>
15745
15746         * TextControl.cs:
15747           - Sentinel is no longer static, each Document gets it's own, this
15748             avoids locking or alternatively overwrite problems when more
15749             than one text control is used simultaneously.
15750           - Switched to use Hilight and HilightText brushes for text selection
15751
15752         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
15753
15754 2005-01-18  Peter Bartok  <pbartok@novell.com>
15755
15756         * Control.cs:
15757           - Hooked up the following events:
15758                 o ControlAdded
15759                 o ControlRemoved
15760                 o HandleDestroyed
15761                 o ImeModeChanged
15762                 o ParentChanged
15763                 o TabStopChanged
15764                 o Invalidated
15765                 o SystemColorsChanged
15766                 o ParentFontChanged
15767                 o Move
15768           - Removed debug output
15769           - Added a call to the current theme's ResetDefaults when a color change
15770             is detected
15771         * Form.cs: Now setting the proper ImeMode
15772         * Theme.cs: Defined a method to force recreation of cached resources
15773           and rereading of system defaults (ResetDefaults())
15774         * ThemeWin32Classic.cs: Added ResetDefaults() stub
15775
15776 2005-01-17  Peter Bartok  <pbartok@novell.com>
15777
15778         * Control.cs: Added missing attributes
15779
15780 2005-01-17  Jackson Harper  <jackson@ximian.com>
15781
15782         * TreeNode.cs: Implement editing. Add missing properties selected
15783         and visible.
15784         * TreeView.cs: Implement node editing. Also some fixes to use
15785         Invalidate (invalid area) instead of Refresh when selecting.
15786
15787 2005-01-17  Peter Bartok  <pbartok@novell.com>
15788
15789         * Control.cs:
15790           - Implemented InvokeGotFocus() method
15791           - Implemented InvokeLostFocus() method
15792           - Implemented InvokePaint() method
15793           - Implemented InvokePaintBackground() method
15794           - Implemented InvokeClick() method
15795           - Implemented FindForm() method
15796           - Implemented RectangleToClient() method
15797           - Implemented ClientToRectangle() method
15798           - Implemented ResetBackColor() method
15799           - Implemented ResetCursor() method
15800           - Implemented ResetFont() method
15801           - Implemented ResteForeColor() method
15802           - Implemented ResetImeMode() method
15803           - Implemented ResetLeftToRight() method
15804           - Implemented ResetText() method
15805           - Implemented Scale() methods
15806           - Implemented ScaleCore() method
15807           - Implemented Update() method
15808           - Removed unused variables
15809           - Stubbed AccessibilityNotifyClients and
15810             ControlAccessibleObject.NotifyClients() methods (dunno what to do
15811             with those yet)
15812           - Now setting proper default for RightToLeft property
15813           - Fixed bug in SetClientSizeCore that would cause windows to get
15814             really big
15815           - Now sending Click/DoubleClick events
15816           - Now selecting controls when left mouse button is clicked on
15817             selectable control
15818         * AccessibleEvents.cs: Added
15819         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
15820         * XplatUIOSX.cs: Stubbed UpdateWindow() method
15821         * XplatUIWin32.cs: Implemented UpdateWindow() method
15822         * XplatUIX11.cs: Implemented UpdateWindow() method
15823         * Form.cs: Removed stray semicolon causing CS0162 warning
15824         * ThemeWin32Classic.cs: Fixed unused variable warnings
15825         * ScrollableControl.cs: Now calls base method for ScaleCore
15826         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
15827           style to avoid interference with internal click handler (which is
15828           different than standard Control click handling)
15829         * RadioButton.cs:
15830           - Now unchecks all sibling radio buttons when control is
15831             selected (Fixes #68756)
15832           - Removed internal tabstop variable, using the one inherited from
15833             Control
15834
15835 2005-01-17  Jackson Harper  <jackson@ximian.com>
15836
15837         * NavigateEventArgs.cs: Fix base type.
15838         * LinkLabel.cs: Sig fix
15839         
15840 2005-01-17  Jackson Harper  <jackson@ximian.com>
15841
15842         * TreeView.cs: Only invalidate the effected nodes bounds when
15843         selecting nodes.
15844
15845 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15846
15847         * XplatUIWin32.cs: fixes Win32 marshaling
15848         * XplatUIX11.cs: fixes method signature
15849
15850 2005-01-17  Peter Bartok  <pbartok@novell.com>
15851
15852         * XplatUIX11.cs: Clean up resources when we no longer need them
15853
15854 2005-01-17  Peter Bartok  <pbartok@novell.com>
15855
15856         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
15857           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
15858           and DestroyCursor() methods.
15859         * Cursor.cs: Partially implemented, now supports standard cursors;
15860           still contains some debug code
15861         * Cursors.cs: Implemented class
15862         * Control.cs:
15863           - WndProc(): Added handling of WM_SETCURSOR message, setting the
15864             appropriate cursor
15865           - Implemented Cursor property
15866           - Replaced break; with return; more straightforwar and possibly
15867             faster
15868           - Now properly setting the result for WM_HELP
15869         * X11Structs.cs: Added CursorFontShape enum
15870         * XplatUIStructs.cs:
15871           - Added StdCursor enum (to support DefineStdCursor() method)
15872           - Added HitTest enum (to support sending WM_SETCURSOR message)
15873         * XplatUIX11.cs:
15874           - Now sends the WM_SETCURSOR message
15875           - Implemented new cursor methods
15876         * XplatUIOSX.cs: Stubbed new cursor methods
15877         * XplatUIWin32.cs:
15878           - Implemented new cursor methods
15879           - Added GetSystemMetrics function and associated enumeration
15880
15881 2005-01-15  Peter Bartok  <pbartok@novell.com>
15882
15883         * Control.cs:
15884           - WndProc(): Now handles EnableNotifyMessage
15885           - SelectNextControl(): Fixed bug where if no child or sibling
15886             controls exist we looped endlessly
15887
15888 2005-01-14  Jackson Harper  <jackson@ximian.com>
15889
15890         * TreeView.cs: Recalculate the tab pages when a new one is added
15891         so that the proper bounding rects are created.
15892
15893 2005-01-14  Jackson Harper  <jackson@ximian.com>
15894
15895         * TreeView.cs: Draw a gray box instead of a grip in the lower
15896         right hand corner when there are both horizontal and vertical
15897         scroll bars.
15898
15899 2005-01-14  Jackson Harper  <jackson@ximian.com>
15900
15901         * Control.cs: When erasing backgrounds use FromHwnd instead of
15902         FromHdc when there is a NULL wparam. This occurs on the X driver.
15903         * XplatUIX11.cs: Set the wparam to NULL.
15904
15905 2005-01-13  Jackson Harper  <jackson@ximian.com>
15906
15907         * PictureBox.cs: Implement missing methods (except ToString, need
15908         to test that on windows) and events. When visibility is changed we
15909         need to redraw the image because the buffers are killed. When size
15910         is changed refresh if the sizemode needs it.
15911
15912 2005-01-13  Peter Bartok  <pbartok@novell.com>
15913
15914         * Control.cs (SelectNextControl): Was using wrong method to select
15915           a control
15916
15917 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15918
15919         * ComboBox.cs: fixes dropstyle
15920
15921 2005-01-13  Peter Bartok  <pbartok@novell.com>
15922
15923         * Form.cs:
15924           - Implemented Select() override
15925           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
15926           - Now sets keyboard focus on startup
15927         * Control.cs (SelectNextControl): Now properly handles directed=true
15928         * TextBoxBase.cs:
15929           - WndProc: Now passes tab key on to base if AcceptTabChar=false
15930           - Added (really bad) focus rectangle (mostly for testing)
15931         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
15932           to enforce redraw on focus changes
15933         * ContainerControl.cs:
15934           - Fixed detection of Shift-Tab key presses
15935           - Fixed traversal with arrow keys
15936         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
15937           gonna keep this or if it's complete yet
15938         
15939 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15940
15941         * ComboBox.cs: missing properties, fixes
15942
15943 2005-01-13  Peter Bartok  <pbartok@novell.com>
15944
15945         * Panel.cs (ctor): Setting Selectable window style to off
15946         * Splitter.cs (ctor): Setting Selectable window style to off
15947         * GroupBox.cs (ctor): Setting Selectable window style to off
15948         * Label.cs (ctor): Setting Selectable window style to off
15949
15950 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
15951
15952         * UpDownBase.cs (InitTimer): If the timer has been already
15953         created, enable it.
15954
15955         Use a TextBox instead of a Label.
15956
15957 2005-01-12  Jackson Harper  <jackson@ximian.com>
15958
15959         * TreeView.cs: Refresh the tree after sorting the nodes. Always
15960         draw the connecting node lines (when ShowLines is true).
15961         * TreeNode.cs: The nodes index can now be updated. This is used
15962         when a node collection is sorted.
15963         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
15964         insert or an existing unsorted node collection can be sorted.
15965         
15966 2005-01-12  Peter Bartok  <pbartok@novell.com>
15967
15968         * ContainerControl.cs: Implemented ProcessDialogKeys()
15969
15970 2005-01-12  Peter Bartok  <pbartok@novell.com>
15971
15972         * Control.cs:
15973           - Implemented SelectNextControl() method
15974           - Several focus related bug fixes
15975           - Fixed Docking calculations to match MS documentation and
15976             behaviour
15977
15978 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
15979
15980         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
15981         bug fixes
15982
15983 2005-01-12  Peter Bartok  <pbartok@novell.com>
15984
15985         * Control.cs:
15986           - Fixed broken Contains() method
15987           - Implemented GetNextControl() method. Finally. This is the pre-
15988             requisite for focus handling.
15989
15990 2005-01-12  Peter Bartok  <pbartok@novell.com>
15991
15992         * OSXStrucs.cs: Added
15993
15994 2005-01-12  Peter Bartok  <pbartok@novell.com>
15995
15996         * XplatUIWin32.cs:
15997           - Removed PeekMessageFlags
15998           - Implemented SetWindowStyle() method
15999         * XplatUIStructs.cs: Added PeekMessageFlags
16000         * X11Structs: Added missing border_width field to XWindowChanges struct
16001         * XplatUIX11.cs:
16002           - PeekMessage: Now throws exception if flags which are not yet
16003             supported are passed
16004           - Implemented SetWindowStyle() method
16005           - Fixed SetZOrder to handle AfterHwnd properly
16006         * XplatUI.cs: Added SetWindowStyle() method
16007         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16008         * Control.cs:
16009           - Implemented UpdateStyles() method
16010           - Implemented UpdateZOrder() method
16011         * XplatUIOSX.cs: Added SetWindowStyle() stub
16012
16013 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16014
16015         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16016         button mouse).
16017
16018
16019 2005-01-11  Jackson Harper  <jackson@ximian.com>
16020
16021         * TreeView.cs: Still need to draw lines to siblings even if out of
16022         the current node is out of the clip.
16023
16024 2005-01-11  Jackson Harper  <jackson@ximian.com>
16025
16026         * TreeView.cs: When setting the hbar/vbar/grip position use
16027         SetBounds so that perform layout is only called once. Also suspend
16028         and resume layout so layout is only done once for all controls.
16029         - Removed some debug fluff
16030         * SizeGrip.cs: Call base implmentation in overriding methods.
16031         - When visibility is changed the drawing buffers are killed so we
16032         need to redraw.
16033
16034 2005-01-11  Jackson Harper  <jackson@ximian.com>
16035
16036         * TreeView.cs: Calculate the open node count while drawing. This
16037         saves us an entire tree traversal for every paint operation. Use
16038         a member var for the open node count so less vars are passed around.
16039
16040 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16041
16042         * MonthCalendar.cs:
16043         - fixed selection to use mousemove, not mouse polling on timer
16044         * ThemeWin32Classic.cs
16045         - removed redundant unused variable "no_more_content"
16046         
16047 2005-01-11  Peter Bartok  <pbartok@novell.com>
16048
16049         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16050           are pending, so it now calls PeekMessage instead of GetMessage;
16051           implemented a incomplete version of PeekMessage
16052         
16053 2005-01-11  Peter Bartok  <pbartok@novell.com>
16054
16055         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16056           I18n issues
16057         * TextBoxBase.cs: Added sending of TextChanged event
16058
16059 2005-01-10  Jackson Harper  <jackson@ximian.com>
16060
16061         * TreeView.cs: Try not to draw outside the clipping rectangle on
16062         each node element.
16063
16064 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16065
16066         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16067
16068 2005-01-10  Jackson Harper  <jackson@ximian.com>
16069
16070         * TreeView.cs:
16071         - Implement fast scrolling. Now only the newly
16072         exposed nodes are drawn and the old image is moved using the
16073         XplatUI::ScrollWindow method.
16074         - Factor in height of nodes when calculating whether or not the
16075         node is in the clipping rect.
16076
16077 2005-01-10  Jackson Harper  <jackson@ximian.com>
16078
16079         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16080
16081 2005-01-10  Peter Bartok  <pbartok@novell.com>
16082
16083         * Application.cs: Added temporary hack to resolve all our resize
16084           required issues on startup. This will get fixed properly at
16085           some point in the future
16086
16087 2005-01-10  Jackson Harper  <jackson@ximian.com>
16088
16089         * SizeGrip.cs: New internal class that is used as a sizing
16090         grip control...hence the name.
16091
16092 2005-01-10  Peter Bartok  <pbartok@novell.com>
16093
16094         * Control.cs: Implemented proper TabIndex handling, now assigning
16095           a tabindex when a control is added to a container
16096         * GroupBox.cs (ctor): Now sets the Container style bit, required
16097           for Control.GetNextControl()
16098
16099 2005-01-09  Jackson Harper  <jackson@ximian.com>
16100
16101         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16102
16103 2005-01-09  Peter Bartok <pbartok@novell.com>
16104
16105         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16106           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16107           an overload for ScrollWindow to allow only scrolling a rectangle
16108
16109 2005-01-09  Peter Bartok <pbartok@novell.com>
16110
16111         * Form.cs:
16112           - Implemented SetDesktopBounds method
16113           - Implemented SetDesktopLocation method
16114
16115 2005-01-08  Jackson Harper  <jackson@ximian.com>
16116
16117         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16118         the node count has changed, this removes to VScroll::Refresh calls
16119         when drawing.
16120
16121 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16122
16123         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16124
16125 2005-01-07  Jackson Harper  <jackson@ximian.com>
16126
16127         * TreeNode.cs: Just update the single node when it is
16128         checked. Don't refresh after toggling, the Expand/Collapse already
16129         handles this.
16130         * TreeView.cs: Respect clipping a little more when drawing. Try
16131         not to redraw things that don't need to be redrawn. Just hide the
16132         scrollbars when they are no longer needed instead of removing
16133         them, so they don't have to be created again and again.
16134         
16135 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16136
16137         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16138         coordinates to window space to place the caret properly, FIXED.
16139         Implement GetWindowState & SetWindowState
16140
16141 2005-01-06  Peter Bartok <pbartok@novell.com>
16142
16143         * Form.cs:
16144           - Implemented ClientSize property
16145           - Implemented DesktopBounds property
16146           - Implemented DesktopLocation property
16147           - Implemented IsRestrictedWindow property
16148           - Implemented Size property
16149           - Implemented TopLevel property
16150           - Implemented FormWindowState property
16151         * Control.cs:
16152           - Implemented GetTopLevel() method
16153           - Implemented SetTopLevel() method
16154         * X11Structs.cs (Atom):
16155           - Added AnyPropertyType definition
16156           - Added MapState definiton and updated XWindowAttribute struct
16157         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16158         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16159         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16160         * XplatUIWin32.cs:
16161           - Implemented GetWindowState() and SetWindowState() methods
16162           - Fixed Win32GetWindowLong return type
16163         * XplatUIX11.cs:
16164           - Introduced central function for sending NET_WM messages
16165           - Implemented GetWindowState() and SetWindowState() methods
16166         * TextBoxBase.cs (set_Lines):
16167           - Now uses Foreground color for text added via Text property (Duh!)
16168           - Added code to remember programmatically requested size (fixes
16169             behaviour when Multiline is set after Size)
16170           - Added AutoSize logic
16171
16172 2005-01-06  Jackson Harper  <jackson@ximian.com>
16173
16174         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16175
16176 2005-01-06  Jackson Harper  <jackson@ximian.com>
16177
16178         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16179         set to less then 0.
16180
16181 2005-01-06  Jackson Harper  <jackson@ximian.com>
16182
16183         * ScrollableControl.cs: Lazy init the scrollbars.
16184         
16185 2005-01-06  Jackson Harper  <jackson@ximian.com>
16186
16187         * Theme.cs: Speed up getting pens and solid brushes, by using
16188         their ARGB as a hash instead of tostring and not calling Contains.
16189
16190 2005-01-06  Peter Bartok <pbartok@novell.com>
16191
16192         * Form.cs:
16193           - Implemented OnActivated and OnDeactivate event trigger
16194           - Implemented Activate() method
16195           - Fixed ShowDialog() to activate the form that was active before
16196             the dialog was shown
16197         * XplatUIX11.cs:
16198           - Added global active_window var that tracks the currently active
16199             X11 window
16200           - Now always grabs Property changes from the root window to always
16201             catch changes on the active window property
16202           - Added code to PropertyNotify handler to send Active/Inactive
16203             messages when state changes. This puts X11 and Win32 en par on
16204             WM_ACTIVATE notifications (except for double notifications when
16205             the user clicks away from our modal window to another one of our
16206             windows)
16207
16208 2005-01-05  Jackson Harper  <jackson@ximian.com>
16209
16210         * ImageList.cs: Implment ctor
16211
16212 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16213
16214         * XplatUIOSX.cs: Implement Activate/SetTopmost
16215
16216 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16217
16218         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
16219
16220 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16221
16222         * XplatUIOSX.cs: Implement GetActive/SetFocus.
16223
16224 2005-01-05  Peter Bartok <pbartok@novell.com>
16225
16226         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
16227           XplatUIOSX.cs: Added GetActive method to return the currently
16228           active window for the application (or null, if none is active)
16229         * Form.cs:
16230           - Implemented ActiveForm
16231           - Commented out owner assignment for modal dialogs (causes problems
16232             on Win32, since the owner will be disabled)
16233           - Reworked some Active/Focus handling (still incomplete)
16234         * CommonDialog.cs: Commented out owner assignment for modal dialogs
16235           (causes problems on Win32, since the owner will be disabled)
16236         * IWin32Window: Added ComVisible attribute
16237
16238 2005-01-05  Peter Bartok <pbartok@novell.com>
16239
16240         * ToolTip.cs (WndProc): Enable setting focus now that we have the
16241           required XplatUI functions.
16242
16243 2005-01-05  Peter Bartok <pbartok@novell.com>
16244
16245         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
16246           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
16247           to implement focus and activation handling; still incomplete and
16248           with debug output
16249
16250 2005-01-04  Peter Bartok <pbartok@novell.com>
16251
16252         * TextBoxBase.cs: Changed access level for Document property to
16253           match switch to internal for TextControl
16254
16255 2005-01-04  Peter Bartok <pbartok@novell.com>
16256
16257         * AccessibleObject: Added ComVisible attribute
16258
16259 2005-01-04  Jackson Harper  <jackson@ximian.com>
16260
16261         * X11Keyboard.cs: Remove unneeded var.
16262
16263 2005-01-04  Jackson Harper  <jackson@ximian.com>
16264
16265         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
16266         but PAINT.
16267         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
16268         ClientMessage. This makes apps exit cleanly (more often).
16269         
16270 2005-01-04  Jackson Harper  <jackson@ximian.com>
16271
16272         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
16273         handling focus, return correct colors and fonts,
16274         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
16275         handle selection, horizontal scrolling, and mouse interaction.
16276
16277 2005-01-04  Peter Bartok <pbartok@novell.com>
16278
16279         * ICommandExecutor.cs: Added
16280         * IDataGridColumnStyleEditingNotificationService.cs: Added
16281         * IFeatureSupport.cs: Added
16282         * IFileReaderService.cs: Added
16283         * IDataObject.cs: Added ComVisible attribute
16284         * AmbientProperties.cs: Added
16285         * BaseCollection.cs: Added missing attributes
16286         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
16287         * BaseCollection.cs: Added missing attributes
16288         * Binding.cs: Added TypeConverter attribute
16289         * BindingContext.cs: Added DefaultEvent attribute
16290         * BindingsCollection.cs: Added DefaultEvent attribute
16291         * Button.cs: Added DefaultValue attribute
16292         * DragEventArgs.cs: Added ComVisible attribute
16293         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
16294         * KeyEventArgs.cs: Added ComVisible attribute
16295         * KeyPressEventArgs.cs: Added ComVisible attribute
16296         * MouseEventArgs.cs: Added ComVisible attribute
16297         * NavigateEventArgs.cs: Added
16298         * NavigateEventHandler.cs: Added
16299         * FeatureSupport.cs: Added
16300         * OSFeature.cs: Added
16301         * Theme.cs: Added abstract Version property to support OSFeature
16302         * ThemeWin32Classic.cs: Added Version property to
16303           support OSFeature.Themes
16304         * ProgressBar.cs: Removed OnPaintBackground override, not required since
16305           the proper styles to avoid background drawing are set, also doesn't
16306           match MS signature
16307         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
16308         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
16309         * ScrollEventArgs.cs: Added ComVisible attribute
16310         * SplitterEventArgs.cs: Added ComVisible attribute
16311         * AccessibleSelection.cs: Added Flags attribute
16312         * Appearance.cs: Added ComVisible attribute
16313         * Border3DSide.cs: Added ComVisible attribute
16314         * Border3DStyle.cs: Added ComVisible attribute
16315         * BorderStyle.cs: Added ComVisible attribute
16316         * DragAction.cs: Added ComVisible attribute
16317         * ErrorBlinkStyle.cs: Added
16318         * ScrollEventType.cs: Added ComVisible attribute
16319         * AnchorStyles.cs: Added Editor attribute
16320         * DockStyle.cs: Added Editor attribute
16321         * HorizontalAlignment.cs: Added ComVisible attribute
16322         * HelpEventArgs.cs: Added ComVisible attribute
16323         * PaintEventArgs.cs: Added IDisposable
16324
16325 2005-01-04  Peter Bartok <pbartok@novell.com>
16326
16327         * TextControl.cs: Switched Line, LineTag and Document classes to
16328           internal
16329
16330 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16331
16332         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
16333         Simple mode, fixes, IntegralHeight, etc.
16334
16335 2005-01-04  Peter Bartok <pbartok@novell.com>
16336
16337         * TextBoxBase.cs: Using proper font variable now
16338
16339 2005-01-04  Peter Bartok <pbartok@novell.com>
16340
16341         * Form.cs (ShowDialog): Set parent to owner, if provided
16342         * GroupBox.cs: Removed unused vars
16343         * TextControl.cs:
16344           - Added GetHashCode() for Document and LineTag classes
16345           - Removed unused variables
16346           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
16347             to allow translation between continuous char position and line/pos
16348         * CheckBox.cs: Removed vars that are provided by base class
16349         * RadioButton.cs: Removed vars that are provided by base class, added
16350           new keyword where required
16351         * LinkLabel.cs: Added new keyword where required
16352         * Control.cs (WndProc): Removed unused variable
16353         * TextBoxBase.cs:
16354           - Finished SelectionLength property
16355           - Implemented SelectionStart property
16356           - Implemented Text property
16357           - Removed unused vars
16358         * MessageBox.cs: Added new keyword where required
16359         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
16360           WndProc signature
16361         * MenuAPI.cs: Added new keyword where required
16362         * ButtonBase.cs: Removed vars that are provided by base class, added
16363           new keyword where required
16364         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
16365           argument to double, to allow compiling with csc 2.0 (Atsushi ran
16366           into this)
16367         * Application.cs (Run): Now triggers the ThreadExit event
16368         * CommonDialog.cs: Added new keyword where required; now properly sets
16369           parent (owner) for dialog
16370         * XplatUIX11.cs: Commented out unused vars
16371         * StatusBar.cs: Fixed signature for Text property
16372         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
16373
16374 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
16375
16376         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
16377         TrackBar.cs, MonthCalendar.cs: remove unused vars
16378
16379 2005-01-03  Jackson Harper  <jackson@ximian.com>
16380
16381         * ThemeWin32Classic.cs:
16382         * X11Keyboard.cs: Remove unused vars.
16383
16384 2005-01-03  Peter Bartok  <pbartok@novell.com>
16385
16386         * TextBox.cs:
16387           - set_Text: Tied into TextControl
16388           - set_TextAlignment: Tied into TextControl
16389         * TextControl.cs:
16390           - Added alignment properties and implemented alignment handling
16391             and drawing (still has a bug, not generating proper expose events)
16392           - Added new Line() constructor to allow passing the line alignment
16393           - Fixed selection setting, properly handling end<start now
16394           - Added aligment considerations to RecalculateDocument()
16395         * TextBoxBase.cs:
16396           - Now properly enforces control height for single line controls
16397           - Added support for CharacterCasing
16398           - Added IsInputKey override
16399           - Fixed Keys.Enter logic
16400           - Added SetBoundsCore override
16401           - Fixed mouse selection handling
16402
16403 2005-01-03  Jackson Harper  <jackson@ximian.com>
16404
16405         * TreeView.cs:
16406           - Collapse and uncheck all nodes when CheckBoxes is disabled.
16407           - Checkboxes are always aligned to the bottom of the node,
16408           regardless of item height.
16409           - Use the node bounds to draw the text so we can center it when
16410           the item height is greater then the font height.
16411           - Node::Bounds are only the text part of the node.
16412         * TreeNode.cs: New method to combine collapsing and unchecking all
16413           nodes recursively.
16414
16415 2005-01-02  Jackson Harper  <jackson@ximian.com>
16416
16417         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
16418         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
16419         tree when a check is changed. TODO: Only refresh the checked node.
16420
16421 2004-12-30  Jackson Harper  <jackson@ximian.com>
16422
16423         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
16424         * TreeNode.cs: When collapsing make sure to never collapse the
16425         root node.
16426
16427 2004-12-29  Jackson Harper  <jackson@ximian.com>
16428
16429         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
16430         
16431 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
16432
16433         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
16434
16435 2004-12-28  Peter Bartok  <pbartok@novell.com>
16436
16437         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
16438           not yet assigned
16439
16440 2004-12-28  Peter Bartok  <pbartok@novell.com>
16441
16442         * Control.cs (WndProc): Added WM_HELP handler, now generates
16443           HelpRequested event
16444         * Form.cs: Added HelpButton property and required support code
16445         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
16446
16447 2004-12-28  Peter Bartok  <pbartok@novell.com>
16448
16449         * CommonDialog.cs:
16450           - Made DialogForm.owner variable internal
16451           - Added check to ensure owner form is set before setting
16452             owner properties in CreateParams
16453
16454 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
16455
16456         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
16457           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
16458           GetCursorPos.  Fix major visibility issues.  Rework the windowing
16459           system to support borderless/titleless windows (implements menus).
16460           Fix GetWindowPos.  Implement initial background color support for
16461           views.
16462
16463 2004-12-28  Peter Bartok  <pbartok@novell.com>
16464
16465         * Form.cs (get_CreateParams): Make sure we have an owner before using
16466           the owner variable. Implement proper default if no owner exists
16467
16468 2004-12-28  Peter Bartok  <pbartok@novell.com>
16469
16470         * In preparation for making Managed.Windows.Forms the default build target
16471           for System.Windows.Forms, the following stubbed files were added.
16472           Dialogs are currently being implemented by contributors and are only
16473           short-term place holders.
16474         * ColorDialog.cs: Initial check-in (minmal stub)
16475         * DataGrid.cs: Initial check-in (minimal stub)
16476         * DataGridLineStyle.cs: Initial check-in (minimal stub)
16477         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
16478         * DataGridTableStyle.cs: Initial check-in (minimal stub)
16479         * FontDialog.cs: Initial check-in (minimal stub)
16480         * FileDialog.cs: Initial check-in (minimal stub)
16481         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16482         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16483         * OpenFileDialog: Initial check-in (minimal stub)
16484         * IComponentEditorPageSite.cs: Initial check-in
16485         * Splitter.cs: Initial check-in (for Jackson)
16486         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16487         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16488         * TextBox.cs: Initial check-in; still needs some wiring to
16489           TextControl backend
16490         * Form.cs: Implemented ControlBox property
16491         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16492         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16493         * TextControl.cs: Added selection functionality; added todo header
16494         * TextBoxBase.cs:
16495           - Implemented Lines property
16496           - Implemented TextHeight property
16497           - Implemented SelectedText property
16498           - Implemented SelectionLength property
16499           - Implemented SelectAll method
16500           - Implemented ToString method
16501           - Removed and cleaned up some debug code
16502           - Implemented (still buggy) mouse text selection
16503
16504 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16505
16506         * ComboBox.cs: Complete DropDownList implementation, fixes.
16507
16508 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
16509
16510         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
16511         * ComboBoxStyle.cs: ComboBoxStyle enum
16512         * ComboBox.cs: Initial work on ComboBox control
16513
16514 2004-12-21  Peter Bartok  <pbartok@novell.com>
16515
16516         * Control.cs (ctor, CreateParams): Moved setting of is_visible
16517           forward so that anything that creates a window gets the default,
16518           also no longer uses Visible property in CreateParams to avoid
16519           walking up the parent chain and possibly get the wrong visible
16520           status. Fixed IsVisible to no longer walk up to the parent.
16521
16522 2004-12-21  Peter Bartok  <pbartok@novell.com>
16523
16524         * Form.cs (ShowDialog): Unset modality for the proper window
16525  
16526 2004-12-20  Peter Bartok  <pbartok@novell.com>
16527
16528         * CommonDialog.cs: Initial check-in
16529
16530 2004-12-20  Peter Bartok  <pbartok@novell.com>
16531
16532         * Control.cs (Visible): Now uses the parent window instead of the
16533           client area window for the property
16534
16535         * Form.cs
16536           - ShowDialog(): Now uses the proper window for modality
16537           - The default visibility state for the form parent is now false. This
16538             will prevent the user from seeing all the changes to the form and
16539             its controls before the application hits Application.Run()
16540           - Removed some stale commented out code
16541
16542         * NativeWindow.cs:
16543           - Added FindWindow() method to have a method to check for existence
16544             of a window handle
16545           - Added ability to override default exception handling (for example
16546             when debugging with VS.Net; to do this the ExternalExceptionHandler
16547             define must be set
16548           - Removed some useless debug output
16549
16550         * XplatUIX11.cs:
16551           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
16552             not working as expected
16553           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
16554             property to allow switching back to the modal window if focus is
16555             given to another one of our windows (Application Modal)
16556           - Now only sets override_redirect if we create a window
16557             without WS_CAPTION
16558           - Moved EventMask selection before mapping of newly created window
16559             so we can catch the map event as well
16560           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
16561           - Added various Atom related DllImports
16562           - Implemented Exit() method
16563           - .ctor() : No longer shows window if WS_VISIBLE is not defined
16564             in the CreateParams
16565
16566         * MessageBox.cs: Now properly deals with the FormParent window by
16567           providing an override the FormParent CreateParams property to
16568           set as POPUP instead of OVERLAPPED window.
16569
16570 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16571
16572         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
16573         Minor code cleanup.
16574
16575 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16576         
16577         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
16578
16579 2004-12-18  Peter Bartok  <pbartok@novell.com>
16580
16581         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
16582           implementing SetModal() method
16583
16584 2004-12-18  Peter Bartok  <pbartok@novell.com>
16585
16586         * X11Structs.cs (XGCValues): Fixed type of function element
16587         * XplatUI.cs: Added ScrollWindow() method
16588         * XplatUIDriver.cs: Added ScrollWindow() abstract
16589         * XplatUIWin32.cs: Implemented ScrollWindow() method
16590         * XplatUIX11.cs: Implemented ScrollWindow() method
16591         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
16592
16593 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16594
16595         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
16596         Some more keyboard support (INCOMPLETE)
16597
16598 2004-12-17  Peter Bartok  <pbartok@novell.com>
16599
16600         * TextControl.cs:
16601         - Added color attribute to line tags.
16602         - Added color argument to all functions dealing with tags
16603         - Added color argument support to various functions
16604         - Fixed miss-calculation of baseline/shift in certain circumstances
16605
16606         * TextBoxBase.cs: Added new color option to test code
16607
16608 2004-12-17  Jackson Harper  <jackson@ximian.com>
16609
16610         * TreeNode.cs:
16611         * MonthCalendar.cs: Signature fixes
16612
16613 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16614
16615         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
16616         keyboard event moved it.  Create a new graphics context for each paint resolves this
16617
16618 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16619
16620         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
16621         Make caret exist and go blink blink.  Initial keyboard support.
16622         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
16623         works.
16624
16625 2004-12-17  Jackson Harper  <jackson@ximian.com>
16626
16627         * XplatUIStructs.cs: Updated set of virtual keycodes.
16628         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
16629
16630 2004-12-17  Jackson Harper  <jackson@ximian.com>
16631
16632         * XplatUIX11.cs: Prune old keyboard code.
16633
16634 2004-12-17  Jackson Harper  <jackson@ximian.com>
16635
16636         * XplatUIX11.cs: When generating mouse wparams get the modifier
16637         keys from the ModifierKeys property.
16638
16639 2004-12-17  Jackson Harper  <jackson@ximian.com>
16640
16641         * X11Keyboard.cs: Send up/down input when generating
16642         messages. Remove some unused vars.
16643
16644 2004-12-17  Jackson Harper  <jackson@ximian.com>
16645
16646         * TabControl.cs:
16647         * TreeView.cs: get rid of warnings.
16648
16649 2004-12-17  Jackson Harper  <jackson@ximian.com>
16650
16651         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
16652
16653 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
16654
16655         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
16656           CheckedListBox.cs: Implementation
16657
16658 2004-12-17  Peter Bartok  <pbartok@novell.com>
16659
16660         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
16661
16662 2004-12-16  Peter Bartok  <pbartok@novell.com>
16663
16664         * TextControl.cs:
16665           - InsertCharAtCaret(): Fixed start pos fixup
16666           - CaretLine_get: No longer derives the line from the tag, the tag
16667             could be stale if lines in the document have been added or deleted
16668           - RebalanceAfterDelete(): Fixed bug in balancing code
16669           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
16670           - Line.Streamline(): Now can also elminate leading empty tags
16671           - DumpTree(): Added a few more tests and prevented exception on
16672             uninitialized data
16673           - Added Debug section for Combining lines
16674           - Delete(): Now copies all remaining properties of a line
16675           
16676         * TextBoxBase.cs:
16677           - Left mousebutton now sets the caret (and middle button still acts
16678             as formatting tester, which must go away soon)
16679           - Added Debug section for Deleting/Combining lines
16680           - Fixed calculations for UpdateView after Combining lines
16681
16682 2004-12-16  Peter Bartok  <pbartok@novell.com>
16683
16684         * TextControl.cs: Now properly aligns text on a baseline, using the
16685           new XplatUI.GetFontMetrics() method. Simplified several calculations
16686         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
16687           defined
16688
16689 2004-12-16  Peter Bartok  <pbartok@novell.com>
16690
16691         * XplatUI.cs: Added GetFontMetrics() method
16692         * XplatUIDriver.cs: Added GetFontMetrics() abstract
16693         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
16694           into libgdiplus, our private GetFontMetrics function
16695         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
16696         * XplatUIWin32.cs: Implemented GetFontMetrics() method
16697
16698 2004-12-16  Jackson Harper  <jackson@ximain.com>
16699
16700         * XplatUIStruct.cs: Add enum for dead keys
16701         * X11Keyboard.cs: Map and unmap dead keys.
16702
16703 2004-12-16  Jackson Harper  <jackson@ximian.com>
16704
16705         * X11Keyboard.cs: Detect and use the num lock mask.
16706
16707 2004-12-16  Peter Bartok  <pbartok@novell.com>
16708
16709         * Control.cs (CreateGraphics): Added check to make sure the
16710           handle of the window exists before calling Graphics.FromHwnd()
16711
16712 2004-12-16  Peter Bartok  <pbartok@novell.com>
16713
16714         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
16715           contains a lot of code that's not supposed to be there for the
16716           real thing, but required for developing/testing the textbox
16717           backend.
16718
16719 2004-12-16  Peter Bartok  <pbartok@novell.com>
16720
16721         * TextControl.cs:
16722         - Fixed Streamline method
16723         - Added FindTag method to Line
16724         - Added DumpTree method for debugging
16725         - Added DecrementLines() method for deleting lines
16726         - Fixed UpdateView to update the cursor to end-of-line on single-line
16727           updates
16728         - Added PositionCaret() method
16729         - Fixed MoveCaret(LineDown) to move into the last line, too
16730         - Added InsertChar overload
16731         - Fixed InsertChar tag offset calculations
16732         - Added DeleteChar() method
16733         - Added Combine() method for folding lines
16734         - Fixed Delete() method, no longer allocates wasted Line object and
16735           now copies all properties when swapping nodes
16736         - Delete() method now updates document line counter
16737
16738 2004-12-15  Jackson Harper  <jackson@ximian.com>
16739
16740         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
16741         * X11Keyboard.cs: Expose the currently selected modifier keys
16742         through a property.
16743
16744 2004-12-15  Peter Bartok  <pbartok@novell.com>
16745
16746         * TextControl.cs: Initial check-in. Still incomplete
16747
16748 2004-12-15  Jackson Harper  <jackson@ximian.com>
16749
16750         * TreeNode.cs:
16751         * TreeView.cs: Fix build on csc (second time today ;-))
16752
16753 2004-12-15  Jackson Harper  <jackson@ximian.com>
16754
16755         * TreeView.cs: Store the treenodes plus/minus box bounds when it
16756         is calculated and use this for click testing.
16757         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
16758
16759 2004-12-15  Jackson Harper  <jackson@ximian.com>
16760
16761         * TreeView.cs: Pass the nodes image index to the image list when
16762         drawing that image.
16763
16764 2004-12-15  Jackson Harper  <jackson@ximian.com>
16765
16766         * X11Keyboard.cs: Set messages hwnd.
16767         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
16768         post_message calls.
16769
16770 2004-12-15  Jackson Harper  <jackson@ximian.com>
16771
16772         * X11Keyboard.cs: Fix to compile with csc.
16773         
16774 2004-12-15  Jackson Harper  <jackson@ximian.com>
16775
16776         * X11Structs.cs: Add key mask values
16777         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
16778         * X11Keyboard.cs: New file - Extrapolates and interpolates key
16779         down/up foo into WM_CHAR foo
16780         * KeyboardLayouts.cs: Common keyboard layouts
16781         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
16782         post messages into the main queue.
16783
16784 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
16785
16786         * Button.cs: implement ProcessMnemonic
16787         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
16788           brushes everytime
16789         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
16790         * ButtonBase.cs: Show HotkeyPrefix (not the &)
16791
16792 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
16793         
16794         * MonthCalendar.cs: Implemented click-hold for next/previous month
16795           and date selection
16796           
16797 2004-12-11  Peter Bartok  <pbartok@novell.com>
16798
16799         * X11Structs.cs:
16800           - Added XKeyboardState (moved from XplatUIX11.cs)
16801           - Added XCreateGC related enums and structures
16802           - Added GXFunction for XSetFunction
16803
16804         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
16805
16806         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
16807           CaretVisible() calls
16808
16809         * ToolTip.cs: Added code to prevent stealing focus from app windows
16810
16811         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
16812           DestroyCaret, SetCaretPos and CaretVisible)
16813
16814         * XplatUIX11.cs:
16815           - Added implementation for caret functions
16816           - Moved hover variables into a struct, to make it a bit easier
16817             on the eyes and to debug
16818           - Removed XKeyboardState (moved to XplatUIX11.cs)
16819           - Moved Keyboard properties into the properties region
16820
16821         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
16822           call to get a graphics context for our control
16823
16824         * XplatUIOSX.cs: Added empty overrides for the new caret functions
16825
16826         * TreeView.cs: Fixed bug. No matter what color was set it would always
16827           return SystemColors.Window
16828
16829         * XplatUIWin32.cs: Implemented caret overrides
16830
16831 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
16832
16833         * ListBox.cs: fire events, implement missing methods and properties,
16834         sorting.
16835
16836 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
16837
16838         * MonthCalendar.cs: invalidation bug fixing
16839         * ThemeWin32Classic.cs: paint fixing
16840
16841 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
16842
16843         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
16844         prepare the CGContextRef there now.
16845
16846 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
16847
16848         * MonthCalendar.cs:
16849           - optimisationL only invalidate areas that have changed
16850         * ThemeWin32Classic.cs:
16851           - only paint parts that intersect with clip_area
16852
16853 2004-12-09  Peter Bartok  <pbartok@novell.com>
16854
16855         * Application.cs: Undid changes from r37004 which cause problems
16856         on X11
16857
16858 2004-12-09  Ravindra  <rkumar@novell.com>
16859
16860         * ToolBar.cs: Added support for displaying ContextMenu
16861         attached to a button on ToolBar.
16862         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
16863         property.
16864
16865 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16866
16867         * Label.cs: autosize works in text change and removes unnecessary
16868         invalidate
16869
16870 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16871
16872         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16873         remove warnings
16874
16875 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
16876
16877         * XplatUIOSX.cs: Added mouse move/click/grab support
16878         Remove some debugging WriteLines not needed anymore.
16879         Add window resizing/positioning.
16880         Fix visibility on reparenting.
16881
16882 2004-12-08  Peter Bartok  <pbartok@novell.com>
16883
16884         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
16885
16886 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
16887
16888         * XplatUIOSX.cs: Initial checkin
16889         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
16890
16891 2004-12-03  Ravindra <rkumar@novell.com>
16892
16893         * ListView.cs: Added some keybindings and fixed scrolling.
16894         ScrollBars listen to ValueChanged event instead of Scroll
16895         Event. This would let us take care of all changes being
16896         done in the scrollbars' values programmatically or manually.
16897         * ListView.cs (CanMultiselect): Added a check for shift key.
16898         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
16899         * ListViewItem.cs (Clone): Fixed. We need to make a copy
16900         of ListViewSubItemCollection as well.
16901
16902 2004-12-06  Peter Bartok <pbartok@novell.com>
16903
16904         * Control.cs (Parent): Added check and exception to prevent
16905         circular parenting
16906
16907 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
16908
16909         * ListBox.cs: implemented clipping, selection single and multiple,
16910         bug fixing
16911
16912 2004-12-03  Ravindra <rkumar@novell.com>
16913
16914         * ListView.cs (ListView_KeyDown):
16915         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
16916         when CTRL key is pressed.
16917         * ListViewItem.cs (Selected): Fixed setting the property.
16918
16919 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16920
16921         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
16922
16923         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
16924         MinimizeBox, ShowInTaskbar, TopMost properties.
16925
16926         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
16927         will be implemented).
16928
16929 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16930
16931         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
16932
16933         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
16934         tests.
16935         
16936         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
16937         
16938         * TreeView.cs: BackColor is Colors.Window.
16939
16940 2004-12-01  Jackson Harper  <jackson@ximian.com>
16941
16942         * TreeView.cs: When resizing the tree if the user is making it
16943         smaller we don't get expose events, so we need to handle adding
16944         the horizontal scrollbar in the size changed handler as well as
16945         the expose handler.
16946
16947 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
16948
16949         * DrawItemState.cs: fixes wrong enum values
16950
16951 2004-12-01  Jackson Harper  <jackson@ximian.com>
16952
16953         * TreeView.cs: Resize the hbar as well as the vbar on resize.
16954
16955 2004-12-01  Jackson Harper  <jackson@ximian.com>
16956
16957         * NodeLabelEditEventArgs.cs:
16958         * NodeLabelEditEventHandler.cs:
16959         * OpenTreeNodeEnumerator.cs:
16960         * TreeNode.cs:
16961         * TreeNodeCollection.cs:
16962         * TreeView.cs:
16963         * TreeViewAction.cs:
16964         * TreeViewCancelEventArgs.cs:
16965         * TreeViewCancelEventHandler.cs:
16966         * TreeViewEventArgs.cs:
16967         * TreeViewEventHandler.cs: Initial implementation.
16968
16969 2004-12-01  Ravindra <rkumar@novell.com>
16970
16971         * ListView.cs (CalculateListView): Fixed scrolling related
16972         calculations. Also, removed some debug statements from other
16973         places.
16974         * ListViewItem.cs: Changed access to 'selected' instance variable
16975         from private to internal.
16976         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
16977
16978 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
16979
16980         * ThemeWin32Classic.cs: remove cache of brush and pens for
16981         specific controls and use the global system, fixes scrollbutton
16982         bugs (for small sizes, disabled, etc)
16983         
16984         * ScrollBar.cs: does not show the thumb for very small controls
16985         (as MS) and allow smaller buttons that the regular size
16986
16987 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
16988
16989         * UpDownBase.cs: Add abstract methods for the interface.
16990         Add new virtual methods (need to be hooked up to TextEntry when it
16991         exists).
16992         Add override methods for most features.
16993         Computes the size, forces the height of the text entry.
16994
16995         * NumericUpDown.cs: Put here the current testing code.
16996
16997         * Set eol-style property on all files that do not have mixed line
16998         endings, to minimize the future problems.  There are still a few
16999         files with mixed endings, and someone should choose whether they
17000         want to move it or not.
17001
17002 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17003
17004         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17005         System.Colors
17006         
17007 2004-11-30  Ravindra <rkumar@novell.com>
17008
17009         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17010         drawing and replaced use of SystemColors by theme colors.
17011         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17012         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17013         same ListViewItem is being added more than once.
17014
17015 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17016
17017         * MonthCalendar.cs:
17018           - ControlStyles love to make the control not flicker
17019           
17020 2004-11-30  Peter Bartok  <pbartok@novell.com>
17021
17022         * CharacterCasing.cs: Added
17023
17024 2004-11-29  Peter Bartok  <pbartok@novell.com>
17025
17026         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17027           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17028           I am removing these files as they conflict with already completed
17029           work. While it is fantastic to get contributions to MWF, I
17030           respectfully ask that everyone please coordinate their contributions
17031           through mono-winforms-list or #mono-winforms at this time. We're
17032           explicitly avoiding stubbing and don't want controls that don't have
17033           their basic functionality implemented in svn. Please also see
17034           http://www.mono-project.com/contributing/winforms.html
17035
17036
17037 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17038
17039         * Application.cs (ModalRun): Don't hang after exit.
17040
17041         * Theme.cs: New TreeViewDefaultSize property.
17042
17043         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17044         with less hardcoded SystemColors constant.
17045         Implemented TreeViewDefaultSize.
17046
17047         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17048         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17049
17050
17051 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17052
17053         * MonthCalendar.cs:
17054           - Fix NextMonthDate and PrevMonthDate click moving calendar
17055
17056 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17057
17058         * MonthCalendar.cs:
17059           - Fix usage of ScrollChange Property when scrolling months
17060
17061 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17062
17063         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17064          - Fixes menu destroying
17065          - Support adding and removing items on already created menus
17066
17067 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17068
17069         * MonthCalendar.cs:
17070           - Re-worked all bolded dates handling to match win32
17071         * ThemeWin32Classic.cs:
17072           - Fixed rendering with bolded dates
17073
17074 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17075
17076         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17077         - Horizontal scroolbar
17078         - Multicolumn
17079         - Fixes
17080
17081
17082 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17083
17084         * MonthCalendar.cs:
17085           - Fix Usage of MaxSelectionCount from SelectionRange
17086           - Fixed Shift + Cursor Selection
17087           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17088           - Fixed normal cursor selection to be compat with win32
17089           - Fixed Shift + Mouse Click selection
17090
17091 2004-11-24  Peter Bartok <pbartok@novell.com>
17092
17093         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17094         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17095         * XplatUIX11.cs:
17096           - CreatedKeyBoardMsg now updates keystate with Alt key
17097           - Added workaround for timer crash to CheckTimers, Jackson will
17098             develop a proper fix and check in later
17099           - Implemented DispatchMessage
17100           - Removed calling the native window proc from GetMessage (call
17101             now moved to DispatchMessage)
17102
17103         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17104           the keydata (Fixes bug #69831)
17105
17106         * XplatUIWin32.cs:
17107           - (DispatchMessage): Switched to return IntPtr
17108           - Added DllImport for SetFocus
17109
17110 2004-11-24  Ravindra <rkumar@novell.com>
17111
17112         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17113         background drawing.
17114         * ListViewItem.cs: Fixed various properties, calculations
17115         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17116         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17117         and some internal properties. Fixed MouseDown handler and Paint
17118         method.
17119
17120 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17121
17122         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17123
17124 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17125
17126         * ContainerControl.cs: correct accidental check in of local changes
17127
17128 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17129
17130         * ThemeWin32Classic.cs:
17131                 - Fixed Drawing Last month in grid (sometimes not showing)
17132         * MonthCalendar.cs:
17133                 - Fixed title width calculation bug (makeing title small)
17134
17135 2004-11-23  Peter Bartok <pbartok@novell.com>
17136
17137         * XplatUIX11.cs:
17138           - Added generation of WM_MOUSEHOVER event
17139           - Added missing assignment of async_method atom
17140           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17141
17142 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17143
17144         * ThemeWin32Classic.cs:
17145                 - Fixed Drawing of today circle when showtodaycircle not set
17146                 - fixed drawing of first and last month in the grid (gay dates)
17147         * MonthCalendar.cs:
17148                 - Fixed Drawing of today circle
17149                 - Fixed drawing of grady dates
17150                 - Fixed HitTest for today link when ShowToday set to false
17151                 - Fixed DefaultSize to obey ShowToday
17152
17153 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17154
17155         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17156         * System.Windows.Forms/Theme.cs
17157         * MonthCalendar.cs: added for MonthCalendar
17158         * SelectionRange.cs: added for MonthCalendar
17159         * Day.cs: added for MonthCalendar: added for MonthCalendar
17160         * DateRangeEventArgs.cs: added for MonthCalendar
17161         * DateRangeEventHandler.cs: added for MonthCalendar
17162
17163 2004-11-22  Ravindra <rkumar@novell.com>
17164
17165         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17166         property.
17167
17168 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17169
17170         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17171         event handler.
17172         
17173         * NumericUpDown.cs: Added new implementation.
17174         * UpDownBase.cs: Added new implementation.
17175
17176         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17177         implementations.
17178         
17179         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17180         implementations.
17181
17182         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17183         methods.
17184
17185 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17186
17187         * Timer.cs  (Dispose): Should call the base dispose when
17188         overriding.
17189
17190 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17191
17192         * ScrollBar.cs: updates thumb position when max, min or increment
17193         is changed
17194
17195 2004-11-21  Ravindra <rkumar@novell.com>
17196
17197         * ListView.cs: Implemented item selection, activation and
17198         column header style. Fixed properties to do a redraw, if
17199         required. Added support for MouseHover, DoubleClick, KeyDown
17200         and KeyUp event handling and some minor fixes.
17201         * ListViewItem.cs: Fixed constructor.
17202         * ThemeWin32Classic.cs: Improved drawing for ListView.
17203
17204 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17205
17206         * ThemeWin32Classic.cs: initial listbox drawing code
17207         * DrawMode.cs: new enumerator
17208         * ListControl.cs: stubbed class
17209         * ListBox.cs: initial implementation
17210         * Theme.cs: new methods definitions
17211         * SelectionMode.cs: new enumerator
17212
17213 2004-11-17  Peter Bartok  <pbartok@novell.com>
17214
17215         * XplatUIWin32.cs: Added double-click events to the class style
17216         * Control.cs (WndProc):
17217           - Added handling of click-count to MouseDown/ MouseUp events.
17218           - Added handling of middle and right mouse buttons
17219           - Removed old debug code
17220
17221 2004-11-17  Jackson Harper  <jackson@ximian.com>
17222
17223         * XplatUIX11.cs: Use the new Mono.Unix namespace.
17224
17225 2004-11-17  Ravindra <rkumar@novell.com>
17226
17227         * ListView.cs: Added event handling for MouseMove/Up/Down.
17228         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
17229         * ThemeWin32Classic.cs: We need to clear the graphics context and
17230         draw column header in a proper state.
17231
17232
17233 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
17234
17235         *  Menu.cs: fixes signature
17236
17237 2004-11-16  Peter Bartok  <pbartok@novell.com>
17238
17239         * XplatUIX11.cs (GetMessage): Implemented generation of
17240           double click mouse messages
17241
17242 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
17243
17244         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
17245         not by menu
17246
17247 2004-11-11  Peter Bartok  <pbartok@novell.com>
17248
17249         * HandleData.cs: Added Visible property
17250         * XplatUIX11.cs (IsVisible): Now uses Visible property from
17251           HandleData
17252         * XplatUIX11.cs: Removed old debug leftovers
17253         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
17254         * Control.cs (WndProc): Removed old debug leftovers,
17255           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
17256           needed WM_SIZE handling
17257
17258 2004-11-11  Jackson Harper  <jackson@ximian.com>
17259
17260         * OwnerDrawPropertyBag.cs:
17261         * TreeViewImageIndexConverter.cs: Initial implementation
17262
17263 2004-11-10  Jackson Harper  <jackson@ximian.com>
17264
17265         * ThemeWin32Classic.cs:
17266         * TabControl.cs: instead of moving tabs by the slider pos just
17267         start drawing at the tab that is offset by the slider. This way
17268         scrolling always moves by exactly one tab.
17269
17270 2004-11-10  Jackson Harper  <jackson@ximian.com>
17271
17272         * TabControl.cs: You can only scroll left when the slider has
17273         already ben moved right.
17274         
17275 2004-11-10  Jackson Harper  <jackson@ximian.com>
17276
17277         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
17278         the clip area.
17279         
17280 2004-11-10  Jackson Harper  <jackson@ximian.com>
17281
17282         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
17283         clip area.
17284         
17285 2004-11-09  Jackson Harper  <jackson@ximian.com>
17286
17287         * TabControl.cs (CalcXPos): New helper method so we can determine
17288         the proper place to start drawing vertical tabs.
17289         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
17290         
17291 2004-11-09  Jackson Harper  <jackson@ximian.com>
17292
17293         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
17294         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
17295         and Bottom, left and right are illegal values for this and
17296         multiline is enabled when the alignment is set to left or right.
17297         (DrawTab): Each alignment block should draw the text itself now
17298         because Left requires special love. Also add rendering for Left
17299         aligned tabs.
17300         
17301 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
17302
17303         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
17304         does not destroy the windows, removes debugging messages
17305
17306 2004-11-09  jba  <jba-mono@optusnet.com.au>
17307
17308         * ThemeWin32Classic.cs
17309         (DrawButtonBase): Fix verticle text rect clipping in windows
17310         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17311         rendering and incorrect text rect clipping
17312         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
17313         rendering and incorrect text rect clipping
17314         
17315 2004-11-08  Jackson Harper  <jackson@ximian.com>
17316
17317         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
17318         bottom when they are bottom aligned so the bottoms of the tabs get
17319         displayed.
17320         * TabControl.cs (DropRow): Move rows up instead of down when the
17321         tab control is bottom aligned.
17322
17323 2004-11-08 13:59  pbartok
17324
17325         * XplatUIX11.cs:
17326           - Added handling for various window styles
17327           - Added handling for popup windows
17328           - Added SetTopmost handling
17329
17330 2004-11-08 13:55  pbartok
17331
17332         * XplatUIWin32.cs:
17333           - Added argument to SetTopmost method
17334           - Fixed broken ClientToScreen function
17335
17336 2004-11-08 13:53  pbartok
17337
17338         * XplatUIStructs.cs:
17339           - Added missing WS_EX styles
17340
17341 2004-11-08 13:53  pbartok
17342
17343         * XplatUI.cs, XplatUIDriver.cs:
17344           - Added argument to SetTopmost
17345
17346 2004-11-08 13:52  pbartok
17347
17348         * X11Structs.cs:
17349           - Added XSetWindowAttributes structure
17350           - Improved XWindowAttributes structure
17351           - Added SetWindowValuemask enum
17352           - Added window creation arguments enum
17353           - Added gravity enum
17354           - Added Motif hints structure
17355           - Added various Motif flags and enums
17356           - Added PropertyMode enum for property functions
17357
17358 2004-11-08 13:50  pbartok
17359
17360         * Form.cs:
17361           - Fixed arguments for updated SetTopmost method
17362
17363 2004-11-08 13:49  pbartok
17364
17365         * ToolTip.cs:
17366           - Fixed arguments for updated SetTopmost function
17367           - Fixed usage of PointToClient
17368
17369 2004-11-08 13:44  pbartok
17370
17371         * MenuAPI.cs:
17372           - Added Clipping of children and siblings
17373
17374 2004-11-08 13:41  pbartok
17375
17376         * MainMenu.cs:
17377           - Removed SetMenuBarWindow call. We do this in Form.cs
17378
17379 2004-11-08 13:40  jackson
17380
17381         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
17382           scrolling jimmi in the correct location with bottom aligned tabs
17383
17384 2004-11-08 13:36  pbartok
17385
17386         * ContainerControl.cs:
17387           - Implemented BindingContext
17388           - Implemented ParentForm
17389
17390 2004-11-08 12:46  jackson
17391
17392         * TabControl.cs: Put bottom rendered tabs in the right location
17393
17394 2004-11-08 07:15  jordi
17395
17396         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
17397           removes dead code
17398
17399 2004-11-05 17:30  jackson
17400
17401         * TabControl.cs: When selected tabs are expanded make sure they
17402           don't go beyond the edges of the tab control
17403
17404 2004-11-05 14:57  jackson
17405
17406         * TabControl.cs: Reset show_slider so if the control is resized to
17407           a size where it is no longer needed it's not displayed anymore
17408
17409 2004-11-05 13:16  jackson
17410
17411         * TabControl.cs: Make tab pages non visible when added to the
17412           control
17413
17414 2004-11-05 12:42  jackson
17415
17416         * TabControl.cs: Implement SizeMode.FillToRight
17417
17418 2004-11-05 12:16  jackson
17419
17420         * Control.cs: Do not call CreateHandle if the handle is already
17421           created
17422
17423 2004-11-05 11:46  jackson
17424
17425         * TabControl.cs: Remove superflous call to CalcTabRows
17426
17427 2004-11-05 09:07  jackson
17428
17429         * XplatUIX11.cs: Update for Mono.Posix changes
17430
17431 2004-11-05 07:00  ravindra
17432
17433         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
17434           scrolling.
17435
17436 2004-11-04 22:47  jba
17437
17438         * ThemeWin32Classic.cs:
17439           - Fix Button rendering for FlatStyle = Flat or Popup
17440           - Fix RadioButton and CheckBox rendering when Appearance = Button
17441             (normal and flatstyle).
17442           - Correct outer rectangle color when drawing focus rectangle
17443           - Adjust button bounds to be 1 px smaller when focused
17444           - Make button not draw sunken 3d border when pushed (windows compat)
17445           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
17446           - Offset the text in RadioButton and Checkbox when being rendered as
17447           a button.
17448           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
17449           radiobuttons
17450           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
17451           - Fixed disabled text rendering for normally rendered radiobuttons
17452
17453 2004-11-04 10:26  jackson
17454
17455         * TabControl.cs: Recalculate tab rows when resizing
17456
17457 2004-11-04 07:47  jordi
17458
17459         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
17460           collection completion, drawing issues, missing features
17461
17462 2004-11-04 05:03  ravindra
17463
17464         * ScrollBar.cs:
17465                 - We need to recalculate the Thumb area when
17466                 LargeChange/maximum/minimum values are changed.
17467           - We set the 'pos' in UpdatePos() method to minimum, if it's less
17468                 than minimum. This is required to handle the case if large_change is
17469                 more than max, and use LargeChange property instead of large_change
17470                 variable.
17471           - We return max+1 when large_change is more than max, like MS does.
17472
17473 2004-11-04 04:29  ravindra
17474
17475         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
17476                 - Changed default value signatures (prefixed all with ListView).
17477                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
17478                 ListView.
17479           - Fixed calculations for ListViewItem and implemented Clone()
17480           method.
17481
17482 2004-11-04 04:26  ravindra
17483
17484         * Theme.cs, ThemeWin32Classic.cs:
17485                 - Changed default ListView values signatures (prefixed all with
17486                 ListView).
17487           - Fixed default size values for VScrollBar and HScrollBar.
17488                 - Fixed DrawListViewItem method.
17489
17490 2004-11-04 04:05  ravindra
17491
17492         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17493
17494 2004-11-04 04:04  ravindra
17495
17496         * ImageList.cs: Implemented the missing overload for Draw method.
17497
17498 2004-11-03 19:29  jackson
17499
17500         * TabControl.cs: Handle dropping rows on selection properly
17501
17502 2004-11-03 11:59  jackson
17503
17504         * TabControl.cs: remove debug code
17505
17506 2004-11-03 11:52  jackson
17507
17508         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
17509           the scrolly widgerywoo
17510
17511 2004-11-02 13:52  jackson
17512
17513         * TabControl.cs: Resize the tab pages and tabs when the tab control
17514           is resized
17515
17516 2004-11-02 13:40  jackson
17517
17518         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
17519           selected tab to the bottom
17520
17521 2004-11-02 13:39  jackson
17522
17523         * TabPage.cs: Store the tab pages row
17524
17525 2004-11-02 12:33  jordi
17526
17527         * MenuItem.cs: fixes handle creation
17528
17529 2004-11-02 11:42  jackson
17530
17531         * TabControl.cs: signature fix
17532
17533 2004-11-02 08:56  jackson
17534
17535         * TabControl.cs: Calculate whether the tab is on an edge properly.
17536           Remove top secret debugging code
17537
17538 2004-11-01 19:57  jackson
17539
17540         * TabControl.cs: Add click handling, and proper sizing
17541
17542 2004-11-01 19:47  jackson
17543
17544         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
17545           tab controls
17546
17547 2004-11-01 19:39  jackson
17548
17549         * TabPage.cs: add internal property to store the bounds of a tab
17550           page
17551
17552 2004-10-30 04:23  ravindra
17553
17554         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
17555           values.
17556
17557 2004-10-30 04:21  ravindra
17558
17559         * ListView.cs, ListViewItem.cs: Added support for scrolling and
17560           fixed calculations.
17561
17562 2004-10-30 03:06  pbartok
17563
17564         * XplatUIX11.cs:
17565           - Removed extension of DllImported libs
17566
17567 2004-10-29 09:55  jordi
17568
17569         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
17570           navigation, itemcollection completion, menu fixes
17571
17572 2004-10-27 22:58  pbartok
17573
17574         * XplatUIX11.cs:
17575           - Now throws a nice error message when no X display could be opened
17576
17577 2004-10-26 13:51  jordi
17578
17579         * ListView.cs: removes warning
17580
17581 2004-10-26 03:55  ravindra
17582
17583         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
17584           ThemeWin32Classic.cs: Some formatting for my last checkins.
17585
17586 2004-10-26 03:36  ravindra
17587
17588         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
17589           control and default values.
17590
17591 2004-10-26 03:35  ravindra
17592
17593         * Theme.cs: Added some default values for ListView control.
17594
17595 2004-10-26 03:33  ravindra
17596
17597         * ToolBar.cs: ToolBar should use the user specified button size, if
17598           there is any. Added a size_specified flag for the same.
17599
17600 2004-10-26 03:33  ravindra
17601
17602         * ColumnHeader.cs: Added some internal members and calculations for
17603           ColumnHeader.
17604
17605 2004-10-26 03:32  ravindra
17606
17607         * ListViewItem.cs: Calculations for ListViewItem.
17608
17609 2004-10-26 03:31  ravindra
17610
17611         * ListView.cs: Added some internal members and calculations for
17612           ListView.
17613
17614 2004-10-22 13:31  jordi
17615
17616         * MenuAPI.cs: speedup menus drawing
17617
17618 2004-10-22 13:16  jackson
17619
17620         * XplatUIX11.cs: Make sure to update exposed regions when adding an
17621           expose event
17622
17623 2004-10-22 11:49  jackson
17624
17625         * Control.cs: oops
17626
17627 2004-10-22 11:41  jackson
17628
17629         * Control.cs: Check to see if the window should have its background
17630           repainted by X when drawing.
17631
17632 2004-10-22 11:31  jackson
17633
17634         * XplatUIX11.cs: When invalidating areas only use XClearArea if
17635           clear is true, this way we do not get flicker from X repainting the
17636           background
17637
17638 2004-10-22 11:28  jackson
17639
17640         * XEventQueue.cs: Queue properly
17641
17642 2004-10-21 09:38  jackson
17643
17644         * XEventQueue.cs: Fix access modifier
17645
17646 2004-10-21 09:36  jackson
17647
17648         * XEventQueue.cs: Don't loose messages
17649
17650 2004-10-21 09:22  jackson
17651
17652         * XEventQueue.cs: Don't loose messages
17653
17654 2004-10-20 04:15  jordi
17655
17656         * BootMode.cs: enum need it by SystemInfo
17657
17658 2004-10-19 21:58  pbartok
17659
17660         * XplatUIWin32.cs:
17661           - Small sanity check
17662
17663 2004-10-19 21:56  pbartok
17664
17665         * Form.cs:
17666           - Added private FormParentWindow class which acts as the container
17667             for our form and as the non-client area where menus are drawn
17668           - Added/Moved required tie-ins to Jordi's menus
17669           - Fixed/Implemented the FormStartPosition functionality
17670
17671 2004-10-19 21:52  pbartok
17672
17673         * Control.cs:
17674           - Removed unneeded locals
17675           - Added code to all size and location properties to understand and
17676             deal with the parent container of Form
17677
17678 2004-10-19 21:33  pbartok
17679
17680         * Application.cs:
17681           - Fixed to deal with new Form subclasses for menus
17682
17683 2004-10-19 17:48  jackson
17684
17685         * XEventQueue.cs: commit correct version of file
17686
17687 2004-10-19 16:50  jackson
17688
17689         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
17690
17691 2004-10-19 16:15  jordi
17692
17693         * MenuAPI.cs: MenuBarCalcSize returns the height
17694
17695 2004-10-19 08:31  pbartok
17696
17697         * Control.cs:
17698           - Added missing call to PreProcessMessage before calling OnXXXKey
17699           methods
17700
17701 2004-10-19 00:04  ravindra
17702
17703         * ToolTip.cs: Fixed constructor.
17704
17705 2004-10-18 09:31  jordi
17706
17707         * MenuAPI.cs: menuitems in menubars do not have shortcuts
17708
17709 2004-10-18 09:26  jordi
17710
17711         * MenuItem.cs: fixes MenuItem class signature
17712
17713 2004-10-18 08:56  jordi
17714
17715         * MenuAPI.cs: prevents windows from showing in the taskbar
17716
17717 2004-10-18 00:28  ravindra
17718
17719         * ToolTip.cs: Suppressed a warning message.
17720
17721 2004-10-18 00:27  ravindra
17722
17723         * Control.cs: Default value of visible property must be true.
17724
17725 2004-10-17 23:19  pbartok
17726
17727         * ToolTip.cs:
17728           - Complete implementation
17729
17730 2004-10-17 23:19  pbartok
17731
17732         * XplatUIX11.cs:
17733           - Added EnableWindow method
17734           - Added SetModal stub
17735           - Added generation of WM_ACTIVATE message (still needs testing)
17736           - Added SetTopMost stub
17737           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
17738
17739 2004-10-17 23:17  pbartok
17740
17741         * XplatUIWin32.cs:
17742           - Removed VirtualKeys to XplatUIStructs
17743           - Implemented SetTopMost method
17744           - Implemented EnableWindow method
17745           - Bugfix in ScreenToClient()
17746           - Bugfixes in ClientToScreen()
17747
17748 2004-10-17 22:51  pbartok
17749
17750         * XplatUIStructs.cs:
17751           - Added WS_EX styles to WindowStyles enumeration
17752
17753 2004-10-17 22:50  pbartok
17754
17755         * XplatUI.cs, XplatUIDriver.cs:
17756           - Added method for enabling/disabling windows
17757           - Added method for setting window modality
17758           - Added method for setting topmost window
17759
17760 2004-10-17 22:49  pbartok
17761
17762         * ThemeWin32Classic.cs:
17763           - Added ToolTip drawing code
17764
17765 2004-10-17 22:49  pbartok
17766
17767         * Theme.cs:
17768           - Added ToolTip abstracts
17769
17770 2004-10-17 22:47  pbartok
17771
17772         * Form.cs:
17773           - Fixed Form.ControlCollection to handle owner relations
17774           - Added Owner/OwnedForms handling
17775           - Implemented Z-Ordering for owned forms
17776           - Removed unneeded private overload of ShowDialog
17777           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
17778             so I hope)
17779           - Fixed Close(), had wrong default
17780           - Added firing of OnLoad event
17781           - Added some commented out debug code for Ownership handling
17782
17783 2004-10-17 22:16  pbartok
17784
17785         * Control.cs:
17786           - Fixed/implemented flat list of controls
17787
17788 2004-10-17 22:14  pbartok
17789
17790         * Application.cs:
17791           - Added code to simulate modal dialogs on Win32
17792
17793 2004-10-17 16:11  jordi
17794
17795         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
17796           mouse event
17797
17798 2004-10-17 13:39  jordi
17799
17800         * MenuAPI.cs: menu drawing fixes
17801
17802 2004-10-15 09:10  ravindra
17803
17804         * StructFormat.cs: General Enum.
17805
17806 2004-10-15 09:09  ravindra
17807
17808         * SizeGripStyle.cs: Enum for Form.
17809
17810 2004-10-15 09:08  ravindra
17811
17812         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
17813           in Theme for ListView.
17814
17815 2004-10-15 09:06  ravindra
17816
17817         * ColumnHeader.cs: Flushing some formatting changes.
17818
17819 2004-10-15 09:05  ravindra
17820
17821         * ListViewItem.cs: Implemented GetBounds method and fixed coding
17822           style.
17823
17824 2004-10-15 09:03  ravindra
17825
17826         * ListView.cs: Implemented Paint method and fixed coding style.
17827
17828 2004-10-15 07:34  jordi
17829
17830         * MenuAPI.cs: fix for X11
17831
17832 2004-10-15 07:32  ravindra
17833
17834         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
17835                 - Renamed Paint() method to Draw() for clarity. Also, moved
17836                 DrawImage() to OnPaint().
17837
17838 2004-10-15 07:25  ravindra
17839
17840         * CheckBox.cs, RadioButton.cs:
17841                 - Removed Redraw (), we get it from ButtonBase.
17842                 - Implemented Paint (), to do class specific painting.
17843
17844 2004-10-15 07:16  ravindra
17845
17846         * ButtonBase.cs:
17847                 - Redraw () is not virtual now.
17848                 - Added an internal virtual method Paint (), so that
17849                 derived classes can do their painting on their own.
17850                 - Modified OnPaint () to call Paint ().
17851
17852 2004-10-15 06:43  jordi
17853
17854         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
17855           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
17856
17857 2004-10-15 00:30  ravindra
17858
17859         * MessageBox.cs:
17860                 - MessageBox on windows does not have min/max buttons.
17861                 This change in CreateParams fixes this on Windows. We
17862                 still need to implement this windowstyle behavior in
17863                 our X11 driver.
17864
17865 2004-10-14 05:14  ravindra
17866
17867         * ToolBar.cs:
17868                 - Changed Redraw () to do a Refresh () always.
17869                 - Fixed the MouseMove event handling when mouse is pressed,
17870                 ie drag event handling.
17871                 - Replaced the usage of ToolBarButton.Pressed property to
17872                 ToolBarButton.pressed internal variable.
17873
17874 2004-10-14 05:10  ravindra
17875
17876         * ToolBarButton.cs:
17877                 - Added an internal member 'inside' to handle mouse move
17878                 with mouse pressed ie mouse drag event.
17879                 - Changed 'Pressed' property to return true only when
17880                 'inside' and 'pressed' are both true.
17881                 - Some coding style love.
17882
17883 2004-10-14 00:17  ravindra
17884
17885         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
17886           public method.
17887
17888 2004-10-14 00:15  ravindra
17889
17890         * ButtonBase.cs: Redraw () related improvements.
17891
17892 2004-10-14 00:14  ravindra
17893
17894         * MessageBox.cs: Moved InitFormSize () out of Paint method and
17895           removed unnecessary calls to Button.Show () method.
17896
17897 2004-10-13 17:50  pbartok
17898
17899         * XplatUIX11.cs:
17900           - Formatting fix
17901           - Removed destroying of window until we solve the problem of X
17902             destroying the window before us on shutdown
17903
17904 2004-10-13 16:32  pbartok
17905
17906         * ButtonBase.cs:
17907           - Now Redraws on MouseUp for FlatStyle Flat and Popup
17908
17909 2004-10-13 14:18  pbartok
17910
17911         * XplatUIX11.cs:
17912           - Added code to destroy the X window
17913
17914 2004-10-13 14:18  pbartok
17915
17916         * XplatUIWin32.cs:
17917           - Added code to destroy a window
17918
17919 2004-10-13 14:12  pbartok
17920
17921         * ButtonBase.cs:
17922           - Added the Redraw on Resize that got dropped in the last rev
17923
17924 2004-10-13 09:06  pbartok
17925
17926         * ThemeWin32Classic.cs:
17927           - Path from John BouAntoun:
17928             * Fix check rendering (centre correctly for normal style, offset
17929               correctly for FlatStyle).
17930             * Fix border color usage (use backcolor) for FlatStyle.Popup
17931             * Use checkbox.Capture instead of checkbox.is_pressed when
17932               rendering flatstyle states.
17933
17934 2004-10-12 21:48  pbartok
17935
17936         * ThemeWin32Classic.cs:
17937           - Removed all occurences of SystemColors and replaced them with the
17938             matching theme color
17939
17940 2004-10-12 21:41  pbartok
17941
17942         * ThemeWin32Classic.cs:
17943           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
17944             him using the function for flatstyle drawing
17945           - Changed functions to use the new version of CPDrawBorder3D
17946
17947 2004-10-12 21:15  pbartok
17948
17949         * ControlPaint.cs:
17950           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
17951             match MS documentation. They need to return defined colors if the
17952             passed color matches the configured control color. Thanks to John
17953             BouAntoun for pointing this out.
17954
17955 2004-10-12 20:57  pbartok
17956
17957         * Control.cs:
17958           - Fix from John BouAntoun: Raise ForeColorChanged event when text
17959             color is changed
17960
17961 2004-10-12 20:46  pbartok
17962
17963         * CheckBox.cs:
17964           - Fix from John BouAntoun: Now properly sets the Appearance property
17965
17966 2004-10-12 20:45  pbartok
17967
17968         * ThemeWin32Classic.cs:
17969           - Fixes from John BouAntoun: now handles forecolors and backcolors
17970             for flatstyle rendered controls much better; It also fixes normal
17971             checkbox rendering when pushed or disabled.
17972
17973 2004-10-08 02:50  jordi
17974
17975         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
17976           work
17977
17978 2004-10-07 08:56  jordi
17979
17980         * ThemeWin32Classic.cs: Removes deletion of cached brushes
17981
17982 2004-10-06 03:59  jordi
17983
17984         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
17985           XplatUIWin32.cs: removes warnings from compilation
17986
17987 2004-10-05 12:23  jackson
17988
17989         * RadioButton.cs: Fix ctor
17990
17991 2004-10-05 11:10  pbartok
17992
17993         * MessageBox.cs:
17994           - Partial implementation by Benjamin Dasnois
17995
17996 2004-10-05 10:15  jackson
17997
17998         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
17999           by John BouAntoun
18000
18001 2004-10-05 03:07  ravindra
18002
18003         * ToolBar.cs:
18004                 - Removed a private method, Draw ().
18005                 - Fixed the ButtonDropDown event handling.
18006                 - Fixed MouseMove event handling.
18007
18008 2004-10-05 03:04  ravindra
18009
18010         * ThemeWin32Classic.cs:
18011                 - Added DrawListView method and ListViewDefaultSize property.
18012                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18013                 - Changed DOS style CRLF to Unix format (dos2unix).
18014
18015 2004-10-05 03:03  ravindra
18016
18017         * Theme.cs:
18018                 - Added DrawListView method and ListViewDefaultSize property.
18019
18020 2004-10-05 02:42  ravindra
18021
18022         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18023           clicks on DropDown arrow.
18024
18025 2004-10-04 22:56  jackson
18026
18027         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18028           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18029           Control handle the buffers, derived classes should not have to
18030           CreateBuffers themselves.
18031
18032 2004-10-04 21:20  jackson
18033
18034         * StatusBar.cs: The control handles resizing the buffers now.
18035
18036 2004-10-04 21:18  jackson
18037
18038         * Control.cs: When resizing the buffers should be invalidated. This
18039           should be handled in Control not in derived classes.
18040
18041 2004-10-04 14:45  jackson
18042
18043         * TabPage.cs: oops
18044
18045 2004-10-04 02:14  pbartok
18046
18047         * LeftRightAlignment.cs:
18048           - Initial check-in
18049
18050 2004-10-04 01:09  jordi
18051
18052         * ThemeWin32Classic.cs: fixes right button position causing right
18053           button not showing on horizontal scrollbars
18054
18055 2004-10-02 13:12  pbartok
18056
18057         * XplatUIX11.cs:
18058           - Simplified the Invalidate method by using an X call instead of
18059             generating the expose ourselves
18060           - Added an expose when the window background is changed
18061           - Implemented ClientToScreen method
18062
18063 2004-10-02 13:08  pbartok
18064
18065         * XplatUIWin32.cs:
18066           - Added Win32EnableWindow method (test for implementing modal
18067           dialogs)
18068           - Added ClientToScreen method and imports
18069
18070 2004-10-02 13:07  pbartok
18071
18072         * XplatUI.cs, XplatUIDriver.cs:
18073           - Added ClientToScreen coordinate translation method
18074
18075 2004-10-02 13:06  pbartok
18076
18077         * KeyPressEventArgs.cs:
18078           - Fixed access level for constructor
18079
18080 2004-10-02 13:06  pbartok
18081
18082         * NativeWindow.cs:
18083           - Changed access level for the window_collection hash table
18084
18085 2004-10-02 13:05  pbartok
18086
18087         * Form.cs:
18088           - Added KeyPreview property
18089           - Added Menu property (still incomplete, pending Jordi's menu work)
18090           - Implemented ProcessCmdKey
18091           - Implemented ProcessDialogKey
18092           - Implemented ProcessKeyPreview
18093
18094 2004-10-02 13:02  pbartok
18095
18096         * Control.cs:
18097           - Added private method to get the Control object from the window
18098           handle
18099           - Implemented ContextMenu property
18100           - Implemented PointToScreen
18101           - Implemented PreProcessMessage
18102           - Implemented IsInputChar
18103           - Implemented IsInputKey
18104           - Implemented ProcessCmdKey
18105           - Completed ProcessKeyEventArgs
18106           - Fixed message loop to call the proper chain of functions on key
18107           events
18108           - Implemented ProcessDialogChar
18109           - Implemented ProcessDialogKey
18110           - Implemented ProcessKeyMessage
18111           - Implemented ProcessKeyPreview
18112           - Added RaiseDragEvent stub (MS internal method)
18113           - Added RaiseKeyEvent stub (MS internal method)
18114           - Added RaiseMouseEvent stub (MS Internal method)
18115           - Added RaisePaintEvent stub (MS Internal method)
18116           - Added ResetMouseEventArgs stub (MS Internal method)
18117           - Implemented RtlTranslateAlignment
18118           - Implemented RtlTranslateContent
18119           - Implemented RtlTranslateHorizontal
18120           - Implemented RtlTranslateLeftRight
18121           - Added generation of KeyPress event
18122
18123 2004-10-02 05:57  ravindra
18124
18125         * ListViewItem.cs: Added attributes.
18126
18127 2004-10-02 05:32  ravindra
18128
18129         * ListView.cs: Added attributes.
18130
18131 2004-10-01 11:53  jackson
18132
18133         * Form.cs: Implement the Close method so work on MessageBox can
18134           continue.
18135
18136 2004-09-30 14:06  pbartok
18137
18138         * XplatUIX11.cs:
18139           - Bug fixes
18140
18141 2004-09-30 11:34  jackson
18142
18143         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18144
18145 2004-09-30 07:26  ravindra
18146
18147         * ListViewItemConverter.cs: Converter for ListViewItem.
18148
18149 2004-09-30 07:26  ravindra
18150
18151         * SortOrder.cs: Enum for ListView control.
18152
18153 2004-09-30 07:25  ravindra
18154
18155         * ColumnHeader.cs: Supporting class for ListView control.
18156
18157 2004-09-30 07:24  ravindra
18158
18159         * ListView.cs, ListViewItem.cs: Initial implementation.
18160
18161 2004-09-30 07:20  ravindra
18162
18163         * ItemActivation.cs: Enum for ListView Control.
18164
18165 2004-09-29 20:29  pbartok
18166
18167         * XplatUIX11.cs:
18168           - Added lookup of pixel value for background color; tries to get a
18169             color 'close' to the requested color, it avoids having to create a
18170             colormap.  Depending on the display this could mean the used color
18171             is slightly off the desired color. Might have to change it to a more
18172             resource intensive colormap approach, but it will work as a
18173           workaround to avoid red screens.
18174
18175 2004-09-29 14:27  jackson
18176
18177         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18178
18179 2004-09-28 12:44  pbartok
18180
18181         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18182           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18183           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18184           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18185           TrackBar.cs, VScrollBar.cs:
18186           - Streamlined Theme interfaces:
18187             * Each DrawXXX method for a control now is passed the object for
18188               the control to be drawn in order to allow accessing any state the
18189               theme might require
18190
18191             * ControlPaint methods for the theme now have a CP prefix to avoid
18192               name clashes with the Draw methods for controls
18193
18194             * Every control now retrieves it's DefaultSize from the current
18195             theme
18196
18197 2004-09-28 12:17  jackson
18198
18199         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18200           drawing
18201
18202 2004-09-24 14:57  jackson
18203
18204         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18205           Gives us a nice little performance boost.
18206
18207 2004-09-24 12:02  jackson
18208
18209         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18210           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18211           Control and supporting classes. Initial checkin
18212
18213 2004-09-23 13:08  jackson
18214
18215         * Form.cs: Temp build fixage
18216
18217 2004-09-23 01:39  ravindra
18218
18219         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
18220           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
18221           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
18222           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
18223           EventHandlers needed by ListView Control.
18224
18225 2004-09-22 14:12  pbartok
18226
18227         * ScrollableControl.cs:
18228           - Implemented DockPadding property
18229           - Implemented AutoScroll property
18230           - Implemented AutoScrollMargin property
18231           - Implemented AutoScrollMinSize property
18232           - Implemented AutoScrollPosition property
18233           - Implemented DisplayRectangle property (still incomplete)
18234           - Implemented CreateParams property
18235           - Implemented HScroll property
18236           - Implemented VScroll property
18237           - Implemented OnVisibleChanged property
18238
18239 2004-09-22 14:09  pbartok
18240
18241         * Form.cs:
18242           - Added Form.ControllCollection class
18243           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
18244             RemoveOwnedForm (still incomplete, missing on-top and common
18245             minimize/maximize behaviour)
18246           - Added StartPosition property (still incomplete, does not use when
18247             creating the form)
18248           - Added ShowDialog() methods (still incomplete, missing forcing the
18249             dialog modal)
18250
18251 2004-09-22 14:05  pbartok
18252
18253         * Application.cs:
18254           - Added message loop for modal dialogs
18255
18256 2004-09-22 14:02  pbartok
18257
18258         * GroupBox.cs:
18259           - Fixed wrong types for events
18260
18261 2004-09-22 14:00  pbartok
18262
18263         * Shortcut.cs, FormWindowState.cs:
18264           - Fixed wrong values
18265
18266 2004-09-22 12:01  jackson
18267
18268         * Control.cs: Text is never null
18269
18270 2004-09-20 22:14  pbartok
18271
18272         * XplatUIWin32.cs:
18273           - Fixed accessibility level for Idle handler
18274
18275 2004-09-20 18:54  jackson
18276
18277         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18278           XplatUIX11.cs: New message loop that uses poll so we don't get a
18279           busy loop
18280
18281 2004-09-17 10:43  pbartok
18282
18283         * ScrollBar.cs:
18284           - Fixed behaviour of arrow buttons. Now properly behaves like
18285             Buttons (and like Microsoft's scrollbar arrow buttons)
18286
18287 2004-09-17 10:14  pbartok
18288
18289         * ScrollBar.cs:
18290           - Added missing release of keyboard/mouse capture
18291
18292 2004-09-17 06:18  jordi
18293
18294         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
18295           Theme.cs: Very early menu support
18296
18297 2004-09-16 17:45  pbartok
18298
18299         * XplatUIWin32.cs:
18300           - Fixed sending a window to the front
18301           - Added overload for SetWindowPos to avoid casting
18302
18303 2004-09-16 17:44  pbartok
18304
18305         * Control.cs:
18306           - Added SendToBack and BringToFront methods
18307
18308 2004-09-16 07:00  ravindra
18309
18310         * Copyright: Added Novell URL.
18311
18312 2004-09-16 07:00  ravindra
18313
18314         * ToolBar.cs: Invalidate should be done before redrawing.
18315
18316 2004-09-15 21:19  ravindra
18317
18318         * ColumnHeaderStyle.cs: Enum for ListView Control.
18319
18320 2004-09-15 21:18  ravindra
18321
18322         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
18323           ListView Control.
18324
18325 2004-09-13 18:26  jackson
18326
18327         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
18328           properly
18329
18330 2004-09-13 18:13  jackson
18331
18332         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
18333           a second thread and post messages into the main threads message
18334           queue. This makes timing much more consistent. Both win2K and XP
18335           have a minimum timer value of 15 milliseconds, so we now do this
18336           too.
18337
18338 2004-09-13 15:18  pbartok
18339
18340         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18341           XplatUIX11.cs:
18342           - Added Z-Ordering methods
18343
18344 2004-09-13 10:56  pbartok
18345
18346         * Form.cs:
18347           - Fixed #region names
18348           - Moved properties and methods into their proper #regions
18349
18350 2004-09-13 10:51  pbartok
18351
18352         * Form.cs:
18353           - Added Accept and CancelButton properties
18354           - Added ProcessDialogKey() method
18355
18356 2004-09-13 08:18  pbartok
18357
18358         * IWindowTarget.cs:
18359           - Initial check-in
18360
18361 2004-09-10 21:50  pbartok
18362
18363         * Control.cs:
18364           - Added DoDragDrop() [incomplete]
18365           - Properly implemented 'Visible' handling
18366           - Added SetVisibleCore()
18367           - Implemented FindChildAtPoint()
18368           - Implemented GetContainerControl()
18369           - Implemented Hide()
18370
18371 2004-09-10 19:28  pbartok
18372
18373         * Control.cs:
18374           - Moved methods into their appropriate #regions
18375           - Reordered methods within regions alphabetically
18376
18377 2004-09-10 18:57  pbartok
18378
18379         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18380           - Added method to retrieve text from window
18381
18382 2004-09-10 18:56  pbartok
18383
18384         * Control.cs:
18385           - Moved some internal functions into the internal region
18386           - Implemented FontHeight
18387           - Implemented RenderRightToLeft
18388           - Implemented ResizeRedraw
18389           - Implemented ShowFocusCues
18390           - Implemented ShowKeyboardCues
18391           - Implemented FromChildHandle
18392           - Implemented FromHandle
18393           - Implemented IsMnemonic
18394           - Implemented ReflectMessage
18395           - All public and protected Static Methods are now complete
18396
18397 2004-09-10 16:54  pbartok
18398
18399         * Control.cs:
18400           - Implemented remaining missing public instance properties
18401           - Alphabetized some out of order properties
18402
18403 2004-09-10 05:51  ravindra
18404
18405         * PictureBox.cs: Added a check for null image.
18406
18407 2004-09-10 00:59  jordi
18408
18409         * GroupBox.cs: remove cvs tag
18410
18411 2004-09-09 05:25  ravindra
18412
18413         * ToolBar.cs: Make redraw accessible from ToolBarButton.
18414
18415 2004-09-09 05:23  ravindra
18416
18417         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
18418           parent redraw.
18419
18420 2004-09-09 02:28  pbartok
18421
18422         * ThemeWin32Classic.cs:
18423           - Improve disabled string look
18424
18425 2004-09-09 01:15  jordi
18426
18427         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
18428           args and handler
18429
18430 2004-09-08 23:56  ravindra
18431
18432         * ItemBoundsPortion.cs: It's enum, not a class!
18433
18434 2004-09-08 23:47  ravindra
18435
18436         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
18437           Enums for Form.
18438
18439 2004-09-08 21:13  ravindra
18440
18441         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
18442           ListView control.
18443
18444 2004-09-08 21:03  ravindra
18445
18446         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
18447           avoid crash.
18448
18449 2004-09-08 21:01  ravindra
18450
18451         * ScrollableControl.cs: Removed unreachable code.
18452
18453 2004-09-08 06:45  jordi
18454
18455         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
18456
18457 2004-09-08 01:00  jackson
18458
18459         * XplatUIX11.cs: Only run the timers when updating the message
18460           queue. This effectively gives X messages a higher priority then
18461           timer messages. Timers still need love though
18462
18463 2004-09-07 14:01  jackson
18464
18465         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
18466           this for us and the handle is no longer valid.
18467
18468 2004-09-07 13:59  jackson
18469
18470         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
18471           loop that manages to not crash. TODO: Add poll and cleanup timers
18472
18473 2004-09-07 11:12  jordi
18474
18475         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
18476
18477 2004-09-07 03:40  jordi
18478
18479         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
18480           fixes, methods, multiple links
18481
18482 2004-09-06 06:55  jordi
18483
18484         * Control.cs: Caches ClientRectangle rectangle value
18485
18486 2004-09-05 02:03  jordi
18487
18488         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18489           certain situations
18490
18491 2004-09-04 11:10  jordi
18492
18493         * Label.cs: Refresh when font changed
18494
18495 2004-09-02 16:24  pbartok
18496
18497         * Control.cs:
18498           - Added sanity check to creation of double buffer bitmap
18499
18500 2004-09-02 16:24  pbartok
18501
18502         * ButtonBase.cs:
18503           - Fixed selection of text color
18504           - Fixed handling of resize event; now properly recreates double
18505             buffering bitmap
18506           - Added missing assignment of TextAlignment
18507           - Added proper default for TextAlignment
18508
18509 2004-09-02 14:26  pbartok
18510
18511         * RadioButton.cs:
18512           - Added missing RadioButton.RadioButtonAccessibleObject class
18513
18514 2004-09-02 14:26  pbartok
18515
18516         * Control.cs:
18517           - Added missing Control.ControlAccessibleObject class
18518           - Started to implement Select()ion mechanisms, still very incomplete
18519
18520 2004-09-02 14:25  pbartok
18521
18522         * AccessibleObject.cs:
18523           - Added missing methods
18524
18525 2004-09-02 14:23  pbartok
18526
18527         * AccessibleNavigation.cs, AccessibleSelection.cs:
18528           - Initial check-in
18529
18530 2004-09-02 10:32  jordi
18531
18532         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
18533           pool for pens, brushes, and hatchbruses
18534
18535 2004-09-01 15:30  jackson
18536
18537         * StatusBar.cs: Fix typo
18538
18539 2004-09-01 14:44  pbartok
18540
18541         * RadioButton.cs:
18542           - Fixed state
18543
18544 2004-09-01 14:39  pbartok
18545
18546         * Button.cs, RadioButton.cs:
18547           - Functional initial check-in
18548
18549 2004-09-01 14:01  pbartok
18550
18551         * CheckBox.cs:
18552           - Added missing default
18553           - Added missing region mark
18554
18555 2004-09-01 09:10  jordi
18556
18557         * Label.cs: fixes method signatures, new methods, events, fixes
18558           autosize
18559
18560 2004-09-01 07:19  jordi
18561
18562         * Control.cs: Init string variables with an empty object
18563
18564 2004-09-01 04:20  jordi
18565
18566         * Control.cs: fires OnFontChanged event
18567
18568 2004-08-31 20:07  pbartok
18569
18570         * ButtonBase.cs:
18571           - Enabled display of strings
18572
18573 2004-08-31 20:05  pbartok
18574
18575         * Form.cs:
18576           - Added (partial) implementation of DialogResult; rest needs to be
18577             implemented when the modal loop code is done
18578
18579 2004-08-31 19:55  pbartok
18580
18581         * CheckBox.cs:
18582           - Fixed to match the removal of the needs_redraw concept
18583
18584 2004-08-31 19:55  pbartok
18585
18586         * ButtonBase.cs:
18587           - Removed the rather odd split between 'needs redraw' and redrawing
18588           - Now handles the events that require regeneration (ambient
18589             properties and size)
18590
18591 2004-08-31 19:41  pbartok
18592
18593         * Control.cs:
18594           - Added firing of BackColorChanged event
18595           - Added TopLevelControl property
18596           - Fixed handling of WM_ERASEBKGRND message
18597
18598 2004-08-31 12:49  pbartok
18599
18600         * ButtonBase.cs:
18601           - Removed debug
18602           - Minor fixes
18603
18604 2004-08-31 12:48  pbartok
18605
18606         * CheckBox.cs:
18607           - Finished (famous last words)
18608
18609 2004-08-31 04:35  jordi
18610
18611         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
18612           scrolling bugs, adds new methods
18613
18614 2004-08-30 14:42  pbartok
18615
18616         * CheckBox.cs:
18617           - Implemented CheckBox drawing code
18618
18619 2004-08-30 14:42  pbartok
18620
18621         * ButtonBase.cs:
18622           - Made Redraw() and CheckRedraw() virtual
18623           - Improved mouse up/down/move logic to properly track buttons
18624
18625 2004-08-30 09:44  pbartok
18626
18627         * CheckBox.cs:
18628           - Updated to fix broken build. Not complete yet.
18629
18630 2004-08-30 09:28  pbartok
18631
18632         * CheckState.cs:
18633           - Initial checkin
18634
18635 2004-08-30 09:17  pbartok
18636
18637         * Appearance.cs:
18638           - Initial check-in
18639
18640 2004-08-27 16:12  ravindra
18641
18642         * ToolBarButton.cs: Added TypeConverter attribute.
18643
18644 2004-08-27 16:07  ravindra
18645
18646         * ImageIndexConverter.cs: Implemented.
18647
18648 2004-08-27 14:17  pbartok
18649
18650         * Control.cs:
18651           - Removed unneeded stack vars
18652           - First attempt to fix sizing issues when layout is suspended
18653
18654 2004-08-25 15:35  jordi
18655
18656         * ScrollBar.cs: more fixes to scrollbar
18657
18658 2004-08-25 14:04  ravindra
18659
18660         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
18661           Added the missing divider code and grip for ToolBar Control.
18662
18663 2004-08-25 13:20  pbartok
18664
18665         * Control.cs:
18666           - Control now properly passes the ambient background color to child
18667             controls
18668
18669 2004-08-25 13:20  jordi
18670
18671         * ScrollBar.cs: small bug fix regarding bar position
18672
18673 2004-08-25 12:33  pbartok
18674
18675         * Timer.cs:
18676           - Now only calls SetTimer or KillTimer if the enabled state has
18677           changed
18678
18679 2004-08-25 12:33  pbartok
18680
18681         * XplatUIWin32.cs:
18682           - Fixed timer handling, now seems to work
18683           - Improved error message for window creation
18684
18685 2004-08-25 12:32  pbartok
18686
18687         * Control.cs:
18688           - Fixed generation of MouseUp message
18689
18690 2004-08-25 12:29  jordi
18691
18692         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
18693           and fixes for progressbar
18694
18695 2004-08-24 18:43  ravindra
18696
18697         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
18698           in ToolBar control.
18699
18700 2004-08-24 17:15  pbartok
18701
18702         * Panel.cs:
18703           - Added #region
18704           - Added missing events
18705           - Alphabetized
18706
18707 2004-08-24 17:14  pbartok
18708
18709         * StatusBar.cs, PictureBox.cs:
18710           - Now uses Control's CreateParams
18711
18712 2004-08-24 16:36  pbartok
18713
18714         * XplatUIX11.cs:
18715           - Fixed background color handling
18716           - Fixed sending of enter/leave events on a grab
18717
18718 2004-08-24 16:35  pbartok
18719
18720         * X11Structs.cs:
18721           - Refined definitions for CrossingEvent
18722
18723 2004-08-24 12:37  jordi
18724
18725         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
18726           formmating, methods signature, and adds missing events
18727
18728 2004-08-24 12:24  jordi
18729
18730         * Control.cs: fire OnEnabledChanged event
18731
18732 2004-08-24 11:17  pbartok
18733
18734         * XplatUIWin32.cs:
18735           - Implemented SetTimer() and KillTimer()
18736
18737 2004-08-24 11:16  pbartok
18738
18739         * XplatUIX11.cs:
18740           - Now uses Remove instead of Add to kill the timer
18741
18742 2004-08-24 10:16  jackson
18743
18744         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
18745           picture boxes in the theme now. Draw picture box borders and obey
18746           sizing modes
18747
18748 2004-08-24 05:49  jackson
18749
18750         * Timer.cs: Remove top secret debugging code
18751
18752 2004-08-24 05:34  jackson
18753
18754         * PictureBox.cs: Temp hack to make picture boxes draw their full
18755           image
18756
18757 2004-08-24 05:29  jackson
18758
18759         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18760           XplatUIX11.cs: Move timers to the driver level. On X they are
18761           queued by the driver and checked on idle.
18762
18763 2004-08-24 01:07  jackson
18764
18765         * XplatUIX11.cs: Use a queue for async messages instead of passing
18766           them as ClientMessages since that was totally broken. Also simply
18767           check for events and return an idle message if none are found. This
18768           gives us an idle handler, and prevents deadlocking when no messages
18769           are in the queue.
18770
18771 2004-08-23 18:19  ravindra
18772
18773         * XplatUIWin32.cs: Removed the unwanted destructor.
18774
18775 2004-08-23 17:27  pbartok
18776
18777         * ButtonBase.cs:
18778           - Finishing touches. Works now, just needs some optimizations.
18779
18780 2004-08-23 16:53  jordi
18781
18782         * ScrollBar.cs: small fix
18783
18784 2004-08-23 16:45  pbartok
18785
18786         * Application.cs:
18787           - Removed debug output
18788           - Simplifications
18789
18790 2004-08-23 16:43  jordi
18791
18792         * ScrollBar.cs: [no log message]
18793
18794 2004-08-23 16:10  pbartok
18795
18796         * Form.cs:
18797           - Fixed handling of WM_CLOSE message
18798           - Removed debug output
18799
18800 2004-08-23 16:09  pbartok
18801
18802         * Application.cs:
18803           - Added handling of Idle event
18804           - Added handling of form closing
18805           - Fixed reporting of MessageLoop property
18806           - Removed some unneeded code, should provide a bit of a speedup
18807
18808 2004-08-23 15:22  pbartok
18809
18810         * Control.cs:
18811           - Added InitLayout() method
18812           - Added code to properly perform layout when Anchor or Dock property
18813             is changed
18814           - Changed 'interpretation' of ResumeLayout. MS seems to have a
18815             LAMESPEC, tried to do it in a way that makes sense
18816
18817 2004-08-23 14:10  jordi
18818
18819         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
18820           properties and methods
18821
18822 2004-08-23 13:55  pbartok
18823
18824         * Control.cs:
18825           - Properly fixed Jordi's last fix
18826           - Now uses Cursor's Position property instead of calling XplatUI
18827           directly
18828
18829 2004-08-23 13:44  jordi
18830
18831         * PaintEventHandler.cs: Adding missing attribute
18832
18833 2004-08-23 13:39  pbartok
18834
18835         * Cursor.cs:
18836           - Implemented Position property
18837
18838 2004-08-23 13:39  pbartok
18839
18840         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18841           - Added method to move mouse cursor
18842
18843 2004-08-23 13:39  pbartok
18844
18845         * XplatUIX11.cs:
18846           - Fixed setting of background color
18847           - Added method to move mouse cursor
18848
18849 2004-08-23 13:16  jordi
18850
18851         * Control.cs: avoids null exception
18852
18853 2004-08-22 17:46  jackson
18854
18855         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
18856           PictureBox
18857
18858 2004-08-22 17:40  jackson
18859
18860         * XplatUIX11.cs: Add some missing locks
18861
18862 2004-08-22 15:10  pbartok
18863
18864         * Control.cs, Form.cs:
18865           - Removed OverlappedWindow style from Control, instead it's default
18866             now is child
18867           - Made form windows OverlappedWindow by default
18868
18869 2004-08-22 13:34  jackson
18870
18871         * ScrollBar.cs: Update the position through the Value property so
18872           the OnValueChanged event is raised.
18873
18874 2004-08-22 12:04  pbartok
18875
18876         * SWF.csproj:
18877           - Added Cursor.cs and UserControl.cs
18878
18879 2004-08-22 12:03  pbartok
18880
18881         * Cursor.cs:
18882           - Started implementation, not usable yet
18883
18884 2004-08-22 12:00  pbartok
18885
18886         * UserControl.cs:
18887           - Implemented UserControl (complete)
18888
18889 2004-08-21 19:20  ravindra
18890
18891         * ToolBar.cs: Correcting the formatting mess of VS.NET.
18892
18893 2004-08-21 18:49  ravindra
18894
18895         * ToolBar.cs: Probably this completes the missing attributes in
18896           toolbar control.
18897
18898 2004-08-21 18:03  ravindra
18899
18900         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
18901           Fixed toolbar control signatures.
18902
18903 2004-08-21 16:32  pbartok
18904
18905         * LinkLabel.cs:
18906           - Signature Fixes
18907
18908 2004-08-21 16:30  pbartok
18909
18910         * Label.cs:
18911           - Signature fixes
18912
18913 2004-08-21 16:19  pbartok
18914
18915         * Control.cs, Label.cs:
18916           - Signature fixes
18917
18918 2004-08-21 15:57  pbartok
18919
18920         * ButtonBase.cs:
18921           - Added loads of debug output for development
18922           - Fixed typo in method name
18923
18924 2004-08-21 15:52  pbartok
18925
18926         * ToolBarButtonClickEventArgs.cs:
18927           - Added missing base class
18928
18929 2004-08-21 14:53  pbartok
18930
18931         * Control.cs:
18932           - Updated to match new GrabWindow signature
18933
18934 2004-08-21 14:51  pbartok
18935
18936         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18937           - Added method to get default display size
18938
18939 2004-08-21 14:23  pbartok
18940
18941         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18942           - Added method to query current grab state
18943           - Added argument to allow confining a grab to a window
18944
18945 2004-08-21 14:22  pbartok
18946
18947         * Keys.cs:
18948           - Added [Flags] attribute so that modifiers can be used in bitwise
18949           ops
18950
18951 2004-08-21 14:21  pbartok
18952
18953         * TrackBar.cs, ScrollBar.cs:
18954           - Replaced direct XplatUI calls with their Control counterpart
18955
18956 2004-08-21 13:32  pbartok
18957
18958         * Control.cs:
18959           - Implemented Created property
18960
18961 2004-08-21 13:28  pbartok
18962
18963         * Control.cs:
18964           - Implemented ContainsFocus
18965
18966 2004-08-21 13:26  pbartok
18967
18968         * Control.cs:
18969           - Implemented CausesValidation
18970
18971 2004-08-21 13:21  pbartok
18972
18973         * Control.cs:
18974           - Implemented CanFocus
18975           - Implemented CanSelect
18976           - Implemented Capture
18977
18978 2004-08-21 12:35  pbartok
18979
18980         * XplatUIWin32.cs:
18981           - Fixed bug with Async message handling
18982           - Implemented getting the ModifierKeys
18983
18984 2004-08-21 12:32  jackson
18985
18986         * AsyncMethodResult.cs: Make sure we have the mutex before we
18987           release it. Fixes BeginInvoke on windows
18988
18989 2004-08-21 11:31  pbartok
18990
18991         * XplatUIWin32.cs, XplatUIX11.cs:
18992           - Drivers now return proper mouse state
18993
18994 2004-08-21 10:54  jackson
18995
18996         * Control.cs: Implement EndInvoke
18997
18998 2004-08-21 10:48  jackson
18999
19000         * Timer.cs: Remove unneeded finalizer
19001
19002 2004-08-20 19:52  ravindra
19003
19004         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19005           in mouse event handling in the ToolBar control.
19006
19007 2004-08-20 19:50  ravindra
19008
19009         * ImageList.cs: Changed draw method to use the arguments passed in
19010           to draw the image.
19011
19012 2004-08-20 18:58  pbartok
19013
19014         * XplatUIStructs.cs:
19015           - Added private message for async communication
19016
19017 2004-08-20 17:38  ravindra
19018
19019         * Control.cs: Made RightToLeft property virtual and removed a
19020           Console.WriteLine.
19021
19022 2004-08-20 14:39  jordi
19023
19024         * ThemeGtk.cs: use style_attach
19025
19026 2004-08-20 14:39  pbartok
19027
19028         * XplatUIWin32.cs:
19029           - Added jackson's Async code from X11 to Win32
19030
19031 2004-08-20 14:09  pbartok
19032
19033         * SWF.csproj:
19034           - Added all new files
19035
19036 2004-08-20 14:09  pbartok
19037
19038         * Control.cs:
19039           - Added call to set window background color
19040
19041 2004-08-20 14:03  pbartok
19042
19043         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19044           - Added method for setting the window background
19045
19046 2004-08-20 14:02  pbartok
19047
19048         * XplatUIWin32.cs:
19049           - Added method for setting the background color
19050           - Added handling for erasing the window background
19051
19052 2004-08-20 13:45  jordi
19053
19054         * TrackBar.cs: fixes timer, new properties and methods
19055
19056 2004-08-20 13:34  jackson
19057
19058         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19059           correct thread
19060
19061 2004-08-20 13:22  jackson
19062
19063         * Timer.cs: Timer Tick events are now handed through Controls Async
19064           mechanism so the callbacks are executed in the same thread as X
19065
19066 2004-08-20 13:19  jackson
19067
19068         * XplatUIDriver.cs: Expose functionality to send async messages
19069           through the driver
19070
19071 2004-08-20 13:18  jackson
19072
19073         * Control.cs: Implement Begininvoke
19074
19075 2004-08-20 13:14  jackson
19076
19077         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19078           messages through the driver
19079
19080 2004-08-20 13:12  jackson
19081
19082         * XplatUIX11.cs: Lock before all X operations. Also added Async
19083           method functionality through XSendEvent
19084
19085 2004-08-20 13:11  jackson
19086
19087         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19088           This will screw up on 64 bit systems)
19089
19090 2004-08-20 13:10  jackson
19091
19092         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19093           Async messages through X/Win32
19094
19095 2004-08-19 19:39  pbartok
19096
19097         * XplatUIX11.cs:
19098           - Updated code to match new HandleData.DeviceContext type
19099
19100 2004-08-19 19:38  pbartok
19101
19102         * HandleData.cs:
19103           - Made DeviceContext a generic object to allow usage from various
19104           drivers
19105           - Added support for queueing Windows messages
19106
19107 2004-08-19 19:37  pbartok
19108
19109         * XplatUIWin32.cs:
19110           - Added generation of MouseEnter, MouseLeave and MouseHover events
19111           - Added cleanup on EndPaint
19112
19113 2004-08-19 19:17  pbartok
19114
19115         * Control.cs:
19116           - Added handling of WM_MOUSEHOVER
19117           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19118           code
19119
19120 2004-08-19 18:55  jordi
19121
19122         * ThemeGtk.cs: fixes button order
19123
19124 2004-08-19 18:12  jordi
19125
19126         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19127
19128 2004-08-19 17:09  pbartok
19129
19130         * Control.cs:
19131           - Added Right property
19132           - Added RightToLeft property
19133
19134 2004-08-19 16:27  jordi
19135
19136         * ThemeGtk.cs: experimental GTK theme support
19137
19138 2004-08-19 16:26  jordi
19139
19140         * ITheme.cs, Theme.cs: move themes from an interface to a class
19141
19142 2004-08-19 16:25  jordi
19143
19144         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19145           theme enhancaments
19146
19147 2004-08-19 16:04  pbartok
19148
19149         * XplatUIX11.cs:
19150           - Added colormap basics
19151           - Added a way to re-initialize with a different display handle
19152           - Fixed setting of the window background color
19153           - Added various X11 imports related to colors and colormaps
19154
19155 2004-08-19 15:51  pbartok
19156
19157         * X11Structs.cs:
19158           - Removed packing hints (Paolo suggested this a while back)
19159           - fixed colormap type
19160           - Added default Atom types
19161           - Added Screen and color structs and enums
19162
19163 2004-08-19 15:39  pbartok
19164
19165         * ImageList.cs:
19166           - Added missing Draw() method
19167           - Added missing RecreateHandle event
19168
19169 2004-08-19 15:30  pbartok
19170
19171         * Form.cs:
19172           - Added handling of WM_CLOSE
19173
19174 2004-08-18 13:16  jordi
19175
19176         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19177           a table
19178
19179 2004-08-18 09:56  jordi
19180
19181         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19182
19183 2004-08-17 15:31  ravindra
19184
19185         * SWF.csproj: Updated project.
19186
19187 2004-08-17 15:25  pbartok
19188
19189         * Control.cs:
19190           - Drawing improvement; don't call UpdateBounds if we are not visible
19191             (or have been minimized)
19192
19193 2004-08-17 15:24  pbartok
19194
19195         * XplatUIWin32.cs:
19196           - Finished IsVisible
19197           - Added Win32GetWindowPlacement
19198
19199 2004-08-17 15:08  jackson
19200
19201         * Panel.cs: Initial checkin of the Panel
19202
19203 2004-08-17 14:25  pbartok
19204
19205         * Control.cs:
19206           - Fixed broken handling of default window sizes
19207
19208 2004-08-17 13:29  jackson
19209
19210         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19211           has a large startup time.
19212
19213 2004-08-17 10:25  jackson
19214
19215         * HandleData.cs: union areas properly
19216
19217 2004-08-17 10:12  jackson
19218
19219         * HandleData.cs: union areas properly
19220
19221 2004-08-16 20:00  ravindra
19222
19223         * ToolBar.cs, ToolBarButton.cs: Added attributes.
19224
19225 2004-08-16 18:48  ravindra
19226
19227         * ToolBar.cs: Added attributes.
19228
19229 2004-08-16 17:17  ravindra
19230
19231         * SWF.csproj: Updated project.
19232
19233 2004-08-16 17:16  jackson
19234
19235         * XplatUIX11.cs: Check for more expose events before sending a
19236           WM_PAINT so they can all be grouped together. This makes dragging a
19237           window across another window redraw in a sane way.
19238
19239 2004-08-16 15:47  pbartok
19240
19241         * Control.cs:
19242           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
19243             support OnMouseEnter/Leave()
19244           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
19245             exposure handling
19246
19247 2004-08-16 15:46  pbartok
19248
19249         * XplatUIStructs.cs, XplatUIX11.cs:
19250           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
19251           OnMouseEnter/Leave()
19252
19253 2004-08-16 15:34  jackson
19254
19255         * XplatUIX11.cs: Group multiple expose events in HandleData, make
19256           sure messages get the message field set to WM_NULL if they are not
19257           handled.
19258
19259 2004-08-16 15:24  jackson
19260
19261         * HandleData.cs: HandleData is used for storing message information
19262           for window handles
19263
19264 2004-08-15 17:23  ravindra
19265
19266         * ColorDepth.cs: Added attribute.
19267
19268 2004-08-15 17:23  ravindra
19269
19270         * SWF.csproj: Updated project for ToolBar Control.
19271
19272 2004-08-15 17:20  ravindra
19273
19274         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
19275           control and also dos2unix format.
19276
19277 2004-08-15 17:13  ravindra
19278
19279         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
19280           ToolBarButtonClickEventArgs.cs,
19281           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
19282           ToolBarTextAlign.cs: First Implementation of ToolBar control.
19283
19284 2004-08-15 15:31  pbartok
19285
19286         * ButtonBase.cs:
19287           - First (mostly) working version
19288
19289 2004-08-13 16:15  pbartok
19290
19291         * Control.cs:
19292           - Fixed Anchor default
19293
19294 2004-08-13 15:43  pbartok
19295
19296         * Control.cs:
19297           - Changed GetCursorPos signature
19298
19299 2004-08-13 15:42  pbartok
19300
19301         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19302           - Changed signature for GetCursorPos
19303
19304 2004-08-13 15:25  pbartok
19305
19306         * XplatUIX11.cs:
19307           - Cleanup
19308           - Fixed resizing/exposure handling
19309
19310 2004-08-13 15:22  jordi
19311
19312         * ThemeWin32Classic.cs: removes redundant code and fixes issues
19313           with tickposition
19314
19315 2004-08-13 14:55  jordi
19316
19317         * TrackBar.cs: change from wndproc to events
19318
19319 2004-08-13 13:00  jordi
19320
19321         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19322           XplatUIX11.cs: implements PointToClient (ScreenToClient)
19323
19324 2004-08-13 12:53  pbartok
19325
19326         * XplatUIWin32.cs:
19327           - Changed GetWindowPos to also provide client area size
19328           - Fixed broken prototypes for several win32 functions
19329
19330 2004-08-13 12:53  pbartok
19331
19332         * XplatUI.cs, XplatUIDriver.cs:
19333           - Changed GetWindowPos to also provide client area size
19334
19335 2004-08-13 12:52  pbartok
19336
19337         * XplatUIX11.cs:
19338           - Added generation of WM_POSCHANGED
19339           - Changed GetWindowPos to also provide client area size
19340
19341 2004-08-13 12:52  pbartok
19342
19343         * Control.cs:
19344           - Added Dispose() and destructor
19345           - Fixed resizing and bounds calculation
19346           - Fixed Layout
19347           - Added memory savings for invisible windows
19348
19349 2004-08-13 12:46  jordi
19350
19351         * TrackBar.cs: adds timer and grap window
19352
19353 2004-08-13 10:25  jackson
19354
19355         * Timer.cs: SWF Timer
19356
19357 2004-08-12 16:59  pbartok
19358
19359         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19360           - Implemented method to get current mouse position
19361
19362 2004-08-12 14:29  jordi
19363
19364         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
19365           enhancement, fix mouse problems, highli thumb, etc
19366
19367 2004-08-12 13:31  pbartok
19368
19369         * Control.cs:
19370           - Fixed Anchoring bugs
19371
19372 2004-08-12 13:01  jackson
19373
19374         * StatusBar.cs: Don't forget things
19375
19376 2004-08-12 12:54  jackson
19377
19378         * ThemeWin32Classic.cs: Handle owner draw status bars
19379
19380 2004-08-12 12:54  jackson
19381
19382         * StatusBar.cs: Implement missing properties, events, and methods.
19383           Handle mouse clicking
19384
19385 2004-08-12 10:19  jackson
19386
19387         * StatusBarPanelClickEventArgs.cs,
19388           StatusBarPanelClickEventHandler.cs: Classes for handling status
19389           bar panel click events
19390
19391 2004-08-12 10:10  jackson
19392
19393         * Control.cs: Add missing properties
19394
19395 2004-08-12 09:46  pbartok
19396
19397         * BindingsManagerBase.cs:
19398           - Name changed to BindingManagerBase.cs
19399
19400 2004-08-12 09:25  jordi
19401
19402         * ScrollableControl.cs: calls ctrlbase instead of exeception
19403
19404 2004-08-11 16:28  pbartok
19405
19406         * InputLanguageChangingEventArgs.cs:
19407           - Never check in before compiling. Fixes the last check-in
19408
19409 2004-08-11 16:26  pbartok
19410
19411         * InputLanguageChangingEventArgs.cs:
19412           - More signature fixes
19413
19414 2004-08-11 16:20  pbartok
19415
19416         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
19417           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
19418           ImageListStreamer.cs, InputLanguage.cs,
19419           InputLanguageChangedEventArgs.cs,
19420           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
19421           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
19422           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
19423           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19424           - Signature fixes
19425
19426 2004-08-11 16:16  pbartok
19427
19428         * Application.cs:
19429           - Fixed Signature
19430           - Added .Net 1.1 method
19431
19432 2004-08-11 15:25  pbartok
19433
19434         * SWF.csproj:
19435           - Fixed BindingManagerBase.cs filename
19436
19437 2004-08-11 15:22  pbartok
19438
19439         * BindingManagerBase.cs:
19440           - Was checked in with wrong filename
19441
19442 2004-08-11 14:50  pbartok
19443
19444         * SWF.csproj:
19445           - Updated
19446
19447 2004-08-11 13:41  jordi
19448
19449         * XplatUIWin32.cs: Fixes ClientRect
19450
19451 2004-08-11 13:19  pbartok
19452
19453         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19454           XplatUIX11.cs:
19455           - We had SetWindowPos and MoveWindow to set window positions and
19456             size, removed MoveWindow. We have GetWindowPos, so it made sense to
19457             keep SetWindowPos as matching counterpart
19458           - Added some X11 sanity checking
19459
19460 2004-08-11 12:59  pbartok
19461
19462         * Control.cs:
19463           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
19464             (It seems that SetBounds is just a front for SetBoundsCore and
19465              SetBoundsCore updates the underlying window system and
19466              UpdateBounds is responsible for updating the variables associated
19467              with the Control and sending the events)
19468           - Major cleanup of Size handling; we now have two sizes, client_size
19469             and bounds. Bounds defines the window with decorations, client_size
19470             without them.
19471
19472 2004-08-11 12:55  pbartok
19473
19474         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19475           - Added method to calculate difference between decorated window and
19476             raw client area
19477
19478 2004-08-11 12:54  pbartok
19479
19480         * Label.cs:
19481           - Forcing redraw on resize
19482
19483 2004-08-11 11:43  pbartok
19484
19485         * ImageList.cs:
19486           - Removed disposing of the actual images when the list is disposed
19487
19488 2004-08-11 09:13  pbartok
19489
19490         * Control.cs:
19491           - Now properly reparents windows
19492
19493 2004-08-11 08:37  pbartok
19494
19495         * Control.cs:
19496           - Duh!
19497
19498 2004-08-11 07:47  pbartok
19499
19500         * Control.cs:
19501           - Rewrote the collection stuff. Might not be as fast now, not
19502             keeping the number of children around and accessible directly, but
19503             it's more straightforward
19504
19505 2004-08-11 07:44  pbartok
19506
19507         * AccessibleObject.cs:
19508           - Fixed to match ControlCollection rewrite
19509
19510 2004-08-11 07:43  pbartok
19511
19512         * ImageList.cs:
19513           - Added missing creation of the collection list
19514
19515 2004-08-10 20:08  jackson
19516
19517         * StatusBar.cs: Get the paint message from WndProc
19518
19519 2004-08-10 19:31  jackson
19520
19521         * ThemeWin32Classic.cs: Create Brushes as little as possible
19522
19523 2004-08-10 19:20  jackson
19524
19525         * UICues.cs: Add Flags attribute
19526
19527 2004-08-10 19:19  jackson
19528
19529         * StatusBarPanel.cs: Signature cleanup
19530
19531 2004-08-10 19:10  jackson
19532
19533         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
19534           Initial implementation of status bar item drawing
19535
19536 2004-08-10 17:27  jordi
19537
19538         * TrackBar.cs: add missing methods, properties, and restructure to
19539           hide extra ones
19540
19541 2004-08-10 16:24  jackson
19542
19543         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
19544           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
19545           attribute
19546
19547 2004-08-10 13:21  jordi
19548
19549         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
19550           enhancements and standarize on win colors defaults
19551
19552 2004-08-10 12:52  jackson
19553
19554         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
19555           ThemeWin32Classic.cs: Implement DrawItem functionality
19556
19557 2004-08-10 12:47  jordi
19558
19559         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
19560
19561 2004-08-10 12:32  jordi
19562
19563         * Control.cs: throw ontextchange event
19564
19565 2004-08-10 11:43  pbartok
19566
19567         * Control.cs:
19568           - Added more to the still unfinished Dock/Anchor layout code
19569
19570 2004-08-10 11:39  pbartok
19571
19572         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19573           - Added GetWindowPos method
19574
19575 2004-08-10 11:36  pbartok
19576
19577         * XplatUIWin32.cs:
19578           - Implemented several methods
19579
19580 2004-08-10 09:47  jackson
19581
19582         * TrackBar.cs: Allow control to handle buffering
19583
19584 2004-08-10 09:41  jackson
19585
19586         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
19587
19588 2004-08-10 09:24  jackson
19589
19590         * Label.cs, LinkLabel.cs: Let Control handle buffering.
19591
19592 2004-08-10 09:09  jackson
19593
19594         * StatusBar.cs: Let Control handle all the buffering.
19595
19596 2004-08-10 09:08  jackson
19597
19598         * Control.cs: Control will now handle the buffering code, so each
19599           control does not have to implement this.
19600
19601 2004-08-10 08:34  jackson
19602
19603         * XplatUIDriver.cs: Use default colors from the theme
19604
19605 2004-08-09 17:12  pbartok
19606
19607         * ImageList.cs:
19608           - Fixed several bugs Ravindra pointed out
19609
19610 2004-08-09 16:11  pbartok
19611
19612         * Control.cs:
19613           - Added incomplete dock layout code
19614           - Added support for mouse wheel
19615
19616 2004-08-09 16:09  pbartok
19617
19618         * XplatUIX11.cs:
19619           - Added handling for middle and right mousebutton
19620           - Added handling for mouse wheel
19621           - Added handling for key state and mouse state and position
19622           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
19623           messages
19624
19625 2004-08-09 15:40  jackson
19626
19627         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
19628           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
19629           checkin
19630
19631 2004-08-09 15:37  jackson
19632
19633         * StatusBar.cs: Initial implementation of StatusBar
19634
19635 2004-08-09 15:36  jackson
19636
19637         * ITheme.cs: Add support for drawing status bar and getting status
19638           bar item sizes
19639
19640 2004-08-09 15:35  pbartok
19641
19642         * MouseButtons.cs:
19643           - Fixed values
19644
19645 2004-08-09 15:34  jackson
19646
19647         * ThemeWin32Classic.cs: Add support for drawing status bar and get
19648           status bar item sizes
19649
19650 2004-08-09 15:21  jackson
19651
19652         * ThemeWin32Classic.cs: Use known colors for default control
19653           colours
19654
19655 2004-08-09 15:12  jackson
19656
19657         * ThemeWin32Classic.cs: Make the default font static, it is static
19658           in control so this doesn't change functionality and creating fonts
19659           is sloooooow.
19660
19661 2004-08-09 14:56  pbartok
19662
19663         * X11Structs.cs:
19664           - Added GrabMode enum
19665
19666 2004-08-09 14:55  pbartok
19667
19668         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19669           - Removed Run method, was only required for initial development
19670
19671 2004-08-09 14:51  pbartok
19672
19673         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19674           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
19675           capture
19676
19677 2004-08-09 13:48  pbartok
19678
19679         * XplatUIX11.cs:
19680           - Fixed default sizing for child windows
19681
19682 2004-08-09 12:56  pbartok
19683
19684         * XplatUIX11.cs:
19685           - Added generation of WM_DESTROY message
19686           - Added handling of window manager induced shutdown
19687
19688 2004-08-09 11:31  jackson
19689
19690         * ThemeWin32Classic.cs: New names for control properties
19691
19692 2004-08-09 11:25  jackson
19693
19694         * Control.cs: Use new color names
19695
19696 2004-08-09 11:02  jackson
19697
19698         * XplatUI.cs: Get default window properties from the theme
19699
19700 2004-08-09 11:01  jackson
19701
19702         * ITheme.cs: The theme engine now controls default window
19703           properties
19704
19705 2004-08-09 11:00  jackson
19706
19707         * ThemeWin32Classic.cs: Add default window color properties
19708
19709 2004-08-09 10:17  jackson
19710
19711         * ThemeWin32Classic.cs: Use correct default back color
19712
19713 2004-08-09 10:05  jackson
19714
19715         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
19716           the theme now.
19717
19718 2004-08-09 09:56  jackson
19719
19720         * XplatUI.cs: Remove defaults, these are handled by the theme now.
19721
19722 2004-08-09 09:54  jackson
19723
19724         * Control.cs: Get default properties from the theme.
19725
19726 2004-08-09 09:53  jackson
19727
19728         * ITheme.cs: Themes now handle default control properties
19729
19730 2004-08-09 09:53  jackson
19731
19732         * ThemeWin32Classic.cs: Themes now handle default control
19733           properties so coloring will be consistent
19734
19735 2004-08-08 16:54  jordi
19736
19737         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
19738
19739 2004-08-08 15:08  jordi
19740
19741         * XplatUIX11.cs: fixes keyboard crash
19742
19743 2004-08-08 13:47  jordi
19744
19745         * Label.cs: add cvs header info
19746
19747 2004-08-08 12:09  jackson
19748
19749         * ThemeWin32Classic.cs: Add pen_buttonface
19750
19751 2004-08-08 11:52  jordi
19752
19753         * Label.cs, LinkLabel.cs: [no log message]
19754
19755 2004-08-08 11:34  jordi
19756
19757         * ThemeWin32Classic.cs: Use Windows Standard Colours
19758
19759 2004-08-07 17:32  jordi
19760
19761         * TrackBar.cs: throw exceptions of invalid enums values
19762
19763 2004-08-07 17:31  jordi
19764
19765         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
19766           draw method name
19767
19768 2004-08-07 16:56  jackson
19769
19770         * HorizontalAlignment.cs: Initial checkin
19771
19772 2004-08-07 13:16  jordi
19773
19774         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
19775           methods
19776
19777 2004-08-07 13:05  jordi
19778
19779         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
19780           GetSysColor defines
19781
19782 2004-08-06 18:01  pbartok
19783
19784         * ThemeWin32Classic.cs:
19785           - Fixed some rounding issues with float/int
19786
19787 2004-08-06 18:00  jackson
19788
19789         * DockStyle.cs, AnchorStyles.cs:
19790
19791                   Add flags and serializable attributes.
19792
19793 2004-08-06 17:46  pbartok
19794
19795         * XplatUIX11.cs:
19796           - Implemented GetParent
19797
19798 2004-08-06 17:18  pbartok
19799
19800         * TrackBar.cs:
19801           - Fixed some rounding issues with float/int
19802
19803 2004-08-06 17:17  pbartok
19804
19805         * X11Structs.cs, XplatUIX11.cs:
19806           - Fixed Refresh and Invalidate
19807
19808 2004-08-06 15:30  pbartok
19809
19810         * Control.cs, X11Structs.cs, XplatUIX11.cs:
19811           - Fixed recursive loop when resizing
19812           - Improved/fixed redrawing on expose messages
19813
19814 2004-08-06 09:53  jordi
19815
19816         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
19817           keyboard navigation
19818
19819 2004-08-06 08:02  pbartok
19820
19821         * X11Structs.cs, XplatUIX11.cs:
19822           - Fixed reparenting
19823           - Fixed window border creation
19824
19825 2004-08-05 15:38  pbartok
19826
19827         * XplatUIX11.cs:
19828           - Attempted fix for reparenting problems
19829
19830 2004-08-04 15:14  pbartok
19831
19832         * Control.cs:
19833           - Fixed Invalidation bug (calculated wrong client area)
19834           - Added ClientSize setter
19835
19836 2004-08-04 15:13  pbartok
19837
19838         * Form.cs:
19839           - Added AutoScale properties
19840
19841 2004-08-04 15:13  pbartok
19842
19843         * SWF.csproj:
19844           - Added latest files
19845
19846 2004-08-04 14:11  pbartok
19847
19848         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19849           XplatUIX11.cs:
19850           - Added Invalidate handling
19851
19852 2004-08-03 17:09  jordi
19853
19854         * XplatUIDriver.cs: fixes spelling mistake
19855
19856 2004-07-27 09:53  jordi
19857
19858         * TrackBar.cs: fixes trackbar events, def classname, methods
19859           signature
19860
19861 2004-07-27 09:29  jordi
19862
19863         * ScrollBar.cs: fixes scrollbar events
19864
19865 2004-07-27 04:38  jordi
19866
19867         * Control.cs: changes to be able to run winforms samples
19868
19869 2004-07-26 11:42  jordi
19870
19871         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
19872           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
19873
19874 2004-07-26 05:41  jordi
19875
19876         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
19877           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
19878           implementation
19879
19880 2004-07-22 09:22  jordi
19881
19882         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
19883           check link overlapping, implement events, and fixes
19884
19885 2004-07-21 10:28  jordi
19886
19887         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
19888
19889 2004-07-21 10:19  jordi
19890
19891         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
19892           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
19893           LinkLabelLinkClickedEventArgs.cs,
19894           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
19895           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
19896           implementation
19897
19898 2004-07-19 13:09  jordi
19899
19900         * Control.cs, Label.cs: label control re-written: added missing
19901           functionlity, events, and properties
19902
19903 2004-07-19 10:49  jordi
19904
19905         * Control.cs: fixes SetBounds logic
19906
19907 2004-07-19 01:29  jordi
19908
19909         * Control.cs: Call RefreshWindow only if the window has created
19910
19911 2004-07-15 14:05  pbartok
19912
19913         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
19914           - Implemented ImageList and ImageList.ImageCollection classes
19915           - Added ColorDepth enumeration
19916           - Updated SWF VS.Net project
19917
19918 2004-07-15 11:06  jordi
19919
19920         * XplatUIStructs.cs: added MsgButons enum
19921
19922 2004-07-15 11:03  jordi
19923
19924         * Control.cs: added basic mouse handeling events
19925
19926 2004-07-15 03:38  jordi
19927
19928         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
19929           Vertical TrackBar control implementation
19930
19931 2004-07-13 09:33  jordi
19932
19933         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
19934
19935 2004-07-13 09:31  jordi
19936
19937         * Control.cs, Form.cs: commit: new properties and fixes form size
19938           problems
19939
19940 2004-07-09 14:13  miguel
19941
19942         * ProgressBar.cs: Spelling
19943
19944 2004-07-09 11:25  pbartok
19945
19946         * ProgressBar.cs:
19947           - Removed usage of Rectangle for drawing. Miguel pointed out it's
19948           faster
19949
19950 2004-07-09 11:17  miguel
19951
19952         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
19953
19954                 * ProgressBar.cs: Fixed spelling for `block'
19955
19956                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
19957                 style guidelines.
19958
19959                 Avoid using the += on rect.X, that exposed a bug in the compiler.
19960
19961 2004-07-08 23:21  pbartok
19962
19963         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
19964           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
19965           BaseCollection.cs, Binding.cs, BindingContext.cs,
19966           BindingMemberInfo.cs, BindingsCollection.cs,
19967           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
19968           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
19969           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
19970           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
19971           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
19972           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
19973           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
19974           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
19975           FrameStyle.cs, GiveFeedbackEventArgs.cs,
19976           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
19977           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
19978           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
19979           InputLanguageChangedEventArgs.cs,
19980           InputLanguageChangedEventHandler.cs,
19981           InputLanguageChangingEventArgs.cs,
19982           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
19983           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
19984           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
19985           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
19986           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
19987           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
19988           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
19989           QueryAccessibilityHelpEventArgs.cs,
19990           QueryAccessibilityHelpEventHandler.cs,
19991           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
19992           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
19993           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
19994           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
19995           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
19996           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
19997           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
19998           XplatUIX11.cs, lang.cs:
19999           - Initial check-in
20000